2002-04-09 Daniel Jacobowitz <drow@mvista.com>
[binutils-gdb.git] / gdb / ChangeLog
1 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
2
3 * linux-low.h: Remove obsolete prototypes.
4 (struct linux_target_ops): New.
5 (extern the_low_target): New.
6 * linux-low.c (num_regs, regmap): Remove declarations.
7 (register_addr): Use the_low_target explicitly.
8 (fetch_register): Likewise.
9 (usr_fetch_inferior_registers): Likewise.
10 (usr_store_inferior_registers): Likewise.
11 * linux-arm-low.c (num_regs): Remove.
12 (arm_num_regs): Define.
13 (arm_regmap): Renamed from regmap, made static.
14 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
15 made static.
16 (arm_cannot_store_register): Renamed from cannot_store_register,
17 made static.
18 (the_low_target): New.
19 * linux-i386-low.c (num_regs): Remove.
20 (i386_num_regs): Define.
21 (i386_regmap): Renamed from regmap, made static.
22 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
23 made static.
24 (i386_cannot_store_register): Renamed from cannot_store_register,
25 made static.
26 (the_low_target): New.
27 * linux-ia64-low.c (num_regs): Remove.
28 (ia64_num_regs): Define.
29 (ia64_regmap): Renamed from regmap, made static.
30 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
31 made static.
32 (ia64_cannot_store_register): Renamed from cannot_store_register,
33 made static.
34 (the_low_target): New.
35 * linux-m68k-low.c (num_regs): Remove.
36 (m68k_num_regs): Define.
37 (m68k_regmap): Renamed from regmap, made static.
38 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
39 made static.
40 (m68k_cannot_store_register): Renamed from cannot_store_register,
41 made static.
42 (the_low_target): New.
43 * linux-mips-low.c (num_regs): Remove.
44 (mips_num_regs): Define.
45 (mips_regmap): Renamed from regmap, made static.
46 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
47 made static.
48 (mips_cannot_store_register): Renamed from cannot_store_register,
49 made static.
50 (the_low_target): New.
51 * linux-ppc-low.c (num_regs): Remove.
52 (ppc_num_regs): Define.
53 (ppc_regmap): Renamed from regmap, made static.
54 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
55 made static.
56 (ppc_cannot_store_register): Renamed from cannot_store_register,
57 made static.
58 (the_low_target): New.
59 * linux-s390-low.c (num_regs): Remove.
60 (s390_num_regs): Define.
61 (s390_regmap): Renamed from regmap, made static.
62 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
63 made static.
64 (s390_cannot_store_register): Renamed from cannot_store_register,
65 made static.
66 (the_low_target): New.
67 * linux-sh-low.c (num_regs): Remove.
68 (sh_num_regs): Define.
69 (sh_regmap): Renamed from regmap, made static.
70 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
71 made static.
72 (sh_cannot_store_register): Renamed from cannot_store_register,
73 made static.
74 (the_low_target): New.
75 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
76 (the_low_target): New.
77
78 2002-04-09 Andrew Cagney <ac131313@redhat.com>
79
80 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
81 override FP_REGNUM with frame->fp. Update copyright.
82 * parse.c (num_std_regs, std_regs): Delete.
83 (target_map_name_to_register): Do not search std_regs. Update
84 function description.
85 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
86 declarations. Update copyright.
87 Fix PR gdb/251.
88
89 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
90
91 * gdbserver/Makefile.in: Add stamp-h target.
92 * gdbserver/configure.in: Create stamp-h.
93 * gdbserver/configure: Regenerated.
94
95 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
96
97 * gdbserver/inferiors.c: New file.
98 * gdbserver/target.c: New file.
99 * gdbserver/target.h: New file.
100 * gdbserver/Makefile.in: Add target.o and inferiors.o. Update
101 dependencies.
102 * gdbserver/linux-low.c (inferior_pid): New static variable,
103 moved from server.c.
104 (linux_create_inferior): Renamed from create_inferior.
105 Call add_inferior. Return 0 on success instead of a PID.
106 (linux_attach): Renamed from myattach.
107 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
108 (linux_thread_alive): Renamed from mythread_alive.
109 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
110 child dies.
111 (linux_resume): Renamed from myresume. Add missing ``return 0''.
112 (regsets_store_inferior_registers): Correct error message.
113 Add missing ``return 0''.
114 (linux_fetch_registers): Renamed from fetch_inferior_registers.
115 (linux_store_registers): Renamed from store_inferior_registers.
116 (linux_read_memory): Renamed from read_inferior_memory.
117 (linux_write_memory): Renamed from write_inferior_memory.
118 (linux_target_ops): New structure.
119 (initialize_low): Call set_target_ops ().
120 * gdbserver/remote-utils.c (unhexify): New function.
121 (hexify): New function.
122 (input_interrupt): Send signals to ``signal_pid''.
123 * gdbserver/server.c (inferior_pid): Remove.
124 (start_inferior): Update create_inferior call.
125 (attach_inferior): Call add_inferior.
126 (handle_query): New function.
127 (main): Call handle_query for `q' packets.
128 * gdbserver/server.h: Include "target.h". Remove obsolete prototypes.
129 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
130
131 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
132
133 * gdbserver/Makefile.in: Add WARN_CFLAGS. Update configury
134 dependencies.
135 * gdbserver/configure.in: Check for <string.h>
136 * gdbserver/configure: Regenerate.
137 * gdbserver/config.in: Regenerate.
138 * gdbserver/gdbreplay.c: Include needed system headers.
139 (remote_open): Remove strchr prototype.
140 * gdbserver/linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
141 * gdbserver/regcache.c (supply_register): Change buf argument to const void *.
142 (supply_register_by_name): Likewise.
143 (collect_register): Change buf argument to void *.
144 (collect_register_by_name): Likewise.
145 * gdbserver/regcache.h: Add missing prototypes.
146 * gdbserver/remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
147 * gdbserver/server.c (handle_query): New function.
148 (attached): New static variable, moved out of main.
149 (main): Quiet longjmp clobber warnings.
150 * gdbserver/server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
151 * gdbserver/utils.c (error): Remove NORETURN.
152 (fatal): Likewise.
153
154 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
155
156 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
157 after the last symbol in a block.
158
159 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
160
161 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
162 is non zero as a found symbol.
163
164 2002-04-08 Andrew Cagney <ac131313@redhat.com>
165
166 * findvar.c: Include "builtin-regs.h".
167 (value_of_register): Call value_of_builtin_reg when applicable.
168 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
169 (target_map_name_to_register): Call
170 builtin_reg_map_name_to_regnum.
171 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
172 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
173 (builtin_regs_h): Define.
174 (builtin-regs.o): New target.
175 (findvar.o): Add $(builtin_regs_h).
176 * builtin-regs.c, builtin-regs.h: New files.
177 * std-regs.c: New file.
178 Partial fix for PR gdb/251.
179
180 2002-04-08 Kevin Buettner <kevinb@redhat.com>
181
182 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
183 it's no longer required.
184
185 2002-04-08 Andrew Cagney <ac131313@redhat.com>
186
187 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
188
189 2002-04-08 Kevin Buettner <kevinb@redhat.com>
190
191 From Jimi X <jimix@watson.ibm.com>:
192 * rs6000-tdep.c (rs6000_software_single_step): Use
193 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
194 and size. Use target_insert_breakpoint() and
195 target_remove_breakpoint() to insert and remove breakpoints
196 instead of explicit memory reads and writes.
197
198 2002-04-08 Kevin Buettner <kevinb@redhat.com>
199
200 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
201 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
202 ELF_OBJECT_FORMAT ifdef.
203
204 2002-04-08 Kevin Buettner <kevinb@redhat.com>
205
206 From Jimi X <jimix@watson.ibm.com>:
207 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
208
209 2002-04-08 Kevin Buettner <kevinb@redhat.com>
210
211 From Jimi X <jimix@watson.ibm.com>:
212 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
213 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
214
215 2002-04-07 Mark Kettenis <kettenis@gnu.org>
216
217 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
218 s/asprintf/xasprintf/.
219 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
220
221 2002-04-07 Andrew Cagney <ac131313@redhat.com>
222
223 I believe Jeff Law denies responsability for this one:
224 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
225 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
226 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
227 Work-around for PR gdb/366.
228
229 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
230
231 * remote-e7000.c (write_small, e7000_read_inferior_memory,
232 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
233 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
234
235 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
236
237 * sh-tdep.c (sh_fp_frame_init_saved_regs,
238 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
239 information.
240
241 2002-04-07 Andrew Cagney <ac131313@redhat.com>
242
243 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
244 maintainer.
245
246 2002-04-07 Andrew Cagney <ac131313@redhat.com>
247
248 * README (Reporting Bugs in GDB): Document the bug web page as the
249 prefered way of submitting bugs.
250 Fix PR gdb/402.
251
252 2002-04-06 Andrew Cagney <ac131313@redhat.com>
253
254 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
255 -1. Update comment.
256 * gdbarch.h, gdbarch.c: Re-generate.
257
258 2002-04-07 Andreas Schwab <schwab@suse.de>
259
260 * m68klinux-nat.c (fill_fpregset): Properly pass address of
261 buffer to regcache_collect.
262
263 2002-04-06 Andrew Cagney <ac131313@redhat.com>
264
265 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
266 * gdbarch.c, gdbarch.h: Re-generate.
267
268 2002-04-06 Andrew Cagney <ac131313@redhat.com>
269
270 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
271 declaration. Fix -Werror.
272
273 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
274
275 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
276 * gdbarch.c: Regenerate.
277
278 2002-04-05 Michael Snyder <msnyder@redhat.com>
279
280 * breakpoint.c (clear_command): Rewrite middle section to
281 combine two loops with identical control conditions.
282 Add a cleanup to eliminate a memory leak.
283 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
284
285 2002-04-05 H.J. Lu (hjl@gnu.org)
286
287 * solib-svr4.c (bkpt_names): Add "__start".
288
289 2002-04-04 Andrew Cagney <ac131313@redhat.com>
290
291 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
292 as test for 64 bit target.
293
294 2002-04-05 Andrew Cagney <ac131313@redhat.com>
295
296 * h8500-tdep.c (h8500_write_fp): Delete function.
297 * dwarf2cfi.c (cfi_write_fp): Document as not used.
298 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
299 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
300 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
301 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
302 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
303 (s390_write_fp):
304 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
305 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
306 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
307 (d10v_write_fp): Delete function.
308 * inferior.h (write_fp, generic_target_write_fp): Delete
309 declarations.
310 * regcache.c (generic_target_write_fp): Delete function.
311 (write_fp): Delete function.
312 * gdbarch.sh (TARGET_WRITE_FP): Delete.
313 * gdbarch.h, gdbarch.c: Regenerate.
314 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
315 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
316 (sparc64_write_fp): Delete declaration.
317 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
318 (h8500_write_fp): Delete declaration.
319
320 2002-04-04 Andrew Cagney <ac131313@redhat.com>
321
322 * sparc-tdep.c (sparc64_write_fp): Delete.
323 (sparc_push_dummy_frame): Replace write_fp call with code to store
324 the FP directly.
325 (sparc_gdbarch_init): Do not initialize write_fp.
326
327 2002-04-05 Kevin Buettner <kevinb@redhat.com>
328
329 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
330 clause.
331
332 2002-03-29 Jim Blandy <jimb@redhat.com>
333
334 * stack.c (get_selected_block): Add new argument `addr_in_block',
335 used to return the exact code address we used to select the block,
336 not just the block.
337 * blockframe.c (get_frame_block, get_current_block): Same.
338 * frame.h (get_frame_block, get_current_block,
339 get_selected_block): Update declarations.
340 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
341 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
342
343 2002-04-05 Michael Snyder <msnyder@redhat.com>
344
345 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
346 warning message.
347
348 2002-04-05 J. Brobecker <brobecker@gnat.com>
349
350 * utils.c (xfullpath): New function.
351 * defs.h (xfullpath): Add declaration.
352 * source.c (openp): Use xfullpath in place of gdb_realpath to
353 avoid resolving the basename part of filenames when the
354 associated file is a symbolic link. This fixes a potential
355 inconsistency between the filenames known to GDB and the
356 filenames it prints in the annotations.
357 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
358 to be able to match a filename with either the real filename, or
359 the name of any symbolic link to this file.
360 (lookup_partial_symtab): Ditto.
361
362 2002-04-04 Michael Snyder <msnyder@redhat.com>
363
364 * breakpoint.c: Add support for hardware breakpoints in overlays.
365 (overlay_events_enabled): New state variable.
366 (insert_breakpoints): Use overlay_events_enabled to decide
367 whether to attempt to set a breakpoint at the overlay load addr.
368 Handle bp_hardware_breakpoint as well as bp_breakpoint.
369 (remove_breakpoint): Use overlay_events_enabled to decide
370 whether breakpoints need to be removed from overlay load addr.
371 Handle bp_hardware_breakpoint as well as bp_breakpoint.
372 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
373 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
374 disable_overlay_breakpoints): Update overlay_events_enabled.
375
376 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
377
378 * dwarf2read.c (struct function_range): New.
379 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
380 (check_cu_functions): New.
381 (read_file_scope): Initialize global function lists.
382 Call dwarf_decode_line after processing children.
383 (read_func_scope): Add to global function list.
384 (dwarf_decode_lines): Call check_cu_functions everywhere
385 record_line is called. Call record_line with a linenumber
386 of 0 to mark sequence ends.
387
388 2002-04-04 Michal Ludvig <mludvig@suse.cz>
389
390 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
391 change sync with glibc.
392
393 2002-04-03 Jim Blandy <jimb@redhat.com>
394
395 * configure.in: Call AC_C_INLINE.
396 * configure: Regenerated.
397
398 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
399
400 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
401 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
402
403 2002-03-31 Mark Kettenis <kettenis@gnu.org>
404
405 * NEWS: Mention gcore support on FreeBSD/i386.
406
407 * fbsd-proc.c: New file.
408 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
409 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
410
411 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
412 while statement.
413
414 2002-03-29 Jim Blandy <jimb@redhat.com>
415
416 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
417 unescaped newlines in string literals, but newer ones don't. So
418 escape them.
419
420 2002-03-26 Michael Snyder <msnyder@redhat.com>
421 Andrew Cagney <cagney@redhat.com>
422
423 * cli/cli-dump.c: New file. Dump memory to file,
424 restore file to memory.
425 * cli/cli-dump.h: New file.
426 * Makefile.in: Add rules, dependencies for cli-dump.o.
427 * NEWS: Mention new commands.
428
429 2002-03-28 Michael Snyder <msnyder@redhat.com>
430
431 * symfile.c (symbol_file_add): Move test for null symbols to later.
432
433 2002-03-27 Andrew Cagney <ac131313@redhat.com>
434
435 From veksler at il.ibm.com:
436 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
437 the xstrduped original path.
438 Fix PR gdb/417.
439
440 2002-03-27 Michael Snyder <msnyder@redhat.com>
441
442 * breakpoint.c (_initialize_breakpoint): Clean up help string.
443 * infcmd.c (_initialize_infcmd): Ditto.
444 * language.c (_initialize_language): Ditto.
445 * symfile.c (_initialize_symfile): Ditto.
446 * top.c (_init_main): Ditto.
447 * cli/cli-cmds.c (init_cli_cmds): Ditto.
448
449 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
450
451 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
452 vector registers handling.
453 (skip_prologue): Handle new AltiVec instructions. Fill in new
454 fields of frame data.
455 (frame_get_saved_regs): Fill in information for AltiVec registers.
456
457 2002-03-27 Jim Blandy <jimb@redhat.com>
458
459 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
460 a function; leave this macro here to invoke that function.
461 (symbol_init_mangled_name): Declaration for that function.
462 * symtab.c (symbol_init_mangled_name): New function.
463
464 2002-03-27 Andrew Cagney <ac131313@redhat.com>
465
466 * valarith.c: Replace strerror with safe_strerror.
467 * tracepoint.c: Ditto.
468 * lin-lwp.c: Ditto.
469 * go32-nat.c: Ditto.
470 * inflow.c: Ditto.
471 * gnu-nat.c: Ditto.
472
473 2002-03-27 Andreas Schwab <schwab@suse.de>
474
475 * event-top.c (command_line_handler): Remove useless if.
476
477 2002-03-27 Andreas Jaeger <aj@suse.de>
478
479 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
480 comment.
481
482 2002-03-27 Michal Ludvig <mludvig@suse.cz>
483
484 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
485 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
486 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
487 (x86_64_linux_dr_get_status, supply_gregset),
488 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
489 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
490 (x86_64_register_info_table): Add.
491 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
492 (x86_64_register_raw_size, x86_64_register_virtual_type),
493 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
494 general x86_64_register_info_table.
495 (i386_gdbarch_init): gdbarch_register_bytes is now set
496 dynamicaly during initialization.
497 * regformats/reg-x86-64.dat: Synced with changes to registers above.
498 * gdbserver/linux-x86-64-low.c: Ditto.
499
500 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
501
502 * gdbserver/server.c (main): Call target_signal_to_host_p
503 and target_signal_to_host on signals received from the remote.
504 * gdbserver/remote-utils.c (prepare_resume_reply): Call
505 target_signal_from_host on signals sent to the remote.
506 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
507 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
508
509 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
510
511 * signals/signals.c: Include "server.h" in gdbserver build.
512 (target_signal_from_name): Don't use STREQ.
513 (_initialize_signals): Likewise. Don't include function in
514 gdbserver build.
515
516 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
517
518 * signals.c: Moved to...
519 * signals/signals.c: Here.
520 * Makefile (signals.o): Update.
521
522 2002-03-26 Jeff Law (law@redhat.com)
523
524 * somread.c (som_symtab_read): Remove some commented out code and
525 updated related comments. Do not set the minimal symbol table to
526 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
527 in a dynamic executable.
528 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
529 where we are unable to find the minimal symbol for the given
530 PC value.
531
532 2002-03-25 Jeff Law (law@redhat.com)
533
534 * linux-proc.c (read_mapping): Scan up to end of line for filename.
535
536 2002-03-25 Michal Ludvig <mludvig@suse.cz>
537
538 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
539
540 2002-03-23 Andrew Cagney <ac131313@redhat.com>
541
542 * command.h: Update copyright.
543 (struct cmd_list_element): Replace definition with opaque
544 declaration.
545 (enum cmd_types): Document that it will eventually be moved to
546 cli/cli-decode.h
547 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
548 (MALLOCED_REPLACEMENT): Delete macro.
549 * Makefile.in (cli_decode_h): Add $(command_h).
550 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
551 * top.c: Include "cli/cli-decode.h".
552 * completer.c: Include "cli/cli-decode.h".
553 * maint.c: Include "cli/cli-decode.h".
554 * cli/cli-decode.h: Include "command.h".
555 (enum command_class): Delete.
556 (enum cmd_types): Comment out.
557 (enum cmd_auto_boolean): Delete.
558 (enum var_types): Delete.
559
560 2002-03-23 Andrew Cagney <ac131313@redhat.com>
561
562 * cli/cli-decode.c: Include "gdb_assert.h".
563 (add_set_or_show_cmd): New static function.
564 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
565 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
566 all fields, such as func, from the set command.
567
568 2002-03-23 Andrew Cagney <ac131313@redhat.com>
569
570 * MAINTAINERS (sh-elf): Change warning flag to -w.
571
572 2002-03-23 Andrew Cagney <cagney@redhat.com>
573
574 * defs.h (error): Add printf format attribute.
575 * thread-db.c (thread_from_lwp): Fix error format string.
576 * stack.c (parse_frame_specification): Ditto.
577 * cli/cli-decode.c (undef_cmd_error): Ditto.
578 * scm-lang.c (scm_lookup_name): Ditto.
579 * tracepoint.c (trace_error): Ditto.
580 * remote-utils.c (usage): Ditto.
581 * remote.c (compare_sections_command): Ditto.
582 Fix PR gdb/328.
583
584 2002-03-22 Andrew Cagney <ac131313@redhat.com>
585
586 * gdbtypes.c (append_composite_type_field): New function.
587 (init_composite_type): New function.
588 * gdbtypes.h (append_composite_type_field): Declare.
589 (init_composite_type): Ditto.
590
591 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
592
593 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
594 function.
595 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
596 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
597 structure returning convention for SYSV ABI case, but not
598 for GNU/Linux, FreeBSD, or NetBSD.
599
600 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
601
602 * symtab.h (lookup_block_symbol): Add mangled_name argument
603 to prototype.
604
605 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
606 with new mangled_name argument.
607 * linespec.c (decode_line_1): Likewise.
608 * valops (value_of_this): Likewise.
609 * symtab.c (lookup_transparent_type): Likewise.
610 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
611 (lookup_symbol): If we are given a mangled name, pass it down
612 to lookup_symbol_aux.
613 (lookup_block_symbol): If we are given a mangled name to check
614 against, only return symbols which match it.
615
616 2002-03-22 Christopher Faylor <cgf@redhat.com>
617
618 * win32-nat.c (child_create_inferior): Check for proper shell to use
619 here, in case the user changes it on the fly.
620 (_initialize_inftarg): Remove shell path considerations.
621
622 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
623
624 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
625 for gdbarch_max_register_raw_size and max_register_virtual_size.
626 Adjust copyright year.
627
628 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
629
630 * dbxread.c (process_one_symbol): Extend the first N_SLINE
631 in a function to cover the entire beginning of the function
632 as well if it does not already.
633
634 2002-03-21 Tom Rix <trix@redhat.com>
635
636 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
637 (rs6000_ptrace64): Renamed from ptrace64.
638
639 2002-03-20 Martin M. Hunt <hunt@redhat.com>
640
641 * gdbserver/remote-utils.c (remote_open): Don't call
642 getprotobyname, we're all using TCP here so just use
643 IPPROTO_TCP.
644 * gdbserver/gdbreplay.c (remote_open): Ditto.
645
646 2002-03-20 Martin M. Hunt <hunt@redhat.com>
647
648 * regcache.c (_initialize_regcache): No need to call
649 build_regcache() at this time; it gets called whenever
650 the gdbarch changes.
651
652 2002-03-20 David O'Brien <obrien@FreeBSD.org>
653
654 * sparc-nat.c: Include sys/param.h where possible.
655
656 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
657
658 Fix PR gdb/422.
659 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
660 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
661 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
662 complex types.
663 * stabsread.c (rs6000_builtin_type): Likewise.
664 (read_sun_floating_type): Likewise.
665
666 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
667
668 * stabsread.c (read_member_functions): Remove skip code for duplicate
669 constructor/destructor methods. Use standard parsing for these
670 methods and just do not chain them to the list of methods after
671 parsing.
672
673 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
674
675 * coffread.c: Remove redundant static declarations. Replace
676 occurrences of `PTR' with `void *'.
677 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
678 * top.h (quit_cover): Likewise.
679 * defs.h (catch_errors): Likewise.
680
681 2002-03-18 Andrew Cagney <ac131313@redhat.com>
682
683 * defs.h (XMALLOC): Define.
684 * gdb-events.sh (XMALLOC): Delete macro.
685 * gdb-events.c, gdb-events.h: Regenerate.
686 * gdbarch.sh (XMALLOC): Delete macro.
687 * gdbarch.c: Regenerate.
688 * serial.c (XMALLOC): Delete macro.
689 * ui-file.c (XMALLOC): Ditto.
690 * ser-unix.h (XMALLOC): Ditto.
691 * sh-tdep.c (XMALLOC): Ditto.
692 * ui-out.c (XMALLOC): Ditto.
693 * utils.c (XMALLOC): Ditto.
694 * i386-tdep.c (XMALLOC): Ditto.
695 * gdb-events.c (XMALLOC): Ditto.
696 * d10v-tdep.c (XMALLOC): Ditto.
697 * cli-out.c (XMALLOC): Ditto.
698
699 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
700 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
701 * ui-file.c, ui-out.c: Ditto.
702
703 2002-03-18 Andrew Cagney <ac131313@redhat.com>
704
705 * command.h (struct cmd_list_element): Add field context.
706 (set_cmd_context, get_cmd_context): Declare.
707 * cli/cli-decode.h: Ditto.
708 * cli/cli-decode.c (get_cmd_context): New function.
709 (set_cmd_context): New function.
710 (add_cmd): Initialize context.
711 Part of fixing PR gdb/145 and PR gdb/146.
712
713 2002-03-17 Andrew Cagney <ac131313@redhat.com>
714
715 * cli/cli-decode.c (cmd_type): New function.
716 * command.h (cmd_type): Declare.
717 * infrun.c (set_schedlock_func): Call function cmd_type.
718 * kod.c (kod_set_os): Call cmd_type.
719 * cris-tdep.c (cris_version_update): Use function cmd_type.
720 (cris_mode_update, cris_abi_update): Ditto.
721
722 * command.h: (execute_cmd_post_hook): Declare.
723 (execute_cmd_pre_hook): Declare.
724 * cli/cli-script.c (clear_hook_in_cleanup): New function.
725 (execute_cmd_post_hook, execute_cmd_pre_hook): New
726 functions. Execute pre/post hook while ensuring that afterwords
727 hook_in is cleared.
728 * top.c (execute_command): Use execute_cmd_post_hook, and
729 execute_cmd_pre_hook to execute pre/post commands.
730 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
731 hook_stop_stub.
732 (hook_stop_stub): Call execute_cmd_pre_hook.
733
734 2002-03-17 Andrew Cagney <ac131313@redhat.com>
735
736 * kod.c (kod_set_os): Revert previous change. Is called by ``info
737 set'' and this leads to a core dump. Move xstrdup of
738 operating_system to after check that it is not NULL.
739
740 2002-03-17 Andrew Cagney <ac131313@redhat.com>
741
742 * kod.c (kod_set_os): Remove unnecessary check that
743 ``command->type'' is set_cmd.
744
745 * valprint.c (set_input_radix): Use input_radix.
746 (set_output_radix): Use output_radix.
747 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
748 isn't reverted.
749
750 2002-03-16 Andrew Cagney <ac131313@redhat.com>
751
752 * value.h (struct value): Delete field ``substring_addr''. Change
753 aligner fields to force_doublest_align, force_longest_align,
754 force_core_addr_align and force_pointer_aligh.
755
756 * value.h (struct value): Fix typo in above change.
757
758 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
759
760 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
761 to fix internal_error from ``maintenance print architecture''.
762
763 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
764
765 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
766 for gcc versions after gcc-2.8.1.
767
768 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
769
770 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
771 for method resolution. Restore adjustment of ``this'' pointer after
772 calling value_struct_elt, which was accidentally removed during the
773 HP merge.
774
775 2002-03-15 Andrew Cagney <ac131313@redhat.com>
776
777 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
778 value_of_register.
779 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
780 get_saved_register.
781 * value.h (value_of_register): Update.
782
783 2002-03-14 Richard Henderson <rth@redhat.com>
784
785 * configure.in: Detect declaration for canonicalize_file_name.
786 * utils.c (canonicalize_file_name): Declare, if needed.
787 (gdb_realpath): Prefer realpath if available and usable.
788 * config.in, configure: Rebuild.
789
790 2002-03-14 Richard Henderson <rth@redhat.com>
791
792 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
793 a constant array bound.
794
795 * MAINTAINERS: Add myself to write-after-approval.
796
797 2002-03-14 Michael Snyder <msnyder@redhat.com>
798
799 * symfile.c (syms_from_objfile): Return immediately if no syms.
800 (symbol_file_add): Return immediately if no syms.
801 (find_sym_fns): Return immediately if no syms.
802
803 2002-03-13 Michal Ludvig <mludvig@suse.cz>
804
805 * gdbserver/remote-util.c (remote_open): Print remote-side's
806 IP address when remote debugging over the network.
807
808 2002-03-12 David O'Brien <obrien@FreeBSD.org>
809
810 * config/sparc/fbsd.mh: Fix copyright.
811 * config/sparc/fbsd.mt: Likewise.
812
813 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
814
815 * MAINTAINERS: Fix typo in name of gdb warnings option.
816 (x86-64): Fix formating so that this can be parsed by awk.
817
818 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
819
820 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
821 * defs.h: Include "gdb/signals.h".
822 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
823
824 2002-03-10 Michal Ludvig <mludvig@suse.cz>
825
826 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
827 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
828 from x86-64-tdep.h
829
830 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
831 Don Howard <dhoward@redhat.com>
832
833 * mips-tdep.c (ST0_FR): Define.
834 (mips2_fp_compat): New function, temporarily disabled.
835 (mips_read_fp_register_single): New function.
836 (mips_read_fp_register_double): New function.
837 (mips_print_register): Use them.
838 (do_fp_register_row): Likewise.
839
840 2002-03-09 Andrew Cagney <ac131313@redhat.com>
841
842 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
843 approval''.
844
845 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
846
847 * stabsread.c (read_member_functions): Fix is_stub test for
848 static member functions, improve comment.
849
850 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
851
852 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
853 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
854 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
855 commands that set boolean values.
856 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
857 (arm_rdi_resume): Always initialize PC.
858 (arm_rdi_open): Don't use rslt as a boolean.
859 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
860 (arm_rdi_fetch_registers, arm_rdi_store_registers)
861 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
862 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
863
864 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
865
866 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
867 * configure: Rebuilt.
868
869 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
870
871 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
872 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
873
874 2002-03-06 Andrew Cagney <ac131313@redhat.com>
875
876 * cli/cli-decode.c (set_cmd_completer): New function.
877 * command.h (set_cmd_completer): Declare.
878 * cli/cli-decode.h (set_cmd_completer): Ditto.
879
880 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
881 * cli/cli-cmds.c (init_cli_cmds): Ditto.
882 * win32-nat.c (_initialize_inftarg): Ditto.
883 * remote-rdi.c (_initialize_remote_rdi): Ditto.
884 * proc-api.c (_initialize_proc_api): Ditto.
885 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
886 * source.c (_initialize_source): Ditto.
887 * exec.c (_initialize_exec): Ditto.
888 * solib.c (_initialize_solib): Ditto.
889 * top.c (init_main): Ditto.
890 * tracepoint.c (_initialize_tracepoint): Ditto.
891 * symfile.c (_initialize_symfile): Ditto.
892 * printcmd.c (_initialize_printcmd): Ditto.
893 * infcmd.c (_initialize_infcmd): Ditto.
894 * corefile.c (_initialize_core): Ditto.
895
896 2002-03-05 Andrew Cagney <ac131313@redhat.com>
897
898 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
899
900 2002-03-05 Andrew Cagney <ac131313@redhat.com>
901
902 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
903
904 2002-03-05 Andrew Cagney <ac131313@redhat.com>
905
906 * NEWS: Update headings, 5.2 has branched.
907
908 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
909
910 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
911 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
912 (register_addr, REGISTER_RAW_SIZE): Likewise.
913 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
914 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
915
916 2002-03-03 Michal Ludvig <mludvig@suse.cz>
917
918 * MAINTAINERS (x86-64): Add myself.
919 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
920 changed value_ptr -> struct value *
921
922 2002-03-01 David O'Brien <obrien@FreeBSD.org>
923
924 * configure.host (sparc64-*-freebsd): Add.
925 * configure.tgt: Likewise.
926 * config/sparc/fbsd.mh: New file.
927 * config/sparc/fbsd.mt: Likewise.
928 * config/sparc/nm-fbsd.h: Likewise.
929 * config/sparc/tm-fbsd.h: Likewise.
930
931 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
932
933 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
934 regformats/reg-s390x.dat.
935
936 2002-03-01 Andrew Cagney <ac131313@redhat.com>
937
938 * utils.c: Add FIXME explaining true/false problem.
939
940 2002-02-28 Andrew Cagney <ac131313@redhat.com>
941
942 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
943
944 2002-02-28 Michael Chastain <mec@shout.net>
945
946 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
947
948 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
949
950 * gdbserver/linux-s390-low.c: New file.
951 * regformats/reg-s390.dat: New file.
952 * regformats/reg-s390x.dat: New file.
953 * gdbserver/configure.srv: Add S/390.
954 * gdbserver/Makefile.in: Add S/390.
955 * configure.tgt: Enable gdbserver for S/390.
956
957 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
958
959 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
960 first line of the doc string for "info dos", except at the end of
961 the sentence, since the short help stops at the first period.
962
963 2002-02-28 Jason Merrill <jason@redhat.com>
964
965 * dwarf2read.c (dwarf_cfi_name): Add new codes.
966
967 2002-02-27 Fred Fish <fnf@redhat.com>
968
969 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
970 comment (dumy -> dummy).
971
972 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
973
974 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
975
976 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
977
978 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
979
980 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
981
982 * gdbserver/acconfig.h: New file.
983 * gdbserver/i387-fp.c: New file.
984 * gdbserver/i387-fp.h: New file.
985 * gdbserver/linux-x86-64.c: New file.
986 * regformats/reg-x86-64.dat: New file.
987 * configure.tgt: Add x86_64-*-linux* gdbserver support.
988 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
989 * gdbserver/configure.in: Add support for regsets.
990 * gdbserver/config.in: Regenerate.
991 * gdbserver/configure: Regenerate.
992 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
993 * gdbserver/linux-low.h: New file.
994 * gdbserver/linux-low.c: Include "linux-low.h". Add support
995 for regsets.
996 * gdbserver/linux-arm-low.c: Include "linux-low.h".
997 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
998 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
999 * gdbserver/linux-mips-low.c: Include "linux-low.h".
1000 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
1001 * gdbserver/linux-sh-low.c: Include "linux-low.h".
1002 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
1003 "i387-fp.h". Add PTRACE_GETREGS and friends.
1004 * gdbserver/regcache.c (supply_register): New function.
1005 (supply_register_by_name): New function.
1006 (collect_register): New function.
1007 (collect_register_by_name): New function.
1008
1009 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
1010
1011 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
1012 (config.status): Add configure.srv dependency.
1013 (server_h): Add config.h dependency.
1014
1015 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
1016
1017 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
1018 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
1019 * gdbserver/configure.srv: Change i386-*-linux* to use
1020 reg-i386-linux.o.
1021
1022 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1023
1024 * x86-64-tdep.c: Re-indent. Update copyright date.
1025
1026 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1027
1028 From Michal Ludvig <mludvig@suse.cz>:
1029 * x86-64-tdep.c (value.h): Delete.
1030 (gdb_assert.h): Include.
1031 (x86_64_register_convert_to_virtual,
1032 x86_64_register_convert_to_raw ): Add check which lets only
1033 floating-point values to be converted.
1034 (value_push): Delete.
1035 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
1036 (i386_gdbarch_init): Number of register_bytes fixed.
1037
1038 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1039
1040 * MAINTAINERS: Add x86-64 target.
1041
1042 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1043
1044 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
1045 * osfsolib.c (solib_map_sections): Ditto.
1046 * irix5-nat.c (solib_map_sections): Ditto.
1047 * corelow.c (gdb_check_format): Ditto.
1048 * symfile.c (symfile_bfd_open): Ditto.
1049 * solib.c (solib_map_sections): Ditto.
1050 Fix PR gdb/354.
1051
1052 2002-02-26 Andrew Cagney <ac131313@redhat.com>
1053
1054 * remote.c (_initialize_remote): By default, disable ``e'' and
1055 ``E'' step out-of-range packets.
1056
1057 2002-02-26 Andreas Schwab <schwab@suse.de>
1058
1059 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
1060 m68k_linux_frame_saved_pc.
1061 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
1062 in_sigtramp.
1063 (SIGCONTEXT_PC_OFFSET): Remove.
1064 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
1065 m68k_linux_sigtramp_saved_pc): New functions.
1066 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
1067 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
1068 (UCONTEXT_PC_OFFSET): Define.
1069 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
1070 non-RT and RT signal trampolines.
1071
1072 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
1073
1074 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
1075 (TARGET_NBPG, STACK_END_ADDR): Delete
1076 (VARIABLES_INSIDE_BLOCK): Delete.
1077
1078 2002-02-25 Andrew Cagney <ac131313@redhat.com>
1079
1080 * utils.c (perror_with_name): Make string parameter constant.
1081 (print_sys_errmsg): Ditto.
1082 (query): Ditto.
1083 * defs.h (perror_with_name): Update.
1084 (print_sys_errmsg): Update.
1085 (query): Update.
1086
1087 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
1088
1089 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
1090 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
1091
1092 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1093
1094 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
1095 if it already matches the current architecture from the exec file.
1096 Include arch-utils.h for gdbarch_info_init prototype.
1097 * Makefile.in (rs6000-nat.o): Update dependencies.
1098
1099 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
1100
1101 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
1102 list of exported variables.
1103
1104 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
1105
1106 * gdbserver/configure.srv: New file.
1107 * gdbserver/configure.in: Use configure.srv instead
1108 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
1109 from it.
1110 * gdbserver/configure: Regenerated.
1111 * gdbserver/terminal.h: New file.
1112 * gdbserver/Makefile.in: Update for configure changes. Remove
1113 more unneeded include paths.
1114
1115 2002-02-24 Andrew Cagney <ac131313@redhat.com>
1116
1117 From wiz at danbala:
1118 * config/sparc/tm-sp64.h: Fix grammar and typos.
1119 Fix PR gdb/287.
1120
1121 2002-02-24 Andrew Cagney <ac131313@redhat.com>
1122
1123 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
1124 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
1125 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
1126 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
1127 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
1128 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
1129 * s390-tdep.c: Ditto.
1130 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
1131 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
1132 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
1133 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
1134 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
1135 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
1136 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
1137 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
1138 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
1139 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
1140 Fix PR gdb/378.
1141
1142 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1143
1144 * lin-thread.c: Delete file.
1145 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
1146 to gdb_proc_service.h.
1147 * configure: Re-generate.
1148
1149 * ocd.c (ocd_open): Do not try to open the "ocd" device.
1150 * serial.c (serial_open): Delete check for "ocd".
1151 Fix PR gdb/349.
1152
1153 * Makefile.in (linux-thread.o): Delete target.
1154 * linux-thread.c: Delete file.
1155
1156 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
1157 renamed SH files to be consistent.
1158
1159 * symtab.c (sort_search_symbols): Use xfree.
1160
1161 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
1162
1163 * arm-linux-tdep.c (arm_linux_init_abi): Register
1164 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
1165 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
1166 definition with undef, since we don't want the sysvr4 definition.
1167 (SKIP_TRAMPOLINE_CODE): Likewise.
1168
1169 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1170
1171 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
1172
1173 * configure.in: (AC_CHECK_FUNCS) Added test for
1174 canonicalize_file_name Regenerated.
1175 * config.in, configure: Regenerated.
1176 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
1177 defined use canonicalize_file_name.
1178
1179 2002-02-23 Michael Chastain <mec@shout.net>
1180
1181 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
1182
1183 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1184
1185 * README: Remove references to cygnus.com.
1186 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
1187 dot com'' form. Remove references to cygnus.com and sourceware.
1188
1189 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1190
1191 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
1192 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
1193 1003.1-2001 no longer allows "head -1".
1194 * gdb/Makefile.in (version.c): Likewise.
1195 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
1196 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
1197 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
1198
1199 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1200
1201 * cli/cli-decode.c (cmd_cfunc_eq): New function.
1202 * command.h (cmd_cfunc_eq): Declare.
1203 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
1204
1205 * cli/cli-cmds.h (is_complete_command): Change parameter to a
1206 ``struct cmd_list_element *''.
1207 * cli/cli-cmds.c (is_complete_command): Update. Use
1208 cmd_cfunc_eq.
1209 * top.c (execute_command): Pass the command to
1210 is_complete_command.
1211 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
1212
1213 2002-02-23 Andrew Cagney <ac131313@redhat.com>
1214
1215 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
1216 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
1217 architecture defines.
1218 * s390-tdep.c (s390_gdbarch_init): Likewise.
1219
1220 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
1221
1222 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
1223 (arm_linux_push_arguments): Likewise.
1224 (arm_linux_init_abi): Register them. Also register linux-specific
1225 call_dummy_words.
1226 (find_minsym_and_objfile): Use strcmp, not STREQ.
1227 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
1228 (arm_linux_call_dummy_words): Delete declaration.
1229 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
1230 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
1231 declarations.
1232 (LOWEST_PC): Delete.
1233
1234 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1235
1236 * maint.c (print_section_info): Do not prepend `0x' to filepos
1237 output, it will be handled by local_hex_string_custom.
1238
1239 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
1240
1241 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
1242 (store_newfpe_double, store_newfpe_extended, store_fpregister)
1243 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
1244
1245 2002-02-22 Jim Blandy <jimb@redhat.com>
1246
1247 Indicate that the bcache functions don't change the strings
1248 they're passed.
1249 * bcache.h (bcache, hash): Add `const' keywords to declarations.
1250 * bcache.c (bcache, hash): Add `const' keywords to definitions.
1251
1252 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
1253
1254 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
1255
1256 2002-02-21 Christopher Faylor <cgf@redhat.com>
1257
1258 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
1259 find the complete path to a loaded DLL.
1260
1261 2002-02-21 Fred Fish <fnf@redhat.com>
1262
1263 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
1264 that marks the end of the range of a function, enter a line number
1265 entry that has a line number of zero and a PC offset that matches
1266 the end of the function. This starts a range of PC's for which no
1267 line number information is known.
1268 * symtab.c (find_pc_sect_line): If our best fit is in a range of
1269 PC's for which no line number info is found (line number is zero)
1270 then we didn't find any valid line information.
1271 * symtab.h: Document use of zero line number entry.
1272
1273 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
1274
1275 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
1276 (have_ptrace_getvrregs): Define for run time checks.
1277 (gdb_vrregset_t): New type for Altivec register handling.
1278 (fetch_register, store_register): Fetch/store altivec register
1279 when needed.
1280 (fetch_altivec_register, store_altivec_register): New functions.
1281 (supply_vrregset, fill_vrregset): New functions.
1282 (fetch_altivec_registers, store_altivec_registers): New functions.
1283 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
1284 registers as well.
1285
1286 2002-02-21 Jiri Smid <smid@suse.cz>
1287
1288 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
1289
1290 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
1291
1292 * Makefile.in (armnbsd-nat.o): Update dependencies.
1293 * armnbsd-nat.c (supply_gregset): New function. Common code to
1294 supply the integer register set.
1295 (supply_fparegset): New function. Similar for FPA registers.
1296 (fetch_regs, fetch_fp_regs): Use them.
1297 (fetch_core_registers): Likewise.
1298 (fetch_elfcore_registers): New function.
1299 (arm_netbsd_elfcore_fns): New core-file type specification.
1300 (_initialize_arm_netbsd_nat): Register it.
1301
1302 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
1303
1304 * armnbsd-nat.c: Include gdbcore.h.
1305 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
1306 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
1307 'void' to declaration, to shut up ARI.
1308 (fetch_core_registers): Make static. Rewrite using supply_register.
1309 (arm_netbsd_core_fns): New core-file type specification.
1310 (_initialize_arm_netbsd_nat): New function.
1311
1312 2002-02-21 Christopher Faylor <cgf@redhat.com>
1313
1314 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
1315 value.
1316
1317 2002-02-20 Christopher Faylor <cgf@redhat.com>
1318
1319 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
1320 fails.
1321
1322 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
1323
1324 * jv-exp.y (parse_number): Change type of implicit longs
1325 to builtin_type_uint64.
1326
1327 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
1328
1329 * gdbserver/linux-low.c (mywait): Change argument to waitpid
1330 to be an integer instead of a `union wait'.
1331
1332 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
1333
1334 * mips-linux-nat.c: Call the operating system GNU/Linux.
1335 * mips-linux-tdep.c: Likewise.
1336 * mips-tdep.c: Likewise.
1337
1338 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
1339
1340 Fix PR gdb/265.
1341 * jv-exp.y (parse_number): Handle 64-bit integers.
1342
1343 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
1344
1345 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
1346 AC_STDC_HEADERS to AC_HEADER_STDC.
1347 * gdbserver/configure: Regenerated.
1348
1349 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
1350
1351 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
1352 is defined.
1353 * sparc-tdep.c (get_longjmp_target): Likewise.
1354
1355 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
1356
1357 * News: Add news about ARM and Multi-arch. Mention the new target
1358 arm*-*-netbsd*.
1359
1360 2002-02-19 Jim Blandy <jimb@redhat.com>
1361
1362 * stabsread.c (error_type_complaint): Improve error message.
1363
1364 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
1365
1366 * gdbserver/README: Update documentation.
1367 * gdbserver/configure.in: Update configury to match documentation.
1368 * gdbserver/Makefile.in: Likewise.
1369 * gdbserver/configure: Regenerated.
1370 * gdbserver/aclocal.m4: New file, generated by aclocal.
1371 * gdbserver/config.in: New file, generated by autoheader.
1372
1373 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
1374
1375 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
1376 armnbsd-nat.c.
1377
1378 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
1379
1380 * arm-tdep.h (enum arm_float_model): New enum.
1381 (struct gdbarch_tdep): Add fp_model.
1382 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
1383 up floating-point conversions until we know the floating-point model
1384 in use by the inferior. Don't complain about being unable to
1385 determine the ABI of the inferior when we don't have one.
1386 (arm_extract_return_value): Support different floating-point models.
1387 (arm_store_return_value): Likewise.
1388 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
1389 ARM_FLOAT_SOFT.
1390 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
1391
1392 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1393
1394 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
1395 of ``current_gdbarch''.
1396
1397 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
1398
1399 * armnbsd-nat.c : ANSIfy all function declarations.
1400 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
1401 (fetch_inferior_registers): Re-implement in terms of above.
1402 (store_register, store_regs, store_fp_register, store_fp_regs): New.
1403 (store_inferior_registers): Re-implement in terms of above.
1404
1405 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
1406
1407 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
1408 kernel.
1409 * arm-linux-tdep.c: Likewise.
1410 * config/arm/tm-linux.h: Likewise.
1411
1412 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
1413
1414 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
1415 * config/arm/nbsd.mt (TM_FILE): Delete.
1416 * config/arm/tm-nbsd.h: Delete.
1417
1418 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
1419
1420 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
1421 Initialize CALL_DUMMY_LENGTH.
1422
1423 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
1424
1425 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
1426 function.
1427 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
1428 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
1429 defines one thing and that is incorrect for this port.
1430 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
1431
1432 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
1433
1434 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
1435
1436 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
1437
1438 * win32-nat.c (display_selector): New function. Displays information
1439 about the information returned by GetThreadSelectorEntry API function.
1440 (display_selectors): New function. Displays the infomation of
1441 the selector given as argument, or of CS, DS ans FS selectors
1442 if no argument is given.
1443 ( _initialize_inftarg): Add "w32" as info prefix command.
1444 Add "info w32 selector" as command calling display_selectors.
1445
1446 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
1447
1448 * i386-tdep.c (get_longjmp_target): Fix compilation failure
1449 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
1450 if not defined.
1451
1452 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
1453
1454 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
1455
1456 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
1457
1458 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
1459 (arm_fix_call_dummy): Call it.
1460 (arm_call_dummy_breakpoint_offset): Delete.
1461 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
1462 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
1463
1464 2002-02-18 Andrew Cagney <ac131313@redhat.com>
1465
1466 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
1467 Default to func_frame_chain_valid.
1468 * gdbarch.h, gdbarch.c: Re-generate.
1469 * frame.h (FRAME_CHAIN_VALID): Delete definition.
1470
1471 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
1472
1473 * ppc-linux-nat.c: Update copyright.
1474 (fetch_register, store_register): Add tid parameter, don't compute
1475 tid here.
1476 (fetch_ppc_registers, store_ppc_registers): Add tid
1477 parameter. Pass it along to callees.
1478 (fetch_inferior_registers, store_inferior_registers): Compute tid
1479 here, and pass it to calleed functions.
1480 (fill_gregset, supply_fpregset): Clean up formatting.
1481
1482 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
1483
1484 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
1485 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
1486
1487 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
1488
1489 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
1490 * gdbarch.c gdbarch.h: Regenerate.
1491 * breakpoint.c (create_longjmp_breakpoint): Always compile this
1492 function.
1493 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
1494 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
1495 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
1496
1497 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
1498 * arm-tdep.c (arm_get_longjmp_target): New function.
1499 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
1500 this to a positive value register arm_get_longjmp_target as the
1501 longjmp handler.
1502 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
1503 (arm_linux_init_abi): Set up longjmp description in tdep.
1504 * armnbsd-nat.c (get_longjmp_target): Delete.
1505 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
1506 description in tdep.
1507 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
1508 (get_longjmp_target): Delete declaration.
1509 (GET_LONGJMP_TARGET): Delete.
1510 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
1511 (GET_LONGJMP_TARGET): Delete.
1512
1513 2002-02-17 Kevin Buettner <kevinb@redhat.com>
1514
1515 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
1516 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
1517 of ``current_gdbarch''.
1518
1519 2002-02-17 Tom Tromey <tromey@redhat.com>
1520
1521 * cli/cli-cmds.c (compare_strings): New function.
1522 (complete_command): Only print each unique item once.
1523 * completer.h (complete_line): Declare.
1524 * completer.c (complete_line): New function.
1525 (line_completion_function): Use it.
1526
1527 2002-02-16 Andrew Cagney <ac131313@redhat.com>
1528
1529 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
1530 * gdbarch.h, gdbarch.c: Re-generate.
1531
1532 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
1533
1534 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
1535
1536 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
1537
1538 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
1539 * valops.c (value_arg_coerce): Don't take the address of a reference
1540 to convert an argument to a reference.
1541
1542 2002-02-15 Christopher Faylor <cgf@redhat.com>
1543
1544 * win32-nat.c (get_image_name): New function.
1545 (handle_load_dll): Use get_image_name function.
1546 (get_child_debug_event): Avoid registering debug events until possibly
1547 execed process is started.
1548 (child_create_inferior): Allow invocation via shell so that command
1549 line redirection, etc. works ok.
1550 (_initialize_inftarg): Add new command: "set shell" to control whether
1551 a shell is used to start a process.
1552
1553 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
1554
1555 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
1556 instead of find_register_by_number.
1557 (cannot_store_register): Likewise.
1558
1559 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
1560
1561 * dwarf2read.c: Replace fprintf (stderr, ...) by
1562 fprintf_unfiltered (gdb_stderr, ...).
1563
1564 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
1565
1566 * gdbserver/gdbserver.1: Document --attach.
1567
1568 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
1569
1570 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
1571 descriptions.
1572 * arm-tdep.c (arm_default_arm_le_breakpoint)
1573 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
1574 (arm_default_thumb_be_breakpoint): New. Initialize them from
1575 traditional breakpoint defines.
1576 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
1577 (arm_gdbarch_init): Initialize new breakpoint variables.
1578 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
1579 (arm_linux_init_abi): Initialize linux-specific breakpoint.
1580 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
1581 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
1582 code out to ...
1583 (arm_netbsd_init_abi_common): ... here; new function.
1584 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
1585 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
1586 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
1587 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
1588
1589 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
1590
1591 * arm-tdep.h (enum arm_abi): New enum.
1592 (struct gdbarch_tdep): New structure.
1593 (LOWEST_PC): Provide a default.
1594 (arm_gdbarch_register_os_abi): Declare new function.
1595 * arm-tdep.c (arm_abi_names): New array.
1596 (process_note_abi_tag_sections): New function.
1597 (get_elfosabi): New function.
1598 (arm_gdbarch_register_os_abi): New function.
1599 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
1600 support for that ABI has been built in, then call the appropriate
1601 configuration routine. Use gdbarch_num_regs() to get the number
1602 of registers.
1603 (arm_dump_tdep): New function.
1604 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
1605 place-holder functions.
1606 (_initialize_arm_tdep): Register them.
1607 * config/arm/tm-arm.h (LOWEST_PC): Delete.
1608
1609 * armnbsd-tdep.c: New file.
1610 * Makefile.in (armnbsd-tdep.o): Add dependencies.
1611 * config/arm/nbsd.mt (TDEPFILES): Add it.
1612 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
1613
1614 * armnbsd-nat.c: Include regcache.h.
1615 * Makefile.in (armnbsd-nat.o): Update dependency list.
1616
1617 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
1618
1619 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
1620
1621 * gdbserver/Makefile.in: Fix typos in target rules.
1622
1623 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
1624
1625 Fix part of PR gdb/267.
1626 * linespec.c (find_methods): Handle constructors specially for now.
1627
1628 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
1629
1630 * arm-tdep.c (arm_push_arguments): Eliminate special float type
1631 handling.
1632 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
1633 standard_coerce_float_to_double().
1634
1635 2002-02-14 Christopher Faylor <cgf@redhat.com>
1636
1637 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
1638 GDBINIT_FILENAME.
1639
1640 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
1641
1642 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
1643 find_variant_by_name, because it confuses the multiarch
1644 framework. Return NULL if there isn't an architecture with the
1645 user supplied name, instead of forcing a different one without
1646 recording the change with the multiarch machinery.
1647 (find_variant_by_name): Delete.
1648
1649 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1650
1651 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
1652 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
1653
1654 2002-02-13 Martin M. Hunt <hunt@redhat.com>
1655
1656 * stack.c (print_frame_info_base): When calling
1657 print_frame_info_listing_hook, set current_source_symtab.
1658
1659 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
1660
1661 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
1662 and remove unused $(INCLUDE_DIR).
1663 Add regcache.c to OBS.
1664 Add generated register protocol files to clean target.
1665 Update dependencies for new objects, obsolete old target code.
1666
1667 * gdbserver/linux-low.c: Remove all platform-specific code to
1668 new files. Remove various dead code. Update to use regcache
1669 functionality.
1670 * gdbserver/remote-utils.c (fromhex): Add return statement
1671 to quiet warning.
1672 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
1673 constant.
1674 (input_interrupt): Add integer parameter to match prototype
1675 of a signal handler.
1676 (outreg): Use register_data ().
1677 (prepare_resume_reply): Use gdbserver_expedite_regs.
1678 * gdbserver/server.c (main): Dynamically allocate own_buf because
1679 PBUFSIZ is no longer constant. Use registers_to_string () and
1680 registers_from_string ().
1681 * gdbserver/server.h: No longer include "defs.h". Add prototypes
1682 for error (), fatal (), and warning (). Update definition of
1683 PBUFSIZ to use regcache functionality. Add include guard.
1684 * gdbserver/utils.c (fatal): Add missing ``const''.
1685 (warning): New function.
1686
1687 * regformats/regdat.sh: Include "regcache.h" in generated files.
1688 Provide init_registers () function.
1689 * regformats/regdef.h: Add prototype for set_register_cache ().
1690 Add include guard.
1691
1692 * gdbserver/linux-arm-low.c: New file.
1693 * gdbserver/linux-i386-low.c: New file.
1694 * gdbserver/linux-ia64-low.c: New file.
1695 * gdbserver/linux-m68k-low.c: New file.
1696 * gdbserver/linux-mips-low.c: New file.
1697 * gdbserver/linux-ppc-low.c: New file.
1698 * gdbserver/linux-sh-low.c: New file.
1699
1700 * gdbserver/regcache.c: New file.
1701 * gdbserver/regcache.h: New file.
1702
1703 * gdbserver/low-linux.c: Removed obsolete file.
1704
1705 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
1706
1707 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
1708 * config/i386/linux.mt: Likewise.
1709 * config/ia64/linux.mt: Likewise.
1710 * config/m68k/linux.mh: Likewise.
1711 * config/powerpc/linux.mh: Likewise.
1712 * config/mips/linux.mt: Likewise.
1713
1714 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
1715
1716 * config/i386/i386lynx.mh: Mark gdbserver variables
1717 as (currently) obsolete for this target.
1718 * config/i386/nbsd.mt: Likewise.
1719 * config/i386/nbsdelf.mt: Likewise.
1720 * config/m32r/m32r.mt: Likewise.
1721 * config/m68k/m68klynx.mh: Likewise.
1722 * config/m68k/nbsd.mt: Likewise.
1723 * config/m68k/sun3os4.mh: Likewise.
1724 * config/mips/vr5000.mt: Likewise.
1725 * config/ns32k/nbsd.mt: Likewise.
1726 * config/pa/hppabsd.mh: Likewise.
1727 * config/pa/hppaosf.mh: Likewise.
1728 * config/powerpc/nbsd.mt: Likewise.
1729 * config/rs6000/rs6000lynx.mh: Likewise.
1730 * config/s390/s390.mt: Likewise.
1731 * config/s390/s390x.mt: Likewise.
1732 * config/sparc/sparclynx.mh: Likewise.
1733 * config/sparc/sun4os4.mh: Likewise.
1734 * config/i386/x86-64linux.mt: Likewise.
1735 * config/sparc/linux.mh: Likewise.
1736
1737 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
1738
1739 * configure.tgt: Configure gdbserver only for known working
1740 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
1741 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
1742 SUBDIRS if it is configured. Update comment for ${nativefile}.
1743 * configure: Regenerated.
1744
1745 2002-02-13 Michael Snyder <msnyder@redhat.com>
1746
1747 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
1748 (default_gcore_mach): Just return 0, work around a problem in bfd.
1749 (default_gcore_target): OK to return NULL if exec_bfd is null.
1750 (make_mem_sec): Use a cast, avoid a warning.
1751
1752 * procfs.c (find_memory_regions_callback): Use a cast instead of
1753 calling host_pointer_to_address (which complains if
1754 sizeof (host pointer) != sizeof (target pointer)).
1755 (procfs_make_note_section): Avoid overflow in psargs string.
1756
1757 * procfs.c (procfs_make_note_section): Make the default
1758 implementation return an error.
1759
1760 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
1761
1762 * procfs.c (procfs_make_note_section): Provide a default definition
1763 (for alpha-dec-osf4.0f). Fix typos.
1764
1765 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
1766
1767 * linux-proc.c: Add include of regcache.h.
1768 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
1769
1770 2002-02-13 Andrew Cagney <ac131313@redhat.com>
1771
1772 From 2002-01-18 Greg McGary <greg@mcgary.org>:
1773 * memattr.c (create_mem_region): Disallow useless empty region.
1774 Regions are half-open intervals, so allow [A..B) [B..C) as
1775 non-overlapping.
1776
1777 2002-02-13 Michael Chastain <mec@shout.net>
1778
1779 * defs.h: Kill CONST_PTR.
1780 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
1781 * c-lang.c (c_builtin_types): Likewise.
1782 * ch-lang.c (ch_builtin_types): Likewise.
1783 * f-lang.c (f_builtin_types): Likewise.
1784 * language.c (unknown_builtin_types): Likewise.
1785 * m2-lang.c (m2_builtin_types): Likewise.
1786 * p-lang.c (pascal_builtin_types): Likewise.
1787 * scm-lang.c (c_builtin_types): Likewise.
1788
1789 2002-02-13 Keith Seitz <keiths@redhat.com>
1790
1791 * arm-tdep.h (arm_get_next_pc): Add declaration.
1792
1793 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
1794
1795 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
1796 with other related struct-returning functions.
1797 (arm_extract_struct_value_address): New function.
1798 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
1799 initialize float_format, double_format and long_double_format as
1800 appropriate to the endianness of the target.
1801 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
1802 (arm_use_struct_convention): Delete declaration.
1803 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
1804
1805 2002-02-13 Keith Seitz <keiths@redhat.com>
1806
1807 * defs.h (core_addr_to_string_nz): New function.
1808
1809 2002-02-13 Mark Kettenis <kettenis@gnu.org>
1810
1811 Apply missing bits of 2002-01-15 patch.
1812 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
1813 (fill_fpregset): Use i387_fill_fsave.
1814
1815 2002-02-12 Keith Seitz <keiths@redhat.com>
1816
1817 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
1818 (core_addr_to_string_nz): New function.
1819
1820 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
1821
1822 * arm-linux-nat.c: Really include arm-tdep.h.
1823 * config/arm/tm-linux.h (struct type, struct value): Declare.
1824
1825 2002-02-11 Michael Snyder <msnyder@redhat.com>
1826
1827 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
1828 (gcore section): Ifdef for Solaris and Unixware only.
1829 (procfs_do_thread_registers): Unixware needs one lwpstatus
1830 per thread (not one prstatus or pstatus).
1831 (procfs_make_note_section): Iterate only over kernel threads (lwps),
1832 not over all gdb threads. For unixware, call elfcore_write_pstatus
1833 once before iterating over threads.
1834
1835 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
1836
1837 * arm-tdep.h: New file.
1838 * arm-tdep.c: Include arm-tdep.h.
1839 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
1840 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
1841 (arm_print_float_info, arm_register_type, convert_to_extended)
1842 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
1843 (arm_extract_return_value, arm_register_name): Make static.
1844 (arm_software_single_step): Similarly. Fix types in declaration.
1845 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
1846 (arm_store_return_value, arm_store_struct_return): New functions.
1847 (arm_gdbarch_init): Register the above functions. Also register
1848 call_dummy_start_offset, sizeof_call_dummy_words,
1849 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
1850 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
1851 max_register_virtual_size, register_size. Set up
1852 prologue_cache.saved_regs here, rather than ...
1853 (_initialize_arm_tdep): ... here.
1854 * config/arm/tm-arm.h (struct type, struct value): Delete forward
1855 declarations.
1856 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
1857 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
1858 (arm_print_float_info, arm_register_type, convert_to_extended)
1859 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
1860 (arm_extract_return_value, arm_register_name): Delete declarations.
1861 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
1862 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
1863 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
1864 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
1865 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
1866 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
1867 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
1868 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
1869 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
1870 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
1871 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
1872 (arm_get_next_pc): No-longer static -- these are needed by the RDI
1873 interface.
1874 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
1875 * remote-rdi.c remote-rdp.c: Likewise.
1876 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
1877 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
1878 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
1879 definition.
1880
1881 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
1882 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
1883 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
1884 from non-ARM_ prefixed definitions.
1885 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
1886 all uses of above.
1887 * remote-rdi.c remote-rdp.c: Likewise.
1888 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
1889
1890 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
1891
1892 * arm-tdep.c (arm_frameless_function_invocation)
1893 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
1894 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
1895 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
1896 (arm_pop_frame, arm_get_next_pc): Make static.
1897 (arm_gdbarch_init): Register above in gdbarch structure.
1898 (arm_read_fp): Renamed from arm_target_read_fp.
1899 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
1900 * config/arm/tm-arm.h (arm_frameless_function_invocation)
1901 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
1902 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
1903 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
1904 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
1905 (arm_pc_is_thumb_dummy): Delete declarations.
1906 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
1907 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
1908 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
1909 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
1910
1911 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
1912
1913 * symtab.c (compare_search_syms): New function.
1914 (sort_search_symbols): New function.
1915 (search_symbols): Sort symbols after searching rather than
1916 before.
1917
1918 2002-02-10 Andrew Cagney <ac131313@redhat.com>
1919
1920 * NEWS: Linux -> GNU/Linux.
1921
1922 2002-02-10 Andrew Cagney <ac131313@redhat.com>
1923
1924 * gdbarch.sh: For for level one methods, disallow a definition
1925 when partially multi-arched. Add comments explaining rationale.
1926 * gdbarch.h: Re-generate.
1927
1928 2002-02-10 Andrew Cagney <ac131313@redhat.com>
1929
1930 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
1931 multi-arch partial.
1932
1933 2002-02-10 Andrew Cagney <ac131313@redhat.com>
1934
1935 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
1936 field. Use diff -u.
1937 * gdbarch.c: Re-generate.
1938
1939 2002-02-10 Andrew Cagney <ac131313@redhat.com>
1940
1941 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
1942 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
1943 partial.
1944
1945 2002-02-10 Andrew Cagney <ac131313@redhat.com>
1946
1947 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
1948 multi-arch partial.
1949 (PUSH_ARGUMENTS): Switch to using predefault.
1950 * gdbarch.c: Regenerate.
1951
1952 2002-02-10 Andrew Cagney <ac131313@redhat.com>
1953
1954 * valops.c (PUSH_ARGUMENTS): Delete definition.
1955 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
1956 partial. Default to default_push_arguments.
1957 * gdbarch.h, gdbarch.c: Regenerate.
1958
1959 2002-02-09 Andrew Cagney <ac131313@redhat.com>
1960
1961 * defs.h (throw_exception): Rename return_to_top_level. Update
1962 comments.
1963 * utils.c (error_stream, internal_verror, quit): Ditto.
1964 * top.c (throw_exception, catcher): Ditto.
1965 * sparclet-rom.c (sparclet_load): Ditto.
1966 * remote.c (interrupt_query, minitelnet): Ditto.
1967 * remote-sds.c (interrupt_query): Ditto.
1968 * remote-mips.c (mips_error, mips_kill): Ditto.
1969 * ocd.c (interrupt_query): Ditto.
1970 * monitor.c (monitor_interrupt_query): Ditto.
1971 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
1972 * target.h: Update comment.
1973
1974 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
1975
1976 2002-02-09 Andrew Cagney <ac131313@redhat.com>
1977
1978 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
1979 default_double_format.
1980 * gdbarch.h, gdbarch.c: Re-generate.
1981 * findvar.c (floatformat_unknown): Delete variable definition.
1982 * doublest.h (floatformat_unknown): Delete variable declaration.
1983
1984 2002-02-09 Jim Blandy <jimb@redhat.com>
1985
1986 * stabsread.c (read_type): Add code to parse Sun's syntax for
1987 prototyped function types.
1988
1989 2002-02-09 Andrew Cagney <ac131313@redhat.com>
1990
1991 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
1992 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
1993
1994 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
1995
1996 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
1997 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
1998 now _initialize_xcoffsolib gets called again and overrides the
1999 commands from solib.c in a native configuration.
2000
2001 2002-02-09 Mark Kettenis <kettenis@gnu.org>
2002
2003 * doublest.c (store_typed_floating): Don't try to return a value.
2004 Fixes PR gdb/290.
2005
2006 2002-02-08 Jim Blandy <jimb@redhat.com>
2007
2008 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
2009 is prototyped and has no arguments, print its argument list as
2010 `(void)'.
2011
2012 2002-02-08 Chris Demetriou <cgd@broadcom.com>
2013
2014 * MAINTAINERS (write-after-approval): Add myself.
2015 (paper-trail): I've escaped!
2016
2017 2002-02-08 Christopher Faylor <cgf@redhat.com>
2018
2019 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
2020 changes.
2021 (_initialize_check_for_gdb_ini): Ditto.
2022
2023 2002-02-08 Martin M. Hunt <hunt@redhat.com>
2024
2025 * win32-nat.c (cygwin_pid_to_str): Fix typo.
2026 xaprintf -> xasprintf.
2027
2028 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
2029
2030 * win32-nat.c: Remove use of printf and sprintf functions.
2031
2032 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
2033
2034 * arm-tdep.c (arm_frame_chain_valid): Make static.
2035 (arm_push_arguments): Likewise.
2036 (arm_gdbarch_init): New function.
2037 (_initialize_arm_tdep): Call it.
2038 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
2039 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
2040 (FRAME_CHAIN_VALID): Delete.
2041 (arm_frame_chain_valid): Delete declaration.
2042 (PUSH_ARGUMENTS): Delete.
2043 (arm_push_arguments): Delete declaration.
2044 (CALL_DUMMY_P): Delete.
2045
2046 2002-02-08 Andrew Cagney <ac131313@redhat.com>
2047 Corinna Vinschen <vinschen@redhat.com>
2048
2049 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
2050 on builtin float types.
2051
2052 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
2053
2054 * utils.c: Include <curses.h> before "bfd.h".
2055 * tui/tui-hooks.c: Likewise.
2056 * tui/tui.c: Likewise.
2057 * tui/tuiCommand.c: Likewise.
2058 * tui/tuiData.c: Likewise.
2059 * tui/tuiDataWin.c: Likewise.
2060 * tui/tuiDisassem.c: Likewise.
2061 * tui/tuiGeneralWin.c: Likewise.
2062 * tui/tuiIO.c: Likewise.
2063 * tui/tuiLayout.c: Likewise.
2064 * tui/tuiRegs.c: Likewise.
2065 * tui/tuiSource.c: Likewise.
2066 * tui/tuiSourceWin.c: Likewise.
2067 * tui/tuiStack.c: Likewise.
2068 * tui/tuiWin.c: Likewise.
2069
2070 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
2071
2072 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
2073 to include space for pseudoregs as well. Update loops accordingly.
2074 (sh_fp_frame_init_saved_regs): Ditto.
2075 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
2076
2077 2002-02-07 Andrew Cagney <ac131313@redhat.com>
2078
2079 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
2080 Add Richard Earnshaw to Arm maintainers.
2081
2082 2002-02-07 Andrew Cagney <ac131313@redhat.com>
2083
2084 * defs.h (warning_begin): Delete declaration.
2085
2086 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
2087 Delete macro.
2088
2089 2002-02-07 Michael Snyder <msnyder@redhat.com>
2090
2091 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
2092 Logic bug, remove misplaced else.
2093
2094 2002-02-07 Klee Dienes <klee@apple.com>
2095
2096 * fork-inferior.c (fork_inferior): Add '!' to the list of
2097 characters that need to be quoted when building a string for the
2098 shell. Quote '!' specifically with a backslash, since CSH chokes
2099 when trying to evaluate "str!str".
2100
2101 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
2102
2103 * rdi-share/host.h: Only provide a typedef for bool if it is not
2104 defined.
2105
2106 2002-02-04 Michael Snyder <msnyder@redhat.com>
2107
2108 * breakpoint.h (enum bptype): Add new overlay event bp type.
2109 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
2110
2111 * breakpoint.c (create_internal_breakpoint): New function.
2112 (internal_breakpoint_number): Moved into create_internal_breakpoint.
2113 (create_longjmp_breakpoint): Use create_internal_breakpoint.
2114 (create_thread_event_breakpoint): Ditto.
2115 (create_solib_event_breakpoint): Ditto.
2116 (create_overlay_event_breakpoint): New function.
2117 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
2118 (update_breakpoints_after_exec): Delete and re-initialize
2119 overlay event breakpoints after an exec. Add FIXME comment
2120 about longjmp breakpoint.
2121 (print_it_typical): Ignore overlay event breakpoints.
2122 (print_one_breakpoint): Ditto.
2123 (mention): Ditto.
2124 (bpstat_what): Do not stop for overlay event breakpoints.
2125 (delete_breakpoint): Don't delete overlay event breakpoints.
2126 (breakpoint_re_set_one): Delete the overlay event breakpoint.
2127 (breakpoint_re_set): Re-create overlay event breakpoint.
2128
2129 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
2130 (overlay_manual_command): Disable overlay breakpoints.
2131 (overlay_off_command): Disable overlay breakpoints.
2132
2133 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
2134
2135 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
2136 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
2137 to here from config/tm-arm.h.
2138 (coff_sym_is_thumb): Make static.
2139 (arm_elf_make_msymbol_special): New function.
2140 (arm_coff_make_msymbol_special): New function.
2141 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
2142 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
2143 (coff_sym_is_thumb): Delete declaration.
2144 (arm_elf_make_msymbol_special): Declare.
2145 (arm_coff_make_msymbol_special): Declare.
2146 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
2147 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
2148
2149 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
2150
2151 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
2152
2153 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
2154
2155 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
2156 * gdbarch.c gdbarch.h: Regenerate.
2157 * arch-utils.c (default_print_float_info): New function.
2158 * arch-utils.h (default_print_float_info): Prototype it.
2159 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
2160 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
2161 (PRINT_FLOAT_INFO): Document it.
2162
2163 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
2164 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
2165 (PRINT_FLOAT_INFO): Define.
2166
2167 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
2168
2169 * win32-nat.c (_initialize_check_for_gdb_ini):
2170 Add typecast to sprintf argument to suppress a warning.
2171
2172 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
2173
2174 * win32-nat.c (last_sig): Changed type of variable to target_signal,
2175 to allow easier handling of pass state.
2176 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
2177 that gives exception name and address.
2178 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
2179 and set last_sig value to ourstatus->value.sig. Some missing
2180 exceptions added.
2181 (child_continue): Correctly report continue_status.
2182 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
2183 TARGET_SIGNAL_0 (new default value).
2184 (child_resume): consider sig argument passed to decide if
2185 the exception should be passed to debuggee or not.
2186
2187 2002-02-05 Michael Snyder <msnyder@redhat.com>
2188
2189 * regcache.c (fetch_register): Call target_fetch_register
2190 only if we don't call FETCH_PSEUDO_REGISTER.
2191 (store_register): Call target_store_register only if we
2192 don't call STORE_PSEUDO_REGISTER.
2193
2194 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
2195
2196 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
2197 ELF_MAKE_MSYMBOL_SPECIAL.
2198 * gdbarch.c, gdbarch.h: Regenerate.
2199 * arch-utils.c (default_make_msymbol_special): New function.
2200 * arch-utils.h (default_make_msymbol_special): Export.
2201 * elfread.c (elf_symtab_read): Compile use of
2202 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
2203 multiarched.
2204 * coffread.c (coff_symtab_read): Ditto, for
2205 COFF_MAKE_MSYMBOL_SPECIAL.
2206
2207 2002-02-05 Jim Blandy <jimb@redhat.com>
2208
2209 * solib-svr4.c (svr4_truncate_ptr): New function.
2210 (svr4_relocate_section_addresses): Do the address arithmetic with
2211 the appropriate truncation for target addresses, even when
2212 CORE_ADDR is larger than a target address.
2213
2214 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2215
2216 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
2217 to (int *).
2218
2219 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2220
2221 * gdbserver/linux-low.c (kill_inferior): Remove commented out
2222 code.
2223
2224 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2225
2226 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
2227
2228 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2229
2230 * gdbserver/linux-low.c: Remove unused include files.
2231
2232 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2233
2234 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
2235 (read_inferior_memory): Use it.
2236 (write_inferior_memory): Likewise.
2237
2238 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2239
2240 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
2241 grubbing through sys_errlist.
2242
2243 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
2244
2245 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
2246
2247 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
2248 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
2249
2250 2002-02-04 Andrew Cagney <ac131313@redhat.com>
2251
2252 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
2253 (do_sfunc, set_cmd_sfunc): New functions.
2254
2255 * command.h (struct cmd_list_element): Add field func.
2256 * cli/cli-decode.h (struct cmd_list_element): Ditto.
2257 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
2258 * cli/cli-decode.h: Ditto.
2259
2260 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
2261 (help_all, help_cmd_list): Ditto.
2262 (find_cmd, complete_on_cmdlist): Ditto.
2263 * top.c (execute_command): Ditto.
2264
2265 * cli/cli-setshow.c (do_setshow_command): Call func instead of
2266 function.sfunc.
2267
2268 * infcmd.c (notice_args_read): Fix function signature.
2269
2270 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
2271 * cli/cli-decode.c (add_set_cmd): Ditto.
2272 * utils.c (initialize_utils): Ditto.
2273 * maint.c (_initialize_maint_cmds): Ditto.
2274 * infrun.c (_initialize_infrun): Ditto.
2275 * demangle.c (_initialize_demangler): Ditto.
2276 * remote.c (add_packet_config_cmd): Ditto.
2277 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2278 * cris-tdep.c (_initialize_cris_tdep): Ditto.
2279 * proc-api.c (_initialize_proc_api): Ditto.
2280 * kod.c (_initialize_kod): Ditto.
2281 * valprint.c (_initialize_valprint): Ditto.
2282 * top.c (init_main): Ditto.
2283 * infcmd.c (_initialize_infcmd): Ditto.
2284 * corefile.c (_initialize_core): Ditto.
2285 * arm-tdep.c (_initialize_arm_tdep): Ditto.
2286 * arch-utils.c (initialize_current_architecture): Ditto.
2287 (_initialize_gdbarch_utils): Ditto.
2288 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
2289
2290 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
2291 * wince.c (_initialize_inftarg): Ditto.
2292 * symfile.c (_initialize_symfile): Ditto.
2293 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2294 * language.c (_initialize_language): Ditto.
2295 * arc-tdep.c (_initialize_arc_tdep): Ditto.
2296
2297 2002-02-04 Michael Snyder <msnyder@redhat.com>
2298
2299 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
2300
2301 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
2302
2303 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
2304 Add rules for building the register data files.
2305
2306 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
2307
2308 * regformats/regdat.sh: Add braces to the definition of
2309 expedite_regs_${arch}.
2310
2311 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
2312
2313 * regformats/regdef.h (struct reg): Add comment describing the
2314 requirements for offset and size fields.
2315
2316 2002-02-04 Andreas Schwab <schwab@suse.de>
2317
2318 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
2319 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
2320
2321 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
2322
2323 * gdbarch.sh (copyright): Update years in generated header.
2324 (SMASH_TEXT_ADDRESS): Add rule.
2325 * gdbarch.h, gdbarch.c: Re-generate.
2326 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
2327 * dbxread.c: Likewise.
2328 * dwarfread.c: Likewise.
2329 * elfread.c: Likewise.
2330 * somread.c: Likewise.
2331
2332 * arm-tdep.c (arm_smash_text_address): New function.
2333 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
2334
2335 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
2336
2337 Add support for hardware watchpoints on win32 native.
2338 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
2339 CONTEXT_DEBUG_REGISTERS.
2340 (dr variable): New variable. Static array containing a local copy
2341 of debug registers.
2342 (debug_registers_changed): New variable. Reflects when debug registers
2343 are changed and need to be written to inferior.
2344 (debug_registers_used): New variable. Reflects when any debug register
2345 was set, used when new threads are created.
2346 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
2347 i386-nat code.
2348 (thread_rec): Set dr array if id is the thread of current_event .
2349 (child_continue, child_resume): Change the debug registers for all
2350 threads if debug_registers_changed.
2351 (child_add_thread): Change the debug registers if debug_registers_used.
2352 * config/i386/cygwin.mh: Add use of i386-nat.o file.
2353 Link nm.h to new nm-cygwin.h file.
2354 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
2355 of hardware registers.
2356
2357 2002-02-03 Andrew Cagney <ac131313@redhat.com>
2358
2359 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
2360 Restore behavour broken by 2002-01-20 Andrew Cagney
2361 <ac131313@redhat.com> IEEE_FLOAT removal.
2362
2363 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
2364
2365 * c-valprint.c (c_val_print): Pass a proper valaddr to
2366 cp_print_class_method.
2367 * valops.c (search_struct_method): If there is only one method
2368 and args is NULL, return that method.
2369
2370 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
2371
2372 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
2373 accessing tag_name directly.
2374
2375 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
2376
2377 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
2378 of accessing tag_name directly.
2379
2380 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
2381
2382 PR gdb/280
2383 * gdbtypes.c (replace_type): New function.
2384 * gdbtypes.h (replace_type): Add prototype.
2385 * stabsread.c (read_type): Use replace_type.
2386
2387 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
2388
2389 * Makefile.in (memattr.o): Add missing dependencies rule.
2390
2391 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
2392
2393 * breakpoint.c (break_at_finish_command): Really export.
2394 (break_at_finish_at_depth_command): Ditto.
2395 (tbreak_at_finish_command): Ditto.
2396 * hppa-tdep.c: Include completer.h.
2397 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
2398 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
2399
2400 2002-02-01 Andrew Cagney <ac131313@redhat.com>
2401
2402 * utils.c (do_write): New function.
2403 (error_stream): Rewrite combining the code from error_begin and
2404 verror.
2405 (verror): Rewrite using error_stream.
2406 (error_begin): Delete function.
2407
2408 2002-02-01 Andrew Cagney <ac131313@redhat.com>
2409
2410 * utils.c (error_begin): Make static.
2411 * defs.h (error_begin): Delete declaration.
2412
2413 * linespec.c (cplusplus_error): Replace cplusplus_hint.
2414 (decode_line_1): Use cplusplus_error instead of error_begin,
2415 cplusplus_hint and return_to_top_level.
2416 * coffread.c (coff_symfile_read): Use error instead of error_begin
2417 and return_to_top_level.
2418 * infrun.c (default_skip_permanent_breakpoint): Ditto.
2419
2420 2002-02-01 Andrew Cagney <ac131313@redhat.com>
2421
2422 * language.h (type_error, range_error): Make string parameter
2423 constant.
2424 * language.c (warning_pre_print): Delete extern declaration.
2425 * dwarfread.c (warning_pre_print): Ditto.
2426 * language.c (type_error, range_error): Rewrite to use verror and
2427 vwarning instead of warning_begin.
2428
2429 2002-02-01 Michael Snyder <msnyder@redhat.com>
2430
2431 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
2432 (set_ignore_count): Move misplaced comment back where it belongs.
2433
2434 2002-02-01 Andrew Cagney <ac131313@redhat.com>
2435
2436 * command.h (NO_FUNCTION): Delete macro.
2437 * cli/cli-decode.h (NO_FUNCTION): Ditto.
2438 * top.c (execute_command): Replace NO_FUNCTION with NULL.
2439 * tracepoint.c (_initialize_tracepoint): Ditto.
2440 * cli/cli-decode.c (add_set_cmd): Ditto.
2441 * cli/cli-cmds.c (init_cli_cmds): Ditto.
2442
2443 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
2444
2445 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
2446 Update ``this'' pointer when calling virtual functions.
2447
2448 2002-02-01 Michael Snyder <msnyder@redhat.com>
2449
2450 * breakpoint.c (create_temp_exception_breakpoint): Delete.
2451 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
2452
2453 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
2454
2455 * regformats/reg-arm.dat: New file.
2456 * regformats/reg-i386.dat: New file.
2457 * regformats/reg-ia64.dat: New file.
2458 * regformats/reg-m68k.dat: New file.
2459 * regformats/reg-mips.dat: New file.
2460 * regformats/reg-ppc.dat: New file.
2461 * regformats/reg-sh.dat: New file.
2462 * regformats/regdef.h: New file.
2463 * regformats/regdat.sh: New file.
2464
2465 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
2466
2467 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
2468 (arm_frame_args_address, arm_frame_locals_address): New functions.
2469 (arm_frame_num_args): New function.
2470 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
2471 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
2472 (FRMA_NUM_ARGS): Call arm_frame_num_args.
2473
2474 2002-01-31 Michael Snyder <msnyder@redhat.com>
2475
2476 * breakpoint.c (break_at_finish_command): Export.
2477 (break_at_finish_at_depth_command): Export.
2478 (tbreak_at_finish_command): Export.
2479 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
2480 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
2481 "tbreak" commands, which are HPPA specific.
2482
2483 * printcmd.c (disassemble_command): Remove an ancient
2484 artifact of an old merge.
2485
2486 * symfile.h (enum overlay_debugging_state):
2487 Define enum constant values for overlay mode.
2488 * symfile.c (overlay_debugging): Use enums instead of literals.
2489 (overlay_is_mapped, overlay_auto_command,
2490 overlay_manual_command): Ditto.
2491
2492 * breakpoint.c (insert_breakpoints, remove_breakpoint,
2493 breakpoint_here_p, breakpoint_inserted_here_p,
2494 breakpoint_thread_match, bpstat_stop_status,
2495 describe_other_breakpoints, check_duplicates, clear_command):
2496 Coding standard fixes.
2497
2498 * target.c (target_xfer_memory): Add spaces, coding standard.
2499 (do_xfer_memory): Add missing line to trust-readonly
2500 code: check bfd SEC_READONLY flag for section.
2501
2502 2002-01-31 Andrew Cagney <ac131313@redhat.com>
2503
2504 * PROBLEMS: Fix typo, 5.1->5.1.1.
2505
2506 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
2507
2508 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
2509 data symbols, since we search based on textlow and texthigh.
2510 (find_pc_sect_symtab): Likewise.
2511
2512 2002-01-30 Andrew Cagney <ac131313@redhat.com>
2513
2514 * defs.h (vwarning): Declare.
2515 * utils.c (vwarning): New function.
2516 (warning): Call vwarning.
2517 (warning_begin): Delete function.
2518
2519 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
2520 the warning message.
2521 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
2522 warning_begin.
2523
2524 2002-01-30 Michael Snyder <msnyder@redhat.com>
2525
2526 * NEWS: Mention "set trust-readonly-sections" command.
2527 Mention generate-core-file command.
2528
2529 2002-01-15 Michael Snyder <msnyder@redhat.com>
2530
2531 * target.c: New command, "set trust-readonly-sections on".
2532 (do_xfer_memory): Honor the suggestion to trust readonly sections
2533 by reading them from the object file instead of from the target.
2534 (initialize_targets): Register command "set trust-readonly-sections".
2535
2536 2002-01-29 Andrew Cagney <ac131313@redhat.com>
2537
2538 * parse.c (target_map_name_to_register): Simplify, search regs and
2539 pseudo-regs using a single loop.
2540
2541 2002-01-30 Andrew Cagney <ac131313@redhat.com>
2542
2543 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
2544
2545 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
2546
2547 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
2548 * config/i386/i386v42mp.mh: Add i387-nat.o .
2549 * i386v4-nat.c: Include i387-nat.h.
2550 (supply_fpregset): Use i387_supply_fsave.
2551 (fill_fpregset): Use i387_fill_fsave.
2552
2553 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
2554
2555 * arm-tdep.c (arm_call_dummy_words): Define.
2556 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
2557 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
2558 (CALL_DUMMY_WORDS): Define.
2559 (arm_call_dummy_words): Declare.
2560 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
2561 (arm_linux_call_dummy_words): Declare.
2562
2563 2002-01-30 Andreas Schwab <schwab@suse.de>
2564
2565 * m68klinux-nat.c: Fix last change to use regcache_collect
2566 instead of referencing registers[] directly.
2567
2568 2002-01-29 Andrew Cagney <ac131313@redhat.com>
2569
2570 * parse.c (target_map_name_to_register): Delete code wrapped in
2571 #ifdef REGISTER_NAME_ALIAS_HOOK.
2572
2573 2002-01-28 Michael Snyder <msnyder@redhat.com>
2574
2575 * regcache.c (legacy_read_register_gen): Need to be able to
2576 read pseudo-register as well as real register.
2577 (legacy_write_register_gen): Ditto.
2578
2579 2002-01-28 Andrew Cagney <ac131313@redhat.com>
2580
2581 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
2582 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
2583 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
2584 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
2585 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
2586 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
2587 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
2588 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
2589 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
2590 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
2591 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
2592 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
2593 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
2594 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
2595 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
2596 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
2597 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
2598 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
2599 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
2600 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
2601
2602 2002-01-28 Andrew Cagney <ac131313@redhat.com>
2603
2604 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
2605 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
2606 (initialize_current_architecture): Update target_byte_order using
2607 information from BFD.
2608 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
2609 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
2610
2611 2002-01-28 Andrew Cagney <ac131313@redhat.com>
2612
2613 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
2614 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
2615
2616 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
2617 #ifdef INVALID_FLOAT.
2618 * infcmd.c (do_registers_info): Ditto.
2619 * values.c (unpack_double): Ditto. Add comment.
2620
2621 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
2622 already commented out.
2623
2624 2002-01-26 Andreas Schwab <schwab@suse.de>
2625
2626 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
2627 * m68klinux-nat.c: Update ptrace interface for fetching/storing
2628 registers and add support for PTRACE_GETREGS.
2629
2630 2002-01-24 Andrew Cagney <ac131313@redhat.com>
2631
2632 GDB 5.1.1 released from 5.1 branch.
2633 * NEWS: Add 5.1.1 news.
2634 * README: Sync with 5.1 branch.
2635
2636 2002-01-23 Fred Fish <fnf@redhat.com>
2637
2638 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
2639 stabstring on initial malloc. Reallocing will copy it for us,
2640 if necessary.
2641
2642 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
2643
2644 * Makefile.in (hpread_h): Delete.
2645 (HFILES_NO_SRCDIR): Remove hpread.h.
2646 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
2647 (hpread.o): Update dependencies.
2648 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
2649
2650 * hp-psymtab-read.c: Remove file.
2651 * hp-symtab-read.c: Remove file.
2652 * hpread.h: Remove file.
2653
2654 * hpread.c: Merge all contents of hp-psymtab-read.c,
2655 hp-symtab-read.c and hpread.h into this file, as it was prior to
2656 January 1999.
2657
2658 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
2659 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
2660 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
2661 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
2662
2663 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
2664
2665 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
2666 fill_gregset): Call gdbarch_tdep() just once, assign result to
2667 variable and use that, instead of calling the function several
2668 times.
2669
2670 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
2671
2672 * configure.host: Accept sparcv9 as alias for sparc64.
2673 * configure.tgt: Likewise.
2674
2675 2002-01-22 Kevin Buettner <kevinb@redhat.com>
2676
2677 * solib-aix5.c (build_so_list_from_mapfile)
2678 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
2679 arguments is not reversed.
2680 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
2681 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
2682
2683 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
2684
2685 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
2686 modified version of obsolete sh_fetch_pseudo_register.
2687 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
2688 (sh4_register_read): New function.
2689 (sh_pseudo_register_write): New function. Renamed and modified
2690 version of obsolete sh_store_pseudo_register.
2691 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
2692 (sh4_register_write): New function.
2693 (sh_gdbarch_init): Remove setting of gdbarch function
2694 fetch_pseudo_register and store_pseudo_register. Remove setting of
2695 register_convert_to_raw, register_convert_to_virtual,
2696 register_convertible.
2697 (sh_sh4_register_convertible): Delete. No longer needed. All is
2698 taken care by architecture specific functions
2699 register_read/register_write.
2700 (sh_sh4_register_convert_to_virtual): Make static.
2701 (sh_sh4_register_convert_to_raw): Ditto.
2702
2703 2002-01-22 Andrew Cagney <ac131313@redhat.com>
2704
2705 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
2706 (floatformat_is_nan, floatformat_mantissa): Ditto.
2707
2708 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
2709 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
2710 builtin_type_ieee_double_little,
2711 builtin_type_ieee_double_littlebyte_bigword,
2712 builtin_type_m68881_ext, builtin_type_i960_ext,
2713 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
2714 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
2715 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
2716 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
2717
2718 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
2719
2720 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
2721 parameter. Set frameless flag if it exists and depended of
2722 whether the scanned function is frameless or not.
2723 (xstormy16_skip_prologue): If function is frameless, return
2724 result of xstormy16_scan_prologue().
2725 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
2726 call.
2727
2728 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
2729
2730 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
2731 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
2732 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
2733 sh_sh4_register_byte, sh_sh4_register_raw_size,
2734 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
2735 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
2736 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
2737 sh_store_pseudo_register, sh_do_pseudo_register): Call
2738 gdbarch_tdep() just once, assign result to variable and use that,
2739 instead of calling the function several times.
2740
2741 2002-01-20 Mark Kettenis <kettenis@gnu.org>
2742
2743 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
2744 macros instead of LAST_FPU_CTRL_REGNUM.
2745 (store_register): Likewise.
2746
2747 2002-01-21 Jim Blandy <jimb@redhat.com>
2748
2749 * infcmd.c (run_command): Check that the `exec' target layer's BFD
2750 is up-to-date before running the program, not just when a program
2751 exits.
2752
2753 2002-01-21 Fred Fish <fnf@redhat.com>
2754
2755 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
2756 when we have found all instructions we are looking for.
2757
2758 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
2759
2760 * arm-tdep.c (arm_register_name): New function.
2761 (arm_registers_names): Make static.
2762 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
2763 (arm_register_name): Declare.
2764 (REGISTER_NAME): Use it.
2765
2766 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
2767 Kevin Buettner <kevinb@redhat.com>
2768
2769 Convert arm targets to new FRAME interface.
2770 * arm-tdep.c (struct frame_extra_info): Remove fsr.
2771 (arm_frame_find_save_regs): Delete.
2772 (arm_frame_init_saved_regs): New.
2773 (arm_init_extra_frame_info): Alloacte saved_regs as required.
2774 Allocate extra_info as required. Convert all uses of fsr.regs
2775 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
2776 to use extra_info.
2777 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
2778 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
2779 (check_prologue_cache, save_prologue_cache): Likewise.
2780 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
2781 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
2782 (FRAME_FIND_SAVED_REGS): Delete.
2783 (arm_frame_find_saved_regs): Delete prototype.
2784 (arm_frame_init_saved_regs): New prototype.
2785 (FRAME_INIT_SAVED_REGS): Define.
2786
2787 2002-01-20 Andrew Cagney <ac131313@redhat.com>
2788
2789 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
2790
2791 2002-01-20 Andrew Cagney <ac131313@redhat.com>
2792
2793 From Jeff Law <law@redhat.com>:
2794 * infttrace.c: Include <sys/pstat.h>.
2795 (child_pid_to_exec_file): Revamp. Use pstat call to get the
2796 exec file if the ttrace equivalent fails.
2797
2798 2002-01-20 Andrew Cagney <ac131313@redhat.com>
2799
2800 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
2801 (closeLogFile): Ditto.
2802
2803 2002-01-20 Michael Chastain <mec@shout.net>
2804
2805 * top.c (print_gdb_version): Bump copyright year to 2002.
2806
2807 2002-01-20 Andrew Cagney <ac131313@redhat.com>
2808
2809 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
2810 Zannoni and Eli Zaretskii.
2811
2812 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
2813
2814 * buildsym.c: Update copyright years.
2815 * c-typeprint.c: Likewise.
2816 * dwarf2read.c: Likewise.
2817 * f-typeprint.c: Likewise.
2818 * gdbtypes.c: Likewise.
2819 * gdbtypes.h: Likewise.
2820 * hp-symtab-read.c: Likewise.
2821 * hpread.c: Likewise.
2822 * mdebugread.c: Likewise.
2823 * p-typeprint.c: Likewise.
2824
2825 2002-01-20 Andrew Cagney <ac131313@redhat.com>
2826
2827 * remote-sim.c (gdbsim_open): Simplify code testing the macro
2828 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
2829 byte-order selectable.
2830 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
2831 * arch-utils.c: Ditto.
2832 (set_endian): Ditto.
2833 (set_endian_from_file): Ditto.
2834 * gdbserver/low-sim.c (create_inferior): Ditto.
2835 * gdbarch.sh: Ditto.
2836 * gdbarch.h: Re-generate.
2837 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
2838 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
2839 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
2840 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
2841 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
2842 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
2843 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
2844 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
2845 macro definition.
2846 * config/mips/tm-wince.h: Remove #undef of macro
2847 TARGET_BYTE_ORDER_SELECTABLE.
2848 * config/sh/tm-wince.h: Ditto.
2849
2850 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
2851
2852 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
2853 member function fields. Add accessor macro
2854 TYPE_FN_FIELD_ARTIFICIAL.
2855 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
2856 * c-typeprint.c (c_type_print_base): Skip artificial member
2857 functions.
2858
2859 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
2860
2861 * f-typeprint.c: Delete unused function f_type_print_args.
2862 * p-typeprint.c: Delete unused function pascal_type_print_args.
2863
2864 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
2865
2866 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
2867 comment. Add ``artificial'' to ``union field_location''.
2868
2869 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
2870
2871 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
2872 * mdebugread.c (parse_symbol): Likewise.
2873 * stabsread.c (define_symbol): Likewise.
2874 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
2875 initializing TYPE_FIELD_BITPOS to n (obsolete).
2876 (hpread_doc_function_type): Likewise.
2877 * hpread.c (hpread_function_type): Likewise.
2878
2879 2002-01-20 Andrew Cagney <ac131313@redhat.com>
2880
2881 * configure.in (host_makefile_frag): Only require a host makefile
2882 fragment when a native build.
2883 * configure: Re-generate.
2884
2885 2002-01-20 Andrew Cagney <ac131313@redhat.com>
2886
2887 * doublest.h (floatformat_from_type): Declare.
2888 * doublest.c (floatformat_from_type): New function.
2889 (convert_typed_floating): Use.
2890
2891 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
2892 call to function floatformat_from_type.
2893
2894 * gdbarch.sh (IEEE_FLOAT): Delete.
2895 * gdbarch.h, gdbarch.c: Re-generate.
2896 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
2897 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
2898 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
2899 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
2900 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
2901 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
2902 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
2903 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
2904 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
2905 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
2906 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
2907 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
2908
2909 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
2910 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
2911 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
2912 * sh-tdep.c (sh_gdbarch_init): Ditto.
2913 * mips-tdep.c (mips_gdbarch_init): Ditto.
2914 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2915 * cris-tdep.c (cris_gdbarch_init): Ditto.
2916
2917 2002-01-20 Jiri Smid <smid@suse.cz>
2918
2919 * configure.host, configure.tgt: Support x86-64.
2920 * NEWS: Note new target x86-64.
2921
2922 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
2923 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
2924 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
2925 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
2926 x86-64-linux-nat.o): Fix dependencies.
2927
2928 2002-01-19 Andrew Cagney <ac131313@redhat.com>
2929
2930 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
2931 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
2932 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
2933 * config/sparc/xm-sun4os4.h: Delete file.
2934 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
2935
2936 2002-01-19 Andrew Cagney <ac131313@redhat.com>
2937
2938 * config/sparc/sparclynx.mh (XM_FILE): Delete.
2939 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
2940 * config/m68k/m68klynx.mh (XM_FILE): Delete.
2941 * config/i386/i386lynx.mh (XM_FILE): Delete.
2942 * config/rs6000/xm-rs6000ly.h: Delete file.
2943 * config/sparc/xm-sparclynx.h: Delete file.
2944 * config/m68k/xm-m68klynx.h: Delete file.
2945 * config/i386/xm-i386lynx.h: Delete file.
2946 * config/xm-lynx.h: Delete file.
2947 * config/djgpp/fnchange.lst: Update.
2948
2949 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
2950
2951 * alpha-tdep.c (alpha_register_byte): New function.
2952 (alpha_register_raw_size): Ditto.
2953 (alpha_register_virtual_size): Ditto.
2954 (alpha_skip_prologue_internal): Renamed from
2955 alpha_skip_prologue.
2956 (alpha_skip_prologue): New version that calls
2957 alpha_skip_prologue_internal.
2958 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
2959 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
2960 second argument from alpha_skip_prologue.
2961 (REGISTER_BYTE): Use alpha_register_byte.
2962 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
2963 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
2964 (FRAMELESS_FUNCTION_INVOCATION): Use
2965 generic_frameless_function_invocation_not.
2966 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
2967 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
2968
2969 2002-01-19 Andrew Cagney <ac131313@redhat.com>
2970
2971 * config/mips/xm-news-mips.h: Delete file.
2972 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
2973
2974 * config/m88k/xm-m88k.h: Delete file.
2975 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
2976 * config/m88k/xm-delta88v4.h: Ditto.
2977 * config/m88k/xm-delta88.h: Ditto.
2978
2979 * config/alpha/xm-fbsd.h: Delete file.
2980 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
2981
2982 * config/sparc/xm-sparc.h: Delete file.
2983 * Makefile.in (xm-sun4os4.h): Delete dependency.
2984 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
2985 * config/sparc/xm-sun4os4.h: Ditto.
2986 * config/sparc/xm-linux.h: Ditto.
2987
2988 * config/i386/xm-windows.h: Delete file.
2989
2990 2002-01-19 Andrew Cagney <ac131313@redhat.com>
2991
2992 * utils.c: Include <sys/param.h> for MAXPATHLEN.
2993 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
2994
2995 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
2996
2997 * alpha-tdep.c (alpha_call_dummy_words): New.
2998 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
2999 (CALL_DUMMY_P): Define.
3000 (CALL_DUMMY_WORDS): Define.
3001 (SIZEOF_CALL_DUMMY_WORDS): Define.
3002
3003 2002-01-19 Per Bothner <per@bothner.com>
3004
3005 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
3006 isn't NULL, which can happen with some gcj-3.x-produced code.
3007
3008 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
3009
3010 * alpha-tdep.c (alpha_register_virtual_type): New function.
3011 (alpha_init_frame_pc_first): Ditto.
3012 (alpha_fix_call_dummy): Ditto.
3013 (alpha_store_struct_return): Ditto.
3014 (alpha_extract_struct_value_address): Ditto.
3015 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
3016 alpha_register_virtual_type.
3017 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
3018 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
3019 alpha_extract_struct_value_address.
3020 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
3021 (INIT_FRAME_PC): Use init_frame_pc_noop.
3022 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
3023
3024 2002-01-19 Mark Kettenis <kettenis@gnu.org>
3025
3026 * i386gnu-nat.c: Include "i386-tdep.h".
3027 (fetch_fpregs): Simplify code dealing with uninitialized floating
3028 point states such that it doesn't require FP7_REGNUM.
3029
3030 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3031
3032 * alpha-tdep.c (frame_extra_info): New.
3033 (alpha_find_saved_regs): Make static. Use
3034 frame->extra_info.
3035 (alpha_frame_init_saved_regs): New function.
3036 (alpha_frame_saved_pc): Use frame->extra_info.
3037 (temp_saved_regs): Don't declare as struct frame_saved_regs.
3038 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
3039 (init_extra_frame_info): Rename to...
3040 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
3041 (alpha_print_extra_frame_info): New function.
3042 (alpha_frame_locals_address): Ditto.
3043 (alpha_frame_args_address): Ditto.
3044 (alpha_pop_frame): Use frame->extra_info.
3045 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
3046 alpha_frame_args_address.
3047 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
3048 (alpha_find_saved_regs): Remove prototype.
3049 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
3050 (EXTRA_FRAME_INFO): Remove.
3051 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
3052 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
3053
3054 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3055
3056 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
3057 (alpha_cannot_fetch_register): Ditto.
3058 (alpha_cannot_store_register): Ditto.
3059 (alpha_register_convertible): Ditto.
3060 (alpha_use_struct_convention): Ditto.
3061 * config/alpha/tm-alpha.h: Update copyright years.
3062 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
3063 (INNER_THAN): Use core_addr_lessthan.
3064 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
3065 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
3066 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
3067 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
3068 (FRAME_CHAIN): Remove unnecessary cast.
3069
3070 2002-01-18 Andrew Cagney <ac131313@redhat.com>
3071
3072 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
3073 obsolete.
3074
3075 2002-01-18 Andrew Cagney <ac131313@redhat.com>
3076
3077 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
3078 * monitor.c, remote-array.c, remote-bug.c: Ditto.
3079 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
3080 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
3081 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
3082 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
3083 * x86-64-linux-nat.c: Ditto.
3084
3085 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3086
3087 * alpha-tdep.c (alpha_register_name): New function.
3088 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
3089 (REGISTER_NAME): Define.
3090
3091 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3092
3093 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
3094
3095 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3096
3097 * alpha-tdep.c: Update copyright years.
3098 (alpha_next_pc): New function.
3099 (alpha_software_single_step): Ditto.
3100 * config/alpha/tm-alpha.h: Add prototype for
3101 alpha_software_single_step.
3102
3103 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
3104
3105 * alphabsd-nat.c: Update copyright years.
3106 (fill_gregset): Use regcache_collect.
3107 (fill_fpregset): Likewise.
3108 (fetch_inferior_registers): Only fetch integer registers
3109 if requested to do so.
3110 (store_inferior_registers): Only store integer registers
3111 if requested to do so.
3112
3113 2002-01-17 Andrew Cagney <ac131313@redhat.com>
3114
3115 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
3116 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
3117 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
3118 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
3119 * config/alpha/fbsd.mh (XDEPFILES): Delete.
3120 * config/arm/linux.mh (XDEPFILES): Delete.
3121 * config/arm/nbsd.mh (XDEPFILES): Delete.
3122 * config/i386/i386dgux.mh (XDEPFILES): Delete.
3123 * config/i386/i386sol2.mh (XDEPFILES): Delete.
3124 * config/i386/i386m3.mh (XDEPFILES): Delete.
3125 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
3126 * config/i386/i386gnu.mh (XDEPFILES): Delete.
3127 * config/i386/fbsd.mh (XDEPFILES): Delete.
3128 * config/i386/i386bsd.mh (XDEPFILES): Delete.
3129 * config/i386/i386sco5.mh (XDEPFILES): Delete.
3130 * config/i386/i386v4.mh (XDEPFILES): Delete.
3131 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
3132 * config/i386/i386sco4.mh (XDEPFILES): Delete.
3133 * config/i386/i386aix.mh (XDEPFILES): Delete.
3134 * config/i386/go32.mh (XDEPFILES): Delete.
3135 * config/i386/cygwin.mh (XDEPFILES): Delete.
3136 * config/i386/i386lynx.mh (XDEPFILES): Delete.
3137 * config/i386/i386mach.mh (XDEPFILES): Delete.
3138 * config/i386/i386v32.mh (XDEPFILES): Delete.
3139 * config/i386/linux.mh (XDEPFILES): Delete.
3140 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
3141 * config/i386/ncr3000.mh (XDEPFILES): Delete.
3142 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
3143 * config/i386/i386sco.mh (XDEPFILES): Delete.
3144 * config/i386/i386v.mh (XDEPFILES): Delete.
3145 * config/i386/nbsd.mh (XDEPFILES): Delete.
3146 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
3147 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
3148 * config/i386/symmetry.mh (XDEPFILES): Delete.
3149 * config/i386/obsd.mh (XDEPFILES): Delete.
3150 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
3151 * config/ia64/linux.mh (XDEPFILES): Delete.
3152 * config/ia64/aix.mh (XDEPFILES): Delete.
3153 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
3154 * config/m68k/dpx2.mh (XDEPFILES): Delete.
3155 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
3156 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
3157 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
3158 * config/m68k/linux.mh (XDEPFILES): Delete.
3159 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
3160 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
3161 * config/m68k/nbsd.mh (XDEPFILES): Delete.
3162 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
3163 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
3164 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
3165 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
3166 * config/m88k/delta88.mh (XDEPFILES): Delete.
3167 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
3168 * config/m88k/m88k.mh (XDEPFILES): Delete.
3169 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
3170 * config/mips/linux.mh (XDEPFILES): Delete.
3171 * config/mips/irix6.mh (XDEPFILES): Delete.
3172 * config/mips/irix5.mh (XDEPFILES): Delete.
3173 * config/mips/irix4.mh (XDEPFILES): Delete.
3174 * config/mips/irix3.mh (XDEPFILES): Delete.
3175 * config/mips/decstation.mh (XDEPFILES): Delete.
3176 * config/mips/mipsm3.mh (XDEPFILES): Delete.
3177 (NATDEPFILES): Move core-aout.o to here.
3178 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
3179 * config/pa/hpux1020.mh (XDEPFILES): Delete.
3180 * config/pa/hppabsd.mh (XDEPFILES): Delete.
3181 * config/pa/hppahpux.mh (XDEPFILES): Delete.
3182 * config/pa/hpux11w.mh (XDEPFILES): Delete.
3183 * config/pa/hppaosf.mh (XDEPFILES): Delete.
3184 * config/pa/hpux11.mh (XDEPFILES): Delete.
3185 * config/powerpc/aix.mh (XDEPFILES): Delete.
3186 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
3187 * config/powerpc/linux.mh (XDEPFILES): Delete.
3188 * config/romp/rtbsd.mh: Rename XDEPFILES.
3189 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
3190 * config/rs6000/aix4.mh (XDEPFILES): Delete.
3191 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
3192 * config/s390/s390.mh (XDEPFILES): Delete.
3193 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
3194 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
3195 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
3196 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
3197 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
3198 * config/sparc/nbsd.mh (XDEPFILES): Delete.
3199 * config/sparc/linux.mh (XDEPFILES): Delete.
3200 * config/vax/vaxult.mh (XDEPFILES): Delete.
3201 * config/vax/vaxult2.mh (XDEPFILES): Delete.
3202 * Makefile.in (DEPFILES): Remove XDEPFILES.
3203
3204 2002-01-17 Andrew Cagney <ac131313@redhat.com>
3205
3206 * utils.c (internal_verror): Fix comments, default is yes not no.
3207 Update queries to match. Default to quit and dump core.
3208
3209 2002-01-17 Andrew Cagney <ac131313@redhat.com>
3210
3211 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
3212 copyright.
3213 * defs.h, event-top.c, gdbcmd.h: Ditto.
3214 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
3215 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
3216 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
3217 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
3218 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
3219 * mi/mi-main.c:Ditto.
3220
3221 * stack.c, symfile.c: Update copyright.
3222
3223 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
3224
3225 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
3226 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
3227 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
3228 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
3229
3230 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
3231
3232 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
3233 * gdbserver/low-lynx.c (myattach): Likewise.
3234 * gdbserver/low-nbsd.c (myattach): Likewise.
3235 * gdbserver/low-sim.c (myattach): Likewise.
3236 * gdbserver/low-sparc.c (myattach): Likewise.
3237 * gdbserver/low-sun3.c (myattach): Likewise.
3238
3239 * gdbserver/low-linux.c (myattach): New function.
3240
3241 * gdbserver/server.c (attach_inferior): New function.
3242 (main): Handle "--attach".
3243
3244 2002-01-16 Andrew Cagney <ac131313@redhat.com>
3245
3246 * MAINTAINERS (language support): Daniel Jacobwitz is C++
3247 maintainer.
3248
3249 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
3250
3251 * c-typeprint.c (is_type_conversion_operator): Add additional
3252 check for non-conversion operators.
3253
3254 2002-01-15 Michael Snyder <msnyder@redhat.com>
3255
3256 * linux-proc.c: Add "info proc" command, a la procfs.c.
3257 (read_mapping): New function, abstract and re-use code.
3258 (linux_find_memory_regions): Use new func read_mapping.
3259 (linux_info_proc_cmd): New function, implement "info proc".
3260 (_initialize_linux_proc): Add new command "info proc".
3261
3262 2002-01-15 Michael Snyder <msnyder@redhat.com>
3263
3264 * symfile.c (generic_load): Use bfd_map_over_sections method
3265 instead of manipulating bfd structure members directly.
3266 (add_section_size_callback): New function, bfd sections callback
3267 used by generic_load.
3268 (load_sections_callback): New function, bfd sections callback
3269 used by generic_load.
3270
3271 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
3272
3273 [Based on work by Jim Blandy]
3274 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
3275 (builtin_type_vec128): Export.
3276 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
3277 types.
3278 (builtin_type_vec128): New builtin type for 128 bit vector
3279 registers.
3280 (build_gdbtypes): Initialize builtin_type_v16qi and
3281 builtin_type_v8hi. Create the vec128 register builtin type
3282 structure.
3283 (build_builtin_type_vec128): New function.
3284 (_initialize_gdbtypes): Register builtin_type_v16qi and
3285 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
3286 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
3287 AltiVec register to new builtin type.
3288
3289 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
3290
3291 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
3292 to make_cv_type.
3293
3294 2002-01-14 Andrew Cagney <ac131313@redhat.com>
3295
3296 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
3297 CLEAN_UP_REGISTER_VALUE.
3298 * regcache.c (supply_register): Update only call.
3299
3300 2002-01-14 Andrew Cagney <ac131313@redhat.com>
3301
3302 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
3303 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
3304 a29k-*-vxworks* targets as obsolete.
3305
3306 2002-01-14 Michael Snyder <msnyder@redhat.com>
3307
3308 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
3309 until we can resolve portability issues.
3310 * gregset.h: Remove references to fpxregs.
3311 * gcore.c (gcore_command): Initialize note_sec to NULL.
3312
3313 2002-01-13 Andrew Cagney <ac131313@redhat.com>
3314
3315 * signals.c (target_signal_to_name): Rewrite. Only use
3316 signals[].name when in bounds and non-NULL.
3317
3318 2002-01-13 Andrew Cagney <ac131313@redhat.com>
3319
3320 From Petr Ledvina <ledvinap@kae.zcu.cz>:
3321 * signals.c (target_signal_to_name): Verify that SIG is within the
3322 bounds of the signals array.
3323
3324 2002-01-13 Andrew Cagney <ac131313@redhat.com>
3325
3326 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
3327
3328 2002-01-13 Keith Seitz <keiths@redhat.com>
3329
3330 * stack.c (print_frame_info_base): Print the frame's pc
3331 only if when print_frame_info_listing_hook is not defined.
3332
3333 2002-01-13 Keith Seitz <keiths@redhat.com>
3334
3335 * varobj.c (varobj_set_value): Make sure that there were no
3336 errors evaluating the object before attempting to set its
3337 value.
3338 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
3339 so this offset adjustment is no longer necessary.
3340 (create_child): Don't set the error flag if the child is
3341 a CPLUS_FAKE_CHILD.
3342 (value_of_child): If value_fetch_lazy fails, return NULL
3343 so that callers will be notified that an error occurred.
3344 (c_value_of_variable): Delay check of variable's validity
3345 until later. We actually want all structs and unions to have
3346 the value "{...}".
3347 Do not return "???" for variables which could not be evaluated.
3348 This error condition must be returned to the caller so that it
3349 can get the error condition from gdb.
3350 (cplus_name_of_child): Adjust index for vptr before figuring
3351 out the name of the child.
3352 (cplus_value_of_child): If a child's (real) parent is not valid,
3353 don't even bother trying to give a value for it. Just return
3354 an error. Change all instances in this function.
3355 (cplus_type_of_child): If our parent is one of the "fake"
3356 parents, we need to get at the type of the real parent, and
3357 derive the child's true type using this information.
3358
3359 2002-01-13 Andrew Cagney <ac131313@redhat.com>
3360
3361 From 2002-01-09 John Marshall <johnm@falch.net>:
3362 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
3363 sources.redhat.com, and tweak some related URLs which had
3364 suffered from linkrot.
3365
3366 2002-01-13 Andrew Cagney <ac131313@redhat.com>
3367
3368 From Jeff law:
3369 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
3370 structures passed in registers.
3371
3372 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
3373
3374 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
3375 white space which prevented compilation. Reported by DSK
3376 <dsk@student.unsw.edu.au>.
3377
3378 2002-01-11 Michael Snyder <msnyder@redhat.com>
3379
3380 * symfile.c (build_section_addr_info_from_section_tab):
3381 Use bfd access method instead of manipulating bfd directly.
3382 (syms_from_objfile): Ditto.
3383 (simple_overlay_update_1): Ditto.
3384 (simple_overlay_update): Ditto.
3385 (generic_load): Ditto.
3386 (overlay_unmapped_address): FIXME comment, bfd access methods.
3387 (sections_overlap): FIXME comment, bfd access methods.
3388 (pc_in_mapped_range): FIXME comment, bfd access methods.
3389 (pc_in_unmapped_range): FIXME comment, bfd access methods.
3390 (section_is_mapped): FIXME comment, bfd access methods.
3391 (section_is_overlay): FIXME comment, bfd access methods.
3392
3393 * symfile.c (generic_load): Whitespace and long line cleanups.
3394 Remove duplicate variable, change several local variables to
3395 more appropriate data types.
3396 (print_transfer_performance): Use %lu instead of %ld for ulongs.
3397
3398 2002-01-12 Andrew Cagney <ac131313@redhat.com>
3399
3400 From Peter Schauer:
3401 * language.c (longest_local_hex_string_custom): Use phex_nz to
3402 convert NUM to a hex string.
3403
3404 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
3405
3406 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
3407 the function.
3408 Update Copyright year.
3409
3410 2002-01-12 Andrew Cagney <ac131313@redhat.com>
3411
3412 * language.c (longest_raw_hex_string): Delete unused function.
3413
3414 2002-01-11 Petr Sorfa <petrs@caldera.com>
3415
3416 * MAINTAINERS (write-after-approval): Add myself.
3417 * dwarf2read.c (read_tag_string_type): Handling of
3418 DW_AT_byte_size.
3419 (read_tag_string_type): FORTRAN fix to prevent propagation of
3420 first string size.
3421 (set_cu_language): Handling of DW_LANG_Fortran95
3422
3423 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
3424
3425 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
3426 GETPID(inferior_ptid).
3427 (store_inferior_registers): Likewise.
3428
3429 2002-01-10 Jason Merrill <jason@redhat.com>
3430
3431 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
3432 Fix DW_OP_minus.
3433
3434 2002-01-10 Andrew Cagney <ac131313@redhat.com>
3435
3436 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
3437 and bfd/elf32-sh-nbsd.c.
3438
3439 2002-01-10 Michael Snyder <msnyder@redhat.com>
3440
3441 * NEWS: Mention --pid and corefile/proc-id behavior change.
3442
3443 * Makefile.in: Add rules for gcore.o and linux-proc.o.
3444 * gcore.c: Include cli/cli-decode.h instead of command.h.
3445
3446 * main.c (captured_main): Add new command line option "--pid".
3447 If the second command line argument (following the symbol-file)
3448 begins with a digit, try to attach to it before trying to open
3449 it as a corefile.
3450 (print_gdb_help): Document the "--pid" argument.
3451
3452 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
3453
3454 * completer.c (command_completer): New function.
3455
3456 * completer.h <command_completer>: Add prototype.
3457
3458 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
3459 completer for the "help" command.
3460
3461 2002-01-09 Jason Merrill <jason@redhat.com>
3462
3463 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
3464
3465 2002-01-09 Michael Snyder <msnyder@redhat.com>
3466
3467 * i386-linux-nat.c (fill_fpxregset): Make global.
3468 (store_fpxregset): Ditto.
3469
3470 * gregset.h (gdb_fpxregset_t): Define.
3471 (supply_fpxregset): Prototype.
3472 (fill_fpxregset): Prototype.
3473
3474 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
3475
3476 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
3477
3478 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
3479 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
3480 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
3481
3482 2002-01-09 Andrew Cagney <ac131313@redhat.com>
3483
3484 * MAINTAINERS: Update target maintainer rules so that any
3485 Maintainer can approve a tested patch for a maintenance-only
3486 target.
3487
3488 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
3489
3490 * MAINTAINERS (write-after-approval): Add myself.
3491
3492 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
3493 IN_SIGTRAMP.
3494
3495 2002-01-08 Michael Snyder <msnyder@redhat.com>
3496
3497 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
3498 real name of the executable, rather than the /proc name.
3499
3500 2002-01-03 Michael Snyder <msnyder@redhat.com>
3501
3502 Implement a "generate-core-file" command in gdb, save target state.
3503 * gcore.c: New file. Implement new command 'generate-core-file'.
3504 Save a corefile image of the current state of the inferior.
3505 * linux-proc.c: Add linux-specific code for saving corefiles.
3506 * target.h (struct target_ops): Add new target vectors for saving
3507 corefiles; to_find_memory_regions and to_make_corefile_notes.
3508 (target_find_memory_regions): New macro.
3509 (target_make_corefile_notes): New macro.
3510 * target.c (update_current_target): Inherit new target methods.
3511 (dummy_find_memory_regions): New place-holder method.
3512 (dummy_make_corefile_notes): New place-holder method.
3513 (init_dummy_target): Initialize new dummy target vectors.
3514 * exec.c (exec_set_find_memory_regions): New function.
3515 Allow the exec_ops vector for memory regions to be taken over.
3516 (exec_make_note_section): New function, target vector method.
3517 * defs.h (exec_set_find_memory_regions): Export prototype.
3518 * procfs.c (proc_find_memory_regions): New function, corefile method.
3519 (procfs_make_note_section): New function, corefile method.
3520 (init_procfs_ops): Set new target vector pointers.
3521 (find_memory_regions_callback): New function.
3522 (procfs_do_thread_registers): New function.
3523 (procfs_corefile_thread_callback): New function.
3524 * sol-thread.c (sol_find_memory_regions): New function.
3525 (sol_make_note_section): New function.
3526 (init_sol_thread_ops): Initialize new target vectors.
3527 * inftarg.c (inftarg_set_find_memory_regions): New function.
3528 Allow to_find_memory_regions vector to be taken over.
3529 (inftarg_set_make_corefile_notes): New function.
3530 Allow to_make_corefile_notes vector to be taken over.
3531 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
3532 interface layer if not target_has_execution (may be a corefile).
3533 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
3534 * config/sparc/sun4sol2.mh: Ditto.
3535 * config/alpha/alpha-linux.mh: Ditto.
3536 * config/arm/linux.mh: Ditto.
3537 * config/i386/x86-64linux.mh: Ditto.
3538 * config/ia64/linux.mh: Ditto.
3539 * config/m68k/linux.mh: Ditto.
3540 * config/mips/linux.mh: Ditto.
3541 * config/powerpc/linux.mh: Ditto.
3542 * config/sparc/linux.mh: Ditto.
3543
3544 2002-01-07 Michael Snyder <msnyder@redhat.com>
3545
3546 * arm-linux-nat.c: Remove references to regcache.c internal data
3547 (registers[] and register_valid[]).
3548
3549 2002-01-07 Michael Snyder <msnyder@redhat.com>
3550
3551 * linux-proc.c: New file. Implement child_pid_to_exec_file,
3552 so that attaching to a pid will automatically read the process's
3553 symbol file and shlibs.
3554 * Makefile.in: Add rule for linux-proc.o.
3555 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
3556 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
3557 * config/arm/linux.mh: Ditto.
3558 * config/i386/linux.mh: Ditto.
3559 * config/i386/x86-64linux.mh: Ditto.
3560 * config/ia64/linux.mh: Ditto.
3561 * config/m68k/linux.mh: Ditto.
3562 * config/mips/linux.mh: Ditto.
3563 * config/powerpc/linux.mh: Ditto.
3564 * config/sparc/linux.mh: Ditto.
3565
3566 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
3567
3568 * win32-nat.c: Add i386-tdep.h dependency.
3569
3570 2002-01-07 Michael Snyder <msnyder@redhat.com>
3571
3572 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
3573 instead of bfd_get_arch_size. Don't bail out just because
3574 there's no exec_bfd.
3575
3576 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
3577 * p-valprint.c (pascal_object_print_value): Ditto.
3578 * somread.c (som_symtab_read): Ditto.
3579 * symfile.c (simple_free_overlay_region_table): Ditto.
3580 * valops.c (value_assign): Ditto.
3581
3582 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
3583 use tilde_expand and strerror for opening save-tracepoints file.
3584
3585 * thread-db.c (thread_db_new_objfile): Indendation fix.
3586
3587 * infptrace.c (GDB_MAX_ALLOCA): New define.
3588 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
3589 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
3590 can be overridden with whatever value is appropriate to the host).
3591 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
3592 alloca to allocate potentially large buffer.
3593 * rs6000-nat.c (child_xfer_memory): Ditto.
3594 * symm-nat.c (child_xfer_memory): Ditto.
3595 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
3596
3597 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
3598
3599 From Nick Clifton <nickc@redhat.com>
3600 * d10v-tdep.c: Set STACK_START to 0x200bffe.
3601
3602 2002-01-07 Michael Snyder <msnyder@redhat.com>
3603
3604 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
3605 Don't use exec_bfd if it's NULL.
3606
3607 2002-01-06 Mark Kettenis <kettenis@gnu.org>
3608
3609 * valops.c (value_arg_coerce): Fix formatting.
3610
3611 2002-01-06 Andrew Cagney <ac131313@redhat.com>
3612
3613 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
3614 * gnu-nat.c: Ditto.
3615
3616 2002-01-06 Andrew Cagney <ac131313@redhat.com>
3617
3618 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
3619 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
3620 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
3621 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
3622 z8k-coff have not been multi-arched. Update z8k-coff build
3623 status.
3624
3625 2002-01-06 Andrew Cagney <ac131313@redhat.com>
3626
3627 * MAINTAINERS: Mark a29k target as obsolete.
3628 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
3629 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
3630 comments.
3631 * NEWS: Note that a29k targets are obsolete.
3632 * a29k-tdep.c: Mark as obsolete.
3633 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
3634 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
3635 a29k-*-vxworks* targets as obsolete.
3636 * remote-adapt.c: Obsolete.
3637 * remote-eb.c: Obsolete.
3638 * remote-mm.c: Obsolete.
3639 * remote-udi.c: Obsolete.
3640 * config/a29k/a29k-udi.mt: Obsolete.
3641 * config/a29k/a29k.mt: Obsolete.
3642 * config/a29k/tm-a29k.h: Obsolete.
3643 * config/a29k/tm-vx29k.h: Obsolete.
3644 * config/a29k/vx29k.mt: Obsolete.
3645
3646 2002-01-05 Andrew Cagney <ac131313@redhat.com>
3647
3648 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
3649 with BFD_ENDIAN_BIG.
3650
3651 2002-01-05 Andrew Cagney <ac131313@redhat.com>
3652
3653 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
3654 * configure, config.in: Re-generate.
3655 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
3656 * defs.h: Do not include <endian.h>.
3657
3658 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
3659
3660 * acconfig.h (HAVE_PT_GETXMMREGS): New.
3661 * config.in: Regenerate.
3662 * configure.in: Update copyright years.
3663 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
3664 * configure: Regenerate.
3665 * i386bsd-nat.c: Update copyright years.
3666 (fill_gregset): Use regcache_collect.
3667 (fetch_inferior_registers): Only fetch integer registers
3668 if requested to do so. Add support for XMM registers
3669 using PT_GETXMMREGS.
3670 (store_inferior_registers): Only store integer registers
3671 if requested to do so. Add support for XMM registers
3672 using PT_SETXMMREGS.
3673 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
3674 (store_inferior_registers): Remove.
3675 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
3676 (fetch_elfcore_registers): New function.
3677 (i386nbsd_elfcore_fns): New.
3678 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
3679 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
3680 i386bsd-nat.o.
3681 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
3682 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
3683 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
3684 * config/i386/tm-nbsd.h: Update copyright years.
3685 (HAVE_SSE_REGS): Define.
3686 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
3687 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
3688 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
3689 (SIGCONTEXT_PC_OFFSET): Remove.
3690 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
3691
3692 2002-01-05 Andrew Cagney <ac131313@redhat.com>
3693
3694 * configure.tgt: Remove powerpc-*-macos* target.
3695 * config/m68k/xm-mpw.h: Delete file.
3696 * config/xm-mpw.h: Delete file.
3697 * ser-mac.c: Delete file.
3698 * mpw-make.sed: Delete file.
3699 * mpw-config.in: Delete file.
3700 * mac-xdep.c: Delete file.
3701 * mac-gdb.r: Delete file.
3702 * mac-defs.h: Delete file.
3703 * mac-nat.c: Delete file.
3704 * config/powerpc/macos.mh: Delete file.
3705 * config/powerpc/macos.mt: Delete file.
3706 * config/powerpc/nm-macos.h: Delete file.
3707 * config/powerpc/tm-macos.h: Delete file.
3708 * source.c (openp, open_source_file): Remove obsolete code.
3709 * top.c (gdb_readline): Ditto.
3710 * utils.c (query): Ditto.
3711 * event-top.c (display_gdb_prompt): Ditto.
3712 * Makefile.in (ser-mac.o): Delete obsolete target.
3713 * NEWS: Update.
3714
3715 2002-01-04 Andrew Cagney <ac131313@redhat.com>
3716
3717 * defs.h (BIG_ENDIAN): Delete macro definition.
3718 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
3719 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
3720 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
3721 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
3722 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
3723 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
3724 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
3725 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
3726 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
3727 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
3728 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
3729 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
3730 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
3731 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
3732 * gdbarch.c: Re-generate.
3733
3734 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
3735
3736 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
3737 for core files.
3738
3739 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
3740
3741 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
3742
3743 2002-01-04 Andrew Cagney <ac131313@redhat.com>
3744
3745 * value.h (value_ptr): Delete typedef.
3746
3747 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
3748
3749 * i386nbsd-nat.c: Update copyright years.
3750 Include i386-tdep.h.
3751
3752 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
3753
3754 * stabsread.c: Update copyright years.
3755
3756 From Debashis Mahata <debashis.mahata@wipro.com>:
3757 (read_struct_fields): Deal with Sun C compiler erroneous stab
3758 output for structs and unions.
3759 Fix PR gdb/269.
3760
3761 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
3762
3763 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
3764 prototype.
3765
3766 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
3767
3768 * cp-abi.c: Fix whitespace.
3769 (baseclass_offset): New wrapper function.
3770 * cp-abi.h (baseclass_offset): Add prototype.
3771 (struct cp_abi_ops): Add baseclass_offset pointer.
3772
3773 * valops.c (vb_match): Move to...
3774 * gnu-v2-abi.c (vb_match): here.
3775 * valops.c (baseclass_offset): Move to...
3776 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
3777
3778 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
3779
3780 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
3781 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
3782 * hpacc-abi.c (init_hpacc_ops): Likewise.
3783
3784 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
3785
3786 * valops.c (find_overload_match): Accept obj as a
3787 reference parameter. Update it before returning.
3788 * value.h (find_overload_match): Update prototype.
3789 * eval.c (evaluate_subexp_standard): Pass object to
3790 find_overload_match by reference.
3791
3792 2002-01-03 Andrew Cagney <ac131313@redhat.com>
3793
3794 * valarith.c: Replace value_ptr with struct value pointer. Remove
3795 register attribute from value declarations.
3796 * valops.c: Ditto.
3797 * value.h: Ditto.
3798 * scm-lang.c (scm_lookup_name): Ditto.
3799
3800 2002-01-03 Michael Snyder <msnyder@redhat.com>
3801
3802 Abstract the functionality of iterating over mapped memory
3803 regions into a general purpose iterator function.
3804 * procfs.c (iterate_over_mappings): New function, general purpose
3805 iterator for memory sections.
3806 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
3807 (solib_mappings_callback): New function, callback for above.
3808 (info_proc_mappings): Reimpliment using iterate_over_mappings.
3809 (info_mappings_callback): New function, callback for above.
3810
3811 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
3812
3813 2002-01-01 Mark Kettenis <kettenis@gnu.org>
3814
3815 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
3816 * i386-tdep.c: Include "elf-bfd.h".
3817 (process_note_abi_tag_sections): New function.
3818 (i386_gdbarch_init): Add code to recognize various OS/ABI
3819 combinations.
3820
3821 * maint.c (_initialize_maint_cmds): Add missing \ in
3822 string-literal.
3823
3824 For older changes see ChangeLog-2001
3825 \f
3826 Local Variables:
3827 mode: change-log
3828 left-margin: 8
3829 fill-column: 74
3830 version-control: never
3831 End: