2002-09-25 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
e36180d7
AC
12002-09-25 Andrew Cagney <cagney@redhat.com>
2
3 * frame.c: Include "gdb_string.h" and "builtin-regs.h".
4 (frame_map_regnum_to_name): New function.
5 (frame_map_name_to_regnum): New function.
6 * frame.h (frame_map_name_to_regnum): Declare.
7 (frame_map_regnum_to_name): Declare.
8 * builtin-regs.c (builtin_reg_map_regnum_to_name): New function.
9 * builtin-regs.h (builtin_reg_map_regnum_to_name): Declare.
10 * parse.c: Do not include "builtin-regs.h".
11 (target_map_name_to_register): Delete function.
12 (write_dollar_variable): Use frame_map_name_to_regnum.
13 * parser-defs.h (target_map_name_to_register): Delete declaration.
14 * expprint.c: Include "frame.h".
15 (print_subexp): Use frame_map_regnum_to_name.
16 * eval.c (evaluate_subexp_standard): Use frame_map_regnum_to_name.
17 * infcmd.c (registers_info): Use frame_map_name_to_regnum.
18
8b69000d
AC
192002-09-25 Andrew Cagney <ac131313@redhat.com>
20
21 * rs6000-tdep.c (rs6000_frame_saved_pc): If the link register
22 wasn't saved, and the next innermost frame is a dummy, return the
23 dummy frame's link register.
24
046ca86a
JB
252002-09-24 Jim Blandy <jimb@redhat.com>
26
27 Fix from Paul Breed:
28 * main.c (captured_main): Add a `break' after the case for 'b'.
29
94b66fa7
KS
302002-09-24 Keith Seitz <keiths@redhat.com>
31
32 * varobj.c (c_type_of_child): Use get_target_type instead
33 of TYPE_TARGET_TYPE.
34
c214a6fd
FN
352002-09-22 Fernando Nasser <fnasser@redhat.com>
36
53cb0458
FN
37 * source.c (get_current_or_default_source_symtab_and_line): Remove
38 function.
39 (set_default_source_symtab_and_line): New function. Attempts to
40 determine a source file to list lines from if one is not currently
41 defined.
42 (get_current_source_symtab_and_line): Initialize sal.pc and
43 sal.end fields.
44 (set_current_source_symtab_and_line): Mark argument as const.
45 * source.h: Update declarations and comments.
46 * linespec.c (decode_line_1): Replace call to removed routine above.
47 * stack.c (print_frame_info_base): Ditto.
48 * cli/cli-cmds.c (edit_command): Ditto.
49 (list_command): Ditto.
50
512002-09-22 Fernando Nasser <fnasser@redhat.com>
52
53 * source.c (get_current__or_default_source_symtab_and_line): Initialize
54 sal.pc and sal.end fields.
c214a6fd
FN
55 (get_current_or_default_source_symtab_and_line): Ditto.
56 * breakpoint.c (parse_breakpoint_sals): Use correct accessor function
57 so we do not cause a new source symtab to be searched for (reverting an
58 unintentional change from the 2002-09-20 patch).
59 * scm-lang.c (scm_unpac): Ditto.
60
cc3b68a5
AC
612002-09-21 Andrew Cagney <cagney@redhat.com>
62
63 * complaints.c (symfile_explanations): Remove new-line from
64 ``isolated_message''.
65 (vcomplaint): When ISOLATED_MESSAGE, force a line break.
66 (clear_complaints): When a SUBSEQUENT_MESSAGE, force a line break.
67
5835abe7
NC
682002-09-20 Nick Clifton <nickc@redhat.com>
69
70 * NEWS: Announce that V850EA ISA is no longer supported.
71 * v850-tdep.c: Remove reference to bfd_mach_v850ea.
72
a15ef5f5
DC
732002-09-20 David Carlton <carlton@math.stanford.edu>
74
06ba1b39
DC
75 * Makefile.in (c-lang.o): Correct dependencies.
76 (utils.o): Gather dependencies.
77 (charset.o): Move.
a15ef5f5
DC
78 * c-lang.c: #include "gdb_string.h"
79
87885426
FN
802002-09-20 Fernando Nasser <fnasser@redhat.com>
81
82 From 2002-07-02 George Helffrich <george@gly.bris.ac.uk>
83 * cli/cli-cmds.c (list_command): New function. Implements the new
84 cli edit command.
85 (_init_cli_cmds): Add new command definition.
86 * gdb.1: Document edit command.
87 * doc/gdb.texinfo: Document edit command.
88
892002-09-20 Fernando Nasser <fnasser@redhat.com>
0378c332
FN
90
91 * source.c: Make global variables current_source_symtab and
92 current_source_line static.
93 (list_command): Moved to cli/cli-cmds.c.
94 (ambiguous_line_spec): Moved to cli/cli-cmds.c.
95 (get_first_line_listed): New accessor function.
96 (get_lines_to_list): New accessor function.
97 (get_current_source_symtab_and_line): New function. Retrieves the
98 position in the source code that we consider current.
99 (get_current_or_default_source_symtab_and_line): New function.
100 Like the above but attempts to determine a default position if one
101 is not currently defined.
102 (set_current_source_symtab_and_line): New function. Sets the source
103 code position considered current and returns the previously set one.
104 (clear_current_source_symtab_and_line): Reset stored information about
105 a current source line.
106 (_initialize_source): Remove registration for the "list" command and
107 its alias.
108 * source.h: Add declarations for the new functions above.
109 * symtab.h: Remove declarations for the global variables mentioned
110 above.
111 * breakpoint.c (parse_breakpoint_sals): Use accessor functions to
112 obtain current source line.
113 * linespec.c (decode_line_1): Ditto.
114 * macroscope.c (default_macro_scope): Ditto.
115 * scm-lang.c (scm_unpac): Ditto.
116 * stack.c (print_frame_info_base): Ditto.
117 * symfile.c (clear_symtab_users): Ditto.
118 * symtab.c (decode_line_spec): Ditto.
119 * cli/cli-cmds.c (list_command): Moved here from source.c.
120 (ambiguous_line_spec): Moved here from source.c.
121 (_init_cli_cmds): Add definition for "list" and its alias.
122 * Makefile.in: Update dependencies.
123
ddd216ea
CV
1242002-09-20 Corinna Vinschen <vinschen@redhat.com>
125
126 * h8300-tdep.c (h8300_examine_prologue): Match saved regs location
127 with what gcc thinks is correct.
128
6d305052
CV
1292002-09-20 Corinna Vinschen <vinschen@redhat.com>
130
131 * h8300-tdep.c (h8300_examine_prologue): Fix loop for saved regs in
132 multiple register push instruction.
133
234b45d4
KB
1342002-09-19 Jim Blandy <jimb@redhat.com>
135
136 Add support for distinct host and target character sets.
137 * charset.c, charset.h: New files.
138 * c-exp.y: #include "charset.h".
139 (yylex): Convert character and string literals to the target
140 character set, before returning them as the semantic value of the
141 token.
142 * c-lang.c: #include "charset.h".
143 (c_emit_char): Use charset-specific methods to recognize
144 characters with backslash escape forms, to decide which characters
145 to print literally and which to print using numeric escape
146 sequences, and to convert target characters to host characters
147 before printing.
148 * utils.c: #include "charset.h".
149 (no_control_char_error): New function.
150 (parse_escape): Use charset-specific methods to recognize
151 backslash escapes, parse `control character' notation, and convert
152 characters from the host character set to the target character set.
153 * configure.in: Set the default host character set.
154 Check where to find iconv, and what its argument types might be.
155 * acinclude.m4 (AM_ICONV): New macro, borrowed from GCC.
156 * Makefile.in (SFILES): List charset.c.
157 (COMMON_OBS): List charset.o.
158 (charset.o): New rule.
159 (charset_h): New header dependency variable.
160 (c-lang.o, utils.o, c-exp.tab.o): Note dependency on $(charset_h).
161 (LIBICONV): New variable, set by configure.
162 (CLIBS): Include $(LIBICONV) here.
163 * aclocal.m4, config.in, configure: Regenerated.
164
525d6a61
JB
1652002-09-19 Joel Brobecker <brobecker@gnat.com>
166
167 * ada-exp.y: Add missing semicolons to end rules. Fixes a
168 bison 1.35 warning.
169
3ed93867
RE
1702002-09-19 Richard Earnshaw <rearnsha@arm.com>
171
172 * gdb_mbuild.sh: New file.
173
437666f8
AC
1742002-09-19 Andrew Cagney <ac131313@redhat.com>
175
176 * objc-exp.y, objc-lang.h, objc-lang.c: Fix copyright notice.
177
389e51db
AC
1782002-09-18 Andrew Cagney <ac131313@redhat.com>
179
180 * breakpoint.c, c-exp.y, defs.h, elfread.c, expression.h,
181 jv-exp.y, language.c, language.h, p-exp.y, parse.c, parser-defs.h,
182 printcmd.c, source.c, stabsread.c, symfile.c, symtab.h, utils.c,
183 valops.c, value.h: Revert previous change.
184
3b4efeaa
MS
1852002-09-18 Michael Snyder <msnyder@redhat.com>
186
187 Preliminary support for Objective-C:
188 * defs.h (language_objc): New enum value.
189 (puts_filtered_tabular): Declaration only, exported from utils.c.
190 (skip_quoted): Delete, declared in completer.h.
191 * c-exp.y: Include completer.h.
192 * p-exp.y: Ditto.
193 * jv-exp.y: Ditto.
194 * expression.h (OP_MSGCALL, OP_SELECTOR, OP_SELF, OP_NSSTRING):
195 New operator enum values.
196 * language.h (CAST_IS_CONVERSION): Test for language_objc.
197 * language.c (binop_result_type): Handle language_objc case.
198 (integral_type, character_type, string_type, boolean_type,
199 structured_type, binop_type_check): Ditto.
200 * symtab.h (SYMBOL_OBJC_DEMANGLED_NAME): Define.
201 (struct objc_specific): Add to general_symbol_info.
202 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Add objc initialization.
203 (SYMBOL_DEMANGLED_NAME): Handle objc case.
204 * parser-defs.h (struct objc_class_str): New struct type.
205 (start_msglist, end_msglist, add_msglist): Declaration only,
206 exported from objc-lang.c.
207 * value.h (value_of_local, value_nsstring,
208 call_function_by_hand_expecting_type): Exported from valops.c.
209 * valops.c (find_function_addr): Export.
210 (call_function_by_hand_expecting_type): New function.
211 (value_of_local): New function.
212 * symfile.c (init_filename_language_table): Add ".m" extension
213 for Objective-C.
214 * utils.c (puts_filtered_tabular): New function.
215 (fprintf_symbol_filtered): Add objc demangling support (disabled).
216 (set/show demangle): Extend help-string to refer to ObjC.
217 * elfread.c (elf_symtab_read): Skip Objective-C special symbols.
218 * stabsread.c (symbol_reference_defined): Objective-C symbols
219 may contain colons: make allowances when scanning stabs strings
220 for colons.
221 (objc_find_colon): New function.
222 * printcmd.c (address_info): If language == objc then print
223 "self" instead of "this".
224 * parse.c (length_of_subexp): Handle new operators OP_MSGCALL,
225 OP_NSSTRING, and OP_SELF.
226 (prefixify_subexp): Ditto.
227 * source.c (print_source_lines): Mention objc in comment.
228 * breakpoint.c (parse_breakpoint_sals): Recognize Objective-C
229 method names.
230
b9caf505
AC
2312002-09-18 Andrew Cagney <ac131313@redhat.com>
232
233 * complaints.h: Update copyright.
234 (struct complaints): Declare.
235 (struct complaint): Make `message' constant.
236 (internal_complaint): Declare.
237 (complaint): Declare.
238 (complaint_root): Delete declaration.
239 (symfile_complaints): Delete declaration.
240 (struct complaints): Add opaque declaration.
241 (clear_complaints): Add a complaints parameter.
242 * complaints.c: Update copyright.
243 (enum complaint_series): Define.
244 (complaint_root): Delete.
245 (struct complaints): Define.
246 (complaint_sentinel, symfile_complaint_book): New variables.
247 (symfile_explanations, symfile_complaints): New variables.
248 New variables.
249 (get_complaints): New function.
250 (vcomplaint): New function.
251 (complaint): New function.
252 (internal_complaint): New function.
253 (complain): Call vcomplain with symfile_complaint.
254 (clear_complaints): Rewrite.
255 (_initialize_complaints): Use add_setshow_command.
256 * Makefile.in (complaints.o): Update dependencies.
257 * symfile.c (syms_from_objfile): Add symfile_complaints parameter
258 to call to clear_complaints.
259 (new_symfile_objfile, reread_symbols): Ditto.
260 (oldsyms_complaint): Delete.
261 (empty_symtab_complaint, unknown_option_complaint): Delete.
262 (free_named_symtabs): Use complaint instead of complain.
263
d2e6263c
MS
2642002-09-18 Michael Snyder <msnyder@redhat.com>
265
5fb2031a
AC
266 Contributed by Apple Computer, Inc. Merged with current sources
267 by Adam Fedor <fedor@doc.com> [cagney].
268
d2e6263c
MS
269 * objc-lang.c: First clean-up round: comments, indentation.
270 * objc-lang.h: Ditto.
271 * objc-lang.y: Ditto.
272
dec43320
AC
2732002-09-18 Andrew Cagney <ac131313@redhat.com>
274
275 * maint.c (maintenance_internal_error): Print the parameter as the
276 error message.
277 (maintenance_internal_warning): New function.
278 (_initialize_maint_cmds): Add command `maint internal-warning'.
279
280 * defs.h (internal_warning, internal_vwarning): Declare.
281 * utils.c (struct internal_problem): Define.
282 (internal_vproblem): New function.
283 (internal_warning): New function.
284 (internal_vwarning): New function.
285 (internal_warning_problem, internal_error_problem): New variables.
286 (internal_verror): Just call internal_vproblem.
287
b81654f1
MS
2882002-09-18 Michael Snyder <msnyder@redhat.com>
289
290 * objc-lang.c: New file, support for Objective-C.
291 Preliminary check-in, not yet integrated into gdb.
292 * objc-lang.h: New file.
293 * objc-exp.y: New file.
294
0542c381
AC
2952002-09-18 Andrew Cagney <ac131313@redhat.com>
296
7bda5e4a
AC
297 * infrun.c (signal_stop_update): Convert definition to ISO C.
298 (signal_print_update): Ditto.
299 (signal_pass_update): Ditto.
300 * inflow.c (terminal_save_ours): Ditto.
301
5247b418
AC
302 * h8300-tdep.c (h8300_gdbarch_init): Use C instead of C++
303 comments.
304
fc60962c
AC
305 * config/djgpp/fnchange.lst: Handle name clashes between
306 bfd/coff-tic30.c, bfd/coff-tic4x.c, bfd/coff-tic54x.c and
307 bfd/coff-tic80.c.
308
0542c381
AC
309 * i386-linux-tdep.h: Fix tipo.
310
5b924b9b
AF
3112002-09-18 Adam Fedor <fedor@gnu.org>
312
313 * MAINTAINERS: Add myself to the Write After Approval list.
314
5afc051b
JB
3152002-09-18 Jim Blandy <jimb@redhat.com>
316
317 * dbxread.c, mdebugread.c: Revert my change of 2001-10-23. Moving
318 texthigh and textlow to reader-specific structs caused
319 objfile_relocate to miss them. This is fixable, but the work that
320 the change was supposed to prepare GDB for never got done anyway.
321
eb944380
DC
3222002-09-18 David Carlton <carlton@math.stanford.edu>
323
324 * MAINTAINERS: Alphabetize Write After Approval list.
325
948e66d9
DJ
3262002-09-18 Daniel Jacobowitz <drow@mvista.com>
327
328 Fix PR gdb/709
329 * values.c (value_static_field): Call read_var_value.
330
dc604539
AC
3312002-09-18 Andrew Cagney <ac131313@redhat.com>
332
333 * valops.c (hand_function_call): Align the initial stack pointer
334 and STRUCT_ADDR using frame_align. When STRUCT_RETURN and
335 FRAME_ALIGN_P, use STRUCT_ADDR to obtain the called function's
336 return value.
337 * mips-tdep.c (mips_frame_align): New function.
338 (mips_gdbarch_init): Set frame_align.
339 * gdbarch.sh (FRAME_ALIGN): New method.
340 * gdbarch.h, gdbarch.c: Re-generate.
341
cb7e422f
ML
3422002-09-18 Michal Ludvig <mludvig@suse.cz>
343
344 * x86-64-linux-nat.c (x86_64_regmap): Added CS and SS
345 registers.
346
a094c6fb
AC
3472002-09-17 Andrew Cagney <ac131313@redhat.com>
348
349 * NEWS: Mention that MIPS $fp behavior changed.
350 * mipsnbsd-tdep.c (mipsnbsd_cannot_fetch_register): Delete
351 reference to FP_REGNUM.
352 (mipsnbsd_cannot_store_register): Ditto.
353 * mips-linux-nat.c: Update copyright.
354 (mips_linux_cannot_fetch_register): Delete reference to FP_REGNUM.
355 (mips_linux_cannot_store_register): Ditto.
356 * mips-linux-tdep.c (supply_gregset): Ditto. Update copyright.
357 * config/mips/tm-mips.h: Update copyright.
358 (FP_REGNUM): Delete macro.
359 (MIPS_REGISTER_NAMES): Replace "fp" with "".
360 * config/mips/tm-irix6.h (FP_REGNUM): Delete macro.
361 * mips-tdep.c (mips_gdbarch_init): Set read_fp to mips_read_sp.
362 (mips_r3041_reg_names, mips_r3051_reg_names)
363 (mips_r3081_reg_names): Replace "fp" with "".
364 Fix PR gdb/480.
365
45cf40d1
TR
3662002-09-17 Theodore A. Roth <troth@verinet.com>
367
368 * gdb/avr-tdep.c(avr_scan_prologue): Fix bad call to
369 generic_read_register_dummy() (PR gdb/703).
370 (avr_push_return_address): #if 0 out unused vars.
371 (avr_gdbarch_init): Enable use of avr_push_return_address().
372
c7e701b5
MS
3732002-09-17 Michael Snyder <msnyder@redhat.com>
374
d76ba2a5 375 * m32r-stub.c (restore_and_return): Postpone restoring of PSW.
c7e701b5
MS
376 RTE will take care of it.
377
20bcf01c
AC
3782002-09-17 Andrew Cagney <ac131313@redhat.com>
379
380 * arch-utils.c (legacy_virtual_frame_pointer): If FP_REGNUM is
381 invalid, return SP_REGNUM.
382
009a9971 3832002-09-17 Michael Snyder <msnyder@redhat.com>
21f87145
MS
384
385 * mips-tdep.c (mips_pop_frame): Read saved values of floating
386 point registers without sign extension.
387
135c175f
AC
3882002-09-17 Andrew Cagney <cagney@redhat.com>
389
390 * blockframe.c (deprecated_read_register_dummy): Rename
391 generic_read_register_dummy.
392 * frame.c (frame_unwind_signed_register): New function.
393 (frame_unwind_unsigned_register): New function.
394 * frame.h (frame_unwind_signed_register): Declare.
395 (frame_unwind_unsigned_register): Declare.
396 (deprecated_read_register_dummy): Rename
397 generic_read_register_dummy.
398
399 * h8300-tdep.c (h8300_frame_chain): Update.
400 (h8300_frame_saved_pc): Update.
401 * xstormy16-tdep.c (xstormy16_frame_saved_pc): Update.
402 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
403 * s390-tdep.c (s390_frame_saved_pc_nofix): Update.
404 (s390_frame_chain): Update.
405 * v850-tdep.c (v850_find_callers_reg): Update.
406 (v850_frame_saved_pc): Update.
407 * m32r-tdep.c (m32r_init_extra_frame_info): Update.
408 (m32r_find_callers_reg): Update.
409 (m32r_frame_saved_pc): Update.
410 * sh-tdep.c (sh_find_callers_reg): Update.
411 (sh64_get_saved_pr): Update.
412 (sh_init_extra_frame_info): Update.
413 (sh_init_extra_frame_info): Update.
414 (sh64_init_extra_frame_info): Update.
415 (sh64_init_extra_frame_info): Update.
416 * mcore-tdep.c (mcore_find_callers_reg): Update.
417 (mcore_frame_saved_pc): Update.
418 (mcore_init_extra_frame_info): Update.
419 * i386-tdep.c (i386_frame_saved_pc): Update.
420 * ia64-tdep.c (ia64_frame_saved_pc): Update.
421 (ia64_init_extra_frame_info): Update.
422 (ia64_init_extra_frame_info): Update.
423 * d10v-tdep.c (d10v_frame_saved_pc): Update.
424 * cris-tdep.c (cris_init_extra_frame_info): Update.
425 * avr-tdep.c (avr_frame_chain): Update.
426 (avr_init_extra_frame_info): Update.
427 (avr_frame_saved_pc): Update.
428 * arm-tdep.c (arm_find_callers_reg): Update.
429 (arm_init_extra_frame_info): Update.
430 (arm_frame_saved_pc): Update.
431
a741e514
TT
4322002-09-17 Tom Tromey <tromey@redhat.com>
433
434 * c-lang.c (c_emit_char): Don't treat \0 specially unless quoter
435 is "'".
436
d1a8e808
CV
4372002-09-17 Corinna Vinschen <vinschen@redhat.com>
438
439 * MAINTAINERS: Remove "non multi-arched" text from h8300.
440 * h8300-tdep.c (h8300_next_prologue_insn) Renamed from
441 NEXT_PROLOGUE_INSN.
442 (h8300_examine_prologue): Call h8300_next_prologue_insn instead of
443 NEXT_PROLOGUE_INSN.
444
d9025a18
JB
4452002-09-16 Joel Brobecker <brobecker@gnat.com>
446
447 * osfsolib.c: Remove file, replaced by solib-osf.c.
448 * Makefile.in: Remove compilation rules for osfsolib.c.
449
1b2ef1b6
DC
4502002-09-16 David Carlton <carlton@math.stanford.edu>
451
452 * cp-valprint.c (cp_print_class_method): Correct args to
453 check_stub_method_group.
454
928e48af
CV
4552002-09-16 Corinna Vinschen <vinschen@redhat.com>
456
457 * h8300-tdep.c: Multiarch. Drop `set machine' command in favor of
458 `set architecture'. Unify naming convention of functions.
459 (h8300_skip_prologue): Improve prologue analysis.
460 (h8300_push_arguments): Rewritten to more closely match GCC's
461 bizarre argument-passing behavior, along with the comment describing
462 said behavior.
463 * remote-hms.c (hms_regnames): Don't use NUM_REGS in definition.
464 * config/h8300/tm-h8300.h: Multiarch. Just keep stuff needed by
465 sim, remote-e7000.c, remote-hms.c and remote.c
466
5e3397bb
MK
4672002-09-15 Mark Kettenis <kettenis@gnu.org>
468
469 * i386-tdep.c (gdb_print_insn_i386): Removed.
470 (i386_print_insn): New function.
471 (i386_gdbarch_init): Set print_insn to i386_print_insns.
472 (_initialize_i386_tdep): Don't initialize tm_print_insn and
473 tm_print_insn_info.
474
f710f4fc
MK
4752002-09-14 Mark Kettenis <kettenis@gnu.org>
476
477 * gdbtypes.c (check_stub_method_group): Initialize found_stub to
478 zero.
479
db54fef4
CV
4802002-09-14 Corinna Vinschen <vinschen@redhat.com>
481
482 * arch-utils.c (legacy_pc_in_sigtramp): Move preprocessor expression
483 for IN_SIGTRAMP to here. Use IN_SIGTRAMP only if it's defined.
484 Guard usage of SIGTRAMP_START() by using SIGTRAMP_START_P.
485
2becadee
CF
4862002-09-13 Christopher Faylor <cgf@redhat.com>
487
488 * win32-nat.c (child_create_inferior): Honor 'tty' command.
489
de17c821
DJ
4902002-09-13 Daniel Jacobowitz <drow@mvista.com>
491
492 * gdbtypes.c (check_stub_method): Make static.
493 (check_stub_method_group): New function.
494 * gdbtypes.h: Update prototypes.
495 * cp-support.c: New file.
496 * cp-support.h: New file.
497
498 * stabsread.c: Include "cp-abi.h" and "cp-support.h".
499 (update_method_name_from_physname): New function.
500 (read_member_functions): Correct method names for operators
501 and v3 constructors/destructors. Separate v2 constructors and
502 destructors.
503 * Makefile.in (stabsread.o): Update dependencies.
504 (SFILES): Add cp-support.c.
505 (COMMON_OBS): Add cp-support.o.
506 (cp_support_h, cp-support.o): Add.
507
508 * cp-valprint.c (cp_print_class_method): Call
509 check_stub_method_group instead of check_stub_method. Remove
510 extraneous QUITs.
511 * p-valprint.c (pascal_object_print_class_method): Likewise.
512 * valops.c (search_struct_method): Likewise.
513 (find_method_list, value_struct_elt_for_reference): Likewise.
514
e76cff22
AC
5152002-09-13 Andrew Cagney <cagney@redhat.com>
516
517 * gdbarch.sh (SIGTRAMP_END): Change to a predicate function.
518 * gdbarch.h, gdbarch.c: Regenerate.
519
905abb3f
AC
5202002-09-13 Andrew Cagney <ac131313@redhat.com>
521
522 * frame.c (find_saved_register): Delete function.
523 * frame.h (find_saved_register): Delete declaration.
524 Fix PR gdb/631.
525
64159455
AC
526Fri Sep 13 14:59:55 2002 Andrew Cagney <cagney@redhat.com>
527
528 * mips-tdep.c (read_next_frame_reg): Re-hack using
529 frame_register_unwind.
530
795e1e11
AC
531Fri Sep 13 07:42:09 2002 Andrew Cagney <cagney@redhat.com>
532
533 * mips-tdep.c (mips_get_saved_register): Re-hack using
534 frame_register_unwind.
535
5720643c
JB
5362002-09-12 Joel Brobecker <brobecker@gnat.com>
537
538 * gdbarch.sh (NAME_OF_MALLOC): New variable in the architecture
539 vector. Will be useful for Interix.
540 * gdbarch.h, gdbarch.c: Regenerate.
541
542 * valops.c (value_allocate_space_in_inferior): Replace hard-coded
543 name of the malloc function by NAME_OF_MALLOC.
544
3bada2a2
JB
5452002-09-12 Joel Brobecker <brobecker@gnat.com>
546
547 * value.h (find_function_in_inferior): Add const keyword to
548 one of the parameters. Allows us to invoke this function with
549 a const char *.
550 * valops.c (find_function_in_inferior): Likewise.
551
3db26b01
JB
5522002-09-12 Joel Brobecker <brobecker@gnat.com>
553
554 * exec.c (xfer_memory): Fix compilation warning with old versions
555 of GCC.
556 * tracepoint.c (trace_find_tracepoint_command): Likewise.
557
17c5ed2c
DC
5582002-09-12 David Carlton <carlton@math.stanford.edu>
559
560 * symtab.h: Run through gdb_indent.h.
561 Add 2002 to Copyright year list.
562
ecd1107e
AM
5632002-09-12 Alan Modra <amodra@bigpond.net.au>
564
565 * x86-64-tdep.c (_initialize_x86_64_tdep): Don't use hard-coded
566 mach constants.
567 * MAINTAINERS: Add myself to write after approval list.
568
e64f66d1
JB
5692002-09-11 J. Brobecker <brobecker@gnat.com>
570
571 * osabi.c (gdb_osabi_name): Add entry for GDB_OSABI_INTERIX.
572
f9395794
JB
5732002-09-11 J. Brobecker <brobecker@gnat.com>
574
575 * osabi.h (gdb_osabi): Add new GDB_OSABI_INTERIX enum value for
576 Interix.
577
1a303dec
MS
5782002-06-05 Paul N. Hilfinger <hilfingr@otisco.mckusick.com>
579
580 * procfs.c (do_detach): Clear current signal, not just fault.
581 Corrects problem with breakpoint trap signal leaking to detached
582 process on Tru64.
583
c0219d42
MS
5842002-09-10 Michael Snyder <msnyder@redhat.com>
585
586 * buildsym.c (finish_block): Protect against null pointer.
587
9d84ac84
AC
5882002-09-10 Andrew Cagney <cagney@redhat.com>
589
590 * infcmd.c (default_print_registers_info): Send all output to
591 ``file'' instead of ``gdb_stdout''.
592
77d8f2b4
MS
5932002-09-10 Michael Snyder <msnyder@redhat.com>
594
595 * mips-tdep.c (mips_extract_struct_value_address): Make val a
596 LONGEST, and use signed register read (addresses are sign-
597 extended for mips).
598
99656a61
SC
5992002-09-10 Stephane Carrez <stcarrez@nerim.fr>
600
601 * event-loop.c (gdb_do_one_event): Make public.
602 * event-loop.h (gdb_do_one_event): Declare.
603
da12f4d8
JL
6042002-09-10 Jeff Law <law@redhat.com>
605
606 * infttrace.c (child_resume): Simplify and rework to avoid
607 TT_PROC_CONTINUE.
608
d0aee0c4
FF
6092002-09-09 Fred Fish <fnf@intrinsity.com>
610
611 * printcmd.c (print_scalar_formatted): "len" is the number of
612 target bytes, NOT the number of target bits.
613
7cb3ec5e
EZ
6142002-09-09 Elena Zannoni <ezannoni@redhat.com>
615
616 From: Emmanuel Thome' <thome@lix.polytechnique.fr>
617 * top.c (init_main): Set rl_terminal_name.
618
4dc81987
AS
6192002-09-08 Aidan Skinner <aidan@velvet.net>
620
621 * ada-lang.c (ada_array_bound, ada_type_match,
622 _initialize_ada_language): Fix K&R definitions.
623 * ada-tasks.c (get_current_task): Fix K&R definitions.
624 * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
625
842330b4
CF
6262002-09-07 Christopher Faylor <cgf@redhat.com>
627
628 * MAINTAINERS: Remove CE from list of maintainership responsibilities.
629 Add XP.
630
43156d82
MK
6312002-09-06 Mark Kettenis <kettenis@gnu.org>
632
66da5fd8
MK
633 * i386-tdep.c (i386_register_virtual_type,
634 i386_register_convertible, i386_register_convert_to_virtual,
635 i386_register_comvert_to_raw): Use FP_REGNUM_P and SSE_REGNUM_P
636 instead of IS_FP_REGNUM and IS_SSE_REGNUM.
637 (i386_gdbarch_init): Fix comment. Add comments on calls that set
638 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum.
639 Don't set push_arguments twice.
640
4b218c18
MK
641 * i386bsd-tdep.c (i386bsd_init_abi): Set sigtramp_start and
642 sigtramp_end to i386bsd_sigtramp_start and i386bsd_sigtramp_end.
643 * i386nbsd-tdep.c (i386nbsd_init_abi): Set sigtramp_start and
644 sigtramp_end to NULL.
645 * config/i386/tm-fbsd.h (SIGTRAMP_START, SIGTRAMP_END): Remove
646 defines.
647 (i386bsd_sigtramp_start, i386_sigtramp_end): Remove prototypes.
648
4cc314d5
MK
649 * i386nbsd-tdep.c (i386nbsd_pc_in_sigtramp): Remove spurious
650 whitespace.
651
43156d82
MK
652 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): New methods.
653 * gdbarch.h, gdbarch.c: Re-generate.
654 * blockframe.c (find_pc_sect_partial_function): Convert to use
655 SIGTRAMP_START_P predicate.
656
6672060b
MS
6572002-09-05 Michael Snyder <msnyder@redhat.com>
658
a90c3637
MS
659 * arm-tdep.c (arm_init_extra_frame_info): Distinguish between
660 generic_dummy_frame method and old method. Also distinguish
661 between ARM_FP_REGNUM and THUMB_FP_REGNUM.
95f95911 662 (arm_extract_return_value): Use new regcache method.
a90c3637 663
6672060b
MS
664 * mips-tdep.c (mips_n32n64_push_arguments): Remove alignment
665 adjustment that doesn't conform to the ABI.
666 (mips_extract_struct_value_address): Retrieve V0_REGNUM from
667 saved regcache, not from current regcache.
668
299ffc64
AC
6692002-09-05 Andrew Cagney <ac131313@redhat.com>
670
671 * NEWS: Update for 5.3. Add new section ``Changes since 5.3''.
672 * README: Update.
673
a3a2ee65
JT
6742002-09-04 Jason Thorpe <thorpej@wasabisystems.com>
675
676 * arm-tdep.c (arm_addr_bits_remove): Don't check for Thumb mode
677 if arm_apcs_32 is false.
678
2bc7eea9
AC
6792002-09-04 Andrew Cagney <ac131313@redhat.com>
680
681 GDB 5.3 branch created.
682
8a55a7c5
TR
6832002-09-03 Theodore A. Roth <troth@verinet.com>
684
685 * gdb/avr-tdep.c (avr_gdbarch_init): Use
686 generic_unwind_get_saved_register.
687
e26fb1d7
DC
6882002-09-03 David Carlton <carlton@math.stanford.edu>
689
690 * dwarf2read.c (dwarf2_add_member_fn): Add the 'type'
691 argument (PR gdb/653). Update call to smash_to_method_type.
692 (read_structure_scope): Update call to dwarf2_add_member_fn.
693
30d52491
ML
6942002-09-03 Michal Ludvig <mludvig@suse.cz>
695
696 * x86-64-linux-tdep.c: Include gdb_string.h
697 * x86-64-linux-nat.c: Ditto.
698
06891d83
JT
6992002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
700
701 * ada-exp.y (yyname, yyrule): Remap global variables that appear
702 when YYDEBUG is set to 1.
703 * c-exp.y: Likewise.
704 * f-exp.y: Likewise.
705 * jv-exp.y: Likewise.
706 * m2-exp.y: Likewise.
707 * p-exp.y: Likewise.
708
7d400e77
JT
7092002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
710
711 * Makefile.in (i386nbsd-tdep.o): Add $(solib_svr4_h) to
712 dependency list.
713 * i386nbsd-tdep.c (i386nbsdelf_init_abi): Set
714 solib_svr4_fetch_link_map_offsets to
715 nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
716 * config/i386/nbsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
717 * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o.
718 * config/i386/nbsdelf.mh (NATDEPFILES): Remove solib.o,
719 solib-svr4.o, and solib-legacy.o.
720 * config/i386/tm-nbsd.h: Include solib.h.
721
704a27c4
JT
7222002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
723
724 * configure.tgt (i[3456]86-*-netbsdelf*): Merge with...
725 (i[3456]86-*-netbsd*): ...this. Set gdb_target to nbsd.
726 (i[3456]86-*-openbsd*): Make this a separate entry. Add a
727 comment noting that this needs its own target configuration.
728 * config/i386/nbsd.mt: New file.
729 * config/i386/nbsdaout.mt: Remove.
730 * config/i386/nbsdelf.mt: Ditto.
731 * config/i386/tm-nbsdaout.h: Ditto.
732
d66198e1
JT
7332002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
734
735 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): New function.
736 (i386nbsd_pc_in_sigtramp): Rewrite to use i386nbsd_sigtramp_offset.
737 (i386nbsd_init_abi): Don't initialize tdep->sigtramp_start or
738 tdep->sigtramp_end.
739 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end): Remove.
740 * config/i386/tm-nbsd.h (SIGTRAMP_START, SIGTRAMP_END)
741 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove.
742
3cac699e
JT
7432002-09-02 Jason Thorpe <thorpej@wasabisystems.com>
744
745 * Makefile.in (i386nbsd-tdep.o): Add $(arch_utils_h),
746 $(i386_tdep_h), and $(nbsd_tdep_h) to dependency list.
747 * i386-tdep.h (i386bsd_init_abi): New prototype.
748 * i386bsd-tdep.c (i386bsd_init_abi): Remove "static" from
749 function declaration.
750 (_initialize_i386bsd_tdep): Don't register OS ABI handlers
751 for NetBSD-a.out or NetBSD-ELF.
752 (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end)
753 (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset)
754 (i386nbsd_init_abi, i386nbsdelf_init_abi): Move to...
755 * i386nbsd-tdep.c: ...here. Include arch-utils.h, i386-tdep.h,
756 and nbsd-tdep.h.
757 (i386nbsd_pc_in_sigtramp): New function.
758 (i386nbsd_init_abi): Set gdbarch_pc_in_sigtramp to
759 i386nbsd_pc_in_sigtramp.
760 (_initialize_i386nbsd_tdep): Register i386nbsd_init_abi
761 and i386nbsdelf_init_abi OS ABI handlers.
762 * config/i386/nbsdaout.mt (TDEPFILES): Add nbsd-tdep.o.
763 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
764
7010ca0a
MK
7652002-09-02 Mark Kettenis <kettenis@gnu.org>
766
767 * i386-linux-nat.c (dummy_sse_values): Only try to fill in the SSE
768 registers if the target really has them.
769
6dd93b72
JT
7702002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
771
772 * Makefile.in (mipsnbsd-tdep.o): Use $(nbsd_tdep_h) rather
773 than nbsd-tdep.h.
774
2ca8ae21
JT
7752002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
776
777 * Makefile.in (alphanbsd-tdep.o): Add $(frame_h) to dependency
778 list.
779 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr)
780 (alphanbsd_skip_sigtramp_frame): New functions.
781 (alphanbsd_init_abi): Set tdep->skip_sigtramp_frame to
782 alphanbsd_skip_sigtramp_frame. Set tdep->sigcontext_addr
783 to alphanbsd_sigcontext_addr.
784
3d9b49b0
JT
7852002-08-31 Jason Thorpe <thorpej@wasabisystems.com>
786
787 * Makefile.in (mipsnbsd-tdep.o): Add nbsd-tdep.h to dependency
788 list.
789 (nbsd-tdep.o): Add $(gdb_string_h) to dependency list.
790 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): Use
791 nbsd_pc_in_sigtramp.
792 * mipsnbsd-tdep.c: Include nbsd-tdep.h.
793 (mipsnbsd_pc_in_sigtramp): Use nbsd_pc_in_sigtramp.
794 * nbsd-tdep.c: Include gdb_string.h.
795 (nbsd_pc_in_sigtramp): New function.
796 * nbsd-tdep.h (nbsd_pc_in_sigtramp): New prototype.
797 * ppcnbsd-tdep.c (ppcnbsd_pc_in_sigtramp): New function.
798 (ppcnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
799 ppcnbsd_pc_in_sigtramp.
800 * shnbsd-tdep.c (shnbsd_pc_in_sigtramp): New function.
801 (shnbsd_init_abi): Set gdbarch_pc_in_sigtramp to
802 shnbsd_pc_in_sigtramp.
803 * sparcnbsd-tdep.c (sparcnbsd_init_abi_elf): Set
804 gdbarch_pc_in_sigtramp to nbsd_pc_in_sigtramp.
805 * config/mips/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
806
c860120c
PM
8072002-08-30 Pierre Muller <muller@ics.u-strasbg.fr>
808
809 * breakpoint.c (breakpoint_init_inferior): Reset the val field of
810 watchpoints to NULL.
811 (insert_breakpoints): set val field of watchpoints if NULL.
812
813
c7612d53
JB
8142002-08-29 Jim Blandy <jimb@redhat.com>
815
816 * symtab.c (lookup_symbol_aux): In the cases where we find a
817 minimal symbol of an appropriate name and use its address to
818 select a symtab to read and search, use `name' (as passed to us)
819 as the demangled name when searching the symtab's global and
820 static blocks, not the minsym's name.
821
66609862
KS
8222002-08-29 Keith Seitz <keiths@redhat.com>
823
824 * stack.c (print_frame_info_base): Always set current_source_symtab
825 and current_source_line.
826
151fefe2
JB
8272002-08-29 Donn Terry <donnte@microsoft.com>
828
829 * proc-api.c (rw_table): Fix typo in #ifdef PCSHOLD (missing S).
830
bfb3754e
KS
8312002-08-28 Keith Seitz <keiths@redhat.com>
832
833 * stack.c (select_frame): Add FIXME concerning selected-frame
834 events.
835 (select_frame_command): Send selected-frame-level-changed
836 event notification, but only if the level actually changed.
837 (up_silently_base): Add selected-frame-level-changed event
838 notification.
839 (down_silently_base): Likewise.
840
e822a2a0
AC
8412002-08-28 Andrew Cagney <ac131313@redhat.com>
842
843 * Makefile.in: Update dependencies for all gdb/*.c files.
844
309367d4
TT
8452002-08-27 Tom Tromey <tromey@redhat.com>
846
847 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
848 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
849 Update dependencies.
850 * i387-tdep.c: Include gdb_string.h.
851 * osabi.c: Likewise.
852 * i386-linux-nat.c: Likewise.
853 * lin-lwp.c: Likewise.
854 * ax-gdb.c: Likewise.
855 * signals/signals.c: Likewise.
856 * jv-valprint.c: Likewise.
857 * p-lang.c: Likewise.
858 * c-valprint.c: Likewise.
859 * cp-abi.c: Likewise.
860
e1507482
EZ
8612002-08-27 Elena Zannoni <ezannoni@redhat.com>
862
863 * cli/cli-script.h (copy_command_lines): Export.
864 * breakpoint.c: Include cli/cli-script.h.
865 * Makefile.in (breakpoint.o): Update dependencies.
866
c6510018
MS
8672002-08-26 Michael Snyder <msnyder@redhat.com>
868
869 * breakpoint.c (insert_breakpoints): Protect all references
870 to 'process_warning'. Shorten long lines.
871
c2b8ed2c
MS
8722002-08-26 Joel Brobecker <brobecker@gnat.com>
873
874 * cli/cli-script.c (copy_command_lines): New function.
875 * defs.h (copy_command_lines): Export.
876 * testsuite/gdb.base/commands.exp: New tests for commands
877 attached to a temporary breakpoint, and for commands that
878 delete the breakpoint they are attached to.
879
8802002-08-26 Michael Snyder <msnyder@redhat.com>
881
882 * breakpoint.c (bpstat_stop_status): Instead of copying the
883 pointer to the breakpoint commands struct, make a new copy
884 of the struct and point to that.
885 (bpstat_clear): Free the commands struct.
886 (bpstat_clear_actions): Free the commands struct.
887 (bpstat_do_actions): Free the command actions. Also execute
888 the local cleanups, instead of deleting them.
889 (delete_breakpoint): Leave the commands field of the bpstat
890 chain alone -- it will be freed later.
891
64b84175
KB
8922002-08-26 Kevin Buettner <kevinb@redhat.com>
893
894 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
895 deleted in 2002-08-20 commit. This function is still used by
896 ppc-linux-nat.c.
897
55970da6
KS
8982002-08-26 Keith Seitz <keiths@redhat.com>
899
900 * gdb-events.sh: Add selected-frame-level-changed event.
901 * gdb-events.c: Regenerated.
902 * gdb-events.h: Regenerated.
903
a790ad35
SC
9042002-08-26 Stephane Carrez <stcarrez@nerim.fr>
905
906 Fix PR gdb/393:
907 * inflow.c (terminal_save_ours): New function to save terminal
908 settings.
909 * inferior.h (terminal_save_ours): Declare.
910 * target.c (debug_to_terminal_save_ours): New function.
911 (cleanup_target): Defaults to_terminal_save_ours.
912 (update_current_target): Inherit to_terminal_save_ours.
913 (setup_target_debug): Set to_terminal_save_ours.
914 * target.h (target_terminal_save_ours): New to save terminal settings.
915 (target_ops): New member to_terminal_save_ours.
916 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
917 * hpux-thread.c (init_hpux_thread_ops): Likewise.
918 * inftarg.c (init_child_ops): Likewise.
919 * m3-nat.c (init_m3_ops): Likewise.
920 * procfs.c (init_procfs_ops): Likewise.
921 * wince.c (init_child_ops): Likewise.
922 * win32-nat.c (init_child_ops): Likewise.
923 * sol-thread.c (init_sol_thread_ops): Likewise.
924
c00dcbe9
MK
9252002-08-26 Mark Kettenis <kettenis@gnu.org>
926
3d7f4f49
MK
927 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
928 use regcache_* functions.
929 (i386_gdbarch_init): Set store_return_value instead of
930 deprecated_store_return_value.
931
c00dcbe9
MK
932 * regcache.c (regcache_raw_write_signed,
933 regcache_raw_write_unsigned): New functions.
934 * regcache.h (regcache_raw_write_signed,
935 regcache_raw_write_unsigned): New prototypes.
936
0e0d15ca
AC
9372002-08-25 Andrew Cagney <ac131313@redhat.com>
938
939 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
940 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
941 source file dependencies. Cleanup corresponding generator rules.
942
d3b22ed5
AC
9432002-08-25 Andrew Cagney <ac131313@redhat.com>
944
945 * regcache.h (register_offset_hack): Declare.
946 (regcache_cooked_read_using_offset_hack): Declare.
947 (regcache_cooked_write_using_offset_hack): Declare.
948
949 * regcache.c (register_offset_hack): New function.
950 (regcache_cooked_read_using_offset_hack): New function.
951 (regcache_cooked_write_using_offset_hack): New function.
952 (regcache_dump): Check that the registers, according to their
953 offset, are packed hard against each other.
954 (cooked_xfer_using_offset_hack): New function.
955
bb425013
AC
9562002-08-25 Andrew Cagney <ac131313@redhat.com>
957
958 * regcache.c (struct regcache_descr): Add field register_type.
959 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
960 in as a parameter
961 (init_regcache_descr): Initialize register_type. Pass the descr
962 to init_legacy_regcache_descr. Use register_type instead of
963 REGISTER_VIRTUAL_TYPE.
964 (register_type): New function.
965 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
966 * regcache.h (register_type): Declare.
967
d0403e00
AC
9682002-08-25 Andrew Cagney <ac131313@redhat.com>
969
970 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
971 instead of deprecated_store_return_value. Fix fallout from
972 2002-08-23 Andrew Cagney <cagney@redhat.com>.
973
0ed04cce
AC
9742002-08-25 Andrew Cagney <ac131313@redhat.com>
975
976 * regcache.c (max_register_size): New function.
977 (init_legacy_regcache_descr): Ensure that max_register_size is
978 large enough for REGISTER_VIRTUAL_SIZE.
979 * regcache.h (max_register_size): Declare.
980
46d79c04
AC
9812002-08-24 Andrew Cagney <ac131313@redhat.com>
982
983 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
984 store_return_value.
985 (e500_extract_return_value): Change type of valbuf pointer to
986 void.
987
853c7bd0
MK
9882002-08-24 Mark Kettenis <kettenis@gnu.org>
989
cd87e769
MK
990 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
991 workaround.
992
853c7bd0
MK
993 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
994 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
995 long long) to prevent compiler warning on 64-bit systems.
996
ebba8386
AC
9972002-08-23 Andrew Cagney <cagney@redhat.com>
998
999 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
1000 (DEPRECATED_STORE_RETURN_VALUE): New method.
1001 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
1002 * gdbarch.h, gdbarch.c: Re-generate.
1003
1004 * values.c (set_return_value): Pass current_regcache to
1005 STORE_RETURN_VALUE.
1006 * arch-utils.h (legacy_store_return_value): Declare.
1007 * arch-utils.c (legacy_store_return_value): New function.
1008 (legacy_extract_return_value): Update parameters.
1009
1010 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
1011 STORE_RETURN_VALUE.
1012 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1013 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1014 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1015 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1016 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1017 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1018 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1019 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1020 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1021 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
1022
1023 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1024 * i386-tdep.c (i386_extract_return_value): Update.
1025 * arch-utils.c (legacy_extract_return_value): Update.
1026 * frv-tdep.c (frv_gdbarch_init): Update.
1027 * cris-tdep.c (cris_gdbarch_init): Update.
1028 * d10v-tdep.c (d10v_gdbarch_init): Update.
1029 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1030 * m68k-tdep.c (m68k_gdbarch_init): Update.
1031 * mcore-tdep.c (mcore_gdbarch_init): Update.
1032 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1033 * s390-tdep.c (s390_gdbarch_init): Update.
1034 * sparc-tdep.c (sparc_gdbarch_init): Update.
1035 * sh-tdep.c (sh_gdbarch_init): Update.
1036 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
1037 * v850-tdep.c (v850_gdbarch_init): Update.
1038 * avr-tdep.c (avr_gdbarch_init): Update.
1039 * ia64-tdep.c (ia64_gdbarch_init): Update.
1040 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1041 * vax-tdep.c (vax_gdbarch_init): Update.
1042 * alpha-tdep.c (alpha_gdbarch_init): Update.
1043 * arm-tdep.c (arm_gdbarch_init): Update.
1044 * mips-tdep.c (mips_gdbarch_init): Update.
1045 * i386-tdep.c (i386_gdbarch_init): Update.
1046
5bd8c6d0
AC
10472002-08-23 Andrew Cagney <ac131313@redhat.com>
1048
1049 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
1050 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
1051
e73e1724
MK
10522002-08-24 Mark Kettenis <kettenis@gnu.org>
1053
1054 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
1055 problems.
1056
3e6564e1
JB
10572002-08-23 Joel Brobecker <brobecker@gnat.com>
1058
1059 * infrun.c (handle_inferior_event): Move a comment outside of a
1060 function call, in order to avoid indent reformatting this part
1061 of the code in an unreadable way.
1062
81d0cc19
GS
10632002-08-23 Grace Sainsbury <graces@redhat.com>
1064
1065 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
1066 when breakpoints fail. Move general breakpoint error messages to
1067 insert_breakpoints.
1068 * breakpoint.c (insert_breakpoints): Change warnings when
1069 breakpoints are nto inserted to specify the type. Remove call to
1070 memory_error when hardware breakpoints can't be inserted. Remove
1071 multiple calls to warning so all messages are sent to the user at
1072 once.
1073 (delete_breakpoints): Make insert error messsages more explicit.
1074
17574093
DJ
10752002-08-23 Daniel Jacobowitz <drow@mvista.com>
1076
1077 * ChangeLog: Move gdbserver entries after GDB 5.2 to
1078 gdbserver/ChangeLog.
1079
8acc2935
MK
10802002-08-23 Mark Kettenis <kettenis@gnu.org>
1081
dfe01d39
MK
1082 * i386-tdep.c: Include "objfiles.h".
1083 (i386_svr4_init_abi): Set in_solib_call_trampoline and
1084 skip_trampoline_code.
1085 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
1086 (CPLUS_MARKER): Define to '.'.
1087
8acc2935
MK
1088 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
1089 member.
1090 (linux_corefile_thread_callback): Increase args->num_notes.
1091 (linux_make_note_section): Initialize thread_args.num_notes, and
1092 use it to determine whether notes for any threads were created.
1093
151fefe2 10942002-08-23 Donn Terry <donnte@microsoft.com>
640b227f
JB
1095
1096 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
1097 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
1098 and PCUNKILL.
1099 (write_with_trace): Conditionalize out the switch branch handling
1100 PCSHOLD if the corresponding macro is not defined. Likewise for
1101 PRSABORT and PRSTOP.
1102 This change will be needed by the Interix port.
1103
e1507482
EZ
11042002-08-22 Elena Zannoni <ezannoni@redhat.com>
1105
1106 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
1107 write_register wherever possible instead of manipulating the
1108 register bytes directly.
1109 Assign VALUE_CONTENTS to a variable and use that.
1110 The GPR numbers are now dependent on the architecture.
1111
96ff0de4
EZ
11122002-08-22 Elena Zannoni <ezannoni@redhat.com>
1113
1114 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
1115 ev_offset fields.
1116 (skip_prologue): Add support for BookE/e500 instructions.
1117 (e500_extract_return_value): New function.
1118 (frame_get_saved_regs): Add support for saving ev registers and
1119 pseudo gpr's.
1120 (e500_store_return_value): New function.
1121 (rs6000_gdbarch_init): Move up default intializations of
1122 deprecated_extract_return_value and store_return_value. Overwrite
1123 init of store_return_value with e500 specific version.
1124 Set extract_return_value for e500.
1125
fbefca5b
EZ
11262002-08-22 Elena Zannoni <ezannoni@redhat.com>
1127
1128 * blockframe.c (generic_call_dummy_register_unwind): Use
1129 regcache_cooked_read to catch cases in which the variable is
1130 stored in a pseudo register.
1131
4d210288
AC
11322002-08-22 Andrew Cagney <cagney@redhat.com>
1133
1134 * NEWS: Mention that the i960 has been made obsolete.
1135 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
1136 i960-tdep.c
1137 (remote-nrom.o): Obsolete target.
1138 (remote-nindy.o, i960-tdep.o): Ditto.
1139 * remote-nrom.c: Make file obsolete.
1140 * remote-nindy.c, remote-vx960.c: Ditto.
1141 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
1142 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
1143 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
1144 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
1145 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
1146 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
1147 i960-*-vxworks* obsolete.
1148 * MAINTAINERS: Note that the i960 is obsolete.
1149
6c0c456d
CV
11502002-08-21 Corinna Vinschen <vinschen@redhat.com
1151
1152 * aix-thread.c (aix_thread_detach): Disable thread debugging on
1153 detach to allow reinitialization.
1154
9f9d12b3
AC
11552002-08-22 Andrew Cagney <ac131313@redhat.com>
1156
1157 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
1158 attempt).
1159
ebeb39fe
JB
11602002-08-22 Jim Blandy <jimb@redhat.com>
1161
1162 * coffread.c (coff_symfile_read): Don't try to read the line
1163 number table from disk if the image file doesn't have a symbol
1164 table; we'll never actually look at the info anyway, and Windows
1165 ships DLL's with bogus file offsets for the line number data.
1166
5bf1c677
EZ
11672002-08-21 Elena Zannoni <ezannoni@redhat.com>
1168
1169 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
1170 an e500 executable.
1171
71b8ef93
MS
11722002-08-21 Michael Snyder <msnyder@redhat.com>
1173
1174 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
1175 (MSYMBOL_SIZE): Replace macro with function.
18f81521
MS
1176 (DEFAULT_MIPS_TYPE): Delete unused macro.
1177 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
1178 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
71b8ef93 1179
d174216d
JB
11802002-08-21 Jim Blandy <jimb@redhat.com>
1181
1182 * valops.c (value_cast): Simplify and correct logic for doing a
1183 static cast from a pointer to a base class to a pointer to a
1184 derived class.
1185
0ab7a791
AC
11862002-08-21 Andrew Cagney <ac131313@redhat.com>
1187
1188 * infcmd.c (default_print_registers_info): Replace
1189 do_registers_info.
1190 (registers_info): Use gdbarch_print_registers_info instead of
1191 DO_REGISTERS_INFO.
1192 * inferior.h (default_print_registers_info): Replace
1193 do_registers_info.
1194 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
1195 (DO_REGISTERS_INFO): Change to a predicate function.
1196 * gdbarch.h, gdbarch.c: Regenerate.
1197
e23792cc
KS
11982002-08-21 Keith Seitz <keiths@redhat.com>
1199
1200 * gdb-events.sh: Add target-changed event.
1201 * gdb-events.c: Regenerated.
1202 * gdb-events.c: Regenerated.
1203 * valops.c (value_assign): Add target-changed event notification
1204 to inlval_register, lval_memory, and lval_reg_frame_relative.
1205
9fb14e79
JB
12062002-08-21 Joel Brobecker <brobecker@gnat.com>
1207
1208 * NEWS: Add an entry regarding the improvement of the next/step
1209 operation on Alpha Tru64 multi-processor machines.
1210
6d39a69f
AC
12112002-08-21 Andrew Cagney <ac131313@redhat.com>
1212
72acd513
AC
1213 * Makefile.in: Update dependencies for mi/ cli/ and tui/
1214 directores.
342af04b 1215 * Makefile.in: Update all _h macro definitions.
6d39a69f
AC
1216 * Makefile.in (install-gdbtk): Move to install section.
1217 (rdi-share/libangsd.a): Move to end of file.
1218
fa5f27c7
AC
12192002-08-19 Andrew Cagney <ac131313@redhat.com>
1220
1221 * frame.c (frame_register_unwind): When a register, set addrp to
1222 the register's byte.
1223
5a89d8aa
MS
12242002-08-20 Michael Snyder <msnyder@redhat.com>
1225
1226 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
1227 used locally, so move them from the target machine header to here.
1228 (mips_set_processor_type, mips_register_name, mips32_next_pc,
1229 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
1230 Make static.
1231 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
1232
822e978b
AC
12332002-08-20 Andrew Cagney <cagney@redhat.com>
1234
1235 * NEWS: Mention that the Apollo line was made obsolete.
1236 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
1237 m68*-hp-hpux* obsolete.
1238 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
1239 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
1240 * buildsym.c (make_blockvector): Make static.
1241 * buildsym.h (make_blockvector): Make extern declaration obsolete.
1242 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
1243 (ALLDEPFILES): Remove dstread.c.
1244 (dstread.o): Obsolete make rule.
1245 * dstread.c: Makefile obsolete.
1246 * dst.h: Ditto.
1247 * config/m68k/hp300hpux.mt: Ditto.
1248 * config/m68k/hp300hpux.mh: Ditto.
1249 * config/m68k/hp300bsd.mt: Ditto.
1250 * config/m68k/hp300bsd.mh: Ditto.
1251 * config/m68k/apollo68b.mt: Ditto.
1252 * config/m68k/apollo68v.mh: Ditto.
1253 * config/m68k/apollo68b.mh: Ditto.
1254
e41b17f0
MS
12552002-08-20 Michael Snyder <msnyder@redhat.com>
1256
1257 * mips-tdep.c (mips_in_return_stub): Make static.
1258 (mips_gdbarch_init): Set in_solib_return_trampoline.
1259 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
1260
d50355b6
MS
12612002-08-20 Michael Snyder <msnyder@redhat.com>
1262
1263 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
1264 * gdbarch.c, gdbarch.h: Regenerate.
1265 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
1266 Add.
1267 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
1268
757a7cc6
MS
12692002-08-20 Michael Snyder <msnyder@redhat.com>
1270
1271 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
1272 (mips_gdbarch_init): Set skip_trampoline_code,
1273 in_solib_call_trampoline.
1274 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
1275 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
1276
c8001721
EZ
12772002-08-20 Elena Zannoni <ezannoni@redhat.com>
1278
1279 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
1280
1281 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
1282 vector type for ev registers.
1283 (e500_pseudo_register_read): New function.
1284 (e500_pseudo_register_write): New function.
1285 (e500_dwarf2_reg_to_regnum): New function.
1286 (PPC_UISA_NOFP_SPRS): New macro.
1287 (PPC_EV_REGS): New macro.
1288 (PPC_GPRS_PSEUDO_REGS): New macro.
1289 (registers_e500): New register set for e500.
1290 (variants): Add e500 variant.
1291 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
1292 before setting architectural dependent variations. Initialize ev
1293 registers numbers. Add case for e500 architecture. Set the
1294 number of pseudo registers.
1295
64366f1c
EZ
12962002-08-20 Elena Zannoni <ezannoni@redhat.com>
1297
1298 * rs6000-tdep.c: Clean up comments.
1299
7e78f0ca
AC
13002002-08-20 Andrew Cagney <cagney@redhat.com>
1301
1302 * h8300-tdep.c: Re-indent file.
1303
697f7479
JB
13042002-08-20 Jim Blandy <jimb@redhat.com>
1305
1306 * Makefile.in (LDFLAGS): Allow the configure script to establish a
1307 default for this.
697f7479 1308
e86ae29f
KS
13092002-08-20 Keith Seitz <keiths@redhat.com>
1310
1311 * breakpoints.c (watch_command_1): Use internal breakpoint
1312 when setting a watchpoint_scope breakpoint.
1313
216b504f
EZ
13142002-08-20 Elena Zannoni <ezannoni@redhat.com>
1315
1316 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
1317 (build_builtin_type_vec64i): Ditto.
1318 (build_builtin_type_vec128): Ditto.
1319 (build_builtin_type_vec128i): Ditto.
1320
f7ab6ec6
MS
13212002-08-19 Michael Snyder <msnyder@redhat.com>
1322
1323 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
1324 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
1325 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
1326 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
1327 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
1328 CALL_DUMMY_ADDRESS): Delete.
1329 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
1330 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
1331 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
1332 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
1333 push_return_address.
1334 (mips_register_raw_size, mips_eabi_use_struct_convention,
1335 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
1336 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
1337 mips_init_extra_frame_info, mips_eabi_push_arguments,
1338 mips_n32n64_push_arguments, mips_push_return_address,
1339 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
1340 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
1341
b5d1566e
MS
13422002-08-19 Michael Snyder <msnyder@redhat.com>
1343
1344 * mips-tdep.c (mips_frame_num_args): New function.
1345 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
1346 frame_saved_pc, frame_args_address, frame_locals_address,
1347 frame_num_args, and frame_args_skip.
1348 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
1349 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
1350 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
1351 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
1352
2f1488ce
MS
13532002-08-20 Michael Snyder <msnyder@redhat.com>
1354
1355 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
1356 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
1357 * mips-tdep.c (mips_store_struct_return): New function.
1358 (mips_extract_struct_value_address): New function.
1359 (mips_gdbarch_init): Set store_struct_return and
1360 extract_struct_value_address.
1361
41ff2da1
DC
13622002-08-20 David Carlton <carlton@math.stanford.edu>
1363
1364 * dwarf2read.c (dwarf2_build_psymtabs): Check that
1365 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
1366 (read_file_scope): Check that line_header is nonzero before
1367 decoding macro information.
1368
e5451d58
MK
13692002-08-20 Mark Kettenis <kettenis@gnu.org>
1370
1371 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
1372 flag the general-purpose registers as floating-point on targets
1373 that don't support the floating-point registers.
1374
4a6daafa
EZ
13752002-08-20 Elena Zannoni <ezannoni@redhat.com>
1376
1377 * rs6000-tdep.c (altivec_register_p): Delete.
1378 (rs6000_do_altivec_registers): Delete.
1379 (rs6000_altivec_registers_info): Delete.
1380 (rs6000_do_registers_info): Delete.
1381 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
1382 (rs6000_gdbarch_init): Remove setting of do_registers_info.
1383
ab4327e0
EZ
13842002-08-20 Elena Zannoni <ezannoni@redhat.com>
1385
1386 * infcmd.c (do_registers_info): Print vector registers in hex
1387 format only.
1388 (print_vector_info): Check that printing registers
1389 makes sense.
1390 (print_float_info): Ditto.
1391
cb1d2653
AC
13922002-08-20 Andrew Cagney <ac131313@redhat.com>
1393
1394 * mips-tdep.c (mips_gdbarch_init): Update.
1395 (mips_o32_extract_return_value): Rewrite.
1396 (mips_o32_store_return_value): Rewrite.
1397 (mips_o32_xfer_return_value): New function.
1398 (mips_xfer_register): Tweak debug print message. Allow for
1399 buf_offset when dumping the value transfered.
1400
dfc3d9b2
AC
14012002-08-20 Andrew Cagney <ac131313@redhat.com>
1402
1403 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
1404 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
1405 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
1406 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
1407 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
1408
7807aa61
MS
14092002-08-14 Michael Snyder <msnyder@redhat.com>
1410
1411 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
1412
489461e2
EZ
14132002-08-19 Elena Zannoni <ezannoni@redhat.com>
1414
1415 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
1416 register.
1417 (P): New macro to define a register as a pseudo register.
1418 (R, R4, R8, R16, FR32, R64, R0): Updated.
1419 (struct variant): Add new fields for number of pseudo registers
1420 and number of total registers.
1421 (tot_num_registers): New macro replacing....
1422 (num_registers): ...deleted macro.
1423 (num_registers): New function.
1424 (num_pseudo_registers): New function.
1425 (variants): Update all variants to intialize new fields correctly.
1426 Postpone initialization of number of pseudo regs and real regs.
1427 (init_variants): New function.
1428 (rs6000_gdbarch_init): Initialize variants. Update calculation of
1429 registers offsets.
1430
fcaffe4c
DC
14312002-08-19 David Carlton <carlton@math.stanford.edu>
1432
2c2738a0
DC
1433 * valops.c (search_struct_field): Change error message to treat
1434 return value of 0 from value_static_field as meaning that field is
1435 optimized out.
1436 (value_struct_elt_for_reference): Ditto.
1437 * values.c (value_static_field): Treat an unresolved location the
1438 same as a nonexistent symbol. Fix PR gdb/635.
2a73a662
DC
1439 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
1440 enclosed. Fix PR gdb/574.
fcaffe4c
DC
1441 * MAINTAINERS: Add self to Write After Approval list.
1442
88658117
AC
14432002-08-19 Andrew Cagney <ac131313@redhat.com>
1444
1445 * mips-tdep.c (mips_xfer_register): New function.
1446 (mips_n32n64_extract_return_value): Rewrite.
1447 (mips_gdbarch_init): For N32 and N64, set extract_return_value
1448 instead of deprecated_extract_return_value.
1449
21283beb
EZ
14502002-08-19 Elena Zannoni <ezannoni@redhat.com>
1451
1452 * rs6000-tdep.c (TDEP): Delete macro.
1453 (branch_dest): Replace use of TDEP macro with its body.
1454 (rs6000_pop_frame): Ditto.
1455 (rs6000_push_arguments): Ditto.
1456 (rs6000_skip_trampoline_code): Ditto.
1457 (rs6000_frame_saved_pc): Ditto.
1458 (rs6000_frame_chain): Ditto.
1459 (rs6000_register_name): Ditto.
1460 (rs6000_register_byte): Ditto.
1461 (rs6000_register_raw_size): Ditto.
1462 (rs6000_register_virtual_type): Ditto.
1463 (rs6000_register_convertible): Ditto.
1464 (rs6000_convert_from_func_ptr_addr): Ditto.
1465
bf072999
DJ
14662002-08-19 Daniel Jacobowitz <drow@mvista.com>
1467
1468 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
1469 conditionally.
1470 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
1471 MIPS_LINUX_JB_ELEMENT_SIZE.
1472 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
1473 for MAX_REGISTER_RAW_SIZE arrays.
1474 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
1475 MIPS_LINUX_JB_ELEMENT_SIZE.
1476
9b949a49
PM
14772002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
1478
1479 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
1480
6d3e79c6
AS
14812002-08-19 Aidan Skinner <aidan@velvet.net>
1482
1483 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
1484 ada-valprint.c ada-tasks.c.
1485 (YYFILES): Add ada-exp.y.
1486 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
1487 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
1488 (ada-exp.tab.o): New target.
1489
06c0b04e
AC
14902002-08-18 Andrew Cagney <ac131313@redhat.com>
1491
1492 * regcache.c (regcache_xfer_part): New function.
1493 (regcache_raw_read_part): New function.
1494 (regcache_raw_write_part): New function.
1495 (regcache_cooked_read_part): New function.
1496 (regcache_cooked_write_part): New function.
1497 * regcache.h (regcache_raw_read_part): Declare.
1498 (regcache_raw_write_part): Declare.
1499 (regcache_cooked_read_part): Declare.
1500 (regcache_cooked_write_part): Declare.
1501
92d1e331
DJ
15022002-08-18 Daniel Jacobowitz <drow@mvista.com>
1503
1504 * remote.c (remote_open_1): Add async_p.
1505 (remote_async_open_1): Delete.
1506 (open_remote_target): Delete.
1507 (remote_open, extended_remote_open): Update calls to remote_open_1.
1508 (remote_async_open, extended_remote_async_open): Call
1509 remote_open_1 instead of remote_async_open_1.
1510
247055de
MK
15112002-08-19 Mark Kettenis <kettenis@gnu.org>
1512
1513 * blockframe.c: Fix a few coding standard violations.
1514
641eda39
MK
15152002-08-19 Mark Kettenis <kettenis@gnu.org>
1516
0b717710
MK
1517 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
1518 here from ...
1519 * config/i386/tm-i386sco5.h: ... here. File removed.
1520 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
1521
26d28e12 1522 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
641eda39
MK
1523 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
1524 (TM_FILE): Set to tm-i386.h.
1525 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
1526 * config/i386/tm-i386v.h: Remove file.
1527 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
1528 instead of "i386/tm-i386v.h".
1529 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
1530 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
1531 "i386/tm-i386v.h".
1532 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
1533 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
1534 "i386/tm-i386.h".
1535
d4e0bab4
MK
15362002-08-18 Mark Kettenis <kettenis@gnu.org>
1537
1538 * config/i386/nm-i386v.h: Add protection against
1539 multiple-inclusion.
1540 (i386_register_u_addr): Remove prototype.
1541 (register_u_addr): New prototype.
1542 (REGISTER_U_ADDR): Redefine accordingly.
1543 * i386v-nat.c: Improve several comments.
1544 (i386_register_u_addr): Change signature and rename to
1545 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
1546 ubase variable.
1547
46cac009
AC
15482002-08-18 Andrew Cagney <ac131313@redhat.com>
1549
1550 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
1551 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
1552 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
1553 deprecated_extract_return_value.
1554 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
1555 rename mips_o32o64_push_arguments.
1556 (mips_gdbarch_init): Update.
1557 (mips_extract_return_value): Delete.
1558 (mips_o32_extract_return_value): Clone mips_extract_return_value.
1559 (mips_o64_extract_return_value): Clone mips_extract_return_value.
1560 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
1561 (mips_n32n64_extract_return_value): Clone
1562 mips_extract_return_value.
1563 (mips_store_return_value): Delete.
1564 (mips_o32_store_return_value): Clone mips_store_return_value.
1565 (mips_o64_store_return_value): Clone mips_store_return_value.
1566 (mips_eabi_store_return_value): Clone mips_store_return_value.
1567 (mips_n32n64_store_return_value): Clone mips_store_return_value.
1568
d2e4a39e
AS
15692002-08-18 Aidan Skinner <aidan@velvet.net>
1570
0c30c098
AS
1571 * ada-lang.c: Use gdb_string.h instead of <string.h>.
1572 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
1573
15742002-08-18 Aidan Skinner <aidan@velvet.net>
1575
1576 * ada-lang.c: Run through gdb_indent.sh.
1577 * ada-lang.h: Run through gdb_indent.sh.
1578 * ada-tasks.c: Run through gdb_indent.sh.
1579 * ada-typeprint.c: Run through gdb_indent.sh.
1580 * ada-valprint.c: Run through gdb_indent.sh.
d2e4a39e 1581
01fc4e33
AC
15822002-08-18 Andrew Cagney <ac131313@redhat.com>
1583
1584 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
1585 ABI.
1586
d8ee244c
MK
15872002-08-18 Mark Kettenis <kettenis@gnu.org>
1588
c38d8261
MK
1589 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
1590
222db64c
MK
1591 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
1592 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
1593
c2848c82
MK
1594 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
1595 write_register_gen instead of write_register_bytes.
1596
d8ee244c
MK
1597 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
1598 i[3456]-*-osf1mk* configurations have been made obsolete.
1599 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
1600 i[3456]86-*-osf1mk* hosts obsolete.
1601 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
1602 targets obsolete.
1603 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
1604 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
1605 config/i386/i386m3.mt, config/i386/nm-m3.h,
1606 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
1607 config/i386/i386mk.mh, config/i386/i386mk.mt,
1608 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
1609 obsolete.
1610 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
1611 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
1612 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
1613
61d8d407
AC
16142002-08-18 Andrew Cagney <ac131313@redhat.com>
1615
1616 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
1617 (hppa_value_returned_from_stack): Declare.
1618 (hppa_extract_return_value): Declare.
1619 * config/pa/hppa.mt: New file.
1620 * configure.tgt: Recognize hppa*-*-*.
1621 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
1622
0c52bd59
MK
16232002-08-18 Mark Kettenis <kettenis@gnu.org>
1624
1625 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
1626 comment.
1627
b5686e99
MK
16282002-08-17 Mark Kettenis <kettenis@gnu.org>
1629
1630 * top.c (gdb_rl_operate_and_get_next): Make sure
1631 operate-and-get-next functions correctly even when the history
1632 list is completely filled.
1633
c1bab85b
AC
16342002-08-18 Andrew Cagney <ac131313@redhat.com>
1635
1636 * MAINTAINERS (Target Instruction Set Architectures): Rename
1637 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
1638 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
1639 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
1640 already listed under Host/Native.
1641
1642 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
1643 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
1644 mips*-*-*.
1645
32089c7c
AC
16462002-08-17 Andrew Cagney <ac131313@redhat.com>
1647
1648 * config/ia64/ia64.mt: New file.
1649 * config/alpha/alpha.mt: New file.
1650 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
1651 ia64-linux-gnu. Mention that ia64-elf is broken.
1652 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
1653
b4671f85
MK
16542002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
1655
1656 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
1657 generic_func_frame_valid instead of func_frame_valid.
1658
c8edd8b4
JB
16592002-08-16 Joel Brobecker <brobecker@gnat.com>
1660
1661 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
1662 procfs appears to be broken when debugging on multi-processor
1663 machines. So enable software single stepping in order to avoid
1664 using the procfs interface to do next/step operations, using
1665 internal breakpoints instead.
1666
1667 * infrun.c (handle_inferior_event): Readjust the stop_pc by
1668 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
1669 make this pc address equal to the value it would have if the
1670 system stepping capability was used. Also set a new flag used
1671 to ensure that we don't readjust the PC one more time later.
1672
1673 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
1674 address by DECR_PC_AFTER_BREAK when software single step is
1675 in use for this architecture, as this has already been taken
1676 care of in handle_inferior_event().
1677
238617f6
JB
16782002-08-16 Joel Brobecker <brobecker@gnat.com>
1679
1680 * infrun.c (handle_inferior_event): Minor reformatting, to make
1681 a rather long condition expression easier to read.
1682
541a7aac
AC
16832002-08-16 Andrew Cagney <ac131313@redhat.com>
1684
1685 * Makefile.in (gdbtk.o): Move to end of file.
1686 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
1687 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
1688 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
1689 (gdbtk-wrapper.o, gdbres.o): Ditto.
1690
f92d4a7b
AC
16912002-08-16 Andrew Cagney <ac131313@redhat.com>
1692
1693 * Makefile.in (copying.o): Separate out compile rule.
1694 (hpux-thread.o, procfs.o, signals.o): Ditto.
1695 (v850ice.o, z8k-tdep.o): Ditto.
1696 (tui-file.o): Move to TUI section.
1697 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
1698 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
1699
1cce71eb
JB
17002002-08-16 Joel Brobecker <brobecker@gnat.com>
1701
1702 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
1703 skip_trampoline_code, for better namespace-proofing.
1704
1705 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
1706
0851f23d
JB
17072002-08-16 Joel Brobecker <brobecker@gnat.com>
1708
1709 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
1710
f8d40ec8
JB
17112002-08-16 Joel Brobecker <brobecker@gnat.com>
1712
1713 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
1714 signal, check whether we hit a breakpoint before checking for a
1715 single step breakpoint. Otherwise, GDB fails to notice that a
1716 breakpoint has been hit when stepping onto a breakpoint.
1717
63d022e0
KS
17182002-08-16 Keith Seitz <keiths@redhat.com>
1719
1720 * gdb-events.sh (clear_gdb_event_hooks): New function.
1721 * gdb-events.c: Regenerate.
1722 * gdb-events.h: Regenerate.
1723
6e31adb3
AC
17242002-08-16 Andrew Cagney <ac131313@redhat.com>
1725
1726 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
1727 not_a_sw_breakpoint.
1728 * breakpoint.h (bpstat_stop_status): Add parameter names.
1729
c8189ed1
GS
17302002-08-16 Grace Sainsbury <graces@redhat.com>
1731
1732 * remote.c (remote_insert_hw_breakpoint)
1733 (remote_remove_hw_breakpoint): Fix calculation of length field
1734 for Z-packet.
1735
d05285fa
MS
17362002-08-15 Michael Snyder <msnyder@redhat.com>
1737
466d7106
MS
1738 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
1739 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
1740 (supply_fpregset): Ditto.
1741
d05285fa
MS
1742 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
1743 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
1744 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
bcb0cc15 1745 (TARGET_READ_SP): Delete.
bf1f5b4c 1746 (DO_REGISTERS_INFO): Delete.
102182a9
MS
1747 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
1748 Delete.
1749 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
1750 from macros to functions.
bf1f5b4c 1751
d05285fa
MS
1752 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
1753 (mips_register_convertible, mips_register_convert_to_virtual,
1754 mips_register_convert_to_raw): Make static.
bcb0cc15
MS
1755 (mips_read_sp): New function.
1756 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
bf1f5b4c
MS
1757 (mips_do_registers_info): Make static.
1758 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
102182a9
MS
1759 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
1760 (mips_register_convert_from_type, mips_register_convert_to_type):
1761 New functions.
1762 (mips_gdbarch_init): Set up function_start_offset,
1763 register_virtual_size, pc_in_sigtramp.
d05285fa 1764
e76f1f2e
AC
17652002-08-15 Andrew Cagney <ac131313@redhat.com>
1766
1767 * infcmd.c (vector_info): New function.
1768 (_initialize_infcmd): Add command "info vector".
1769 (print_vector_info): New function.
1770
1771 * gdbarch.sh (PRINT_VECTOR_INFO): New method
1772 * gdbarch.h, gdbarch.c: Regenerate.
1773
4782dc19
AC
17742002-08-15 Andrew Cagney <ac131313@redhat.com>
1775
1776 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
1777 ``print_all''. Only print vector registers when ``print_all''.
1778
23e3a7ac
AC
17792002-08-15 Andrew Cagney <ac131313@redhat.com>
1780
8e186fd6
AC
1781 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
1782 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
1783
23e3a7ac
AC
1784 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
1785 Add `args' parameter.
1786 * gdbarch.h, gdbarch.c: Regenerate.
1787
1788 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
1789
1790 * infcmd.c (float_info): Call print_float_info.
1791 (print_float_info): New function. By default, print the
1792 floating-point registers.
1793
1794 * arch-utils.h (default_print_float_info): Delete declaration.
1795 * arch-utils.c (default_print_float_info): Delete function.
1796
e0ca2bb9
MK
17972002-08-16 Mark Kettenis <kettenis@gnu.org>
1798
3f733acc
MK
1799 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
1800 out define.
1801
7d8d2918
MK
1802 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
1803 FRAME.
1804
1c7cc583
MK
1805 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
1806 * configure.host: Make i[3456]86-*-aix host obsolete.
1807 * configure.tgt: Make i[3456]86-*-aix target obsolete.
1808 * config/i386/i386aix.mh, config/i386/i386aix.mt,
1809 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
1810 config/i386/xm-i386aix.h: Make files obsolete.
1811 * i386aix-nat.c: Make file obsolete.
1812 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
1813 (i386aix-nat.o): Make target obsolete.
1814
e0ca2bb9
MK
1815 * config/i386/nm-gnu.h: Removed.
1816 * config/i386/nm-i386gnu.h: New file.
1817 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
1818 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
1819 Moved here from ...
1820 * config/i386/tm-i386gnu.h: ... here. Removed.
1821 * config/i386/xm-i386gnu.h: Removed.
1822 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
1823 (NAT_FILE): Set to nm-i386gnu.h.
1824 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
1825 * i386-tdep.c: New file.
1826 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
1827 (i386gnu-tdep.o): Specify dependencies.
1828
16057ec7 18292002-08-15 Mark Kettenis <kettenis@gnu.org>
61113f8b 1830
6b99ee2e
MK
1831 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
1832 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
1833 Adjust a few comments to reflect reality a bit closer.
1834 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
1835 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
1836 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
1837 target_insert_watchpoint, target_remove_watchpoint):
1838 Move defines to ...
1839 * config/i386/nm-i386sco5.h: ... here.
1840 (kernel_u_size): Add prototype. Improve a few comments and add
1841 protection against multiple inclusion.
1842
d9a6f65c
MK
1843 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
1844 out define.
1845
047eff6a
MK
1846 * uw-thread.c (SP_ARG0): Define if not already defined.
1847 * config/i386/tm-i386.h (SO_ARG0): Remove define.
1848
dcdb1290
MK
1849 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
1850
5d2d0b2a
MK
1851 * config/i386/tm-i386.h: Don't include "regcache.h".
1852
61113f8b
MK
1853 * i387-tdep.h (i387_print_float_info): New prototype.
1854 * i387-tdep.c (print_i387_value, print_i387_ext,
1855 print_i387_status_word, print_i387_control_word): Add `struct
1856 ui_file *' argument and use it for output.
1857 (i387_print_float_info): Renamed from i387_float_info. Add
1858 `struct gdbarch *' and `struct ui_file *' arguments and use the
1859 latter for output.
1860 * i386-tdep.c: Include "i387-tdep.h".
1861 (i386_gdbarch_init): Set print_float_info.
1862 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
1863 (FLOAT_INFO): Remove define.
1864
46e0f506
MS
18652002-08-13 Michael Snyder <msnyder@redhat.com>
1866
1867 * mips-tdep.c (mips_push_arguments): Rename to
1868 mips_eabi_push_arguments, and tune for EABI.
1869 (MIPS_REGS_HAVE_HOME_P): Delete.
1870 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
1871 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
1872 Delete references to mips_regs_have_home_p.
1873
409268de
KS
18742002-08-14 Keith Seitz <keiths@redhat.com>
1875
1876 * Makefile.in (install-gdbtk): Create insight plugin directory.
1877 Install plugins.tcl file.
1878
ffc6a242
KS
18792002-08-14 Keith Seitz <keiths@redhat.com>
1880
1881 * configure.in: Move SUBDIRS to near top of the file so that
1882 --enable options may add things to it.
1883 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
1884 * configure: Regenerate.
1885
ebafbe83
MS
18862002-08-13 Michael Snyder <msnyder@redhat.com>
1887
1888 * mips-tdep.c (mips_o32o64_push_arguments): New function,
1889 cloned from mips_push_arguments, tuned for o32/o64 ABI.
1890 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
1891
32f6f25d
AC
18922002-08-13 Andrew Cagney <ac131313@redhat.com>
1893
1894 * vax-tdep.c (vax_get_saved_register): Delete function.
1895 (vax_gdbarch_init): Update.
1896 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
1897 (ns32k_gdbarch_init): Update.
1898 * alpha-tdep.c (alpha_get_saved_register): Delete function.
1899 (alpha_gdbarch_init): Update.
1900
53826de9
AC
19012002-08-13 Andrew Cagney <cagney@redhat.com>
1902
1903 * regcache.c (init_regcache_descr): Overallocate the
1904 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
1905 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
1906 nr_raw_registers.
1907 (set_register_cached): Add range checking assertions. Use
1908 current_regcache.
1909
16057ec7 19102002-08-13 Mark Kettenis <kettenis@gnu.org>
7d12f766
MK
1911
1912 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
1913 numbers for MMX registers.
1914
7b4c2dce
AC
19152002-08-13 Andrew Cagney <cagney@redhat.com>
1916
1917 * i386-tdep.c (i386_gdbarch_init): Use
1918 generic_unwind_get_saved_register.
1919
1e03ad20
KB
19202002-08-13 Kevin Buettner <kevinb@redhat.com>
1921
1922 * procfs.c (procfs_can_use_hw_breakpoint): New function.
1923 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
1924 target vector.
1925 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
1926 Delete. Add comment regarding this now-deleted target method.
1927
548bcbec
SC
19282002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1929
1930 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
1931 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
1932 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
1933 real PC and the page number (if it's within the memory bank window).
1934 (m68hc11_pseudo_register_write): Likewise when saving.
1935 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
1936 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
1937 (m68hc11_register_raw_size): And use 32-bit for it.
1938 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
1939 16K memory bank is used by the prog; also use the virtual pc.
1940
7df11f59
SC
19412002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1942
1943 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
1944 (m68hc11_gdbarch_init): Install it in gdbarch.
1945 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
1946 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
1947 (MSYMBOL_SIZE): New for documentation.
1948 (insn_return_kind): Enum to specify how a function returns.
1949 (frame_extra_info): Cleanup and record the return mode.
1950 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
1951 register in address computation.
1952 (m68hc11_get_return_insn): New to obtain the return instruction used
1953 by the function.
1954 (m68hc11_frame_init_saved_regs): Take into account the return
1955 instruction used by the function for far and interrupt functions.
1956 (m68hc11_init_extra_frame_info): Take into account page register.
1957 (m68hc11_frame_args_address): Adjust according to the return mode.
1958 (show_regs): Print page register only when it's used.
1959
5706502a
SC
19602002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1961
1962 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
1963 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
1964 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
1965 registers.
1966 (m68hc11_register_raw_size): Likewise.
1967
28fc6740
AC
19682002-08-13 Andrew Cagney <cagney@redhat.com>
1969
1970 * i386-tdep.c (i386_register_name): Handle mmx registers.
1971 (mmx_regnum_p): New function.
1972 (i386_mmx_names): New array.
1973 (mmx_num_regs): New variable.
1974 (i386_pseudo_register_read): New function.
1975 (i386_pseudo_register_write): New function.
1976 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
1977
1978 * regcache.c (regcache_raw_read_unsigned): New function.
1979 (regcache_raw_read_signed): New function.
1980 * regcache.h (regcache_raw_read_unsigned): Declare.
1981 (regcache_raw_read_signed): Declare.
1982
a378f419
AC
19832002-08-13 Andrew Cagney <cagney@redhat.com>
1984
1985 * regcache.c (regcache_raw_read_as_address): Delete function.
1986 (regcache_cooked_read_signed): New function.
1987 (regcache_cooked_read_unsigned): New function.
1988 * regcache.h (regcache_cooked_read_signed): Declare.
1989 (regcache_cooked_read_unsigned): Declare.
1990 (regcache_raw_read_as_address): Delete declaration.
1991
1992 * blockframe.c (generic_read_register_dummy): Use
1993 regcache_cooked_read_unsigned.
1994 * i386-tdep.c (i386_extract_struct_value_address): Use
1995 regcache_cooked_read_unsigned.
1996
81967506
SC
19972002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1998
1999 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
2000 double sizes according to ELF ABI flags.
2001 (gdbarch_tdep): Record elf_flags.
2002
ffe1f3ee
SC
20032002-08-13 Stephane Carrez <stcarrez@nerim.fr>
2004
2005 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
2006 (m6812_prolog): They can appear in 68HC12 function prologue.
2007 (m68hc11_frame_chain): Cleanup.
2008
98216c5d
AC
20092002-08-12 Andrew Cagney <cagney@redhat.com>
2010
2011 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
2012 declarations.
2013 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
2014 (i386_linux_register_raw_size): Delete function.
2015 (i386_linux_init_abi): Update.
2016 * i386-tdep.c (i386_register_raw_size): Delete function.
2017 (i386_register_byte): Delete function.
2018 (i386_gdbarch_init): Update.
2019 (i386_register_size): Delete array.
2020 (i386_register_offset): Delete array.
2021
2022 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
2023 (REGISTER_RAW_SIZE): Delete macro.
2024 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
2025 (REGISTER_BYTE): Delete macro.
2026
3b19021e
AS
20272002-08-11 Aidan Skinner <aidan@velvet.net>
2028
2029 * ada-lang.c (ada_lookup_partial_symbol)
2030 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
2031 prototype names so that grep ^func works properly.
2032
2033 * ada-lang.c (ada_array_element_type)
2034 (ada_lookup_partial_symbol): Fix typos in parameter list.
2035
2036 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
2037 Fix prototype names so that grep ^func works properly.
2038
b063e7a2
AC
20392002-08-10 Andrew Cagney <cagney@redhat.com>
2040 Elena Zannoni <ezannoni@redhat.com>
2041 Martin M. Hunt <hunt@redhat.com>
2042
2043 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
2044 (build_builtin_type_vec128i): Set the vector bit.
2045 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
2046 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
2047 (build_builtin_type_vec64): New function.
2048 (build_builtin_type_vec64i): New function.
2049 (build_gdbtypes): Initialize builtin_type_vec64 and
2050 builtin_type_vec64i.
2051
a7e3c2ad
AC
20522002-08-09 Andrew Cagney <cagney@redhat.com>
2053
2054 * regcache.c (regcache_dump): Compare the register offset
2055 with REGISTER_BYTE.
2056 * arch-utils.c (generic_register_byte): New function.
2057 * arch-utils.h (generic_register_byte): Declare.
2058 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
2059 * gdbarch.h, gdbarch.c: Regenerate.
2060
af030b9a
AC
20612002-08-09 Andrew Cagney <cagney@redhat.com>
2062
2063 * regcache.c: Include "gdbcmd.h"
2064 (_initialize_regcache): Add commands "maintenance print
2065 registers", "maintenance print raw-registers" and "maintenance
2066 print cooked-registers".
2067 (enum regcache_dump_what): Define.
2068 (dump_endian_bytes): New function.
2069 (regcache_dump): New function.
2070 (regcache_print): New function.
2071 (maintenance_print_registers): New function.
2072 (maintenance_print_raw_registers): New function.
2073 (maintenance_print_cooked_registers): New function.
2074 * Makefile.in (regcache.o): Update dependencies.
2075
cb3d25d1
MS
20762002-08-09 Michael Snyder <msnyder@redhat.com>
2077
2078 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
2079 (mips_push_arguments): Correct some comments. Use paddr_nz
2080 for printing addresses in debug output. Replace static
2081 allocation using MAX_REGISTER_RAW_SIZE with alloca.
2082 (mips_n32n64_push_arguments): New function, cloned from
2083 mips_push_arguments and tuned for the n32/n64 ABI.
2084 (mips_push_register): Buffer needs dynamic allocation.
2085 (mips_print_register): Ditto.
2086 (do_gp_register_row): Ditto.
2087 (mips_store_return_value): Ditto.
2088 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
2089
2163ab9d
DH
20902002-08-09 Don Howard <dhoward@redhat.com>
2091
2092 * memattr.c (mem_info_command): Print special case of upper bound
2093 as max CORE_ADDR + 1.
2094
b78bcb18
MS
20952002-08-08 Michael Snyder <msnyder@redhat.com>
2096
2097 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
2098 returns structs by ref if they're too big to fit in two registers.
2099
ffabd70d
KB
21002002-08-09 Kevin Buettner <kevinb@redhat.com>
2101
2102 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
2103 saved regs value.
2104 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
2105 mips_find_saved_regs().
2106 (mips_pop_frame): Likewise.
2107
fbcdb4a3
KB
21082002-08-09 Kevin Buettner <kevinb@redhat.com>
2109
2110 * blockframe.c (frame_saved_regs_register_unwind): Revise
2111 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
2112 frames are in use.
2113
3c3bea1c
GS
21142002-08-09 Grace Sainsbury <graces@redhat.com>
2115
2116 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
2117 T-packets; the 'a' is not taken as a register number.
2118 (remote_check_watch_resources, remote_stopped_by_watchpoint)
2119 (remote_stopped_data_address): New functions; add to target
2120 vector.
2121 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
2122 prototypes to match other implementations of this
2123 function. replace integer argument with pointer -- the length
2124 field in the Z-packet is the length of what is pointed to or 1 if
2125 pointer is null. Add to target vector.
2126 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
2127 target vector.
2128
2129 From Mark Salter:
2130 * remote.c (remote_wait): Add support to extract optional
2131 watchpoint information from T-packet. Ignore unrecognized
2132 optional info in T-packet.
2133 (remote_async_wait): Ditto.
2134
5d1d95de
CV
21352002-08-09 Corinna Vinschen <vinschen@redhat.com>
2136
2137 * cli/cli-dump.c: Change fopen modes to use binary open modes
2138 as defined in include/fopen-bin.h throughout.
2139
c86b5b38
MS
21402002-08-08 Michael Snyder <msnyder@redhat.com>
2141
2142 * mips-tdep.c: Minor whitespace and indentation clean-ups.
2143
b30590dc
KB
21442002-08-08 Kevin Buettner <kevinb@redhat.com>
2145
2146 * doublest.c (store_floating): Avoid floatformat_from_doublest()
2147 assertion failure by returning early after a warning.
2148
498868ed
KB
21492002-08-08 Kevin Buettner <kevinb@redhat.com>
2150
2151 * mips-tdep.c (mips_find_saved_regs): Make static.
2152 (mips_frame_init_saved_regs): New function.
2153 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
2154 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
2155 (mips_find_saved_regs): Delete declaration.
2156
b2dd6311
GS
21572002-08-08 Grace Sainsbury <graces@redhat.com>
2158
3c3bea1c
GS
2159 * remote.c (remote_wait, remote_async_wait): Change
2160 thread_num from int to ULONGEST.
2161 (unpack_varlen_hex): Change result parameter from
2162 int * to ULONGEST *.
b2dd6311 2163
ea47855f
AC
21642002-08-08 Andrew Cagney <ac131313@redhat.com>
2165
2166 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
2167 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
2168 powerpc*-*-*.
2169 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
2170
69db8bae
AC
21712002-08-08 Andrew Cagney <cagney@redhat.com>
2172
2173 * gcore.c (override_derive_stack_segment): Delete variable.
2174 (preempt_derive_stack_segment): Delete function.
2175 (derive_stack_segment): Delete function.
2176 (default_derive_stack_segment): Renamed to derive_stack_segment.
2177 (override_derive_heap_segment): Delete variable.
2178 (preempt_derive_heap_segment): Delete function.
2179 (derive_heap_segment): Delete function.
2180 (default_derive_heap_segment): Rename to derive_heap_segment.
2181
cb811fe7
MS
21822002-08-06 Michael Snyder <msnyder@redhat.com>
2183
2184 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
2185 * mips-tdep.c (mips_EABI_use_struct_convention,
2186 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
2187 New functions. (mips_use_struct_convention): Delete.
2188 (mips_gdbarch_init): set use_gdbarch_convention.
2189
8b389c40
MS
21902002-08-06 Michael Snyder <msnyder@redhat.com>
2191
2192 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
2193 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
2194 mips_o32_reg_struct_has_addr): New functions.
2195 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
2196
5c27f28a
AC
21972002-08-07 Andrew Cagney <ac131313@redhat.com>
2198
2199 * regcache.c (pseudo_register): Delete function.
2200 (fetch_register): Delete function.
2201 (store_register): Delete function.
2202 (regcache_raw_read, legacy_read_register_gen): Use
2203 target_fetch_registers instead of fetch_register.
2204 (legacy_write_register_gen, regcache_raw_write): Use
2205 target_store_register instead of store_register.
2206 (write_register_bytes): Ditto.
2207
2208 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
2209 (STORE_PSEUDO_REGISTER): Delete.
2210 * gdbarch.h, gdbarch.c: Regenerate.
2211
5b331675
CV
22122002-08-06 Corinna Vinschen <vinschen@redhat.com>
2213
2214 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
2215 write dump file binary.
2216
6acdf5c7
MS
22172002-08-05 Michael Snyder <msnyder@redhat.com>
2218
2219 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
2220 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
2221 (mips_gdbarch_init): Set N32 target to be mips64.
2222
b2f01c35
KB
22232002-08-06 Kevin Buettner <kevinb@redhat.com>
2224
2225 * frame.c (find_saved_register): Break out of loop once saved
2226 register address is found. Don't mention sparc in loop comment
2227 anymore.
2228
63db5580
KB
22292002-08-06 Kevin Buettner <kevinb@redhat.com>
2230
2231 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
2232 mips_default_saved_regsize to 8.
2233
5e34e75e
AC
22342002-08-06 Andrew Cagney <ac131313@redhat.com>
2235
2236 * gcore.c: Do not include <sys/procfs.h>.
2237 * Makefile.in (gcore.o): Update dependencies.
2238
eb4c54a2
AC
22392002-08-06 Andrew Cagney <cagney@redhat.com>
2240
2241 * configure.tgt: Make arc-*-* obsolete.
2242 * NEWS: Mention that arc-*-* has been identifed as obsolete.
2243 * MAINTAINERS: Make arc-elf obsolete.
2244 * arc-tdep.c: Make file obsolete.
2245 * config/arc/arc.mt: Ditto.
2246 * config/arc/tm-arc.h: Ditto.
2247
ced15480
TR
22482002-08-05 Theodore A. Roth <troth@verinet.com>
2249
c1bab85b 2250 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
ced15480 2251
b4743822
AC
22522002-08-05 Andrew Cagney <ac131313@redhat.com>
2253
2254 * mcore-tdep.c (mcore_gdbarch_init): Use
2255 generic_unwind_get_saved_register instead of
2256 generic_get_saved_register.
2257 * v850-tdep.c (v850_gdbarch_init): Ditto.
2258 * frv-tdep.c (frv_gdbarch_init): Ditto.
2259 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2260 * s390-tdep.c (s390_gdbarch_init): Ditto.
2261 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
2262 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
2263 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
2264
3956d554
JB
22652002-08-05 Joel Brobecker <brobecker@gnat.com>
2266
2267 * objfiles.h: Add missing #include "symfile.h"
2268
2269 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
2270
8249c0d6
AC
22712002-08-04 Andrew Cagney <ac131313@redhat.com>
2272
2273 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
2274 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
2275 of FIELD_BITSIZE.
2276
b9d14705
DJ
22772002-08-04 Daniel Jacobowitz <drow@mvista.com>
2278
2279 * NEWS: Cleanup and nitpick.
2280
dd73b9bb
AC
22812002-08-03 Andrew Cagney <ac131313@redhat.com>
2282
2283 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
2284
043a27f8
AC
22852002-08-03 Andrew Cagney <ac131313@redhat.com>
2286
2287 * Makefile.in (gdbtk-bp.o): Update dependencies.
2288 (gdbtk-register.o): Ditto.
2289 (gdbtk-varobj.o): Ditto.
2290
46ce284d
AC
22912002-08-03 Andrew Cagney <cagney@redhat.com>
2292
2293 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
2294 m68hc11_fetch_pseudo_register.
2295 (m68hc11_pseudo_register_write): Replace
2296 m68hc11_store_pseudo_register.
2297 (m68hc11_gdbarch_init): Update.
2298
b66d6d2e
AC
2299Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
2300
2301 * gdbarch.sh: Include "gdb_string.h".
2302 * gdbarch.c: Regenerate.
2303
2304 * regcache.c: Include "gdb_string.h".
2305 * ax-general.c: Ditto.
2306 * varobj.c: Ditto.
2307 * std-regs.c: Ditto.
2308 * fbsd-proc.c: Ditto.
2309 * thread.c: Ditto.
2310
2311 * Makefile.in (regcache.o): Update dependencies.
2312 (thread.o, gdbarch.o): Ditto.
2313 (ax-general.o, gdbarch.o): Ditto.
2314 (varobj.o, std-regs.o): Ditto.
2315 (fbsd-proc.o): Specify dependencies.
2316
29e1842b
AC
23172002-08-02 Andrew Cagney <cagney@redhat.com>
2318
2319 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
2320 regnum.
2321 (regcache_cooked_write): Ditto.
2322
68365089
AC
23232002-08-02 Andrew Cagney <ac131313@redhat.com>
2324
2325 * regcache.c (regcache_cooked_read): New function.
2326 (regcache_cooked_write): New function.
2327 (read_register_gen): Rewrite using regcache_cooked_read.
2328 (write_register_gen): Rewrite using regcache_cooked_write.
2329
2330 * regcache.h (regcache_cooked_read, regcache_cooked_write):
2331 Declare.
2332
d8124050
AC
23332002-08-02 Andrew Cagney <cagney@redhat.com>
2334
2335 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
2336 Replace the architecture methods register_read and register_write.
2337 * gdbarch.h, gdbarch.c: Regenerate.
2338 * regcache.c (init_regcache_descr): Update.
2339 (read_register_gen): Update.
2340 (write_register_gen): Update.
2341 (supply_register): Update comment.
2342
2343 * sh-tdep.c (sh_gdbarch_init): Update.
2344 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
2345 `regcache' and `gdbarch' parameters. Make `buffer' a void
2346 pointer. Update code.
2347 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
2348 `regcache' and `gdbarch' parameters. Make `buffer' a constant
2349 void pointer. Update code.
2350 (sh64_register_write): Delete.
2351 (sh4_register_read): Delete.
2352 (sh64_register_read): Delete.
2353 (sh4_register_write): Delete.
2354 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
2355 void pointer, `to' parameter a void pointer.
2356 (sh_sh64_register_convert_to_raw): Ditto.
2357
a6425924
KB
23582002-08-01 Kevin Buettner <kevinb@redhat.com>
2359
2360 * mips-tdep.c (mips_register_virtual_type): Use architecture
2361 invariant return values.
2362
ff5922b5
AC
23632002-08-01 Andrew Cagney <cagney@redhat.com>
2364
2365 * linux-proc.c: Include "gdb_string.h".
2366 * Makefile.in (linux-proc.o): Update dependency list.
2367
32a6503c
KB
23682002-08-01 Kevin Buettner <kevinb@redhat.com>
2369
2370 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
2371 comment.
2372
ccaa32c7
GS
23732002-08-01 Grace Sainsbury <graces@redhat.com>
2374
2375 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2376 to_insert_watchpoint, to_remove_watchpoint,
2377 to_stopped_by_watchpoint, to_stopped_data_address,
2378 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
2379 target vecctor. Define their corresponding macros so they call
2380 them.
2381
2382 * target.c: Add default and debug versions of for
2383 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
2384 to_insert_watchpoint, to_remove_watchpoint,
2385 to_stopped_by_watchpoint, to_stopped_data_address,
2386 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
2387
78fde5f8
KB
23882002-08-01 Kevin Buettner <kevinb@redhat.com>
2389
2390 * mips-tdep.c (mips_register_virtual_type): New function.
2391 (mips_gdbarch_init): Register mips_register_virtual_type()
2392 with gdbarch machinery.
2393 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
2394 this file instead of tm-bigmips.h.
2395 (MIPS_REGSIZE): Delete this macro.
2396 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
2397 multiarch version in mips-tdep.c will be found.
2398
db034ac5
AC
23992002-08-01 Andrew Cagney <cagney@redhat.com>
2400
2401 * NEWS: Menion that CHILL has been made obsolete.
2402
2403 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
db034ac5
AC
2404 * stabsread.c (read_range_type): Ditto.
2405 * gdbtypes.h: Ditto.
2406 * language.c (binop_type_check): Ditto.
2407 (binop_result_type): Ditto.
2408 (integral_type): Ditto.
2409 (character_type): Ditto.
2410 (string_type): Ditto.
2411 (boolean_type): Ditto.
2412 (structured_type): Ditto.
2413 (lang_bool_type): Ditto.
2414 (binop_type_check): Ditto.
2415 * language.h (_LANG_chill): Ditto.
2416 * dwarfread.c (set_cu_language): Ditto.
2417 * dwarfread.c (CHILL_PRODUCER): Ditto.
2418 * dwarfread.c (handle_producer): Ditto.
2419 * expression.h (enum exp_opcode): Ditto.
2420 * eval.c: Ditto for comments.
2421 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
2422 * expprint.c (print_subexp): Ditto.
2423 (print_subexp): Ditto.
2424 * valops.c (value_cast): Ditto.
2425 (search_struct_field): Ditto.
2426 * value.h (COERCE_VARYING_ARRAY): Ditto.
2427 * symfile.c (init_filename_language_table): Ditto.
2428 (add_psymbol_with_dem_name_to_list): Ditto.
2429 * valarith.c (value_binop): Ditto.
2430 (value_neg): Ditto.
2431 * valops.c (value_slice): Ditto.
2432 * symtab.h (union language_specific): Ditto.
2433 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
2434 (SYMBOL_DEMANGLED_NAME): Ditto.
2435 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
2436 * defs.h (enum language): Ditto.
2437 * symtab.c (got_symtab): Ditto.
2438 * utils.c (fprintf_symbol_filtered): Ditto.
2439
2440 * ch-typeprint.c: Make file obsolete.
2441 * ch-valprint.c: Make file obsolete.
2442 * ch-lang.h: Make file obsolete.
2443 * ch-exp.c: Make file obsolete.
2444 * ch-lang.c: Make file obsolete.
2445
2446 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
2447 CHILL_LIB.
2448 (TARGET_FLAGS_TO_PASS): Ditto.
2449 (CHILLFLAGS): Obsolete.
2450 (CHILL): Obsolete.
2451 (CHILL_FOR_TARGET): Obsolete.
2452 (CHILL_LIB): Obsolete.
2453 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
2454 ch-valprint.c.
2455 (HFILES_NO_SRCDIR): Remove ch-lang.h.
2456 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
2457 ch-lang.o.
2458 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
2459 targets.
2460
8aaf0b47
JB
24612002-07-31 Joel Brobecker <brobecker@gnat.com>
2462
2463 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
2464 This does not change anything at the moment, but will be helpful
2465 later when full Ada support is integrated.
2466
f3a7b3a5
KB
24672002-07-31 Kevin Buettner <kevinb@redhat.com>
2468
2469 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
2470 help message.
2471
fb850278
KB
24722002-07-31 Kevin Buettner <kevinb@redhat.com>
2473
2474 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
2475 and save it in a local variable. Use variable in later test.
2476
e3bddbfa
KB
24772002-07-31 Kevin Buettner <kevinb@redhat.com>
2478
2479 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
2480 test. (Thanks to Daniel Jacobowitz.)
2481
28d169de
KB
24822002-07-31 Kevin Buettner <kevinb@redhat.com>
2483
2484 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
2485 (mips_abi_strings): Add "n64".
2486 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
2487
7fe7e44e
KB
24882002-07-31 Kevin Buettner <kevinb@redhat.com>
2489
2490 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
2491 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
2492
c6caf090
KB
24932002-07-31 Kevin Buettner <kevinb@redhat.com>
2494
2495 * utils.c (host_pointer_to_address, address_to_host_pointer):
2496 Use gdb_assert() instead of explicit call to internal_error().
2497
c41669e0
KB
24982002-07-30 Kevin Buettner <kevinb@redhat.com>
2499
2500 * Makefile.in (rs6000-nat.o): Update dependencies.
2501
2502 From Nicholas Duffek:
2503 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
2504 (aix-thread.o): New rule.
2505 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
2506 * config/powerpc/aix432.mh: New file.
2507
2fda4977
DJ
25082002-07-30 Daniel Jacobowitz <drow@mvista.com>
2509
2510 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
2511 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
2512 (fetch_core_registers, ppc_linux_supply_gregset)
2513 (ppc_linux_supply_fpregset): New functions.
2514 (ppc_linux_regset_core_fns): New.
2515 (_initialize_ppc_linux_tdep): Call add_core_fns.
2516 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
2517 and ppc_linux_supply_gregset.
2518 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
2519 (supply_fpregset): Call ppc_linux_supply_fpregset.
2520 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
2521 corelow.o.
2522 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
2523
729051e6
DJ
25242002-07-30 Daniel Jacobowitz <drow@mvista.com>
2525
2526 * symtab.c (lookup_symbol): Demangle before lowercasing.
2527
5f8a3188
AC
25282002-07-30 Andrew Cagney <ac131313@redhat.com>
2529
2530 * symtab.h: Replace #include "gdb_obstack.h" with opaque
2531 declaration.
2532 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
2533 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
2534 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
2535 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
2536 "gdb_string.h".
2537 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
2538 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
2539 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
2540 (avr-tdep.o, mon960-rom.o): Ditto.
2541 (aout_stabs_gnu_h): Define.
2542 (symtab_h): Remove $(gdb_obstack_h).
2543
67f07146
JB
25442002-07-30 Jim Blandy <jimb@redhat.com>
2545
2546 Patch from David Carlton <carlton@math.stanford.edu>:
2547 * gdbinit.in: Move the `dir' commands that add GDB's own source
2548 directory to the search path to the end, so that the `gdb' source
2549 directory will be searched first.
2550
04ea0df1
AC
25512002-07-29 Andrew Cagney <ac131313@redhat.com>
2552
2553 * gdb_obstack.h: New file.
2554 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
2555 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
2556 * objfiles.h: Include "gdb_obstack.h".
2557 * Makefile.in (gdb_obstack_h): Define.
2558 (symtab_h): Add $(gdb_obstack_h).
2559 (objfiles_h): Add $(gdb_obstack_h).
2560
2561 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
2562 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
2563 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
2564 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
2565 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
2566 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
2567 * symfile.c, coffread.c, c-typeprint.c: Ditto.
2568 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
2569
2570 * Makefile.in (bcache.o): Update dependencies.
2571 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
2572 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
2573 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
2574 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
2575 (stabsread.o, symfile.o, symmisc.o): Ditto.
2576 (symtab.o, typeprint.o, macroexp.o): Ditto.
2577 (macrotab.o, mdebugread.o): Ditto.
2578 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
2579 (coff_ecoff_h, aout_aout64_h): Define.
2580 (aout_stabs_gnu_h, libaout_h): Define.
2581
d138e37a
AC
25822002-07-29 Andrew Cagney <cagney@redhat.com>
2583
2584 * regcache.c (struct regcache_descr): Rename nr_registers to
2585 nr_cooked_registers. Revise comments describing the structure
2586 member fields.
2587 (init_regcache_descr): Update.
2588 (init_legacy_regcache_descr): Update.
2589 (read_register_gen, write_register_gen): When a cooked register in
2590 the raw register range, directly access the value from the raw
2591 register cache.
2592
460e6ec3
AC
25932002-07-29 Andrew Cagney <ac131313@redhat.com>
2594
2595 * z8k-tdep.c: Do not include "obstack.h".
2596 * h8300-tdep.c, h8500-tdep.c: Ditto.
2597 * m68hc11-tdep.c, sh-tdep.c: Ditto.
2598 * valprint.c, v850-tdep.c: Ditto.
2599 * d10v-tdep.c, mn10300-tdep.c: Ditto.
2600 * mn10200-tdep.c: Ditto.
2601
2602 * Makefile.in (z8k-tdep.o): Update dependencies.
2603 (m68hc11-tdep.o, valprint.o): Ditto.
2604 (v850-tdep.o, d10v-tdep.o): Ditto.
2605 (mn10300-tdep.o, sparc-tdep.o): Ditto.
2606 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
2607 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
2608 (sh_opc_h, gdb_sim_sh_h): Define.
2609 (elf_sh_h, elf_bfd_h): Define.
2610 (opcode_m68hc11_h): Define.
2611 (OPCODES_SRC, OPCODES_DIR): define.
2612 (OPCODES): Use $(OPCODES_DIR).
2613 (gdb_sim_d10v_h): Rename sim_d10v_h.
2614 (gdb_sim_arm_h): Rename sim_arm_h.
2615
790c9cf0
KB
26162002-07-26 Kevin Buettner <kevinb@redhat.com>
2617
2618 * utils.c (host_pointer_to_address, address_to_host_pointer):
2619 Change internal_error() message to indicate function responsible
2620 for the error.
2621
9647fa49
KB
26222002-07-26 Kevin Buettner <kevinb@redhat.com>
2623
2624 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
2625 calls to local_hex_string_custom().
2626
dabbe2c0
KB
26272002-07-26 Kevin Buettner <kevinb@redhat.com>
2628
2629 * irix5-nat.c: Move IRIX shared library support from here...
2630 * solib-irix.c: ...to here. Revised substantially to work with
2631 generic solib framework.
2632
b96d0a4e
KB
2633 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
2634 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
2635 * mips-irix-tdep.c: New file.
2636
313fb2f6
KB
2637 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
2638 (mips-irix-tdep.o, solib-irix.o): New rules.
2639 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
2640 solib-irix.o.
2641 * config/mips/irix6.mt (TDEPFILES): Likewise.
2642 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
2643
ab2eaf26
KB
26442002-07-26 Kevin Buettner <kevinb@redhat.com>
2645
177e4768 2646 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
ab2eaf26
KB
2647 disabled (via ``#if 0'') includes.
2648
7244546a
KB
26492002-07-26 Kevin Buettner <kevinb@redhat.com>
2650
2651 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
2652 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
2653 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
2654 Add support for the fpscr register.
2655 * rs6000-nat.c (regmap, fetch_inferior_registers)
2656 (store_inferior_registers, fetch_core_registers): Likewise.
2657
dd7be90a
KB
26582002-07-26 Kevin Buettner <kevinb@redhat.com>
2659
2660 * rs6000-nat.c (language.h): Include.
2661 (special_regs): Delete this array.
2662 (regmap): New function.
2663 (fetch_register, store_register): Use regmap() to map gdb
2664 register numbers to ptrace register numbers. Also, use
2665 outputs from regmap() to make decisions regarding type of
2666 ptrace() call to make. In particular, don't compare against
2667 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
2668 (fetch_inferior_registers, store_inferior_registers): Where
2669 possible, obtain register numbers from tdep struct. Don't
2670 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
2671 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
2672 (LAST_UISA_SP_REGNUM): Delete.
2673
11bf77db
KB
26742002-07-25 Kevin Buettner <kevinb@redhat.com>
2675
2676 * rs6000-nat.c (ppc-tdep.h): Include.
d959a6ab
KB
2677 (fetch_registers, store_register, fetch_core_registers): Don't
2678 access registers[] directly. Instead, use supply_register() or
11bf77db
KB
2679 regcache_collect() as appropriate.
2680 (find_toc_address): Format hex address with local_hex_string().
2681
06afebeb
AC
26822002-07-25 Andrew Cagney <ac131313@redhat.com>
2683
2684 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
2685 bfd/elf32-frv.c.
2686
8c554d79
TT
26872002-07-24 Tom Tromey <tromey@redhat.com>
2688
2689 * jv-exp.y: Marked all strings with _().
2690 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
2691 internal_error.
2692 (MethodInvocation, CastExpression, parse_number, yyerror,
2693 java_type_from_name, push_expression_name, yylex): Typo fixes.
2694
e4c242d9
DJ
26952002-07-24 Daniel Jacobowitz <drow@mvista.com>
2696
2697 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
2698 (tee_file_flush, tee_file_write, tee_file_fputs)
2699 (tee_file_isatty): New.
2700 * ui-file.h (tee_file_new): Add prototype.
2701
ebf56fd3
AS
27022002-07-24 Aidan Skinner <aidan@velvet.net>
2703
2704 * ada-lang.c: Change k&r style function definitions to prototyped
2705 form.
2706 * ada-typeprint.c: Change k&r style function definitions to prototyped
2707 form.
2708 * ada-valprint.c: Change k&r style function definitions to prototyped
2709 form.
2710
7fb623f7
AC
27112002-07-24 Andrew Cagney <cagney@redhat.com>
2712
2713 * README: Remove reference to remote-bug.
2714 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
2715 remote-bug.c.
2716 (m88k-nat.o): Delete rule.
2717 (m88k-tdep.o): Delete rule.
2718 (remote-bug.o): Delete rule.
2719 * MAINTAINERS: Mark as obsolete.
2720 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
2721 * m88k-tdep.c: Make file obsolete.
2722 * config/m88k/m88k.mh: Ditto.
2723 * config/m88k/delta88v4.mh: Ditto.
2724 * config/m88k/delta88v4.mt: Ditto.
2725 * config/m88k/delta88.mt: Ditto.
2726 * config/m88k/delta88.mh: Ditto.
2727 * remote-bug.c: Ditto.
2728 * config/m88k/tm-delta88.h: Ditto.
2729 * config/m88k/nm-delta88v4.h: Ditto.
2730 * config/m88k/xm-delta88.h: Ditto.
2731 * config/m88k/xm-dgux.h: Ditto.
2732 * config/m88k/tm-m88k.h: Ditto.
2733 * config/m88k/nm-m88k.h: Ditto.
2734 * config/m88k/tm-delta88v4.h: Ditto.
2735 * m88k-nat.c: Ditto.
2736 * cxux-nat.c: Ditto.
2737 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
2738 and m88*-*-* obsolete.
2739 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
2740 m88*-*-* obsolete.
2741
37611a2b
AC
27422002-07-24 Andrew Cagney <cagney@redhat.com>
2743
2744 * findvar.c (extract_unsigned_integer): Make `addr' parameter
2745 constant. Same for local pointer variables.
2746 (extract_signed_integer): Ditto.
2747 * defs.h (extract_unsigned_integer): Update.
2748 (extract_signed_integer): Update.
2749
1aaa5f99
AC
27502002-07-24 Andrew Cagney <cagney@redhat.com>
2751
2752 * regcache.c (regcache_raw_write): Change buf parameter to a
2753 constant void pointer.
2754 (regcache_raw_read): Change buf parameter to a void pointer.
2755 (legacy_write_register_gen): Change myaddr parameter a constant
2756 void pointer.
2757 (supply_register): Change val parameter to a const void pointer.
2758 * regcache.h (regcache_raw_write): Update declaration.
2759 (regcache_raw_read): Update declaration.
2760 (supply_register): Update declaration.
2761
b4f5539f
TT
27622002-07-24 Tom Tromey <tromey@redhat.com>
2763
2764 * defs.h (gdb_readline_wrapper): Declare.
2765 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
2766 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
2767 * top.c (gdb_readline_wrapper): New function.
2768 (command_line_input): Use it.
2769
0818c12a
AC
27702002-07-24 Andrew Cagney <cagney@redhat.com>
2771
2772 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
2773 regcache_read and regcache_write.
2774 (regcache_raw_read_as_address): Replace regcache_read_as_address.
2775 * regcache.c: Update.
2776 * sh-tdep.c (sh64_push_arguments): Update comment.
2777 (sh_pseudo_register_read): Update.
2778 (sh_pseudo_register_write): Update.
2779 (sh4_register_read): Update.
2780 (sh4_register_write): Update.
2781 (sh64_pseudo_register_read): Update.
2782 (sh64_pseudo_register_write): Update.
2783 (sh64_register_read): Update.
2784 (sh64_register_write): Update.
2785 * i386-tdep.c (i386_extract_return_value): Update.
2786 (i386_extract_struct_value_address): Update.
2787 (i386_extract_return_value): Update.
2788 * blockframe.c (generic_read_register_dummy): Update.
2789 (generic_call_dummy_register_unwind): Update
2790 * infrun.c (write_inferior_status_register): Update.
2791
f7321c06
JB
27922002-07-23 Jim Blandy <jimb@redhat.com>
2793
2794 * parser-defs.h (expression_context_pc): Make this extern.
2795 (Thanks to Michael Snyder.)
2796
2037aebb
AC
27972002-07-23 Andrew Cagney <ac131313@redhat.com>
2798
2799 GDB 5.2.1 released from 5.2 branch.
2800 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
2801 * README: Update to mention 5.2.1.
2802
66504d44
MS
28032002-07-23 Mark Salter <msalter@redhat.com>
2804
2805 * remote.c (remote_read_bytes): Fix check for error.
2806
27bae383
KB
28072002-07-22 Kevin Buettner <kevinb@redhat.com>
2808
2809 * aix-thread.c (language.h): Include.
2810 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
2811 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
2812 Print newlines at end of debug messages.
2813 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
2814 (pdc_write_data): Use local_hex_string() instead of %llx formats.
2815
28162002-07-22 Kevin Buettner <kevinb@redhat.com>
2817
2818 * aix-thread.c (ppc-tdep.h): Include.
2819 (special_register_p): New function.
2820 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
2821 (store_regs_user_thread): Use register number information from
2822 gdbarch_tdep struct instead of hardcoded offsets relative to
2823 FIRST_UISA_SP_REGNUM.
2824 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
2825 special_register_p() instead of using FPLAST_REGNUM and
2826 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
2827 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
2828 will be MQ's register number.
2829
28302002-07-22 Michael Snyder <msnyder@redhat.com>
206d3d3c
KB
2831
2832 * aix-thread.c (ops): Rename to aix_thread_ops.
2833 (base_ops): Rename to base_target.
2834 (ops_attach): Rename to aix_thread_attach.
2835 (ops_detach): Rename to aix_thread_detach.
2836 (ops_resume): Rename to aix_thread_detach.
2837 (ops_wait): Rename to aix_thread_wait.
2838 (ops_kill): Rename to aix_thread_kill.
2839 (init_ops): Rename to init_aix_thread_ops.
2840 (ops_fetch_register): Rename to aix_thread_fetch_register.
2841 (ops_store_register): Rename to aix_thread_store_register.
2842 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
2843 (ops_thread_alive): Rename to aix_thread_thread_alive.
2844 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
2845 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
2846 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
2847 (fetch_regs_lib): Rename to fetch_regs_user_thread.
2848 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
2849 (store_regs_lib): Rename to store_regs_user_thread.
2850 (store_regs_kern): Rename to store_regs_kernel_thread.
2851
27bae383 28522002-07-22 Michael Snyder <msnyder@redhat.com>
cbe92db4
KB
2853
2854 * aix-thread.c (ops_prepare_to_store): Eliminate.
2855 (init_ops): Don't initialize ops.prepare_to_store.
2856 (store_regs_kern): Pre-fetch register buffers from child,
2857 because some registers may not be in the cache. Copy
2858 regs from register cache only if they are cached.
2859 (store_regs_lib): Copy regs from register cache only
2860 if they are cached.
2861 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
2862 fill_gprs64): Ditto.
2863
61c5da0b
KB
28642002-07-22 Kevin Buettner <kevinb@redhat.com>
2865
2866 * aix-thread.c (gdb_assert.h): Include.
2867 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
2868 register sizes (from register cache) match size of buffer holding
2869 register data.
2870 (fill_sprs32): Change parameter types to match those in the ptrace()
2871 buffer.
2872 (store_regs_lib): Likewise, but for 32-bit temporary variables.
2873 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
2874
28752002-07-22 Michael Snyder <msnyder@redhat.com>
2876
2877 * aix-thread.c (supply_sprs64): Cosmetic change.
2878 (supply_sprs32): Cosmetic change.
2879 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
2880 (fill_sprs64): Use regcache_collect instead of read_register.
2881 (store_regs_lib): Use regcache_collect instead of
2882 read_register. Use fill_sprs32 instead of fill_sprs64,
2883 if debugging a 32-bit architecture.
2884 (store_regs_kern): Use fill_gprs64 etc. to pull the values
2885 out of the register cache, instead of passing a pointer into
2886 the register cache directly to ptrace. Use regcache_collect
2887 insteaad of read_register.
2888 (ops_prepare_to_store): Use target_read_registers instead
2889 of read_register_bytes.
2890
36479eb1
AS
28912002-07-20 Aidan Skinner <aidan@velvet.net>
2892
2893 * MAINTAINERS: Add self under write after approval.
2894
80ae6ee2
AS
28952002-07-20 Aidan Skinner <aidan@velvet.net>
2896
2897 * ada-tasks.c: Change k&r style function definitions to prototyped
2898 form.
2899
8a8ab2b9
AC
29002002-07-19 Andrew Cagney <ac131313@redhat.com>
2901
2902 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
2903 * x86-64-tdep.c: Include "objfiles.h".
2904 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
2905 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
2906
fb16b900
ML
29072002-07-17 Michal Ludvig <michal@suse.cz>
2908
2909 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
2910 (update_context): Initialise cfa variable.
2911
0fe7bf7b
MS
29122002-07-17 Michael Snyder <msnyder@redhat.com>
2913
2914 * aix-thread.c: Shorten some long lines.
2915 Bring comments into line with code spec.
2916
488f131b
JB
29172002-07-18 Joel Brobecker <brobecker@gnat.com>
2918
2919 * infrun.c: Re-indent using gdb_indent.sh.
2920
46c415d2
JB
29212002-07-18 Joel Brobecker <brobecker@gnat.com>
2922
2923 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
2924 Leave the indentation temporarily untouched, to minimize the diffs.
2925
cdecafbe
EZ
29262002-07-18 Elena Zannoni <ezannoni@redhat.com>
2927
2928 * stabsread.c: Make os9k sections of the code obsolete,
2929 for real this time.
2930 * stabsread.h: Make os9k sections of the code obsolete.
2931
7b6aa020
ML
29322002-07-18 Michal Ludvig <mludvig@suse.cz>
2933
09ec9b38
ML
2934 * linux-low.c (regsets_store_inferior_registers): Add free()
2935 at the end of a loop to prevent memory leak.
2936 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
2937 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
7b6aa020
ML
2938 * config/sparc/tm-sp64linux.h: Make the rest of #endif
2939 line a comment.
4894ac5d 2940 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
7b6aa020 2941
233282cd
JB
29422002-07-17 Jim Blandy <jimb@redhat.com>
2943
2944 * macrocmd.c (info_macro_command): Remove newline from error
2945 message.
2946
7b6aa020 29472002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
2f14585c
JR
2948
2949 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
2950 (sh_gdbarch_init): Use it for sh-dsp.
2951
f7ef9339
KB
29522002-07-16 Kevin Buettner <kevinb@redhat.com>
2953
2954 * dwarf2read.c (read_initial_length): Handle older, non-standard,
2955 64-bit DWARF2 format.
2956
8dd72958
JB
29572002-07-16 Joel Brobecker <brobecker@gnat.com>
2958
2959 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
2960 <sys/proc.h> when not available.
2961
a99a9e1b
AC
29622002-07-16 Andrew Cagney <ac131313@redhat.com>
2963
2964 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
2965 * stabsread.c: Make os9k sections of the code obsolete.
2966 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
2967 * config/i386/i386os9k.mt: Make file obsolete.
2968 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
2969 (COMMON_OBS): Remove os9kread.o
2970 (SFILES): Remove os9kread.c.
2971 (os9kread.o, remote-os9k.o): Make target obsolete.
2972 * remote-os9k.c: Make file obsolete.
2973 * os9kread.c: Make file obsolete.
2974 * Makefile.in
2975
7a3085c1
AC
29762002-07-16 Andrew Cagney <ac131313@redhat.com>
2977
2978 * NEWS: Mention that the FR30 has been made obsolete.
2979 * fr30-tdep.c: Make file obsolete.
2980 * config/fr30/tm-fr30.h: Ditto.
2981 * config/fr30/fr30.mt: Ditto.
2982 * configure.tgt: Make fr30-*-elf obsolete.
2983 * MAINTAINERS: Make fr30-elf obsolete.
2984
28a93f5a
PM
29852002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
2986
2987 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
2988 found is not inside a section.
2989
be006b8b
KB
29902002-07-15 Kevin Buettner <kevinb@redhat.com>
2991
2992 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
2993 strerror().
2994 (pdc_realloc): Use xrealloc() instead of realloc().
2995
14fa3751
KB
29962002-07-15 Kevin Buettner <kevinb@redhat.com>
2997
2998 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
2999 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
3000 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
3001 macros.
3002
42cc437f
KB
30032002-07-15 Kevin Buettner <kevinb@redhat.com>
3004
3005 * aix-thread.c (ptrace_check): Eliminate goto.
3006 (sync_threadlists): Eliminate gotos. Also, fix array overrun
3007 problem.
3008
8e2c28d4
KB
30092002-07-15 Kevin Buettner <kevinb@redhat.com>
3010
3011 * aix-thread.c (gdbcmd.h): Include.
3012 (DEBUG, DBG, DBG2, dbg): Eliminate.
3013 (debug_aix_thread): New static global.
3014 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
3015 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
3016 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
3017 invocations to DBG and DBG2 macros to test against
3018 ``debug_aix_thread'' and call fprintf_unfiltered().
3019 (_initialize_aix_thread): Add new command "set debug aix-thread".
3020
30413464
AC
30212002-07-15 Andrew Cagney <ac131313@redhat.com>
3022
3023 From Gerhard Tonn <TON@de.ibm.com>:
3024 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
3025 instead of supply_register.
3026
7c43edc1
AC
30272002-07-15 Andrew Cagney <ac131313@redhat.com>
3028
3029 * dwarf2cfi.c: Include "gdb_assert.h".
3030 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
3031 non-NULL.
3032 (update_context): Do not use __func__. Add missing ``break''.
3033 (update_context): Do not use __func__.
3034
9364a0ef
EZ
30352002-07-15 Elena Zannoni <ezannoni@redhat.com>
3036
3037 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
3038 and its setting. Set gdbarch instruction printing functions
3039 directly. For non-rs6000 case use new function
3040 gdb_print_insn_powerpc.
3041 (gdb_print_insn_powerpc): New function.
3042
3fbeef0b
AC
30432002-07-13 Andrew Cagney <ac131313@redhat.com>
3044
92eb23c5 3045 * NEWS: Mention that the d30v has been marked obsolete.
3fbeef0b
AC
3046 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
3047 * configure.tgt: Mark d30v-*-* as obsolete.
3048 * d30v-tdep.c: Mark file as obsolete.
3049 * config/d30v/d30v.mt: Ditto.
3050 * config/d30v/tm-d30v.h: Ditto.
3051
aacb1f0a
AS
30522002-07-13 Aidan Skinner <aidan@velvet.net>
3053
3054 * ada-tasks.c (add_task_entry): replace calls to
3055 malloc() with xmalloc
3056 * ada-tasks.c (init_task_list): replace calls to free with xfree()
3057
3058 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
3059 ada_finish_decode_line_1, all_sals_for_line
3060 ada_breakpoint_rewrite): replace calls to free() with xfree()
3061
c11d79f2
KB
30622002-07-12 Kevin Buettner <kevinb@redhat.com>
3063
3064 From Nicholas Duffek (with minor changes by Martin Hunt,
3065 Louis Hamilton, and Kevin Buettner):
3066 * aix-thread.c: New file.
3067
8e19ed76
PS
30682002-07-12 Petr Sorfa <petrs@caldera.com>
3069
3070 * dwarf2read.c (dwarf2_invalid_attrib_class): New
3071 complaint for invalid attribute class or form.
3072 (read_func_scope): DW_AT_frame_base
3073 better handling of DW_AT_block*.
3074 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
3075 better handling of DW_AT_block*.
3076 (read_common_block): DW_AT_location
3077 better handling of DW_AT_block*.
3078 (read_partial_die): DW_AT_location better handling
3079 of DW_AT_block*.
3080 (new_symbol): DW_AT_external better handling of
3081 DW_AT_block*. Proper initialization of variable
3082 "addr".
3083 (attr_form_is_block): New function that returns true
3084 if the attribute's form is of DW_FORM_block*.
3085
295401f7
DJ
30862002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
3087
3088 * valops.c (find_method_list): Remove comment about
3089 removed STATIC_MEMFUNCP argument.
3090 (value_find_oload_method_list): Likewise.
3091
e42dc924
KB
30922002-07-12 Kevin Buettner <kevinb@redhat.com>
3093
3094 From Nicholas Duffek:
3095 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
3096 target_new_objfile_hook.
3097
6904b546
KB
30982002-07-12 Kevin Buettner <kevinb@redhat.com>
3099
3100 From Nicholas Duffek:
3101 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
3102 csect.
3103
53fe9346
AC
31042002-07-12 Andrew Cagney <cagney@redhat.com>
3105
3106 * MAINTAINERS: Mention --enable-sim-build-warnings.
3107 (m68hc11-elf): Disable sim build warnings.
3108 (m32r-elf): Mark as broken obsolete candidate.
3109 (x86_64-linux-gnu): Mark as buildable with -Werror.
3110 (arm-elf): Change -w to ``,'' which enables warnings but not
3111 -Werror.
3112
af5f3db6
AC
31132002-07-12 Andrew Cagney <ac131313@redhat.com>
3114
3115 * bcache.h: Update copyright.
3116 (struct bstring, struct bcache): Move definition to "bcache.c".
3117 Replaced by opaque declaration.
3118 (bcache_xfree): Replace free_bcache.
3119 (bcache_xmalloc, bcache_memory_used): Declare.
3120
3121 * bcache.c: Update copyright.
3122 (struct bstring, struct bcache): Moved to here from "bcache.h".
3123 Update comments.
3124 (bcache_xmalloc, bcache_memory_used): New functions.
3125 (bcache_xfree): Replace function free_bcache.
3126
3127 * Makefile.in (objfiles.o): Add $(bcache_h).
3128 (objfiles_h): Remove $(bcache_h).
3129 (symfile.o): Add $(bcache_h).
3130
3131 * symmisc.c: Update copyright.
3132 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
3133 (print_objfile_statistics): Use bcache_memory_used.
3134
3135 * symfile.c: Include "bcache.h".
3136 (reread_symbols): Use bcache_xfree.
3137 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
3138 (add_psymbol_to_list): Pass psymbol_cache by value.
3139 (add_psymbol_with_dem_name_to_list): Ditto.
3140
3141 * objfiles.h: Update copyright.
3142 (struct bcache): Declare opaque. Do not include "bcache.h".
3143 (struct objfile): Change psymbol_cache and macro_cache to ``struct
3144 bcache'' pointers.
3145 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
3146
3147 * objfiles.c: Include "bcache.h". Update copyright.
3148 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
3149 macro_cache.
3150 (free_objfile): Use bcache_xfree.
3151
444199e7
GS
31522002-07-11 Grace Sainsbury <graces@redhat.com>
3153
3154 * monitor.c (monitor_fetch_register): Make name a constant.
3155 (monitor_store_register): Same.
3156
261397f8
DJ
31572002-07-11 Daniel Jacobowitz <drow@mvista.com>
3158
3159 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
3160 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
3161 (finish_block) For non-function blocks, hash the symbol table. For
3162 function blocks, mark the symbol table as unhashed.
3163 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
3164 (msymbol_hash_iw): Likewise.
3165 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
3166 value.
3167 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
3168 (lookup_minimal_symbol): Likewise for both.
3169 * symtab.h (struct block): Add `hashtable' flag. Comment the
3170 hashtable.
3171 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
3172 (ALL_BLOCK_SYMBOLS): Update.
3173 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
3174 (struct symbol): Add `hash_next' pointer.
3175 * symtab.c (lookup_block_symbol): Search using the hash table when
3176 possible.
3177 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
3178 (search_symbols, find_addr_symbol): Likewise.
3179
3180 * dstread.c (process_dst_block): Clear hashtable bit for new block.
3181 (read_dst_symtab): Likewise.
3182 * jv-lang.c (get_java_class_symtab): Likewise.
3183 * mdebugread.c: Include "gdb_assert.h".
3184 (shrink_block): Assert that the block being modified is not hashed.
3185 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
3186 * symmisc.c (free_symtab_block): Walk the hash table when freeing
3187 symbols.
3188 (dump_symtab): Recognize hashed blocks.
3189 * printcmd.c (print_frame_args): Assert that function blocks do not
3190 have hashed symbol tables.
3191 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
3192 (fill_in_ada_prototype, debug_print_block): Likewise.
3193 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
3194
6f0eaa01
CV
31952002-07-11 Corinna Vinschen <vinschen@redhat.com>
3196
3197 * stack.c (print_frame): Use result of frame_address_in_block()
3198 instead of fi->pc when evaluating symbols.
3199 (backtrace_command_1): Ditto.
3200
a208b0cb
AC
32012002-07-11 Andrew Cagney <cagney@redhat.com>
3202
3203 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
3204 Make static.
3205
3206 * arm-tdep.c (arm_register_name): Make return type constant.
3207
a6b6b089
AC
32082002-07-10 Andrew Cagney <ac131313@redhat.com>
3209
5ae5f592
AC
3210 * win32-nat.c (has_detach_ability): Convert to strict ISO C
3211 prototype.
3212 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
3213 * s390-tdep.c (s390_fp_regnum): Ditto.
3214 (s390_read_fp): Ditto.
3215 (s390_pop_frame): Ditto.
3216 (_initialize_s390_tdep): Ditto.
3217 * remote.c (get_remote_state): Ditto.
3218 * procfs.c (mappingflags): Ditto.
3219 * memattr.c (_initialize_mem): Ditto.
3220 * mcore-tdep.c (mcore_pop_frame): Ditto.
3221 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
3222 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
3223 * language.c (set_case_str): Ditto.
3224 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
3225 * frv-tdep.c (new_variant): Ditto.
3226 (frv_stopped_data_address): Ditto.
3227 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
3228 (context_alloc): Ditto.
3229 (frame_state_alloc): Ditto.
3230 (unwind_tmp_obstack_init): Ditto.
3231 (unwind_tmp_obstack_free): Ditto.
3232 (cfi_read_fp): Ditto.
3233 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
3234 (cris_pop_frame): Ditto.
3235 * c-lang.c (scanning_macro_expansion): Ditto.
3236 (finished_macro_expansion): Ditto.
3237 (c_preprocess_and_parse): Ditto.
3238 * gdbarch.sh: Ditto.
3239 * gdbarch.h, gdbarch.c: Regenerate.
3240 * config/mn10200/tm-mn10200.h: Adjust indentation.
3241 * target.c: Adjust indentation.
3242 * symtab.h: Adjust indentation.
3243 * stabsread.h: Adjust indentation.
3244 * remote-es.c: Adjust indentation.
3245 * os9kread.c: Adjust indentation.
3246
32472002-07-10 Andrew Cagney <ac131313@redhat.com>
3248
a6b6b089
AC
3249 * wince.c (_initialize_wince): Rename _initialize_inftarg.
3250 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
3251
a1789893
GS
32522002-07-10 Grace Sainsbury <graces@redhat.com>
3253
3254 * NEWS: Mention m68k, mcore multi-arching.
3255 * MAINTAINERS: Change status of m68k, mcore to reflect
3256 multi-arching.
3257
02f0d45d
DJ
32582002-07-10 Daniel Jacobowitz <drow@mvista.com>
3259
3260 * valops.c (find_overload_match): Free oload_syms.
3261
f15f768e
JB
32622002-07-09 Joel Brobecker <brobecker@gnat.com>
3263
3264 Define HAVE_SYS_PROC_H if sys/proc.h exists
3265 * configure.in: Add check for sys/proc.h
3266 * config.in: Regenerate.
3267 * configure: Regenerate.
3268
902a7139
GS
32692002-07-09 Grace Sainsbury <graces@redhat.com>
3270
3271 * config/m68k/tm-m68k.h: Remove macros wrapped in
3272 #if !GDB_MULTI_ARCH.
3273
a534e424
AC
32742002-07-08 Andrew Cagney <ac131313@redhat.com>
3275
3276 * config.in, configure: Regenerate.
3277
9b94f7bf
MK
32782002-07-08 Mark Kettenis <kettenis@gnu.org>
3279
3280 * dwarf2cfi.c: Include "gcore.h".
3281 (execute_stack_op): Fix implementation of the
3282 DW_OP_deref and DW_OP_deref_size operators by letting do their
3283 lookup in the target.
3284
1d34db41
MK
32852002-07-07 Mark Kettenis <kettenis@gnu.org>
3286
3287 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
3288 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
3289 tdep->sc_sp_offset.
3290
79d5b63a
DJ
32912002-07-05 Daniel Jacobowitz <drow@mvista.com>
3292
3293 Fix PR gdb/595, gdb/602
3294 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
3295 Don't call value_cast, just read the vtable pointer; update comments
3296 to match.
3297
3bb912e8
GS
32982002-07-05 Grace Sainsbury <graces@redhat.com>
3299
3300 * config/mcore/tm-mcore.h: Remove file.
3301 * config/mcore/mcore.mt: Remove definition of TM_FILE
3302 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
3303
ca39387d
MK
33042002-07-05 Mark Kettenis <kettenis@gnu.org>
3305
3306 * i386bsd-tdep.c: Include "gdb_string.h".
3307
efdc1108
GS
33082002-07-04 Grace Sainsbury <graces@redhat.com>
3309
3310 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
3311 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
3312 mcore-tdep.
3313 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
3314 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
3315 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
3316 (RETVAL_REGNUM): Move macros from tm-mcore.h
3317 (mcore_reg_struct_has_addr): New function.
3318 (mcore_gdbarch_init): Added initializations for the macros removed
3319 from tm-mcore.h.
3320
bb21884d
MK
33212002-07-04 Mark Kettenis <kettenis@gnu.org>
3322
3323 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
3324 traditonal string branding within the ELF header.
3325
228c6d41
DJ
33262002-07-04 Daniel Jacobowitz <drow@mvista.com>
3327
3328 * symtab.c (remove_params): New function.
3329 (make_symbol_overload_list): Use it instead of cplus_demangle.
3330 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
3331
2404952e
MK
33322002-07-04 Mark Kettenis <kettenis@gnu.org>
3333
e5e4acad
MK
3334 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
3335
baadce09
MK
3336 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
3337 New variables.
3338 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
3339 and tdep->sigtramp_end.
3340 * i386obsd-nat.c: New file.
3341 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
3342
2404952e
MK
3343 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
3344 Don't call get_current_frame().
3345
9b4f1ba7
PM
33462002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
3347
3348 * i386-nat.c (child_post_startup_inferior): New function
3349 calling i386_cleanup_dregs if
3350 I386_USE_GENERIC_WATCHPOINTS is defined.
3351 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
3352 conditional to acknowledge that i386-nat.c has its
3353 own child_post_startup_inferior function.
3354
c0d1d883
MK
33552002-07-04 Mark Kettenis <kettenis@gnu.org>
3356
00f8375e
MK
3357 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
3358 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
3359 instead of MAX_REGISTER_RAW_SIZE.
3360 (i386_extract_return_value, i386_extract_struct_value_address):
3361 Convert to use regcache.
3362 (i386_gdbarch_init): Set max_register_raw_size and
3363 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
3364 Set extract_return_value and extract_struct_value_address instead
3365 of their deprecated variants.
3366
c0d1d883
MK
3367 Convert i386 target to generic dummy frames.
3368 * i386-tdep.c: Include "symfile.h".
3369 (i386_frameless_signal_p): Consider a function to be frameless if
3370 the pc points at the first instruction of the function.
3371 (i386_frame_chain): Handle (generic) call dummies.
3372 (i386_frame_saved_pc): Likewise.
3373 (i386_frame_init_saved_regs): Remove code dealing with call
3374 dummies on the stack.
3375 (i386_push_dummy_frame): Removed.
3376 (i386_call_dummy_words): Removed.
3377 (i386_fix_call_dummy): Removed.
3378 (i386_push_return_address): New function.
3379 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
3380 parameter, and don't call get_current_frame.
3381 (i386_pop_frame): New function.
3382 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
3383 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
3384 entry_point_address, set call_dummy_breakpoint_offset to 0, set
3385 call_dummy_length to 0, set call_dummy_words to NULL, set
3386 sizeof_call_dummy_words to 0, set fix_call_dummy to
3387 generic_fix_call_dummy, set pc_in_call_dummy to
3388 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
3389 generic_push_dummy_frame, set push_return_address to
3390 i386_push_return_address and set frame_chain_valid to
3391 generic_file_frame_chain_valid.
3392
049ee0e4
AC
33932002-07-03 Andrew Cagney <ac131313@redhat.com>
3394
3395 * gdbarch.sh (struct regcache): Add opaque declaration.
3396 (EXTRACT_RETURN_VALUE): New architecture method.
3397 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
3398 * gdbarch.h, gdbarch.c: Regenerate.
3399 * arch-utils.c (legacy_extract_return_value): New function.
3400 * arch-utils.h (legacy_extract_return_value): Declare.
3401 * values.c (value_being_returned): Re-enable code handling
3402 EXTRACT_STRUCT_VALUE_ADDRESS. Move
3403 deprecated_grub_regcache_for_registers call to block handling
3404 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
3405 (EXTRACT_RETURN_VALUE): Do not define.
3406
4e0d9804
GS
34072002-07-03 Grace Sainsbury <graces@redhat.com>
3408
3409 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
3410 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
3411 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
3412 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
3413 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
3414 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
3415 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
3416 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
3417 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
3418 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
3419 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
3420 argument so the function fits the prototype in the architecture
3421 vector.
3422 (mcore_pop_frame): Remove argument so the function fits the
3423 prototype. Use get_current_frame instead of the argument.
3424 (mcore_push_arguments): Change type of struct_return so the
3425 function can be used in the architecture vector.
3426 (mcore_store_struct_return): Add.
3427 (mcore_frame_init_saved_regs): Add.
3428 (mcore_gdbarch_init): Add function calls to replace the macros
3429 removed from tm-mcore.h
3430
36160dc4
AC
34312002-07-03 Andrew Cagney <ac131313@redhat.com>
3432
3433 * infcmd.c (print_return_value): Remove compatibility code calling
3434 deprecated_grub_regcache_for_registers.
3435
3436 * values.c: Include "regcache.h".
3437 (value_being_returned): Update. Use
3438 deprecated_grub_regcache_for_registers to extract the register
3439 buffer address.
3440 * value.h (value_being_returned): Change ``retbuf'' parameter to a
3441 ``struct regcache''.
3442 * Makefile.in (values.o): Add dependency on $(regcache_h).
3443
3444 * inferior.h (run_stack_dummy): Change type of second parameter to
3445 a ``struct regcache''.
3446 * valops.c (hand_function_call): Change type of retbuf to ``struct
3447 regcache''. Allocate using regcache_xmalloc, clean using
3448 make_cleanup_regcache_xfree.
3449 * infcmd.c (run_stack_dummy): Update. Use
3450 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
3451
3452 * regcache.c (do_regcache_xfree): New function.
3453 (make_cleanup_regcache_xfree): New function.
3454 * regcache.h (make_cleanup_regcache_xfree): Declare.
3455
e64d9b3d
MH
34562002-07-03 Martin M. Hunt <hunt@redhat.com>
3457
4dd79c29
MH
3458 * event-top.c (command_line_handler): Don't read past
3459 beginning of buffer.
e64d9b3d 3460
4dd79c29
MH
34612002-07-03 Martin M. Hunt <hunt@redhat.com>
3462
e64d9b3d
MH
3463 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
3464 struct frame_id.
3465 (varobj_create): Store frame_id for root.
3466 (varobj_gen_name): Use xasprintf.
3467 (varobj_update): Save and restore frame using get_frame_id() and
3468 frame_find_by_id().
3469 (create_child): Use xasprintf.
3470 (new_root_variable): Initialize frame_id.
3471 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
3472 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
3473 to prevent memory leak.
3474
26e6c56a
AC
34752002-07-03 Andrew Cagney <ac131313@redhat.com>
3476
3477 * valops.c (hand_function_call): Move declaration of retbuf to
3478 start of function, allocate using malloc, add a cleanup but before
3479 the inf_status cleanup, cleanup the buffer. Rename local variable
3480 old_chain to inf_status_cleanup.
3481
f436dd25
MH
34822002-07-03 Martin M. Hunt <hunt@redhat.com>
3483
3484 * top.c (execute_command): Use cmd_func() and cmd_func_p().
3485
3486 * cli/cli-decode.c (cmd_func_p): New function.
3487 (cmd_func): New function.
3488
3489 * command.h: Add cmd_func() and cmd_func_p().
3490
4cfe2084
GS
34912002-07-03 Grace Sainsbury <graces@redhat.com>
3492
3493 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
3494 (REGISTER_SIZE): Remove.
3495 (MAX_REGISTER_RAW_SIZE): Remove.
3496 (REGISTER_VIRTUAL_TYPE): Remove.
3497 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
3498 (REGISTER_NAME): Remove.
3499 (USE_GENERIC_DUMMY_FRAMES): Remove.
3500 (CALL_DUMMY): Remove.
3501 (CALL_DUMMY_START_OFFSET): Remove.
3502 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3503 (CALL_DUMMY_LOCATION): Remove.
3504 (FIX_CALL_DUMMY): Remove.
3505 (CALL_DUMMY_ADDRESS): Remove.
3506 (SIZEOF_CALL_DUMMY_WORDS): Remove.
3507 (SAVE_DUMMY_FRAME_TOS): Remove.
3508 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
3509 (mcore_register_virtual_type): New function.
3510 (mcore_register_byte): New function.
3511 (mcore_register_size): New function.
3512 (mcore_register_name): New function.
3513 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
3514 macros removed from tm-mcore.h.
3515 (mcore_dump_tdep): Add.
3516 (_initialize_mcore_tdep): Add gdbarch_register call.
3517
4fd667e9
MK
35182002-07-03 Mark Kettenis <kettenis@gnu.org>
3519
3520 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
3521 frameless_look_for_prologue, such that we actually call this
3522 function.
3523
42f99ac2
JB
35242002-07-02 Joel Brobecker <brobecker@gnat.com>
3525
3526 * frame.h (frame_address_in_block): New function.
3527
3528 * blockframe.c (frame_address_in_block): New function extracted
3529 from get_frame_block().
3530 (get_frame_block): Use frame_address_in_block().
3531 (block_innermost_frame): Use frame_address_in_block() to match
3532 the frame pc address against the block boundaries rather than
3533 the frame pc directly. This prevents a failure when a frame pc
3534 is actually a return-address pointing immediately after the end
3535 of the given block.
3536
103a1597 35372002-07-02 Grace Sainsbury <graces@redhat.com>
83b4a0fe
GS
3538
3539 * MAINTAINERS: Add self under write after approval.
3540
35412002-07-02 Grace Sainsbury <graces@redhat.com>
3542
103a1597
GS
3543 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
3544 used in architecture vector. The default is
3545 m68k_local_breakpoint_from_pc.
3546 (m68k_local_breakpoint_from_pc): Add.
3547 (enum): Add register numbers from tm-m68k.h.
3548 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
3549 vector.
3550 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
3551 GDB_MULTI_ARCH_PARTIAL.
3552 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
3553 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
3554 m68k-tdep.c.
3555 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
3556 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
3557 to enum in m68k-tdep.c
3558
7a5a0534
JB
35592002-07-02 Joel Brobecker <brobecker@gnat.com>
3560
3561 * solib-osf.c (open_map): Compute the list of shared libraries
3562 loaded by the inferior, rather than the list of libraries loaded
3563 by GDB itself. Otherwise, GDB ends up reading the symbols from
3564 the wrong shared libraries...
3565
6f558d74
MK
35662002-07-02 Mark Kettenis <kettenis@gnu.org>
3567
b7d15bf7
MK
3568 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
3569 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
3570 macros.
3571 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
3572 Remove functions.
3573 (FRAMELESS_SIGNAL): Remove function.
3574 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
3575 i386_linux_saved_pc_after_call): Removed.
3576 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
3577 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
3578 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
3579
6bff26de
MK
3580 * i386-tdep.c (i386_frameless_signal_p): New function.
3581 (i386_frame_chain): Deal with frameless signals.
3582 (i386_sigtramp_saved_sp): New function.
3583 (i386_frame_saved_pc): Deal with frameless signals.
3584 (i386_saved_pc_after_call): Make sure the correct value is
3585 returned just after entry into a sigtramp.
3586 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
3587 i386fbsd4_sc_sp_offset): New variables.
3588 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
3589 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
3590 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
3591 similiar to what we already did for sc_pc_offset.
3592 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
3593 tdep->sc_sp_offset.
3594
6f558d74
MK
3595 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
3596
145564b7
ML
35972002-07-02 Michal Ludvig <mludvig@suse.cz>
3598
3599 * config/i386/tm-x86-64linux.h: New.
3600 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
3601 definitions.
3602 * config/i386/nm-x86-64.h: Rename to ...
3603 * config/i386/nm-x86-64linux.h: ... this one.
3604 * config/i386/x86-64linux.mh: Reflect the above change.
3605
3a1e71e3
MK
36062002-07-01 Mark Kettenis <kettenis@gnu.org>
3607
21d0e8a4
MK
3608 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
3609 with sigcontext_addr. Add sc_sp_offset.
3610 (i386bsd_sigtramp_saved_pc): Remove prototype.
3611 (i386bsd_sicontext_addr): Add prototype.
3612 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
3613 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
3614 (i386_svr4_sigtramp_saved_pc): Removed.
3615 (i386_svr4_sigcontext_addr): New function.
3616 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3617 Initialize tdep->sigcontext_addr instead. Initialize
3618 tdep->sc_pc_offset and tdep->sc_sp_offset.
3619 (i386_gdbarch_init): Likewise.
3620 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
3621 any more.
3622 (i386bsd_sigtramp_saved_pc): Remove function.
3623 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
3624 Initialize tdep->sigcontext_addr instead. Initialize
3625 tdep->sc_pc_offset.
3626 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
3627 of tdep->sigtramp_saved_pc.
3628 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
3629 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
3630 instead.
3631
3a1e71e3
MK
3632 * i386-tdep.c (i386_frameless_function_invocation,
3633 i386_frame_num_args, i386_frame_init_saved_regs,
3634 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
3635 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
3636 i386_extract_return_value, i386_store_return_value,
3637 i386_extract_struct_value_address, i386_register_virtual_type,
3638 i386_register_convertible, i386_register_convert_to_virtual,
3639 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
3640 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
3641 static.
3642
52e9098c
MK
36432002-07-01 Mark Kettenis <kettenis@gnu.org>
3644
77b13a25
MK
3645 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
3646
52e9098c
MK
3647 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
3648 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
3649 this macro. Include "value.h".
3650
1b372fff
AS
36512002-06-30 Aidan Skinner <aidan@velvet.net>
3652
3653 * ada-exp.tab.c: remove as it's a generated file
3654 * ada-lex.c: remove as it's a generated file
3655
9c5045b5
MK
36562002-06-30 Mark Kettenis <kettenis@gnu.org>
3657
4a93c5bb
MK
3658 * config/i386/tm-i386.h (struct frame_info, struct
3659 frame_saved_regs, struct value, struct type): Remove forward
3660 declarations.
3661
322d4fe0
MK
3662 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
3663 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
3664 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
3665 (FILL_FPXREGSET): Define.
3666
fdd8263d
MK
3667 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
3668
482e577b
MK
3669 * configure.tgt (i[3456]86-*-openbsd*): Fold into
3670 i[3456]86-*-netbsd* case.
3671 * config/i386/tm-obsd.h: Removed.
3672 * config/i386/obsd.mt: Removed.
3673 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
3674 core-aout.o.
3675 (MH_CFLAGS): Add -DYYDEBUG=0.
3676
6916549a
MK
3677 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
3678 i386nbsd_sc_pc_offset on OpenBSD too.
3679
9c5045b5
MK
3680 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
3681 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
3682 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
3683 define.
3684 * i386bsd-tdep.c: Include "arch-utils.h".
3685 (i386bsd_aout_in_solib_call_trampoline): New function.
3686 (i386bsd_init_abi): Set in_solib_call_trampoline to
3687 i386bsd_aout_in_solib_call_trampoline.
3688 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
3689 in_solib_call_trampoline to generic_in_solib_call_trampoline.
3690
aa84d1bb
AC
36912002-06-28 Andrew Cagney <ac131313@redhat.com>
3692
3693 * macrotab.h: Do not include "obstack.h" or "bcache.h".
3694 (struct obstack, struct bcache): Add opaque declarations.
3695 * Makefile.in (macrotab_h): Update
3696
b4d83933
AC
36972002-06-28 Andrew Cagney <ac131313@redhat.com>
3698
3699 * blockframe.c (generic_find_dummy_frame): Change return type to
3700 ``struct regcache''.
3701 (struct dummy_frame): Replace field ``registers'' with regcache, a
3702 struct regcache object.
3703 (generic_find_dummy_frame): Update.
3704 (generic_push_dummy_frame): Update. Use regcache_xfree,
3705 regcache_xmalloc and regcache_cpy.
3706 (generic_pop_dummy_frame): Update. Use regcache_cpy and
3707 regcache_xfree.
3708 (deprecated_generic_find_dummy_frame): Update.
3709 (generic_read_register_dummy): Update. Use
3710 regcache_read_as_address.
3711 (generic_call_dummy_register_unwind): Update. Use regcache_read.
3712 (generic_get_saved_register): Update. Use regcache_read.
3713
08c0b5bc
AC
37142002-06-28 Andrew Cagney <ac131313@redhat.com>
3715
3716 * Makefile.in (objfiles_h): Add $(bcache_h).
3717 * objfiles.h: Include "bcache.h".
3718
3719 * Makefile.in (symtab_h): Remove $(bcache_h).
3720 * symtab.h: Do not include "bcache.h".
3721
1f89801a
AC
37222002-06-28 Andrew Cagney <ac131313@redhat.com>
3723
3724 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
3725 generic_func_frame_chain_valid.
3726
b9644b58
DB
37272002-06-28 David O'Brien <obrien@FreeBSD.org>
3728
3729 * config/i386/nm-fbsd.h: Include <sys/param.h>.
3730 * config/i386/tm-fbsd.h: Likewise.
3731
dd486634
AC
37322002-06-28 Andrew Cagney <ac131313@redhat.com>
3733
3734 * rs6000-tdep.c (rs6000_gdbarch_init): Use
3735 generic_unwind_get_saved_register.
3736
0b434a00
AC
37372002-06-27 Andrew Cagney <ac131313@redhat.com>
3738
3739 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
3740 * regcache.c (supply_register): Add missing argument to
3741 register_buffer call.
3742
f30e5a77
AC
37432002-06-27 Andrew Cagney <ac131313@redhat.com>
3744
3745 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
3746 Solaris /bin/grep does not not like it. From Peter Schauer.
3747
9f064c95
TT
37482002-06-26 Tom Tromey <tromey@redhat.com>
3749
3750 * command.h (add_setshow_cmd): Declare.
3751 (add_setshow_cmd_full): Declare.
3752 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
3753 returns void. Use add_setshow_cmd_full.
3754 (add_setshow_cmd_full): New function.
3755 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
3756 (add_setshow_boolean_cmd): Likewise.
3757
099c7589
JT
37582002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
3759
3760 * config/vax/tm-vax.h: Protect from multiple inclusion.
3761 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
3762 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
3763 * config/vax/tm-vaxbsd.h: ...here. New file.
3764 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
3765
1d049c5e
JT
37662002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
3767
3768 * config/vax/tm-vax.h (BREAKPOINT): Remove.
3769 (BELIEVE_PCC_PROMOTION): Remove.
3770 (AP_REGNUM): Move to...
3771 * config/vax/nm-vax.h: ...here.
3772 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
3773 (vax_breakpoint_from_pc): New function.
3774 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
3775 and gdbarch_believe_pcc_promotion.
3776
4791e091
JT
37772002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
3778
3779 * Makefile.in (vax_tdep_h): Define.
3780 (vax-tdep.o): Use $(vax_tdep_h).
3781 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
3782 (vax_dump_tdep): New function.
3783 (_initialize_vax_tdep): Register vax_dump_tdep.
3784 * vax-tdep.h: Include osabi.h.
3785 (struct gdbarch_tdep): New.
3786
da130f98
AC
37872002-06-26 Andrew Cagney <cagney@redhat.com>
3788
3789 * frame.h (deprecated_generic_find_dummy_frame): Rename
3790 generic_find_dummy_frame.
3791 * blockframe.c (generic_find_dummy_frame): Make static.
3792 (deprecated_generic_find_dummy_frame): New function.
3793 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
3794 generic_find_dummy_frame with deprecated_find_dummy_frame.
3795 (sh64_nofp_frame_init_saved_regs): Ditto.
3796 (sh_fp_frame_init_saved_regs): Ditto.
3797 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
3798 (s390_frame_chain): Ditto.
3799 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
3800
6300c360
GS
38012002-06-26 Grace Sainsbury <graces@redhat.com>
3802
3803 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
3804 gdbarch vector are at the top.
3805 (NUM_REGS): Remove.
3806 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
3807 (FRAME_ARGS_ADDRESS): Remove.
3808 (FRAME_LOCALS_ADDRESS): Remove.
3809 (FRAME_NUM_ARGS): Remove.
3810 (FRAME_ARGS_SKIP): Remove.
3811 * m68k-tdep.c (enum): Add eumeration of special register numbers.
3812 (m68k_gdbarch_init): Add gdbarch initializations for macros
3813 undefined in tm-m68k.h
3814
1c617db8
GS
38152002-06-26 Grace Sainsbury <graces@redhat.com>
3816
3817 * monitor.h: Add the function regname to monitor_ops
3818 structure. This way NUM_REGS does not have to be a constant.
3819 * monitor.c (monitor_fetch_register): Added support for regname
3820 function. The function is called if the array regnames is NULL.
3821 (monitor_store_register): Same.
da130f98
AC
3822 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
3823 regnames array.
1c617db8
GS
3824 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
3825 cpu32bug_cmds.regname to point to new function.
3826 * abug-rom.c (abug_regname): Same as above.
3827 (init_abug_cmds): Same.
3828 * dbug-rom.c (dbug_regname): Same as above.
3829 (init_dbug_cmds): Same.
3830 * remote-est.c (est_regname): Same.
3831 (init_est_cmds): Same.
3832 * rom68k-rom.c (rom68k_regname): Same.
3833 (init_rom68k_cmds): Same.
3834
ea9365bb
TT
38352002-06-25 Tom Tromey <tromey@redhat.com>
3836
3837 * breakpoint.c (delete_command): Don't repeat `delete' commands.
3838
72cec141
AC
38392002-06-25 Andrew Cagney <cagney@redhat.com>
3840
3841 * infrun.c (stop_registers): Change variable's type to ``struct
3842 regcache'''.
3843 (xmalloc_inferior_status): Delete function.
3844 (free_inferior_status): Delete function.
3845 (normal_stop): Use regcache_cpy.
3846 (struct inferior_status): Change type of fields ``stop_registers''
3847 and ``registers'' to ``struct regcache''.
3848 (write_inferior_status_register): Use regcache_write.
3849 (save_inferior_status): Instead of calling
3850 xmalloc_inferior_status, allocate the inf_status buffer directly.
3851 Use regcache_dup_no_passthrough and regcache_dup to save the
3852 buffers.
3853 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
3854 Replace the stop_registers regcache instead of overriding it. Use
3855 regcache_xfree. Instead of calling free_inferior_status, xfree
3856 the buffer directly.
3857 (discard_inferior_status): Use regcache_xfree. Instead of calling
3858 free_inferior_status, xfree the buffer directly.
3859 (build_infrun): Use regcache_xmalloc.
3860 (_initialize_infrun): Delete redundant call to build_infrun.
3861
3862 * Makefile.in (infcmd.o): Add $(regcache_h).
3863
3864 * infcmd.c: Include "regcache.h".
3865 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
3866 obtain the address of `stop_registers' register buffer.
3867 (print_return_value): Ditto.
3868
3869 * inferior.h (struct regcache): Add opaque declaration.
3870 (stop_registers): Change variable's declared type to ``struct
3871 regcache''.
3872
defc6f8c
TT
38732002-06-24 Tom Tromey <tromey@redhat.com>
3874
c0e624e7
TT
3875 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
3876 * target.c (initialize_targets): Fixed typo in
3877 trust-readonly-sections `show' documentation.
3878
defc6f8c
TT
3879 * main.c: Marked all strings with _().
3880
2b236d82
DH
38812002-06-24 Don Howard <dhoward@redhat.com>
3882
3883 * memattr.c (create_mem_region): Treat hi == 0 as a special case
3884 that means max CORE_ADDR+1.
3885 (lookup_mem_region): Ditto.
3886 (mem_info_command): Ditto.
3887
942dc0e9
GS
38882002-06-24 Grace Sainsbury <graces@redhat.com>
3889
3890 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
3891 (REGISTER_BYTES_OK): Remove.
3892 (REGISTER_BYTES): Remove.
3893 (STORE_STRUCT_RETURN): Remove.
3894 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
3895 (STORE_RETURN_VALUE): Remove.
3896 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
3897 (FRAME_CHAIN): Remove.
3898 (FRAMELESS_FUNCTION_INVOCATION): Remove.
3899 (FRAME_SAVED_PC): Remove.
3900 * m68k-tdep.c (m68k_register_bytes_ok):Add.
3901 (m68k_store_struct_return): Add.
3902 (m68k_deprecated_extract_return_value): Add.
3903 (m68k_deprecated_extract_struct_value_address): Add.
3904 (m68k_store_return_value): Add.
3905 (m68k_frame_chain): Add.
3906 (m68k_frameless_function_invocation): Add.
3907 (m68k_frame_saved_pc): Add.
3908 (m68k_gdbarch_init): added set_gdbarch calls for new
3909 functions and deleted macros.
3910
03c30d4d
TT
39112002-06-23 Tom Tromey <tromey@redhat.com>
3912
3913 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
3914 (ALLDEPFILES): Likewise.
3915 (udiheaders): Removed.
3916 (udip2soc.o): Likewise.
3917 (udi2go32.o): Likewise.
3918 (udr.o): Likewise.
3919 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
3920
37e71372
AC
39212002-06-22 Andrew Cagney <ac131313@redhat.com>
3922
06a6ac57
AC
3923 * infrun.c (_initialize_infrun): Delete unnecessary call to
3924 build_infrun.
3925
37e71372
AC
3926 * regcache.h: Update comments describing the regcache_cpy family
3927 of functions.
3928 (regcache_save, regcache_restore): Delete declaration.
3929 (regcache_save_no_passthrough): Delete declaration.
3930 (regcache_restore_no_passthrough): Delete declaration.
3931 * regcache.c (regcache_save): Delete function.
3932 (regcache_save_no_passthrough): Delete function.
3933 (regcache_restore): Delete function.
3934 (regcache_restore_no_passthrough): Delete function.
3935
78f6d055
AC
39362002-06-21 Andrew Cagney <ac131313@redhat.com>
3937
3938 * config/m68k/tm-m68k.h: Fix typo.
3939 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
3940 (m68k_frame_init_saved_regs): Declare.
3941
78b119cb
JB
39422002-06-21 Jim Blandy <jimb@redhat.com>
3943
3944 Remove some vestiges of Harris 88k support.
3945 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
3946 register numbering quirk.
3947 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
3948 odd symbols occurring in Harris 88k ELF targets.
3949
0fbb3da7
TT
39502002-06-21 Tom Tromey <tromey@redhat.com>
3951
3952 * gdb_locale.h: New file.
3953 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
3954 (defs_h): Added gdb_locale.h.
3955 * configure, config.in: Rebuilt.
3956 * configure.in (PACKAGE): Define.
3957 * defs.h: Include gdb_locale.h.
3958 * main.c (captured_main): Call setlocale, bindtextdomain,
3959 textdomain.
3960
456f8b9d
DB
39612002-06-21 Dave Brolley <brolley@redhat.com>
3962
3963 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
3964 * config/frv/frv.mt: New file.
3965 * config/frv/tm-frv.h: New file.
3966 * configure.tgt: Support frv-*-*.
3967 * Makefile.in (frv-tdep.o): New target.
3968 * frv-tdep.c: New file.
3969 * NEWS: Mention frv.
3970
cdd463f9
DB
39712002-06-21 Dave Brolley <brolley@redhat.com>
3972
3973 * MAINTAINERS: Add self to "Write After Approval" list.
3974
5d3ed2e3
GS
39752002-06-21 Grace Sainsbury <graces@redhat.com>
3976
3977 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
3978 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
3979 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
3980 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
3981 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
3982
3983 * m68k-tdep.c: Include arch-utils.h
3984 (m68k_register_raw_size): Add.
3985 (m68k_register_virtual_size): Add.
3986 (m68k_register_virtual_type): Add.
3987 (m68k_register_name): Add.
3988 (m68k_stack_align): Add.
3989 (m68k_register_byte): Add.
3990 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
3991 tm-m68k.h.
3992
7f8e7424
GS
39932002-06-21 Grace Sainsbury <graces@redhat.com>
3994
a2c6a6d5 3995 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
7f8e7424
GS
3996 m68k_find_saved_regs.
3997 (m68k_pop_frame): Removed saved_regs structure, and replaced
5d3ed2e3 3998 references to it with frame->saved_regs.
7f8e7424
GS
3999 (m68k_gdbarch_init): Added function calls to initialize the
4000 gdbarch structure.
a2c6a6d5
GS
4001 (m68k_fix_call_dummy): Add.
4002 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
4003 (CALL_DUMMY): Remove.
4004 (CALL_DUMMY_LENGTH): Remove.
4005 (CALL_DUMMY_START_OFFSET): Remove.
4006 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
4007 (FIX_CALL_DUMMY): Remove.
4008 (PUSH_DUMMY_FRAME): Remove.
4009 (POP_FRAME): Remove.
7f8e7424 4010
f461f5cf
PM
40112002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
4012
4013 * parse.c (parse_fprintf): New function used to avoid calls to
4014 fprintf in bison parser generated debug code.
4015 * parser-defs.h: Declaration of new parse_fprintf function.
4016 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
4017 Set YYDEBUG to 1 by default.
4018 Set YYFPRINTF as parse_fprintf.
4019
7f0c12ed
ML
40202002-06-21 Michal Ludvig <mludvig@suse.cz>
4021
4022 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
4023 encoding anymore.
4024 (pointer_encoding, enum ptr_encoding): New.
4025 (execute_cfa_program): Take care about pointer encoding.
4026 (dwarf2_build_frame_info): Only call parse_frame_info for
4027 .debug_frame and .eh_frame.
4028 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
4029 fixed augmentation handling, added relative addressing,
4030 ignore duplicate FDEs. Added comments.
19d833a2 4031 * dwarf2cfi.c: Reindented.
7f0c12ed 4032
87c4a039
EZ
40332002-06-20 Elena Zannoni <ezannoni@redhat.com>
4034
4035 * event-top.c (command_handler): Don't use space_at_cmd_start
4036 unless there is sbrk() on the host. Assign time and space data
4037 to union fields of the appropriate length.
4038
1cf877ad
ML
40392002-06-20 Michal Ludvig <mludvig@suse.cz>
4040
4041 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
4042 x86_64_register_name. Return type changed to 'const char *'.
4043 (x86_64_register_name2nr): Rename to x86_64_register_number.
4044 (x86_64_gdbarch_init): Update to reflect the change.
4045 * x86-64-tdep.h: Ditto.
4046 * x86-64-linux-nat.c (x86_64_fxsave_offset)
4047 (supply_fpregset): Ditto.
4048
3fadccb3
AC
40492002-06-19 Andrew Cagney <cagney@redhat.com>
4050
4051 * regcache.h: Update copyright.
4052 (struct regcache, struct gdbarch): Add opaque declarations.
4053 (current_regcache): Declare global variable.
4054 (regcache_read, regcache_write): Add gdbarch parameter.
4055 (regcache_save, regcache_save_no_passthrough)
4056 (regcache_restore, regcache_restore_no_passthrough)
4057 (regcache_dup, regcache_dup_no_passthrough)
4058 (regcache_cpy, regcache_cpy_no_passthrough)
4059 (deprecated_grub_regcache_for_registers)
4060 (deprecated_grub_regcache_for_register_valid)
4061 (regcache_valid_p): Add function declarations.
4062
4063 * regcache.c: Update copyright.
4064 (regcache_descr_handle): New global variable.
4065 (struct regcache_descr): Define.
4066 (init_legacy_regcache_descr, init_regcache_descr): New functions.
4067 (regcache_descr, xfree_regcache_descr): New functions.
4068 (struct regcache): Define.
4069 (regcache_xmalloc, regcache_xfree): New functions.
4070 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
4071 (regcache_dup, regcache_dup_no_passthrough): New functions.
4072 (regcache_valid_p, regcache_read_as_address): New functions.
4073 (deprecated_grub_regcache_for_registers): New function.
4074 (deprecated_grub_regcache_for_register_valid): New function.
4075 (current_regcache): New global variable.
4076 (register_buffer): Add regcache parameter. Update calls.
4077 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
4078 (read_register_gen, write_register_gen): Update register_buffer
4079 call. Test for legacy_p instead of gdbarch_register_read_p or
4080 gdbarch_register_write_p.
4081 (regcache_collect): Update register_buffer call.
4082 (build_regcache): Rewrite. Use deprecated grub functions.
4083 (regcache_save, regcache_save_no_passthrough): New functions.
4084 (regcache_restore, regcache_restore_no_passthrough): New
4085 functions.
4086 (_initialize_regcache): Create the regcache_data_handle. Swap
4087 current_regcache global variable.
4088
4089 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
4090 parameter to regcache_read and regcache_write calls.
4091 (sh4_register_read): Ditto.
4092 (sh64_pseudo_register_read): Ditto.
4093 (sh64_register_read): Ditto.
4094 (sh_pseudo_register_write): Ditto.
4095 (sh4_register_write): Ditto.
4096 (sh64_pseudo_register_write): Ditto.
4097 (sh64_register_write): Ditto.
4098
4099 * defs.h (XCALLOC): Define.
4100
152d9db6
GS
41012002-06-19 Grace Sainsbury <graces@redhat.com>
4102
4103 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
4104 * m68k-tdep.c (m68k_gdbarch_init): Added.
4105 (m68k_dump_tdep): Added.
4106
170911c7
DJ
41072002-06-19 Daniel Jacobowitz <drow@mvista.com>
4108
4109 * ada-lang.c (fill_in_ada_prototype): Update comment.
4110
2e4ebe70
DJ
41112002-06-19 Daniel Jacobowitz <drow@mvista.com>
4112
4113 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
4114 MIPS_ABI_LAST.
4115 (mips_abi_string, mips_abi_strings): New.
4116 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
4117 (mips_gdbarch_init): Set tdep->found_abi. Don't set
4118 tdep->mips_abi_string. Honor mips_abi_string. Default to
4119 O32 if no ABI is found.
4120 (mips_dump_tdep): Use mips_abi_strings.
4121 (mips_abi_update): New function.
4122 (_initialize_mips_tdep): Initialize mips_abi_string. Add
4123 ``set mips abi'' and ``show mips abi''. Check the size of
4124 mips_abi_strings.
4125
16775908
AC
41262002-06-19 Andrew Cagney <cagney@redhat.com>
4127
4128 * i386-linux-tdep.c (i386_linux_register_name): Make return type
4129 constant.
4130
5051bfa4 41312002-06-18 Joel Brobecker <brobecker@gnat.com>
16775908 4132
5051bfa4
JB
4133 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
4134 current frame using only the first stack size adjustment. All
4135 subsequent size adjustments are not considered to be part of
4136 the "static" part of the current frame.
4137 Compute the address of the saved registers relative to the
4138 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
4139 in use in this frame.
4140
56468235
DH
41412002-06-18 Don Howard <dhoward@redhat.com>
4142
4143 * valops.c (value_ind): Use value_at_lazy() when dereferencing
4144 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
4145 suggesting this solution.
4146
0b624158
AC
41472002-06-18 Andrew Cagney <ac131313@redhat.com>
4148
4149 * config/romp/xm-rtbsd.h: Delete file.
4150 * config/romp/rtbsd.mh: Delete file.
4151
221ea385
KS
41522002-06-18 Keith Seitz <keiths@redhat.com>
4153
4154 * breakpoint.c (condition_command): Post breakpoint_modify
4155 when a condition is added to an existing breakpoint.
4156 (commands_command): Likewise for commands.
4157 (set_ignore_count): Likewise for ignore counts.
4158 If no tty, do not simply return, still need to send event
4159 notification.
4160 (ignore_command): Only print a newline if the command came
4161 from a tty.
4162 Don't call breakpoints_changed, since this is now properly
4163 handled by set_ignore_count.
4164
5402eed1
AC
41652002-06-18 Andrew Cagney <cagney@redhat.com>
4166
4167 * MAINTAINERS: Note that cris-elf target can be compiled with
4168 -Werror.
4169 * cris-tdep.c (cris_register_name): Make return type constant.
4170 (cris_breakpoint_from_pc): Ditto.
4171
cc22880b
ML
41722002-06-18 Michal Ludvig <mludvig@suse.cz>
4173
4174 * frame.h (struct frame_info): Change type of context to
4175 'struct context'.
4176
fa88f677
AC
41772002-06-17 Andrew Cagney <cagney@redhat.com>
4178
4179 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
4180 pointer.
4181 * gdbarch.h, gdbarch.c: Regenerate.
4182 * config/mips/tm-mips.h (mips_register_name): Update.
4183 * i386-tdep.h (i386_register_name): Update.
4184 * mips-tdep.c (mips_register_name): Update
4185 * alpha-tdep.c (alpha_register_name): Update.
4186 * arch-utils.c (legacy_register_name): Update.
4187 * arch-utils.h (legacy_register_name): Update.
4188 * avr-tdep.c (avr_register_name): Update.
4189 * ia64-tdep.c (ia64_register_name): Update.
4190 * i386-tdep.c (i386_register_name): Update.
4191 * sparc-tdep.c (sparc32_register_name): Update.
4192 (sparc64_register_name): Update.
4193 (sparclite_register_name): Update.
4194 (sparclet_register_name): Update.
4195 * sh-tdep.c (sh_generic_register_name): Update.
4196 (sh_sh_register_name): Update.
4197 (sh_sh3_register_name): Update.
4198 (sh_sh3e_register_name): Update.
4199 (sh_sh_dsp_register_name): Update.
4200 (sh_sh3_dsp_register_name): Update.
4201 (sh_sh4_register_name): Update.
4202 (sh_sh64_register_name): Update.
4203 * s390-tdep.c (s390_register_name): Update.
4204 * rs6000-tdep.c (rs6000_register_name): Update.
4205 * ns32k-tdep.c (ns32k_register_name_32082): Update.
4206 (ns32k_register_name_32382): Update.
4207 * d10v-tdep.c (d10v_ts2_register_name): Update.
4208 (d10v_ts3_register_name): Update.
4209 * xstormy16-tdep.c (xstormy16_register_name): Update.
4210 * vax-tdep.c (vax_register_name): Update.
4211 * v850-tdep.c (v850_register_name): Update.
4212 * m68hc11-tdep.c (m68hc11_register_name): Update.
4213 * mn10300-tdep.c (mn10300_generic_register_name): Update.
4214 (am33_register_name): Update.
4215
ea1e7ef6
GS
42162002-06-17 Grace Sainsbury <graces@redhat.com>
4217
4218 * m68k-tdep.c: Reindented.
4219
9b02dd1b
AC
42202002-06-17 Andrew Cagney <ac131313@redhat.com>
4221
4222 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
4223 list of predefined types.
4224
8758dec1
MK
42252002-06-16 Mark Kettenis <kettenis@gnu.org>
4226
b6197528
MK
4227 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
4228 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
4229 REGISTER_CONVERT_TO_RAW): Remove defines.
4230 (i386_register_virtual_type, i386_register_convertible,
4231 i386_register_convert_to_virtual, i386_register_convert_to_raw):
4232 Remove prototypes.
4233 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4234 macros mentioned above.
4235
82b47e62
MK
4236 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
4237 (i386lynx_saved_pc_after_call): Remove prototype.
4238 * i386ly-tdep.c: Include "i386-tdep.h".
4239 (i386lynx_saved_pc_after_call): Make static. Use
4240 read_memory_nobpt instead of read_memory. Use
4241 read_memory_unsigned_integer instead of read_memory_integer.
4242 (i386lynx_init_abi): New function.
4243 (i386lynx_coff_osabi_sniffer): New function.
4244 (_initialize_i386bsd_tdep): New function.
4245
8758dec1
MK
4246 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
4247 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
4248 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
4249 (i386_fix_call_dummy): Remove prototype.
4250 * i386-tdep.c (i386_call_dummy_words): New variable.
4251 (i386_gdbarch_init): Adjust for removal of the
4252 macros mentioned above.
4253
e9e68a56
AC
42542002-06-15 Andrew Cagney <ac131313@redhat.com>
4255
4256 * command.h (add_setshow_auto_boolean_cmd): Replace
4257 add_set_auto_boolean_cmd.
4258 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
4259 add_set_auto_boolean_cmd.
4260 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
4261 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
4262 mask-address'' command.
4263 (show_mask_address): Add cmd parameter.
4264 * remote.c (add_packet_config_cmd): Update. Change type of
4265 set_func and show_func to cmd_sfunc_ftype.
4266 (_initialize_remote): Update `set remote Z-packet'
4267 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
4268 (show_remote_protocol_e_packet_cmd): Ditto.
4269 (show_remote_protocol_E_packet_cmd): Ditto.
4270 (show_remote_protocol_P_packet_cmd): Ditto.
4271 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
4272 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
4273 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
4274 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
4275 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
4276 (show_remote_protocol_Z_packet_cmd): Ditto.
4277 (show_remote_protocol_binary_download_cmd): Ditto.
4278 (show_remote_cmd): Pass NULL to all of above.
4279
fc08ec52
MK
42802002-06-15 Mark Kettenis <kettenis@gnu.org>
4281
4282 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
4283 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
4284 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
4285 POP_FRAME): Remove defines.
4286 (i386_push_arguments, i386_store_struct_return,
4287 i386_extract_return_value, i386_store_return_value,
4288 i386_extract_struct_value_address, i386_push_dummy_frame,
4289 i386_pop_frame): Renove prototypes.
4290 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4291 macros mentioned above.
4292
e707bbc2
AC
42932002-06-15 Andrew Cagney <ac131313@redhat.com>
4294
4295 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
4296 add_set_boolean_cmd.
4297 (add_setshow_cmd): New function.
4298 * command.h (add_setshow_boolean_cmd): Replace
4299 add_set_boolean_cmd.
4300 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
4301 and ``set rdiromatzero''.
4302 * maint.c (_initialize_maint_cmds): Update commented out code.
4303 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
4304 * target.c (initialize_targets): Update `set
4305 trust-readonly-sections'.
4306 * remote.c (_initialize_remote): Update `set remotebreak'.
4307
42fdc8df
MK
43082002-06-15 Mark Kettenis <kettenis@gnu.org>
4309
93924b6b
MK
4310 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
4311 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
4312 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
4313 fit into multi-arch framework.
4314 (i386_breakpoint_from_pc): New function.
4315 (i386_gdbarch_init): Adjust for removal of the macros mentioned
4316 above.
4317
42fdc8df
MK
4318 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
4319 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
4320 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
4321 (i386_frameless_function_invocation, i386_frame_num_args,
4322 i386_frame_init_saved_regs): Remove prototypes.
4323 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
4324 macros mentioned above.
4325
9773a94b
AC
43262002-06-15 Andrew Cagney <ac131313@redhat.com>
4327
4328 * cli/cli-decode.c (set_cmd_cfunc): Update.
4329 (set_cmd_sfunc): Update.
4330 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
4331 (set_cmd_sfunc, set_cmd_cfunc): Update.
4332 * cli/cli-decode.h: Update.
4333
6e157172
MK
43342002-06-15 Mark Kettenis <kettenis@gnu.org>
4335
4336 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
4337 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
4338
7f19b9a2
AC
43392002-06-15 Andrew Cagney <ac131313@redhat.com>
4340
4341 * defs.h (auto_boolean): Declare enum.
4342 * command.h (cmd_auto_boolean): Delete enum.
4343 * mips-tdep.c (mask_address_var): Update.
4344 (mips_mask_address_p): Update.
4345 (show_mask_address): Update.
4346 * remote.c (struct packet_config): Update.
4347 (update_packet_config): Update.
4348 (show_packet_config_cmd): Update.
4349 (packet_ok): Update.
4350 (add_packet_config_cmd): Update.
4351 (_initialize_remote):
4352 * command.h: Update.
4353 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
4354 (do_setshow_command): Update.
4355 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
4356 * cli/cli-decode.h: Update.
4357
1cf88de5
MK
43582002-06-15 Mark Kettenis <kettenis@gnu.org>
4359
22ba8cf2
MK
4360 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
4361 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
4362 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
4363 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
4364 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
4365 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
4366
762c5349
MK
4367 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
4368 list of DJGPP COFF targets.
4369
091198bb
MK
4370 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
4371 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
4372 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
4373 (FP0_REGNUM): Remove define.
4374 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
4375 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
4376 (i386_register_virtual_size): Remove protoype.
4377 * i386-tdep.c (i386_register_virtual_size): Removed.
4378 (i386_extract_return_value, i386_store_return_value): Use
4379 FP0_REGNUM instead of NUM_FREGS to determine whether the
4380 floating-point registers are available.
4381 (i386_gdbarch_init): Tweak FIXME about FPU registers.
4382 Adjust for removal of macros mentioned above.
4383
43842002-06-15 Mark Kettenis <kettenis@gnu.org>
4385
fcc9bf01
MK
4386 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
4387 comments.
4388 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
4389 Remove prototypes.
4390 (supply_gregset, fill_gregset): Remove use of register keyword and
4391 remove declaration for regmap. Use I386_NUM_GREGS instead of
4392 NUM_REGS and NUM_FREGS.
4393 (FPREGSET_FSAVE_OFFSET): Remove.
4394 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
4395 NUM_FREGS to determine whether the floating-point registers are
4396 available.
4397
65e78234
MK
4398 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
4399 gnu_store_registers): Replace usage of NUM_GREGS with
4400 I386_NUM_GREGS.
4401
98df6387
MK
4402 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
4403 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
4404 usage of NUM_GREGS with I386_NUM_GREGS.
4405
099a9414
MK
4406 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
4407
57976e88
MK
4408 * i386bsd-nat.c: Include "i386-tdep.h".
4409 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
4410 I386_NUM_GREGS.
4411
b335f4a6
MK
4412 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
4413 and associated comment. They no longer make any sense, since we
4414 don't use this file anymore on Linux.
4415
1cf88de5
MK
4416 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
4417 * i386-tdep.c (i386_register_offset, i386_register_size): Use
4418 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
4419 elements in these arrays.
4420 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
4421 MAX_NUM_REGS.
4422
daa66587
MK
44232002-06-15 Mark Kettenis <kettenis@gnu.org>
4424
4425 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
4426 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
4427
26e9b323
AC
44282002-06-14 Andrew Cagney <cagney@redhat.com>
4429
4430 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
4431 EXTRACT_RETURN_VALUE.
4432 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
4433 EXTRACT_STRUCT_VALUE_ADDRESS.
4434 * gdbarch.h, gdbarch.c: Regenerate.
4435
4436 * values.c (value_being_returned): Handle
4437 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
4438 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
4439
4440 * arm-linux-tdep.c (arm_linux_init_abi): Update.
4441 * arm-tdep.c (arm_gdbarch_init): Update.
4442 * avr-tdep.c (avr_gdbarch_init): Update.
4443 * cris-tdep.c (cris_gdbarch_init): Update.
4444 * d10v-tdep.c (d10v_gdbarch_init): Update.
4445 * ia64-tdep.c (ia64_gdbarch_init): Update.
4446 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4447 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4448 * s390-tdep.c (s390_gdbarch_init): Update.
4449 * sh-tdep.c (sh_gdbarch_init): Update.
4450 * s390-tdep.c (s390_gdbarch_init): Update.
4451 * sparc-tdep.c (sparc_gdbarch_init): Update.
4452 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4453 * v850-tdep.c (v850_gdbarch_init): Update.
4454 * vax-tdep.c (vax_gdbarch_init): Update.
4455 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
4456 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4457
4458 * config/arc/tm-arc.h: Update.
4459 * config/d30v/tm-d30v.h: Update.
4460 * config/fr30/tm-fr30.h: Update.
4461 * config/h8300/tm-h8300.h: Update.
4462 * config/h8500/tm-h8500.h: Update.
4463 * config/i386/tm-i386.h: Update.
4464 * config/i386/tm-ptx.h: Update.
4465 * config/i386/tm-symmetry.h: Update.
4466 * config/i960/tm-i960.h: Update.
4467 * config/m32r/tm-m32r.h: Update.
4468 * config/m68k/tm-delta68.h: Update.
4469 * config/m68k/tm-linux.h: Update.
4470 * config/m68k/tm-m68k.h: Update.
4471 * config/m88k/tm-m88k.h: Update.
4472 * config/mcore/tm-mcore.h: Update.
4473 * config/mips/tm-mips.h: Update.
4474 * config/mn10200/tm-mn10200.h: Update.
4475 * config/pa/tm-hppa.h: Update.
4476 * config/pa/tm-hppa64.h: Update.
4477 * config/sparc/tm-sp64.h: Update.
4478 * config/sparc/tm-sparc.h: Update.
4479 * config/sparc/tm-sparclet.h: Update.
4480 * config/z8k/tm-z8k.h: Update.
4481
5179e78f
AC
44822002-06-14 Andrew Cagney <cagney@redhat.com>
4483
4484 * Makefile.in (i386_linux_tdep_h): Define.
4485 (i386_tdep_h, i387_tdep_h): Define.
4486 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
4487 $(i386_tdep_h) and $(i387_tdep_h).
4488 * i386-linux-nat.c: Include "i386-linux-tdep.h".
4489
8201327c
MK
44902002-06-14 Mark Kettenis <kettenis@gnu.org>
4491
edf393ac
MK
4492 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
4493 Already covered by the default.
4494
896fb97d
MK
4495 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
4496 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
4497 (i386_gdbarch_init): Initialize long_double_format and long_double
4498 bit.
4499
8201327c
MK
4500 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
4501 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
4502 Move these to ...
4503 * config/i386/i386sol2.mh: ... here.
4504 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
4505 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
4506 (SIGCONTEXT_PC_OFFSET): Remove define.
4507 (IN_SIGTRAMP): Remove define.
4508 * i386-sol2-tdep.c: New file.
4509
4510 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
4511 * config/i386/tm-i386nw.h: Removed.
4512
4513 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
4514 USE_STRUCT_CONVENTION): Remove defines.
4515 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4516 (get_longjmp_target): Remove prototype.
4517 (IN_SIGTRAMP): Remove define.
4518 (i386bsd_in_sigtramp): Remove prototype.
4519 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
4520 function. Update comment accordingly
4521 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
4522 (FRAME_SAVED_PC): Remove define.
4523 (i386bsd_frame_saved_pc): Remove prototype.
4524 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
4525 GET_LONGJMP_TARGET): Remove defines.
4526 (get_longjmp_target): Remove prototype.
4527 (IN_SIGTRAMP): Remove define.
4528 (i386bsd_in_sigtramp): Remove prototype.
4529 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
4530 function. Update comment accordingly
4531 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
4532 (FRAME_SAVED_PC): Remove define.
4533 (i386bsd_frame_saved_pc): Remove prototype.
4534 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
4535 Remove prototype.
4536 (USE_STRUCT_CONVENTION): Remove prototype.
4537 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
4538 declaration.
4539 (_initialize_i386bsd_nat): Revise logic to determine some
4540 constants at compile time when compiling a native GDB. Warn if
4541 things don't match up with what we expect.
4542 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
4543 Remove variables.
4544 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
4545 to use date stored in `struct gdbarch_tdep'.
4546 (i386bsd_sigcontext_offset): Remove varaible.
4547 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
4548 stored in `struct gdbarch_tdep'.
4549 (i386bsd_frame_saved_pc): Make static.
4550 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
4551 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
4552 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
4553 i386fbsd4_sc_pc_offset): New variables.
4554 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
4555 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
4556 functions.
4557 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
4558 functions.
4559 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
4560 Modify the value of i386fbsd_sigtramp_start and
4561 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
4562 i386fbsd_sigtramp_end.
4563 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
4564 function.
4565
4566 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
4567 define to i386-linux-tdep.h.
4568 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
4569 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
4570 defines.
4571 (i386_linux_register_name, i386_linux_register_byte,
4572 i386_linux_register_raw_size): Remove prototypes.
4573 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
4574 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
4575 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
4576 TARGET_WRITE_PC): Remove defines.
4577 (i386_linux_in_sigtramp, i386_linux_frame_chain,
4578 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
4579 i386_linux_write_pc): Remove prototypes.
4580 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4581 (get_longjmp_target): Remove prototype.
4582 * i386-linux-tdep.h: New file.
4583 * i386-linux-nat.c: Include "i386-linux-tdep.h".
4584 * i386-linux-tdep.c: Include "i386-tdep.h" and
4585 "i386-linux-tdep.h".
4586 (i386_linux_register_name, i386_linux_register_byte,
4587 i386_linux_register_raw_size, i386_linux_in_sigtramp,
4588 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
4589 Make static.
4590 (i386_linux_init_abi): New function.
4591 (_initialize_i386_linux_tdep): New function.
4592
4593 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
4594 (i386_saved_pc_after_call): Remove prototype.
4595 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
4596 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
4597 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
4598 (i386_register_name, i386_stab_reg_to_regnum,
4599 i386_dwarf_reg_to_regnum): Remove prototypes.
4600 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
4601 SIZEOF_SSE_REGS): Remove defines.
4602 (REGISTER_BYTES): Remove define.
4603 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
4604 (i386_register_byte, i386_register_raw_size): Remove prototypes.
4605 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
4606 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
4607 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
4608 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
4609 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
4610 (get_longjmp_target): Remove prototype.
4611 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
4612 (sigtramp_saved_pc): Remove define.
4613 (i386v4_sigtramp_saved_pc): Remove prototype.
4614 * config/i386/tm-go32.h (FRAME_CHAIN,
4615 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
4616 (i386go32_frame_saved_pc): Remove prototype.
4617 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
4618 (get_longjmp_target): Remove prototype.
4619 * i386-tdep.h: Include "osabi.h".
4620 (enum i386_abi): Removed.
4621 (enum struct_return): New enum.
4622 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
4623 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
4624 sc_pc_offset members.
4625 (i386_gdbarch_register_os_abi): Remove prototype.
4626 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
4627 I386_SSE_NUM_REGS): New defines.
4628 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
4629 I386_SSE_SIZEOF_REGS): New defines.
4630 (i386_register_name, i386_register_byte, i386_register_raw_size):
4631 New prototypes.
4632 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
4633 (i386bsd_sigtramp_saved_pc): New prototype.
4634 * i386-tdep.c: Don't include "elf-bfd.h".
4635 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
4636 i386_frame_chain, i386_saved_pc_after_call): Make static.
4637 (i386_frame_saved_pc): Rewrite to call architecture dependent
4638 function to deal with signal handlers. Make static.
4639 (i386go32_frame_saved_pc): Removed.
4640 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
4641 Removed.
4642 (i386_get_longjmp_target): New function.
4643 (default_struct_convention, pcc_struct_convention,
4644 reg_struct_convention, valid_conventions, struct_convention): New
4645 variables.
4646 (i386_use_struct_convention): New function.
4647 (i386v4_sigtramp_saved_pc): Renamed to
4648 i386_svr4_sigtramp_saved_pc. Made static. Moved.
4649 (i386_pc_in_sigtramp): New function.
4650 (i386_abi_names): Removed.
4651 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
4652 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
4653 Removed.
4654 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
4655 i386_gdbarch_register_os_abi): Removed.
4656 (struct i386_abi_handler): Removed.
4657 (i386_abi_handler_list): Removed.
4658 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
4659 functions.
4660 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
4661 i386_nw_init_abi): New functions.
4662 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
4663 Use set_gdbarch_xxx() calls instead of relying on macros for a
4664 number of calls.
4665 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
4666 (_initialize_i386_tdep): Add new 'struct-convcention' command.
4667 Register the various architecture variants defined in this file.
4668
ad2f7632
DJ
46692002-06-14 Daniel Jacobowitz <drow@mvista.com>
4670
4671 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
4672 (struct main_type): Remove arg_types member. Update comments for
4673 struct field.
4674 (TYPE_ARG_TYPES): Remove.
4675 (TYPE_FN_FIELD_ARGS): Update.
4676 (smash_to_method_type): Update prototype.
4677
4678 * c-typeprint.c (cp_type_print_method_args): Take method type
4679 instead of argument list. Use new argument layout. Simplify.
4680 (c_type_print_args): Use new argument layout. Simplify.
4681 (c_type_print_base): Update call to cp_type_print_method_args.
4682 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
4683 argument; use die->type instead. Update call to
4684 smash_to_method_type.
4685 (read_structure_scope): Update call to dwarf2_add_member_fn.
4686 * gdbtypes.c (allocate_stub_method): Update comment.
4687 (smash_to_method_type): Take new NARGS and VARARGS arguments.
4688 Use new argument layout.
4689 (check_stub_method): Use new argument layout. Don't count
4690 void as an argument.
4691 (print_arg_types): Update comments. Use new argument layout.
4692 (recursive_dump_type): Don't print arg_types member.
4693 * hpread.c (hpread_read_struct_type): Use new argument layout.
4694 (fixup_class_method_type): Likewise.
4695 (hpread_type_lookup): Likewise.
4696 * stabsread.c (read_type): Update calls to read_args and
4697 smash_to_method_type.
4698 (read_args): Use new argument layout. Simplify.
4699 * valops.c (typecmp): Use new argument layout. Update parameters
4700 and comments. Simplify.
4701 (hand_function_call): Use new argument layout.
4702 (search_struct_method): Update call to typecmp.
4703 (find_overload_match): Use new argument layout.
4704
6da02953
DJ
47052002-06-13 Daniel Jacobowitz <drow@mvista.com>
4706
4707 * NEWS: Mention multithreaded debug support for gdbserver.
4708
519b2366
DJ
47092002-06-13 Daniel Jacobowitz <drow@mvista.com>
4710
4711 * MAINTAINERS: Mention NEWS.
4712
6c0d6680
DJ
47132002-06-13 Daniel Jacobowitz <drow@mvista.com>
4714
4715 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
4716 (struct mips_objfile_private, compare_pdr_entries): New.
4717 (non_heuristic_proc_desc): Read the ".pdr" section if it
4718 is present.
4719
6529d2dd
AC
47202002-06-12 Andrew Cagney <ac131313@redhat.com>
4721
4722 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
4723 (arm_debug): New static variable.
4724 (_initialize_arm_tdep): Add ``set debug arm'' command.
4725
26216b98
AC
47262002-06-12 Andrew Cagney <ac131313@redhat.com>
4727
4728 * Makefile.in (sim_arm_h): Define.
4729 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
4730 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
4731 (arm_register_sim_regno): New function, map an internal REGNUM
4732 onto a simulator register number.
4733 (arm_gdbarch_init): Set register_sim_regno.
4734
814b3ba0
AH
47352002-06-09 Aldy Hernandez <aldyh@redhat.com>
4736
4737 * MAINTAINERS: Add self.
4738
475b0867
JB
47392002-06-11 Jim Blandy <jimb@redhat.com>
4740
919d772c
JB
4741 * source.c (source_info): Mention whether the symtab has
4742 information about preprocessor macros.
4743
475b0867
JB
4744 Call the command `info macro', not `show macro'.
4745 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
4746 Fix error message.
4747 (_initialize_macrocmd): Register `info_macro_command' in
4748 `infolist', not `showlist'.
4749
9e364162
DJ
47502002-06-11 Daniel Jacobowitz <drow@mvista.com>
4751
4752 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
4753 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
4754 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
4755 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
4756 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
4757 unconditionally.
4758 (set_mipsfpu_single_command, set_mipsfpu_double_command)
4759 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
4760 (_initialize_mips_tdep): Remove dead code.
4761 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
4762 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
4763 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
4764 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
4765 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
4766 MIPS_LAST_FP_ARG_REGNUM): Remove.
4767
23aa4c72
ML
47682002-06-11 Michal Ludvig <mludvig@suse.cz>
4769
4770 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
4771 (unwind_tmp_obstack_free, parse_frame_info)
4772 (update_context, cfi_read_fp, cfi_write_fp)
4773 (cfi_frame_chain, cfi_init_extra_frame_info)
4774 (cfi_virtual_frame_pointer): Use the above function.
264d1763 4775 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
23aa4c72 4776
70eb15a4
CV
47772002-06-11 Corinna Vinschen <vinschen@redhat.com>
4778
4779 * v850-tdep.c (v850_type_is_scalar): New function.
4780 (v850_use_struct_convention): Match current gcc implementation
4781 as close as possible.
4782 (v850_push_arguments): Fix stack_offset handling. Don't write
4783 struct_addr into register. This is done by v850_store_struct_return.
4784 (v850_extract_return_value): Care for structs.
4785 (v850_store_return_value): Ditto.
4786 (v850_store_struct_return): Actually write address.
4787
482a4d06
ML
47882002-06-11 Michal Ludvig <mludvig@suse.cz>
4789
4790 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
4791 without debug information too.
4792
d855c300
AC
47932002-06-10 Andrew Cagney <ac131313@redhat.com>
4794
4795 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
4796 Make multi-arch pure.
4797 * gdbarch.h, gdbarch.c: Re-generate.
4798 * arm-tdep.c (arm_print_float_info): Update.
4799 * arch-utils.h (default_print_float_info): Update.
4800 * arch-utils.c (default_print_float_info): Update.
4801 * infcmd.c (float_info): Update call.
4802
dd12a101
AC
48032002-06-10 Andrew Cagney <ac131313@redhat.com>
4804
4805 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
4806 the front of the initialize list.
4807
101dcfbe
AC
48082002-06-10 Andrew Cagney <ac131313@redhat.com>
4809
4810 * infrun.c (struct inferior_status): Replace fields
4811 selected_frame_address and selected_level with field
4812 selected_frame_id.
4813 (save_inferior_status): Update. Use get_frame_id.
4814 (struct restore_selected_frame_args): Delete.
4815 (restore_selected_frame): Update. Use frame_find_by_id.
4816 (restore_inferior_status): Update.
4817
4818 * breakpoint.h (struct breakpoint): Change type of
4819 watchpoint_frame to frame_id.
4820 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
4821 call to get_current_frame.
4822 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
4823 get_current_frame.
4824 (watchpoint_check): Use frame_find_by_id.
4825
4826 * frame.h (record_selected_frame): Delete declaration.
4827 * stack.c (record_selected_frame): Delete function.
4828
4829 * frame.h (struct frame_id): Define.
4830 (get_frame_id): Declare.
4831 (frame_find_by_id): Declare.
4832 * frame.c (frame_find_by_id): New function.
4833 (get_frame_id): New function.
4834
304270b6
AV
48352002-06-10 Andrey Volkov <avolkov@transas.com>
4836
4837 * ser-e7kpc.c: Fix duplicated define and call of
4838 _initialize_ser_e7000pc
4839
2f2cf184
DJ
48402002-06-09 Daniel Jacobowitz <drow@mvista.com>
4841
4842 * signals/signals.c (target_signal_from_host): Fix #ifdef
4843 SIGRTMIN case.
4844 (do_target_signal_to_host): Likewise.
4845
caaa3122
DJ
48462002-06-09 Daniel Jacobowitz <drow@mvista.com>
4847
4848 * mips-tdep.c (mips_find_abi_section): New function.
4849 (mips_gdbarch_init): Call it.
4850
6ac5df3a
MK
48512002-06-09 Mark Kettenis <kettenis@gnu.org>
4852
4853 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
4854 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
4855 after Andrew's 2002-06-08 gdbarch change.
4856
82ea117a
MK
48572002-06-09 Mark Kettenis <kettenis@gnu.org>
4858
4859 * i386-linux-nat.c (suppy_gregset): Don't supply
4860 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
4861 register cache.
4862 (fill_gregset): Don't fetch it under the same circumstances.
4863
3c25f8c7
AC
48642002-06-09 Andrew Cagney <cagney@redhat.com>
4865
4866 * Makefile.in (callback_h): Define.
4867 (remote_sim_h): Update path to remote-sim.h.
4868 (remote-rdp.o): Add $(callback_h).
4869 (remote-sim.o): Use $(callback_h).
4870 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
4871 * remote-rdp.c: Include "gdb/callback.h".
4872
1029b7fa
MK
48732002-06-09 Mark Kettenis <kettenis@gnu.org>
4874
4875 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
4876 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
4877
616675d3
AC
48782002-06-08 Andrew Cagney <ac131313@redhat.com>
4879
a3efda28
AC
4880 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
4881 * rdi-share/serpardr.c: Ditto.
4882 * rdi-share/unixcomm.c: Ditto.
4883 * rdi-share/serdrv.c: Ditto.
4884 * rdi-share/hostchan.h: Ditto.
4885 * rdi-share/hostchan.c: Ditto.
4886 * rdi-share/host.h: Ditto.
4887 * rdi-share/devsw.c: Ditto.
4888
c5f10366
AC
4889 * objfiles.h: Change type of obj_private to void pointer.
4890 * pa64solib.c: Update copyright. Don't include "assert.h", use
4891 strcmp instead of STREQ, use LONGEST, do not use PTR
4892 * somsolib.c: Ditto.
4893
616675d3
AC
4894 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
4895 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
4896 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
4897
e4b415d9
AC
48982002-06-08 Andrew Cagney <ac131313@redhat.com>
4899
4900 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
4901 (default_get_saved_register): Delete function.
4902 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
4903 generic_unwind_get_saved_register.
4904 * gdbarch.h, gdbarch.c: Re-generate.
4905
ca0d0b52
AC
49062002-06-08 Andrew Cagney <ac131313@redhat.com>
4907
4908 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
4909 generic_func_frame_chain_valid.
4910 * gdbarch.h, gdbarch.c: Re-generate.
4911 * blockframe.c (generic_func_frame_chain_valid): Only check
4912 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
4913 passing FP to PC_IN_CALL_DUMMY.
4914 Fix PR gdb/360.
4915
76860b5f
AC
49162002-06-08 Andrew Cagney <ac131313@redhat.com>
4917
4918 * gdbarch.sh (struct gdbarch_data): Add field init_p.
4919 (register_gdbarch_data): Initialize init_p.
4920 (gdbarch_data): Initialize data pointer using the init function.
4921 (init_gdbarch_data): Delete function.
4922 (gdbarch_update_p): Update.
4923 (initialize_non_multiarch): Update.
4924 (struct gdbarch): Add field initialized_p.
4925 * gdbarch.h, gdbarch.c: Re-generate.
4926
8dda9770
ML
49272002-06-07 Michal Ludvig <mludvig@suse.cz>
4928
4929 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
4930 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
4931 better do the things actually here.
4932 * x86-64-tdep.c (x86_64_register_name2nr): New.
4933 (x86_64_register_name): Renamed to x86_64_register_nr2name.
4934 (x86_64_gdbarch_init): Respect the above change.
4935 * x86-64-tdep.h (x86_64_register_name2nr)
4936 (x86_64_register_nr2name): Add prototypes.
4937 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
4938
3d79a47c
MS
49392002-06-06 Michael Snyder <msnyder@redhat.com>
4940
7bd91a28
MS
4941 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
4942 Delete extra braces and re-indent.
4943 (d10v_store_return_value): Char return values
3d79a47c
MS
4944 must be shifted over by one byte in R0.
4945 (d10v_extract_return_value): Delete extra braces, re-indent.
4946
095a4c96
EZ
49472002-06-06 Elena Zannoni <ezannoni@redhat.com>
4948
4949 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
4950 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
4951 (d10v_integer_to_address): Rewrite.
4952 (d10v_frame_init_saved_regs): When reading fp and sp registers use
4953 the d10v specific functions which take care of converting to the
4954 correct space.
4955
e8a77ca4
EZ
49562002-06-06 Elena Zannoni <ezannoni@redhat.com>
4957
4958 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
4959 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
4960
4f2e4a4f
AC
49612002-06-02 Andrew Cagney <ac131313@redhat.com>
4962
4963 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
4964 includes.
4965 * config/tm-linux.h: Ditto.
4966 * config/alpha/tm-alphalinux.h: Ditto.
4967 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
4968 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
4969 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
4970 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
4971 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
4972 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
4973 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
4974 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
4975 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
4976 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
4977 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
4978 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
4979 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
4980 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
4981 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
4982 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
4983 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
4984 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
4985 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
4986 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
4987 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
4988 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
4989 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
4990 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
4991 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
4992 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
4993 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
4994 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
4995 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
4996 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
4997 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
4998 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
4999 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
5000 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
5001 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
5002 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
5003 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
5004
ae2ab2ce
AS
50052002-05-04 Aidan Skinner <aidan@velvet.net>
5006
5007 * ada-exp.tab.c: New file
5008 * ada-exp.y: New file
5009 * ada-lang.c: New file
5010 * ada-lang.h: New file
5011 * ada-lex.c: New file
5012 * ada-lex.l: New file
5013 * ada-tasks.c: New file
5014 * ada-typeprint.c: New file
5015 * ada-valprint.c: New file
5016
0ddd0135
JT
50172002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
5018
5019 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
5020 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
5021
750fbacc
JT
50222002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
5023
5024 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
5025 insetead of ppc-linux-tdep.o.
5026 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
5027 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
5028
df94e18a
AC
50292002-06-02 Andrew Cagney <ac131313@redhat.com>
5030
5031 2002-05-07 Christian Groessler <chris@groessler.org>
5032 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
5033 bit register contents for little endian hosts.
5034
1a38ab75
AC
50352002-06-01 Andrew Cagney <ac131313@redhat.com>
5036
5037 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
5038 any maintainer.
5039
8b1632ac
AC
50402002-06-01 Andrew Cagney <ac131313@redhat.com>
5041
5042 * gdbarch.h: Regenerate.
5043
627054c8
AC
50442002-06-01 Andrew Cagney <ac131313@redhat.com>
5045
5046 * MAINTAINERS: Add everyone to write-after-approval list.
5047
4f460812
AC
50482002-06-01 Andrew Cagney <ac131313@redhat.com>
5049
5050 * stack.c (frame_info): Use frame_register_unwind instead of
5051 saved_regs. Mention when the SP is on the stack or in a register.
5052
5053 * frame.h (frame_register_unwind_ftype): Define. Document.
5054 (struct frame_info): Add field register_unwind and
5055 register_unwind_cache.
5056 (frame_register_unwind): Declare.
5057 (generic_unwind_get_saved_register): Declare.
5058
5059 * frame.c (frame_register_unwind): New function.
5060 (generic_unwind_get_saved_register): New function.
5061
5062 * blockframe.c (generic_call_dummy_register_unwind): New function.
5063 (frame_saved_regs_register_unwind): New function.
5064 (set_unwind_by_pc): New function.
5065 (create_new_frame): New function.
5066 (get_prev_frame): New function.
5067
de888f76
AC
50682002-05-30 Andrew Cagney <ac131313@redhat.com>
5069
5070 * a29k-share/: Delete directory.
5071 * remote-vx29k.c: Delete file.
5072
2f2c3626
JT
50732002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5074
5075 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
5076 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
5077
9ce5c36a
JT
50782002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5079
5080 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
5081 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
5082 (sparc64nbsd-nat.o)
5083 (sparcnbsd-nat.o)
5084 (sparcnbsd-tdep.o): New dependency lists.
5085 * NEWS: Note new UltraSPARC NetBSD native configuration.
5086 * configure.host (sparc64-*-netbsd*): New host.
5087 * configure.tgt (sparc-*-netbsdelf*)
5088 (sparc-*-netbsd*): Set gdb_target to nbsd.
5089 (sparc64-*-netbsd*): New target.
5090 * sparc64nbsd-nat.c: New file.
5091 * sparcnbsd-nat.c: New file.
5092 * sparcnbsd-tdep.c: New file.
5093 * sparcnbsd-tdep.h: New file.
5094 * config/sparc/nbsd.mt: New file.
5095 * config/sparc/nbsd64.mh: New file.
5096 * config/sparc/nbsd64.mt: New file.
5097 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
5098 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
5099 (HOST_IPC): Remove.
5100 * config/sparc/nbsdaout.mt: Remove.
5101 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
5102 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
5103 (HOST_IPC): Remove.
5104 * config/sparc/nbsdelf.mt: Remove.
5105 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
5106 sparc-nat.c compatiblity defines.
5107 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
5108 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
5109 * config/sparc/tm-nbsd64.h: New file.
5110 * config/sparc/tm-nbsdaout.h: Remove.
5111 * config/sparc/xm-nbsd.h: Remove.
5112
ef3cf062
JT
51132002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
5114
5115 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
5116 * sparc-tdep.c: Include osabi.h.
5117 (gdbarch_tdep): Add osabi member.
5118 (_initialize_sparc_tdep): Use gdbarch_register.
5119 (sparc_gdbarch_init): Use generic OS ABI framework.
5120 (sparc_dump_tdep): New function.
5121
ee8ff470
KB
51222002-05-30 Kevin Buettner <kevinb@redhat.com>
5123
5124 * corefile.c (do_captured_read_memory_integer): Return non-zero
5125 result.
5126 (safe_read_memory_integer): Copy result of memory read when
5127 status is non-zero. Also, add comments.
5128
7b112f9c
JT
51292002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
5130
5131 * Makefile.in (ppc_tdep_h): Define.
5132 (ppc-linux-nat.o)
5133 (ppc-linux-tdep.o)
5134 (rs6000-tdep.o): Use $(ppc_tdep_h).
5135 (ppc-sysv-tdep.o)
5136 (ppcnbsd-nat.o)
5137 (ppcnbsd-tdep.o): New dependency lists.
5138 * ppc-tdep.h: Use generic OS ABI framework.
357edbbc
JT
5139 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
5140 (ppc_linux_init_abi): New functions.
7b112f9c
JT
5141 (ppc_sysv_abi_broken_use_struct_convention)
5142 (ppc_sysv_abi_use_struct_convention)
5143 (ppc_sysv_abi_push_arguments): Move to...
5144 * ppc-sysv-tdep.c: ...here.
5145 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
5146 * rs6000-tdep.c (process_note_abi_tag_sections)
5147 (get_elfosabi): Remove.
5148 (rs6000_gdbarch_init): Use generic OS ABI framework.
5149 (rs6000_dump_tdep): New function.
5150 (_initialize_rs6000_tdep): Use gdbarch_register.
5151 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
5152 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
5153 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
5154 of ppc-linux-tdep.o.
5155 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
5156 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
5157 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
5158 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
5159 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
5160 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
5161
480dd42a
JB
51622002-05-29 Jim Blandy <jimb@redhat.com>
5163
5164 * macroscope.c (default_macro_scope): Put `void' in empty argument
5165 list.
5166
4182591f
AC
51672002-05-29 Andrew Cagney <ac131313@redhat.com>
5168
5169 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
5170 * arch-utils.c: Include "sim-regno.h".
5171 * gdbarch.sh: Don't include "sim-regno.h".
5172 * gdbarch.h, gdbarch.c: Regenerate.
5173 * sim-regno.h (legacy_register_sim_regno): Move declaration from
5174 here.
5175 * arch-utils.h (legacy_register_sim_regno): To here.
5176 * remote-sim.c (legacy_register_sim_regno): Move function from
5177 here.
5178 * arch-utils.c (legacy_register_sim_regno): To here.
5179
8238d0bf
AC
51802002-05-28 Andrew Cagney <ac131313@redhat.com>
5181
5182 * sim-regno.h: New file.
5183 * Makefile.in (sim_regno_h): Define.
5184 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
5185 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
5186 (legacy_register_sim_regno): New function.
5187 (one2one_register_sim_regno): New function.
5188 (gdbsim_fetch_register): Rewrite.
5189 (gdbsim_store_register): Only store a register when
5190 REGISTER_SIM_REGNO is valid.
5191 * d10v-tdep.c: Include "sim-regno.h".
5192 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
5193 (d10v_ts3_register_sim_regno): Ditto.
5194 * gdbarch.sh: Include "sim-regno.h".
5195 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
5196 * gdbarch.h, gdbarch.c: Regenerate.
5197 * arch-utils.h (default_register_sim_regno): Delete declaration.
5198 * arch-utils.c (default_register_sim_regno): Delete function.
5199
485721b1
JT
52002002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
5201
5202 * ppcnbsd-nat.c: Rewrite.
5203 * ppcnbsd-tdep.c: New file.
5204 * ppcnbsd-tdep.h: New file.
5205 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
5206 solib.o, and solib-svr4.o.
5207 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
5208 nbsd-tdep.o, and corelow.o.
5209
697f244d
AC
52102002-05-28 Andrew Cagney <ac131313@redhat.com>
5211
5212 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
5213 `tr' and `sed'. Mention that `broken' targets are not expected to
5214 build.
5215
f08caad1 52162002-05-27 Michal Ludvig <mludvig@suse.cz>
b1ab997b
ML
5217
5218 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
5219 Let PC point right after the prologue before looking up symbols.
5220
3139facc
MH
52212002-05-27 Martin M. Hunt <hunt@redhat.com>
5222
5223 * i386-tdep.c (i386_register_virtual_type): Return
5224 builtin_type_vec128i for SSE registers.
5225
5226 * gdbtypes.h (builtin_type_vec128i): Declare.
5227
5228 * gdbtypes.c (build_builtin_type_vec128i): New function.
5229 (builtin_type_v2_double, builtin_type_v4_int64): New types.
5230 (builtin_type_vec128i): New type for SSE2 128-bit registers.
5231 (build_gdbtypes): Initialize new builtin vector types.
5232 (_initialize_gdbtypes): Register new vector types with gdbarch.
5233
6e3ba3b8
JT
52342002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5235
5236 * MAINTAINERS: ns32k is not longer an obsolete candidate,
5237 since it has been multi-arch'd.
5238 * NEWS: Note that ns32k-*-* is now partial multi-arch.
5239 Move Alpha and VAX multi-arch news entries to same section
5240 as other multi-arch news.
5241
93d5585d
JT
52422002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5243
5244 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
5245 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
5246 static. Rename some register numbers to put them in ns32k-tdep
5247 private namespace.
5248 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
5249 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
5250 functions.
5251 (_initialize_ns32k_tdep): Use gdbarch_register.
5252 * ns32k-tdep.h: New file.
5253 * ns32knbsd-tdep.c: New file.
5254 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
5255 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
5256 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
5257 REGISTER_BYTES, REGISTER_BYTE): Remove.
5258 * config/ns32k/tm-ns32k.h: New file.
5259 * config/ns32k/tm-umax.h: Remove.
5260
efb2c70e
JT
52612002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5262
5263 * ns32k-tdep.c (ns32k_saved_pc_after_call,
5264 ns32k_store_struct_return, ns32k_extract_return_value,
5265 ns32k_store_return_value, ns32k_extract_struct_value_address): New
5266 functions.
5267 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
5268 ns32k_saved_pc_after_call.
5269 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
5270 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
5271 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
5272 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
5273 ns32k_extract_struct_value_address.
5274
7bcc927b
JT
52752002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5276
5277 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
5278 ns32k_fix_call_dummy): New.
5279 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
5280 ns32k_call_dummy_words.
5281 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
5282 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
5283 CALL_DUMMY_NARGS): Remove.
5284 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
5285
78f9d765
JT
52862002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5287
5288 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
5289 ns32k_frame_saved_pc, ns32k_frame_args_address,
5290 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
5291 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
5292 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
5293 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
5294 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
5295 (BREAKPOINT): Remove..
5296 (FRAME_CHAIN): Define as ns32k_frame_chain.
5297 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
5298 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
5299 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
5300 (FRAME_FIND_SAVED_REGS): Remove.
5301 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
5302 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
5303 (POP_FRAME): Define as ns32k_pop_frame.
5304
f2c762e0
JT
53052002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5306
5307 * ns32k-tdep.c (ns32k_register_byte_32082,
5308 ns32k_register_byte_32382, ns32k_register_raw_size,
5309 ns32k_register_virtual_size, ns32k_register_virtual_type): New
5310 functions.
5311 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
5312 ns32k_register_byte_32382.
5313 * config/ns32k/tm-umax.h: Update copyright years.
5314 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
5315 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
5316 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
5317 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
5318 (ns32k_get_enter_addr): Fix prototype.
5319
af137673
JT
53202002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
5321
5322 * ns32k-tdep.c: Update copyright years.
5323 (ns32k_register_name_32082): New function.
5324 (ns32k_register_name_32382): Ditto.
5325 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
5326 (REGISTER_NAME): Define as ns32k_register_name_32382.
5327 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
5328 (REGISTER_NAME): Define as ns32k_register_name_32082.
5329
a8bc7b56
JB
53302002-05-24 Jim Blandy <jimb@redhat.com>
5331
5332 * dwarf2read.c (free_line_header): Use xfree, not free.
5333
83a45910
JT
53342002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
5335
5336 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
5337 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
5338
0db71247
AC
53392002-05-23 Andrew Cagney <ac131313@redhat.com>
5340
5341 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
5342
b9e5e4dd
AC
53432002-05-23 Andrew Cagney <ac131313@redhat.com>
5344
5345 From Ross Alexander at NEC Europe:
5346 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
5347
de530e84
MS
53482002-05-23 Michael Snyder <msnyder@redhat.com>
5349
5350 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
5351 for input, rather than parse_and_eval_address.
5352
b91b96f4
AC
53532002-05-23 Andrew Cagney <ac131313@redhat.com>
5354
5355 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
5356 * Makefile.in (sim_d10v_h): Update definition.
5357
8b279e7a
AC
53582002-05-24 Andrew Cagney <cagney@redhat.com>
5359
5360 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
5361 change `2002-05-22 Michael Snyder' below.
5362 (d10v_push_arguments): Ditto.
5363 (d10v_extract_return_value): Ditto.
5364
0a3d0425
JB
53652002-05-23 Jim Blandy <jimb@redhat.com>
5366
5367 * macrotab.c (check_for_redefinition): Don't complain if the new
5368 definition is the same as the previous one. Take more arguments
5369 to allow the comparison.
5370 (macro_define_object, macro_define_function): Pass more arguments
5371 to check_for_redefinition.
5372
78eac43e
MS
53732002-05-22 Michael Snyder <msnyder@redhat.com>
5374
5375 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
5376 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
5377 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
5378 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
5379 Don't bail if return_pc is PC_IN_CALL_DUMMY.
5380 Add a temp variable to save a call (and a memory read).
5381 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
5382 if possible (so that PC_IN_CALL_DUMMY will work).
5383
9bc1edb8
CV
53842002-05-22 Corinna Vinschen <vinschen@redhat.com>
5385
5386 * MAINTAINERS: Remove status `OBSOLETE' from v850.
5387
005ef3d2
ML
53882002-05-22 Michal Ludvig <mludvig@suse.cz>
5389
5390 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
5391 fde->cie_ptr.
5392 (dwarf2_build_frame_info): Corrected handling of eh_frame.
5393 (dwarf2_build_frame_info): Add offset to fde->initial_location
5394 so that frames of shared libraries are mapped correctly.
6c3eb890
ML
5395 (execute_stack_op): Change type of 'result' from ULONGEST to
5396 CORE_ADDR.
005ef3d2 5397
fcf4f891
JT
53982002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5399
5400 * config/alpha/tm-nbsd.h: Include solib.h.
5401
cfef91e4
JT
54022002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5403
5404 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
5405 assumptions about the host's byte order.
5406
9964235a
JT
54072002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5408
5409 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
5410 to dependency list.
5411 * alphanbsd-tdep.c: Include solib-svr4.h.
5412 * shnbsd-tdep.c: Ditto.
5413
9eeef8ef
JT
54142002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
5415
5416 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
5417 nbsd-tdep.h to dependency list.
5418 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
5419 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
5420 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
5421 nbsdaout.mh and nbsdelf.mh consistently.
5422 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
5423 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
5424 nbsdaout.mt and nbsdelf.mh consistently.
5425 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
5426 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
5427 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
5428 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
5429 a.out shared library stuff from here...
5430 * config/nm-nbsdaout.h: ...to here.
5431 * config/tm-nbsd.h: Remove.
5432 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
5433 * config/arm/nbsd.mh: Remove.
5434 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
5435 nbsd-tdep.o.
5436 * config/arm/nbsdaout.mh: New file.
5437 * config/arm/nbsdelf.mh: New file.
5438 * config/arm/nm-nbsdaout.h: New file.
5439 * config/i386/nbsd.mh: Remove.
5440 * config/i386/nbsd.mt: Remove.
5441 * config/i386/nbsdaout.mh: New file.
5442 * config/i386/nbsdaout.mt: New file.
5443 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5444 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
5445 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
5446 i386_register_u_addr): Remove.
5447 * config/i386/nm-nbsdaout.h: New file.
5448 * config/i386/nm-nbsdelf.h: Remove.
5449 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
5450 (USE_STRUCT_CONVENTION): Remove.
5451 * config/i386/tm-nbsdaout.h: New file.
5452 * config/i386/tm-nbsdelf.h: Remove.
5453 * config/m68k/nbsd.mh: Remove.
5454 * config/m68k/nbsd.mt: Remove.
5455 * config/m68k/nbsdaout.mh: New file.
5456 * config/m68k/nbsdaout.mt: New file.
5457 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
5458 * config/m68k/nm-nbsdaout.h: New file.
5459 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5460 (IN_SOLIB_CALL_TRAMPOLINE): Define.
5461 * config/ns32k/nbsd.mh: Remove.
5462 * config/ns32k/nbsd.mt: Remove.
5463 * config/ns32k/nbsdaout.mh: New file.
5464 * config/ns32k/nbsdaout.mt: New file.
5465 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
5466 * config/ns32k/nm-nbsdaout.h: New file.
5467 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
5468 (IN_SOLIB_CALL_TRAMPOLINE): Define.
5469 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
5470 (SVR4_SHARED_LIBS): Remove.
5471 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
5472 * config/sparc/nbsd.mh: Remove.
5473 * config/sparc/nbsd.mt: Remove.
5474 * config/sparc/nbsdaout.mh: New file.
5475 * config/sparc/nbsdaout.mt: New file.
5476 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
5477 * config/sparc/nbsdelf.mt: New file.
5478 * config/sparc/nm-nbsdaout.h: New file.
5479 * config/sparc/nm-nbsdelf.h: Remove.
5480 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
5481 * config/sparc/tm-nbsdaout.h: New file.
5482
257ce470
JT
54832002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5484
5485 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
5486 mipsnbsd-tdep.c
5487 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
5488
76a6d5fe
JT
54892002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5490
5491 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
5492 shnbsd-nat.c.
5493 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
5494
45888261
JT
54952002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5496
5497 * NEWS: Note new MIPS NetBSD native configuration.
5498 * configure.host (mips*-*-netbsd*): New host.
5499 * configure.tgt (mips*-*-netbsd*): New target.
5500 * mipsnbsd-nat.c: New file.
5501 * mipsnbsd-tdep.c: New file.
5502 * mipsnbsd-tdep.h: New file.
5503 * config/mips/nbsd.mh: New file.
5504 * config/mips/nbsd.mt: New file.
5505 * config/mips/nm-nbsd.h: New file.
5506 * config/mips/tm-nbsd.h: New file.
5507
70f80edf
JT
55082002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
5509
5510 * Makefile.in (SFILES): Add osabi.c.
5511 (COMMON_OBS): Add osabi.o.
5512 (osabi.o): New dependency list.
5513 * osabi.c: New file.
5514 * osabi.h: New file.
5515 * doc/gdbint.texinfo: Document new generic OS ABI framework.
5516
5517 * Makefile.in (alpha_tdep_h): Define and use instead of
5518 alpha-tdep.h.
5519 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
5520 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
5521 Remove.
5522 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
5523 * alpha-tdep.h: Include osabi.h.
5524 (alpha_abi): Remove.
5525 (gdbarch_tdep): Use generic OS ABI framework.
5526 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
5527 gdbarch_register_osabi.
5528 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
5529 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
5530 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
5531
5532 * Makefile.in (sh_tdep_h): Add osabi.h.
5533 * sh-tdep.h (sh_osabi): Remove.
5534 (gdbarch_tdep): Use generic OS ABI framework.
5535 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
5536 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
5537 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
5538 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
5539
5540 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
5541 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
5542 gdbarch_register_osabi.
5543 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
5544 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
5545 (get_elfosabi): Rename to...
5546 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
5547 ABI framework support routines.
5548 (arm_gdbarch_init): Use generic OS ABI framework.
5549 (arm_dump_tdep): Likewise.
5550 (_initialize_arm_tdep): Likewise.
5551 * arm-tdep.h: Include osabi.h.
5552 (arm_abi): Remove.
5553 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
5554 osabi member.
5555 (arm_gdbarch_register_os_abi): Remove prototype.
5556 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
5557 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
5558
5559 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
5560 * mips-tdep.c: Include osabi.h.
5561 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
5562 OS ABI framework.
5563
d194345b
KH
55642002-05-20 Kazu Hirata <kazu@cs.umass.edu>
5565
5566 * h8300-tdep.c: Fix formatting.
5567
70c6b0d1
EZ
55682002-05-20 Elena Zannoni <ezannoni@redhat.com>
5569
5570 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
5571 printing vector registers.
5572
165b8e33
AC
55732002-05-19 Andrew Cagney <ac131313@redhat.com>
5574
5575 From Fernando Nasser:
5576 * remote.c (remote_async_open_1): Re-throw the exception when the
5577 connection fails.
5578 (remote_cisco_open): Ditto.
5579 (remote_open_1): Ditto.
5580
36918e70
AC
55812002-05-19 Andrew Cagney <ac131313@redhat.com>
5582
5583 * remote.c (remote_start_remote_dummy): Add uiout parameter.
5584 (remote_start_remote): Add uiout parameter. Pass through to
5585 remote_start_remote_dummy.
5586 (remote_open_1): Use catch_exception instead of catch_errors.
5587 (remote_async_open_1): Ditto.
5588 (remote_cisco_open): Ditto.
5589
ae44c0c4
AC
55902002-05-19 Andrew Cagney <ac131313@redhat.com>
5591
5592 * remote.c (remote_start_remote): Replace PTR with void pointer.
5593 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
5594 static.
5595
8efe637d
AC
55962002-05-18 Andrew Cagney <ac131313@redhat.com>
5597
5598 * gdb_indent.sh: Allow the script to be run in the sim directory.
5599
2f1b5984
MK
56002002-05-18 Mark Kettenis <kettenis@gnu.org>
5601
f0f625e2
MK
5602 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
5603 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
5604
2f1b5984
MK
5605 * corelow.c (core_open): Only call set_gdbarch_from_file if
5606 exec_bfd is NULL.
5607
fc974602
AV
56082002-05-17 Andrey Volkov <avolkov@transas.com>
5609
5610 * h8300-tdep.c: Add support of EXR register
5611 * config/h8300/tm-h8300.h: Ditto.
5612
906709f4
AV
56132002-05-17 Andrey Volkov <avolkov@transas.com>
5614
5615 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
5616
6e591d68
AV
56172002-05-17 Andrey Volkov <avolkov@transas.com>
5618
5619 * h8300-tdep.c: Change literal regnums to REGNO.
5620
84f0252a
JB
56212002-05-17 Jim Blandy <jimb@redhat.com>
5622
e0e9281e
JB
5623 * NEWS: Note addition of macro support.
5624
84f0252a
JB
5625 Expand preprocessor macros in C expressions.
5626 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
5627 (scan_macro_expansion, scanning_macro_expansion,
5628 finished_macro_expansion): New function declarations.
5629 (expression_macro_lookup_func, expression_macro_lookup_baton): New
5630 variable declarations.
5631 * parser-defs.h (expression_context_pc): New declaration.
5632 * parse.c (expression_context_pc): New variable.
5633 (parse_exp_1): Set expression_context_pc, as well as
5634 expression_context_block.
5635 * c-exp.y (yylex): If we're not already reading the result of a
5636 macro expansion, try to macro-expand the next token. When we're
5637 done scanning a macro expansion, switch back to the mainline text.
5638 Commas and `if's in a macro's expansion don't terminate the input.
5639 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
5640 (macro_original_text, macro_expanded_text,
5641 expression_macro_lookup_func, expression_macro_lookup_baton): New
5642 variables.
5643 (scan_macro_expansion, scanning_macro_expansion,
5644 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
5645 c_preprocess_and_parse): New functions.
5646 (c_language_defn, cplus_language_defn, asm_language_defn): Call
5647 c_preprocess_and_parse, instead of c_parse.
5648 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
5649 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
5650
1c509ca8
JR
5651Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
5652
5653 * sh-tdep.c (gdb_print_insn_sh64): Delete.
5654 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
5655 (sh_gdbarch_init): Always use gdb_print_insn_sh.
5656
2250ee0c
CV
56572002-05-17 Corinna Vinschen <vinschen@redhat.com>
5658
5659 * NEWS: Add section for multi-arched targets. Add v850 to that section.
5660
ab3b8126
JT
56612002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
5662
5663 * Makefile.in (sh_tdep_h): Define and use.
5664 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
5665 register enum): Move to...
5666 * * sh-tdep.h: ...here.
5667 * sh-tdep.c: Include sh-tdep.h.
5668 * sh3-rom.c: Likewise.
5669 * shnbsd-tdep.c: Likewise.
5670
ed9d4749
MS
56712002-05-16 Michael Snyder <msnyder@redhat.com>
5672
5673 * arm-tdep.c: Spelling fix in comment.
5674
2e276125
JB
56752002-05-16 Jim Blandy <jimb@redhat.com>
5676
6821892e
JB
5677 Add commands for manually expanding macros and showing their
5678 definitions.
5679 * macrocmd.c, macroscope.c, macroscope.h: New files.
5680 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
5681 (macroscope_h): New variable.
5682 (HFILES_NO_SRCDIR): Add macroscope.h.
5683 (COMMON_OBS): Add macrocmd.o, macroscope.o.
5684 (macroscope.o, macrocmd.o): New rules.
5685
2e276125
JB
5686 Teach the Dwarf 2 reader to read macro information.
5687 * dwarf2read.c: #include "macrotab.h".
5688 (dwarf_macinfo_buffer): New variable.
5689 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
5690 dwarf_macinfo_size.
5691 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
5692 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
5693 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
5694 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
5695 dwarf2_macro_spaces_in_definition): New complaints.
5696 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
5697 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
5698 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
5699 the partial symbol table.
5700 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
5701 from what's recorded in the partial symbol table.
5702 (read_file_scope): If the compilation unit has a
5703 `DW_AT_macro_info' attribute, read its macro information.
5704 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
5705
2f53fe6c
DJ
57062002-05-16 Daniel Jacobowitz <drow@mvista.com>
5707
5708 Fix PR gdb/546
5709 * ser-tcp.c: Don't include <netinet/udp.h>.
5710
2be99286
SC
57112002-05-16 Stephane Carrez <stcarrez@nerim.fr>
5712
5713 * MAINTAINERS: Update my email address.
5714
c9af212b 57152002-05-16 Richard Earnshaw <rearnsha@arm.com>
8501bbeb
RE
5716
5717 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
5718 include file of the same name.
5719
bf5f1a52
CV
57202002-05-16 Corinna Vinschen <vinschen@redhat.com>
5721
5722 * configure.tgt: Mark v850 as multi-arched.
5723 * config/v850/tm-v850.h: Remove file.
5724 * config/v850/v850.mt: Eliminate TM_FILE.
5725
435e042a
CV
57262002-05-16 Corinna Vinschen <vinschen@redhat.com>
5727
5728 * v850-tdep.c: Full multi-arch.
5729 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
5730 Define GDB_MULTI_ARCH to 2.
5731
9819c6c8
PM
57322002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
5733
5734 * p-exp.y (current_type): New static variable.
5735 Carries the type of the expression at the position that is parsed.
5736 (push_current_type, pop_current_type): Two new functions. Used
5737 to store/restore current_type in expression on specific tokens.
c9af212b
RE
5738 (search_field): New static variable. Set to one after parsing a point
5739 as at that point only a FIELDNAME token should be searched.
9819c6c8
PM
5740 (FIELDNAME): New token. After a point only a token belonging to
5741 current_type type definition is allowed.
5742 (all over token rules): reset and change current_type according
5743 to rules.
5744 (exp '[' rule): insert implicit array index field if
5745 exp is a pascal string type.
5746
3a06899a
CV
57472002-05-16 Corinna Vinschen <vinschen@redhat.com>
5748
5749 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
5750 frame info. Use frame_info's saved_regs instead of matching member
5751 in extra_frame_info throughout.
5752 (v850_frame_init_saved_regs): New function.
5753 (v850_init_extra_frame_info): Move most functionality into
5754 v850_frame_init_saved_regs().
5755 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
5756 (v850_frame_find_saved_regs): Remove declaration.
5757 (FRAME_FIND_SAVED_REGS): Remove definition.
5758 (v850_frame_init_saved_regs): Add declaration.
5759 (FRAME_INIT_SAVED_REGS): Add definition.
5760
6ed14b0e
CV
57612002-05-16 Corinna Vinschen <vinschen@redhat.com>
5762
5763 * v850-tdep.c: Begin multi-arch'ing v850.
5764 (v850_target_architecture_hook): Remove function.
5765 (v850_gdbarch_init): New function. Add code previously in
5766 v850_target_architecture_hook().
5767 (_initialize_v850_tdep): Don't set target_architecture_hook.
5768 Call register_gdbarch_init() instead.
5769
42725910
DJ
57702002-05-16 Daniel Jacobowitz <drow@mvista.com>
5771
5772 * gdbtypes.h (struct cplus_struct_type): Remove args field.
5773 * hpread.c (hpread_read_struct_type): Remove assignments to args.
5774 (fixup_class_method_type): Likewise.
5775
99d9066e
JB
57762002-05-15 Jim Blandy <jimb@redhat.com>
5777
5778 Add macro structures to GDB's symbol tables. Nobody puts anything
5779 in them yet.
5780 * symtab.h (struct symtab): New member: `macro_table'.
5781 * buildsym.h (pending_macros): New global variable.
5782 * buildsym.c: #include "macrotab.h".
5783 (buildsym_init): Initialize `pending_macros'.
5784 (end_symtab): If we found macro information while reading a CU's
5785 debugging info, do build a symtab structure for it. Make the
5786 symtab point to the macro information, and clear the
5787 `pending_macros' pointer which held it while we were reading the
5788 debug info.
5789 (really_free_pendings): Free any pending macro table.
5790 * objfiles.h (struct objfile): New member: `macro_cache'.
5791 * objfiles.c (allocate_objfile): Set allocate and free functions
5792 for the macro cache's objstack.
5793 (free_objfile): Empty the macro cache's obstack.
5794 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
5795 set new allocate and free functions for it.
5796 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
5797 free functions for the macro cache's objstack. (Why is this
5798 function building its own objfile?)
5799 * symmisc.c (print_objfile_statistics): Print statistics on the
5800 macro bcache.
5801 * Makefile.in: Note that buildsym.o depends on macrotab.h.
5802
c899585b
RE
58032002-05-15 Richard Earnshaw <rearnsha@arm.com>
5804
5805 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
5806 (REGISTER_U_ADDR): Delete definition.
5807 (arm_register_u_addr): Delete declaration.
5808
a6cdd8c5
RE
58092002-05-15 Richard Earnshaw <rearnsha@arm.com>
5810
5811 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
5812 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
5813
c97dcfc7
AC
58142002-05-14 Andrew Cagney <ac131313@redhat.com>
5815
5816 * regcache.c (register_valid): Revise comments refering to "Not
5817 available" and "unavailable".
5818 * frame.c (frame_register_read): Ditto.
5819 * findvar.c (value_of_register): Ditto.
5820
93021b7d
AC
58212002-05-15 Andrew Cagney <cagney@redhat.com>
5822
5823 * Makefile.in (remote_sim_h): Replace remote-sim_h.
5824 (remote-sim.o): Update dependencies.
5825 (d10v-tdep.o): Specify dependencies.
5826 (sim_d10v_h): Define.
5827
a86bc61c
JB
58282002-05-14 Jim Blandy <jimb@redhat.com>
5829
5830 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
5831 * macrotab.c (macro_lookup_inclusion, find_definition,
5832 new_macro_table): Same.
5833
5834 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
5835 not `! strcmp ()'. This is a dubious improvement.
5836 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
5837
5838 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
5839 although it's not necessary, to avoid a warning.
5840
2fdde8f8
DJ
58412002-05-14 Daniel Jacobowitz <drow@mvista.com>
5842
5843 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
5844 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
5845 TYPE_INSTANCE_FLAGS.
5846 (struct main_type): New.
5847 (struct type): Move most members to struct main_type. Change
5848 cv_type and as_type to new type_chain member. Add instance_flags.
5849 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
5850 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
5851 (finish_cv_type): Remove prototype.
5852 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
5853 Set TYPE_CHAIN.
5854 (alloc_type_instance): New function.
5855 (smash_type): New function.
5856 (make_pointer_type, make_reference_type, make_function_type)
5857 (smash_to_member_type, smash_to_method_type): Call smash_type.
5858 (make_qualified_type): New function.
5859 (make_type_with_address_space): Call make_qualified_type.
5860 (make_cv_type): Likewise.
5861 (finish_cv_type): Remove unnecessary function.
5862 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
5863 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
5864 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
5865 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
5866 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
5867 * hpread.c (hpread_read_struct_type): Likewise.
5868 * stabsread.c (read_struct_type): Likewise.
5869
843fedf4
EZ
58702002-05-14 Elena Zannoni <ezannoni@redhat.com>
5871
5872 * configure.tgt: Add a catch all sh* target, for cases like
5873 sh[2,3,4]-elf and sh-hms.
5874
05a6c72c
KS
58752002-05-14 Keith Seitz <keiths@redhat.com>
5876
5877 * event-loop.c (create_file_handler): Don't do anything but
5878 update data when we are given a fd which we are already
5879 monitoring.
5880
5d085aaf
ML
58812002-05-14 Michal Ludvig <mludvig@suse.cz>
5882
5883 * dwarf2cfi.c (context_cpy): Copy registers correctly.
5884 (update_context): Use __func__ in warnings.
5885
9db8d71f
DJ
58862002-05-14 Daniel Jacobowitz <drow@mvista.com>
5887
5888 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
5889 and tcp_close to net_open and net_close.
5890 (net_open): Accept "udp:" and "tcp:" specifications. Connect
5891 using UDP if requested. Don't try to disable Nagle on UDP
5892 sockets.
5893 * remote.c (remote_serial_open): New function. Warn about UDP.
5894 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
5895
5dbc6baa
EZ
58962002-05-13 Elena Zannoni <ezannoni@redhat.com>
5897
5898 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
5899
cc3023f7
EZ
59002002-05-13 Elena Zannoni <ezannoni@redhat.com>
5901
5902 * configure.tgt: Remove sh-hms target.
5903 * MAINTAINERS: Don't list sh-hms as a separate target.
5904
ec2bcbe7
JB
59052002-05-13 Jim Blandy <jimb@redhat.com>
5906
5907 Add first preprocessor macro-expansion files.
5908 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
5909 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
5910 (splay_tree_h, macroexp_h, macrotab_h): New variable.
5911 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
5912 (COMMON_OBS): Add macrotab.o, macroexp.o.
5913 (macroexp.o, macrotab.o): New rules.
5914
6d531722
AC
59152002-05-13 Andrew Cagney <ac131313@redhat.com>
5916
5917 * config/m88k/tm-m88k.h: Update copyright.
5918 (m88k_target_write_pc): Declare
5919 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
5920 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
5921 (SHIFT_INST_REGS): Update definition.
5922 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
5923 using old definition of TARGET_WRITE_PC.
5924 * regcache.c (generic_target_write_pc): Delete code handling
5925 NNPC_REGNUM.
5926 * gdbarch.sh (NNPC_REGNUM): Delete.
5927 * gdbarch.h, gdbarch.c: Regenerate.
5928
3e3f2739
RE
59292002-05-13 Richard Earnshaw <rearnsha@arm.com>
5930
5931 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
5932 builtin reg number.
5933
0004e5a2
DJ
59342002-05-13 Daniel Jacobowitz <drow@mvista.com>
5935
5936 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
5937 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
5938 (gen_address_of, gen_struct_ref, gen_repeat): Use type
5939 access macros.
5940 * c-typeprint.c (cp_type_print_method_args): Likewise.
5941 (c_type_print_args): Likewise.
5942 * d10v-tdep.c (d10v_push_arguments): Likewise.
5943 (d10v_extract_return_value): Likewise.
5944 * expprint.c (print_subexp): Likewise.
5945 * gdbtypes.c (lookup_primitive_typename): Likewise.
5946 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
5947 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
5948 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
5949 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
5950 (TYPE_VECTOR): Likewise.
5951 * hpread.c (hpread_read_struct_type)
5952 (fix_static_member_physnames, fixup_class_method_type)
5953 (hpread_type_lookup): Likewise.
5954 * mdebugread.c (parse_symbol, parse_type): Likewise.
5955 * p-lang.c (is_pascal_string_type): Likewise.
5956 * valops.c (hand_function_call): Likewise.
5957 * x86-64-tdep.c (classify_argument): Likewise.
5958
5959 * hpread.c (hpread_read_function_type)
5960 (hpread_read_doc_function_type): Call replace_type.
5961 * dstread.c (create_new_type): Delete.
5962 (decode_dst_structure, process_dst_function): Call alloc_type.
5963 Use type access macros.
5964
dff95cc7
MK
59652002-05-12 Mark Kettenis <kettenis@gnu.org>
5966
5967 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
5968 the're not supported by the current architecture.
5969 (i387_fill_fxsave): Likewise.
5970
bbcd32ad
FF
59712002-05-12 Fred Fish <fnf@redhat.com>
5972
5973 * symfile.c (default_symfile_offsets): Arrange for uninitialized
5974 sect_index_xxx members to index the first slot in section_offsets
5975 if all of the section_offsets are zero.
5976
89cf4787
MK
59772002-05-12 Mark Kettenis <kettenis@gnu.org>
5978
5979 * configure.tgt (sparc-*openbsd): Remove entry accidentially
5980 checked in with last change.
5981
1f77ffc5
MK
59822002-05-12 Mark Kettenis <kettenis@gnu.org>
5983
5984 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
5985 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
5986 config.sub.
5987
89b8b4a9
DJ
59882002-05-12 Daniel Jacobowitz <drow@mvista.com>
5989
5990 * Makefile.in: Update dependencies.
5991
14a5e767
AC
59922002-05-11 Andrew Cagney <ac131313@redhat.com>
5993
5994 * language.c (local_hex_string_custom): Simplify. Do not depend
5995 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
5996
5997 * memattr.c (mem_info_command): Replace calls to
5998 longest_local_hex_string and longest_local_hex_string_custom.
5999 * buildsym.c (make_blockvector): Ditto.
6000 * solib.c (info_sharedlibrary_command): Ditto.
6001 * tracepoint.c (tracepoints_info): Ditto.
6002 * symtab.c (print_msymbol_info): Ditto.
6003
6004 * language.c (local_hex_string): Delete.
6005 (local_hex_string_custom): Delete.
6006 (longest_local_hex_string): Rename to local_hex_string.
6007 (longest_local_hex_string_custom): Rename to
6008 local_hex_string_custom.
6009 * language.h (local_hex_string): Change parameter type to LONGEST.
6010 (local_hex_string_custom): Ditto.
6011 (longest_local_hex_string): Delete declaration.
6012 (longest_local_hex_string_custom): Ditto.
6013
6014 * solib.c: Update copyright.
6015 * memattr.c: Update copyright.
6016
13d01224
AC
60172002-05-11 Andrew Cagney <ac131313@redhat.com>
6018
6019 * arch-utils.h (legacy_register_to_value): Declare.
6020 (legacy_value_to_register): Declare.
6021 (legacy_convert_register_p): Declare.
6022 * arch-utils.c (legacy_register_to_value): New function.
6023 (legacy_value_to_register): New function.
6024 (legacy_convert_register_p): New function.
6025
6026 * gdbarch.sh (REGISTER_TO_VALUE): Define.
6027 (VALUE_TO_REGISTER): Define.
6028 (CONVERT_REGISTER_P): Define.
6029 * gdbarch.h, gdbarch.c: Regenerate.
6030
6031 * valops.c (value_assign): Use CONVERT_REGISTER_P and
6032 VALUE_TO_REGISTER.
6033 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
6034 CONVERT_REGISTER_P.
6035
4a1970e4
DJ
60362005-05-11 Daniel Jacobowitz <drow@mvista.com>
6037 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
6038
6039 * Makefile.in: Update dependencies for valops.c.
6040 * valops.c: Include "gdb_assert.h".
6041 (typecmp): Skip THIS parameter to methods.
6042 (find_method_list): Remove static_memfuncp argument,
6043 update callers. Check for stub methods.
6044 (find_value_oload_method_list): Don't set *static_memfuncp.
6045 (find_overload_match): Don't check for stub methods. Assert
6046 that methods are not stubbed. Handle static methods.
6047 (value_find_oload_method_list): Remove static_memfuncp argument.
6048 * gdbtypes.c (check_stub_method): Do not add THIS pointer
6049 to the argument list for static stub methods.
6050 * value.h (value_find_oload_method_list): Update prototype.
6051
b2e75d78
AC
60522002-05-11 Andrew Cagney <ac131313@redhat.com>
6053
6054 * arch-utils.h (generic_register_size): Declare.
6055 (generic_register_raw_size, generic_register_virtual_size): Delete
6056 declarations.
6057 * arch-utils.c (generic_register_raw_size): Delete.
6058 (generic_register_size): New function.
6059 (generic_register_virtual_size): Delete.
6060
6061 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
6062 default generic_register_size.
6063 * gdbarch.h, gdbarch.c: Re-generate.
6064
6065 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
6066 register_virtual_size.
6067 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
6068 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6069
451fbdda
AC
60702002-05-11 Andrew Cagney <ac131313@redhat.com>
6071
6072 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
6073 * gdbarch.h, gdbarch.c: Regenerate.
6074 * gnu-v3-abi.c: Update copyright.
6075 (vtable_address_point_offset): Update.
6076 (gnuv3_rtti_type): Update.
6077 (gnuv3_baseclass_offset): Update.
6078 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
6079 (init_fetch_link_map_offsets): Update.
6080 * remote.c (get_remote_state): Update.
6081
6d2f5cea
DJ
60822002-05-11 Daniel Jacobowitz <drow@mvista.com>
6083
6084 * TODO: Remove value_headof/value_from_vtable_info comment.
6085 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
6086 * values.c (value_headof, value_from_vtable_info): Delete.
6087 * value.h (value_from_vtable_info): Delete prototype.
6088
d2324da4
AC
60892002-05-11 Andrew Cagney <ac131313@redhat.com>
6090
6091 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
6092 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
6093 $(gdb_regex_h).
6094 (gdb_assert_h): Define.
6095 (gdb_wait_h): Define.
6096 (gdb_regex_h): Define.
6097
5c717440
DJ
60982002-05-11 Daniel Jacobowitz <drow@mvista.com>
6099
6100 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
6101 * linespec.c (find_methods): Handle GCC 3.x template constructors.
6102
6c7861b3
JT
61032002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6104
6105 * nbsd-tdep.c: Fix comment.
6106
ea5bc2a6
JT
61072002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6108
6109 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
6110 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
6111 (nbsd-tdep.o): New dependency list.
6112 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
6113 nbsd-tdep.h.
6114 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
6115 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
6116 * nbsd-tdep.c: New file.
6117 * nbsd-tdep.h: New file.
6118 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
6119 nbsd-tdep.h.
6120 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
6121 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
6122 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
6123 * config/sh/nbsd.mt (TDEPFILES): Ditto.
6124
b28da865
JT
61252002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6126
6127 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
6128 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
6129 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
6130 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
6131 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
6132 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
6133
4b8ff1fa
JT
61342002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6135
6136 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
6137 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6138 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
6139 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
6140 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
6141 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
6142 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
6143
dfe6eb1f
JT
61442002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6145
6146 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
6147 fetch_elfcore_registers to...
6148 * i386nbsd-tdep.c: ...here.
6149 (i386nbsd_use_struct_convention): Rename to...
6150 (i386nbsd_aout_use_struct_convention): ...this.
6151 (i386nbsd_supply_reg): New function.
6152 (i386nbsd_fill_reg): New function.
6153 (fetch_core_registers): Use i386nbsd_supply_reg.
6154 (fetch_elfcore_registers): Likewise.
6155 (_initialize_i386nbsd_tdep): New function.
6156 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
6157 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6158 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
6159 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
6160 (i386nbsd_aout_use_struct_convention): ...this.
6161
20cb8cda
JT
61622002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6163
6164 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
6165 (store_inferior_registers): Use shnbsd_fill_reg.
6166 * shnbsd-tdep.c (sh_nbsd_supply_registers,
6167 sh_nbsd_supply_register): Collapse into...
6168 (shnbsd_supply_reg): ...this.
6169 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
6170 (shnbsd_fill_reg): ...this.
6171 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
6172 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
6173 (fetch_core_registers): Use shnbsd_supply_reg.
6174 (fetch_elfcore_registers): Use shnbsd_supply_reg.
6175 (sh_nbsd_core_fns): Rename to...
6176 (shnbsd_core_fns): ...this.
6177 (sh_nbsd_elfcore_fns): Rename to...
6178 (shnbsd_elfcore_fns): ...this.
6179 (sh_nbsd_init_abi): Rename to...
6180 (shnbsd_init_abi): ...this.
6181 (_initialize_sh_nbsd_tdep): Rename to...
6182 (_initialize_shnbsd_tdep): ...this.
6183 * shnbsd-tdep.h (sh_nbsd_supply_registers,
6184 sh_nbsd_supply_register, sh_nbsd_fill_registers,
6185 sh_nbsd_fill_register): Remove prototypes.
6186 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
6187
e750d25e
JT
61882002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6189
6190 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
6191 (i387-nat.o): Delete dependency list.
6192 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
6193 (x86-64-linux-nat.o): Likewise.
6194 * i387-nat.c: Delete file, moving contents to...
6195 * i387-tdep.c: ...here.
6196 * i387-nat.h: Rename...
6197 * i387-tdep.h: ...to this.
6198 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
6199 * i386-linux-nat.c: Likewise.
6200 * i386bsd-nat.c: Likewise.
6201 * i386gnu-nat.c: Likewise.
6202 * i386nbsd-nat.c: Likewise.
6203 * i386v4-nat.c: Likewise.
6204 * x86-64-linux-nat.c: Likewise.
6205 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
6206 * config/i386/go32.mh (NATDEPFILES): Likewise.
6207 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
6208 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
6209 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
6210 * config/i386/linux.mh (NATDEPFILES): Likewise.
6211 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
6212 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
6213 * config/i386/obsd.mh (NATDEPFILES): Likewise.
6214 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
6215
1aee598a
JT
62162002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6217
6218 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
6219 (alphanbsd-nat.o): Remove dependency list.
6220 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
6221 * alphanbsd-nat.c: Delete. Contents moved to...
6222 * alphanbsd-tdep.c: ...here.
6223 (_initialize_alphanbsd_tdep): Register core functions.
6224 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
6225
12bcb0fe
JT
62262002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
6227
6228 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
6229 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
6230 (alphanbsd-nat.o): Likewise.
6231 (alphabsd-tdep.o): New dependency list.
6232 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
6233 (fill_gregset): Use alphabsd_fill_reg.
6234 (supply_fpregset): Use alphabsd_supply_fpreg.
6235 (fill_fpregset): Use alphabsd_fill_fpreg.
6236 (fetch_inferior_registers): Use struct reg and struct fpreg
6237 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
6238 and alphabsd_supply_fpreg.
6239 (store_inferior_registers): Use struct reg and struct fpreg
6240 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
6241 and alphabsd_fill_fpreg.
6242 * alphabsd-tdep.c: New file.
6243 * alphabsd-tdep.h: New file.
6244 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
6245 (fetch_elfcore_registers): Use alphabsd_supply_reg and
6246 alphabsd_supply_fpreg.
6247 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
6248 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
6249
361d1df0
EC
62502002-05-11 Eric Christopher <echristo@redhat.com>
6251
6252 * mips-tdep.c (mips_double_register_type): Fix thinko.
6253 (mips_single_register_type): Ditto.
6254 * MAINTAINERS: Add self.
6255
92dd7cee
MK
62562002-05-11 Mark Kettenis <kettenis@gnu.org>
6257
6258 * i387-nat.c (i387_supply_register, i387_fill_fsave,
6259 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
6260 right thing on architectures with different endianness and/or
6261 integer sizes.
6262
e27da16d
JT
62632002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
6264
6265 From Christian Limpach <chris@Pin.LU>
6266 * configure.in: Change sed expression which comments out
6267 NATDEPFILES to also comment out continuation lines.
6268 * configure: Regenerate.
6269
ddde02bd
EZ
62702002-05-10 Elena Zannoni <ezannoni@redhat.com>
6271
6272 * sh-tdep.c: Clean up code erroneously reintroduced by previous
6273 big patch.
6274
1c922164
EZ
62752002-05-10 Elena Zannoni <ezannoni@redhat.com>
6276
6277 * sh-tdep.c: Include correct file.
6278
283150cd
EZ
62792002-05-10 Elena Zannoni <ezannoni@redhat.com>
6280
6281 New support for sh64-elf (sh5) target.
6282
6283 * configure.tgt: For sh64-elf target, default to sh-elf.
6284
6285 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
6286 (struct gdbarch_tdep): Add new fields for new registers and ABI
6287 info.
361d1df0 6288
283150cd
EZ
6289 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
6290 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
6291 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
6292 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
6293 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
6294 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
6295 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
6296 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
6297 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
6298 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
6299 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
6300 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
6301 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
6302 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
6303 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
6304 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
6305 sh64_get_gdb_regnum, sh64_media_reg_base_num,
6306 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
6307 sign_extend, sh64_nofp_frame_init_saved_regs,
6308 sh64_init_extra_frame_info, sh64_get_saved_register,
6309 sh64_extract_struct_value_address, sh64_pop_frame,
6310 sh64_push_arguments, sh64_extract_return_value,
6311 sh64_store_return_value, sh64_show_media_regs,
6312 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
6313 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
6314 sh_sh64_register_virtual_type,
6315 sh_sh64_register_convert_to_virtual,
6316 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
6317 sh64_register_read, sh64_pseudo_register_write,
6318 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
6319 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
6320 sh64_do_pseudo_register, sh_compact_do_registers_info,
6321 sh64_do_registers_info, sh_gdbarch_init): New functions.
6322
3117ed25
EZ
63232002-05-10 Elena Zannoni <ezannoni@redhat.com>
6324
6325 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
6326
2654e6d4
DJ
63272002-05-10 Daniel Jacobowitz <drow@mvista.com>
6328
6329 * linespec.c (decode_line_1): Check for a double quote after
6330 a filename correctly.
6331
9ab3e532
JB
63322002-05-10 Jim Blandy <jimb@redhat.com>
6333
6334 Properly track the size of the current objfile's .debug_line section.
6335 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
6336 (DWARF_LINE_SIZE): New macro.
6337 (dwarf2_build_psymtabs_hard): Record the line section's size in
6338 the partial symbol table.
6339 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
6340 symbol table.
6341
126fa72d
PS
63422002-05-10 Petr Sorfa <petrs@caldera.com>
6343
6344 * ia64-tdep.c: Handle breakpoints on L instruction type
6345 in MLX instruction bundle by moving the breakpoint to
6346 the third slot (X instruction type) as L holds only data.
6347
1f077a3e
KB
63482002-05-10 Kevin Buettner <kevinb@redhat.com>
6349
6350 * dbxread.c (discarding_local_symbols_complaint): New complaint.
6351 (process_one_symbol): Complain about discarding local symbols
6352 due to a misplaced N_LBRAC entry.
6353
8120c9d5 63542002-05-09 Elena Zannoni <ezannoni@redhat.com>
361d1df0
EC
6355
6356 From Daniel Berlin <dan@cgsoftware.com>
8120c9d5
EZ
6357 * linespec.c (find_toplevel_char): '<' and '>' also increase and
6358 decrease the depth we are at, in the case of templates.
361d1df0 6359
67b2c998
DJ
63602002-05-09 Daniel Jacobowitz <drow@mvista.com>
6361
6362 * mips-tdep.c (mips_float_register_type): New function.
6363 (mips_double_register_type): New function.
6364 (mips_print_register): Use them.
6365 (do_fp_register_row): Likewise.
6366
fd326606
DJ
63672002-05-09 Daniel Jacobowitz <drow@mvista.com>
6368
6609d9af 6369 * signals/signals.c (signals): Remove conditional compilation around
fd326606 6370 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
6609d9af 6371 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
fd326606 6372
bef35864
MS
63732002-05-09 Michael Snyder <msnyder@redhat.com>
6374
6375 * remote-rdp.c (remote_rdp_can_run): Remove.
6376
c55a3f73
TT
63772002-05-09 Tom Tromey <tromey@redhat.com>
6378
6379 * jv-valprint.c (java_val_print): Handle `char' as a special case
6380 of TYPE_CODE_INT.
6381
b8d5e71d
MS
63822002-05-09 Michael Snyder <msnyder@redhat.com>
6383
6384 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
6385 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
361d1df0 6386 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
b8d5e71d 6387 str r(0123),[sp,#nn].
361d1df0 6388 (arm_skip_prologue): Ditto. Also make disassembly
b8d5e71d
MS
6389 order-independent by placing it in a loop.
6390
e2cd42dd
MS
63912002-05-06 Michael Snyder <msnyder@redhat.com>
6392
6393 * stabsread.c (read_type): Add recognition for new attribute:
6394 "@V;" means that an array type is actually a vector.
6395 This is analogous to the vector flag that's been added to dwarf2.
6396
3ce1502b
MK
63972002-05-09 Mark Kettenis <kettenis@gnu.org>
6398
6399 * i386-tdep.h (i386_abi): New enum.
6400 (struct gdbarch_tdep): Replace os_ident member with abi.
6401 (i386_gdbarch_register_os_abi): New prototype.
6402 * i386-tdep.c (i386_abi_names): New array.
6403 (process_note_abi_tag_sections): Removed.
6404 (process_note_sections): New function.
6405 (i386_elf_abi_from_note, i386_elf_abi): New functions.
6406 (struct i386_abi_handler): New struct.
6407 (i386_abi_handler_list): New variable.
6408 (i386_gdbarch_register_os_abi): New function.
6409 (i386_gdbarch_init): Adapt for the changes given above.
6410
084c156a
DJ
64112002-05-08 Daniel Jacobowitz <drow@mvista.com>
6412
6413 * gregset.h: Say "GNU/Linux".
6414
6599f021
EZ
64152002-05-08 Elena Zannoni <ezannoni@redhat.com>
6416
6417 * gdbtypes.c : Add new builtin type for 64 bit vectors.
6418 (build_gdbtypes): Build builtin_type_v2_float.
6419 (_initialize_gdbtypes): Register new builtin type.
6420
40af4b0c
AC
64212002-05-08 Andrew Cagney <ac131313@redhat.com>
6422
6423 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
6424 (clear_gdbarch_swap): New function.
6425 (initialize_non_multiarch): Call.
6426 (gdbarch_update_p): Before calling init(), swap out and clear the
6427 existing architecture.
6428 * gdbarch.c: Regenerate.
6429
4fe84f46
JT
64302002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6431
6432 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
6433 alphanbsd-tdep.c.
6434
4015edd1
JT
64352002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6436
6437 * sh-nbsd-nat.c: Rename to...
6438 * shnbsd-nat.c: ...this.
6439 * sh-nbsd-tdep.c: Rename to...
6440 * shnbsd-tdep.c: ...this.
6441 * sh-nbsd-tdep.h: Rename to...
6442 * shnbsd-tdep.h: ...this.
6443 * config/sh/nbsd.mh: Use shnbsd-nat.o.
6444 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
6445
0e2bd219
RE
64462002-05-08 Richard Earnshaw <rearnsha@arm.com>
6447
6448 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
6449 concatenation for command help messages.
6450
13a38d45
JT
64512002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6452
6453 * NEWS: Note new sh*-*-netbsdelf* configuration.
6454 * configure.host: Set gdb_host_cpu to sh for all sh*.
6455 (sh*-*-netbsdelf*): New host.
6456 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
6457 (sh*-*-netbsdelf*): New target.
6458 * sh-nbsd-nat.c: New file.
6459 * sh-nbsd-tdep.c: New file.
6460 * sh-nbsd-tdep.h: New file.
6461 * config/sh/nbsd.mh: New file.
6462 * config/sh/nbsd.mt: New file.
6463 * config/sh/nm-nbsd.h: New file.
6464 * config/sh/tm-nbsd.h: New file.
6465
d658f924
JT
64662002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
6467
6468 * sh-tdep.c (sh_osabi_names): Declare.
6469 (process_note_abi_tag_sections): New function.
6470 (get_elfosabi): Ditto.
6471 (sh_gdbarch_register_os_abi): Ditto.
6472 (sh_dump_tdep): Ditto.
6473 _initialize_sh_tdep): Use gdbarch_register to register
6474 sh_gdbarch_init and sh_dump_tdep.
6475 * config/sh/tm-sh.h (sh_osabi): Declare.
6476 (gdbarch_tdep): Add sh_osabi and osabi_name members.
6477
848cfffb
AC
64782002-05-07 Andrew Cagney <ac131313@redhat.com>
6479
6480 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
6481 (thumb_scan_prologue): Ditto.
6482 (arm_find_callers_reg): Ditto.
6483 (arm_frame_chain): Ditto.
6484 (arm_init_extra_frame_info): Ditto.
6485 (arm_frame_saved_pc): Ditto.
6486 (arm_pop_frame): Ditto.
6487 (arm_push_return_address): New function.
6488 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
6489 call_dummy_location, call_dummy_breakpoint_offset_p,
6490 call_dummy_breakpoint_offset, call_dummy_p,
6491 call_dummy_stack_adjust_p, call_dummy_words,
6492 sizeof_call_dummy_words, call_dummy_start_offset,
6493 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
6494 call_dummy_address, push_return_address and push_dummy_frame for
6495 generic dummy frames.
6496
e7d717c0
JT
64972002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
6498
6499 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
6500 size computation for alloca.
6501 (sh_fp_frame_init_saved_regs): Likewise.
6502
7bbcf283
RE
65032002-05-07 Richard Earnshaw <rearnsha@arm.com>
6504
6505 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
6506 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
361d1df0 6507 * arm-tdep.c (arm_store_return_value): Use them.
7bbcf283
RE
6508 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
6509 * remote-rdp.c (remote_rdp_fetch_register): Use
6510 ARM_MAX_REGISTER_RAW_SIZE.
6511 (remote_rdp_store_register): Likewise.
6512
4657573b
ML
65132002-05-07 Michal Ludvig <mludvig@suse.cz>
6514
361d1df0 6515 * dwarf2cfi.c: Code cleanup, removed unused variables,
4657573b
ML
6516 added default labels to switch {} statements.
6517 * x86-64-tdep.c: Ditto.
6518 * x86-64-linux-nat.c: Ditto.
6519
010f3b2f
JT
65202002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
6521
6522 * solib.h: Protect against multiple inclusion.
6523
debd256d
JB
65242002-05-06 Jim Blandy <jimb@redhat.com>
6525
9ab3e532
JB
6526 Add first preprocessor macro-expansion files.
6527 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
6528 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
6529 (splay_tree_h, macroexp_h, macrotab_h): New variable.
6530 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
6531 (COMMON_OBS): Add macrotab.o, macroexp.o.
6532 (macroexp.o, macrotab.o): New rules.
6533
debd256d
JB
6534 Separate the job of reading the line number info statement program
6535 header (...expialidocious) out into its own function.
6536 * dwarf2read.c (struct line_head, struct filenames, struct
6537 directories): Replace with...
6538 (struct line_header): New structure, containing the full
6539 contents of the statement program header, including the
6540 include directory and file name tables.
6541 (read_file_scope): If we have line number info, instead of just
6542 calling dwarf_decode_lines to do all the work, call
6543 dwarf_decode_line_header first to get a `struct line_header'
6544 containing the data in the statement program header, and then
6545 pass that to dwarf_decode_lines, which will pick up where that
6546 left off. Be sure to clean up the `struct line_header' object.
6547 (dwarf_decode_line_header, free_line_header, add_include_dir,
6548 add_file_name): New functions.
6549 (dwarf_decode_lines): Move all the code to read the statement
6550 program header into dwarf_decode_line_header. Take the line
6551 header it built as the first argument, instead of the offset to
6552 the compilation unit's line number info. Use the new `struct
6553 line_header' type instead of the old structures. No need to do
6554 cleanups here now, since we don't allocate anything.
6555 (dwarf2_statement_list_fits_in_line_number_section,
6556 dwarf2_line_header_too_long): New complaints.
6557
ac3aafc7
EZ
65582002-05-06 Elena Zannoni <ezannoni@redhat.com>
6559
6560 * gdbtypes.c (init_vector_type): New function.
6561 (build_builtin_type_vec128): Simplify the representation of SIMD
6562 registers.
6563 (build_gdbtypes): Initialize new builtin vector types.
6564 (_initialize_gdbtypes): Register new vector types with gdbarch.
6565 (builtin_type_v4_float, builtin_type_v4_int32,
6566 builtin_type_v8_int16, builtin_type_v16_int8,
6567 builtin_type_v2_int32, builtin_type_v4_int16,
6568 builtin_type_v8_int8): New (renamed) SIMD types.
6569
13e49980
MK
65702002-05-06 Mark Kettenis <kettenis@gnu.org>
6571
6572 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
6573 (i387_fill_fxsave): Likewise.
6574
997b20b8
AO
65752002-05-05 Alexandre Oliva <aoliva@redhat.com>
6576
6577 * alpha-tdep.c (alpha_extract_return_value): Don't use
6578 non-constant array size in prototype.
6579
535c96ce
AC
65802002-05-04 Andrew Cagney <ac131313@redhat.com>
6581
6582 From Brian Taylor <briant at model dot com>:
6583 * ui-out.c (ui_out_field_core_addr): Use the function
6584 longest_local_hex_string_custom'to format addresses > 32 bits
6585 wide.
6586
6587 * ui-out.c (ui_out_field_core_addr): Update comment.
6588
bedfa57b
AC
65892002-05-04 Andrew Cagney <ac131313@redhat.com>
6590
6591 * stack.c (select_and_print_frame): Make static. Delete the
6592 parameter `level'.
6593 (func_command): Update call.
6594 (select_frame_command): Delete code computing the frame level.
6595 * frame.h (select_and_print_frame): Delete declaration.
6596
f621c63e
AC
65972002-05-04 Andrew Cagney <ac131313@redhat.com>
6598
6599 * sparc-tdep.c (sparc_get_saved_register): Comment why
6600 get_prev_frame call is safe.
6601
0f7d239c
AC
66022002-05-04 Andrew Cagney <ac131313@redhat.com>
6603
6604 * frame.h (select_frame): Delete level parameter.
6605 * stack.c (select_frame): Update. Use frame_relative_level to
6606 obtain the frame's level.
6607 (select_and_print_frame): Update call.
6608 (select_frame_command): Ditto.
6609 (up_silently_base): Ditto.
6610 (down_silently_base): Ditto.
6611 * ocd.c (ocd_start_remote): Ditto.
6612 * remote-rdp.c (remote_rdp_open): Ditto.
6613 * remote-mips.c (mips_initialize): Ditto.
6614 (common_open): Ditto.
6615 * remote-e7000.c (e7000_start_remote): Ditto.
6616 * m3-nat.c (select_thread): Ditto.
6617 * hppa-tdep.c (child_get_current_exception_event): Ditto.
6618 (child_get_current_exception_event): Ditto.
6619 * varobj.c (varobj_create): Ditto.
6620 (varobj_update): Ditto.
6621 (c_value_of_root): Ditto.
6622 * tracepoint.c (finish_tfind_command): Ditto.
6623 * corelow.c (core_open): Ditto.
6624 * arch-utils.c (generic_prepare_to_proceed): Ditto.
6625 * thread.c (info_threads_command): Ditto.
6626 (switch_to_thread): Ditto.
6627 * infrun.c (normal_stop): Ditto.
6628 (restore_selected_frame): Ditto.
6629 (restore_inferior_status): Ditto.
6630 * breakpoint.c (insert_breakpoints): Ditto.
6631 (watchpoint_check): Ditto.
6632 (bpstat_stop_status): Ditto.
6633 (do_enable_breakpoint): Ditto.
6634 * blockframe.c (flush_cached_frames): Ditto.
6635 (reinit_frame_cache): Ditto.
6636
71d6c7b1
AC
66372002-05-04 Andrew Cagney <ac131313@redhat.com>
6638
6639 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
6640 maintainer.
6641
cda6c68a
JB
66422002-05-04 Jim Blandy <jimb@redhat.com>
6643
6644 * gdbtypes.c (replace_type): Doc fix.
6645
5c1c87f0
AC
66462002-05-04 Andrew Cagney <ac131313@redhat.com>
6647
6648 * valprint.c (strcat_longest): Delete commented out function.
6649 Update copyright.
6650
cd9bfe15
AC
66512002-05-04 Andrew Cagney <ac131313@redhat.com>
6652
6653 * MAINTAINERS: Mark a29k as deleted.
6654 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
6655 Move new configurations to the top.
6656 * configure.tgt: Remove a29k.
6657 * config/a29k/tm-vx29k.h: Delete.
6658 * config/a29k/vx29k.mt: Delete.
6659 * config/a29k/tm-a29k.h: Delete.
6660 * config/a29k/a29k-udi.mt: Delete.
6661 * config/a29k/a29k.mt: Delete.
6662 * a29k-tdep.c: Delete.
6663 * remote-udi.c: Delete.
6664 * remote-mm.c: Delete.
6665 * remote-eb.c: Delete.
6666 * remote-adapt.c: Delete.
6667 * Makefile.in: Remove obsolete code.
cd9bfe15
AC
6668 * config/s390/s390x.mt: Ditto.
6669 * config/s390/s390.mt: Ditto.
6670 * config/sparc/sparclynx.mh: Ditto.
6671 * config/sparc/linux.mh: Ditto.
6672 * config/pa/hppaosf.mh: Ditto.
6673 * config/pa/hppabsd.mh: Ditto.
6674 * config/ns32k/nbsd.mt: Ditto.
6675 * config/mips/vr5000.mt: Ditto.
6676 * config/m68k/sun3os4.mh: Ditto.
6677 * config/m68k/nbsd.mt: Ditto.
6678 * config/m68k/m68klynx.mh: Ditto.
6679 * config/m32r/m32r.mt: Ditto.
6680 * config/i386/x86-64linux.mt: Ditto.
6681 * config/i386/nbsdelf.mt: Ditto.
6682 * config/i386/nbsd.mt: Ditto.
6683 * config/i386/i386lynx.mh: Ditto.
6684
bf0c5130
AC
66852002-05-04 Andrew Cagney <ac131313@redhat.com>
6686
6687 * target.c (debug_print_register): New function. Handle oversize
6688 registers.
6689 (debug_to_fetch_registers): Call.
6690 (debug_to_store_registers): Call.
6691
2ae1c2d2
JB
66922002-05-03 Jim Blandy <jimb@redhat.com>
6693
13a393b0
JB
6694 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
6695 (read_type): Doc fix.
6696 * gdbtypes.c (replace_type): Doc fix.
6697
2ae1c2d2
JB
6698 * stabsread.c (multiply_defined_struct): New complaint.
6699 (read_struct_type): If the type we were passed isn't empty, or
6700 incomplete, don't read the new struct type into it; complain,
6701 and return the original type unchanged. Take a new `type_code'
6702 argument, which is the type code for the new type.
6703 (read_type): Rather than storing the type's type code here, pass
6704 it as an argument to read_struct_type, and let that take care of
6705 storing it. That way, we don't overwrite the original type code,
6706 so read_struct_type can use it to decide whether we're overwriting
6707 something we shouldn't.
6708 (complain_about_struct_wipeout): New function.
6709
8de9bdc4
AC
67102002-05-03 Andrew Cagney <ac131313@redhat.com>
6711
6712 * gdbarch.sh: Assert that gdbarch is non-NULL.
6713 * gdbarch.c: Regenerate.
6714
f773fdbb
JM
67152002-05-03 Jason Merrill <jason@redhat.com>
6716
6717 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
6718 and return NULL.
6719
0e04a514
ML
67202002-05-03 Michal Ludvig <mludvig@suse.cz>
6721
6722 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
6723 (x86_64_dwarf2gdb_regno_map_length),
6724 (x86_64_dwarf2_reg_to_regnum): Added.
6725 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
6726 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
6727 (_initialize_x86_64_tdep): Synced with the change above.
6728 (x86_64_skip_prologue): Reformulated message.
6729
065432a8
PM
67302002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
6731
6732 * f-exp.y: Also use new prev_lexptr variable
6733 to improve error reporting. Based on Michael Snyder
6734 2002-04-24 dated patch to c-exp.y.
6735 * jv-exp.y: Likewise.
6736 * m2-exp.y: Likewise.
6737
a3162708
EZ
67382002-05-02 Elena Zannoni <ezannoni@redhat.com>
6739
6740 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
6741 we are dealing with vectors.
6742
03620c38
PM
67432002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
6744
6745 * config/m68k/tm-nbsd.h: Obvious fix,
6746 correct machine name.
6747
6604db2e
PM
67482002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
6749
6750 * p-typeprint.c (pascal_type_print_base): Add support
6751 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
6752
0906b739
PM
67532002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
6754
6755 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
6756 for fondamental pascal 'char' type.
6757
e2625b33
PM
67582002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
6759
6760 * p-lang.h (is_pascal_string_type): Declaration changed,
6761 new sixth argument of type char ** added.
361d1df0 6762 * p-lang.c (is_pascal_string_type): Implementation
e2625b33
PM
6763 changed. Args length_pos, length_size, string_pos, char_size
6764 can now be NULL. New argument arrayname set to the field
6765 name of the char array. Return value set to char array
6766 field index plus one.
361d1df0 6767 * p-valprint.c (pascal_val_print): Adapt to new declaration of
e2625b33
PM
6768 is_pascal_string_type function.
6769
cf17c188
AC
67702002-05-02 Andrew Cagney <cagney@redhat.com>
6771
6772 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
6773 <cagney@redhat.com> change.
6774 * gdbarch.c: Regenerate.
6775
52bca491
AC
67762002-05-02 Andrew Cagney <cagney@redhat.com>
6777
6778 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
6779 before probing for a new one. Detect errorenous gdbarch_init
6780 functions.
6781 * gdbarch.c: Regenerate.
6782
d5e72505
AC
67832002-05-01 Andrew Cagney <cagney@redhat.com>
6784
6785 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
6786 * config/mcore/tm-mcore.h: Ditto. Update copyright.
6787 * config/v850/tm-v850.h: Ditto. Update copyright.
6788
af566d9f
AC
67892002-04-30 Andrew Cagney <ac131313@redhat.com>
6790
6791 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
6792 current_gdbarch.
6793
880d85fa
MS
67942002-04-30 Michael Snyder <msnyder@redhat.com>
6795
94c30b78
MS
6796 * arm-tdep.c: Whitespace clean-ups.
6797 (arm_skip_prologue): Fix thinko; two lines
880d85fa
MS
6798 should have been removed as part of 4/24 change.
6799
6f5987a6
KB
68002002-04-30 Kevin Buettner <kevinb@redhat.com>
6801
6802 * rs6000-tdep.c: Added comment describing how fpscr register
6803 numbers were chosen.
6804
1a113c93
MS
68052002-04-30 Michael Snyder <msnyder@redhat.com>
6806
6807 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
6808
9a6f53fe
EZ
68092002-04-29 Elena Zannoni <ezannoni@redhat.com>
6810
6811 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
6812 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
6813 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
6814
11ed25ac
KB
68152002-04-29 Kevin Buettner <kevinb@redhat.com>
6816
6817 From Louis Hamilton <hamilton@redhat.com>:
6818 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
6819 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
6820 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
6821 not bfd-private xcoff data, to determine wordsize.
6822 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
6823
ae232405
AC
68242002-04-29 Andrew Cagney <ac131313@redhat.com>
6825
6826 GDB 5.2 released from 5.2 branch.
6827
91fd20f7
ML
68282002-04-29 Michal Ludvig <mludvig@suse.cz>
6829
6830 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
6831 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
6832 (x86_64_register_info_table): Added comments with register numbers.
361d1df0 6833
2dc5091b
EZ
68342002-04-29 Elena Zannoni <ezannoni@redhat.com>
6835
6836 * rs6000-tdep.c (rs6000_extract_return_value,
6837 rs6000_store_return_value): Handle returning vectors.
6838 (rs6000_gdbarch_init): Use
6839 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
6840 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
6841 New function.
6842 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
6843 vectors.
6844 (ppc_sysv_abi_push_arguments): Handle vector parameters.
6845 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
361d1df0 6846
2b9848d8
PM
68472002-04-24 Pierre Muller <ics.u-strasbg.fr>
6848
6849 * hpread.c (hpread_psymtab_to_symtab_1,
aacb1f0a 6850 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
2b9848d8
PM
6851 with fprintf_unfiltered (gdb_stderr,...).
6852
f8d17dc5
PM
68532002-04-24 Pierre Muller <ics.u-strasbg.fr>
6854
6855 * remote-array.c (printf_monitor, write_monitor,
361d1df0 6856 array_insert_breakpoint, array_remove_breakpoint ):
f8d17dc5
PM
6857 Replace fprintf (stderr,...
6858 with fprintf_unfiltered (gdb_stderr,....
6859 * remote-es.c: Likewise.
6860 * remote-os9k.c: Likewise.
6861 * remote-st.c: Likewise.
6862
2f2f1ad1
AS
68632002-04-28 Andreas Schwab <schwab@suse.de>
6864
6865 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
6866 linux-proc.o and gcore.o.
6867
b6779aa2
AC
68682002-04-26 Michal Ludvig <mludvig@suse.cz>
6869
6870 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
6871 code without frame pointers.
6872
7e57f5f4
AC
68732002-04-26 Andrew Cagney <ac131313@redhat.com>
6874
6875 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
6876 ON_STACK is needed.
6877
2ceb85d0
BE
68782002-04-26 Ben Elliston <bje@redhat.com>
6879
6880 * target.c (do_xfer_memory): Correct reference to the new option
6881 "trust-readonly-sections".
6882
f5f8a009
EZ
68832002-04-26 Elena Zannoni <ezannoni@redhat.com>
6884
6885 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
6886 * gdbtypes.c (recursive_dump_type): Output the vector flag.
6887 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
6888 vectors.
6889 (read_array_type): Record the fact that this array type is really a
6890 vector (i.e. are passed in by value).
6891
5868c862
JT
68922002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
6893
6894 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
6895 * alpha-tdep.c (alpha_sigcontext_addr): New function.
6896 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
6897 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
6898 * alpha-linux-tdep.c: Include frame.h.
6899 (alpha_linux_sigcontext_addr): New function.
6900 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
6901 alpha_linux_sigcontext_addr.
6902 * alpha-osf1-tdep.c: Include gdbcore.h.
6903 (alpha_osf1_sigcontext_addr): New function.
6904 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
6905 alpha_osf1_sigcontext_addr.
6906 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
6907 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
6908
bfb01f37
AC
69092002-04-26 Andrew Cagney <ac131313@redhat.com>
6910
361d1df0 6911 * stack.c (selected_frame_level):
bfb01f37
AC
6912 (select_frame): Do not set selected_frame_level.
6913 * frame.h (selected_frame_level): Delete declaration.
6914
15813d3f
AC
69152002-04-26 Andrew Cagney <ac131313@redhat.com>
6916
6917 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
6918 convert_from_func_ptr-addr when AIX / PowerOpen.
6919
6096c27a
AC
69202002-04-25 Andrew Cagney <ac131313@redhat.com>
6921
6922 * valops.c (hand_function_call): Call
6923 generic_save_call_dummy_addr.
6924 * frame.h (generic_save_call_dummy_addr): Declare.
6925 * blockframe.c (struct dummy_frame): Add fields call_lo and
6926 call_hi.
6927 (generic_find_dummy_frame): Check for PC in range call_lo to
6928 call_hi instead of entry_point_address.
6929 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
6930 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
6931 (generic_save_call_dummy_addr): New function.
6932
f510d44e
DM
69332002-04-24 David S. Miller <davem@redhat.com>
6934
6935 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
6936 sparc_skip_prologue.
6937 (sparc_skip_prologue): Kill frameless_p arg, and use line number
6938 information to find prologue when possible.
6939 (sparc_prologue_frameless_p): Call examine_prologue directly.
6940 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
6941 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
6942 second argument.
6943 (SKIP_PROLOGUE): Likewise.
6944
15d72a92
JT
69452002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6946
6947 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
6948 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
6949 indicate that the condition it was testing is always true.
6950 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
6951 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6952 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6953
accc6d1f
JT
69542002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6955
6956 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
6957 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
6958 tdep->jb_pc and tdep->jb_elt_size.
6959 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
6960 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
6961 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
6962 * alpha-nat.c (get_longjmp_target): Remove.
6963 (JB_ELEMENT_SIZE): Ditto.
6964 (JB_PC): Ditto.
6965 * alpha-tdep.c (alpha_get_longjmp_target): New function.
6966 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
6967 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
6968 to alpha_get_longjmp_target.
6969 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
6970 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
6971 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
6972
1bfdc549
AC
69732002-04-25 Andrew Cagney <ac131313@redhat.com>
6974
6975 * README: Update to GDB 5.2.
6976
1bd316f0
AC
69772002-04-25 Andrew Cagney <ac131313@redhat.com>
6978
6979 * gdbarch.sh (LC_ALL): Set to `c'.
6980
2e5ff58c
TR
69812002-04-25 Theodore A. Roth <troth@verinet.com>
6982
6983 * avr-tdep.c: Ran through gdb_indent.sh.
6984
e33ce519
TR
69852002-04-25 Theodore A. Roth <troth@verinet.com>
6986
6987 * MAINTAINERS: Add myself as AVR maintainer.
6988 * NEWS: Note new target avr.
6989
8818c391
TR
69902002-04-25 Theodore A. Roth <troth@verinet.com>
6991
6992 * Makefile.in: Add support for AVR target.
6993 * configure.tgt: Add support for AVR target.
6994 * avr-tdep.c: New file
6995 * config/avr/avr.mt: New file.
6996
79509c2d
TR
69972002-04-25 Theodore A. Roth <troth@verinet.com>
6998
6999 * MAINTAINERS: Add myself to write-after-approval.
7000
dac8068e
PM
70012002-04-24 Pierre Muller <ics.u-strasbg.fr>
7002
7003 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
7004 with fprintf_unfiltered (gdb_stderr,....
7005
25bf3106
PM
70062002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
7007
7008 Fix PR gdb/508.
7009 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
7010
24467a86
PM
70112002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
7012
7013 * p-exp.y: Also use new prev_lexptr variable
7014 to improve error reporting. Based on Michael Snyder
7015 2002-04-24 dated patch to c-exp.y.
7016
95b80706
JT
70172002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7018
7019 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
7020 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
7021 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
7022 to 0.
7023 * config/alpha/tm-alpha.h: Remove forward decls of struct type
7024 and struct value.
7025 (FUNCTION_START_OFFSET): Remove.
7026 (BREAKPOINT): Ditto.
7027
e90cc612
JT
70282002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
7029
7030 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
7031 * NEWS: Ditto.
7032
6c72f9f9
JT
70332002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7034
7035 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
7036 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
7037 alpha_linux_pc_in_sigtramp.
7038 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
7039 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
7040 alpha_osf1_pc_in_sigtramp.
7041 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
7042 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
7043 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
7044 alphafbsd_pc_in_sigtramp.
7045 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
7046 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
7047 alphanbsd_pc_in_sigtramp.
7048 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
7049 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
7050
5e4f3379
JT
70512002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7052
7053 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
7054
da8ca43d
JT
70552002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7056
7057 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
7058 alphanbsd-tdep.c.
7059 (alphanbsd-nat.o): New dependency list.
7060 (alphanbsd-tdep.o): Ditto.
7061 * NEWS: Note new native NetBSD/alpha configuration.
7062 * alphanbsd-nat.c: New file.
7063 * alphanbsd-tdep.c: Ditto.
7064 * configure.host (alpha*-*-netbsd*): New host.
7065 * configure.tgt (alpha*-*-netbsd*): New target.
7066 * config/alpha/nbsd.mh: New file.
7067 * config/alpha/nbsd.mt: Ditto.
7068 * config/alpha/nm-nbsd.h: Ditto.
7069 * config/alpha/tm-nbsd.h: Ditto.
7070
36a6271d
JT
70712002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7072
7073 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
7074 (alpha-osf1-tdep.o): New dependency list.
7075 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
7076 and skip_sigtramp_frame members.
7077 * alpha-linux-tdep.c: Include gdbcore.h.
7078 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
7079 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
7080 * alpha-osf1-tdep.c: New file.
7081 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
7082 alpha-osf1-dep.c.
7083 (alpha_frame_past_sigtramp_frame): New function.
7084 (alpha_dynamic_sigtramp_offset): Ditto.
7085 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
7086 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
7087 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
7088 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
7089 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
7090 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
7091 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
7092 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
7093 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
7094 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
7095 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
7096 to find_solib_trampoline_target.
7097 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
7098 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
7099 (SKIP_TRAMPOLINE_CODE): Remove.
7100 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7101 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7102 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7103 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7104 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
7105 (PROC_SIGTRAMP_MAGIC): Ditto.
7106 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7107 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7108 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
7109 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
7110 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
7111
2f4bc57b
JT
71122002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
7113
7114 * NEWS: Note that Alpha targets are now multi-arch.
7115
665132f9
MS
71162002-04-24 Michael Snyder <msnyder@redhat.com>
7117
7118 * parser-defs.h (prev_lexptr): New external variable.
7119 * parse.c (parse_exp_1): Set prev_lexptr to null before
7120 calling the language-specific parser.
7121 * c-exp.y (yylex): Set prev_lexptr to start of current token.
7122 (yyerror): Use prev_lexptr in error reporting.
7123
32872fa7
DJ
71242002-04-24 Daniel Jacobowitz <drow@mvista.com>
7125
7126 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
7127 * gregset.h: If FILL_FPXREGSET is defined, provide
7128 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
7129 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
7130 is defined, call fill_fpxregset.
7131
57e76fac
MS
71322002-04-24 Roland McGrath <roland@frob.com>
7133
7134 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
7135 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
7136 (supply_gregset, supply_fpregset): New functions.
7137
7138 * gnu-nat.c (gnu_find_memory_regions): New function.
7139 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
7140 (gnu_xfer_memory): Add a cast.
7141
f43845b3
MS
71422002-04-24 Michael Snyder <msnyder@redhat.com>
7143
361d1df0 7144 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
f43845b3
MS
7145 loop. Add handling for "str lr, [sp, #-4]!" and for saves
7146 of argument regs ("str r(0123), [r11, #-nn"]).
361d1df0 7147 (arm_skip_prologue): Better handling for frameless functions.
f43845b3
MS
7148 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
7149 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
7150
a0abec03
AC
7151Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
7152
7153 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
7154 NUM_PSEUDO_REGS can be used.
7155
d7bd68ca
AC
71562002-04-24 Andrew Cagney <ac131313@redhat.com>
7157
7158 * arch-utils.h: Update copyright.
7159
7160 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
7161 * gdbarch.h, gdbarch.c: Re-generate.
7162
7163 * inferior.h (IN_SIGTRAMP): Delete definition.
7164 * arch-utils.c (legacy_pc_in_sigtramp): New function.
7165 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
7166
7167 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
7168 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
7169 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
7170 (find_proc_framesize): Ditto.
7171 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
7172 (alpha_init_extra_frame_info): Ditto.
7173 * infrun.c (handle_inferior_event): Ditto.
7174 (handle_inferior_event): Ditto.
7175 (check_sigtramp2): Ditto.
7176 * blockframe.c (create_new_frame): Ditto.
7177 (get_prev_frame): Ditto.
7178 * ppc-linux-tdep.c: Update comments.
7179 * i386-linux-tdep.c: Update comments.
7180 * breakpoint.c (bpstat_what): Update comment.
7181
4867e41e
DM
71822002-04-24 David S. Miller <davem@redhat.com>
7183
21d83aa5
DM
7184 * i960-tdep.c (register_in_window_p): New function.
7185 (i960_find_saved_register): Use it instead of
7186 REGISTER_IN_WINDOW_P.
7187 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
7188
4867e41e
DM
7189 * symtab.h (find_stab_function_addr): Kill extern.
7190 * minsyms.c (find_stab_function_addr): Remove from here...
7191 * dbxread.c: ... to here, and mark it static.
7192
69cdf6a2
DM
71932002-04-20 David S. Miller <davem@redhat.com>
7194
7195 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
7196 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
7197
5a595886
DM
71982002-04-21 David S. Miller <davem@redhat.com>
7199
7200 * remote-vxsparc.c (vx_read_register): Fix typo, we want
7201 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
7202 (vx_write_register): Likewise.
7203
1da1a192
JB
72042002-04-23 J. Brobecker <brobecker@gnat.com>
7205
7206 * source.c (is_regular_file): New function.
7207 (openp): Check wether file to open is a regular file
7208 to avoid opening directories.
7209
baa6f10b
JT
72102002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7211
7212 * findvar.c (extract_signed_integer): Cast printf argument
7213 to suppress format warning.
7214 (extract_unsigned_integer): Likewise.
7215 * infcmd.c (registers_info): Likewise.
7216 * top.c (get_prompt_1): Likewise.
7217 * valops.c (value_assign): Likewise.
7218 * valprint.c (print_decimal): Likewise.
7219
b2c4da81
L
72202002-04-22 H.J. Lu (hjl@gnu.org)
7221
7222 * c-exp.y (typebase): Support
361d1df0 7223
b2c4da81
L
7224 [long|long long|short] [signed|unsigned] [int|]
7225
7226 and
7227
7228 signed [long|long long|short] int
7229
f267bd6a
JT
72302002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7231
7232 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
7233 and vax-tdep.h.
7234 * vax-tdep.h: New file.
7235 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
7236 Make several routines static.
7237 (vax_get_saved_register): New function.
7238 (vax_gdbarch_init): New function.
7239 (_initialize_vax_tdep): Register vax_gdbarch_init.
7240 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
7241 Remove macros now under the control of gdbarch.
7242
da3c6d4a
MS
72432002-04-22 Michael Snyder <msnyder@redhat.com>
7244
11d3b27d
MS
7245 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
7246 Some whitespace and coding standards tweaks.
da3c6d4a 7247
a33f7558
JT
72482002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7249
7250 * vax-tdep.c: Include regcache.h.
7251 (vax_call_dummy_words): New.
7252 (sizeof_vax_call_dummy_words): New.
7253 (vax_fix_call_dummy): New function.
7254 (vax_saved_pc_after_call): Ditto.
7255 * config/vax/tm-vax.h: Don't include regcache.h.
7256 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
7257 (CALL_DUMMY): Remove.
7258 (CALL_DUMMY_WORDS): Define.
7259 (SIZEOF_CALL_DUMMY_WORDS): Define.
7260 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
7261
47a73475
MS
72622002-04-18 Michael Snyder <msnyder@redhat.com>
7263
7264 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
7265
52efde73
JT
72662002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7267
7268 * vax-tdep.c (vax_frame_chain): New function.
7269 (vax_push_dummy_frame): Ditto.
7270 (vax_pop_frame): Ditto.
7271 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
7272 (FRAMELESS_FUNCTION_INVOCATION): Use
7273 generic_frameless_function_invocation_not.
7274 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
7275 (POP_FRAME): Use vax_pop_frame.
7276
ea74468c
JT
72772002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7278
7279 * vax-tdep.c (vax_store_struct_return): New function.
7280 (vax_extract_return_value): Ditto.
7281 (vax_store_return_value): Ditto.
7282 (vax_extract_struct_value_address): Ditto.
7283 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
7284 vax_store_struct_return.
7285 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
7286 (STORE_RETURN_VALUE): Use vax_store_return_value.
7287 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
7288
5516aa92
JT
72892002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7290
7291 * vax-tdep.c (vax_frame_saved_pc): New function.
7292 (vax_frame_args_address_correct): Ditto.
7293 (vax_frame_args_address): Ditto.
7294 (vax_frame_locals_address): Ditto.
7295 (vax_frame_num_args): Move code to be in proximity to
7296 other frame-related functions.
7297 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
7298 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
7299 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
7300 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
7301 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
7302
36af0b35
L
73032002-04-22 H.J. Lu (hjl@gnu.org)
7304
7305 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
7306 includedir.
7307
ab62c900
JT
73082002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7309
7310 * vax-tdep.c (vax_frame_init_saved_regs): New function.
7311 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
7312 (FRAME_INIT_SAVED_REGS): New macro.
7313
7232b100
JT
73142002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7315
7316 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
7317
b70d2aee
JT
73182002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7319
7320 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
7321 where needed.
7322 (fetch_osf_core_registers): Likewise.
7323 (supply_gregset): Likewise.
7324
a0e8a2d1 73252002-04-22 J. Brobecker <brobecker@gnat.com>
361d1df0 7326
a0e8a2d1
JB
7327 * symfile.h (get_section_index): Define.
7328 * symfile.c (get_section_index): New function.
7329 * mdebugread.c (SC_IS_SBSS): New macro.
7330 (SC_IS_BSS): Return true for the scBss storage class only, as
7331 the scSBss storage class refers to the .sbss section.
7332 (parse_partial_symbols): Discard the symbols which associated
7333 section does not exist.
7334 Make sure to use the .sbss section index for symbols which
7335 storage class is scBss, rather than using the .bss section index.
7336
51eb8b08
JT
73372002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
7338
7339 * vax-tdep.c: Update copyright years.
7340 (vax_register_name): New function.
7341 (vax_register_byte): Ditto.
7342 (vax_register_raw_size): Ditto.
7343 (vax_register_virtual_size): Ditto.
7344 (vax_register_virtual_type): Ditto.
7345 * config/vax/tm-vax.h: Update copyright years.
7346 (REGISTER_NAMES): Remove.
7347 (REGISTER_NAME): Define.
7348 (REGISTER_BYTE): Use vax_register_byte.
7349 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
7350 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
7351 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
7352
6cc1c0a8
AC
73532002-04-21 Andrew Cagney <ac131313@redhat.com>
7354
7355 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
7356 declaration
7357 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
7358
9319a2fe
DM
73592002-04-21 David S. Miller <davem@redhat.com>
7360
7361 * arch-utils.c (generic_prologue_frameless_p): Kill
7362 SKIP_PROLOGUE_FRAMELESS_P code.
7363 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7364 references.
7365 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
7366 * arc-tdep.c (arc_prologue_frameless_p): Implement.
7367 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
7368 references.
7369 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
7370 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
7371 (sparc_gdbarch_init): Pass it to
7372 set_gdbarch_prologue_frameless_p.
a0e8a2d1 7373
e9ed6d01
JT
73742002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7375
7376 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
7377 (alphabsd-nat.o): New dependency list.
7378
36012033
JT
73792002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7380
7381 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
7382 alphafbsd-tdep.c.
7383 (alpha-linux-tdep.o): New dependency list.
7384 (alphafbsd-tdep.o): Likewise.
7385
3379287a
JT
73862002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7387
7388 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
7389 to here...
7390 * alpha-tdep.c: ...from here.
7391 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
7392
4bcbd6cb
JT
73932002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7394
7395 * config/alpha/tm-alpha.h: Move alpha_software_single_step
7396 prototype from here...
7397 * alpha-tdep.h: ...to here.
7398
b31da25e
AC
73992002-04-21 Andrew Cagney <ac131313@redhat.com>
7400
7401 * frame.h (selected_frame_level): Document as deprecated.
7402 (frame_relative_level): Declare.
7403 * stack.c (frame_relative_level): New function.
7404 (selected_frame_level): Document as deprecated.
7405 (select_frame): Do not set the selected_frame_level.
7406
7407 * stack.c (frame_info, record_selected_frame): Update.
7408 (frame_command, current_frame_command): Update.
7409 (up_silently_base, up_command, down_silently_base): Update.
7410 (down_command): Update.
7411 * inflow.c (kill_command): Update.
7412 * tracepoint.c (finish_tfind_command): Update.
7413 * corelow.c (core_open): Update.
7414 * thread.c (info_threads_command): Update.
7415 (do_captured_thread_select): Update.
7416 * infcmd.c (finish_command): Update.
7417 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
7418
9c1d6fe5
JT
74192002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7420
7421 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
7422
ab89facf
AC
74232002-04-21 Andrew Cagney <ac131313@redhat.com>
7424
7425 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
7426 type const.
7427
82a4efa1
JT
74282002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7429
7430 * alphafbsd-tdep.c: Update copyright years. Include
7431 alpha-tdep.h.
7432 (alphafbsd_use_struct_convention): Make static.
7433 (alphafbsd_init_abi): New function.
7434 (_initialize_alphafbsd_tdep): New function.
7435 * config/alpha/tm-fbsd.h: Update copyright years.
7436 (USE_STRUCT_CONVENTION): Remove.
7437
44dffaac
JT
74382002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7439
7440 * alpha-tdep.c (alpha_abi_handler): New structure to describe
7441 an Alpha ABI variant.
7442 (alpha_abi_handler_list): Declare.
7443 (alpha_gdbarch_register_os_abi): New function.
7444 (alpha_gdbarch_init): Give registered ABI variant handlers a
7445 chance to tweak the gdbarch once we have set up defaults.
7446 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
7447
65585be4
JT
74482002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7449
7450 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
7451 to standard_coerce_float_to_double.
7452 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
7453
d9b023cc
JT
74542002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7455
7456 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
7457 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
7458 from gdbarch_tdep rather than a constant.
7459 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
7460 the default text address for all Alpha Unix ABIs.
7461 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
7462 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
7463
dc129d82
JT
74642002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
7465
7466 * alpha-tdep.h: New file. Includes several Alpha target constants
7467 taken from...
7468 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
7469 let gdbarch deal with.
7470 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
7471 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
7472 to dependency list.
7473 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
7474 Alpha target register names.
7475 * alphabsd-nat.c: Likewise.
7476 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
7477 Alpha target register names. Make serveral routines static.
7478 (alpha_get_saved_register): New function.
7479 (alpha_abi_names): New.
7480 (process_note_abi_tag_sections): New function.
7481 (get_elfosabi): New function.
7482 (alpha_gdbarch_init): New function.
7483 (alpha_dump_tdep): New function.
7484 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
7485
d49d1e0a
AC
74862002-04-21 Andrew Cagney <ac131313@redhat.com>
7487
7488 * frame.c (find_saved_register): Delete #ifdef
7489 HAVE_REGISTER_WINDOWS code.
7490 * config/sparc/tm-sparc.h: Update comments.
7491 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
7492
92e8c9ed
AC
74932002-04-21 Andrew Cagney <ac131313@redhat.com>
7494
7495 * i960-tdep.c (i960_find_saved_register): New function.
7496 (i960_get_saved_register): New function.
7497 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
7498 (i960_get_saved_register): Declare.
7499 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
7500
e1925118
DM
75012002-04-20 David S. Miller <davem@redhat.com>
7502
7503 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
7504
29673b29
AC
75052002-04-20 Andrew Cagney <ac131313@redhat.com>
7506
7507 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
7508 instead of NUM_PSEUDO_REGS.
7509
6c86dcd5
DM
75102002-04-20 David S. Miller <davem@redhat.com>
7511
7512 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
7513 GDB_MULTI_ARCH_PARTIAL
7514 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
7515 define, let tm-sp64.h do it.
7516
aa40ec90
JT
75172002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
7518
7519 * frame.c (find_saved_register): Avoid a NULL pointer
7520 dereference and actually walk the frame list.
7521
0f79675b
AC
75222002-04-20 Andrew Cagney <ac131313@redhat.com>
7523
7524 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
7525 sorted in most most-recent-used order. Document.
7526 * gdbarch.h, gdbarch.c: Regenerate.
361d1df0 7527
f91305dd 75282002-04-19 Andrew Cagney <ac131313@redhat.com>
bf75c8c1
AC
7529
7530 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
7531 instead of ->prev.
7532 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
7533 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
7534 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
7535 instead of ->prev.
7536
73d322b1
EZ
75372002-04-19 Elena Zannoni <ezannoni@redhat.com>
7538
7539 Fix PR gdb/471.
7540 * gdbtypes.c (init_simd_type): Rewrite using new functions.
7541 (build_builtin_type_vec128): Ditto.
7542 (append_composite_type_field): Fix calculation of type length in
7543 union case.
7544
ccd9a834
EZ
75452002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
7546
7547 * config/djgpp/README: Update.
7548
7549 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
7550 compiler warnings.
7551
a57f9e49
JT
75522002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
7553
7554 * alpha-tdep.c (setup_arbitrary_frame): Rename...
7555 (alpha_setup_arbitrary_frame): ...to this.
7556 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
7557 for alpha_setup_arbitrary_frame.
7558
f4f9705a
AC
75592002-04-18 Andrew Cagney <cagney@redhat.com>
7560
7561 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
7562 * gdbarch.h, gdbarch.c: Regenerate.
361d1df0 7563
f4f9705a
AC
7564 * defs.h (breakpoint_from_pc_fn): Delete type definition.
7565 * target.h (memory_breakpoint_from_pc): Update declaration.
7566 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
7567
7568 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
7569 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
7570 * mem-break.c (memory_breakpoint_from_pc): Ditto.
7571 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
7572 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
7573 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
7574 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
7575 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
7576 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
7577 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
7578 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
7579 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
7580
7581 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
7582 const pointer.
7583 * monitor.c (monitor_insert_breakpoint): Ditto.
7584 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
7585
7586 * config/mcore/tm-mcore.h: Update copyright.
7587 * mem-break.c: Ditto.
7588 * xstormy16-tdep.c: Ditto.
7589
29f319b8
PM
75902002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
7591
7592 * p-exp.y: Add precedence rule for '^' token.
7593 This removes the shift/reduce conflicts.
7594 Remove the comment concerning these shift/reduce conflicts.
7595
ebeac11a
EZ
75962002-04-18 Elena Zannoni <ezannoni@redhat.com>
7597
7598 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
7599 (registers_powerpc_nofp): New register set for processors
7600 without floating point unit.
7601
27c31547
DM
76022002-04-18 David S. Miller <davem@redhat.com>
7603
7604 * MAINTAINERS: Add myself to write-after-approval.
7605
47a73475
MS
76062002-04-17 Michael Snyder <msnyder@redhat.com>
7607
7608 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
7609
953836b2
AC
76102002-04-17 Andrew Cagney <ac131313@redhat.com>
7611
7612 * rs6000-tdep.c (frame_initial_stack_address): Use
7613 frame_register_read to read the alloca_reg.
7614
8b0d4340
AC
76152002-04-17 Andrew Cagney <ac131313@redhat.com>
7616
7617 * frame.c (find_saved_register): Find saved registers in the next
7618 not prev frame.
7619 Fix PR gdb/365.
7620
d8864532
AC
76212002-04-17 Andrew Cagney <ac131313@redhat.com>
7622
7623 * gdbarch.sh (LANG): Set to ``c''.
7624
36cc83a3 76252002-04-15 Andrew Cagney <ac131313@redhat.com>
361d1df0 7626
36cc83a3 7627 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
361d1df0 7628
2f4150cc 76292002-04-15 Andrew Cagney <ac131313@redhat.com>
2c7ef074
AC
7630
7631 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
7632 Update copyright.
7633
628703c6 7634 * hpread.c (hpread_get_lntt): Add declaration.
2f4150cc 7635 Also fix PR gdb/391.
361d1df0 7636
56157b4a
AC
76372002-04-14 Andrew Cagney <ac131313@redhat.com>
7638
7639 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
7640 * aclocal.m4, configure: Re-generate.
7641 Fix PR gdb/391.
361d1df0 7642
6d1e3329
EZ
76432002-04-14 Elena Zannoni <ezannoni@redhat.com>
7644
7645 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
7646 instead of tm_print_insn.
7647
cb06fa07
EZ
76482002-04-14 Elena Zannoni <ezannoni@redhat.com>
7649
7650 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
7651
f208ba17
AC
76522002-04-14 Andrew Cagney <ac131313@redhat.com>
7653
7654 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
7655 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
7656 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
7657
20f01a46
DH
76582002-04-12 Don Howard <dhoward@redhat.com>
7659
7660 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
7661 max_user_call_depth.
7662 (init_cmd_lists): Initialize the new value;
7663 * cli/cli-script.c (execute_user_command): Limit the call depth of
7664 user defined commands. This avoids a core-dump when user commands
7665 are infinitly recursive.
7666
a88376a3
KB
76672002-04-12 Kevin Buettner <kevinb@redhat.com>
7668
7669 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
7670 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
7671 from tdep struct instead of DEFAULT_LR_SAVE.
7672 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
7673 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
7674 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
7675
f2172603
MS
76762002-04-12 Michael Snyder <msnyder@redhat.com>
7677
694f61fb 7678 * Remote.c: Spelling fix.
20fe79c8
MS
7679 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
7680 If no symbol found for "sbrk", try "_sbrk".
7681 (make_output_phdrs): Use bfd_section_name.
7682 (gcore_copy_callback): Use bfd_section_name.
62995fc4 7683 * eval.c: Indentation fix-ups.
169a7369
MS
7684 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
7685 in case it gets applied to an address that is already
7686 in the instruction space.
de74f71f
MS
7687 * cli/cli-decode.c (help_list): Allow long lines to wrap.
7688 * symfile.c: Fix indentation, long lines.
f2172603
MS
7689 * source.c: White space fix-up.
7690
cda5a58a
AC
76912002-04-12 Andrew Cagney <cagney@redhat.com>
7692
7693 * defs.h (read_relative_register_raw_bytes): Delete declaration.
7694 * frame.c (frame_register_read): New function. Return non-zero on
7695 success.
7696 (read_relative_register_raw_bytes_for_frame): Delete.
7697 (read_relative_register_raw_bytes): Delete.
7698 * frame.h (frame_register_read): Declare.
7699 * d30v-tdep.c: Update Copyright. Use frame_register_read.
7700 * sh-tdep.c: Ditto.
7701 * infcmd.c (do_registers_info): Ditto.
7702 * hppa-tdep.c: Ditto.
7703 * rs6000-tdep.c: Ditto.
7704 * h8500-tdep.c: Ditto.
7705 * mips-tdep.c: Ditto.
7706 * h8300-tdep.c: Ditto.
7707 * z8k-tdep.c: Ditto.
7708
2ea5f656
KB
77092002-04-12 Kevin Buettner <kevinb@redhat.com>
7710
7711 From Jimi X <jimix@watson.ibm.com>:
7712 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
7713 64-bit SysV ABI.
7714
27b15785
KB
77152002-04-12 Kevin Buettner <kevinb@redhat.com>
7716
7717 From Jimi X <jimix@watson.ibm.com>:
7718 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
7719 bfd info.
7720
5d57ee30
KB
77212002-04-12 Kevin Buettner <kevinb@redhat.com>
7722
7723 From Jimi X <jimix@watson.ibm.com>:
7724 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
7725 register sets for these processor variants.
7726
bc1e36ca
DJ
77272002-04-11 Daniel Jacobowitz <drow@mvista.com>
7728
bc1e36ca
DJ
7729 * regformats/reg-ppc.dat: Support FPSCR.
7730
e3f36dbd
KB
77312002-04-11 Kevin Buettner <kevinb@redhat.com>
7732
7733 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
7734 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
7735 Add fpscr as an invalid/unfetchable register.
7736 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
7737 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
7738 (fill_fpregset): Add support for register fpscr.
7739 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
7740 (fill_gregset): Account for the fact that register ``mq'' might
7741 not exist.
7742 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
7743 (registers_power): Add fpscr to register set at slot 71.
7744 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
7745 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
7746
943c9c25
MS
77472002-04-11 Michael Snyder <msnyder@redhat.com>
7748
7749 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
7750 * configure: Regenerate.
7751 * config.in: Regenerate.
7752 * acconfig.h: Add define for _SYSCALL32.
7753 * core-sol2.c: Remove #define _SYSCALL32.
7754 * solib-legacy.c: Remove #define _SYSCALL32.
7755
d8c0a2e7
AC
77562002-04-10 Andrew Cagney <ac131313@redhat.com>
7757
7758 * stack.c (select_frame): Cleanup internal error message, do not
7759 use %p.
7760
7cc19214
AC
77612002-04-10 Andrew Cagney <ac131313@redhat.com>
7762
7763 * stack.c (select_frame): Check that selected_frame and the
7764 specified level are as expected.
7765 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
7766 Update copyright.
7767 * frame.h (struct frame_info): Add field `level'. Update
7768 copyright.
7769 Work-in-progress PR gdb/464.
7770
67a2b77e
AC
77712002-04-10 Andrew Cagney <ac131313@redhat.com>
7772
7773 * maint.c (maint_print_section_info): Rename print_section_info.
7774 (print_bfd_section_info, print_objfile_section_info): Update.
7775 * inferior.h (struct gdbarch): Add opaque declaration.
7776 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
7777 * gdbarch.h: Regenerate.
7778
8cfda98c
ML
77792002-04-10 Michal Ludvig <mludvig@suse.cz>
7780
7781 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
7782 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
7783 (kernel_u_size): Added.
7784 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
7785 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
7786
ca439ad2 77872002-04-04 Jim Ingham <jingham@apple.com>
361d1df0 7788
ca439ad2
JI
7789 * valarith.c (find_size_for_pointer_math): New function, either returns
7790 the size for a pointer's target, returns 1 for void *, or errors for
7791 incomplete types.
7792 (value_add, value_sub): use find_size_for_pointer_math.
7793
2f2893d9
DJ
77942002-04-09 Daniel Jacobowitz <drow@mvista.com>
7795
7796 * linux-low.c (linux_look_up_symbols): New hook.
7797 (linux_target_ops): Add linux_look_up_symbols.
7798 * remote-utils.c (decode_address): New function.
7799 (look_up_one_symbol): New function.
7800 * server.c (handle_query): Call target look_up_symbols hook.
7801 * server.h (look_up_one_symbol): Add prototype.
7802 * target.h (struct target_ops): Add look_up_symbols hook.
7803
96cb11df
AC
78042002-04-09 Andrew Cagney <ac131313@redhat.com>
7805
7806 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
7807 override FP_REGNUM with frame->fp. Update copyright.
7808 * parse.c (num_std_regs, std_regs): Delete.
7809 (target_map_name_to_register): Do not search std_regs. Update
7810 function description.
7811 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
7812 declarations. Update copyright.
7813 Fix PR gdb/251.
361d1df0 7814
97658e92
DJ
78152002-04-09 Daniel Jacobowitz <drow@mvista.com>
7816
7817 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
7818 after the last symbol in a block.
7819
6044e3eb
PM
78202002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
7821
7822 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
7823 is non zero as a found symbol.
7824
0406ec40
AC
78252002-04-08 Andrew Cagney <ac131313@redhat.com>
7826
7827 * findvar.c: Include "builtin-regs.h".
7828 (value_of_register): Call value_of_builtin_reg when applicable.
7829 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
7830 (target_map_name_to_register): Call
7831 builtin_reg_map_name_to_regnum.
7832 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
7833 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
7834 (builtin_regs_h): Define.
7835 (builtin-regs.o): New target.
7836 (findvar.o): Add $(builtin_regs_h).
7837 * builtin-regs.c, builtin-regs.h: New files.
7838 * std-regs.c: New file.
7839 Partial fix for PR gdb/251.
7840
56a6dfb9
KB
78412002-04-08 Kevin Buettner <kevinb@redhat.com>
7842
7843 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
7844 it's no longer required.
7845
3a808432
AC
78462002-04-08 Andrew Cagney <ac131313@redhat.com>
7847
7848 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
7849
7c40d541
KB
78502002-04-08 Kevin Buettner <kevinb@redhat.com>
7851
7852 From Jimi X <jimix@watson.ibm.com>:
7853 * rs6000-tdep.c (rs6000_software_single_step): Use
7854 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
7855 and size. Use target_insert_breakpoint() and
7856 target_remove_breakpoint() to insert and remove breakpoints
7857 instead of explicit memory reads and writes.
7858
cc9836a8
KB
78592002-04-08 Kevin Buettner <kevinb@redhat.com>
7860
7861 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
7862 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
7863 ELF_OBJECT_FORMAT ifdef.
7864
7495d1dc
KB
78652002-04-08 Kevin Buettner <kevinb@redhat.com>
7866
7867 From Jimi X <jimix@watson.ibm.com>:
7868 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
7869
4288e836
KB
78702002-04-08 Kevin Buettner <kevinb@redhat.com>
7871
7872 From Jimi X <jimix@watson.ibm.com>:
7873 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
7874 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
7875
a4e4e501
MK
78762002-04-07 Mark Kettenis <kettenis@gnu.org>
7877
7878 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
7879 s/asprintf/xasprintf/.
7880 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
7881
006defba
AC
78822002-04-07 Andrew Cagney <ac131313@redhat.com>
7883
7884 I believe Jeff Law denies responsability for this one:
7885 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
7886 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
7887 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
7888 Work-around for PR gdb/366.
7889
7aa83cac
EZ
78902002-04-07 Elena Zannoni <ezannoni@redhat.com>
7891
7892 * remote-e7000.c (write_small, e7000_read_inferior_memory,
7893 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
7894 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
7895
cf1fcca1
EZ
78962002-04-07 Elena Zannoni <ezannoni@redhat.com>
7897
7898 * sh-tdep.c (sh_fp_frame_init_saved_regs,
7899 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
7900 information.
7901
3f289e6f
AC
79022002-04-07 Andrew Cagney <ac131313@redhat.com>
7903
7904 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
7905 maintainer.
7906
129188f6
AC
79072002-04-07 Andrew Cagney <ac131313@redhat.com>
7908
7909 * README (Reporting Bugs in GDB): Document the bug web page as the
7910 prefered way of submitting bugs.
7911 Fix PR gdb/402.
7912
1200cd6e
AC
79132002-04-06 Andrew Cagney <ac131313@redhat.com>
7914
7915 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
7916 -1. Update comment.
7917 * gdbarch.h, gdbarch.c: Re-generate.
7918
2853c33c
AS
79192002-04-07 Andreas Schwab <schwab@suse.de>
7920
7921 * m68klinux-nat.c (fill_fpregset): Properly pass address of
7922 buffer to regcache_collect.
7923
c2169756
AC
79242002-04-06 Andrew Cagney <ac131313@redhat.com>
7925
7926 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
7927 * gdbarch.c, gdbarch.h: Re-generate.
7928
25f1b008
AC
79292002-04-06 Andrew Cagney <ac131313@redhat.com>
7930
7931 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
7932 declaration. Fix -Werror.
7933
59263426
DJ
79342002-04-05 Daniel Jacobowitz <drow@mvista.com>
7935
7936 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
7937 * gdbarch.c: Regenerate.
7938
f5db4da3
MS
79392002-04-05 Michael Snyder <msnyder@redhat.com>
7940
80f8a6eb
MS
7941 * breakpoint.c (clear_command): Rewrite middle section to
7942 combine two loops with identical control conditions.
7943 Add a cleanup to eliminate a memory leak.
f5db4da3
MS
7944 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
7945
ad3dcc5c
L
79462002-04-05 H.J. Lu (hjl@gnu.org)
7947
7948 * solib-svr4.c (bkpt_names): Add "__start".
7949
f32e7a74
AC
79502002-04-04 Andrew Cagney <ac131313@redhat.com>
7951
7952 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
7953 as test for 64 bit target.
7954
8227c0ff
AC
79552002-04-05 Andrew Cagney <ac131313@redhat.com>
7956
7957 * h8500-tdep.c (h8500_write_fp): Delete function.
7958 * dwarf2cfi.c (cfi_write_fp): Document as not used.
7959 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
7960 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
7961 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
7962 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
7963 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
7964 (s390_write_fp):
7965 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
7966 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
7967 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
7968 (d10v_write_fp): Delete function.
7969 * inferior.h (write_fp, generic_target_write_fp): Delete
7970 declarations.
7971 * regcache.c (generic_target_write_fp): Delete function.
7972 (write_fp): Delete function.
7973 * gdbarch.sh (TARGET_WRITE_FP): Delete.
7974 * gdbarch.h, gdbarch.c: Regenerate.
7975 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
7976 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
7977 (sparc64_write_fp): Delete declaration.
7978 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
7979 (h8500_write_fp): Delete declaration.
7980
2757dd86
AC
79812002-04-04 Andrew Cagney <ac131313@redhat.com>
7982
7983 * sparc-tdep.c (sparc64_write_fp): Delete.
7984 (sparc_push_dummy_frame): Replace write_fp call with code to store
7985 the FP directly.
7986 (sparc_gdbarch_init): Do not initialize write_fp.
7987
c69255e1
KB
79882002-04-05 Kevin Buettner <kevinb@redhat.com>
7989
7990 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
7991 clause.
7992
ae767bfb
JB
79932002-03-29 Jim Blandy <jimb@redhat.com>
7994
7995 * stack.c (get_selected_block): Add new argument `addr_in_block',
7996 used to return the exact code address we used to select the block,
7997 not just the block.
7998 * blockframe.c (get_frame_block, get_current_block): Same.
7999 * frame.h (get_frame_block, get_current_block,
8000 get_selected_block): Update declarations.
8001 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
8002 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
8003
84d2ac95
MS
80042002-04-05 Michael Snyder <msnyder@redhat.com>
8005
8006 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
8007 warning message.
8008
596aa3bf
JB
80092002-04-05 J. Brobecker <brobecker@gnat.com>
8010
8011 * utils.c (xfullpath): New function.
8012 * defs.h (xfullpath): Add declaration.
8013 * source.c (openp): Use xfullpath in place of gdb_realpath to
8014 avoid resolving the basename part of filenames when the
8015 associated file is a symbolic link. This fixes a potential
8016 inconsistency between the filenames known to GDB and the
8017 filenames it prints in the annotations.
8018 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
8019 to be able to match a filename with either the real filename, or
8020 the name of any symbolic link to this file.
8021 (lookup_partial_symtab): Ditto.
8022
c02f5703
MS
80232002-04-04 Michael Snyder <msnyder@redhat.com>
8024
8025 * breakpoint.c: Add support for hardware breakpoints in overlays.
8026 (overlay_events_enabled): New state variable.
8027 (insert_breakpoints): Use overlay_events_enabled to decide
8028 whether to attempt to set a breakpoint at the overlay load addr.
8029 Handle bp_hardware_breakpoint as well as bp_breakpoint.
8030 (remove_breakpoint): Use overlay_events_enabled to decide
8031 whether breakpoints need to be removed from overlay load addr.
8032 Handle bp_hardware_breakpoint as well as bp_breakpoint.
8033 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
361d1df0 8034 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
c02f5703
MS
8035 disable_overlay_breakpoints): Update overlay_events_enabled.
8036
5fb290d7
DJ
80372002-04-04 Daniel Jacobowitz <drow@mvista.com>
8038
8039 * dwarf2read.c (struct function_range): New.
8040 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
8041 (check_cu_functions): New.
8042 (read_file_scope): Initialize global function lists.
8043 Call dwarf_decode_line after processing children.
8044 (read_func_scope): Add to global function list.
8045 (dwarf_decode_lines): Call check_cu_functions everywhere
8046 record_line is called. Call record_line with a linenumber
8047 of 0 to mark sequence ends.
8048
7b3fabf0
ML
80492002-04-04 Michal Ludvig <mludvig@suse.cz>
8050
361d1df0 8051 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
7b3fabf0
ML
8052 change sync with glibc.
8053
bce58c09
JB
80542002-04-03 Jim Blandy <jimb@redhat.com>
8055
8056 * configure.in: Call AC_C_INLINE.
8057 * configure: Regenerated.
361d1df0 8058
2fccf04a
DJ
80592002-04-01 Daniel Jacobowitz <drow@mvista.com>
8060
8061 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
8062 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
8063
2d1bfe2e
MK
80642002-03-31 Mark Kettenis <kettenis@gnu.org>
8065
a5941fbf
MK
8066 * NEWS: Mention gcore support on FreeBSD/i386.
8067
a90cd31d
MK
8068 * fbsd-proc.c: New file.
8069 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
8070 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
8071
2d1bfe2e
MK
8072 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
8073 while statement.
8074
9eb6e5a1
JB
80752002-03-29 Jim Blandy <jimb@redhat.com>
8076
8077 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
8078 unescaped newlines in string literals, but newer ones don't. So
8079 escape them.
8080
f02df580
MS
80812002-03-26 Michael Snyder <msnyder@redhat.com>
8082 Andrew Cagney <cagney@redhat.com>
8083
361d1df0 8084 * cli/cli-dump.c: New file. Dump memory to file,
f02df580
MS
8085 restore file to memory.
8086 * cli/cli-dump.h: New file.
8087 * Makefile.in: Add rules, dependencies for cli-dump.o.
89743e04 8088 * NEWS: Mention new commands.
f02df580 8089
109f874e
MS
80902002-03-28 Michael Snyder <msnyder@redhat.com>
8091
8092 * symfile.c (symbol_file_add): Move test for null symbols to later.
8093
520f6ade
AC
80942002-03-27 Andrew Cagney <ac131313@redhat.com>
8095
8096 From veksler at il.ibm.com:
8097 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
8098 the xstrduped original path.
8099 Fix PR gdb/417.
8100
d4654627
MS
81012002-03-27 Michael Snyder <msnyder@redhat.com>
8102
8103 * breakpoint.c (_initialize_breakpoint): Clean up help string.
8104 * infcmd.c (_initialize_infcmd): Ditto.
8105 * language.c (_initialize_language): Ditto.
8106 * symfile.c (_initialize_symfile): Ditto.
8107 * top.c (_init_main): Ditto.
8108 * cli/cli-cmds.c (init_cli_cmds): Ditto.
8109
6be8bc0c
EZ
81102002-03-27 Elena Zannoni <ezannoni@redhat.com>
8111
8112 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
8113 vector registers handling.
8114 (skip_prologue): Handle new AltiVec instructions. Fill in new
8115 fields of frame data.
8116 (frame_get_saved_regs): Fill in information for AltiVec registers.
8117
12af6855
JB
81182002-03-27 Jim Blandy <jimb@redhat.com>
8119
8120 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
8121 a function; leave this macro here to invoke that function.
8122 (symbol_init_mangled_name): Declaration for that function.
8123 * symtab.c (symbol_init_mangled_name): New function.
8124
dc672865
AC
81252002-03-27 Andrew Cagney <ac131313@redhat.com>
8126
8127 * valarith.c: Replace strerror with safe_strerror.
8128 * tracepoint.c: Ditto.
8129 * lin-lwp.c: Ditto.
8130 * go32-nat.c: Ditto.
8131 * inflow.c: Ditto.
8132 * gnu-nat.c: Ditto.
8133
d96429cd
AS
81342002-03-27 Andreas Schwab <schwab@suse.de>
8135
8136 * event-top.c (command_line_handler): Remove useless if.
8137
7e336ba1
AJ
81382002-03-27 Andreas Jaeger <aj@suse.de>
8139
8140 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
8141 comment.
8142
de220d0f
ML
81432002-03-27 Michal Ludvig <mludvig@suse.cz>
8144
8145 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
8146 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
8147 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
8148 (x86_64_linux_dr_get_status, supply_gregset),
8149 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
8150 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
8151 (x86_64_register_info_table): Add.
8152 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
8153 (x86_64_register_raw_size, x86_64_register_virtual_type),
8154 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
8155 general x86_64_register_info_table.
8156 (i386_gdbarch_init): gdbarch_register_bytes is now set
8157 dynamicaly during initialization.
8158 * regformats/reg-x86-64.dat: Synced with changes to registers above.
8159 * gdbserver/linux-x86-64-low.c: Ditto.
7e336ba1 8160
0e98d0a7
DJ
81612002-03-27 Daniel Jacobowitz <drow@mvista.com>
8162
8163 * gdbserver/server.c (main): Call target_signal_to_host_p
8164 and target_signal_to_host on signals received from the remote.
8165 * gdbserver/remote-utils.c (prepare_resume_reply): Call
8166 target_signal_from_host on signals sent to the remote.
8167 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
8168 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
8169
3130066b
DJ
81702002-03-27 Daniel Jacobowitz <drow@mvista.com>
8171
8172 * signals/signals.c: Include "server.h" in gdbserver build.
8173 (target_signal_from_name): Don't use STREQ.
8174 (_initialize_signals): Likewise. Don't include function in
8175 gdbserver build.
8176
9aedf4f4
DJ
81772002-03-27 Daniel Jacobowitz <drow@mvista.com>
8178
8179 * signals.c: Moved to...
8180 * signals/signals.c: Here.
7e336ba1 8181 * Makefile (signals.o): Update.
9aedf4f4 8182
3fa41cdb
JL
81832002-03-26 Jeff Law (law@redhat.com)
8184
8185 * somread.c (som_symtab_read): Remove some commented out code and
8186 updated related comments. Do not set the minimal symbol table to
8187 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
8188 in a dynamic executable.
8189 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
8190 where we are unable to find the minimal symbol for the given
8191 PC value.
8192
ee677e8d
MS
81932002-03-25 Jeff Law (law@redhat.com)
8194
8195 * linux-proc.c (read_mapping): Scan up to end of line for filename.
8196
e76e1718
ML
81972002-03-25 Michal Ludvig <mludvig@suse.cz>
8198
8199 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
8200
18a642a1
AC
82012002-03-23 Andrew Cagney <ac131313@redhat.com>
8202
8203 * command.h: Update copyright.
8204 (struct cmd_list_element): Replace definition with opaque
8205 declaration.
8206 (enum cmd_types): Document that it will eventually be moved to
8207 cli/cli-decode.h
8208 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
8209 (MALLOCED_REPLACEMENT): Delete macro.
8210 * Makefile.in (cli_decode_h): Add $(command_h).
8211 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
7e336ba1 8212 * top.c: Include "cli/cli-decode.h".
18a642a1
AC
8213 * completer.c: Include "cli/cli-decode.h".
8214 * maint.c: Include "cli/cli-decode.h".
8215 * cli/cli-decode.h: Include "command.h".
8216 (enum command_class): Delete.
8217 (enum cmd_types): Comment out.
8218 (enum cmd_auto_boolean): Delete.
8219 (enum var_types): Delete.
8220
b2875cc0
AC
82212002-03-23 Andrew Cagney <ac131313@redhat.com>
8222
8223 * cli/cli-decode.c: Include "gdb_assert.h".
8224 (add_set_or_show_cmd): New static function.
8225 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
8226 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
8227 all fields, such as func, from the set command.
8228
3b45974e
AC
82292002-03-23 Andrew Cagney <ac131313@redhat.com>
8230
8231 * MAINTAINERS (sh-elf): Change warning flag to -w.
8232
823ca731
AC
82332002-03-23 Andrew Cagney <cagney@redhat.com>
8234
8235 * defs.h (error): Add printf format attribute.
8236 * thread-db.c (thread_from_lwp): Fix error format string.
8237 * stack.c (parse_frame_specification): Ditto.
8238 * cli/cli-decode.c (undef_cmd_error): Ditto.
8239 * scm-lang.c (scm_lookup_name): Ditto.
8240 * tracepoint.c (trace_error): Ditto.
8241 * remote-utils.c (usage): Ditto.
8242 * remote.c (compare_sections_command): Ditto.
8243 Fix PR gdb/328.
8244
0e101458
AC
82452002-03-22 Andrew Cagney <ac131313@redhat.com>
8246
8247 * gdbtypes.c (append_composite_type_field): New function.
8248 (init_composite_type): New function.
8249 * gdbtypes.h (append_composite_type_field): Declare.
8250 (init_composite_type): Ditto.
8251
8e0662df
EZ
82522002-03-22 Elena Zannoni <ezannoni@redhat.com>
8253
8254 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
7e336ba1 8255 function.
8e0662df
EZ
8256 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
8257 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
8258 structure returning convention for SYSV ABI case, but not
8259 for GNU/Linux, FreeBSD, or NetBSD.
8260
3121eff0
DJ
82612002-03-22 Daniel Jacobowitz <drow@mvista.com>
8262
8263 * symtab.h (lookup_block_symbol): Add mangled_name argument
8264 to prototype.
8265
8266 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
8267 with new mangled_name argument.
8268 * linespec.c (decode_line_1): Likewise.
8269 * valops (value_of_this): Likewise.
8270 * symtab.c (lookup_transparent_type): Likewise.
8271 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
8272 (lookup_symbol): If we are given a mangled name, pass it down
8273 to lookup_symbol_aux.
8274 (lookup_block_symbol): If we are given a mangled name to check
8275 against, only return symbols which match it.
8276
349b409f
CF
82772002-03-22 Christopher Faylor <cgf@redhat.com>
8278
8279 * win32-nat.c (child_create_inferior): Check for proper shell to use
8280 here, in case the user changes it on the fly.
8281 (_initialize_inftarg): Remove shell path considerations.
8282
2a873819
EZ
82832002-03-21 Elena Zannoni <ezannoni@redhat.com>
8284
8285 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
8286 for gdbarch_max_register_raw_size and max_register_virtual_size.
8287 Adjust copyright year.
8288
a1b9830c
DJ
82892002-03-21 Daniel Jacobowitz <drow@mvista.com>
8290
8291 * dbxread.c (process_one_symbol): Extend the first N_SLINE
8292 in a function to cover the entire beginning of the function
8293 as well if it does not already.
8294
8b5790f2
TR
82952002-03-21 Tom Rix <trix@redhat.com>
8296
8297 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
8298 (rs6000_ptrace64): Renamed from ptrace64.
8299
bdbe5747
MH
83002002-03-20 Martin M. Hunt <hunt@redhat.com>
8301
8302 * gdbserver/remote-utils.c (remote_open): Don't call
8303 getprotobyname, we're all using TCP here so just use
8304 IPPROTO_TCP.
7e336ba1 8305 * gdbserver/gdbreplay.c (remote_open): Ditto.
bdbe5747
MH
8306
83072002-03-20 Martin M. Hunt <hunt@redhat.com>
7e336ba1 8308
bdbe5747
MH
8309 * regcache.c (_initialize_regcache): No need to call
8310 build_regcache() at this time; it gets called whenever
8311 the gdbarch changes.
8312
7781cd62
DB
83132002-03-20 David O'Brien <obrien@FreeBSD.org>
8314
8315 * sparc-nat.c: Include sys/param.h where possible.
8316
f65ca430
DJ
83172002-03-20 Daniel Jacobowitz <drow@mvista.com>
8318
8319 Fix PR gdb/422.
8320 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
8321 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
8322 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
8323 complex types.
8324 * stabsread.c (rs6000_builtin_type): Likewise.
8325 (read_sun_floating_type): Likewise.
8326
0c867556
PS
83272002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8328
8329 * stabsread.c (read_member_functions): Remove skip code for duplicate
8330 constructor/destructor methods. Use standard parsing for these
8331 methods and just do not chain them to the list of methods after
8332 parsing.
8333
12b9c64f
AO
83342002-03-19 Alexandre Oliva <aoliva@redhat.com>
8335
8336 * coffread.c: Remove redundant static declarations. Replace
8337 occurrences of `PTR' with `void *'.
8338 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
8339 * top.h (quit_cover): Likewise.
8340 * defs.h (catch_errors): Likewise.
8341
349c5d5f
AC
83422002-03-18 Andrew Cagney <ac131313@redhat.com>
8343
8344 * defs.h (XMALLOC): Define.
8345 * gdb-events.sh (XMALLOC): Delete macro.
8346 * gdb-events.c, gdb-events.h: Regenerate.
8347 * gdbarch.sh (XMALLOC): Delete macro.
8348 * gdbarch.c: Regenerate.
8349 * serial.c (XMALLOC): Delete macro.
8350 * ui-file.c (XMALLOC): Ditto.
8351 * ser-unix.h (XMALLOC): Ditto.
8352 * sh-tdep.c (XMALLOC): Ditto.
8353 * ui-out.c (XMALLOC): Ditto.
8354 * utils.c (XMALLOC): Ditto.
8355 * i386-tdep.c (XMALLOC): Ditto.
8356 * gdb-events.c (XMALLOC): Ditto.
8357 * d10v-tdep.c (XMALLOC): Ditto.
8358 * cli-out.c (XMALLOC): Ditto.
8359
8360 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
8361 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
8362 * ui-file.c, ui-out.c: Ditto.
8363
7d0766f3
AC
83642002-03-18 Andrew Cagney <ac131313@redhat.com>
8365
8366 * command.h (struct cmd_list_element): Add field context.
8367 (set_cmd_context, get_cmd_context): Declare.
8368 * cli/cli-decode.h: Ditto.
8369 * cli/cli-decode.c (get_cmd_context): New function.
8370 (set_cmd_context): New function.
8371 (add_cmd): Initialize context.
8372 Part of fixing PR gdb/145 and PR gdb/146.
8373
5913bcb0
AC
83742002-03-17 Andrew Cagney <ac131313@redhat.com>
8375
1868c04e
AC
8376 * cli/cli-decode.c (cmd_type): New function.
8377 * command.h (cmd_type): Declare.
8378 * infrun.c (set_schedlock_func): Call function cmd_type.
8379 * kod.c (kod_set_os): Call cmd_type.
8380 * cris-tdep.c (cris_version_update): Use function cmd_type.
8381 (cris_mode_update, cris_abi_update): Ditto.
8382
5913bcb0
AC
8383 * command.h: (execute_cmd_post_hook): Declare.
8384 (execute_cmd_pre_hook): Declare.
8385 * cli/cli-script.c (clear_hook_in_cleanup): New function.
8386 (execute_cmd_post_hook, execute_cmd_pre_hook): New
8387 functions. Execute pre/post hook while ensuring that afterwords
8388 hook_in is cleared.
8389 * top.c (execute_command): Use execute_cmd_post_hook, and
8390 execute_cmd_pre_hook to execute pre/post commands.
8391 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
8392 hook_stop_stub.
8393 (hook_stop_stub): Call execute_cmd_pre_hook.
8394
b51450c9
AC
83952002-03-17 Andrew Cagney <ac131313@redhat.com>
8396
8397 * kod.c (kod_set_os): Revert previous change. Is called by ``info
8398 set'' and this leads to a core dump. Move xstrdup of
8399 operating_system to after check that it is not NULL.
8400
f66c9f11
AC
84012002-03-17 Andrew Cagney <ac131313@redhat.com>
8402
8e694ecf
AC
8403 * kod.c (kod_set_os): Remove unnecessary check that
8404 ``command->type'' is set_cmd.
8405
f66c9f11
AC
8406 * valprint.c (set_input_radix): Use input_radix.
8407 (set_output_radix): Use output_radix.
8408 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
8409 isn't reverted.
8410
9d01611c
AC
84112002-03-16 Andrew Cagney <ac131313@redhat.com>
8412
8413 * value.h (struct value): Delete field ``substring_addr''. Change
8414 aligner fields to force_doublest_align, force_longest_align,
ee2d3b3a
AC
8415 force_core_addr_align and force_pointer_aligh.
8416
8417 * value.h (struct value): Fix typo in above change.
9d01611c 8418
4156bb53
PS
84192002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8420
8421 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
8422 to fix internal_error from ``maintenance print architecture''.
8423
0e5e3ea6
PS
84242002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8425
8426 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
8427 for gcc versions after gcc-2.8.1.
8428
9b013045
PS
84292002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8430
8431 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
8432 for method resolution. Restore adjustment of ``this'' pointer after
8433 calling value_struct_elt, which was accidentally removed during the
8434 HP merge.
8435
376c9600
AC
84362002-03-15 Andrew Cagney <ac131313@redhat.com>
8437
8438 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
8439 value_of_register.
8440 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
8441 get_saved_register.
8442 * value.h (value_of_register): Update.
8443
a4db0f07
RH
84442002-03-14 Richard Henderson <rth@redhat.com>
8445
8446 * configure.in: Detect declaration for canonicalize_file_name.
8447 * utils.c (canonicalize_file_name): Declare, if needed.
8448 (gdb_realpath): Prefer realpath if available and usable.
8449 * config.in, configure: Rebuild.
8450
96383835
RH
84512002-03-14 Richard Henderson <rth@redhat.com>
8452
8453 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
8454 a constant array bound.
8455
8456 * MAINTAINERS: Add myself to write-after-approval.
8457
75245b24
MS
84582002-03-14 Michael Snyder <msnyder@redhat.com>
8459
8460 * symfile.c (syms_from_objfile): Return immediately if no syms.
8461 (symbol_file_add): Return immediately if no syms.
8462 (find_sym_fns): Return immediately if no syms.
8463
e641a1ca
ML
84642002-03-13 Michal Ludvig <mludvig@suse.cz>
8465
8466 * gdbserver/remote-util.c (remote_open): Print remote-side's
8467 IP address when remote debugging over the network.
7e336ba1 8468
df08bfec
DB
84692002-03-12 David O'Brien <obrien@FreeBSD.org>
8470
8471 * config/sparc/fbsd.mh: Fix copyright.
8472 * config/sparc/fbsd.mt: Likewise.
8473
9a57864f
RE
84742002-03-11 Richard Earnshaw <rearnsha@arm.com>
8475
8476 * MAINTAINERS: Fix typo in name of gdb warnings option.
8477 (x86-64): Fix formating so that this can be parsed by awk.
8478
dd7bf85e
DJ
84792002-03-10 Daniel Jacobowitz <drow@mvista.com>
8480
8481 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
8482 * defs.h: Include "gdb/signals.h".
8483 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
8484
33a0a2ac
ML
84852002-03-10 Michal Ludvig <mludvig@suse.cz>
8486
8487 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
7e336ba1 8488 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
33a0a2ac
ML
8489 from x86-64-tdep.h
8490
dd824b04
DJ
84912002-03-10 Daniel Jacobowitz <drow@mvista.com>
8492 Don Howard <dhoward@redhat.com>
8493
8494 * mips-tdep.c (ST0_FR): Define.
8495 (mips2_fp_compat): New function, temporarily disabled.
8496 (mips_read_fp_register_single): New function.
8497 (mips_read_fp_register_double): New function.
8498 (mips_print_register): Use them.
8499 (do_fp_register_row): Likewise.
8500
6a41ff59
AC
85012002-03-09 Andrew Cagney <ac131313@redhat.com>
8502
8503 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
8504 approval''.
8505
4ea09c10
PS
85062002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8507
8508 * stabsread.c (read_member_functions): Fix is_stub test for
8509 static member functions, improve comment.
8510
6ccc741d
RE
85112002-03-07 Richard Earnshaw <rearnsha@arm.com>
8512
8513 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
8514 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
8515 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
8516 commands that set boolean values.
8517 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
8518 (arm_rdi_resume): Always initialize PC.
8519 (arm_rdi_open): Don't use rslt as a boolean.
8520 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
8521 (arm_rdi_fetch_registers, arm_rdi_store_registers)
8522 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
8523 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
8524
438013df
AO
85252002-03-06 Alexandre Oliva <aoliva@redhat.com>
8526
8527 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
8528 * configure: Rebuilt.
8529
70ed8774
SC
85302002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
8531
8532 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
8533 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
8534
5ba2abeb
AC
85352002-03-06 Andrew Cagney <ac131313@redhat.com>
8536
8537 * cli/cli-decode.c (set_cmd_completer): New function.
8538 * command.h (set_cmd_completer): Declare.
8539 * cli/cli-decode.h (set_cmd_completer): Ditto.
8540
8541 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
8542 * cli/cli-cmds.c (init_cli_cmds): Ditto.
8543 * win32-nat.c (_initialize_inftarg): Ditto.
8544 * remote-rdi.c (_initialize_remote_rdi): Ditto.
8545 * proc-api.c (_initialize_proc_api): Ditto.
8546 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
8547 * source.c (_initialize_source): Ditto.
8548 * exec.c (_initialize_exec): Ditto.
8549 * solib.c (_initialize_solib): Ditto.
8550 * top.c (init_main): Ditto.
8551 * tracepoint.c (_initialize_tracepoint): Ditto.
8552 * symfile.c (_initialize_symfile): Ditto.
8553 * printcmd.c (_initialize_printcmd): Ditto.
8554 * infcmd.c (_initialize_infcmd): Ditto.
8555 * corefile.c (_initialize_core): Ditto.
8556
f779ca99
AC
85572002-03-05 Andrew Cagney <ac131313@redhat.com>
8558
8559 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
8560
01a3934b
AC
85612002-03-05 Andrew Cagney <ac131313@redhat.com>
8562
8563 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
8564
37057839
AC
85652002-03-05 Andrew Cagney <ac131313@redhat.com>
8566
8567 * NEWS: Update headings, 5.2 has branched.
8568
c6ecbae5
DJ
85692002-03-04 Daniel Jacobowitz <drow@mvista.com>
8570
8571 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
8572 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
8573 (register_addr, REGISTER_RAW_SIZE): Likewise.
8574 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
8575 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
8576
e9f30c21
ML
85772002-03-03 Michal Ludvig <mludvig@suse.cz>
8578
8579 * MAINTAINERS (x86-64): Add myself.
8580 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
8581 changed value_ptr -> struct value *
8582
54394ac3
DB
85832002-03-01 David O'Brien <obrien@FreeBSD.org>
8584
8585 * configure.host (sparc64-*-freebsd): Add.
8586 * configure.tgt: Likewise.
8587 * config/sparc/fbsd.mh: New file.
8588 * config/sparc/fbsd.mt: Likewise.
8589 * config/sparc/nm-fbsd.h: Likewise.
8590 * config/sparc/tm-fbsd.h: Likewise.
8591
bfe95955
DJ
85922002-03-01 Daniel Jacobowitz <drow@mvista.com>
8593
8594 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
8595 regformats/reg-s390x.dat.
8596
f33c6cbf
AC
85972002-03-01 Andrew Cagney <ac131313@redhat.com>
8598
8599 * utils.c: Add FIXME explaining true/false problem.
8600
5ecaa7dd
AC
86012002-02-28 Andrew Cagney <ac131313@redhat.com>
8602
8603 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
8604
2a251cc2
MC
86052002-02-28 Michael Chastain <mec@shout.net>
8606
8607 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
8608
6a8031a3 86092002-02-28 Daniel Jacobowitz <drow@mvista.com>
265f716b
DJ
8610
8611 * gdbserver/linux-s390-low.c: New file.
8612 * regformats/reg-s390.dat: New file.
8613 * regformats/reg-s390x.dat: New file.
8614 * gdbserver/configure.srv: Add S/390.
8615 * gdbserver/Makefile.in: Add S/390.
8616 * configure.tgt: Enable gdbserver for S/390.
8617
ac469903
EZ
86182002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
8619
8620 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
8621 first line of the doc string for "info dos", except at the end of
8622 the sentence, since the short help stops at the first period.
8623
985cb1a3
JM
86242002-02-28 Jason Merrill <jason@redhat.com>
8625
8626 * dwarf2read.c (dwarf_cfi_name): Add new codes.
8627
c570663e
FF
86282002-02-27 Fred Fish <fnf@redhat.com>
8629
8630 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
8631 comment (dumy -> dummy).
8632
43630227
PS
86332002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8634
8635 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
8636
b84911e8
RB
86372002-02-27 Rodney Brown <rbrown64@csc.com.au>
8638
8639 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
8640
58caa3dc
DJ
86412002-02-27 Daniel Jacobowitz <drow@mvista.com>
8642
8643 * gdbserver/acconfig.h: New file.
8644 * gdbserver/i387-fp.c: New file.
8645 * gdbserver/i387-fp.h: New file.
8646 * gdbserver/linux-x86-64.c: New file.
8647 * regformats/reg-x86-64.dat: New file.
8648 * configure.tgt: Add x86_64-*-linux* gdbserver support.
8649 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
8650 * gdbserver/configure.in: Add support for regsets.
8651 * gdbserver/config.in: Regenerate.
8652 * gdbserver/configure: Regenerate.
8653 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
8654 * gdbserver/linux-low.h: New file.
8655 * gdbserver/linux-low.c: Include "linux-low.h". Add support
8656 for regsets.
8657 * gdbserver/linux-arm-low.c: Include "linux-low.h".
8658 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
8659 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
8660 * gdbserver/linux-mips-low.c: Include "linux-low.h".
8661 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
8662 * gdbserver/linux-sh-low.c: Include "linux-low.h".
8663 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
8664 "i387-fp.h". Add PTRACE_GETREGS and friends.
8665 * gdbserver/regcache.c (supply_register): New function.
8666 (supply_register_by_name): New function.
8667 (collect_register): New function.
8668 (collect_register_by_name): New function.
8669
93652174
DJ
86702002-02-27 Daniel Jacobowitz <drow@mvista.com>
8671
8672 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
8673 (config.status): Add configure.srv dependency.
8674 (server_h): Add config.h dependency.
8675
a02e4a61
DJ
86762002-02-27 Daniel Jacobowitz <drow@mvista.com>
8677
8678 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
8679 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
8680 * gdbserver/configure.srv: Change i386-*-linux* to use
8681 reg-i386-linux.o.
8682
ce0eebec
AC
86832002-02-26 Andrew Cagney <ac131313@redhat.com>
8684
8685 * x86-64-tdep.c: Re-indent. Update copyright date.
8686
82dbc5f7
AC
86872002-02-26 Andrew Cagney <ac131313@redhat.com>
8688
8689 From Michal Ludvig <mludvig@suse.cz>:
8690 * x86-64-tdep.c (value.h): Delete.
8691 (gdb_assert.h): Include.
8692 (x86_64_register_convert_to_virtual,
8693 x86_64_register_convert_to_raw ): Add check which lets only
8694 floating-point values to be converted.
8695 (value_push): Delete.
8696 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
8697 (i386_gdbarch_init): Number of register_bytes fixed.
8698
e4621584
AC
86992002-02-26 Andrew Cagney <ac131313@redhat.com>
8700
8701 * MAINTAINERS: Add x86-64 target.
8702
81a9a963
AC
87032002-02-26 Andrew Cagney <ac131313@redhat.com>
8704
8705 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
8706 * osfsolib.c (solib_map_sections): Ditto.
8707 * irix5-nat.c (solib_map_sections): Ditto.
8708 * corelow.c (gdb_check_format): Ditto.
8709 * symfile.c (symfile_bfd_open): Ditto.
8710 * solib.c (solib_map_sections): Ditto.
8711 Fix PR gdb/354.
7e336ba1 8712
0f017ab9
AC
87132002-02-26 Andrew Cagney <ac131313@redhat.com>
8714
8715 * remote.c (_initialize_remote): By default, disable ``e'' and
8716 ``E'' step out-of-range packets.
8717
75738c29
AS
87182002-02-26 Andreas Schwab <schwab@suse.de>
8719
8720 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
8721 m68k_linux_frame_saved_pc.
8722 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
8723 in_sigtramp.
8724 (SIGCONTEXT_PC_OFFSET): Remove.
8725 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
8726 m68k_linux_sigtramp_saved_pc): New functions.
8727 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
8728 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
8729 (UCONTEXT_PC_OFFSET): Define.
8730 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
8731 non-RT and RT signal trampolines.
8732
7e8ed687
RE
87332002-02-26 Richard Earnshaw <rearnsha@arm.com>
8734
8735 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
8736 (TARGET_NBPG, STACK_END_ADDR): Delete
8737 (VARIABLES_INSIDE_BLOCK): Delete.
8738
6972bc8b
AC
87392002-02-25 Andrew Cagney <ac131313@redhat.com>
8740
8741 * utils.c (perror_with_name): Make string parameter constant.
8742 (print_sys_errmsg): Ditto.
8743 (query): Ditto.
8744 * defs.h (perror_with_name): Update.
8745 (print_sys_errmsg): Update.
8746 (query): Update.
8747
aa32f823
DJ
87482002-02-25 Daniel Jacobowitz <drow@mvista.com>
8749
8750 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
8751 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
8752
19caaa45
PS
87532002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8754
8755 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
8756 if it already matches the current architecture from the exec file.
8757 Include arch-utils.h for gdbarch_info_init prototype.
8758 * Makefile.in (rs6000-nat.o): Update dependencies.
8759
d951901f
EZ
87602002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
8761
8762 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
8763 list of exported variables.
8764
7ea81414
DJ
87652002-02-24 Daniel Jacobowitz <drow@mvista.com>
8766
8767 * gdbserver/configure.srv: New file.
8768 * gdbserver/configure.in: Use configure.srv instead
8769 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
8770 from it.
8771 * gdbserver/configure: Regenerated.
8772 * gdbserver/terminal.h: New file.
8773 * gdbserver/Makefile.in: Update for configure changes. Remove
8774 more unneeded include paths.
8775
080fe24b
AC
87762002-02-24 Andrew Cagney <ac131313@redhat.com>
8777
8778 From wiz at danbala:
8779 * config/sparc/tm-sp64.h: Fix grammar and typos.
8780 Fix PR gdb/287.
8781
8605d56e
AC
87822002-02-24 Andrew Cagney <ac131313@redhat.com>
8783
8784 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
a4b6fc86
AC
8785 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
8786 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
8787 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
ca557f44
AC
8788 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
8789 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
8790 * s390-tdep.c: Ditto.
92362027
AC
8791 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
8792 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
8793 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
8794 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
8795 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
8796 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
8797 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
8798 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
8799 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
8800 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
8605d56e 8801 Fix PR gdb/378.
7e336ba1 8802
8ed32cc0
AC
88032002-02-23 Andrew Cagney <ac131313@redhat.com>
8804
a3007b6f
AC
8805 * lin-thread.c: Delete file.
8806 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
8807 to gdb_proc_service.h.
8808 * configure: Re-generate.
8809
50a9e2f1
AC
8810 * ocd.c (ocd_open): Do not try to open the "ocd" device.
8811 * serial.c (serial_open): Delete check for "ocd".
8812 Fix PR gdb/349.
8813
8b6e7932
AC
8814 * Makefile.in (linux-thread.o): Delete target.
8815 * linux-thread.c: Delete file.
8816
d155c46b
AC
8817 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
8818 renamed SH files to be consistent.
8819
8ed32cc0
AC
8820 * symtab.c (sort_search_symbols): Use xfree.
8821
0e18d038
RE
88222002-02-23 Richard Earnshaw <rearnsha@arm.com>
8823
8824 * arm-linux-tdep.c (arm_linux_init_abi): Register
8825 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
8826 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
8827 definition with undef, since we don't want the sysvr4 definition.
8828 (SKIP_TRAMPOLINE_CODE): Likewise.
8829
27aac7ff
AC
88302002-02-23 Andrew Cagney <ac131313@redhat.com>
8831
8832 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
8833
8834 * configure.in: (AC_CHECK_FUNCS) Added test for
8835 canonicalize_file_name Regenerated.
8836 * config.in, configure: Regenerated.
8837 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
8838 defined use canonicalize_file_name.
7e336ba1 8839
65a6e0ee
MC
88402002-02-23 Michael Chastain <mec@shout.net>
8841
8842 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
8843
47b95330
AC
88442002-02-23 Andrew Cagney <ac131313@redhat.com>
8845
8846 * README: Remove references to cygnus.com.
8847 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
8848 dot com'' form. Remove references to cygnus.com and sourceware.
8849
696f451b
AC
88502002-02-23 Andrew Cagney <ac131313@redhat.com>
8851
8852 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
8853 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
8854 1003.1-2001 no longer allows "head -1".
8855 * gdb/Makefile.in (version.c): Likewise.
8856 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
8857 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
8858 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
8859
bbaca940
AC
88602002-02-23 Andrew Cagney <ac131313@redhat.com>
8861
8862 * cli/cli-decode.c (cmd_cfunc_eq): New function.
8863 * command.h (cmd_cfunc_eq): Declare.
8864 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
8865
8866 * cli/cli-cmds.h (is_complete_command): Change parameter to a
8867 ``struct cmd_list_element *''.
8868 * cli/cli-cmds.c (is_complete_command): Update. Use
8869 cmd_cfunc_eq.
8870 * top.c (execute_command): Pass the command to
8871 is_complete_command.
8872 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
8873
b8b8b047
AC
88742002-02-23 Andrew Cagney <ac131313@redhat.com>
8875
8876 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
8877 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
8878 architecture defines.
8879 * s390-tdep.c (s390_gdbarch_init): Likewise.
8880
19d3fc80
RE
88812002-02-23 Richard Earnshaw <rearnsha@arm.com>
8882
8883 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
8884 (arm_linux_push_arguments): Likewise.
8885 (arm_linux_init_abi): Register them. Also register linux-specific
8886 call_dummy_words.
8887 (find_minsym_and_objfile): Use strcmp, not STREQ.
8888 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
8889 (arm_linux_call_dummy_words): Delete declaration.
8890 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
8891 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
8892 declarations.
8893 (LOWEST_PC): Delete.
8894
3ab13650
PS
88952002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8896
8897 * maint.c (print_section_info): Do not prepend `0x' to filepos
8898 output, it will be handled by local_hex_string_custom.
8899
19d3fc80 89002002-02-23 Richard Earnshaw <rearnsha@arm.com>
85ae890c
RE
8901
8902 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
8903 (store_newfpe_double, store_newfpe_extended, store_fpregister)
8904 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
8905
d85a5daf
JB
89062002-02-22 Jim Blandy <jimb@redhat.com>
8907
8908 Indicate that the bcache functions don't change the strings
8909 they're passed.
8910 * bcache.h (bcache, hash): Add `const' keywords to declarations.
8911 * bcache.c (bcache, hash): Add `const' keywords to definitions.
8912
eeb25b8a
PM
89132002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
8914
8915 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
8916
6badb179
CF
89172002-02-21 Christopher Faylor <cgf@redhat.com>
8918
8919 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
8920 find the complete path to a loaded DLL.
8921
e8717518
FF
89222002-02-21 Fred Fish <fnf@redhat.com>
8923
8924 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
8925 that marks the end of the range of a function, enter a line number
8926 entry that has a line number of zero and a PC offset that matches
8927 the end of the function. This starts a range of PC's for which no
8928 line number information is known.
8929 * symtab.c (find_pc_sect_line): If our best fit is in a range of
8930 PC's for which no line number info is found (line number is zero)
8931 then we didn't find any valid line information.
8932 * symtab.h: Document use of zero line number entry.
8933
9abe5450
EZ
89342002-02-21 Elena Zannoni <ezannoni@redhat.com>
8935
8936 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
8937 (have_ptrace_getvrregs): Define for run time checks.
8938 (gdb_vrregset_t): New type for Altivec register handling.
8939 (fetch_register, store_register): Fetch/store altivec register
8940 when needed.
8941 (fetch_altivec_register, store_altivec_register): New functions.
8942 (supply_vrregset, fill_vrregset): New functions.
8943 (fetch_altivec_registers, store_altivec_registers): New functions.
8944 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
8945 registers as well.
8946
aaa38bb5
AJ
89472002-02-21 Jiri Smid <smid@suse.cz>
8948
8949 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
8950
b34db576
RE
89512002-02-21 Richard Earnshaw <rearnsha@arm.com>
8952
8953 * Makefile.in (armnbsd-nat.o): Update dependencies.
8954 * armnbsd-nat.c (supply_gregset): New function. Common code to
8955 supply the integer register set.
8956 (supply_fparegset): New function. Similar for FPA registers.
8957 (fetch_regs, fetch_fp_regs): Use them.
8958 (fetch_core_registers): Likewise.
8959 (fetch_elfcore_registers): New function.
8960 (arm_netbsd_elfcore_fns): New core-file type specification.
8961 (_initialize_arm_netbsd_nat): Register it.
8962
3e56fc4b
RE
89632002-02-21 Richard Earnshaw <rearnsha@arm.com>
8964
8965 * armnbsd-nat.c: Include gdbcore.h.
8966 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
8967 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
8968 'void' to declaration, to shut up ARI.
8969 (fetch_core_registers): Make static. Rewrite using supply_register.
8970 (arm_netbsd_core_fns): New core-file type specification.
8971 (_initialize_arm_netbsd_nat): New function.
8972
097f6b0b
CF
89732002-02-21 Christopher Faylor <cgf@redhat.com>
8974
8975 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
8976 value.
8977
c914e0cc
CF
89782002-02-20 Christopher Faylor <cgf@redhat.com>
8979
8980 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
8981 fails.
8982
385fa495
DJ
89832002-02-20 Daniel Jacobowitz <drow@mvista.com>
8984
8985 * jv-exp.y (parse_number): Change type of implicit longs
8986 to builtin_type_uint64.
8987
e5f1222d
DJ
89882002-02-20 Daniel Jacobowitz <drow@mvista.com>
8989
8990 * gdbserver/linux-low.c (mywait): Change argument to waitpid
8991 to be an integer instead of a `union wait'.
8992
75c9abc6
DJ
89932002-02-20 Daniel Jacobowitz <drow@mvista.com>
8994
8995 * mips-linux-nat.c: Call the operating system GNU/Linux.
8996 * mips-linux-tdep.c: Likewise.
8997 * mips-tdep.c: Likewise.
8998
551792a5
DJ
89992002-02-20 Daniel Jacobowitz <drow@mvista.com>
9000
9001 Fix PR gdb/265.
9002 * jv-exp.y (parse_number): Handle 64-bit integers.
9003
ee6e2b82
DJ
90042002-02-20 Daniel Jacobowitz <drow@mvista.com>
9005
9006 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
9007 AC_STDC_HEADERS to AC_HEADER_STDC.
9008 * gdbserver/configure: Regenerated.
9009
a48442a0
RE
90102002-02-20 Richard Earnshaw <rearnsha@arm.com>
9011
9012 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
9013 is defined.
9014 * sparc-tdep.c (get_longjmp_target): Likewise.
9015
fe419ffc
RE
90162002-02-20 Richard Earnshaw <rearnsha@arm.com>
9017
9018 * News: Add news about ARM and Multi-arch. Mention the new target
9019 arm*-*-netbsd*.
9020
5832ed7e
JB
90212002-02-19 Jim Blandy <jimb@redhat.com>
9022
9023 * stabsread.c (error_type_complaint): Improve error message.
9024
84563040
DJ
90252002-02-19 Daniel Jacobowitz <drow@mvista.com>
9026
9027 * gdbserver/README: Update documentation.
9028 * gdbserver/configure.in: Update configury to match documentation.
9029 * gdbserver/Makefile.in: Likewise.
9030 * gdbserver/configure: Regenerated.
9031 * gdbserver/aclocal.m4: New file, generated by aclocal.
9032 * gdbserver/config.in: New file, generated by autoheader.
9033
375fd65b
RE
90342002-02-19 Richard Earnshaw <rearnsha@arm.com>
9035
9036 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
9037 armnbsd-nat.c.
9038
08216dd7
RE
90392002-02-19 Richard Earnshaw <rearnsha@arm.com>
9040
9041 * arm-tdep.h (enum arm_float_model): New enum.
9042 (struct gdbarch_tdep): Add fp_model.
9043 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
9044 up floating-point conversions until we know the floating-point model
9045 in use by the inferior. Don't complain about being unable to
9046 determine the ABI of the inferior when we don't have one.
9047 (arm_extract_return_value): Support different floating-point models.
9048 (arm_store_return_value): Likewise.
aaa38bb5 9049 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
08216dd7
RE
9050 ARM_FLOAT_SOFT.
9051 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
9052
65d6d66a
PS
90532002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9054
9055 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
9056 of ``current_gdbarch''.
9057
47221191
RE
90582002-02-19 Richard Earnshaw <rearnsha@arm.com>
9059
9060 * armnbsd-nat.c : ANSIfy all function declarations.
9061 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
9062 (fetch_inferior_registers): Re-implement in terms of above.
9063 (store_register, store_regs, store_fp_register, store_fp_regs): New.
9064 (store_inferior_registers): Re-implement in terms of above.
9065
fdf39c9a
RE
90662002-02-19 Richard Earnshaw <rearnsha@arm.com>
9067
aaa38bb5 9068 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
fdf39c9a
RE
9069 kernel.
9070 * arm-linux-tdep.c: Likewise.
9071 * config/arm/tm-linux.h: Likewise.
9072
93247f88
RE
90732002-02-19 Richard Earnshaw <rearnsha@arm.com>
9074
9075 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
9076 * config/arm/nbsd.mt (TM_FILE): Delete.
9077 * config/arm/tm-nbsd.h: Delete.
9078
d7b486e7
RE
90792002-02-19 Richard Earnshaw <rearnsha@arm.com>
9080
9081 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
9082 Initialize CALL_DUMMY_LENGTH.
9083
41d39a95
RE
90842002-02-19 Richard Earnshaw <rearnsha@arm.com>
9085
9086 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
9087 function.
9088 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
aaa38bb5 9089 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
41d39a95
RE
9090 defines one thing and that is incorrect for this port.
9091 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
9092
e1195560
PM
90932002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
9094
9095 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
9096
c1748f97
PM
90972002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
9098
9099 * win32-nat.c (display_selector): New function. Displays information
9100 about the information returned by GetThreadSelectorEntry API function.
9101 (display_selectors): New function. Displays the infomation of
9102 the selector given as argument, or of CS, DS ans FS selectors
9103 if no argument is given.
9104 ( _initialize_inftarg): Add "w32" as info prefix command.
9105 Add "info w32 selector" as command calling display_selectors.
9106
e41e6bbf
PM
91072002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
9108
9109 * i386-tdep.c (get_longjmp_target): Fix compilation failure
9110 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
9111 if not defined.
9112
0d3a9f48
RE
91132002-02-18 Richard Earnshaw <rearnsha@arm.com>
9114
9115 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
9116
3fb4b924
RE
91172002-02-18 Richard Earnshaw <rearnsha@arm.com>
9118
9119 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
9120 (arm_fix_call_dummy): Call it.
9121 (arm_call_dummy_breakpoint_offset): Delete.
9122 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
9123 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
9124
7f55af32
AC
91252002-02-18 Andrew Cagney <ac131313@redhat.com>
9126
9127 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
9128 Default to func_frame_chain_valid.
9129 * gdbarch.h, gdbarch.c: Re-generate.
9130 * frame.h (FRAME_CHAIN_VALID): Delete definition.
9131
05f13b9c
EZ
91322002-02-18 Elena Zannoni <ezannoni@redhat.com>
9133
9134 * ppc-linux-nat.c: Update copyright.
9135 (fetch_register, store_register): Add tid parameter, don't compute
9136 tid here.
9137 (fetch_ppc_registers, store_ppc_registers): Add tid
9138 parameter. Pass it along to callees.
9139 (fetch_inferior_registers, store_inferior_registers): Compute tid
9140 here, and pass it to calleed functions.
9141 (fill_gregset, supply_fpregset): Clean up formatting.
9142
d7afb4c9
RE
91432002-02-18 Richard Earnshaw <rearnsha@arm.com>
9144
9145 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
9146 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
9147
9df628e0
RE
91482002-02-18 Richard Earnshaw <rearnsha@arm.com>
9149
9150 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
9151 * gdbarch.c gdbarch.h: Regenerate.
9152 * breakpoint.c (create_longjmp_breakpoint): Always compile this
9153 function.
9154 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
9155 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
9156 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
9157
9158 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
9159 * arm-tdep.c (arm_get_longjmp_target): New function.
9160 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
9161 this to a positive value register arm_get_longjmp_target as the
9162 longjmp handler.
9163 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
9164 (arm_linux_init_abi): Set up longjmp description in tdep.
9165 * armnbsd-nat.c (get_longjmp_target): Delete.
9166 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
9167 description in tdep.
9168 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
9169 (get_longjmp_target): Delete declaration.
9170 (GET_LONGJMP_TARGET): Delete.
9171 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
9172 (GET_LONGJMP_TARGET): Delete.
9173
57bc8964
KB
91742002-02-17 Kevin Buettner <kevinb@redhat.com>
9175
9176 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
9177 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
9178 of ``current_gdbarch''.
9179
83d31a92
TT
91802002-02-17 Tom Tromey <tromey@redhat.com>
9181
9182 * cli/cli-cmds.c (compare_strings): New function.
9183 (complete_command): Only print each unique item once.
9184 * completer.h (complete_line): Declare.
9185 * completer.c (complete_line): New function.
9186 (line_completion_function): Use it.
9187
17ef5d92
AC
91882002-02-16 Andrew Cagney <ac131313@redhat.com>
9189
9190 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
9191 * gdbarch.h, gdbarch.c: Re-generate.
9192
491b8946
DJ
91932002-02-16 Daniel Jacobowitz <drow@mvista.com>
9194
9195 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
9196
91972002-02-16 Daniel Jacobowitz <drow@mvista.com>
9198
9199 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
9200 * valops.c (value_arg_coerce): Don't take the address of a reference
9201 to convert an argument to a reference.
9202
dfe7f3ac
CF
92032002-02-15 Christopher Faylor <cgf@redhat.com>
9204
9205 * win32-nat.c (get_image_name): New function.
9206 (handle_load_dll): Use get_image_name function.
9207 (get_child_debug_event): Avoid registering debug events until possibly
9208 execed process is started.
9209 (child_create_inferior): Allow invocation via shell so that command
9210 line redirection, etc. works ok.
9211 (_initialize_inftarg): Add new command: "set shell" to control whether
9212 a shell is used to start a process.
9213
1d33e73a
DJ
92142002-02-15 Daniel Jacobowitz <drow@mvista.com>
9215
9216 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
9217 instead of find_register_by_number.
9218 (cannot_store_register): Likewise.
9219
48cd0caa
PM
92202002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
9221
aaa38bb5 9222 * dwarf2read.c: Replace fprintf (stderr, ...) by
48cd0caa
PM
9223 fprintf_unfiltered (gdb_stderr, ...).
9224
8656e7d8
DJ
92252002-02-15 Daniel Jacobowitz <drow@mvista.com>
9226
9227 * gdbserver/gdbserver.1: Document --attach.
9228
66e810cd
RE
92292002-02-15 Richard Earnshaw <rearnsha@arm.com>
9230
9231 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
9232 descriptions.
9233 * arm-tdep.c (arm_default_arm_le_breakpoint)
9234 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
9235 (arm_default_thumb_be_breakpoint): New. Initialize them from
9236 traditional breakpoint defines.
9237 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
9238 (arm_gdbarch_init): Initialize new breakpoint variables.
9239 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
9240 (arm_linux_init_abi): Initialize linux-specific breakpoint.
9241 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
9242 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
9243 code out to ...
9244 (arm_netbsd_init_abi_common): ... here; new function.
9245 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
9246 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
9247 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
9248 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
9249
97e03143
RE
92502002-02-15 Richard Earnshaw <rearnsha@arm.com>
9251
9252 * arm-tdep.h (enum arm_abi): New enum.
9253 (struct gdbarch_tdep): New structure.
9254 (LOWEST_PC): Provide a default.
9255 (arm_gdbarch_register_os_abi): Declare new function.
9256 * arm-tdep.c (arm_abi_names): New array.
9257 (process_note_abi_tag_sections): New function.
9258 (get_elfosabi): New function.
9259 (arm_gdbarch_register_os_abi): New function.
9260 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
9261 support for that ABI has been built in, then call the appropriate
9262 configuration routine. Use gdbarch_num_regs() to get the number
9263 of registers.
9264 (arm_dump_tdep): New function.
9265 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
9266 place-holder functions.
9267 (_initialize_arm_tdep): Register them.
9268 * config/arm/tm-arm.h (LOWEST_PC): Delete.
9269
9270 * armnbsd-tdep.c: New file.
9271 * Makefile.in (armnbsd-tdep.o): Add dependencies.
9272 * config/arm/nbsd.mt (TDEPFILES): Add it.
9273 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
9274
9275 * armnbsd-nat.c: Include regcache.h.
9276 * Makefile.in (armnbsd-nat.o): Update dependency list.
9277
9278 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
9279
ad68be46
DJ
92802002-02-14 Daniel Jacobowitz <drow@mvista.com>
9281
9282 * gdbserver/Makefile.in: Fix typos in target rules.
9283
003d6d1d
DJ
92842002-02-14 Daniel Jacobowitz <drow@mvista.com>
9285
aaa38bb5 9286 Fix part of PR gdb/267.
003d6d1d
DJ
9287 * linespec.c (find_methods): Handle constructors specially for now.
9288
6b230f1b
CV
92892002-02-14 Corinna Vinschen <vinschen@redhat.com>
9290
9291 * arm-tdep.c (arm_push_arguments): Eliminate special float type
9292 handling.
9293 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
9294 standard_coerce_float_to_double().
9295
1ea98d12
CF
92962002-02-14 Christopher Faylor <cgf@redhat.com>
9297
9298 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
9299 GDBINIT_FILENAME.
9300
dd47e6fd
EZ
93012002-02-14 Elena Zannoni <ezannoni@redhat.com>
9302
9303 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
9304 find_variant_by_name, because it confuses the multiarch
9305 framework. Return NULL if there isn't an architecture with the
9306 user supplied name, instead of forcing a different one without
9307 recording the change with the multiarch machinery.
9308 (find_variant_by_name): Delete.
9309
d7e39b9e
PS
93102002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9311
9312 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
9313 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
9314
76e42a4f
MH
93152002-02-13 Martin M. Hunt <hunt@redhat.com>
9316
aaa38bb5 9317 * stack.c (print_frame_info_base): When calling
76e42a4f
MH
9318 print_frame_info_listing_hook, set current_source_symtab.
9319
0a30fbc4
DJ
93202002-02-14 Daniel Jacobowitz <drow@mvista.com>
9321
9322 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
9323 and remove unused $(INCLUDE_DIR).
9324 Add regcache.c to OBS.
9325 Add generated register protocol files to clean target.
9326 Update dependencies for new objects, obsolete old target code.
9327
9328 * gdbserver/linux-low.c: Remove all platform-specific code to
9329 new files. Remove various dead code. Update to use regcache
9330 functionality.
9331 * gdbserver/remote-utils.c (fromhex): Add return statement
9332 to quiet warning.
9333 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
9334 constant.
9335 (input_interrupt): Add integer parameter to match prototype
9336 of a signal handler.
9337 (outreg): Use register_data ().
9338 (prepare_resume_reply): Use gdbserver_expedite_regs.
9339 * gdbserver/server.c (main): Dynamically allocate own_buf because
9340 PBUFSIZ is no longer constant. Use registers_to_string () and
9341 registers_from_string ().
9342 * gdbserver/server.h: No longer include "defs.h". Add prototypes
9343 for error (), fatal (), and warning (). Update definition of
9344 PBUFSIZ to use regcache functionality. Add include guard.
9345 * gdbserver/utils.c (fatal): Add missing ``const''.
9346 (warning): New function.
9347
9348 * regformats/regdat.sh: Include "regcache.h" in generated files.
9349 Provide init_registers () function.
9350 * regformats/regdef.h: Add prototype for set_register_cache ().
9351 Add include guard.
9352
9353 * gdbserver/linux-arm-low.c: New file.
9354 * gdbserver/linux-i386-low.c: New file.
9355 * gdbserver/linux-ia64-low.c: New file.
9356 * gdbserver/linux-m68k-low.c: New file.
9357 * gdbserver/linux-mips-low.c: New file.
9358 * gdbserver/linux-ppc-low.c: New file.
9359 * gdbserver/linux-sh-low.c: New file.
9360
9361 * gdbserver/regcache.c: New file.
9362 * gdbserver/regcache.h: New file.
9363
9364 * gdbserver/low-linux.c: Removed obsolete file.
9365
4cc841d0
DJ
93662002-02-14 Daniel Jacobowitz <drow@mvista.com>
9367
9368 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
9369 * config/i386/linux.mt: Likewise.
9370 * config/ia64/linux.mt: Likewise.
9371 * config/m68k/linux.mh: Likewise.
9372 * config/powerpc/linux.mh: Likewise.
9373 * config/mips/linux.mt: Likewise.
9374
9375 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
9376
9377 * config/i386/i386lynx.mh: Mark gdbserver variables
9378 as (currently) obsolete for this target.
9379 * config/i386/nbsd.mt: Likewise.
9380 * config/i386/nbsdelf.mt: Likewise.
9381 * config/m32r/m32r.mt: Likewise.
9382 * config/m68k/m68klynx.mh: Likewise.
9383 * config/m68k/nbsd.mt: Likewise.
9384 * config/m68k/sun3os4.mh: Likewise.
9385 * config/mips/vr5000.mt: Likewise.
9386 * config/ns32k/nbsd.mt: Likewise.
9387 * config/pa/hppabsd.mh: Likewise.
9388 * config/pa/hppaosf.mh: Likewise.
9389 * config/powerpc/nbsd.mt: Likewise.
9390 * config/rs6000/rs6000lynx.mh: Likewise.
9391 * config/s390/s390.mt: Likewise.
9392 * config/s390/s390x.mt: Likewise.
9393 * config/sparc/sparclynx.mh: Likewise.
9394 * config/sparc/sun4os4.mh: Likewise.
9395 * config/i386/x86-64linux.mt: Likewise.
9396 * config/sparc/linux.mh: Likewise.
9397
a85f51e7
DJ
93982002-02-14 Daniel Jacobowitz <drow@mvista.com>
9399
9400 * configure.tgt: Configure gdbserver only for known working
9401 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
9402 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
9403 SUBDIRS if it is configured. Update comment for ${nativefile}.
9404 * configure: Regenerated.
9405
65554fef
MS
94062002-02-13 Michael Snyder <msnyder@redhat.com>
9407
670a52db
MS
9408 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
9409
6dbdc4a3
MS
9410 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
9411 (default_gcore_mach): Just return 0, work around a problem in bfd.
9412 (default_gcore_target): OK to return NULL if exec_bfd is null.
9413 (make_mem_sec): Use a cast, avoid a warning.
9414
9415 * procfs.c (find_memory_regions_callback): Use a cast instead of
aaa38bb5 9416 calling host_pointer_to_address (which complains if
6dbdc4a3
MS
9417 sizeof (host pointer) != sizeof (target pointer)).
9418 (procfs_make_note_section): Avoid overflow in psargs string.
9419
aaa38bb5 9420 * procfs.c (procfs_make_note_section): Make the default
65554fef
MS
9421 implementation return an error.
9422
94232002-02-13 Rodney Brown <rbrown64@csc.com.au>
9424
9425 * procfs.c (procfs_make_note_section): Provide a default definition
9426 (for alpha-dec-osf4.0f). Fix typos.
9427
1e4d76e7
EZ
94282002-02-13 Elena Zannoni <ezannoni@redhat.com>
9429
9430 * linux-proc.c: Add include of regcache.h.
9431 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
9432
b6d1a1d5
AC
94332002-02-13 Andrew Cagney <ac131313@redhat.com>
9434
9435 From 2002-01-18 Greg McGary <greg@mcgary.org>:
aaa38bb5
AJ
9436 * memattr.c (create_mem_region): Disallow useless empty region.
9437 Regions are half-open intervals, so allow [A..B) [B..C) as
65554fef 9438 non-overlapping.
b6d1a1d5 9439
6c6ea35e
MC
94402002-02-13 Michael Chastain <mec@shout.net>
9441
9442 * defs.h: Kill CONST_PTR.
9443 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
9444 * c-lang.c (c_builtin_types): Likewise.
9445 * ch-lang.c (ch_builtin_types): Likewise.
9446 * f-lang.c (f_builtin_types): Likewise.
9447 * language.c (unknown_builtin_types): Likewise.
9448 * m2-lang.c (m2_builtin_types): Likewise.
9449 * p-lang.c (pascal_builtin_types): Likewise.
9450 * scm-lang.c (c_builtin_types): Likewise.
9451
3e0b0f48
KS
94522002-02-13 Keith Seitz <keiths@redhat.com>
9453
9454 * arm-tdep.h (arm_get_next_pc): Add declaration.
9455
67255d04
RE
94562002-02-13 Richard Earnshaw <rearnsha@arm.com>
9457
9458 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
9459 with other related struct-returning functions.
9460 (arm_extract_struct_value_address): New function.
9461 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
9462 initialize float_format, double_format and long_double_format as
9463 appropriate to the endianness of the target.
9464 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
9465 (arm_use_struct_convention): Delete declaration.
9466 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
9467
079777f6
KS
94682002-02-13 Keith Seitz <keiths@redhat.com>
9469
9470 * defs.h (core_addr_to_string_nz): New function.
9471
34588f23
MK
94722002-02-13 Mark Kettenis <kettenis@gnu.org>
9473
9474 Apply missing bits of 2002-01-15 patch.
9475 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
9476 (fill_fpregset): Use i387_fill_fsave.
9477
49b563f9
KS
94782002-02-12 Keith Seitz <keiths@redhat.com>
9479
49b563f9
KS
9480 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
9481 (core_addr_to_string_nz): New function.
9482
aeb98c60
RE
94832002-02-11 Richard Earnshaw <rearnsha@arm.com>
9484
9485 * arm-linux-nat.c: Really include arm-tdep.h.
9486 * config/arm/tm-linux.h (struct type, struct value): Declare.
9487
65554fef
MS
94882002-02-11 Michael Snyder <msnyder@redhat.com>
9489
9490 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
9491 (gcore section): Ifdef for Solaris and Unixware only.
9492 (procfs_do_thread_registers): Unixware needs one lwpstatus
9493 per thread (not one prstatus or pstatus).
9494 (procfs_make_note_section): Iterate only over kernel threads (lwps),
9495 not over all gdb threads. For unixware, call elfcore_write_pstatus
9496 once before iterating over threads.
9497
34e8f22d
RE
94982002-02-11 Richard Earnshaw <rearnsha@arm.com>
9499
9500 * arm-tdep.h: New file.
9501 * arm-tdep.c: Include arm-tdep.h.
9502 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9503 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9504 (arm_print_float_info, arm_register_type, convert_to_extended)
9505 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9506 (arm_extract_return_value, arm_register_name): Make static.
9507 (arm_software_single_step): Similarly. Fix types in declaration.
9508 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
9509 (arm_store_return_value, arm_store_struct_return): New functions.
9510 (arm_gdbarch_init): Register the above functions. Also register
9511 call_dummy_start_offset, sizeof_call_dummy_words,
9512 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
9513 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
aaa38bb5 9514 max_register_virtual_size, register_size. Set up
34e8f22d
RE
9515 prologue_cache.saved_regs here, rather than ...
9516 (_initialize_arm_tdep): ... here.
9517 * config/arm/tm-arm.h (struct type, struct value): Delete forward
9518 declarations.
9519 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
9520 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
9521 (arm_print_float_info, arm_register_type, convert_to_extended)
9522 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
9523 (arm_extract_return_value, arm_register_name): Delete declarations.
9524 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
9525 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
9526 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
9527 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
9528 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
9529 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
9530 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
9531 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
9532 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
9533 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
9534 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
9535 (arm_get_next_pc): No-longer static -- these are needed by the RDI
9536 interface.
9537 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
9538 * remote-rdi.c remote-rdp.c: Likewise.
9539 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
9540 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
9541 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
9542 definition.
9543
9544 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
9545 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
9546 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
9547 from non-ARM_ prefixed definitions.
9548 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
9549 all uses of above.
9550 * remote-rdi.c remote-rdp.c: Likewise.
9551 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
9552
148754e5
RE
95532002-02-11 Richard Earnshaw <rearnsha@arm.com>
9554
9555 * arm-tdep.c (arm_frameless_function_invocation)
9556 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9557 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9558 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9559 (arm_pop_frame, arm_get_next_pc): Make static.
9560 (arm_gdbarch_init): Register above in gdbarch structure.
9561 (arm_read_fp): Renamed from arm_target_read_fp.
9562 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
9563 * config/arm/tm-arm.h (arm_frameless_function_invocation)
9564 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
9565 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
9566 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
9567 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
9568 (arm_pc_is_thumb_dummy): Delete declarations.
fcfb8836
RE
9569 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
9570 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
9571 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
9572 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
148754e5 9573
434d2d4f
DJ
95742002-02-10 Daniel Jacobowitz <drow@mvista.com>
9575
9576 * symtab.c (compare_search_syms): New function.
9577 (sort_search_symbols): New function.
9578 (search_symbols): Sort symbols after searching rather than
9579 before.
9580
55241689
AC
95812002-02-10 Andrew Cagney <ac131313@redhat.com>
9582
9583 * NEWS: Linux -> GNU/Linux.
9584
028c194b
AC
95852002-02-10 Andrew Cagney <ac131313@redhat.com>
9586
9587 * gdbarch.sh: For for level one methods, disallow a definition
9588 when partially multi-arched. Add comments explaining rationale.
9589 * gdbarch.h: Re-generate.
9590
6acf50cd
AC
95912002-02-10 Andrew Cagney <ac131313@redhat.com>
9592
9593 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
9594 multi-arch partial.
aaa38bb5 9595
50248794
AC
95962002-02-10 Andrew Cagney <ac131313@redhat.com>
9597
9598 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
9599 field. Use diff -u.
9600 * gdbarch.c: Re-generate.
9601
c30e0066
AC
96022002-02-10 Andrew Cagney <ac131313@redhat.com>
9603
9b56c5f3 9604 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
c30e0066
AC
9605 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
9606 partial.
9607
6e6d6484
AC
96082002-02-10 Andrew Cagney <ac131313@redhat.com>
9609
9610 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
9611 multi-arch partial.
9612 (PUSH_ARGUMENTS): Switch to using predefault.
9613 * gdbarch.c: Regenerate.
9614
c203844d
AC
96152002-02-10 Andrew Cagney <ac131313@redhat.com>
9616
9617 * valops.c (PUSH_ARGUMENTS): Delete definition.
9618 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
9619 partial. Default to default_push_arguments.
9620 * gdbarch.h, gdbarch.c: Regenerate.
9621
b5a2688f
AC
96222002-02-09 Andrew Cagney <ac131313@redhat.com>
9623
9624 * defs.h (throw_exception): Rename return_to_top_level. Update
9625 comments.
9626 * utils.c (error_stream, internal_verror, quit): Ditto.
9627 * top.c (throw_exception, catcher): Ditto.
9628 * sparclet-rom.c (sparclet_load): Ditto.
9629 * remote.c (interrupt_query, minitelnet): Ditto.
9630 * remote-sds.c (interrupt_query): Ditto.
9631 * remote-mips.c (mips_error, mips_kill): Ditto.
9632 * ocd.c (interrupt_query): Ditto.
9633 * monitor.c (monitor_interrupt_query): Ditto.
9634 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
9635 * target.h: Update comment.
aaa38bb5 9636
b5a2688f 9637 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
aaa38bb5 9638
2fa5c1e0
AC
96392002-02-09 Andrew Cagney <ac131313@redhat.com>
9640
9641 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
9642 default_double_format.
9643 * gdbarch.h, gdbarch.c: Re-generate.
9644 * findvar.c (floatformat_unknown): Delete variable definition.
9645 * doublest.h (floatformat_unknown): Delete variable declaration.
9646
da966255
JB
96472002-02-09 Jim Blandy <jimb@redhat.com>
9648
9649 * stabsread.c (read_type): Add code to parse Sun's syntax for
9650 prototyped function types.
9651
123a4891
AC
96522002-02-09 Andrew Cagney <ac131313@redhat.com>
9653
9654 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
9655 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
9656
fb39c8f3
PS
96572002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9658
9659 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
9660 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
9661 now _initialize_xcoffsolib gets called again and overrides the
9662 commands from solib.c in a native configuration.
9663
0b87a11d
MK
96642002-02-09 Mark Kettenis <kettenis@gnu.org>
9665
9666 * doublest.c (store_typed_floating): Don't try to return a value.
9667 Fixes PR gdb/290.
9668
bdc2fc72
JB
96692002-02-08 Jim Blandy <jimb@redhat.com>
9670
9671 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
9672 is prototyped and has no arguments, print its argument list as
9673 `(void)'.
9674
da69bbcf
CD
96752002-02-08 Chris Demetriou <cgd@broadcom.com>
9676
9677 * MAINTAINERS (write-after-approval): Add myself.
9678 (paper-trail): I've escaped!
aaa38bb5 9679
b69571f5
CF
96802002-02-08 Christopher Faylor <cgf@redhat.com>
9681
9682 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
9683 changes.
9684 (_initialize_check_for_gdb_ini): Ditto.
9685
f6871398
MH
96862002-02-08 Martin M. Hunt <hunt@redhat.com>
9687
9688 * win32-nat.c (cygwin_pid_to_str): Fix typo.
9689 xaprintf -> xasprintf.
9690
4e52d31c
PM
96912002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
9692
9693 * win32-nat.c: Remove use of printf and sprintf functions.
9694
39bbf761
RE
96952002-02-08 Richard Earnshaw <rearnsha@arm.com>
9696
9697 * arm-tdep.c (arm_frame_chain_valid): Make static.
9698 (arm_push_arguments): Likewise.
9699 (arm_gdbarch_init): New function.
9700 (_initialize_arm_tdep): Call it.
9701 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
9702 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
9703 (FRAME_CHAIN_VALID): Delete.
9704 (arm_frame_chain_valid): Delete declaration.
9705 (PUSH_ARGUMENTS): Delete.
9706 (arm_push_arguments): Delete declaration.
9707 (CALL_DUMMY_P): Delete.
9708
9c9532c9
CV
97092002-02-08 Andrew Cagney <ac131313@redhat.com>
9710 Corinna Vinschen <vinschen@redhat.com>
9711
9712 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
9713 on builtin float types.
9714
4e8f7a8b
DJ
97152002-02-08 Daniel Jacobowitz <drow@mvista.com>
9716
9717 * utils.c: Include <curses.h> before "bfd.h".
9718 * tui/tui-hooks.c: Likewise.
9719 * tui/tui.c: Likewise.
9720 * tui/tuiCommand.c: Likewise.
9721 * tui/tuiData.c: Likewise.
9722 * tui/tuiDataWin.c: Likewise.
9723 * tui/tuiDisassem.c: Likewise.
9724 * tui/tuiGeneralWin.c: Likewise.
9725 * tui/tuiIO.c: Likewise.
9726 * tui/tuiLayout.c: Likewise.
9727 * tui/tuiRegs.c: Likewise.
9728 * tui/tuiSource.c: Likewise.
9729 * tui/tuiSourceWin.c: Likewise.
9730 * tui/tuiStack.c: Likewise.
9731 * tui/tuiWin.c: Likewise.
9732
cd4bffcf
EZ
97332002-02-07 Elena Zannoni <ezannoni@redhat.com>
9734
9735 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
9736 to include space for pseudoregs as well. Update loops accordingly.
9737 (sh_fp_frame_init_saved_regs): Ditto.
9738 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
9739
26806ce2
AC
97402002-02-07 Andrew Cagney <ac131313@redhat.com>
9741
9742 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
9743 Add Richard Earnshaw to Arm maintainers.
9744
97fdab62
AC
97452002-02-07 Andrew Cagney <ac131313@redhat.com>
9746
a6b98203
AC
9747 * defs.h (warning_begin): Delete declaration.
9748
97fdab62
AC
9749 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
9750 Delete macro.
9751
78b29b40
MS
97522002-02-07 Michael Snyder <msnyder@redhat.com>
9753
aaa38bb5 9754 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
78b29b40
MS
9755 Logic bug, remove misplaced else.
9756
d8849953
KD
97572002-02-07 Klee Dienes <klee@apple.com>
9758
9759 * fork-inferior.c (fork_inferior): Add '!' to the list of
9760 characters that need to be quoted when building a string for the
9761 shell. Quote '!' specifically with a backslash, since CSH chokes
9762 when trying to evaluate "str!str".
aaa38bb5 9763
095778a0
NC
97642002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
9765
9766 * rdi-share/host.h: Only provide a typedef for bool if it is not
9767 defined.
9768
1900040c
MS
97692002-02-04 Michael Snyder <msnyder@redhat.com>
9770
9771 * breakpoint.h (enum bptype): Add new overlay event bp type.
9772 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
aaa38bb5 9773
1900040c
MS
9774 * breakpoint.c (create_internal_breakpoint): New function.
9775 (internal_breakpoint_number): Moved into create_internal_breakpoint.
9776 (create_longjmp_breakpoint): Use create_internal_breakpoint.
9777 (create_thread_event_breakpoint): Ditto.
9778 (create_solib_event_breakpoint): Ditto.
9779 (create_overlay_event_breakpoint): New function.
9780 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
9781 (update_breakpoints_after_exec): Delete and re-initialize
9782 overlay event breakpoints after an exec. Add FIXME comment
9783 about longjmp breakpoint.
9784 (print_it_typical): Ignore overlay event breakpoints.
9785 (print_one_breakpoint): Ditto.
9786 (mention): Ditto.
9787 (bpstat_what): Do not stop for overlay event breakpoints.
9788 (delete_breakpoint): Don't delete overlay event breakpoints.
9789 (breakpoint_re_set_one): Delete the overlay event breakpoint.
9790 (breakpoint_re_set): Re-create overlay event breakpoint.
9791
9792 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
9793 (overlay_manual_command): Disable overlay breakpoints.
9794 (overlay_off_command): Disable overlay breakpoints.
9795
082fc60d
RE
97962002-02-06 Richard Earnshaw <rearnsha@arm.com>
9797
9798 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
9799 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
9800 to here from config/tm-arm.h.
9801 (coff_sym_is_thumb): Make static.
9802 (arm_elf_make_msymbol_special): New function.
9803 (arm_coff_make_msymbol_special): New function.
9804 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
9805 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
9806 (coff_sym_is_thumb): Delete declaration.
9807 (arm_elf_make_msymbol_special): Declare.
9808 (arm_coff_make_msymbol_special): Declare.
9809 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
9810 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
9811
039c5766
RE
98122002-02-06 Richard Earnshaw <rearnsha@arm.com>
9813
9814 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
9815
98162002-02-06 Richard Earnshaw <rearnsha@arm.com>
9817
9818 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
9819 * gdbarch.c gdbarch.h: Regenerate.
9820 * arch-utils.c (default_print_float_info): New function.
9821 * arch-utils.h (default_print_float_info): Prototype it.
9822 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
9823 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
9824 (PRINT_FLOAT_INFO): Document it.
9825
9826 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
9827 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
9828 (PRINT_FLOAT_INFO): Define.
9829
58fa08f0
PM
98302002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
9831
aaa38bb5 9832 * win32-nat.c (_initialize_check_for_gdb_ini):
58fa08f0
PM
9833 Add typecast to sprintf argument to suppress a warning.
9834
7393af7c
PM
98352002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
9836
58fa08f0 9837 * win32-nat.c (last_sig): Changed type of variable to target_signal,
7393af7c
PM
9838 to allow easier handling of pass state.
9839 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
9840 that gives exception name and address.
9841 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
aaa38bb5 9842 and set last_sig value to ourstatus->value.sig. Some missing
7393af7c 9843 exceptions added.
aaa38bb5
AJ
9844 (child_continue): Correctly report continue_status.
9845 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
7393af7c 9846 TARGET_SIGNAL_0 (new default value).
aaa38bb5 9847 (child_resume): consider sig argument passed to decide if
7393af7c
PM
9848 the exception should be passed to debuggee or not.
9849
6af4589c
MS
98502002-02-05 Michael Snyder <msnyder@redhat.com>
9851
9852 * regcache.c (fetch_register): Call target_fetch_register
9853 only if we don't call FETCH_PSEUDO_REGISTER.
9854 (store_register): Call target_store_register only if we
9855 don't call STORE_PSEUDO_REGISTER.
9856
a2cf933a
EZ
98572002-02-05 Elena Zannoni <ezannoni@redhat.com>
9858
9859 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
9860 ELF_MAKE_MSYMBOL_SPECIAL.
9861 * gdbarch.c, gdbarch.h: Regenerate.
9862 * arch-utils.c (default_make_msymbol_special): New function.
aaa38bb5 9863 * arch-utils.h (default_make_msymbol_special): Export.
a2cf933a
EZ
9864 * elfread.c (elf_symtab_read): Compile use of
9865 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
9866 multiarched.
9867 * coffread.c (coff_symtab_read): Ditto, for
9868 COFF_MAKE_MSYMBOL_SPECIAL.
9869
6bb7be43
JB
98702002-02-05 Jim Blandy <jimb@redhat.com>
9871
9872 * solib-svr4.c (svr4_truncate_ptr): New function.
9873 (svr4_relocate_section_addresses): Do the address arithmetic with
9874 the appropriate truncation for target addresses, even when
9875 CORE_ADDR is larger than a target address.
9876
e18651ec
DJ
98772002-02-05 Daniel Jacobowitz <drow@mvista.com>
9878
9879 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
9880 to (int *).
9881
6b2725be
DJ
98822002-02-05 Daniel Jacobowitz <drow@mvista.com>
9883
9884 * gdbserver/linux-low.c (kill_inferior): Remove commented out
9885 code.
9886
fca9e603
DJ
98872002-02-05 Daniel Jacobowitz <drow@mvista.com>
9888
9889 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
9890
6c537a52
DJ
98912002-02-05 Daniel Jacobowitz <drow@mvista.com>
9892
9893 * gdbserver/linux-low.c: Remove unused include files.
9894
d844cde6
DJ
98952002-02-05 Daniel Jacobowitz <drow@mvista.com>
9896
9897 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
9898 (read_inferior_memory): Use it.
9899 (write_inferior_memory): Likewise.
9900
d07c63e7
DJ
99012002-02-05 Daniel Jacobowitz <drow@mvista.com>
9902
9903 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
9904 grubbing through sys_errlist.
9905
da6d8c04
DJ
99062002-02-05 Daniel Jacobowitz <drow@mvista.com>
9907
9908 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
9909
5b421780
PM
99102002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
9911 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
9912
9f60d481
AC
99132002-02-04 Andrew Cagney <ac131313@redhat.com>
9914
9915 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
9916 (do_sfunc, set_cmd_sfunc): New functions.
9917
9918 * command.h (struct cmd_list_element): Add field func.
9919 * cli/cli-decode.h (struct cmd_list_element): Ditto.
9920 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
9921 * cli/cli-decode.h: Ditto.
9922
9923 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
9924 (help_all, help_cmd_list): Ditto.
9925 (find_cmd, complete_on_cmdlist): Ditto.
9926 * top.c (execute_command): Ditto.
9927
9928 * cli/cli-setshow.c (do_setshow_command): Call func instead of
9929 function.sfunc.
9930
9931 * infcmd.c (notice_args_read): Fix function signature.
9932
9933 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
9934 * cli/cli-decode.c (add_set_cmd): Ditto.
9935 * utils.c (initialize_utils): Ditto.
9936 * maint.c (_initialize_maint_cmds): Ditto.
9937 * infrun.c (_initialize_infrun): Ditto.
9938 * demangle.c (_initialize_demangler): Ditto.
9939 * remote.c (add_packet_config_cmd): Ditto.
9940 * mips-tdep.c (_initialize_mips_tdep): Ditto.
9941 * cris-tdep.c (_initialize_cris_tdep): Ditto.
9942 * proc-api.c (_initialize_proc_api): Ditto.
9943 * kod.c (_initialize_kod): Ditto.
9944 * valprint.c (_initialize_valprint): Ditto.
9945 * top.c (init_main): Ditto.
9946 * infcmd.c (_initialize_infcmd): Ditto.
9947 * corefile.c (_initialize_core): Ditto.
9948 * arm-tdep.c (_initialize_arm_tdep): Ditto.
9949 * arch-utils.c (initialize_current_architecture): Ditto.
9950 (_initialize_gdbarch_utils): Ditto.
9951 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
9952
9953 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
9954 * wince.c (_initialize_inftarg): Ditto.
9955 * symfile.c (_initialize_symfile): Ditto.
9956 * mips-tdep.c (_initialize_mips_tdep): Ditto.
9957 * language.c (_initialize_language): Ditto.
9958 * arc-tdep.c (_initialize_arc_tdep): Ditto.
9959
f9ba0717
MS
99602002-02-04 Michael Snyder <msnyder@redhat.com>
9961
9962 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
9963
0c74b2a7
DJ
99642002-02-04 Daniel Jacobowitz <drow@mvista.com>
9965
9966 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
9967 Add rules for building the register data files.
9968
c638789f
DJ
99692002-02-04 Daniel Jacobowitz <drow@mvista.com>
9970
9971 * regformats/regdat.sh: Add braces to the definition of
9972 expedite_regs_${arch}.
9973
db253027
DJ
99742002-02-04 Daniel Jacobowitz <drow@mvista.com>
9975
9976 * regformats/regdef.h (struct reg): Add comment describing the
9977 requirements for offset and size fields.
9978
206be19c
AS
99792002-02-04 Andreas Schwab <schwab@suse.de>
9980
9981 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
9982 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
9983
181c1381
RE
99842002-02-04 Richard Earnshaw <rearnsha@arm.com>
9985
9986 * gdbarch.sh (copyright): Update years in generated header.
9987 (SMASH_TEXT_ADDRESS): Add rule.
db253027 9988 * gdbarch.h, gdbarch.c: Re-generate.
181c1381
RE
9989 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
9990 * dbxread.c: Likewise.
9991 * dwarfread.c: Likewise.
9992 * elfread.c: Likewise.
9993 * somread.c: Likewise.
9994
9995 * arm-tdep.c (arm_smash_text_address): New function.
9996 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
9997
fa4ba8da
PM
99982002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
9999
10000 Add support for hardware watchpoints on win32 native.
aaa38bb5 10001 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
fa4ba8da 10002 CONTEXT_DEBUG_REGISTERS.
aaa38bb5 10003 (dr variable): New variable. Static array containing a local copy
fa4ba8da
PM
10004 of debug registers.
10005 (debug_registers_changed): New variable. Reflects when debug registers
10006 are changed and need to be written to inferior.
aaa38bb5 10007 (debug_registers_used): New variable. Reflects when any debug register
fa4ba8da
PM
10008 was set, used when new threads are created.
10009 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
10010 i386-nat code.
10011 (thread_rec): Set dr array if id is the thread of current_event .
10012 (child_continue, child_resume): Change the debug registers for all
10013 threads if debug_registers_changed.
10014 (child_add_thread): Change the debug registers if debug_registers_used.
10015 * config/i386/cygwin.mh: Add use of i386-nat.o file.
10016 Link nm.h to new nm-cygwin.h file.
10017 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
10018 of hardware registers.
10019
a73c86fb
AC
100202002-02-03 Andrew Cagney <ac131313@redhat.com>
10021
10022 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
10023 Restore behavour broken by 2002-01-20 Andrew Cagney
10024 <ac131313@redhat.com> IEEE_FLOAT removal.
10025
acf5ed49
DJ
100262002-02-03 Daniel Jacobowitz <drow@mvista.com>
10027
10028 * c-valprint.c (c_val_print): Pass a proper valaddr to
10029 cp_print_class_method.
10030 * valops.c (search_struct_method): If there is only one method
10031 and args is NULL, return that method.
10032
493d28d5
DJ
100332002-02-03 Daniel Jacobowitz <drow@mvista.com>
10034
10035 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
10036 accessing tag_name directly.
10037
7495dfdb
DJ
100382002-02-03 Daniel Jacobowitz <drow@mvista.com>
10039
10040 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
10041 of accessing tag_name directly.
10042
dd6bda65
DJ
100432002-02-03 Daniel Jacobowitz <drow@mvista.com>
10044
10045 PR gdb/280
10046 * gdbtypes.c (replace_type): New function.
10047 * gdbtypes.h (replace_type): Add prototype.
10048 * stabsread.c (read_type): Use replace_type.
10049
88fe217c
RE
100502002-02-03 Richard Earnshaw <rearnsha@arm.com>
10051
10052 * Makefile.in (memattr.o): Add missing dependencies rule.
10053
e5d66720
PS
100542002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
10055
10056 * breakpoint.c (break_at_finish_command): Really export.
10057 (break_at_finish_at_depth_command): Ditto.
10058 (tbreak_at_finish_command): Ditto.
10059 * hppa-tdep.c: Include completer.h.
10060 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
10061 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
10062
fffee0be
AC
100632002-02-01 Andrew Cagney <ac131313@redhat.com>
10064
10065 * utils.c (do_write): New function.
10066 (error_stream): Rewrite combining the code from error_begin and
10067 verror.
10068 (verror): Rewrite using error_stream.
10069 (error_begin): Delete function.
10070
255e7dbf
AC
100712002-02-01 Andrew Cagney <ac131313@redhat.com>
10072
10073 * utils.c (error_begin): Make static.
10074 * defs.h (error_begin): Delete declaration.
10075
10076 * linespec.c (cplusplus_error): Replace cplusplus_hint.
10077 (decode_line_1): Use cplusplus_error instead of error_begin,
10078 cplusplus_hint and return_to_top_level.
10079 * coffread.c (coff_symfile_read): Use error instead of error_begin
10080 and return_to_top_level.
10081 * infrun.c (default_skip_permanent_breakpoint): Ditto.
10082
ddfe3c15
AC
100832002-02-01 Andrew Cagney <ac131313@redhat.com>
10084
10085 * language.h (type_error, range_error): Make string parameter
10086 constant.
10087 * language.c (warning_pre_print): Delete extern declaration.
10088 * dwarfread.c (warning_pre_print): Ditto.
10089 * language.c (type_error, range_error): Rewrite to use verror and
10090 vwarning instead of warning_begin.
10091
03ac34d5
MS
100922002-02-01 Michael Snyder <msnyder@redhat.com>
10093
261c4ca2
MS
10094 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
10095 (set_ignore_count): Move misplaced comment back where it belongs.
03ac34d5 10096
e00d1dc8
AC
100972002-02-01 Andrew Cagney <ac131313@redhat.com>
10098
10099 * command.h (NO_FUNCTION): Delete macro.
10100 * cli/cli-decode.h (NO_FUNCTION): Ditto.
10101 * top.c (execute_command): Replace NO_FUNCTION with NULL.
10102 * tracepoint.c (_initialize_tracepoint): Ditto.
10103 * cli/cli-decode.c (add_set_cmd): Ditto.
10104 * cli/cli-cmds.c (init_cli_cmds): Ditto.
aaa38bb5 10105
76b79d6e
DJ
101062002-02-01 Daniel Jacobowitz <drow@mvista.com>
10107
10108 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
10109 Update ``this'' pointer when calling virtual functions.
10110
799f9e91
MS
101112002-02-01 Michael Snyder <msnyder@redhat.com>
10112
c7bd442c 10113 * breakpoint.c (create_temp_exception_breakpoint): Delete.
799f9e91
MS
10114 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
10115
3cf384d4
DJ
101162002-02-01 Daniel Jacobowitz <drow@mvista.com>
10117
10118 * regformats/reg-arm.dat: New file.
10119 * regformats/reg-i386.dat: New file.
10120 * regformats/reg-ia64.dat: New file.
10121 * regformats/reg-m68k.dat: New file.
10122 * regformats/reg-mips.dat: New file.
10123 * regformats/reg-ppc.dat: New file.
10124 * regformats/reg-sh.dat: New file.
10125 * regformats/regdef.h: New file.
10126 * regformats/regdat.sh: New file.
10127
0defa245
RE
101282002-02-01 Richard Earnshaw <reanrsha@arm.com>
10129
10130 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
10131 (arm_frame_args_address, arm_frame_locals_address): New functions.
10132 (arm_frame_num_args): New function.
10133 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
10134 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
10135 (FRMA_NUM_ARGS): Call arm_frame_num_args.
10136
405f26e6
MS
101372002-01-31 Michael Snyder <msnyder@redhat.com>
10138
502fd408
MS
10139 * breakpoint.c (break_at_finish_command): Export.
10140 (break_at_finish_at_depth_command): Export.
10141 (tbreak_at_finish_command): Export.
10142 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
10143 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
10144 "tbreak" commands, which are HPPA specific.
10145
7d35e135
MS
10146 * printcmd.c (disassemble_command): Remove an ancient
10147 artifact of an old merge.
10148
aaa38bb5 10149 * symfile.h (enum overlay_debugging_state):
d874f1e2
MS
10150 Define enum constant values for overlay mode.
10151 * symfile.c (overlay_debugging): Use enums instead of literals.
aaa38bb5
AJ
10152 (overlay_is_mapped, overlay_auto_command,
10153 overlay_manual_command): Ditto.
d874f1e2 10154
aaa38bb5
AJ
10155 * breakpoint.c (insert_breakpoints, remove_breakpoint,
10156 breakpoint_here_p, breakpoint_inserted_here_p,
10157 breakpoint_thread_match, bpstat_stop_status,
9f04af04
MS
10158 describe_other_breakpoints, check_duplicates, clear_command):
10159 Coding standard fixes.
10160
8add0441 10161 * target.c (target_xfer_memory): Add spaces, coding standard.
9f04af04 10162 (do_xfer_memory): Add missing line to trust-readonly
405f26e6
MS
10163 code: check bfd SEC_READONLY flag for section.
10164
e351066e
AC
101652002-01-31 Andrew Cagney <ac131313@redhat.com>
10166
7d35e135 10167 * PROBLEMS: Fix typo, 5.1->5.1.1.
e351066e 10168
8a48e967
DJ
101692002-01-30 Daniel Jacobowitz <drow@mvista.com>
10170
10171 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
10172 data symbols, since we search based on textlow and texthigh.
10173 (find_pc_sect_symtab): Likewise.
10174
f5a96129
AC
101752002-01-30 Andrew Cagney <ac131313@redhat.com>
10176
10177 * defs.h (vwarning): Declare.
f5a96129
AC
10178 * utils.c (vwarning): New function.
10179 (warning): Call vwarning.
10180 (warning_begin): Delete function.
10181
10182 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
10183 the warning message.
10184 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
10185 warning_begin.
10186
cefd4ef5
MS
101872002-01-30 Michael Snyder <msnyder@redhat.com>
10188
1a703748
MS
10189 * NEWS: Mention "set trust-readonly-sections" command.
10190 Mention generate-core-file command.
cefd4ef5 10191
3a11626d
MS
101922002-01-15 Michael Snyder <msnyder@redhat.com>
10193
10194 * target.c: New command, "set trust-readonly-sections on".
10195 (do_xfer_memory): Honor the suggestion to trust readonly sections
10196 by reading them from the object file instead of from the target.
10197 (initialize_targets): Register command "set trust-readonly-sections".
10198
d1c7e53b
AC
101992002-01-29 Andrew Cagney <ac131313@redhat.com>
10200
10201 * parse.c (target_map_name_to_register): Simplify, search regs and
10202 pseudo-regs using a single loop.
10203
e2c9a72c
AC
102042002-01-30 Andrew Cagney <ac131313@redhat.com>
10205
10206 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
10207
69824b4e
MK
102082002-01-15 Rodney Brown <rbrown64@csc.com.au>
10209
10210 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
10211 * config/i386/i386v42mp.mh: Add i387-nat.o .
10212 * i386v4-nat.c: Include i387-nat.h.
10213 (supply_fpregset): Use i387_supply_fsave.
10214 (fill_fpregset): Use i387_fill_fsave.
10215
6eb69eab
RE
102162002-01-30 Richard Earnshaw <rearnsha@arm.com>
10217
10218 * arm-tdep.c (arm_call_dummy_words): Define.
10219 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
10220 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
10221 (CALL_DUMMY_WORDS): Define.
10222 (arm_call_dummy_words): Declare.
10223 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
10224 (arm_linux_call_dummy_words): Declare.
10225
9852326a
AS
102262002-01-30 Andreas Schwab <schwab@suse.de>
10227
10228 * m68klinux-nat.c: Fix last change to use regcache_collect
10229 instead of referencing registers[] directly.
10230
977a3030
AC
102312002-01-29 Andrew Cagney <ac131313@redhat.com>
10232
10233 * parse.c (target_map_name_to_register): Delete code wrapped in
10234 #ifdef REGISTER_NAME_ALIAS_HOOK.
10235
2076c72b
MS
102362002-01-28 Michael Snyder <msnyder@redhat.com>
10237
10238 * regcache.c (legacy_read_register_gen): Need to be able to
10239 read pseudo-register as well as real register.
10240 (legacy_write_register_gen): Ditto.
10241
8fcc723b
AC
102422002-01-28 Andrew Cagney <ac131313@redhat.com>
10243
10244 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10245 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
10246 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
10247 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
10248 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
10249 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
10250 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
10251 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
10252 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
10253 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
10254 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
10255 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
10256 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
10257 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
10258 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
10259 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
10260 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
10261 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
10262 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
10263 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
10264
afe64c1a
AC
102652002-01-28 Andrew Cagney <ac131313@redhat.com>
10266
10267 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
10268 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
10269 (initialize_current_architecture): Update target_byte_order using
10270 information from BFD.
aaa38bb5 10271 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
afe64c1a
AC
10272 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
10273
75bc7ddf
AC
102742002-01-28 Andrew Cagney <ac131313@redhat.com>
10275
10276 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
10277 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
10278
10279 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
10280 #ifdef INVALID_FLOAT.
10281 * infcmd.c (do_registers_info): Ditto.
10282 * values.c (unpack_double): Ditto. Add comment.
10283
10284 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
10285 already commented out.
10286
0280a90a
AS
102872002-01-26 Andreas Schwab <schwab@suse.de>
10288
10289 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
10290 * m68klinux-nat.c: Update ptrace interface for fetching/storing
10291 registers and add support for PTRACE_GETREGS.
10292
7072a954
AC
102932002-01-24 Andrew Cagney <ac131313@redhat.com>
10294
10295 GDB 5.1.1 released from 5.1 branch.
10296 * NEWS: Add 5.1.1 news.
10297 * README: Sync with 5.1 branch.
10298
86f902e0
FF
102992002-01-23 Fred Fish <fnf@redhat.com>
10300
10301 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
10302 stabstring on initial malloc. Reallocing will copy it for us,
10303 if necessary.
10304
8af51c36
EZ
103052002-01-23 Elena Zannoni <ezannoni@redhat.com>
10306
aaa38bb5 10307 * Makefile.in (hpread_h): Delete.
8af51c36
EZ
10308 (HFILES_NO_SRCDIR): Remove hpread.h.
10309 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
10310 (hpread.o): Update dependencies.
10311 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
10312
10313 * hp-psymtab-read.c: Remove file.
10314 * hp-symtab-read.c: Remove file.
10315 * hpread.h: Remove file.
10316
10317 * hpread.c: Merge all contents of hp-psymtab-read.c,
10318 hp-symtab-read.c and hpread.h into this file, as it was prior to
10319 January 1999.
10320
10321 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
aaa38bb5 10322 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
8af51c36
EZ
10323 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
10324 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
10325
dc5cfeb6
EZ
103262002-01-23 Elena Zannoni <ezannoni@redhat.com>
10327
10328 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
10329 fill_gregset): Call gdbarch_tdep() just once, assign result to
10330 variable and use that, instead of calling the function several
10331 times.
10332
ea87b71b
AO
103332002-01-24 Alexandre Oliva <aoliva@redhat.com>
10334
10335 * configure.host: Accept sparcv9 as alias for sparc64.
10336 * configure.tgt: Likewise.
10337
13fc0c2f
KB
103382002-01-22 Kevin Buettner <kevinb@redhat.com>
10339
10340 * solib-aix5.c (build_so_list_from_mapfile)
10341 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
10342 arguments is not reversed.
10343 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
10344 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
aaa38bb5 10345
7bd872fe
EZ
103462002-01-22 Elena Zannoni <ezannoni@redhat.com>
10347
10348 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
10349 modified version of obsolete sh_fetch_pseudo_register.
10350 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
10351 (sh4_register_read): New function.
10352 (sh_pseudo_register_write): New function. Renamed and modified
10353 version of obsolete sh_store_pseudo_register.
10354 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
10355 (sh4_register_write): New function.
10356 (sh_gdbarch_init): Remove setting of gdbarch function
10357 fetch_pseudo_register and store_pseudo_register. Remove setting of
10358 register_convert_to_raw, register_convert_to_virtual,
10359 register_convertible.
10360 (sh_sh4_register_convertible): Delete. No longer needed. All is
10361 taken care by architecture specific functions
10362 register_read/register_write.
10363 (sh_sh4_register_convert_to_virtual): Make static.
10364 (sh_sh4_register_convert_to_raw): Ditto.
10365
069e84fd
AC
103662002-01-22 Andrew Cagney <ac131313@redhat.com>
10367
10368 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
10369 (floatformat_is_nan, floatformat_mantissa): Ditto.
10370
10371 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
10372 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
10373 builtin_type_ieee_double_little,
10374 builtin_type_ieee_double_littlebyte_bigword,
10375 builtin_type_m68881_ext, builtin_type_i960_ext,
10376 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
10377 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
10378 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
10379 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
10380
211a4f69
CV
103812002-01-22 Corinna Vinschen <vinschen@redhat.com>
10382
10383 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
10384 parameter. Set frameless flag if it exists and depended of
10385 whether the scanned function is frameless or not.
10386 (xstormy16_skip_prologue): If function is frameless, return
10387 result of xstormy16_scan_prologue().
10388 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
10389 call.
10390
f81353e4
EZ
103912002-01-21 Elena Zannoni <ezannoni@redhat.com>
10392
10393 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
10394 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
10395 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
10396 sh_sh4_register_byte, sh_sh4_register_raw_size,
10397 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
10398 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
10399 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
10400 sh_store_pseudo_register, sh_do_pseudo_register): Call
10401 gdbarch_tdep() just once, assign result to variable and use that,
10402 instead of calling the function several times.
10403
63c73a17
MK
104042002-01-20 Mark Kettenis <kettenis@gnu.org>
10405
10406 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
10407 macros instead of LAST_FPU_CTRL_REGNUM.
10408 (store_register): Likewise.
10409
39ad761d
JB
104102002-01-21 Jim Blandy <jimb@redhat.com>
10411
10412 * infcmd.c (run_command): Check that the `exec' target layer's BFD
10413 is up-to-date before running the program, not just when a program
10414 exits.
10415
3d74b771
FF
104162002-01-21 Fred Fish <fnf@redhat.com>
10417
10418 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
10419 when we have found all instructions we are looking for.
10420
966fbf70
RE
104212002-01-21 Richard Earnshaw <rearnsha@arm.com>
10422
10423 * arm-tdep.c (arm_register_name): New function.
10424 (arm_registers_names): Make static.
10425 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
10426 (arm_register_name): Declare.
10427 (REGISTER_NAME): Use it.
10428
c3b4394c
RE
104292002-01-21 Richard Earnshaw <rearnsha@arm.com>
10430 Kevin Buettner <kevinb@redhat.com>
10431
10432 Convert arm targets to new FRAME interface.
10433 * arm-tdep.c (struct frame_extra_info): Remove fsr.
10434 (arm_frame_find_save_regs): Delete.
10435 (arm_frame_init_saved_regs): New.
10436 (arm_init_extra_frame_info): Alloacte saved_regs as required.
10437 Allocate extra_info as required. Convert all uses of fsr.regs
10438 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
10439 to use extra_info.
10440 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
10441 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
10442 (check_prologue_cache, save_prologue_cache): Likewise.
10443 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
10444 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
10445 (FRAME_FIND_SAVED_REGS): Delete.
10446 (arm_frame_find_saved_regs): Delete prototype.
10447 (arm_frame_init_saved_regs): New prototype.
10448 (FRAME_INIT_SAVED_REGS): Define.
10449
61d99182
AC
104502002-01-20 Andrew Cagney <ac131313@redhat.com>
10451
10452 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
10453
6aaea291
AC
104542002-01-20 Andrew Cagney <ac131313@redhat.com>
10455
10456 From Jeff Law <law@redhat.com>:
10457 * infttrace.c: Include <sys/pstat.h>.
10458 (child_pid_to_exec_file): Revamp. Use pstat call to get the
10459 exec file if the ttrace equivalent fails.
10460
15f698d2
AC
104612002-01-20 Andrew Cagney <ac131313@redhat.com>
10462
10463 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
10464 (closeLogFile): Ditto.
10465
f86ddd7c
MC
104662002-01-20 Michael Chastain <mec@shout.net>
10467
10468 * top.c (print_gdb_version): Bump copyright year to 2002.
10469
904507ce
AC
104702002-01-20 Andrew Cagney <ac131313@redhat.com>
10471
10472 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
10473 Zannoni and Eli Zaretskii.
10474
d7f0b9ce
DJ
104752002-01-20 Daniel Jacobowitz <drow@mvista.com>
10476
10477 * buildsym.c: Update copyright years.
10478 * c-typeprint.c: Likewise.
10479 * dwarf2read.c: Likewise.
10480 * f-typeprint.c: Likewise.
10481 * gdbtypes.c: Likewise.
10482 * gdbtypes.h: Likewise.
10483 * hp-symtab-read.c: Likewise.
10484 * hpread.c: Likewise.
10485 * mdebugread.c: Likewise.
10486 * p-typeprint.c: Likewise.
10487
3fd3d7d2
AC
104882002-01-20 Andrew Cagney <ac131313@redhat.com>
10489
10490 * remote-sim.c (gdbsim_open): Simplify code testing the macro
10491 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
10492 byte-order selectable.
10493 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
10494 * arch-utils.c: Ditto.
10495 (set_endian): Ditto.
10496 (set_endian_from_file): Ditto.
10497 * gdbserver/low-sim.c (create_inferior): Ditto.
10498 * gdbarch.sh: Ditto.
10499 * gdbarch.h: Re-generate.
aaa38bb5
AJ
10500 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10501 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
10502 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
10503 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10504 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10505 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
10506 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
3fd3d7d2
AC
10507 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
10508 macro definition.
10509 * config/mips/tm-wince.h: Remove #undef of macro
10510 TARGET_BYTE_ORDER_SELECTABLE.
10511 * config/sh/tm-wince.h: Ditto.
10512
b02dede2
DJ
105132002-01-20 Daniel Jacobowitz <drow@mvista.com>
10514
10515 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
10516 member function fields. Add accessor macro
10517 TYPE_FN_FIELD_ARTIFICIAL.
10518 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
10519 * c-typeprint.c (c_type_print_base): Skip artificial member
10520 functions.
10521
c3643761
DJ
105222002-01-20 Daniel Jacobowitz <drow@mvista.com>
10523
10524 * f-typeprint.c: Delete unused function f_type_print_args.
10525 * p-typeprint.c: Delete unused function pascal_type_print_args.
10526
8176bb6d
DJ
105272002-01-20 Daniel Jacobowitz <drow@mvista.com>
10528
10529 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
10530 comment. Add ``artificial'' to ``union field_location''.
10531
10532 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
10533
10534 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
10535 * mdebugread.c (parse_symbol): Likewise.
10536 * stabsread.c (define_symbol): Likewise.
10537 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
10538 initializing TYPE_FIELD_BITPOS to n (obsolete).
10539 (hpread_doc_function_type): Likewise.
10540 * hpread.c (hpread_function_type): Likewise.
10541
7fd60527
AC
105422002-01-20 Andrew Cagney <ac131313@redhat.com>
10543
10544 * configure.in (host_makefile_frag): Only require a host makefile
10545 fragment when a native build.
10546 * configure: Re-generate.
10547
c2f05ac9
AC
105482002-01-20 Andrew Cagney <ac131313@redhat.com>
10549
10550 * doublest.h (floatformat_from_type): Declare.
10551 * doublest.c (floatformat_from_type): New function.
10552 (convert_typed_floating): Use.
10553
10554 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
10555 call to function floatformat_from_type.
10556
10557 * gdbarch.sh (IEEE_FLOAT): Delete.
10558 * gdbarch.h, gdbarch.c: Re-generate.
10559 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
10560 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
10561 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
10562 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
10563 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
10564 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
10565 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
10566 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
10567 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
10568 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
10569 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
c2f05ac9
AC
10570 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
10571
10572 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
10573 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
10574 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
10575 * sh-tdep.c (sh_gdbarch_init): Ditto.
10576 * mips-tdep.c (mips_gdbarch_init): Ditto.
10577 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10578 * cris-tdep.c (cris_gdbarch_init): Ditto.
10579
abf22e64
AJ
105802002-01-20 Jiri Smid <smid@suse.cz>
10581
10582 * configure.host, configure.tgt: Support x86-64.
10583 * NEWS: Note new target x86-64.
10584
b7c4cbf8
AJ
10585 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
10586 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
10587 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
10588 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
10589 x86-64-linux-nat.o): Fix dependencies.
10590
82600034
AC
105912002-01-19 Andrew Cagney <ac131313@redhat.com>
10592
10593 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
10594 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
10595 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
10596 * config/sparc/xm-sun4os4.h: Delete file.
10597 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
abf22e64 10598
bbe5c628
AC
105992002-01-19 Andrew Cagney <ac131313@redhat.com>
10600
10601 * config/sparc/sparclynx.mh (XM_FILE): Delete.
10602 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
10603 * config/m68k/m68klynx.mh (XM_FILE): Delete.
10604 * config/i386/i386lynx.mh (XM_FILE): Delete.
10605 * config/rs6000/xm-rs6000ly.h: Delete file.
10606 * config/sparc/xm-sparclynx.h: Delete file.
10607 * config/m68k/xm-m68klynx.h: Delete file.
10608 * config/i386/xm-i386lynx.h: Delete file.
10609 * config/xm-lynx.h: Delete file.
10610 * config/djgpp/fnchange.lst: Update.
10611
f8453e34
JT
106122002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
10613
10614 * alpha-tdep.c (alpha_register_byte): New function.
10615 (alpha_register_raw_size): Ditto.
10616 (alpha_register_virtual_size): Ditto.
10617 (alpha_skip_prologue_internal): Renamed from
10618 alpha_skip_prologue.
10619 (alpha_skip_prologue): New version that calls
10620 alpha_skip_prologue_internal.
10621 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
10622 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
10623 second argument from alpha_skip_prologue.
10624 (REGISTER_BYTE): Use alpha_register_byte.
10625 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
10626 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
10627 (FRAMELESS_FUNCTION_INVOCATION): Use
10628 generic_frameless_function_invocation_not.
10629 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
10630 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
10631
52d9e613
AC
106322002-01-19 Andrew Cagney <ac131313@redhat.com>
10633
10634 * config/mips/xm-news-mips.h: Delete file.
10635 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
10636
10637 * config/m88k/xm-m88k.h: Delete file.
10638 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
10639 * config/m88k/xm-delta88v4.h: Ditto.
10640 * config/m88k/xm-delta88.h: Ditto.
10641
10642 * config/alpha/xm-fbsd.h: Delete file.
10643 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
10644
10645 * config/sparc/xm-sparc.h: Delete file.
10646 * Makefile.in (xm-sun4os4.h): Delete dependency.
10647 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
10648 * config/sparc/xm-sun4os4.h: Ditto.
10649 * config/sparc/xm-linux.h: Ditto.
10650
10651 * config/i386/xm-windows.h: Delete file.
10652
2d1b2124
AC
106532002-01-19 Andrew Cagney <ac131313@redhat.com>
10654
10655 * utils.c: Include <sys/param.h> for MAXPATHLEN.
10656 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
10657
ee1f65f0
JT
106582002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
10659
10660 * alpha-tdep.c (alpha_call_dummy_words): New.
10661 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
10662 (CALL_DUMMY_P): Define.
10663 (CALL_DUMMY_WORDS): Define.
10664 (SIZEOF_CALL_DUMMY_WORDS): Define.
10665
98081e55
PB
106662002-01-19 Per Bothner <per@bothner.com>
10667
10668 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
10669 isn't NULL, which can happen with some gcj-3.x-produced code.
10670
0d056799
JT
106712002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
10672
10673 * alpha-tdep.c (alpha_register_virtual_type): New function.
10674 (alpha_init_frame_pc_first): Ditto.
10675 (alpha_fix_call_dummy): Ditto.
10676 (alpha_store_struct_return): Ditto.
10677 (alpha_extract_struct_value_address): Ditto.
10678 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
10679 alpha_register_virtual_type.
10680 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
10681 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
10682 alpha_extract_struct_value_address.
10683 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
10684 (INIT_FRAME_PC): Use init_frame_pc_noop.
10685 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
10686
4604bcad
MK
106872002-01-19 Mark Kettenis <kettenis@gnu.org>
10688
10689 * i386gnu-nat.c: Include "i386-tdep.h".
10690 (fetch_fpregs): Simplify code dealing with uninitialized floating
10691 point states such that it doesn't require FP7_REGNUM.
10692
140f9984
JT
106932002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10694
abf22e64
AJ
10695 * alpha-tdep.c (frame_extra_info): New.
10696 (alpha_find_saved_regs): Make static. Use
140f9984
JT
10697 frame->extra_info.
10698 (alpha_frame_init_saved_regs): New function.
abf22e64
AJ
10699 (alpha_frame_saved_pc): Use frame->extra_info.
10700 (temp_saved_regs): Don't declare as struct frame_saved_regs.
10701 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
140f9984
JT
10702 (init_extra_frame_info): Rename to...
10703 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
abf22e64 10704 (alpha_print_extra_frame_info): New function.
140f9984
JT
10705 (alpha_frame_locals_address): Ditto.
10706 (alpha_frame_args_address): Ditto.
abf22e64 10707 (alpha_pop_frame): Use frame->extra_info.
140f9984
JT
10708 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
10709 alpha_frame_args_address.
abf22e64 10710 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
140f9984 10711 (alpha_find_saved_regs): Remove prototype.
abf22e64
AJ
10712 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
10713 (EXTRA_FRAME_INFO): Remove.
140f9984
JT
10714 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
10715 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
10716
d734c450
JT
107172002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10718
10719 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
10720 (alpha_cannot_fetch_register): Ditto.
10721 (alpha_cannot_store_register): Ditto.
10722 (alpha_register_convertible): Ditto.
10723 (alpha_use_struct_convention): Ditto.
10724 * config/alpha/tm-alpha.h: Update copyright years.
10725 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
10726 (INNER_THAN): Use core_addr_lessthan.
10727 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
10728 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
10729 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
10730 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
10731 (FRAME_CHAIN): Remove unnecessary cast.
10732
b4ceaee6
AC
107332002-01-18 Andrew Cagney <ac131313@redhat.com>
10734
10735 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
10736 obsolete.
10737
0a65a603
AC
107382002-01-18 Andrew Cagney <ac131313@redhat.com>
10739
10740 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
10741 * monitor.c, remote-array.c, remote-bug.c: Ditto.
10742 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
10743 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
10744 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
10745 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
10746 * x86-64-linux-nat.c: Ditto.
10747
636a6dfc
JT
107482002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10749
abf22e64 10750 * alpha-tdep.c (alpha_register_name): New function.
636a6dfc
JT
10751 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
10752 (REGISTER_NAME): Define.
10753
acceddb6
JT
107542002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10755
10756 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
10757
ec32e4be
JT
107582002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10759
10760 * alpha-tdep.c: Update copyright years.
10761 (alpha_next_pc): New function.
10762 (alpha_software_single_step): Ditto.
10763 * config/alpha/tm-alpha.h: Add prototype for
10764 alpha_software_single_step.
10765
e771a871
JT
107662002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
10767
10768 * alphabsd-nat.c: Update copyright years.
10769 (fill_gregset): Use regcache_collect.
10770 (fill_fpregset): Likewise.
10771 (fetch_inferior_registers): Only fetch integer registers
10772 if requested to do so.
10773 (store_inferior_registers): Only store integer registers
10774 if requested to do so.
10775
7708fa01
AC
107762002-01-17 Andrew Cagney <ac131313@redhat.com>
10777
10778 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
10779 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
10780 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
10781 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
10782 * config/alpha/fbsd.mh (XDEPFILES): Delete.
10783 * config/arm/linux.mh (XDEPFILES): Delete.
10784 * config/arm/nbsd.mh (XDEPFILES): Delete.
10785 * config/i386/i386dgux.mh (XDEPFILES): Delete.
10786 * config/i386/i386sol2.mh (XDEPFILES): Delete.
10787 * config/i386/i386m3.mh (XDEPFILES): Delete.
10788 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
10789 * config/i386/i386gnu.mh (XDEPFILES): Delete.
10790 * config/i386/fbsd.mh (XDEPFILES): Delete.
10791 * config/i386/i386bsd.mh (XDEPFILES): Delete.
10792 * config/i386/i386sco5.mh (XDEPFILES): Delete.
10793 * config/i386/i386v4.mh (XDEPFILES): Delete.
10794 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
10795 * config/i386/i386sco4.mh (XDEPFILES): Delete.
10796 * config/i386/i386aix.mh (XDEPFILES): Delete.
10797 * config/i386/go32.mh (XDEPFILES): Delete.
10798 * config/i386/cygwin.mh (XDEPFILES): Delete.
10799 * config/i386/i386lynx.mh (XDEPFILES): Delete.
10800 * config/i386/i386mach.mh (XDEPFILES): Delete.
10801 * config/i386/i386v32.mh (XDEPFILES): Delete.
10802 * config/i386/linux.mh (XDEPFILES): Delete.
10803 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
10804 * config/i386/ncr3000.mh (XDEPFILES): Delete.
10805 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
10806 * config/i386/i386sco.mh (XDEPFILES): Delete.
10807 * config/i386/i386v.mh (XDEPFILES): Delete.
10808 * config/i386/nbsd.mh (XDEPFILES): Delete.
10809 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
10810 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
10811 * config/i386/symmetry.mh (XDEPFILES): Delete.
10812 * config/i386/obsd.mh (XDEPFILES): Delete.
10813 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
10814 * config/ia64/linux.mh (XDEPFILES): Delete.
10815 * config/ia64/aix.mh (XDEPFILES): Delete.
10816 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
10817 * config/m68k/dpx2.mh (XDEPFILES): Delete.
10818 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
10819 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
10820 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
10821 * config/m68k/linux.mh (XDEPFILES): Delete.
10822 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
10823 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
10824 * config/m68k/nbsd.mh (XDEPFILES): Delete.
10825 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
10826 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
10827 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
10828 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
10829 * config/m88k/delta88.mh (XDEPFILES): Delete.
10830 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
10831 * config/m88k/m88k.mh (XDEPFILES): Delete.
10832 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
10833 * config/mips/linux.mh (XDEPFILES): Delete.
10834 * config/mips/irix6.mh (XDEPFILES): Delete.
10835 * config/mips/irix5.mh (XDEPFILES): Delete.
10836 * config/mips/irix4.mh (XDEPFILES): Delete.
10837 * config/mips/irix3.mh (XDEPFILES): Delete.
10838 * config/mips/decstation.mh (XDEPFILES): Delete.
10839 * config/mips/mipsm3.mh (XDEPFILES): Delete.
10840 (NATDEPFILES): Move core-aout.o to here.
10841 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
10842 * config/pa/hpux1020.mh (XDEPFILES): Delete.
10843 * config/pa/hppabsd.mh (XDEPFILES): Delete.
10844 * config/pa/hppahpux.mh (XDEPFILES): Delete.
10845 * config/pa/hpux11w.mh (XDEPFILES): Delete.
10846 * config/pa/hppaosf.mh (XDEPFILES): Delete.
10847 * config/pa/hpux11.mh (XDEPFILES): Delete.
10848 * config/powerpc/aix.mh (XDEPFILES): Delete.
10849 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
10850 * config/powerpc/linux.mh (XDEPFILES): Delete.
10851 * config/romp/rtbsd.mh: Rename XDEPFILES.
10852 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
10853 * config/rs6000/aix4.mh (XDEPFILES): Delete.
10854 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
10855 * config/s390/s390.mh (XDEPFILES): Delete.
10856 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
10857 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
10858 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
10859 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
10860 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
10861 * config/sparc/nbsd.mh (XDEPFILES): Delete.
10862 * config/sparc/linux.mh (XDEPFILES): Delete.
10863 * config/vax/vaxult.mh (XDEPFILES): Delete.
10864 * config/vax/vaxult2.mh (XDEPFILES): Delete.
10865 * Makefile.in (DEPFILES): Remove XDEPFILES.
10866
375fc983
AC
108672002-01-17 Andrew Cagney <ac131313@redhat.com>
10868
10869 * utils.c (internal_verror): Fix comments, default is yes not no.
10870 Update queries to match. Default to quit and dump core.
10871
8926118c
AC
108722002-01-17 Andrew Cagney <ac131313@redhat.com>
10873
10874 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
10875 copyright.
10876 * defs.h, event-top.c, gdbcmd.h: Ditto.
10877 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
10878 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
10879 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
10880 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
10881 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
10882 * mi/mi-main.c:Ditto.
10883
10884 * stack.c, symfile.c: Update copyright.
10885
45b7b345
DJ
108862002-01-17 Daniel Jacobowitz <drow@mvista.com>
10887
db728ff7
DJ
10888 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
10889 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
10890 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
10891 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
45b7b345 10892
db728ff7
DJ
108932002-01-17 Daniel Jacobowitz <drow@mvista.com>
10894
10895 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
10896 * gdbserver/low-lynx.c (myattach): Likewise.
10897 * gdbserver/low-nbsd.c (myattach): Likewise.
10898 * gdbserver/low-sim.c (myattach): Likewise.
10899 * gdbserver/low-sparc.c (myattach): Likewise.
10900 * gdbserver/low-sun3.c (myattach): Likewise.
10901
10902 * gdbserver/low-linux.c (myattach): New function.
45b7b345 10903
db728ff7 10904 * gdbserver/server.c (attach_inferior): New function.
45b7b345
DJ
10905 (main): Handle "--attach".
10906
8de3c354
AC
109072002-01-16 Andrew Cagney <ac131313@redhat.com>
10908
10909 * MAINTAINERS (language support): Daniel Jacobwitz is C++
10910 maintainer.
10911
b0129042
DJ
109122002-01-15 Daniel Jacobowitz <drow@mvista.com>
10913
10914 * c-typeprint.c (is_type_conversion_operator): Add additional
10915 check for non-conversion operators.
10916
ba8679fb 109172002-01-15 Michael Snyder <msnyder@redhat.com>
2bf543a6
MS
10918
10919 * linux-proc.c: Add "info proc" command, a la procfs.c.
10920 (read_mapping): New function, abstract and re-use code.
10921 (linux_find_memory_regions): Use new func read_mapping.
10922 (linux_info_proc_cmd): New function, implement "info proc".
10923 (_initialize_linux_proc): Add new command "info proc".
10924
e4f9b4d5
MS
109252002-01-15 Michael Snyder <msnyder@redhat.com>
10926
10927 * symfile.c (generic_load): Use bfd_map_over_sections method
10928 instead of manipulating bfd structure members directly.
10929 (add_section_size_callback): New function, bfd sections callback
10930 used by generic_load.
10931 (load_sections_callback): New function, bfd sections callback
10932 used by generic_load.
10933
08cf96df
EZ
109342002-01-15 Elena Zannoni <ezannoni@redhat.com>
10935
abf22e64 10936 [Based on work by Jim Blandy]
08cf96df
EZ
10937 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
10938 (builtin_type_vec128): Export.
10939 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
10940 types.
10941 (builtin_type_vec128): New builtin type for 128 bit vector
10942 registers.
10943 (build_gdbtypes): Initialize builtin_type_v16qi and
10944 builtin_type_v8hi. Create the vec128 register builtin type
10945 structure.
10946 (build_builtin_type_vec128): New function.
abf22e64 10947 (_initialize_gdbtypes): Register builtin_type_v16qi and
08cf96df
EZ
10948 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
10949 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
10950 AltiVec register to new builtin type.
10951
d7242108
DJ
109522001-01-15 Daniel Jacobowitz <drow@mvista.com>
10953
10954 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
10955 to make_cv_type.
10956
4ee3352d
AC
109572002-01-14 Andrew Cagney <ac131313@redhat.com>
10958
10959 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
10960 CLEAN_UP_REGISTER_VALUE.
10961 * regcache.c (supply_register): Update only call.
10962
f015b2e7
AC
109632002-01-14 Andrew Cagney <ac131313@redhat.com>
10964
10965 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
10966 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
10967 a29k-*-vxworks* targets as obsolete.
10968
356ae49d
MS
109692002-01-14 Michael Snyder <msnyder@redhat.com>
10970
10971 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
10972 until we can resolve portability issues.
10973 * gregset.h: Remove references to fpxregs.
10974 * gcore.c (gcore_command): Initialize note_sec to NULL.
10975
ade8f45e
AC
109762002-01-13 Andrew Cagney <ac131313@redhat.com>
10977
10978 * signals.c (target_signal_to_name): Rewrite. Only use
10979 signals[].name when in bounds and non-NULL.
abf22e64 10980
89c49e7a
AC
109812002-01-13 Andrew Cagney <ac131313@redhat.com>
10982
10983 From Petr Ledvina <ledvinap@kae.zcu.cz>:
10984 * signals.c (target_signal_to_name): Verify that SIG is within the
10985 bounds of the signals array.
10986
4daa9f9f
AC
109872002-01-13 Andrew Cagney <ac131313@redhat.com>
10988
10989 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
10990
ba4bbdcb
KS
109912002-01-13 Keith Seitz <keiths@redhat.com>
10992
10993 * stack.c (print_frame_info_base): Print the frame's pc
10994 only if when print_frame_info_listing_hook is not defined.
10995
575bbeb6
KS
109962002-01-13 Keith Seitz <keiths@redhat.com>
10997
10998 * varobj.c (varobj_set_value): Make sure that there were no
10999 errors evaluating the object before attempting to set its
11000 value.
11001 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
11002 so this offset adjustment is no longer necessary.
11003 (create_child): Don't set the error flag if the child is
11004 a CPLUS_FAKE_CHILD.
11005 (value_of_child): If value_fetch_lazy fails, return NULL
11006 so that callers will be notified that an error occurred.
11007 (c_value_of_variable): Delay check of variable's validity
11008 until later. We actually want all structs and unions to have
11009 the value "{...}".
11010 Do not return "???" for variables which could not be evaluated.
11011 This error condition must be returned to the caller so that it
11012 can get the error condition from gdb.
11013 (cplus_name_of_child): Adjust index for vptr before figuring
11014 out the name of the child.
11015 (cplus_value_of_child): If a child's (real) parent is not valid,
11016 don't even bother trying to give a value for it. Just return
11017 an error. Change all instances in this function.
11018 (cplus_type_of_child): If our parent is one of the "fake"
11019 parents, we need to get at the type of the real parent, and
11020 derive the child's true type using this information.
11021
b76898ab
AC
110222002-01-13 Andrew Cagney <ac131313@redhat.com>
11023
11024 From 2002-01-09 John Marshall <johnm@falch.net>:
11025 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
11026 sources.redhat.com, and tweak some related URLs which had
11027 suffered from linkrot.
11028
b6649e88
AC
110292002-01-13 Andrew Cagney <ac131313@redhat.com>
11030
11031 From Jeff law:
11032 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
11033 structures passed in registers.
11034
82cc5033
EZ
110352002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
11036
11037 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
11038 white space which prevented compilation. Reported by DSK
11039 <dsk@student.unsw.edu.au>.
11040
ba5f2f8a
MS
110412002-01-11 Michael Snyder <msnyder@redhat.com>
11042
fbd35540
MS
11043 * symfile.c (build_section_addr_info_from_section_tab):
11044 Use bfd access method instead of manipulating bfd directly.
11045 (syms_from_objfile): Ditto.
11046 (simple_overlay_update_1): Ditto.
11047 (simple_overlay_update): Ditto.
11048 (generic_load): Ditto.
11049 (overlay_unmapped_address): FIXME comment, bfd access methods.
11050 (sections_overlap): FIXME comment, bfd access methods.
11051 (pc_in_mapped_range): FIXME comment, bfd access methods.
11052 (pc_in_unmapped_range): FIXME comment, bfd access methods.
11053 (section_is_mapped): FIXME comment, bfd access methods.
11054 (section_is_overlay): FIXME comment, bfd access methods.
11055
ba5f2f8a
MS
11056 * symfile.c (generic_load): Whitespace and long line cleanups.
11057 Remove duplicate variable, change several local variables to
11058 more appropriate data types.
11059 (print_transfer_performance): Use %lu instead of %ld for ulongs.
11060
17df2af6
AC
110612002-01-12 Andrew Cagney <ac131313@redhat.com>
11062
11063 From Peter Schauer:
11064 * language.c (longest_local_hex_string_custom): Use phex_nz to
11065 convert NUM to a hex string.
11066
ec920329
EZ
110672002-01-12 Elena Zannoni <ezannoni@redhat.com>
11068
11069 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
11070 the function.
538a76d6 11071 Update Copyright year.
ec920329 11072
3abd2e01
AC
110732002-01-12 Andrew Cagney <ac131313@redhat.com>
11074
11075 * language.c (longest_raw_hex_string): Delete unused function.
11076
b21b22e0
PS
110772002-01-11 Petr Sorfa <petrs@caldera.com>
11078
11079 * MAINTAINERS (write-after-approval): Add myself.
11080 * dwarf2read.c (read_tag_string_type): Handling of
11081 DW_AT_byte_size.
11082 (read_tag_string_type): FORTRAN fix to prevent propagation of
11083 first string size.
11084 (set_cu_language): Handling of DW_LANG_Fortran95
11085
747fe712
RE
110862002-01-11 Richard Earnshaw <rearnsha@arm.com>
11087
11088 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
11089 GETPID(inferior_ptid).
11090 (store_inferior_registers): Likewise.
11091
f1bea926
JM
110922002-01-10 Jason Merrill <jason@redhat.com>
11093
11094 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
11095 Fix DW_OP_minus.
11096
ae940673
AC
110972002-01-10 Andrew Cagney <ac131313@redhat.com>
11098
11099 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
11100 and bfd/elf32-sh-nbsd.c.
11101
00546b04
MS
111022002-01-10 Michael Snyder <msnyder@redhat.com>
11103
352ed7b4
MS
11104 * NEWS: Mention --pid and corefile/proc-id behavior change.
11105
c18be923
MS
11106 * Makefile.in: Add rules for gcore.o and linux-proc.o.
11107 * gcore.c: Include cli/cli-decode.h instead of command.h.
11108
00546b04
MS
11109 * main.c (captured_main): Add new command line option "--pid".
11110 If the second command line argument (following the symbol-file)
11111 begins with a digit, try to attach to it before trying to open
11112 it as a corefile.
11113 (print_gdb_help): Document the "--pid" argument.
11114
db60ec62
EZ
111152002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
11116
11117 * completer.c (command_completer): New function.
11118
11119 * completer.h <command_completer>: Add prototype.
11120
11121 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
11122 completer for the "help" command.
11123
39c22d1a
JM
111242002-01-09 Jason Merrill <jason@redhat.com>
11125
11126 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
11127
c564377f
MS
111282002-01-09 Michael Snyder <msnyder@redhat.com>
11129
975aec09
MS
11130 * i386-linux-nat.c (fill_fpxregset): Make global.
11131 (store_fpxregset): Ditto.
11132
db4a10fa
MS
11133 * gregset.h (gdb_fpxregset_t): Define.
11134 (supply_fpxregset): Prototype.
11135 (fill_fpxregset): Prototype.
11136
c564377f
MS
11137 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
11138
c3d45d70
RE
111392002-01-09 Richard Earnshaw <rearnsha@arm.com>
11140
11141 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
11142 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
11143 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
11144
fcc87af1
AC
111452002-01-09 Andrew Cagney <ac131313@redhat.com>
11146
11147 * MAINTAINERS: Update target maintainer rules so that any
11148 Maintainer can approve a tested patch for a maintenance-only
11149 target.
11150
dd96c05b
RE
111512002-01-09 Richard Earnshaw <rearnsha@arm.com>
11152
d4297db9 11153 * MAINTAINERS (write-after-approval): Add myself.
dd96c05b 11154
d4297db9 11155 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
dd96c05b
RE
11156 IN_SIGTRAMP.
11157
145fdc6e
MS
111582002-01-08 Michael Snyder <msnyder@redhat.com>
11159
11160 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
11161 real name of the executable, rather than the /proc name.
11162
be4d1333
MS
111632002-01-03 Michael Snyder <msnyder@redhat.com>
11164
11165 Implement a "generate-core-file" command in gdb, save target state.
11166 * gcore.c: New file. Implement new command 'generate-core-file'.
11167 Save a corefile image of the current state of the inferior.
11168 * linux-proc.c: Add linux-specific code for saving corefiles.
11169 * target.h (struct target_ops): Add new target vectors for saving
11170 corefiles; to_find_memory_regions and to_make_corefile_notes.
11171 (target_find_memory_regions): New macro.
11172 (target_make_corefile_notes): New macro.
11173 * target.c (update_current_target): Inherit new target methods.
11174 (dummy_find_memory_regions): New place-holder method.
11175 (dummy_make_corefile_notes): New place-holder method.
11176 (init_dummy_target): Initialize new dummy target vectors.
11177 * exec.c (exec_set_find_memory_regions): New function.
11178 Allow the exec_ops vector for memory regions to be taken over.
11179 (exec_make_note_section): New function, target vector method.
11180 * defs.h (exec_set_find_memory_regions): Export prototype.
11181 * procfs.c (proc_find_memory_regions): New function, corefile method.
11182 (procfs_make_note_section): New function, corefile method.
11183 (init_procfs_ops): Set new target vector pointers.
11184 (find_memory_regions_callback): New function.
11185 (procfs_do_thread_registers): New function.
11186 (procfs_corefile_thread_callback): New function.
11187 * sol-thread.c (sol_find_memory_regions): New function.
11188 (sol_make_note_section): New function.
11189 (init_sol_thread_ops): Initialize new target vectors.
11190 * inftarg.c (inftarg_set_find_memory_regions): New function.
11191 Allow to_find_memory_regions vector to be taken over.
11192 (inftarg_set_make_corefile_notes): New function.
11193 Allow to_make_corefile_notes vector to be taken over.
11194 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
11195 interface layer if not target_has_execution (may be a corefile).
11196 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
11197 * config/sparc/sun4sol2.mh: Ditto.
11198 * config/alpha/alpha-linux.mh: Ditto.
11199 * config/arm/linux.mh: Ditto.
11200 * config/i386/x86-64linux.mh: Ditto.
11201 * config/ia64/linux.mh: Ditto.
11202 * config/m68k/linux.mh: Ditto.
11203 * config/mips/linux.mh: Ditto.
11204 * config/powerpc/linux.mh: Ditto.
11205 * config/sparc/linux.mh: Ditto.
11206
c6b92abd
MS
112072002-01-07 Michael Snyder <msnyder@redhat.com>
11208
11209 * arm-linux-nat.c: Remove references to regcache.c internal data
11210 (registers[] and register_valid[]).
11211
4b09dc8c
MS
112122002-01-07 Michael Snyder <msnyder@redhat.com>
11213
abf22e64
AJ
11214 * linux-proc.c: New file. Implement child_pid_to_exec_file,
11215 so that attaching to a pid will automatically read the process's
4b09dc8c
MS
11216 symbol file and shlibs.
11217 * Makefile.in: Add rule for linux-proc.o.
11218 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
11219 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
11220 * config/arm/linux.mh: Ditto.
11221 * config/i386/linux.mh: Ditto.
11222 * config/i386/x86-64linux.mh: Ditto.
11223 * config/ia64/linux.mh: Ditto.
11224 * config/m68k/linux.mh: Ditto.
11225 * config/mips/linux.mh: Ditto.
11226 * config/powerpc/linux.mh: Ditto.
11227 * config/sparc/linux.mh: Ditto.
11228
c25b74ac
PM
112292002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
11230
11231 * win32-nat.c: Add i386-tdep.h dependency.
11232
94cd915f
MS
112332002-01-07 Michael Snyder <msnyder@redhat.com>
11234
c7cccb76
MS
11235 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
11236 instead of bfd_get_arch_size. Don't bail out just because
11237 there's no exec_bfd.
abf22e64 11238
34c0bd93
MS
11239 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
11240 * p-valprint.c (pascal_object_print_value): Ditto.
11241 * somread.c (som_symtab_read): Ditto.
11242 * symfile.c (simple_free_overlay_region_table): Ditto.
11243 * valops.c (value_assign): Ditto.
11244
21c1c920
MS
11245 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
11246 use tilde_expand and strerror for opening save-tracepoints file.
11247
5bbd998e
MS
11248 * thread-db.c (thread_db_new_objfile): Indendation fix.
11249
94cd915f
MS
11250 * infptrace.c (GDB_MAX_ALLOCA): New define.
11251 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
abf22e64 11252 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
94cd915f
MS
11253 can be overridden with whatever value is appropriate to the host).
11254 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
11255 alloca to allocate potentially large buffer.
11256 * rs6000-nat.c (child_xfer_memory): Ditto.
11257 * symm-nat.c (child_xfer_memory): Ditto.
11258 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
11259
494e8a93
JSC
112602002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
11261
11262 From Nick Clifton <nickc@redhat.com>
11263 * d10v-tdep.c: Set STACK_START to 0x200bffe.
11264
d0e1d48e
MS
112652002-01-07 Michael Snyder <msnyder@redhat.com>
11266
abf22e64 11267 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
d0e1d48e
MS
11268 Don't use exec_bfd if it's NULL.
11269
290b2c7a
MK
112702002-01-06 Mark Kettenis <kettenis@gnu.org>
11271
abf22e64 11272 * valops.c (value_arg_coerce): Fix formatting.
290b2c7a 11273
aef21287
AC
112742002-01-06 Andrew Cagney <ac131313@redhat.com>
11275
11276 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
11277 * gnu-nat.c: Ditto.
11278
30efa627
AC
112792002-01-06 Andrew Cagney <ac131313@redhat.com>
11280
11281 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
11282 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
11283 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
11284 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
11285 z8k-coff have not been multi-arched. Update z8k-coff build
11286 status.
11287
9b4ff276
AC
112882002-01-06 Andrew Cagney <ac131313@redhat.com>
11289
11290 * MAINTAINERS: Mark a29k target as obsolete.
11291 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
11292 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
11293 comments.
11294 * NEWS: Note that a29k targets are obsolete.
11295 * a29k-tdep.c: Mark as obsolete.
11296 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
11297 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
11298 a29k-*-vxworks* targets as obsolete.
11299 * remote-adapt.c: Obsolete.
11300 * remote-eb.c: Obsolete.
11301 * remote-mm.c: Obsolete.
11302 * remote-udi.c: Obsolete.
11303 * config/a29k/a29k-udi.mt: Obsolete.
11304 * config/a29k/a29k.mt: Obsolete.
11305 * config/a29k/tm-a29k.h: Obsolete.
11306 * config/a29k/tm-vx29k.h: Obsolete.
11307 * config/a29k/vx29k.mt: Obsolete.
11308
a9011d31
AC
113092002-01-05 Andrew Cagney <ac131313@redhat.com>
11310
11311 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
11312 with BFD_ENDIAN_BIG.
11313
9299404e
AC
113142002-01-05 Andrew Cagney <ac131313@redhat.com>
11315
11316 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
11317 * configure, config.in: Re-generate.
11318 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
11319 * defs.h: Do not include <endian.h>.
11320
7e89e357
JT
113212002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
11322
11323 * acconfig.h (HAVE_PT_GETXMMREGS): New.
11324 * config.in: Regenerate.
11325 * configure.in: Update copyright years.
11326 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
11327 * configure: Regenerate.
11328 * i386bsd-nat.c: Update copyright years.
11329 (fill_gregset): Use regcache_collect.
11330 (fetch_inferior_registers): Only fetch integer registers
11331 if requested to do so. Add support for XMM registers
11332 using PT_GETXMMREGS.
11333 (store_inferior_registers): Only store integer registers
11334 if requested to do so. Add support for XMM registers
11335 using PT_SETXMMREGS.
11336 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
11337 (store_inferior_registers): Remove.
11338 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
11339 (fetch_elfcore_registers): New function.
11340 (i386nbsd_elfcore_fns): New.
11341 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
11342 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
11343 i386bsd-nat.o.
11344 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
11345 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
11346 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
11347 * config/i386/tm-nbsd.h: Update copyright years.
11348 (HAVE_SSE_REGS): Define.
11349 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
11350 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
11351 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
11352 (SIGCONTEXT_PC_OFFSET): Remove.
11353 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
11354
a752853e
AC
113552002-01-05 Andrew Cagney <ac131313@redhat.com>
11356
11357 * configure.tgt: Remove powerpc-*-macos* target.
11358 * config/m68k/xm-mpw.h: Delete file.
11359 * config/xm-mpw.h: Delete file.
11360 * ser-mac.c: Delete file.
11361 * mpw-make.sed: Delete file.
11362 * mpw-config.in: Delete file.
11363 * mac-xdep.c: Delete file.
11364 * mac-gdb.r: Delete file.
11365 * mac-defs.h: Delete file.
11366 * mac-nat.c: Delete file.
11367 * config/powerpc/macos.mh: Delete file.
11368 * config/powerpc/macos.mt: Delete file.
11369 * config/powerpc/nm-macos.h: Delete file.
11370 * config/powerpc/tm-macos.h: Delete file.
11371 * source.c (openp, open_source_file): Remove obsolete code.
11372 * top.c (gdb_readline): Ditto.
11373 * utils.c (query): Ditto.
11374 * event-top.c (display_gdb_prompt): Ditto.
11375 * Makefile.in (ser-mac.o): Delete obsolete target.
11376 * NEWS: Update.
11377
d7449b42
AC
113782002-01-04 Andrew Cagney <ac131313@redhat.com>
11379
11380 * defs.h (BIG_ENDIAN): Delete macro definition.
11381 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
11382 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
11383 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
11384 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
11385 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
11386 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
11387 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
11388 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
11389 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
11390 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
11391 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
11392 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
11393 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11394 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
11395 * gdbarch.c: Re-generate.
11396
356374e8
DJ
113972002-01-04 Daniel Jacobowitz <drow@mvista.com>
11398
11399 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
11400 for core files.
11401
a2b8f8f8
JT
114022002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
11403
11404 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
11405
12466af9
AC
114062002-01-04 Andrew Cagney <ac131313@redhat.com>
11407
11408 * value.h (value_ptr): Delete typedef.
11409
3549ab40
JT
114102002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
11411
11412 * i386nbsd-nat.c: Update copyright years.
11413 Include i386-tdep.h.
11414
fedbd091
EZ
114152002-01-04 Elena Zannoni <ezannoni@redhat.com>
11416
11417 * stabsread.c: Update copyright years.
11418
11419 From Debashis Mahata <debashis.mahata@wipro.com>:
11420 (read_struct_fields): Deal with Sun C compiler erroneous stab
11421 output for structs and unions.
fec8b34f 11422 Fix PR gdb/269.
fedbd091 11423
eb43544b
DJ
114242002-01-04 Daniel Jacobowitz <drow@mvista.com>
11425
11426 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
11427 prototype.
11428
1514d34e
DJ
114292002-01-04 Daniel Jacobowitz <drow@mvista.com>
11430
11431 * cp-abi.c: Fix whitespace.
11432 (baseclass_offset): New wrapper function.
11433 * cp-abi.h (baseclass_offset): Add prototype.
11434 (struct cp_abi_ops): Add baseclass_offset pointer.
11435
11436 * valops.c (vb_match): Move to...
11437 * gnu-v2-abi.c (vb_match): here.
11438 * valops.c (baseclass_offset): Move to...
11439 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
11440
11441 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
11442
11443 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
11444 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
11445 * hpacc-abi.c (init_hpacc_ops): Likewise.
11446
7f8c9282
DJ
114472002-01-04 Daniel Jacobowitz <drow@mvista.com>
11448
11449 * valops.c (find_overload_match): Accept obj as a
11450 reference parameter. Update it before returning.
11451 * value.h (find_overload_match): Update prototype.
11452 * eval.c (evaluate_subexp_standard): Pass object to
11453 find_overload_match by reference.
11454
f23631e4
AC
114552002-01-03 Andrew Cagney <ac131313@redhat.com>
11456
11457 * valarith.c: Replace value_ptr with struct value pointer. Remove
11458 register attribute from value declarations.
11459 * valops.c: Ditto.
11460 * value.h: Ditto.
11461 * scm-lang.c (scm_lookup_name): Ditto.
11462
79e10fab 114632002-01-03 Michael Snyder <msnyder@redhat.com>
abf22e64 11464
79e10fab
AC
11465 Abstract the functionality of iterating over mapped memory
11466 regions into a general purpose iterator function.
abf22e64 11467 * procfs.c (iterate_over_mappings): New function, general purpose
79e10fab
AC
11468 iterator for memory sections.
11469 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
11470 (solib_mappings_callback): New function, callback for above.
11471 (info_proc_mappings): Reimpliment using iterate_over_mappings.
11472 (info_mappings_callback): New function, callback for above.
11473
11474 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
11475
c5ad026a
MK
114762002-01-01 Mark Kettenis <kettenis@gnu.org>
11477
d2a7c97a
MK
11478 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
11479 * i386-tdep.c: Include "elf-bfd.h".
11480 (process_note_abi_tag_sections): New function.
11481 (i386_gdbarch_init): Add code to recognize various OS/ABI
11482 combinations.
11483
c5ad026a
MK
11484 * maint.c (_initialize_maint_cmds): Add missing \ in
11485 string-literal.
11486
a1a5b71e 11487For older changes see ChangeLog-2001
c906108c
SS
11488\f
11489Local Variables:
11490mode: change-log
11491left-margin: 8
11492fill-column: 74
11493version-control: never
11494End:
This page took 0.846294 seconds and 4 git commands to generate.