* utils.c (do_write): New function.
[binutils-gdb.git] / gdb / ChangeLog
1 2002-02-01 Andrew Cagney <ac131313@redhat.com>
2
3 * utils.c (do_write): New function.
4 (error_stream): Rewrite combining the code from error_begin and
5 verror.
6 (verror): Rewrite using error_stream.
7 (error_begin): Delete function.
8
9 2002-02-01 Andrew Cagney <ac131313@redhat.com>
10
11 * utils.c (error_begin): Make static.
12 * defs.h (error_begin): Delete declaration.
13
14 * linespec.c (cplusplus_error): Replace cplusplus_hint.
15 (decode_line_1): Use cplusplus_error instead of error_begin,
16 cplusplus_hint and return_to_top_level.
17 * coffread.c (coff_symfile_read): Use error instead of error_begin
18 and return_to_top_level.
19 * infrun.c (default_skip_permanent_breakpoint): Ditto.
20
21 2002-02-01 Andrew Cagney <ac131313@redhat.com>
22
23 * language.h (type_error, range_error): Make string parameter
24 constant.
25 * language.c (warning_pre_print): Delete extern declaration.
26 * dwarfread.c (warning_pre_print): Ditto.
27 * language.c (type_error, range_error): Rewrite to use verror and
28 vwarning instead of warning_begin.
29
30 2002-02-01 Michael Snyder <msnyder@redhat.com>
31
32 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
33 (set_ignore_count): Move misplaced comment back where it belongs.
34
35 2002-02-01 Andrew Cagney <ac131313@redhat.com>
36
37 * command.h (NO_FUNCTION): Delete macro.
38 * cli/cli-decode.h (NO_FUNCTION): Ditto.
39 * top.c (execute_command): Replace NO_FUNCTION with NULL.
40 * tracepoint.c (_initialize_tracepoint): Ditto.
41 * cli/cli-decode.c (add_set_cmd): Ditto.
42 * cli/cli-cmds.c (init_cli_cmds): Ditto.
43
44 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
45
46 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
47 Update ``this'' pointer when calling virtual functions.
48
49 2002-02-01 Michael Snyder <msnyder@redhat.com>
50
51 * breakpoint.c (create_temp_exception_breakpoint): Delete.
52 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
53
54 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
55
56 * regformats/reg-arm.dat: New file.
57 * regformats/reg-i386.dat: New file.
58 * regformats/reg-ia64.dat: New file.
59 * regformats/reg-m68k.dat: New file.
60 * regformats/reg-mips.dat: New file.
61 * regformats/reg-ppc.dat: New file.
62 * regformats/reg-sh.dat: New file.
63 * regformats/regdef.h: New file.
64 * regformats/regdat.sh: New file.
65
66 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
67
68 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
69 (arm_frame_args_address, arm_frame_locals_address): New functions.
70 (arm_frame_num_args): New function.
71 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
72 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
73 (FRMA_NUM_ARGS): Call arm_frame_num_args.
74
75 2002-01-31 Michael Snyder <msnyder@redhat.com>
76
77 * breakpoint.c (break_at_finish_command): Export.
78 (break_at_finish_at_depth_command): Export.
79 (tbreak_at_finish_command): Export.
80 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
81 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
82 "tbreak" commands, which are HPPA specific.
83
84 * printcmd.c (disassemble_command): Remove an ancient
85 artifact of an old merge.
86
87 * symfile.h (enum overlay_debugging_state):
88 Define enum constant values for overlay mode.
89 * symfile.c (overlay_debugging): Use enums instead of literals.
90 (overlay_is_mapped, overlay_auto_command,
91 overlay_manual_command): Ditto.
92
93 * breakpoint.c (insert_breakpoints, remove_breakpoint,
94 breakpoint_here_p, breakpoint_inserted_here_p,
95 breakpoint_thread_match, bpstat_stop_status,
96 describe_other_breakpoints, check_duplicates, clear_command):
97 Coding standard fixes.
98
99 * target.c (target_xfer_memory): Add spaces, coding standard.
100 (do_xfer_memory): Add missing line to trust-readonly
101 code: check bfd SEC_READONLY flag for section.
102
103 2002-01-31 Andrew Cagney <ac131313@redhat.com>
104
105 * PROBLEMS: Fix typo, 5.1->5.1.1.
106
107 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
108
109 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
110 data symbols, since we search based on textlow and texthigh.
111 (find_pc_sect_symtab): Likewise.
112
113 2002-01-30 Andrew Cagney <ac131313@redhat.com>
114
115 * defs.h (vwarning): Declare.
116 (warning_begin): Delete declaration.
117 * utils.c (vwarning): New function.
118 (warning): Call vwarning.
119 (warning_begin): Delete function.
120
121 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
122 the warning message.
123 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
124 warning_begin.
125
126 2002-01-30 Michael Snyder <msnyder@redhat.com>
127
128 * NEWS: Mention "set trust-readonly-sections" command.
129 Mention generate-core-file command.
130
131 2002-01-15 Michael Snyder <msnyder@redhat.com>
132
133 * target.c: New command, "set trust-readonly-sections on".
134 (do_xfer_memory): Honor the suggestion to trust readonly sections
135 by reading them from the object file instead of from the target.
136 (initialize_targets): Register command "set trust-readonly-sections".
137
138 2002-01-29 Andrew Cagney <ac131313@redhat.com>
139
140 * parse.c (target_map_name_to_register): Simplify, search regs and
141 pseudo-regs using a single loop.
142
143 2002-01-30 Andrew Cagney <ac131313@redhat.com>
144
145 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
146
147 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
148
149 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
150 * config/i386/i386v42mp.mh: Add i387-nat.o .
151 * i386v4-nat.c: Include i387-nat.h.
152 (supply_fpregset): Use i387_supply_fsave.
153 (fill_fpregset): Use i387_fill_fsave.
154
155 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
156
157 * arm-tdep.c (arm_call_dummy_words): Define.
158 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
159 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
160 (CALL_DUMMY_WORDS): Define.
161 (arm_call_dummy_words): Declare.
162 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
163 (arm_linux_call_dummy_words): Declare.
164
165 2002-01-30 Andreas Schwab <schwab@suse.de>
166
167 * m68klinux-nat.c: Fix last change to use regcache_collect
168 instead of referencing registers[] directly.
169
170 2002-01-29 Andrew Cagney <ac131313@redhat.com>
171
172 * parse.c (target_map_name_to_register): Delete code wrapped in
173 #ifdef REGISTER_NAME_ALIAS_HOOK.
174
175 2002-01-28 Michael Snyder <msnyder@redhat.com>
176
177 * regcache.c (legacy_read_register_gen): Need to be able to
178 read pseudo-register as well as real register.
179 (legacy_write_register_gen): Ditto.
180
181 2002-01-28 Andrew Cagney <ac131313@redhat.com>
182
183 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
184 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
185 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
186 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
187 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
188 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
189 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
190 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
191 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
192 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
193 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
194 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
195 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
196 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
197 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
198 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
199 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
200 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
201 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
202 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
203
204 2002-01-28 Andrew Cagney <ac131313@redhat.com>
205
206 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
207 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
208 (initialize_current_architecture): Update target_byte_order using
209 information from BFD.
210 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
211 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
212 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
213
214 2002-01-28 Andrew Cagney <ac131313@redhat.com>
215
216 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
217 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
218
219 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
220 #ifdef INVALID_FLOAT.
221 * infcmd.c (do_registers_info): Ditto.
222 * values.c (unpack_double): Ditto. Add comment.
223
224 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
225 already commented out.
226
227 2002-01-26 Andreas Schwab <schwab@suse.de>
228
229 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
230 * m68klinux-nat.c: Update ptrace interface for fetching/storing
231 registers and add support for PTRACE_GETREGS.
232
233 2002-01-24 Andrew Cagney <ac131313@redhat.com>
234
235 GDB 5.1.1 released from 5.1 branch.
236 * NEWS: Add 5.1.1 news.
237 * README: Sync with 5.1 branch.
238
239 2002-01-23 Fred Fish <fnf@redhat.com>
240
241 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
242 stabstring on initial malloc. Reallocing will copy it for us,
243 if necessary.
244
245 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
246
247 * Makefile.in (hpread_h): Delete.
248 (HFILES_NO_SRCDIR): Remove hpread.h.
249 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
250 (hpread.o): Update dependencies.
251 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
252
253 * hp-psymtab-read.c: Remove file.
254 * hp-symtab-read.c: Remove file.
255 * hpread.h: Remove file.
256
257 * hpread.c: Merge all contents of hp-psymtab-read.c,
258 hp-symtab-read.c and hpread.h into this file, as it was prior to
259 January 1999.
260
261 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
262 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
263 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
264 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
265
266 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
267
268 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
269 fill_gregset): Call gdbarch_tdep() just once, assign result to
270 variable and use that, instead of calling the function several
271 times.
272
273 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
274
275 * configure.host: Accept sparcv9 as alias for sparc64.
276 * configure.tgt: Likewise.
277
278 2002-01-22 Kevin Buettner <kevinb@redhat.com>
279
280 * solib-aix5.c (build_so_list_from_mapfile)
281 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
282 arguments is not reversed.
283 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
284 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
285
286 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
287
288 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
289 modified version of obsolete sh_fetch_pseudo_register.
290 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
291 (sh4_register_read): New function.
292 (sh_pseudo_register_write): New function. Renamed and modified
293 version of obsolete sh_store_pseudo_register.
294 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
295 (sh4_register_write): New function.
296 (sh_gdbarch_init): Remove setting of gdbarch function
297 fetch_pseudo_register and store_pseudo_register. Remove setting of
298 register_convert_to_raw, register_convert_to_virtual,
299 register_convertible.
300 (sh_sh4_register_convertible): Delete. No longer needed. All is
301 taken care by architecture specific functions
302 register_read/register_write.
303 (sh_sh4_register_convert_to_virtual): Make static.
304 (sh_sh4_register_convert_to_raw): Ditto.
305
306 2002-01-22 Andrew Cagney <ac131313@redhat.com>
307
308 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
309 (floatformat_is_nan, floatformat_mantissa): Ditto.
310
311 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
312 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
313 builtin_type_ieee_double_little,
314 builtin_type_ieee_double_littlebyte_bigword,
315 builtin_type_m68881_ext, builtin_type_i960_ext,
316 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
317 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
318 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
319 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
320
321 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
322
323 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
324 parameter. Set frameless flag if it exists and depended of
325 whether the scanned function is frameless or not.
326 (xstormy16_skip_prologue): If function is frameless, return
327 result of xstormy16_scan_prologue().
328 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
329 call.
330
331 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
332
333 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
334 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
335 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
336 sh_sh4_register_byte, sh_sh4_register_raw_size,
337 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
338 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
339 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
340 sh_store_pseudo_register, sh_do_pseudo_register): Call
341 gdbarch_tdep() just once, assign result to variable and use that,
342 instead of calling the function several times.
343
344 2002-01-20 Mark Kettenis <kettenis@gnu.org>
345
346 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
347 macros instead of LAST_FPU_CTRL_REGNUM.
348 (store_register): Likewise.
349
350 2002-01-21 Jim Blandy <jimb@redhat.com>
351
352 * infcmd.c (run_command): Check that the `exec' target layer's BFD
353 is up-to-date before running the program, not just when a program
354 exits.
355
356 2002-01-21 Fred Fish <fnf@redhat.com>
357
358 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
359 when we have found all instructions we are looking for.
360
361 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
362
363 * arm-tdep.c (arm_register_name): New function.
364 (arm_registers_names): Make static.
365 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
366 (arm_register_name): Declare.
367 (REGISTER_NAME): Use it.
368
369 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
370 Kevin Buettner <kevinb@redhat.com>
371
372 Convert arm targets to new FRAME interface.
373 * arm-tdep.c (struct frame_extra_info): Remove fsr.
374 (arm_frame_find_save_regs): Delete.
375 (arm_frame_init_saved_regs): New.
376 (arm_init_extra_frame_info): Alloacte saved_regs as required.
377 Allocate extra_info as required. Convert all uses of fsr.regs
378 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
379 to use extra_info.
380 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
381 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
382 (check_prologue_cache, save_prologue_cache): Likewise.
383 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
384 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
385 (FRAME_FIND_SAVED_REGS): Delete.
386 (arm_frame_find_saved_regs): Delete prototype.
387 (arm_frame_init_saved_regs): New prototype.
388 (FRAME_INIT_SAVED_REGS): Define.
389
390 2002-01-20 Andrew Cagney <ac131313@redhat.com>
391
392 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
393
394 2002-01-20 Andrew Cagney <ac131313@redhat.com>
395
396 From Jeff Law <law@redhat.com>:
397 * infttrace.c: Include <sys/pstat.h>.
398 (child_pid_to_exec_file): Revamp. Use pstat call to get the
399 exec file if the ttrace equivalent fails.
400
401 2002-01-20 Andrew Cagney <ac131313@redhat.com>
402
403 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
404 (closeLogFile): Ditto.
405
406 2002-01-20 Michael Chastain <mec@shout.net>
407
408 * top.c (print_gdb_version): Bump copyright year to 2002.
409
410 2002-01-20 Andrew Cagney <ac131313@redhat.com>
411
412 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
413 Zannoni and Eli Zaretskii.
414
415 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
416
417 * buildsym.c: Update copyright years.
418 * c-typeprint.c: Likewise.
419 * dwarf2read.c: Likewise.
420 * f-typeprint.c: Likewise.
421 * gdbtypes.c: Likewise.
422 * gdbtypes.h: Likewise.
423 * hp-symtab-read.c: Likewise.
424 * hpread.c: Likewise.
425 * mdebugread.c: Likewise.
426 * p-typeprint.c: Likewise.
427
428 2002-01-20 Andrew Cagney <ac131313@redhat.com>
429
430 * remote-sim.c (gdbsim_open): Simplify code testing the macro
431 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
432 byte-order selectable.
433 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
434 * arch-utils.c: Ditto.
435 (set_endian): Ditto.
436 (set_endian_from_file): Ditto.
437 * gdbserver/low-sim.c (create_inferior): Ditto.
438 * gdbarch.sh: Ditto.
439 * gdbarch.h: Re-generate.
440 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
441 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
442 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
443 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
444 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
445 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
446 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
447 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
448 macro definition.
449 * config/mips/tm-wince.h: Remove #undef of macro
450 TARGET_BYTE_ORDER_SELECTABLE.
451 * config/sh/tm-wince.h: Ditto.
452
453 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
454
455 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
456 member function fields. Add accessor macro
457 TYPE_FN_FIELD_ARTIFICIAL.
458 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
459 * c-typeprint.c (c_type_print_base): Skip artificial member
460 functions.
461
462 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
463
464 * f-typeprint.c: Delete unused function f_type_print_args.
465 * p-typeprint.c: Delete unused function pascal_type_print_args.
466
467 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
468
469 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
470 comment. Add ``artificial'' to ``union field_location''.
471
472 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
473
474 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
475 * mdebugread.c (parse_symbol): Likewise.
476 * stabsread.c (define_symbol): Likewise.
477 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
478 initializing TYPE_FIELD_BITPOS to n (obsolete).
479 (hpread_doc_function_type): Likewise.
480 * hpread.c (hpread_function_type): Likewise.
481
482 2002-01-20 Andrew Cagney <ac131313@redhat.com>
483
484 * configure.in (host_makefile_frag): Only require a host makefile
485 fragment when a native build.
486 * configure: Re-generate.
487
488 2002-01-20 Andrew Cagney <ac131313@redhat.com>
489
490 * doublest.h (floatformat_from_type): Declare.
491 * doublest.c (floatformat_from_type): New function.
492 (convert_typed_floating): Use.
493
494 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
495 call to function floatformat_from_type.
496
497 * gdbarch.sh (IEEE_FLOAT): Delete.
498 * gdbarch.h, gdbarch.c: Re-generate.
499 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
500 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
501 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
502 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
503 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
504 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
505 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
506 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
507 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
508 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
509 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
510 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
511
512 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
513 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
514 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
515 * sh-tdep.c (sh_gdbarch_init): Ditto.
516 * mips-tdep.c (mips_gdbarch_init): Ditto.
517 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
518 * cris-tdep.c (cris_gdbarch_init): Ditto.
519
520 2002-01-20 Jiri Smid <smid@suse.cz>
521
522 * configure.host, configure.tgt: Support x86-64.
523 * NEWS: Note new target x86-64.
524
525 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
526 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
527 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
528 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
529 x86-64-linux-nat.o): Fix dependencies.
530
531 2002-01-19 Andrew Cagney <ac131313@redhat.com>
532
533 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
534 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
535 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
536 * config/sparc/xm-sun4os4.h: Delete file.
537 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
538
539 2002-01-19 Andrew Cagney <ac131313@redhat.com>
540
541 * config/sparc/sparclynx.mh (XM_FILE): Delete.
542 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
543 * config/m68k/m68klynx.mh (XM_FILE): Delete.
544 * config/i386/i386lynx.mh (XM_FILE): Delete.
545 * config/rs6000/xm-rs6000ly.h: Delete file.
546 * config/sparc/xm-sparclynx.h: Delete file.
547 * config/m68k/xm-m68klynx.h: Delete file.
548 * config/i386/xm-i386lynx.h: Delete file.
549 * config/xm-lynx.h: Delete file.
550 * config/djgpp/fnchange.lst: Update.
551
552 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
553
554 * alpha-tdep.c (alpha_register_byte): New function.
555 (alpha_register_raw_size): Ditto.
556 (alpha_register_virtual_size): Ditto.
557 (alpha_skip_prologue_internal): Renamed from
558 alpha_skip_prologue.
559 (alpha_skip_prologue): New version that calls
560 alpha_skip_prologue_internal.
561 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
562 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
563 second argument from alpha_skip_prologue.
564 (REGISTER_BYTE): Use alpha_register_byte.
565 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
566 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
567 (FRAMELESS_FUNCTION_INVOCATION): Use
568 generic_frameless_function_invocation_not.
569 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
570 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
571
572 2002-01-19 Andrew Cagney <ac131313@redhat.com>
573
574 * config/mips/xm-news-mips.h: Delete file.
575 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
576
577 * config/m88k/xm-m88k.h: Delete file.
578 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
579 * config/m88k/xm-delta88v4.h: Ditto.
580 * config/m88k/xm-delta88.h: Ditto.
581
582 * config/alpha/xm-fbsd.h: Delete file.
583 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
584
585 * config/sparc/xm-sparc.h: Delete file.
586 * Makefile.in (xm-sun4os4.h): Delete dependency.
587 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
588 * config/sparc/xm-sun4os4.h: Ditto.
589 * config/sparc/xm-linux.h: Ditto.
590
591 * config/i386/xm-windows.h: Delete file.
592
593 2002-01-19 Andrew Cagney <ac131313@redhat.com>
594
595 * utils.c: Include <sys/param.h> for MAXPATHLEN.
596 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
597
598 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
599
600 * alpha-tdep.c (alpha_call_dummy_words): New.
601 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
602 (CALL_DUMMY_P): Define.
603 (CALL_DUMMY_WORDS): Define.
604 (SIZEOF_CALL_DUMMY_WORDS): Define.
605
606 2002-01-19 Per Bothner <per@bothner.com>
607
608 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
609 isn't NULL, which can happen with some gcj-3.x-produced code.
610
611 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
612
613 * alpha-tdep.c (alpha_register_virtual_type): New function.
614 (alpha_init_frame_pc_first): Ditto.
615 (alpha_fix_call_dummy): Ditto.
616 (alpha_store_struct_return): Ditto.
617 (alpha_extract_struct_value_address): Ditto.
618 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
619 alpha_register_virtual_type.
620 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
621 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
622 alpha_extract_struct_value_address.
623 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
624 (INIT_FRAME_PC): Use init_frame_pc_noop.
625 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
626
627 2002-01-19 Mark Kettenis <kettenis@gnu.org>
628
629 * i386gnu-nat.c: Include "i386-tdep.h".
630 (fetch_fpregs): Simplify code dealing with uninitialized floating
631 point states such that it doesn't require FP7_REGNUM.
632
633 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
634
635 * alpha-tdep.c (frame_extra_info): New.
636 (alpha_find_saved_regs): Make static. Use
637 frame->extra_info.
638 (alpha_frame_init_saved_regs): New function.
639 (alpha_frame_saved_pc): Use frame->extra_info.
640 (temp_saved_regs): Don't declare as struct frame_saved_regs.
641 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
642 (init_extra_frame_info): Rename to...
643 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
644 (alpha_print_extra_frame_info): New function.
645 (alpha_frame_locals_address): Ditto.
646 (alpha_frame_args_address): Ditto.
647 (alpha_pop_frame): Use frame->extra_info.
648 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
649 alpha_frame_args_address.
650 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
651 (alpha_find_saved_regs): Remove prototype.
652 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
653 (EXTRA_FRAME_INFO): Remove.
654 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
655 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
656
657 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
658
659 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
660 (alpha_cannot_fetch_register): Ditto.
661 (alpha_cannot_store_register): Ditto.
662 (alpha_register_convertible): Ditto.
663 (alpha_use_struct_convention): Ditto.
664 * config/alpha/tm-alpha.h: Update copyright years.
665 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
666 (INNER_THAN): Use core_addr_lessthan.
667 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
668 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
669 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
670 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
671 (FRAME_CHAIN): Remove unnecessary cast.
672
673 2002-01-18 Andrew Cagney <ac131313@redhat.com>
674
675 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
676 obsolete.
677
678 2002-01-18 Andrew Cagney <ac131313@redhat.com>
679
680 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
681 * monitor.c, remote-array.c, remote-bug.c: Ditto.
682 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
683 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
684 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
685 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
686 * x86-64-linux-nat.c: Ditto.
687
688 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
689
690 * alpha-tdep.c (alpha_register_name): New function.
691 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
692 (REGISTER_NAME): Define.
693
694 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
695
696 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
697
698 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
699
700 * alpha-tdep.c: Update copyright years.
701 (alpha_next_pc): New function.
702 (alpha_software_single_step): Ditto.
703 * config/alpha/tm-alpha.h: Add prototype for
704 alpha_software_single_step.
705
706 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
707
708 * alphabsd-nat.c: Update copyright years.
709 (fill_gregset): Use regcache_collect.
710 (fill_fpregset): Likewise.
711 (fetch_inferior_registers): Only fetch integer registers
712 if requested to do so.
713 (store_inferior_registers): Only store integer registers
714 if requested to do so.
715
716 2002-01-17 Andrew Cagney <ac131313@redhat.com>
717
718 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
719 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
720 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
721 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
722 * config/alpha/fbsd.mh (XDEPFILES): Delete.
723 * config/arm/linux.mh (XDEPFILES): Delete.
724 * config/arm/nbsd.mh (XDEPFILES): Delete.
725 * config/i386/i386dgux.mh (XDEPFILES): Delete.
726 * config/i386/i386sol2.mh (XDEPFILES): Delete.
727 * config/i386/i386m3.mh (XDEPFILES): Delete.
728 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
729 * config/i386/i386gnu.mh (XDEPFILES): Delete.
730 * config/i386/fbsd.mh (XDEPFILES): Delete.
731 * config/i386/i386bsd.mh (XDEPFILES): Delete.
732 * config/i386/i386sco5.mh (XDEPFILES): Delete.
733 * config/i386/i386v4.mh (XDEPFILES): Delete.
734 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
735 * config/i386/i386sco4.mh (XDEPFILES): Delete.
736 * config/i386/i386aix.mh (XDEPFILES): Delete.
737 * config/i386/go32.mh (XDEPFILES): Delete.
738 * config/i386/cygwin.mh (XDEPFILES): Delete.
739 * config/i386/i386lynx.mh (XDEPFILES): Delete.
740 * config/i386/i386mach.mh (XDEPFILES): Delete.
741 * config/i386/i386v32.mh (XDEPFILES): Delete.
742 * config/i386/linux.mh (XDEPFILES): Delete.
743 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
744 * config/i386/ncr3000.mh (XDEPFILES): Delete.
745 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
746 * config/i386/i386sco.mh (XDEPFILES): Delete.
747 * config/i386/i386v.mh (XDEPFILES): Delete.
748 * config/i386/nbsd.mh (XDEPFILES): Delete.
749 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
750 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
751 * config/i386/symmetry.mh (XDEPFILES): Delete.
752 * config/i386/obsd.mh (XDEPFILES): Delete.
753 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
754 * config/ia64/linux.mh (XDEPFILES): Delete.
755 * config/ia64/aix.mh (XDEPFILES): Delete.
756 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
757 * config/m68k/dpx2.mh (XDEPFILES): Delete.
758 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
759 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
760 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
761 * config/m68k/linux.mh (XDEPFILES): Delete.
762 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
763 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
764 * config/m68k/nbsd.mh (XDEPFILES): Delete.
765 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
766 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
767 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
768 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
769 * config/m88k/delta88.mh (XDEPFILES): Delete.
770 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
771 * config/m88k/m88k.mh (XDEPFILES): Delete.
772 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
773 * config/mips/linux.mh (XDEPFILES): Delete.
774 * config/mips/irix6.mh (XDEPFILES): Delete.
775 * config/mips/irix5.mh (XDEPFILES): Delete.
776 * config/mips/irix4.mh (XDEPFILES): Delete.
777 * config/mips/irix3.mh (XDEPFILES): Delete.
778 * config/mips/decstation.mh (XDEPFILES): Delete.
779 * config/mips/mipsm3.mh (XDEPFILES): Delete.
780 (NATDEPFILES): Move core-aout.o to here.
781 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
782 * config/pa/hpux1020.mh (XDEPFILES): Delete.
783 * config/pa/hppabsd.mh (XDEPFILES): Delete.
784 * config/pa/hppahpux.mh (XDEPFILES): Delete.
785 * config/pa/hpux11w.mh (XDEPFILES): Delete.
786 * config/pa/hppaosf.mh (XDEPFILES): Delete.
787 * config/pa/hpux11.mh (XDEPFILES): Delete.
788 * config/powerpc/aix.mh (XDEPFILES): Delete.
789 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
790 * config/powerpc/linux.mh (XDEPFILES): Delete.
791 * config/romp/rtbsd.mh: Rename XDEPFILES.
792 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
793 * config/rs6000/aix4.mh (XDEPFILES): Delete.
794 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
795 * config/s390/s390.mh (XDEPFILES): Delete.
796 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
797 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
798 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
799 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
800 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
801 * config/sparc/nbsd.mh (XDEPFILES): Delete.
802 * config/sparc/linux.mh (XDEPFILES): Delete.
803 * config/vax/vaxult.mh (XDEPFILES): Delete.
804 * config/vax/vaxult2.mh (XDEPFILES): Delete.
805 * Makefile.in (DEPFILES): Remove XDEPFILES.
806
807 2002-01-17 Andrew Cagney <ac131313@redhat.com>
808
809 * utils.c (internal_verror): Fix comments, default is yes not no.
810 Update queries to match. Default to quit and dump core.
811
812 2002-01-17 Andrew Cagney <ac131313@redhat.com>
813
814 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
815 copyright.
816 * defs.h, event-top.c, gdbcmd.h: Ditto.
817 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
818 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
819 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
820 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
821 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
822 * mi/mi-main.c:Ditto.
823
824 * stack.c, symfile.c: Update copyright.
825
826 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
827
828 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
829 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
830 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
831 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
832
833 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
834
835 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
836 * gdbserver/low-lynx.c (myattach): Likewise.
837 * gdbserver/low-nbsd.c (myattach): Likewise.
838 * gdbserver/low-sim.c (myattach): Likewise.
839 * gdbserver/low-sparc.c (myattach): Likewise.
840 * gdbserver/low-sun3.c (myattach): Likewise.
841
842 * gdbserver/low-linux.c (myattach): New function.
843
844 * gdbserver/server.c (attach_inferior): New function.
845 (main): Handle "--attach".
846
847 2002-01-16 Andrew Cagney <ac131313@redhat.com>
848
849 * MAINTAINERS (language support): Daniel Jacobwitz is C++
850 maintainer.
851
852 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
853
854 * c-typeprint.c (is_type_conversion_operator): Add additional
855 check for non-conversion operators.
856
857 2002-01-15 Michael Snyder <msnyder@redhat.com>
858
859 * linux-proc.c: Add "info proc" command, a la procfs.c.
860 (read_mapping): New function, abstract and re-use code.
861 (linux_find_memory_regions): Use new func read_mapping.
862 (linux_info_proc_cmd): New function, implement "info proc".
863 (_initialize_linux_proc): Add new command "info proc".
864
865 2002-01-15 Michael Snyder <msnyder@redhat.com>
866
867 * symfile.c (generic_load): Use bfd_map_over_sections method
868 instead of manipulating bfd structure members directly.
869 (add_section_size_callback): New function, bfd sections callback
870 used by generic_load.
871 (load_sections_callback): New function, bfd sections callback
872 used by generic_load.
873
874 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
875
876 [Based on work by Jim Blandy]
877 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
878 (builtin_type_vec128): Export.
879 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
880 types.
881 (builtin_type_vec128): New builtin type for 128 bit vector
882 registers.
883 (build_gdbtypes): Initialize builtin_type_v16qi and
884 builtin_type_v8hi. Create the vec128 register builtin type
885 structure.
886 (build_builtin_type_vec128): New function.
887 (_initialize_gdbtypes): Register builtin_type_v16qi and
888 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
889 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
890 AltiVec register to new builtin type.
891
892 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
893
894 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
895 to make_cv_type.
896
897 2002-01-14 Andrew Cagney <ac131313@redhat.com>
898
899 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
900 CLEAN_UP_REGISTER_VALUE.
901 * regcache.c (supply_register): Update only call.
902
903 2002-01-14 Andrew Cagney <ac131313@redhat.com>
904
905 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
906 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
907 a29k-*-vxworks* targets as obsolete.
908
909 2002-01-14 Michael Snyder <msnyder@redhat.com>
910
911 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
912 until we can resolve portability issues.
913 * gregset.h: Remove references to fpxregs.
914 * gcore.c (gcore_command): Initialize note_sec to NULL.
915
916 2002-01-13 Andrew Cagney <ac131313@redhat.com>
917
918 * signals.c (target_signal_to_name): Rewrite. Only use
919 signals[].name when in bounds and non-NULL.
920
921 2002-01-13 Andrew Cagney <ac131313@redhat.com>
922
923 From Petr Ledvina <ledvinap@kae.zcu.cz>:
924 * signals.c (target_signal_to_name): Verify that SIG is within the
925 bounds of the signals array.
926
927 2002-01-13 Andrew Cagney <ac131313@redhat.com>
928
929 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
930
931 2002-01-13 Keith Seitz <keiths@redhat.com>
932
933 * stack.c (print_frame_info_base): Print the frame's pc
934 only if when print_frame_info_listing_hook is not defined.
935
936 2002-01-13 Keith Seitz <keiths@redhat.com>
937
938 * varobj.c (varobj_set_value): Make sure that there were no
939 errors evaluating the object before attempting to set its
940 value.
941 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
942 so this offset adjustment is no longer necessary.
943 (create_child): Don't set the error flag if the child is
944 a CPLUS_FAKE_CHILD.
945 (value_of_child): If value_fetch_lazy fails, return NULL
946 so that callers will be notified that an error occurred.
947 (c_value_of_variable): Delay check of variable's validity
948 until later. We actually want all structs and unions to have
949 the value "{...}".
950 Do not return "???" for variables which could not be evaluated.
951 This error condition must be returned to the caller so that it
952 can get the error condition from gdb.
953 (cplus_name_of_child): Adjust index for vptr before figuring
954 out the name of the child.
955 (cplus_value_of_child): If a child's (real) parent is not valid,
956 don't even bother trying to give a value for it. Just return
957 an error. Change all instances in this function.
958 (cplus_type_of_child): If our parent is one of the "fake"
959 parents, we need to get at the type of the real parent, and
960 derive the child's true type using this information.
961
962 2002-01-13 Andrew Cagney <ac131313@redhat.com>
963
964 From 2002-01-09 John Marshall <johnm@falch.net>:
965 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
966 sources.redhat.com, and tweak some related URLs which had
967 suffered from linkrot.
968
969 2002-01-13 Andrew Cagney <ac131313@redhat.com>
970
971 From Jeff law:
972 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
973 structures passed in registers.
974
975 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
976
977 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
978 white space which prevented compilation. Reported by DSK
979 <dsk@student.unsw.edu.au>.
980
981 2002-01-11 Michael Snyder <msnyder@redhat.com>
982
983 * symfile.c (build_section_addr_info_from_section_tab):
984 Use bfd access method instead of manipulating bfd directly.
985 (syms_from_objfile): Ditto.
986 (simple_overlay_update_1): Ditto.
987 (simple_overlay_update): Ditto.
988 (generic_load): Ditto.
989 (overlay_unmapped_address): FIXME comment, bfd access methods.
990 (sections_overlap): FIXME comment, bfd access methods.
991 (pc_in_mapped_range): FIXME comment, bfd access methods.
992 (pc_in_unmapped_range): FIXME comment, bfd access methods.
993 (section_is_mapped): FIXME comment, bfd access methods.
994 (section_is_overlay): FIXME comment, bfd access methods.
995
996 * symfile.c (generic_load): Whitespace and long line cleanups.
997 Remove duplicate variable, change several local variables to
998 more appropriate data types.
999 (print_transfer_performance): Use %lu instead of %ld for ulongs.
1000
1001 2002-01-12 Andrew Cagney <ac131313@redhat.com>
1002
1003 From Peter Schauer:
1004 * language.c (longest_local_hex_string_custom): Use phex_nz to
1005 convert NUM to a hex string.
1006
1007 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
1008
1009 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
1010 the function.
1011 Update Copyright year.
1012
1013 2002-01-12 Andrew Cagney <ac131313@redhat.com>
1014
1015 * language.c (longest_raw_hex_string): Delete unused function.
1016
1017 2002-01-11 Petr Sorfa <petrs@caldera.com>
1018
1019 * MAINTAINERS (write-after-approval): Add myself.
1020 * dwarf2read.c (read_tag_string_type): Handling of
1021 DW_AT_byte_size.
1022 (read_tag_string_type): FORTRAN fix to prevent propagation of
1023 first string size.
1024 (set_cu_language): Handling of DW_LANG_Fortran95
1025
1026 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
1027
1028 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
1029 GETPID(inferior_ptid).
1030 (store_inferior_registers): Likewise.
1031
1032 2002-01-10 Jason Merrill <jason@redhat.com>
1033
1034 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
1035 Fix DW_OP_minus.
1036
1037 2002-01-10 Andrew Cagney <ac131313@redhat.com>
1038
1039 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
1040 and bfd/elf32-sh-nbsd.c.
1041
1042 2002-01-10 Michael Snyder <msnyder@redhat.com>
1043
1044 * NEWS: Mention --pid and corefile/proc-id behavior change.
1045
1046 * Makefile.in: Add rules for gcore.o and linux-proc.o.
1047 * gcore.c: Include cli/cli-decode.h instead of command.h.
1048
1049 * main.c (captured_main): Add new command line option "--pid".
1050 If the second command line argument (following the symbol-file)
1051 begins with a digit, try to attach to it before trying to open
1052 it as a corefile.
1053 (print_gdb_help): Document the "--pid" argument.
1054
1055 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
1056
1057 * completer.c (command_completer): New function.
1058
1059 * completer.h <command_completer>: Add prototype.
1060
1061 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
1062 completer for the "help" command.
1063
1064 2002-01-09 Jason Merrill <jason@redhat.com>
1065
1066 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
1067
1068 2002-01-09 Michael Snyder <msnyder@redhat.com>
1069
1070 * i386-linux-nat.c (fill_fpxregset): Make global.
1071 (store_fpxregset): Ditto.
1072
1073 * gregset.h (gdb_fpxregset_t): Define.
1074 (supply_fpxregset): Prototype.
1075 (fill_fpxregset): Prototype.
1076
1077 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
1078
1079 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
1080
1081 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
1082 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
1083 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
1084
1085 2002-01-09 Andrew Cagney <ac131313@redhat.com>
1086
1087 * MAINTAINERS: Update target maintainer rules so that any
1088 Maintainer can approve a tested patch for a maintenance-only
1089 target.
1090
1091 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
1092
1093 * MAINTAINERS (write-after-approval): Add myself.
1094
1095 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
1096 IN_SIGTRAMP.
1097
1098 2002-01-08 Michael Snyder <msnyder@redhat.com>
1099
1100 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
1101 real name of the executable, rather than the /proc name.
1102
1103 2002-01-03 Michael Snyder <msnyder@redhat.com>
1104
1105 Implement a "generate-core-file" command in gdb, save target state.
1106 * gcore.c: New file. Implement new command 'generate-core-file'.
1107 Save a corefile image of the current state of the inferior.
1108 * linux-proc.c: Add linux-specific code for saving corefiles.
1109 * target.h (struct target_ops): Add new target vectors for saving
1110 corefiles; to_find_memory_regions and to_make_corefile_notes.
1111 (target_find_memory_regions): New macro.
1112 (target_make_corefile_notes): New macro.
1113 * target.c (update_current_target): Inherit new target methods.
1114 (dummy_find_memory_regions): New place-holder method.
1115 (dummy_make_corefile_notes): New place-holder method.
1116 (init_dummy_target): Initialize new dummy target vectors.
1117 * exec.c (exec_set_find_memory_regions): New function.
1118 Allow the exec_ops vector for memory regions to be taken over.
1119 (exec_make_note_section): New function, target vector method.
1120 * defs.h (exec_set_find_memory_regions): Export prototype.
1121 * procfs.c (proc_find_memory_regions): New function, corefile method.
1122 (procfs_make_note_section): New function, corefile method.
1123 (init_procfs_ops): Set new target vector pointers.
1124 (find_memory_regions_callback): New function.
1125 (procfs_do_thread_registers): New function.
1126 (procfs_corefile_thread_callback): New function.
1127 * sol-thread.c (sol_find_memory_regions): New function.
1128 (sol_make_note_section): New function.
1129 (init_sol_thread_ops): Initialize new target vectors.
1130 * inftarg.c (inftarg_set_find_memory_regions): New function.
1131 Allow to_find_memory_regions vector to be taken over.
1132 (inftarg_set_make_corefile_notes): New function.
1133 Allow to_make_corefile_notes vector to be taken over.
1134 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
1135 interface layer if not target_has_execution (may be a corefile).
1136 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
1137 * config/sparc/sun4sol2.mh: Ditto.
1138 * config/alpha/alpha-linux.mh: Ditto.
1139 * config/arm/linux.mh: Ditto.
1140 * config/i386/x86-64linux.mh: Ditto.
1141 * config/ia64/linux.mh: Ditto.
1142 * config/m68k/linux.mh: Ditto.
1143 * config/mips/linux.mh: Ditto.
1144 * config/powerpc/linux.mh: Ditto.
1145 * config/sparc/linux.mh: Ditto.
1146
1147 2002-01-07 Michael Snyder <msnyder@redhat.com>
1148
1149 * arm-linux-nat.c: Remove references to regcache.c internal data
1150 (registers[] and register_valid[]).
1151
1152 2002-01-07 Michael Snyder <msnyder@redhat.com>
1153
1154 * linux-proc.c: New file. Implement child_pid_to_exec_file,
1155 so that attaching to a pid will automatically read the process's
1156 symbol file and shlibs.
1157 * Makefile.in: Add rule for linux-proc.o.
1158 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
1159 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
1160 * config/arm/linux.mh: Ditto.
1161 * config/i386/linux.mh: Ditto.
1162 * config/i386/x86-64linux.mh: Ditto.
1163 * config/ia64/linux.mh: Ditto.
1164 * config/m68k/linux.mh: Ditto.
1165 * config/mips/linux.mh: Ditto.
1166 * config/powerpc/linux.mh: Ditto.
1167 * config/sparc/linux.mh: Ditto.
1168
1169 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
1170
1171 * win32-nat.c: Add i386-tdep.h dependency.
1172
1173 2002-01-07 Michael Snyder <msnyder@redhat.com>
1174
1175 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
1176 instead of bfd_get_arch_size. Don't bail out just because
1177 there's no exec_bfd.
1178
1179 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
1180 * p-valprint.c (pascal_object_print_value): Ditto.
1181 * somread.c (som_symtab_read): Ditto.
1182 * symfile.c (simple_free_overlay_region_table): Ditto.
1183 * valops.c (value_assign): Ditto.
1184
1185 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
1186 use tilde_expand and strerror for opening save-tracepoints file.
1187
1188 * thread-db.c (thread_db_new_objfile): Indendation fix.
1189
1190 * infptrace.c (GDB_MAX_ALLOCA): New define.
1191 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
1192 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
1193 can be overridden with whatever value is appropriate to the host).
1194 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
1195 alloca to allocate potentially large buffer.
1196 * rs6000-nat.c (child_xfer_memory): Ditto.
1197 * symm-nat.c (child_xfer_memory): Ditto.
1198 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
1199
1200 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
1201
1202 From Nick Clifton <nickc@redhat.com>
1203 * d10v-tdep.c: Set STACK_START to 0x200bffe.
1204
1205 2002-01-07 Michael Snyder <msnyder@redhat.com>
1206
1207 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
1208 Don't use exec_bfd if it's NULL.
1209
1210 2002-01-06 Mark Kettenis <kettenis@gnu.org>
1211
1212 * valops.c (value_arg_coerce): Fix formatting.
1213
1214 2002-01-06 Andrew Cagney <ac131313@redhat.com>
1215
1216 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
1217 * gnu-nat.c: Ditto.
1218
1219 2002-01-06 Andrew Cagney <ac131313@redhat.com>
1220
1221 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
1222 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
1223 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
1224 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
1225 z8k-coff have not been multi-arched. Update z8k-coff build
1226 status.
1227
1228 2002-01-06 Andrew Cagney <ac131313@redhat.com>
1229
1230 * MAINTAINERS: Mark a29k target as obsolete.
1231 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
1232 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
1233 comments.
1234 * NEWS: Note that a29k targets are obsolete.
1235 * a29k-tdep.c: Mark as obsolete.
1236 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
1237 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
1238 a29k-*-vxworks* targets as obsolete.
1239 * remote-adapt.c: Obsolete.
1240 * remote-eb.c: Obsolete.
1241 * remote-mm.c: Obsolete.
1242 * remote-udi.c: Obsolete.
1243 * config/a29k/a29k-udi.mt: Obsolete.
1244 * config/a29k/a29k.mt: Obsolete.
1245 * config/a29k/tm-a29k.h: Obsolete.
1246 * config/a29k/tm-vx29k.h: Obsolete.
1247 * config/a29k/vx29k.mt: Obsolete.
1248
1249 2002-01-05 Andrew Cagney <ac131313@redhat.com>
1250
1251 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
1252 with BFD_ENDIAN_BIG.
1253
1254 2002-01-05 Andrew Cagney <ac131313@redhat.com>
1255
1256 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
1257 * configure, config.in: Re-generate.
1258 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
1259 * defs.h: Do not include <endian.h>.
1260
1261 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
1262
1263 * acconfig.h (HAVE_PT_GETXMMREGS): New.
1264 * config.in: Regenerate.
1265 * configure.in: Update copyright years.
1266 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
1267 * configure: Regenerate.
1268 * i386bsd-nat.c: Update copyright years.
1269 (fill_gregset): Use regcache_collect.
1270 (fetch_inferior_registers): Only fetch integer registers
1271 if requested to do so. Add support for XMM registers
1272 using PT_GETXMMREGS.
1273 (store_inferior_registers): Only store integer registers
1274 if requested to do so. Add support for XMM registers
1275 using PT_SETXMMREGS.
1276 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
1277 (store_inferior_registers): Remove.
1278 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
1279 (fetch_elfcore_registers): New function.
1280 (i386nbsd_elfcore_fns): New.
1281 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
1282 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
1283 i386bsd-nat.o.
1284 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
1285 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
1286 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
1287 * config/i386/tm-nbsd.h: Update copyright years.
1288 (HAVE_SSE_REGS): Define.
1289 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
1290 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
1291 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
1292 (SIGCONTEXT_PC_OFFSET): Remove.
1293 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
1294
1295 2002-01-05 Andrew Cagney <ac131313@redhat.com>
1296
1297 * configure.tgt: Remove powerpc-*-macos* target.
1298 * config/m68k/xm-mpw.h: Delete file.
1299 * config/xm-mpw.h: Delete file.
1300 * ser-mac.c: Delete file.
1301 * mpw-make.sed: Delete file.
1302 * mpw-config.in: Delete file.
1303 * mac-xdep.c: Delete file.
1304 * mac-gdb.r: Delete file.
1305 * mac-defs.h: Delete file.
1306 * mac-nat.c: Delete file.
1307 * config/powerpc/macos.mh: Delete file.
1308 * config/powerpc/macos.mt: Delete file.
1309 * config/powerpc/nm-macos.h: Delete file.
1310 * config/powerpc/tm-macos.h: Delete file.
1311 * source.c (openp, open_source_file): Remove obsolete code.
1312 * top.c (gdb_readline): Ditto.
1313 * utils.c (query): Ditto.
1314 * event-top.c (display_gdb_prompt): Ditto.
1315 * Makefile.in (ser-mac.o): Delete obsolete target.
1316 * NEWS: Update.
1317
1318 2002-01-04 Andrew Cagney <ac131313@redhat.com>
1319
1320 * defs.h (BIG_ENDIAN): Delete macro definition.
1321 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
1322 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
1323 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
1324 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
1325 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
1326 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
1327 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
1328 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
1329 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
1330 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
1331 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
1332 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
1333 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
1334 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
1335 * gdbarch.c: Re-generate.
1336
1337 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
1338
1339 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
1340 for core files.
1341
1342 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
1343
1344 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
1345
1346 2002-01-04 Andrew Cagney <ac131313@redhat.com>
1347
1348 * value.h (value_ptr): Delete typedef.
1349
1350 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
1351
1352 * i386nbsd-nat.c: Update copyright years.
1353 Include i386-tdep.h.
1354
1355 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
1356
1357 * stabsread.c: Update copyright years.
1358
1359 From Debashis Mahata <debashis.mahata@wipro.com>:
1360 (read_struct_fields): Deal with Sun C compiler erroneous stab
1361 output for structs and unions.
1362 Fix PR gdb/269.
1363
1364 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
1365
1366 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
1367 prototype.
1368
1369 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
1370
1371 * cp-abi.c: Fix whitespace.
1372 (baseclass_offset): New wrapper function.
1373 * cp-abi.h (baseclass_offset): Add prototype.
1374 (struct cp_abi_ops): Add baseclass_offset pointer.
1375
1376 * valops.c (vb_match): Move to...
1377 * gnu-v2-abi.c (vb_match): here.
1378 * valops.c (baseclass_offset): Move to...
1379 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
1380
1381 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
1382
1383 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
1384 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
1385 * hpacc-abi.c (init_hpacc_ops): Likewise.
1386
1387 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
1388
1389 * valops.c (find_overload_match): Accept obj as a
1390 reference parameter. Update it before returning.
1391 * value.h (find_overload_match): Update prototype.
1392 * eval.c (evaluate_subexp_standard): Pass object to
1393 find_overload_match by reference.
1394
1395 2002-01-03 Andrew Cagney <ac131313@redhat.com>
1396
1397 * valarith.c: Replace value_ptr with struct value pointer. Remove
1398 register attribute from value declarations.
1399 * valops.c: Ditto.
1400 * value.h: Ditto.
1401 * scm-lang.c (scm_lookup_name): Ditto.
1402
1403 2002-01-03 Michael Snyder <msnyder@redhat.com>
1404
1405 Abstract the functionality of iterating over mapped memory
1406 regions into a general purpose iterator function.
1407 * procfs.c (iterate_over_mappings): New function, general purpose
1408 iterator for memory sections.
1409 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
1410 (solib_mappings_callback): New function, callback for above.
1411 (info_proc_mappings): Reimpliment using iterate_over_mappings.
1412 (info_mappings_callback): New function, callback for above.
1413
1414 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
1415
1416 2002-01-01 Mark Kettenis <kettenis@gnu.org>
1417
1418 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
1419 * i386-tdep.c: Include "elf-bfd.h".
1420 (process_note_abi_tag_sections): New function.
1421 (i386_gdbarch_init): Add code to recognize various OS/ABI
1422 combinations.
1423
1424 * maint.c (_initialize_maint_cmds): Add missing \ in
1425 string-literal.
1426
1427 For older changes see ChangeLog-2001
1428 \f
1429 Local Variables:
1430 mode: change-log
1431 left-margin: 8
1432 fill-column: 74
1433 version-control: never
1434 End: