* dwarf2read.c (is_vtable_name): New function, based on logic from
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2004-08-31 Jim Blandy <jimb@redhat.com>
2
3 * dwarf2read.c (is_vtable_name): New function, based on logic from
4 read_structure_type, but passing the correct length to strncmp,
5 and using 'sizeof' instead of 'strlen'.
6 (read_structure_type): Call it.
7
8 2004-08-31 Joel Brobecker <brobecker@gnat.com>
9
10 * config/powerpc/aix.mh: Add comment.
11
12 2004-08-31 Paul GIlliam <pgilliam@us.ibm.com>
13
14 * MAINTAINERS: Add self to Write-After-Approval.
15
16 2004-08-30 Manoj Iyer <manjo@austin.ibm.com>
17
18 * MAINTAINERS: Add self to Write-After-Approval.
19
20 2004-08-30 Andrew Cagney <cagney@gnu.org>
21
22 Fix PR breakpoints/1757.
23 * infrun.c (struct execution_control_state): Replace
24 remove_breakpoints_on_following_step with
25 step_after_step_resume_breakpoint.
26 (init_execution_control_state): Update.
27 (handle_inferior_event): For signals, when stepping off a
28 breakpoint, set step_after_step_resume_breakpoint. When
29 BPSTAT_WHAT_STEP_RESUME, do a single-step off the breakpoint.
30 (keep_going): Delete code handling
31 remove_breakpoints_on_following_step.
32
33 2004-08-29 David Lecomber <david@streamline-computing.com>
34
35 Fix PR gdb/648
36 * language.h (enum array_ordering): New enum.
37 * language.h (struct language_defn): New la_array_ordering
38 attribute.
39 * language.c (unknown_language_defn, auto_language_defn)
40 (local_language_defn): Ditto.
41 * ada-lang.c (ada_language_defn): Ditto.
42 * c-lang.c (c_language_defn, cplus_language_defn)
43 (asm_language_defn, minimal_language_defn): Ditto.
44 * f-lang.c (f_language_defn): Ditto.
45 * jv-lang.c (java_language_defn): Ditto.
46 * m2-lang.c (f_language_defn): Ditto.
47 * objc-lang.c (objc_language_defn): Ditto.
48 * p-lang.c (pascal_language_defn): Ditto.
49 * scm-lang.c (scm_language_defn): Ditto.
50 * eval.c (evaluate_subexp_standard): Assume Fortran arrays are
51 oriented large to small in type structure.
52 * dwarf2read.c (read_array_order): New function.
53 (read_array_type): Use read_array_order to check row/column
54 major ordering.
55
56 2004-08-27 Nathan J. Williams <nathanw@wasabisystems.com>
57
58 * target.c (target_resize_to_sections): Check
59 current_target.to_sections for an old value when updating.
60
61 2004-08-27 Joel Brobecker <brobecker@gnat.com>
62
63 * procfs.c (dbx_link_bpt_addr): New static global variable.
64 (dbx_link_shadow_contents): New static global variable.
65 (procfs_wait, case <PR_SYSEXIT>): Handle syssgi events.
66 (procfs_wait, case <FLTBPT>): Remove the __dbx_link brekapoint
67 if we just hit it.
68 (procfs_init_inferior): Enable syssgi() syscall trace if appropriate.
69 Reset dbx_link_bpt_addr as the address of __dbx_link() may change
70 from run to run.
71 (procfs_create_inferior): Remove syssgi syscall-exit notifications
72 after the inferior has been forked.
73 (remove_dbx_link_breakpoint): New function.
74 (dbx_link_addr): New function.
75 (insert_dbx_link_bpt_in_file): New function.
76 (insert_dbx_link_bpt_in_region): New function.
77 (insert_dbx_link_breakpoint): New function.
78 (proc_trace_syscalls_1): New function, extracted from
79 proc_trace_syscalls.
80 (proc_trace_syscalls): Replace extract code by call to
81 proc_trace_syscalls_1.
82 * solib-irix.c (disable_break): Remove stop_pc assertion, as it
83 is no longer valid.
84
85 2004-08-25 Jim Blandy <jimb@redhat.com>
86
87 * gdbtypes.h (TYPE_CODE_ARRAY): Doc fix.
88
89 2004-08-25 Andrew Cagney <cagney@gnu.org>
90
91 * infrun.c (struct execution_control_state): Delete field
92 "stepping_through_sigtramp".
93 (init_execution_control_state): Do not set same.
94 (context_switch): Do not pass same to save_infrun_state and
95 load_infrun_state.
96 * gdbthread.h (struct thread_info): Delete field
97 stepping_through_sigtramp.
98 (save_infrun_state, load_infrun_state): Delete parameter
99 stepping_through_sigtramp.
100 * thread.c (load_infrun_state, save_infrun_state): Update.
101
102 * infrun.c: Re-indent. Move expression operators to the beginning
103 of the line. Remove long disabled #if 0 code.
104
105 2004-08-24 Andrew Cagney <cagney@gnu.org>
106
107 * doublest.h (floatformat_ieee_quad): Rename
108 floatformat_ia64_quad.
109 * doublest.c (floatformat_ieee_quad): Rename
110 floatformat_ia64_quad.
111 (_initialize_doublest): Update.
112
113 2004-08-24 Jim Blandy <jimb@redhat.com>
114
115 * dwarf2expr.h (struct dwarf_expr_context): New members
116 'num_pieces' and 'pieces', for returning the result of an
117 expression that uses DW_OP_piece.
118 (struct dwarf_expr_piece): New struct type.
119 * dwarf2expr.c (new_dwarf_expr_context): Initialize num_pieces and
120 pieces.
121 (free_dwarf_expr_context): Free pieces, if any.
122 (add_piece): New function.
123 (execute_stack_op): Implement DW_OP_piece.
124 * dwarf2loc.c (dwarf2_evaluate_loc_desc): If the result of the
125 expression is a list of pieces, print an error message.
126 (dwarf2_loc_desc_needs_frame): If the expression yields
127 pieces, and any piece is in a register, then we need a frame.
128
129 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Wait to fetch the top of
130 the stack until we've decided what sort of result the evaluation
131 has produced. Use separate variables, with more specific names.
132
133 2004-08-23 Richard Earnshaw <rearnsha@arm.com>
134
135 * armnbsd-tdep.c (arm_nbsd_arm_be_breakpoint): Define.
136 (arm_nbsd_thumb_[lb]e_breakpoint): Define.
137 (arm_netbsd_init_abi_common): Register them.
138
139 2004-08-22 Mark Kettenis <kettenis@gnu.org>
140
141 * config/vax/vax.mh (NATDEPFILES): Add vax-nat.c.
142
143 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Use
144 safe_frame_unwind_memory instead of target_read_memory.
145
146 * infptrace.c: Remove #ifdef'ed out inclusion of gdb_stat.h.
147 Reorder includes.
148 (fetch_register, store_register): Remove prototypes.
149 (child_resume): Reorganize code and comments such that it is
150 grouped a bit more logically.
151 (attach): Explicitly compare errno against 0.
152 (detach): Likewise. Use perror_with_name instead of
153 print_sys_errmsg.
154 * Makefile.in (infptrace.o): Update dependencies.
155
156 * ia64-linux-nat.c: Update copyright year.
157 (fetch_debug_register, store_debug_register)
158 (ia64_linux_stopped_by_watchpoint): Replace PTRACE_ARG3_TYPE with
159 PTRACE_TYPE_ARG3.
160 * config/ia64/nm-linux.h: Update copyright year.
161 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove defines.
162
163 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Change argument
164 from CORE_ADDR to struct frame_info *. Use
165 safe_frame_unwind_memory instead of deprecated_read_memory_nobpt.
166 (amd64_linux_sigtramp_p): Adjust for changed signature of
167 and64_linux_sigtramp_start
168
169 * gdb_ptrace.h: GNU/Linux.
170
171 * config/alpha/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
172 Remove defines.
173
174 * infptrace.c: Include "gdb_assert.h".
175 (PTRACE_XFER_TYPE): Remove define.
176 (offsetof): Only define if U_REGS_OFFSET isn't defined.
177 (fetch_register, store_register): Rewrite to use PTRACE_TYPE_RET.
178 Tweak comment.
179 (fetch_inferior_registers, store_inferior_registers): Remove
180 redundant culry braces. Tweak comment. s/regno/regnum.
181 * Makefile.in (infptrace.o): Update dependencies.
182
183 * configure.in: Change test for return type of ptrace to default
184 to `long' instead of `int'.
185 * configure: Regenerate.
186
187 2004-08-21 Mark Kettenis <kettenis@gnu.org>
188
189 * config/alpha/alpha-linux.mh (LOADLIBES): New variable.
190
191 * configure.in: Check for ttrace function.
192 * configure, config.in: Regenerate.
193
194 * gdb_ptrace.h: New file.
195 * infptrace.c: Include "gdb_ptrace.h" instead of <ptrace.h> or
196 <sys/ptrace.h>.
197 (PT_READ_I, PT_READ_D, PT_READ_U, PT_WRITE_I, PT_WRITE_D)
198 (PT_WRITE_U, PT_CONTINUE, PT_STEP, PT_KILL): Remove defines.
199 (attach): Don't define PT_ATTACH.
200 (detach): Don't define PT_DETACH.
201 * Makefile.in (gdb_ptrace_h): New variable.
202 (infptrace.o): Update dependencies.
203
204 2004-08-16 Mark Kettenis <kettenis@gnu.org>
205
206 * inferior.h (PTRACE_ARG3_TYPE): Define as PTRACE_TYPE_ARG3
207 instead of `int' if not already defined.
208 (call_ptrace): Revert change that replaced PTRACE_ARG3_TYPE with
209 PTRACE_TYPE_ARG3.
210 * infptrace.c (call_ptrace): Revert change that replaced
211 PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
212
213 2004-08-15 Mark Kettenis <kettenis@gnu.org>
214
215 * config/i386/nm-linux64.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
216 Remove defines.
217
218 * linux-nat.c (kill_inferior): Add missing third and fourth
219 arguments to ptrace call. Don't use PTRACE_ARG3_TYPE.
220
221 * infptrace.c (child_xfer_memory): Replace PTRACE_XFER_TYPE with
222 PTRACE_TYPE_RET.
223
224 * proc-why.c (proc_prettyfprint_why): Fix format string.
225
226 * solib-osf.c (osf_current_sos): Remove unsused label.
227
228 * configure.in: Add <ncurses/ncurses.h> to the list of possible
229 curses headers.
230 * configure, config.in: Regenerate.
231 * gdb_curses.h [HAVE_NCURSES_NCURSES_H]: Include
232 <ncurses/ncurses.h>.
233
234 * config/nm-bsd.h (PTRACE_ARG3_TYPE): Remove define.
235 * config/nm-nbsd.h: Update copyright year.
236 (PTRACE_ARG3_TYPE): Remove define.
237
238 * sparc-nat.c (fetch_inferior_registers)
239 (store_inferior_registers, sparc_xfer_wcookie):
240 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
241
242 * alphabsd-nat.c (fetch_inferior_registers):
243 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
244 PTRACE_TYPE_ARG3.
245 * amd64bsd-nat.c (fetch_inferior_registers)
246 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
247 PTRACE_TYPE_ARG3.
248 * armnbsd-nat.c: Update copyright year.
249 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs)
250 (store_register, store_regs, store_fp_register, store_fp_regs):
251 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
252 * hppabsd-nat.c (fetch_inferior_registers)
253 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
254 PTRACE_TYPE_ARG3.
255 * i386bsd-nat.c (fetch_inferior_registers)
256 (store_inferior_registers, i386bsd_dr_set, i386bsd_dr_get_status):
257 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
258 * m68kbsd-nat.c (fetch_inferior_registers)
259 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
260 PTRACE_TYPE_ARG3.
261 * m88kbsd-nat.c (fetch_inferior_registers)
262 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
263 PTRACE_TYPE_ARG3.
264 * mipsnbsd-nat.c: Update copyright year.
265 (fetch_inferior_registers, store_inferior_registers):
266 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
267 * ns32knbsd-nat.c: Update copyright year.
268 (fetch_inferior_registers, store_inferior_registers):
269 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
270 * ppcnbsd-nat.c (fetch_inferior_registers):
271 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
272 PTRACE_TYPE_ARG3.
273 * ppcobsd-nat.c (fetch_inferior_registers):
274 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
275 PTRACE_TYPE_ARG3.
276 * shnbsd-nat.c: Update copyright year.
277 (fetch_inferior_registers, store_inferior_registers):
278 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
279 * vaxbsd-nat.c (fetch_inferior_registers)
280 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
281 PTRACE_TYPE_ARG3.
282
283 * inferior.h (call_ptrace): Replace PTRACE_ARG3_TYPE with
284 PTRACE_TYPE_ARG3.
285 * infptrace.c (call_ptrace, child_resume, attach, detach)
286 (U_REGS_OFFSET, fetch_register, store_register, child_xfer_memory)
287 (udot_info): Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
288 * inftarg.c (ptrace_me): Replace PTRACE_ARG3_TYPE with
289 PTRACE_TYPE_ARG3.
290
291 2004-08-14 Mark Kettenis <kettenis@gnu.org>
292
293 * defs.h: Remove out-of-date comment.
294 [!FCLOSE_PROVIDED] (fclose): Remove prototype.
295 [!GETENV_PROVIDED] (getenv): Remove prototype.
296
297 * standalone.c: Remove file.
298 * Makefile.in (standalone.o): Remove dependency.
299
300 * i386-linux-nat.c (dummy_sse_values): Remove function and
301 prototype.
302 (i386_linux_dr_get): Fix typo in comment.
303 (LINUX_SYSCALL_REGNUM): Define as I386_EAX_REGNUM.
304
305 * config/i386/obsd64.mt (TDEPFILES): Add i386obsd-tdep.o.
306
307 * defs.h (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
308 from declaration.
309 * top.c (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
310 from definition.
311
312 2004-08-13 Mark Kettenis <kettenis@gnu.org>
313
314 * configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
315 parenthesis in definition.
316 * configure: Regenerated.
317
318 2004-08-12 Michael Chastain <mec.gnu@mindspring.com>
319
320 * PROBLEMS: Mention build/1411.
321
322 2004-08-09 Robert Millan <robertmh@gnu.org>
323
324 Committed by Nathanael Nerode.
325 * configure.host: Match kfreebsd*-gnu and knetbsd*-gnu.
326 * configure.tgt: Match kfreebsd*-gnu and knetbsd*-gnu.
327
328 2004-08-12 Andrew Cagney <cagney@gnu.org>
329
330 * NEWS: Mention fixes in GDB 6.2.1.
331 * PROBLEMS: Remove mention of mips-irix.
332
333 2004-08-11 Joel Brobecker <brobecker@gnat.com>
334
335 * config/powerpc/xm-aix.h: Delete.
336 * config/powerpc/aix.mh (MH_FILE): Remove.
337 * config/powerpc/aix432.mh (MH_FILE): Remove.
338
339 2004-08-11 Joel Brobecker <brobecker@gnat.com>
340
341 * config/powerpc/aix.mh: Remove obsolete comment.
342 * config/powerpc/aix432.mh: Likewise.
343
344 2004-08-11 Joel Brobecker <brobecker@gnat.com>
345
346 * config/powerpc/xm-aix.h (UINT_MAX): Remove undef.
347
348 2004-08-11 Joel Brobecker <brobecker@gnat.com>
349
350 * config/rs6000/xm-aix4.h: Remove "config/xm-aix4.h" include,
351 this file is now empty.
352 * config/xm-aix4.h: Remove, this file is no longer included
353 anywhere.
354
355 2004-08-11 Joel Brobecker <brobecker@gnat.com>
356
357 * config/powerpc/xm-aix.h: Remove "config/xm-aix4.h" include,
358 that file is now empty.
359 (termdef): Remove prototype, function no longer used.
360
361 2004-08-11 Joel Brobecker <brobecker@gnat.com>
362
363 * doc/gdbint.texinfo (Host Definition): Remove documentation
364 for USE_O_NOCTTY, no longer used.
365 * config/xm-aix4.h (USE_O_NOCTTY): Remove, no longer used.
366 * config/rs6000/xm-rs6000.h (USE_O_NOCTTY): Likewise.
367
368 2004-08-11 Joel Brobecker <brobecker@gnat.com>
369
370 * config/xm-aix4.h (FIVE_ARG_PTRACE): Remove, no longer used.
371 * config/pa/nm-hppah.h (FIVE_ARG_PTRACE): Likewise.
372 * config/rs6000/xm-rs6000.h (FIVE_ARG_PTRACE): Likewise.
373
374 2004-08-11 Mark Kettenis <kettenis@gnu.org>
375
376 * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5
377 instead of FIVE_ARG_PTRACE.
378
379 * inflow.c (O_NOCTTY): Define to zero if not already defined.
380 (new_tty): Use O_NOCTTY unconditionally.
381
382 2004-08-10 Mark Kettenis <kettenis@gnu.org>
383
384 * procfs.c (procfs_detach): Cleanup. Print process ID, not LWP
385 ID. Use comma in output. Use gdb_flush on gdb_stdout instead of
386 fflush on stdout.
387
388 2004-08-10 Joel Brobecker <brobecker@gnat.com>
389
390 * xcoff_symfile_finish: Replace last call to xmfree by call
391 to xfree.
392
393 2004-08-10 Andrew Cagney <cagney@gnu.org>
394
395 * main.c (captured_main): Delete call to init_malloc.
396 * defs.h (init_malloc): Delete declaration.
397 * utils.c (mmalloc, mrealloc, mcalloc, mfree)
398 (init_malloc): Delete functions.
399
400 * defs.h (xmfree): Delete.
401 * utils.c (xmfree): Delete function.
402 (xfree): Inline calls to xmfree and mfree.
403 * symmisc.c (free_symtab_block, free_symtab): Use xfree.
404 * symfile.c (reread_symbols, init_psymbol_list): Ditto.
405 * source.c (forget_cached_source_info, find_and_open_source): Ditto.
406 * somread.c (som_symfile_finish): Ditto.
407 * objfiles.c (allocate_objfile, free_objfile):
408 * nlmread.c (nlm_symfile_finish): Ditto.
409 * hpread.c (hpread_symfile_finish): Ditto.
410 * elfread.c (free_elfinfo, elf_symfile_finish): Ditto.
411 * dbxread.c (dbx_symfile_finish, free_bincl_list): Ditto.
412 * coffread.c (coff_symfile_finish): Ditto.
413
414 * defs.h (xmcalloc): Delete declaration.
415 * utils.c (xmcalloc): Delete.
416 (xcalloc): Inline calls to xmcalloc and mcalloc.
417 * ada-lang.c (_initialize_ada_language): Use htab_create_alloc,
418 xcalloc and xfree.
419 * symtab.c (create_demangled_names_hash): Ditto.
420
421 * defs.h (xmrealloc): Delete.
422 * utils.c (xmrealloc): Delete.
423 (xrealloc): Inline calls to xmrealloc, mmalloc and mrealloc.
424 * symmisc.c (extend_psymbol_list): Use xrealloc.
425 * source.c (find_source_lines): Ditto.
426 * hpread.c (hpread_lookup_type): Ditto.
427 * dbxread.c (add_bincl_to_list): Ditto.
428
429 * utils.c (xmmalloc): Delete.
430 (xmalloc): Inline xmmalloc and mmalloc calls.
431 (msavestring): Use xmalloc.
432 * defs.h (xmmalloc): Delete declaration.
433 * xcoffread.c (xcoff_symfile_init): Use xmalloc instead of
434 xmmalloc.
435 * symmisc.c (extend_psymbol_list): Ditto.
436 * symfile.c (init_psymbol_list): Ditto.
437 * source.c (find_source_lines): Ditto.
438 * hpread.c (hpread_symfile_init, hpread_lookup_type): Ditto.
439 * elfread.c (elf_symtab_read): Ditto.
440 * dbxread.c (dbx_symfile_init, init_bincl_list): Ditto.
441 * coffread.c (coff_symfile_init): Ditto.
442
443 2004-08-10 David Carlton <carlton@bactrian.org>
444
445 * MAINTAINERS: Remove David Carlton from c++ testsuite
446 maintainers.
447
448 2004-08-10 Jerome Guitton <guitton@gnat.com>
449
450 * symfile.c (symbol_file_add_with_addrs_or_offsets): Make sure to
451 print a line feed before the prompt.
452
453 2004-08-10 Mark Kettenis <kettenis@gnu.org>
454
455 * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP.
456
457 2004-08-09 Joel Brobecker <brobecker@gnat.com>
458
459 General cleanup of the AIX xm include file:
460 * config/xm-aix4.h (fd_set): Remove undefine.
461 Remove include of <sys/select.h>.
462 (HAVE_TERMIO): Remove define.
463 (USG): Likewise.
464 (NULL): Remove redefine.
465 (alloca): Remove #pragma.
466 (vfork): Remove define.
467 (termdef): Remove.
468 (SIGWINCH_HANDLER): Remove.
469 (SIGWINCH_HANDLER_BODY): Remove.
470
471 2004-08-09 Mark Kettenis <kettenis@gnu.org>
472
473 * configure.tgt (x86_64-*-openbsd*): Set gdb_osabi to
474 GDB_OSABI_OPENBSD_ELF.
475
476 2004-08-07 Robert Millan <robertmh@gnu.org>
477
478 * bsd-kvm.c: Check for nlist.h before including it.
479
480 2004-08-09 Mark Kettenis <kettenis@gnu.org>
481
482 * i386bsd-nat.c (_initialize_i386bsd_nat): Remove `struct
483 sigcontext' offset consistency checks for ancient BSD.
484
485 * gdb_curses.h [HAVE_CURSESX_H]: Include <cursesX.h>
486
487 * configure.in: Check for <sys/types.h>. Check return and
488 argument types of ptrace.
489 * configure, config.in: Regenerate.
490
491 2004-08-09 Jim Blandy <jimb@redhat.com>
492
493 * rs6000-tdep.c (set_sim_regno, init_sim_regno_table,
494 rs6000_register_sim_regno): Doc fixes.
495
496 2004-08-08 Joel Brobecker <brobecker@gnat.com>
497
498 * mips-tdep.c: Include "floatformat.h".
499 (n32n64_floatformat_always_valid): New function.
500 (floatformat_n32n64_long_double_big): New constant.
501 (mips_gdbarch_init): Set size and format of long double
502 for N32 and N64 ABIs.
503 * Makefile.in (mips-tdep.o): Update dependencies.
504
505 2004-08-08 Andrew Cagney <cagney@gnu.org>
506
507 * gdbarch.sh: Delete "fmt" and "attrib" fields. Always use %s to
508 print. Improve script's error messages.
509 * gdbarch.h: Re-generate.
510
511 * gdbarch.sh (pformat): New function.
512 (float_format, double_format, long_double_format): List with bit
513 members. Use pformat when printing.
514 * gdbarch.c, gdbarch.h: Re-generate.
515
516 2004-08-08 Nathan J. Williams <nathanw@wasabisystems.com>
517
518 * ppcnbsd-nat.c: Include <machine/frame.h>, <machine/pcb.h>,
519 "gdbcore.h", "regcache.h", and "bsd-kvm.h".
520 (ppcnbsd_supply_pcb): New function.
521 (_initialize_ppcnbsd_nat): New prototype and function.
522 * config/powerpc/nbsd.mh (NATDEPFILES): Add bsd-kvm.o.
523 (LOADLIBES): New variable.
524 * Makefile.in (ppcnbsd-nat.o): Update dependencies.
525
526 2004-08-08 Andrew Cagney <cagney@gnu.org>
527
528 * gdbtypes.c (builtin_type_arm_ext, builtin_type_ieee_single)
529 (builtin_type_ieee_double, builtin_type_ia64_quad)
530 (builtin_type_ia64_spill, _initialize_gdbtypes): Add tables of
531 BE/LE floating-point types.
532 * gdbtypes.h (builtin_type_arm_ext, builtin_type_ieee_single)
533 (builtin_type_ieee_double, builtin_type_ia64_quad)
534 (builtin_type_ia64_spill): Declare.
535 * doublest.c (_initialize_doublest, floatformat_ieee_single)
536 (floatformat_ieee_double, floatformat_arm_ext)
537 (floatformat_ia64_spill, floatformat_ia64_quad): Add tables
538 of LE/BE floatformats.
539 * doublest.h: (struct floatformat, floatformat_ieee_single)
540 (floatformat_ieee_double, floatformat_arm_ext)
541 (floatformat_ia64_spill, floatformat_ia64_quad): Declare.
542
543 2004-08-08 Mark Kettenis <kettenis@gnu.org>
544
545 * i386gnu-nat.c (gnu_store_registers): Fix typo.
546
547 * i386gnu-nat.c (gnu_store_registers): Use regcache_raw_collect
548 instead of regcache_raw_supply when storing the registers.
549
550 * i386gnu-nat.c: Update copyright year.
551 (gnu_store_registers): Don't use deprecated_registers and
552 deprecated_registers_valid. Use regcache_valid_p and
553 regcache_raw_supply instead.
554
555 * vax-tdep.c (vax_frame_this_id): Use frame_func_unwind instead of
556 frame_pc_unwind.
557
558 * procfs.c (procfs_pid_to_str): Remove redundant and unused
559 variables. Incapitalized "process".
560
561 * configure.in: Add cursesX to the list of possible curses libs.
562 Add cursesX.h to the list of possible curses headers.
563 * configure, config.in: Regenerate.
564
565 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
566
567 * configure.in: Test for struct lwp in <sys/lwp.h>.
568 * bsd-kvm.c (bsd_kvm_proc_cmd): If HAVE_STRUCT_LWP is defined, use
569 the offset of l_addr in struct lwp.
570
571 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
572
573 * bsd-kvm.c: Include "gdbcore.h"
574 (bsd_kvm_open): Use get_exec_file() to set 'execfile'.
575
576 2004-08-07 Andrew Cagney <cagney@gnu.org>
577
578 * gdbtypes.c (build_flt, build_complex): New functions.
579 (gdbtypes_post_init): Use.
580
581 * doublest.c (floatformat_from_length): Fix tipo, "*" not "&".
582
583 * gdbtypes.c (_initialize_gdbtypes): Do not swap builtin_type_int8
584 through to builtin_type_uint128.
585
586 * c-exp.y: Use builtin_type function to obtain builtin types.
587
588 * gdbtypes.h (struct builtin_type): Delete builtin_int0 through to
589 builtin_uint128.
590 * gdbtypes.c (gdbtypes_post_init): Update.
591 (build_gdbtypes): Move initialization of builtin_type_int0
592 through to builtin_type_uint128 from here ...
593 (_initialize_gdbtypes): ... to here.
594 * d10v-tdep.c (d10v_register_type): Update.
595
596 * doublest.c: Update copyright.
597 (floatformat_from_length): Call error when floatformat is NULL.
598 (extract_floating_by_length): Remove NULL fmt check.
599 (store_floating_by_length): Ditto.
600
601 2004-08-07 Andrew Cagney <cagney@gnu.org>
602
603 * regcache.c (regcache_raw_read): For the moment, #ifdef assert
604 that the register is valid.
605
606 2004-08-05 Mark Kettenis <kettenis@chello.nl>
607
608 * i386-linux-tdep.c (i386_linux_sigtramp_start)
609 (i386_linux_rt_sigtramp_start): Change argument from CORE_ADDR to
610 struct frame_info *. Use safe_frame_unwind_memory instead of
611 deprecated_read_memory_nobpt.
612 (i386_linux_sigtramp_p, i386_linux_sigcontext_addr): Adjust for
613 changed signature of i386_linux_sigtramp_start and
614 i386_linux_rt_sigtramp_start.
615
616 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Change argument from
617 CORE_ADDR to struct frame_info *. Use safe_frame_unwind_memory
618 instead of deprecated_read_memory_nobpt.
619 (i386nbsd_sigtramp_p): Adjust for changed signature of
620 i386nbsd_sigtramp_offset.
621
622 * i386obsd-tdep.c (i386obsd_sigtramp_p): Use
623 safe_frame_unwind_memory instead of target_read_memory.
624
625 * infptrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
626 !NO_SYS_FILE.
627 [KERNEL_U_ADDR_BSD]: Don't include <a.out.h>.
628 [KERNEL_U_ADDR_BSD] (kernel_u_addr): Remove variable.
629 (_initialize_kernel_u_addr): Remove prototype and function.
630 * infttrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
631 !NO_SYS_FILE.
632 * xcoffread.c: Likewise.
633
634 2004-08-06 Mark Kettenis <kettenis@gnu.org>
635
636 * vax-nat.c: New file.
637 * vaxbsd-nat.c: Tweak comment.
638 * Makefile.in (ALLDEPFILES): Add vax-nat.c, vaxbsd-nat.c and
639 vaxnbsd-tdep.c.
640 (vax-nat.o): New dependency.
641 * configure.host (vax-*-bsd*, vax-*-ultrix*): Set gdb_host to vax.
642 (vax-*-ultrix2*): Remove.
643 * config/vax/vax.mh: New file.
644 * config/vax/nm-vax.h (vax_kernel_u_addr): New extern declaration.
645 (KERNEL_U_ADDR): Define as vax_kernel_u_addr.
646 (vax_register_u_addr): New prototype.
647 (REGISTER_U_ADDR): Define using vax_register_u_addr.
648 * config/vax/vaxult2.mh: Remove file.
649 * config/vax/vaxult.mh: Remove file.
650 * config/vax/vaxbsd.mh: Remove file.
651 * config/vax/vax.mt (TM_FILE): Remove.
652 * config/vax/tm-vaxbsd.h: Remove file.
653
654 2004-08-06 Joel Brobecker <brobecker@gnat.com>
655
656 * aix-thread.c (get_signaled_thread): New function.
657 (iter_trap): Delete, no longer used.
658 (iter_tid): New function.
659 (pd_update): Find the thread that received the SIGTRAP signal
660 by first locating the kernel thread, and then finding its
661 associated thread.
662
663 2004-08-06 Ulrich Weigand <uweigand@de.ibm.com>
664
665 * lin-lwp.c (child_wait): Continue inferior after processing
666 PTRACE_EVENT_CLONE event.
667
668 2004-08-05 Nathanael Nerode <neroden@gcc.gnu.org>
669
670 * MAINTAINERS: Add self to Write-After-Approval.
671
672 2004-08-05 Jeff Johnston <jjohnstn@redhat.com>
673
674 * libunwind-frame.c (LIBUNWIND_SO): Change to be of form:
675 libunwind-xxxx.so" where xxxx is UNW_TARGET.
676
677 2004-08-05 Andrew Cagney <cagney@gnu.org>
678
679 * config/xm-sysv4.h: Delete file.
680 * config/mips/xm-irix5.h: Delete file.
681 * config/mips/irix6.mh (XM_FILE, XM_CLIBS): Delete.
682 * config/mips/irix5.mh (XM_FILE, XM_CLIBS): Delete.
683 * config/ia64/xm-aix.h: Delete file.
684 * config/ia64/aix.mh (XM_FILE): Delete.
685 * config/pa/xm-hppah.h: Delete file.
686 * config/pa/hpux11w.mh (XM_FILE): Delete.
687 * config/pa/hpux11.mh (XM_FILE): Delete.
688 * config/pa/hpux1020.mh (XM_FILE): Delete.
689 * config/pa/hppahpux.mh (XM_FILE): Delete.
690
691 * config/alpha/xm-alphalinux.h: Delete file.
692 * config/djgpp/fnchange.lst: Do not fix xm-alphalinux.h.
693 * config/alpha/alpha-linux.mh (XM_FILE, LOADLIBES): Delete.
694 * config/alpha/xm-alphaosf.h: Delete file.
695 * config/djgpp/fnchange.lst: Do not fix xm-alphaosf.h.
696 * config/alpha/alpha-osf3.mh (XM_FILE): Delete.
697 * config/alpha/alpha-osf2.mh (XM_FILE): Delete.
698 * config/alpha/alpha-osf1.mh (XM_FILE): Delete.
699
700 * config/i386/xm-i386v.h: Delete file.
701 * config/i386/i386v.mh (XM_FILE, XM_CLIBS): Delete.
702 * config/i386/i386sco5.mh (XM_FILE, XM_CLIBS): Delete.
703 * config/i386/xm-i386sco.h: Delete file.
704 * config/i386/i386sco4.mh (XM_FILE, XM_CLIBS, MH_CFLAGS): Delete.
705 * config/i386/i386sco.mh (XM_FILE, XM_CLIBS, CC): Delete.
706 * config/i386/xm-i386v4.h: Delete file.
707 * config/djgpp/fnchange.lst: Do not fix xm-i386v4.h.
708 * config/i386/ncr3000.mh (CC, CFLAGS, XM_FILE): Delete.
709 * config/i386/i386v42mp.mh (XM_FILE, XM_CLIBS): Delete.
710 * config/i386/i386v4.mh (XM_FILE, XM_CLIBS): Delete.
711
712 * config/vax/xm-vax.h: Delete file.
713 * Makefile.in (xm-vaxult.h, xm-vaxbsd.h): Delete.
714 * config/vax/xm-vaxult2.h: Delete file.
715 * config/djgpp/fnchange.lst: Do not fix xm-vaxult2.h.
716 * config/vax/vaxult2.mh (XM_FILE): Delete.
717 * config/vax/xm-vaxult.h: Delete file.
718 * config/vax/vaxult.mh (XM_FILE): Delete.
719 * config/vax/xm-vaxbsd.h: Delete file.
720 * config/vax/vaxbsd.mh (XM_FILE): Delete.
721
722 * gdbarch.sh (deprecated_frame_saved_pc): Delete.
723 * gdbarch.h, gdbarch.c: Re-generate.
724 * regcache.c (deprecated_read_fp, deprecated_write_sp): Delete.
725 * inferior.h (deprecated_read_fp, deprecated_write_sp): Delete.
726 * frame.h: Delete deprecated_read_fp from comments.
727 * arch-utils.c (deprecated_init_frame_pc_default): Delete.
728 * arch-utils.h (deprecated_init_frame_pc_default): Delete.
729
730 2004-08-04 Mark Kettenis <kettenis@gnu.org>
731
732 * i386obsd-tdep.c (i386obsd_sigtramp_p): Adjust for changed signal
733 trampoline in OpenBSD 3.5-current.
734
735 * i387-tdep.c (i387_supply_fsave): Provide summy values for the
736 SSE registers.
737
738 * Makefile.in: Remove embedded page breaks.
739
740 2004-08-04 Jim Blandy <jimb@redhat.com>
741
742 * regcache.c (regcache_raw_read): Assert that, after calling
743 target_fetch_registers, the register we're reading is cached.
744
745 * ppc-linux-nat.c (fetch_register): Replace 'gdb_assert (0)' with
746 a call to 'internal_error', with a more helpful error message.
747 * rs6000-tdep.c (e500_pseudo_register_read,
748 e500_pseudo_register_write, rs6000_store_return_value): Same.
749
750 2004-08-04 Andrew Cagney <cagney@gnu.org>
751
752 * Makefile.in: Update dependencies.
753
754 2004-08-04 Jim Blandy <jimb@redhat.com>
755
756 Change the layout of the PowerPC E500 raw register cache to allow
757 the lower 32-bit halves of the GPRS to be their own raw registers,
758 not pseudoregisters.
759 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_gprs_pseudo_p flag;
760 add ppc_ev0_upper_regnum flag.
761 * rs6000-tdep.c: #include "reggroups.h".
762 (spe_register_p): Recognize the ev upper half registers as SPE
763 registers.
764 (init_sim_regno_table): Build gdb->sim mappings for the upper-half
765 registers.
766 (e500_move_ev_register): New function.
767 (e500_pseudo_register_read, e500_pseudo_register_write): The 'ev'
768 vector registers are the pseudo-registers now, formed by splicing
769 together the gprs and the upper-half registers.
770 (e500_register_reggroup_p): New function.
771 (P): Macro deleted.
772 (P8, A4): New macro.
773 (PPC_EV_REGS, PPC_GPRS_PSEUDO_REGS): Macros deleted.
774 (PPC_SPE_GP_REGS, PPC_SPE_UPPER_GP_REGS, PPC_EV_PSEUDO_REGS): New
775 macros.
776 (registers_e500): Rearrange register set so that the raw register
777 set contains 32-bit GPRs and upper-half registers, and the SPE
778 vector registers become pseudo-registers.
779 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gprs_pseudo_p;
780 it has been deleted. Initialize ppc_ev0_upper_regnum. Many other
781 register numbers are now the same for the E500 as they are for
782 other PowerPC variants. Register e500_register_reggroup_p as the
783 register group function for the E500.
784 * Makefile.in (rs6000-tdep.o): Update dependencies.
785
786 Adapt PPC E500 native support to the new raw regcache layout.
787 * ppc-linux-nat.c (struct gdb_evrregset_t): Doc fixes.
788 (read_spliced_spe_reg, write_spliced_spe_reg): Deleted.
789 (fetch_spe_register, store_spe_register): Handle fetching/storing
790 all the SPE registers at once, if regno == -1. These now take
791 over the job of fetch_spe_registers and store_spe_registers.
792 (fetch_spe_registers, store_spe_registers): Deleted.
793 (fetch_ppc_registers, store_ppc_registers): Fetch/store gprs
794 unconditionally; they're always raw. Fetch/store SPE upper half
795 registers, if present, instead of ev registers.
796 (fetch_register, store_register): Remove sanity checks: gprs are
797 never pseudo-registers now, so we never need to even mention any
798 registers that are ever pseudoregisters.
799
800 Use a fixed register numbering when communicating with the PowerPC
801 simulator.
802 * ppc-tdep.h (struct gdbarch_tdep): New member: 'sim_regno'.
803 * rs6000-tdep.c: #include "sim-regno.h" and "gdb/sim-ppc.h".
804 (set_sim_regno, init_sim_regno_table, rs6000_register_sim_regno):
805 New functions.
806 (rs6000_gdbarch_init): Register rs6000_register_sim_regno. Call
807 init_sim_regno_table.
808 * Makefile.in (gdb_sim_ppc_h): New variable.
809 (rs6000-tdep.o): Update dependencies.
810
811 2004-08-02 Andrew Cagney <cagney@gnu.org>
812
813 * cris-tdep.c (cris_register_size): Restore function, still used
814 locally.
815
816 * gdbarch.sh (deprecated_target_read_fp)
817 (deprecated_frame_locals_address, deprecated_frame_args_address)
818 (deprecated_frame_chain_valid, deprecated_frame_chain)
819 (deprecated_init_extra_frame_info, deprecated_pop_frame)
820 (deprecated_frame_init_saved_regs, deprecated_get_saved_register)
821 (deprecated_do_registers_info, deprecated_init_frame_pc): Delete.
822 * gdbarch.h, gdbarch.c: Re-generate.
823 * regcache.c (deprecated_read_fp): Do not call
824 DEPRECATED_TARGET_READ_FP_P.
825 * infcmd.c (default_print_registers_info): Do not call
826 DEPRECATED_DO_REGISTERS_INFO.
827 * frame-base.c (default_frame_locals_address): Do not call
828 DEPRECATED_FRAME_LOCALS_ADDRESS.
829 (default_frame_args_address): Do not call
830 DEPRECATED_FRAME_ARGS_ADDRESS.
831
832 * gdbarch.sh (deprecated_register_raw_size)
833 (deprecated_register_virtual_size:int): Delete.
834 * gdbarch.h, gdbarch.c: Re-generate.
835 * cris-tdep.c (cris_register_size): Delete.
836 (cris_gdbarch_init): Update.
837 * alpha-tdep.c (alpha_register_raw_size)
838 (alpha_register_virtual_size): Delete.
839 (alpha_gdbarch_init): Update.
840
841 * gdbarch.sh (deprecated_register_virtual_type)
842 (deprecated_save_dummy_frame_tos, deprecated_push_return_address)
843 (deprecated_dummy_write_sp): Delete.
844 * gdbarch.h, gdbarch.c: Re-generate.
845
846 * gdbarch.sh (deprecated_register_bytes): Delete.
847 * gdbarch.h, gdbarch.c: Re-generate.
848 * regcache.c (deprecated_register_bytes): New function.
849 * regcache.h (deprecated_register_bytes): Declare.
850 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
851 * v850-tdep.c (v850_gdbarch_init): Update.
852 * sh64-tdep.c (sh64_gdbarch_init): Update.
853 * ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
854 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
855 * mcore-tdep.c (mcore_gdbarch_init): Update.
856 * cris-tdep.c (cris_gdbarch_init): Update.
857 * arm-tdep.c (arm_gdbarch_init): Update.
858 * remote.c (init_remote_state): Update.
859 * remote-vx.c (vx_prepare_to_store): Update.
860 * remote-sds.c (sds_fetch_registers, sds_prepare_to_store): Update.
861 * irix5-nat.c (fetch_core_registers): Update.
862 * cris-tdep.c (cris_register_bytes_ok): Update.
863 * config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
864
865 * mips-tdep.c (mips_gdbarch_init, mips_insn16_frame_cache)
866 (mips_insn16_frame_this_id, mips_insn16_frame_prev_register)
867 (mips_insn16_frame_unwind, mips_insn16_frame_sniffer)
868 (mips_insn16_frame_base_address, mips_insn16_frame_base)
869 (mips_insn16_frame_base_sniffer, mips_insn32_frame_cache)
870 (mips_insn32_frame_this_id, mips_insn32_frame_prev_register)
871 (mips_insn32_frame_unwind, mips_insn32_frame_sniffer)
872 (mips_insn32_frame_base_address, mips_insn32_frame_base)
873 (mips_insn32_frame_base_sniffer): Replace mips16 / mips32 prefix
874 with mips_insn16 and mips_insn32.
875
876 Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
877 * rs6000-tdep.c (rs6000_push_dummy_call)
878 (rs6000_extract_return_value): Use register_size.
879 * xstormy16-tdep.c (xstormy16_get_saved_register)
880 (xstormy16_extract_return_value): Ditto.
881 * valops.c (value_assign): Ditto.
882 * v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
883 * v850-tdep.c (v850_extract_return_value): Ditto.
884 * tracepoint.c (collect_symbol): Ditto.
885 * target.c (debug_print_register): Ditto.
886 * stack.c (frame_info): Ditto.
887 * rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
888 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
889 * remote.c (struct packet_reg, remote_wait, remote_async_wait)
890 (store_register_using_P): Ditto.
891 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
892 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
893 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
894 * remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
895 * regcache.c (deprecated_read_register_bytes)
896 (deprecated_write_register_bytes, read_register)
897 (write_register): Ditto.
898 * ppc-linux-nat.c (fetch_altivec_register, fetch_register)
899 (supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
900 * monitor.c (monitor_supply_register, monitor_fetch_register)
901 (monitor_store_register): Ditto.
902 * mn10300-tdep.c (mn10300_pop_frame_regular)
903 (mn10300_print_register): Ditto.
904 * mipsv4-nat.c (fill_fpregset): Ditto.
905 * mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
906 (mips64_fill_fpregset): Ditto.
907 * mi/mi-main.c (register_changed_p, get_register)
908 (mi_cmd_data_write_register_values): Ditto.
909 * lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
910 * irix5-nat.c (fill_gregset, fetch_core_registers):
911 * infrun.c (write_inferior_status_register): Ditto.
912 * infptrace.c (fetch_register, store_register): Ditto.
913 * infcmd.c (default_print_registers_info): Ditto.
914 * ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
915 * ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
916 * i386gnu-nat.c (gnu_store_registers, fill): Ditto.
917 * hpux-thread.c (hpux_thread_fetch_registers)
918 (hpux_thread_store_registers): Ditto.
919 * hppah-nat.c (store_inferior_registers, fetch_register):
920 * findvar.c (value_from_register): Ditto.
921 * dve3900-rom.c (fetch_bitmapped_register):
922 * cris-tdep.c (cris_gdbarch_init): Ditto.
923 * alpha-tdep.h: Ditto.
924 * aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
925
926 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_SIZE and
927 DEPRECATED_REGISTER_RAW_SIZE from comments.
928 * regcache.c (init_regcache_descr, regcache_dump): Do not check or
929 use DEPRECATED_REGISTER_VIRTUAL_SIZE and
930 DEPRECATED_REGISTER_RAW_SIZE.
931 * findvar.c (value_of_register): Simplify by assuming that the
932 registers raw and virtual sizes are identical.
933 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_TYPE in
934 comment.
935 * arch-utils.c (generic_register_size): Simplify by assuming
936 register_type.
937
938 * regcache.c (legacy_read_register_gen, real_register)
939 (legacy_write_register_gen): Delete, not used.
940
941 * regcache.c (struct regcache_descr): Delete legacy_p.
942 (init_legacy_regcache_descr): Delete function.
943 (init_regcache_descr): Delete call to init_legacy_regcache_descr.
944 Do not use deprecated register functions.
945 (regcache_raw_read, deprecated_write_register_gen):
946 (deprecated_read_register_gen, regcache_raw_write): Delete code
947 predicated on legacy_p.
948 (register_size): Delete check against register raw size.
949
950 * cris-tdep.c (cris_register_type): Replace
951 cris_register_virtual_type.
952 (cris_gdbarch_init): Update, set register_type.
953
954 * gdbarch.sh (deprecated_frameless_function_invocation): Delete.
955 * gdbarch.h, gdbarch.c: Re-generate.
956 * arm-tdep.c (arm_frameless_function_invocation): Delete.
957 (arm_gdbarch_init) Do not set frameless function invocation.
958 * frame.h (legacy_frameless_look_for_prologue): Delete declaration.
959 * blockframe.c (legacy_frameless_look_for_prologue): Delete function.
960 * frv-tdep.c (frv_frameless_function_invocation): Delete.
961 (frv_gdbarch_init): Do not set frameless function invocation.
962 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
963 * sh-tdep.c (sh_gdbarch_init): Ditto.
964 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
965 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
966 * avr-tdep.c (avr_gdbarch_init): Ditto.
967
968 * blockframe.c (legacy_frame_chain_valid): Delete function.
969
970 * dummy-frame.c (struct dummy_frame): Delete call_lo, call_hi, top
971 and pc. Update comments.
972 (pc_in_dummy_frame): Delete function.
973 (deprecated_pc_in_call_dummy): Inline old pc_in_dummy_frame code,
974 use the "id".
975 (dummy_frame_push, dummy_frame_sniffer): Instead of call_lo,
976 call_hi, top and pc, use the id.
977 (fprint_dummy_frames): Do not print call_lo, call_hi, top and pc.
978
979 * dummy-frame.c: Include "gdb_string.h".
980 (generic_save_call_dummy_addr, generic_push_dummy_frame)
981 (generic_save_dummy_frame_tos): Delete.
982 (dummy_frame_push): New function, replaces above.
983 * dummy-frame.h: Update copyright.
984 (dummy_frame_push): Declare.
985 * frame.h (generic_save_dummy_frame_tos, generic_push_dummy_frame)
986 (generic_save_call_dummy_addr): Delete declarations.
987 * infcall.c: Include "dummy-frame.h".
988 (call_function_by_hand): Add locals caller_regcache,
989 caller_regcache_cleanup and dummy_id. Replace push_dummy_frame
990 with call to frame_save_as_regcache plus cleanup. Delete calls to
991 generic_save_call_dummy_addr and generic_save_dummy_frame_tos.
992 Move clear_proceed_status to just before the resume, add call to
993 dummy_frame_push (discard cleanup).
994 * Makefile.in (infcall.o): Add $(dummy_frame_h).
995 (dummy-frame.o): Add $(gdb_string_h).
996
997 2004-08-01 Andrew Cagney <cagney@gnu.org>
998
999 * dummy-frame.h (dummy_frame_unwind): Replace dummy_frame_sniffer.
1000 * frame-unwind.c (frame_unwind_init): Use dummy_frame_unwind.
1001 * dummy-frame.c (find_dummy_frame): Delete.
1002 (struct dummy_frame_cache, dummy_frame_sniffer)
1003 (dummy_frame_prev_register, dummy_frame_this_id)
1004 (dummy_frame_unwinder, dummy_frame_unwind): Re-implement dummy
1005 frame unwinder using a dummy_frame_cache.
1006
1007 2004-08-01 Andrew Cagney <cagney@gnu.org>
1008
1009 * frame.h (frame_save_as_regcache): Declare.
1010 * frame.c (frame_save_as_regcache): New function.
1011 (do_frame_read_register): Replace do_frame_unwind_register.
1012 (frame_pop): Use frame_save_as_regcache.
1013 * dummy-frame.c (generic_push_dummy_frame): Use
1014 frame_save_as_regcache.
1015
1016 2004-08-01 Joel Brobecker <brobecker@gnat.com>
1017
1018 * dwarf2read.c (dwarf_decode_lines): Do not consider the current
1019 file as included until we record the first line in the linetable.
1020
1021 2004-08-01 Andrew Cagney <cagney@gnu.org>
1022
1023 * frame.h (deprecated_pop_dummy_frame)
1024 (deprecated_read_register_dummy)
1025 (deprecated_generic_find_dummy_frame): Delete.
1026 * dummy-frame.c (deprecated_generic_find_dummy_frame)
1027 (deprecated_read_register_dummy)
1028 (deprecated_find_dummy_frame_regcache)
1029 (discard_innermost_dummy)
1030 (deprecated_pop_dummy_frame): Delete.
1031 (dummy_frame_this_id): Simplify.
1032 (struct dummy_frame): Delete "fp" and "sp".
1033 (find_dummy_frame): Simplify.
1034 (generic_push_dummy_frame): Do not set "fp" or "sp".
1035 (fprint_dummy_frames): Do not print "fp" and "sp"
1036
1037 2004-08-01 Mark Kettenis <kettenis@gnu.org>
1038
1039 * i386-tdep.c (I386_MAX_INSN_LEN): New define.
1040 (struct i386_insn): New structure.
1041 (i386_match_insn): New function.
1042 (i386_frame_setup_skip_insns): New variable.
1043 (i386_analyze_frame_setup): Change to use i386_match_insn and the
1044 array i386_frame_setup_insns of instructions that should be
1045 skipped inside the frame setup sequence.
1046
1047 2004-08-01 Andrew Cagney <cagney@gnu.org>
1048
1049 * frame.h (deprecated_frame_xmalloc_with_cleanup)
1050 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
1051 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
1052 * stack.c (frame_info): Delete references to
1053 DEPRECATED_FRAME_INIT_SAVED_REGS and
1054 deprecated_get_frame_saved_regs.
1055 * frame.c (struct frame_info): Delete saved_regs and extra_info.
1056 (frame_pc_unwind): Do not use DEPRECATED_FRAME_SAVED_PC.
1057 (frame_register): Do not use DEPRECATED_GET_SAVED_REGISTER.
1058 (frame_unwind_register_signed)
1059 (frame_unwind_register_unsigned)
1060 (frame_unwind_unsigned_register): Use register_size.
1061 (create_new_frame): Do not use DEPRECATED_INIT_EXTRA_FRAME_INFO.
1062 (deprecated_frame_xmalloc_with_cleanup)
1063 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
1064 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
1065
1066 * sh-tdep.c (sh_gdbarch_init): Disable call to sh64_gdbarch_init.
1067 * config/sh/nbsd.mt (TDEPFILES): Remove sh64-tdep.o.
1068 * config/sh/linux.mt (TDEPFILES): Remove sh64-tdep.o.
1069 * config/sh/embed.mt (TDEPFILES): Remove sh64-tdep.o.
1070
1071 * infcall.c (call_function_by_hand): Do not use
1072 DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP,
1073 DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_TARGET_READ_FP,
1074 DEPRECATED_FP_REGNUM, DEPRECATED_STORE_STRUCT_RETURN, and
1075 DEPRECATED_STACK_ALIGN.
1076
1077 2004-07-30 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
1078
1079 Committed by Andrew Cagney.
1080 * arm-tdep.c: Remove references to add_setshow_cmd_full for apcs32 .
1081
1082 2004-08-01 Andrew Cagney <cagney@gnu.org>
1083
1084 * mips-tdep.c (mips16_frame_cache)
1085 (mips16_frame_this_id, mips16_frame_prev_register)
1086 (mips16_frame_unwind, mips16_frame_sniffer)
1087 (mips16_frame_base_address, mips16_frame_base)
1088 (mips16_frame_base_sniffer, mips32_frame_cache)
1089 (mips32_frame_this_id, mips32_frame_prev_register)
1090 (mips32_frame_unwind, mips32_frame_sniffer)
1091 (mips32_frame_base_address, mips32_frame_base)
1092 (mips32_frame_base_sniffer): Clone the mdebug unwinder into
1093 separate heuristic mips16 and mips32 unwinders.
1094 (mips_stub_frame_cache, mips_stub_frame_this_id)
1095 (mips_stub_frame_prev_register)
1096 (mips_stub_frame_unwind, mips_stub_frame_sniffer)
1097 (mips_stub_frame_base_address, mips_stub_frame_base)
1098 (mips_stub_frame_base_sniffer): Add a simple stub unwinder.
1099 (mips_mdebug_frame_base_sniffer, mips_mdebug_frame_sniffer): Only
1100 match true mdebug frames.
1101 (non_heuristic_proc_desc): Add forward declaration.
1102
1103 2004-08-01 Andrew Cagney <cagney@gnu.org>
1104
1105 * config/mips/tm-irix6.h: Delete file.
1106 * config/mips/tm-irix5.h: Delete file.
1107 * config/mips/irix5.mt (TM_FILE): Set to tm-mips.h
1108 * config/mips/irix6.mt (TM_FILE): Set to tm-mips.h
1109
1110 * config/ia64/tm-linux.h (IA64_GNULINUX_TARGET): Delete.
1111 * config/alpha/nm-osf2.h (PROCFS_SIGPEND_OFFSET): Delete.
1112 * config/nm-gnu.h (NO_CORE_OPS): Delete.
1113 * config/pa/nm-hppah.h (MAY_SWITCH_FROM_INFERIOR_PID): Delete.
1114 * config/i386/nm-i386v4.h (LOSING_POLL): Delete.
1115 * config/alpha/nm-osf2.h (LOSING_POLL): Delete.
1116 * config/tm-nto.h (RAW_SIGNAL_LO, RAW_SIGNAL_HI): Delete.
1117 * config/m68k/tm-vx68.h (VX_SIZE_FPREGS): Delete.
1118 * config/nm-linux.h (USE_THREAD_STEP_NEEDED): Delete.
1119 * config/pa/nm-hppah.h (USE_THREAD_STEP_NEEDED): Delete.
1120 * config/tm-nto.h (TARGET_SIGNAL_RAW_TABLE) Delete.
1121 (TARGET_SIGNAL_RAW_VALUES): Delete.
1122 * config/pa/nm-hppah.h (TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT):
1123 Delete.
1124 * config/frv/tm-frv.h (TARGET_HW_BREAK_LIMIT)
1125 (TARGET_HW_WATCH_LIMIT): Delete.
1126 * Makefile.in (minimon_h, HFILES_NO_SRCDIR): Remove minimon.h.
1127 * minimon.h: Delete file.
1128
1129 * trad-frame.c (trad_frame_get_this_base)
1130 (trad_frame_set_this_base, trad_frame_set_reg_realreg): New
1131 functions.
1132 * trad-frame.h (trad_frame_set_this_base)
1133 (trad_frame_get_this_base, trad_frame_set_reg_realreg): Declare.
1134
1135 2004-07-31 Andrew Cagney <cagney@gnu.org>
1136
1137 * trad-frame.c (trad_frame_get_prev_register): Rename
1138 trad_frame_get_prev_register.
1139 * vax-tdep.c (vax_frame_prev_register): Update.
1140 * trad-frame.h: Update.
1141 * trad-frame.c (trad_frame_get_register): Update.
1142 * sparcobsd-tdep.c (sparc32obsd_frame_prev_register): Update.
1143 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_prev_register):
1144 Update.
1145 * sparc64obsd-tdep.c (sparc64obsd_frame_prev_register): Update.
1146 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_prev_register):
1147 Update.
1148 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_prev_register):
1149 Update.
1150 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_prev_register):
1151 Update.
1152 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_prev_register):
1153 Update.
1154 * sparc-linux-tdep.c (sparc32_linux_sigtramp_frame_prev_register):
1155 Update.
1156 * s390-tdep.c (s390_frame_prev_register)
1157 (s390_stub_frame_prev_register)
1158 (s390_sigtramp_frame_prev_register): Update.
1159 * rs6000-tdep.c (rs6000_frame_prev_register): Update.
1160 * ppc-linux-tdep.c (ppc_linux_sigtramp_prev_register): Update.
1161 * mips-tdep.c (mips_mdebug_frame_prev_register): Update.
1162 * m88k-tdep.c (m88k_frame_prev_register)
1163 * m68hc11-tdep.c (m68hc11_frame_prev_register)
1164 * m32r-tdep.c (m32r_frame_prev_register): Update.
1165 * hppa-tdep.c (hppa_frame_prev_register_helper)
1166 * frv-tdep.c (frv_frame_prev_register): Update.
1167 * d10v-tdep.c (d10v_frame_prev_register): Update.
1168 * cris-tdep.c (cris_frame_prev_register): Update.
1169 * avr-tdep.c (avr_frame_prev_register): Update.
1170 * arm-tdep.c (arm_prologue_prev_register)
1171 (arm_sigtramp_prev_register): Update.
1172
1173 2004-07-31 Andrew Cagney <cagney@gnu.org>
1174
1175 * frame.h (legacy_saved_regs_unwind)
1176 (legacy_frame_chain_valid, legacy_frame_p)
1177 (enum frame_type): Delete UNKNOWN_FRAME.
1178 * dummy-frame.c (dummy_frame_this_id): Simplify.
1179 * frame-unwind.c (frame_unwind_find_by_frame): Simplify.
1180 * frame.c (struct frame_info): Delete the field "type".
1181 (legacy_saved_regs_prev_register, legacy_get_prev_frame)
1182 (legacy_saved_regs_this_id, legacy_saved_regs_unwinder)
1183 (legacy_saved_regs_unwind, legacy_frame_p)
1184 (frame_type_from_pc): Delete.
1185 (get_frame_id, frame_pop, frame_register_unwind, get_prev_frame_1)
1186 (fprint_frame, create_new_frame, fprint_frame_type): Simplify.
1187
1188 2004-07-31 Mark Kettenis <kettenis@gnu.org>
1189
1190 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Fix
1191 indentation.
1192
1193 * mips-nat.c: Remove file.
1194 * Makefile.in (ALLDEPFILES): Remove mips-nat.c
1195 (mips-nat.o): Remove dependency.
1196
1197 * infptrace.c: Update copyright year.
1198 (fetch_register): Pass NULL in regcache_raw_supply call instead of
1199 explicitly setting the buffer to all zeroes.
1200
1201 * sparc64obsd-tdep.c (sparc64obsd_sigreturn_offset): New variable.
1202 (sparc64obsd_pc_in_sigtramp): Reorganize to avoid goto.
1203
1204 2004-07-30 Andrew Cagney <cagney@gnu.org>
1205
1206 * GDB 6.2 released from gdb_6_2-branch.
1207
1208 2004-07-30 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
1209
1210 * defs.h (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH): New macros.
1211
1212 * exec.c (exec_file_attach):
1213 * nto-tdep.c (nto_find_and_open_solib):
1214 * pa64solib.c (pa64_solib_sizeof_symbol_table):
1215 * solib.c (solib_open):
1216 * somsolib.c (som_solib_sizeof_symbol_table):
1217 * source.c (is_regular_file, openp, open_source_file):
1218 * symfile.c (symfile_bfd_open):
1219 * wince.c (upload_to_device): Differentiate between the search for
1220 binary and source files.
1221
1222 2004-07-30 Andrew Cagney <cagney@gnu.org>
1223
1224 * complaints.c (_initialize_complaints): Pass NULL to
1225 add_setshow_zinteger_cmd for help_doc.
1226 * cli/cli-decode.c (add_setshow_cmd_full): Handle a NULL help_doc.
1227
1228 2004-07-30 Andrew Cagney <cagney@gnu.org>
1229
1230 Fix PR i18n/761.
1231 * Makefile.in (.SUFFIXES): Add po .gmo, and .pox.
1232 (.PHONY): Add all-po install-po, uninstall-po, clean-po,
1233 $(PACKAGE).pot and update-po.
1234 (all-po, .po.gmo, .po.pox, install-po, $(PACKAGE).pot)
1235 (po/$(PACKAGE).pot, clean-po, uninstall-po, install-po)
1236 (update-po): New rules.
1237 (localedir): Define using autoconf.
1238 (diststuff): Add $(PACKAGE).pot and $(CATALOGS)
1239 (GDB_CFLAGS): Define LOCALEDIR using $(localedir).
1240 (XGETTEXT, GMSGFMT, MSGMERGE, PACKAGE, CATALOGS): Define.
1241 * configure.in: Generate CATALOGS and LINGUAS from contents of
1242 src/gdb/po/ directory. Set @localedir@ in Makefile.in.
1243 * configure: Re-generate.
1244 * po/gdbtext: New file
1245
1246 2004-07-30 Jerome Guitton <guitton@gnat.com>
1247
1248 * MAINTAINERS: Reorder Write After Approval list in alphabetical
1249 order.
1250
1251 2004-07-30 David Lecomber <dsl@sources.redhat.com>
1252
1253 * dwarf2read.c (read_file_scope): Set producer if attribute
1254 present.
1255 (struct dwarf2_cu): Added new member producer.
1256
1257 2004-07-30 Jerome Guitton <guitton@gnat.com>
1258
1259 * inflow.c (kill_command): release file handles in BFD.
1260 * exec.c (exec_file_attach): Ditto.
1261 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
1262
1263 2004-07-29 Andrew Cagney <cagney@gnu.org>
1264
1265 * PROBLEMS (mips-irix): Note that it is broken.
1266
1267 2004-07-29 Andrew Cagney <cagney@gnu.org>
1268
1269 * config/mips/xm-irix5.h (REGISTER_U_ADDR): Move from here ...
1270 * config/mips/nm-irix5.h (REGISTER_U_ADDR): ... to here.
1271
1272 * config/xm-nbsd.h: Delete file.
1273 * config/arm/xm-nbsd.h: Delete file.
1274 * config/i386/xm-nbsd.h: Delete file.
1275 * config/ns32k/xm-nbsd.h: Delete file.
1276 * config/ns32k/nbsdaout.mh (XM_FILE): Delete.
1277 * config/i386/nbsdelf.mh (XM_FILE): Delete.
1278 * config/i386/nbsdaout.mh (XM_FILE): Delete.
1279 * config/arm/nbsdelf.mh (XM_FILE): Delete.
1280 * config/arm/nbsdaout.mh (XM_FILE): Delete.
1281
1282 * config/i386/xm-i386v.h (KERNEL_U_ADDR): Move from here ...
1283 * config/i386/nm-i386v42mp.h (KERNEL_U_ADDR): ... to here, ...
1284 * config/i386/nm-i386v4.h (KERNEL_U_ADDR): ... here, ...
1285 * config/i386/nm-i386v.h (KERNEL_U_ADDR): ... and here.
1286 * config/vax/xm-vax.h (KERNEL_U_ADDR): Move from here ...
1287 * config/vax/nm-vax.h (KERNEL_U_ADDR): ... to here.
1288
1289 * config/powerpc/xm-linux.h: Delete empty file.
1290 * config/powerpc/ppc64-linux.mh (XM_FILE): Delete.
1291 * config/powerpc/linux.mh (XM_FILE): Delete.
1292 * config/m68k/xm-linux.h: Delete empty file.
1293 * config/m68k/linux.mh (XM_FILE): Delete.
1294 * config/ia64/xm-linux.h: Delete empty file.
1295 * config/ia64/linux.mh (XM_FILE): Delete.
1296 * config/arm/xm-linux.h: Delete empty file.
1297 * config/arm/linux.mh (XM_FILE): Delete.
1298
1299 * config/powerpc/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1300 * config/powerpc/nm-linux.h (KERNEL_U_ADDR): ... to here.
1301 * config/m68k/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1302 * config/m68k/nm-linux.h (KERNEL_U_ADDR): ... to here.
1303 * config/ia64/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1304 * config/ia64/nm-linux.h (KERNEL_U_ADDR): ... to here.
1305 * config/arm/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1306 * config/arm/nm-linux.h (KERNEL_U_ADDR): ... to here.
1307
1308 * config/m68k/xm-m68k.h: Delete file.
1309 * config/m68k/xm-linux.h: Do not include "m68k/xm-m68k.h". Update
1310 copyright.
1311 (HOST_LONG_DOUBLE_FORMAT): Delete macro.
1312 * config/pa/xm-linux.h: Delete empty file.
1313 * config/pa/linux.mh (XM_FILE): Delete.
1314 * config/i386/xm-i386.h: Delete empty file.
1315 * config/i386/xm-nbsd.h, config/i386/xm-go32.h: Do not include
1316 "i386/xm-i386.h".
1317 * config/i386/obsdaout.mh (XM_FILE): Delete.
1318 * config/i386/obsd64.mh (XM_FILE): Delete.
1319 * config/i386/fbsd64.mh (XM_FILE): Delete.
1320 * config/i386/nto.mh (XM_FILE): Delete.
1321 * config/i386/obsd.mh (XM_FILE): Delete.
1322 * config/i386/linux64.mh (XM_FILE): Delete.
1323 * config/i386/linux.mh (XM_FILE): Delete.
1324 * config/i386/i386sol2.mh (XM_FILE): Delete.
1325 * config/i386/i386gnu.mh (XM_FILE): Delete.
1326 * config/i386/fbsd.mh (XM_FILE): Delete.
1327 * config/i386/nbsd64.mh (XM_FILE): Delete.
1328
1329 2004-07-29 Andrew Cagney <cagney@gnu.org>
1330
1331 * config/pa/xm-linux.h: Do not include "floatformat.h".
1332 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1333 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
1334 * config/i386/xm-i386.h: Do not include "floatformat.h".
1335 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1336 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
1337 * doublest.c (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1338 (HOST_LONG_DOUBLE_FORMAT): Delete macros. Use
1339 GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT and
1340 GDB_HOST_LONG_DOUBLE_FORMAT instead.
1341 * configure.in (GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT)
1342 (GDB_HOST_LONG_DOUBLE_FORMAT): Define.
1343 * configure, config.in: Regenerate.
1344 * configure.host (gdb_host_float_format, gdb_host_double_format)
1345 (gdb_host_long_double_format): Set according to the host.
1346
1347 2004-07-29 Andrew Cagney <cagney@gnu.org>
1348
1349 * Makefile.in (CONFIG_CLEAN): Delete duplicate definition.
1350
1351 2004-07-28 Andrew Cagney <cagney@gnu.org>
1352
1353 * PROBLEMS: Mention threads/1650.
1354 * NEWS: Mention the NPTL fix.
1355
1356 2004-07-28 Andrew Cagney <cagney@gnu.org>
1357
1358 * cli/cli-decode.c (add_setshow_cmd): Delete function.
1359 (add_setshow_cmd_full): Make static.
1360 * command.h (add_setshow_cmd, add_setshow_cmd_full): Delete.
1361 (add_setshow_filename_cmd, add_setshow_string_cmd): Declare.
1362 * cli/cli-decode.c (add_setshow_filename_cmd)
1363 (add_setshow_string_cmd): New functions.
1364 * nto-tdep.c (_initialize_nto_tdep): Update. Fix parameters.
1365 * mips-tdep.c (_initialize_mips_tdep): Update.
1366 * m32r-rom.c (_initialize_m32r_rom): Update. Update copyright.
1367 * cli/cli-logging.c (_initialize_cli_logging): Update.
1368 * complaints.c (_initialize_complaints): Update.
1369 * remote.c (_initialize_remote): Update.
1370
1371 2004-07-28 Andrew Cagney <cagney@gnu.org>
1372
1373 * cli/cli-decode.c (add_setshow_zinteger_cmd)
1374 (add_setshow_cmd, add_setshow_auto_boolean_cmd)
1375 (add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
1376 print parameters. Make string parameters constant.
1377 * command.h: Update. Update copyright.
1378 * remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
1379 * observer.c (_initialize_observer): Ditto.
1380 * frame.c (_initialize_frame): Ditto.
1381 * complaints.c (_initialize_complaints): Ditto.
1382 * maint.c (_initialize_maint_cmds): Ditto.
1383 * target.c (initialize_targets): Ditto.
1384 * cli/cli-logging.c (_initialize_cli_logging): Ditto.
1385 * infcall.c (_initialize_infcall): Ditto.
1386 * arm-tdep.c (_initialize_arm_tdep): Ditto.
1387 * m32r-rom.c (_initialize_m32r_rom): Ditto.
1388 * remote-rdi.c (_initialize_remote_rdi): Ditto.
1389 * d10v-tdep.c (_initialize_d10v_tdep): Ditto.
1390 * mips-tdep.c (_initialize_mips_tdep): Ditto.
1391
1392 2004-07-28 Andrew Cagney <cagney@gnu.org>
1393
1394 * gdbtypes.c (lookup_primitive_typename): Delete function.
1395 * gdbtypes.h (lookup_primitive_typename): Delete declaration.
1396 * ada-lex.l: Use language_lookup_primitive_type_by_name.
1397 * gdbtypes.c (lookup_typename): Ditto.
1398 * f-exp.y (yylex): Ditto.
1399 * c-exp.y (yylex): Ditto, eliminate assignment in "if".
1400
1401 * scm-lang.c (c_builtin_types): Delete extern declaration.
1402 (scm_language_defn): Replace
1403 string_char_type and primitive_type_vector with
1404 la_language_arch_info.
1405 * jv-lang.c (java_language_defn): Replace
1406 string_char_type and primitive_type_vector with
1407 la_language_arch_info.
1408 * config/i386/i386sco4.mh (NATDEPFILES): Remove reference to
1409 c_builtin_types in comment.
1410 * c-lang.h (struct language_arch_info): Declare opaque.
1411 (c_language_arch_info): Declare.
1412 (c_builtin_types): Delete declaration.
1413 * c-lang.c (c_language_arch_info): Set string_char_type to
1414 builtin_char, not builtin_true_char. Make global.
1415 (c_builtin_types): Delete array.
1416 (asm_language_defn, minimal_language_defn): Replace
1417 string_char_type and primitive_type_vector with
1418 la_language_arch_info.
1419
1420 2004-07-28 Andrew Cagney <cagney@gnu.org>
1421
1422 * gdbtypes.h (struct builtin_type): Rename true_char to
1423 builtin_true_char.
1424 * gdbtypes.c (gdbtypes_post_init): Update.
1425 * c-lang.c (arch_info): New function.
1426 (enum c_primitive_types): New enum.
1427 (c_language_defn): Instead of string_char_type and
1428 primitive_type_vector set la_language_arch_info.
1429
1430 2004-07-28 Andrew Cagney <cagney@gnu.org>
1431
1432 * language.h (struct language_arch_info): Fix typo
1433 s/primative/primitive/.
1434 * gdbtypes.c (lookup_primitive_typename): Ditto.
1435 * language.c (language_lookup_primitive_type_by_name)
1436 (unknown_language_arch_info): Ditto.
1437
1438 2004-07-27 Andrew Cagney <cagney@gnu.org>
1439
1440 * defs.h (enum language): Add nr_languages.
1441 * language.h (struct language_arch_info): Define.
1442 (struct language_defn): Add la_language_arch_info.
1443 (language_lookup_primative_type_by_name): Declare.
1444 (language_string_char_type): Declare.
1445 * language.c (_initialize_language, language_gdbarch_post_init)
1446 (struct language_gdbarch, language_gdbarch_data): Implement
1447 per-architecture language information.
1448 (unknown_language_arch_info, language_string_char_type)
1449 (language_lookup_primative_type_by_name): New functions.
1450 (unknown_language_defn, auto_language_defn)
1451 (local_language_defn): Set la_language_arch_info to
1452 unknown_language_arch_info.
1453 (unknown_builtin_types): Delete.
1454 * gdbtypes.c (lookup_primitive_typename): Use
1455 language_lookup_primative_type_by_name.
1456 (create_string_type): Use language_string_char_type.
1457 * values.c (value_from_string): Use language_string_char_type.
1458 * scm-lang.c (scm_language_defn): Add NULL la_language_arch_info.
1459 * p-lang.c (pascal_language_defn): Ditto.
1460 * m2-lang.c (m2_language_defn): Ditto.
1461 * jv-lang.c (java_language_defn): Ditto.
1462 * objc-lang.c (objc_language_defn): Ditto.
1463 * f-lang.c (f_language_defn): Ditto.
1464 * c-lang.c (c_language_defn, cplus_language_defn)
1465 (asm_language_defn, minimal_language_defn): Ditto.
1466
1467 2004-07-27 Andrew Cagney <cagney@gnu.org>
1468
1469 * gdbtypes.h (struct builtin_type): Declare.
1470 (builtin_type): Declare.
1471 * d10v-tdep.c (d10v_register_type): Use builtin_type.
1472 * gdbtypes.c (_initialize_gdbtypes): Register gdbtypes_post_init.
1473 (gdbtypes_post_init): New function.
1474 (builtin_type): New function.
1475
1476 2004-07-27 Kei Sakamoto <sakamoto.kei@renesas.com>
1477
1478 * remote-m32r-sdi.c: Fix breakpoint bug.
1479 (send_cmd, send_one_arg_cmd, send_two_arg_cmd, send_three_arg_cmd,
1480 recv_char_data, recv_long_data): New functions to replace communication
1481 sequences.
1482
1483 2004-07-26 Michael Chastain <mec.gnu@mindspring.com>
1484
1485 Document PR threads/1650.
1486 * PROBLEMS (Threads): Document problem with many threads
1487
1488 2004-07-26 Andrew Cagney <cagney@gnu.org>
1489
1490 * gdb-mi.el: Move from here ...
1491 * mi/gdb-mi.el: ... to here.
1492
1493 2004-07-26 Andrew Cagney <cagney@gnu.org>
1494
1495 Problem reported by Ashley Pittman <ashley@quadrics.com>.
1496 * main.c (captured_main): When in batch mode always detach.
1497
1498 2004-07-26 Andrew Cagney <cagney@gnu.org>
1499
1500 * MAINTAINERS: Mark the xstormy16, sh64, ns32k, mn10300, mcore,
1501 and h8300 as broken.
1502 * NEWS: END-OF-LIFE frame compatibility module.
1503 * PROBLEMS: For "Stack backtraces", remove powerpc, hppa and mips
1504 specific comments.
1505
1506 2004-07-26 Andrew Cagney <cagney@gnu.org>
1507
1508 * cli/cli-decode.c (deprecated_add_show_from_set): Deprecate.
1509 * xcoffsolib.c (_initialize_xcoffsolib): Update.
1510 * wince.c (_initialize_wince): Update.
1511 * win32-nat.c (_initialize_win32_nat): Update.
1512 * varobj.c (_initialize_varobj): Update.
1513 * valops.c (_initialize_valops): Update.
1514 * utils.c (initialize_utils, initialize_utils): Update.
1515 * tui/tui-win.c (_initialize_tui_win): Update.
1516 * top.c (init_main): Update.
1517 * symfile.c (_initialize_symfile): Update.
1518 * source.c (_initialize_source): Update.
1519 * somsolib.c (_initialize_som_solib): Update.
1520 * solib.c (_initialize_solib): Update.
1521 * solib-frv.c (_initialize_frv_solib): Update.
1522 * serial.c (_initialize_serial): Update.
1523 * ser-go32.c (_initialize_ser_dos, _initialize_ser_dos): Update.
1524 * remote.c (_initialize_remote, _initialize_remote): Update.
1525 * remote-vx.c (_initialize_vx): Update.
1526 * remote-utils.c (_initialize_sr_support): Update.
1527 * remote-sds.c (_initialize_remote_sds): Update.
1528 * remote-mips.c (_initialize_remote_mips): Update.
1529 * remote-e7000.c (_initialize_remote_e7000): Update.
1530 * proc-api.c (_initialize_proc_api): Update.
1531 * printcmd.c: Update.
1532 * parse.c (_initialize_parse): Update.
1533 * pa64solib.c (_initialize_pa64_solib): Update.
1534 * p-valprint.c (_initialize_pascal_valprint): Update.
1535 * monitor.c (_initialize_remote_monitors): Update.
1536 * mips-tdep.c (_initialize_mips_tdep): Update.
1537 * mcore-tdep.c (_initialize_mcore_tdep): Update.
1538 * maint.c (_initialize_maint_cmds): Update.
1539 * lin-lwp.c (_initialize_lin_lwp): Update.
1540 * language.c (_initialize_language): Update.
1541 * kod.c (_initialize_kod): Update.
1542 * infrun.c (set_schedlock_func, _initialize_infrun): Update.
1543 * i386-tdep.c (_initialize_i386_tdep): Update.
1544 * gdbtypes.c (build_gdbtypes, _initialize_gdbtypes): Update.
1545 * gdbarch.sh: Update.
1546 * gdbarch.c: Re-generate.
1547 * gdb-events.sh: Update.
1548 * gdb-events.c: Re-generate.
1549 * frame.c (_initialize_frame): Update.
1550 * exec.c: Update.
1551 * demangle.c (_initialize_demangler): Update.
1552 * dcache.c (_initialize_dcache): Update.
1553 * cris-tdep.c (_initialize_cris_tdep, cris_version_update): Update.
1554 * cp-valprint.c (_initialize_cp_valprint): Update.
1555 * corefile.c (_initialize_core): Update.
1556 * command.h: Update.
1557 * cli/cli-decode.h: Update.
1558 * cli/cli-cmds.c (init_cli_cmds): Update.
1559 * charset.c (_initialize_charset): Update.
1560 * breakpoint.c (_initialize_breakpoint): Update.
1561 * arm-tdep.c (_initialize_arm_tdep_initialize_arm_tdep): Update.
1562 * alpha-tdep.c (_initialize_alpha_tdep): Update.
1563 * aix-thread.c (_initialize_aix_thread): Update.
1564
1565 2004-07-24 Mark Kettenis <kettenis@gnu.org>
1566
1567 Partial fix for PR backtrace/1718.
1568 * i386-tdep.c (i386_analyze_frame_setup): Handle more instructions
1569 that GCC migrates into the prolugue. Don't handle any
1570 instructions that clobber %ebx.
1571
1572 2004-07-23 Andrew Cagney <cagney@gnu.org>
1573
1574 Use regcache_raw_collect instead of regcache_collect.
1575 * regcache.h (regcache_collect): Delete declaration.
1576 * regcache.c (regcache_colect): Delete function.
1577 * win32-nat.c (do_child_store_inferior_registers): Update.
1578 * sol-thread.c (sol_thread_store_registers): Update.
1579 * shnbsd-tdep.c (shnbsd_fill_reg): Update.
1580 * rs6000-nat.c (store_register): Update.
1581 * remote.c (store_register_using_P, remote_store_registers): Update.
1582 * ppcnbsd-tdep.c (ppcnbsd_fill_reg): Update.
1583 * ppc-linux-nat.c (store_altivec_register, store_spe_register)
1584 (fill_vrregset, store_spe_registers, fill_gregset)
1585 (fill_gregset): Update.
1586 * nto-procfs.c (procfs_store_registers): Update.
1587 * mipsnbsd-tdep.c (mipsnbsd_fill_reg): Update.
1588 * mips-linux-tdep.c (fill_gregset, mips64_fill_gregset): Update.
1589 * m68klinux-nat.c (store_register, fill_gregset): Update.
1590 * m68k-tdep.c (fill_gregset): Update.
1591 * infptrace.c (store_register): Update.
1592 * i386-nto-tdep.c (i386nto_regset_fill): Update.
1593 * i386-linux-nat.c (store_register, fill_gregset): Update.
1594 * hppa-linux-nat.c (fill_gregset): Update.
1595 * go32-nat.c (store_register): Update.
1596 * armnbsd-nat.c (store_register, store_regs, store_fp_register)
1597 (store_fp_regs): Update.
1598 * arm-linux-nat.c (store_nwfpe_single, store_nwfpe_double)
1599 (store_nwfpe_extended, store_fpregister, store_fpregs)
1600 (store_register, store_regs, fill_gregset, fill_fpregset): Update.
1601 * alpha-tdep.c (alpha_fill_int_regs, alpha_fill_fp_regs): Update.
1602 * aix-thread.c (fill_gprs64, fill_fprs, fill_sprs64, fill_sprs32)
1603 (store_regs_user_thread, store_regs_kernel_thread): Update.
1604
1605 2004-07-24 Mark Kettenis <kettenis@gnu.org>
1606
1607 * dwarf2-frame.c (struct dwarf2_cie): Delete `addr_size' member.
1608 (decode_frame_entry_1): Use DW_EH_PE_absptr as default for CIE
1609 encoding.
1610 (dwarf2_build_frame_info): Adjust for removal of `addr_size'
1611 member of `struct comp_unit'.
1612
1613 2004-07-23 Andrew Cagney <cagney@gnu.org>
1614
1615 * infrun.c (handle_inferior_event): Separate the STEP_OVER_ALL and
1616 DEPRECATED_IGNORE_HELPER_CALL cases, only #ifdef the latter.
1617
1618 2004-07-23 Martin Hunt <hunt@redhat.com>
1619 Kevin Buettner <kevinb@redhat.com>
1620
1621 * dwarf2-frame.c (execute_cfa_program): Fix typo in which the
1622 alignment was being added to the offset instead of multiplied.
1623
1624 2004-07-23 Mark Kettenis <kettenis@gnu.org>
1625
1626 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Adjust for
1627 changed signal trampoline in OpenBSD 3.5-current.
1628
1629 * sparc64nbsd-nat.c: Include "regcache.h", <sys/types.h>,
1630 <machine/pcb.h> and "bsd-kvm.h".
1631 (sparc64nbsd_supply_pcb): New function.
1632 (_initialize_sparc64nbsd_nat): Renamed from
1633 _initialize_sparcnbsd_nat. Enable libkvm interface.
1634 * Makefile.in (sparc64nbsd-nat.o): Update dependencies.
1635 * config/sparc/nbsd64.mh (NATDEPFILES): Add bsd-kvm.o
1636 (LOADLIBES): New variable.
1637
1638 * config/sparc/obsd64.mt (TDEPFILES): Add sparcobsd-tdep.o.
1639
1640 * sparcnbsd-nat.c (sparc32nbsd_supply_pcb): Fix typo in comment.
1641
1642 2004-07-21 Andrew Cagney <cagney@gnu.org>
1643
1644 Use regcache_raw_supply instead of supply_register.
1645 * regcache.h (supply_register): Delete declaration.
1646 * regcache.c (supply_register): Delete function.
1647 * wince.c (do_child_fetch_inferior_registers): Update.
1648 * win32-nat.c (do_child_fetch_inferior_registers)
1649 (fetch_elf_core_registers): Update.
1650 * v850ice.c (v850ice_fetch_registers): Update.
1651 * thread-db.c (thread_db_store_registers): Update.
1652 * sol-thread.c (sol_thread_store_registers): Update.
1653 * shnbsd-tdep.c (shnbsd_supply_reg): Update.
1654 * rs6000-nat.c (fetch_register): Update.
1655 * rom68k-rom.c (rom68k_supply_one_register): Update.
1656 * remote.c (remote_wait, remote_async_wait): Update.
1657 * remote-st.c (get_hex_regs): Update.
1658 * remote-sim.c (gdbsim_fetch_register): Update.
1659 * remote-sds.c (sds_fetch_registers): Update.
1660 * remote-rdp.c (remote_rdp_fetch_register): Update.
1661 * remote-rdi.c (arm_rdi_fetch_registers): Update.
1662 * remote-mips.c (mips_wait, mips_fetch_registers): Update.
1663 * remote-m32r-sdi.c (m32r_fetch_register): Update.
1664 * remote-hms.c (init_hms_cmds): Update.
1665 * remote-est.c (init_est_cmds): Update.
1666 * remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
1667 (e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
1668 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
1669 * ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
1670 (fetch_register, supply_vrregset, supply_vrregset)
1671 (fetch_spe_registers): Update.
1672 * ppc-bdm.c (bdm_ppc_fetch_registers): Update.
1673 * monitor.c (monitor_supply_register): Update.
1674 * mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
1675 * mipsnbsd-tdep.c (mipsnbsd_supply_reg)
1676 (mipsnbsd_supply_fpreg): Update.
1677 * mips-nat.c (fetch_inferior_registers)
1678 (fetch_core_registers): Update.
1679 * mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
1680 (supply_fpregset, mips64_supply_gregset)
1681 (mips64_supply_fpregset): Update.
1682 * m68klinux-nat.c (fetch_register, supply_gregset)
1683 (supply_fpregset): Update.
1684 * m68k-tdep.c (supply_gregset, supply_fpregset): Update.
1685 * m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
1686 * lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
1687 * irix5-nat.c (supply_gregset, supply_fpregset): Update.
1688 * infptrace.c (fetch_register): Update.
1689 * ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
1690 * ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
1691 * i386gnu-nat.c (fetch_fpregs, supply_gregset)
1692 (gnu_fetch_registers, gnu_store_registers): Update.
1693 * i386-nto-tdep.c (i386nto_supply_gregset): Update.
1694 * i386-linux-nat.c (fetch_register, supply_gregset)
1695 (dummy_sse_values): Update.
1696 * hpux-thread.c (hpux_thread_fetch_registers): Update.
1697 * hppah-nat.c (fetch_register): Update.
1698 * hppa-linux-nat.c (fetch_register, supply_gregset)
1699 (supply_fpregset): Update.
1700 * go32-nat.c (fetch_register): Update.
1701 * dve3900-rom.c (fetch_bitmapped_register)
1702 (_initialize_r3900_rom): Update.
1703 * cris-tdep.c (supply_gregset): Update.
1704 * abug-rom.c (init_abug_cmds): Update.
1705 * core-aout.c (fetch_core_registers): Update.
1706 * armnbsd-nat.c (supply_gregset, supply_fparegset)
1707 (fetch_register, fetch_fp_register): Update.
1708 * arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
1709 (fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
1710 (fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
1711 * alphanbsd-tdep.c (fetch_core_registers): Update.
1712 * alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
1713 * alpha-nat.c (fetch_osf_core_registers)
1714 (fetch_osf_core_registers, fetch_osf_core_registers): Update.
1715 * aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
1716 (supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
1717
1718 2004-07-21 Andrew Cagney <cagney@gnu.org>
1719
1720 * PROBLEMS: Mention breakpoints/1702.
1721 * NEWS: For signal trampolines, cite s390 GNU/Linux as a system
1722 that is known to work.
1723
1724 2004-07-21 Andrew Cagney <cagney@gnu.org>
1725
1726 * config/mips/tm-mips.h (DEPRECATED_IGNORE_HELPER_CALL): Deprecate.
1727 * mips-tdep.c (mips_dump_tdep, mips_ignore_helper): Update.
1728 * infrun.c (DEPRECATED_IGNORE_HELPER_CALL): Delete macro.
1729 (handle_inferior_event): Wrap call to deprecated
1730 IGNORE_HELPER_CALL in #ifdef.
1731 * config/mips/tm-nbsd.h: Update.
1732
1733 2004-07-20 Jim Blandy <jimb@redhat.com>
1734
1735 * rs6000-tdep.c (rs6000_gdbarch_init): The register set used for
1736 bfd_mach_ppc has no segment registers.
1737
1738 Include PowerPC SPR numbers for special-purpose registers.
1739 * rs6000-tdep.c (struct reg): Add new member, 'spr_num'.
1740 (R, R4, R8, R16, F, P, R32, R64, R0): Include value for
1741 new member in initializer.
1742 (S, S4, SN4, S64): New macros for defining special-purpose
1743 registers.
1744 (PPC_UISA_SPRS, PPC_UISA_NOFP_SPRS, PPC_OEA_SPRS, registers_power,
1745 registers_403, registers_403GC, registers_505, registers_860,
1746 registers_601, registers_602, registers_603, registers_604,
1747 registers_750, registers_e500): Use them.
1748
1749 * rs6000-tdep.c (rs6000_gdbarch_init): Delete variable 'power';
1750 replace references with expression used to initialize variable.
1751
1752 2004-07-20 Andrew Cagney <cagney@gnu.org>
1753
1754 * breakpoint.c (deprecated_read_memory_nobpt): Rename
1755 read_memory_nobpt.
1756 * sparc-linux-tdep.c (sparc_linux_sigtramp_start): Update.
1757 * s390-tdep.c (s390_readinstruction, s390_in_function_epilogue_p)
1758 (s390_sigtramp_frame_sniffer): Update.
1759 * mn10300-tdep.c (mn10300_analyze_prologue): Update.
1760 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Update.
1761 * mips-tdep.c (mips_fetch_instruction, mips16_fetch_instruction)
1762 (mips32_fetch_instruction): Update.
1763 * mcore-tdep.c (get_insn): Update.
1764 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Update.
1765 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Update.
1766 * i386ly-tdep.c (i386lynx_saved_pc_after_call): Update.
1767 * i386-linux-tdep.c (i386_linux_sigtramp_start)
1768 (i386_linux_rt_sigtramp_start): Update.
1769 * i386-linux-nat.c (child_resume): Update.
1770 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Update.
1771 * hppa-linux-tdep.c (insns_match_pattern): Update.
1772 * gdbcore.h: Update.
1773 * frv-tdep.c (frv_gdbarch_adjust_breakpoint_address): Update.
1774 * frame.c (safe_frame_unwind_memory): Update.
1775 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Update.
1776 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Update.
1777 * alpha-tdep.c (alpha_read_insn): Update.
1778
1779 2004-07-20 Andrew Cagney <cagney@gnu.org>
1780
1781 * tramp-frame.h (struct tramp_frame): Change "insn" to a struct
1782 containing both bytes and mask. Add "frame_type".
1783 * tramp-frame.c (tramp_frame_start): Update.
1784 (tramp_frame_prepend_unwinder): Update.
1785 * mips-linux-tdep.c (mips_linux_o32_sigframe)
1786 (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
1787 (mips_linux_n64_rt_sigframe): Update. Make "static const".
1788 * ppcnbsd-tdep.c (tramp_frame ppcnbsd_sigtramp): Update.
1789
1790 2004-07-19 Eli Zaretskii <eliz@gnu.org>
1791
1792 * config/djgpp/fnchange.lst: Add remapping for bfd/elf32-cr*.c,
1793 bfd/elf32-sh-symbian.c, bfd/elf32-sh64-com.c,
1794 sim/testsuite/sim/mips/hilo-hazard-[123].s, and
1795 sim/testsuite/sim/mips/fpu64-ps-sb1.s.
1796
1797 2004-07-17 Andrew Cagney <cagney@gnu.org>
1798
1799 * NEWS, PROBLEMS: Update for 6.2.
1800
1801 * README: Update to 6.2.
1802
1803 * utils.c (xvasprintf): Call xstrvprintf.
1804
1805 * parse.c: Update copyright.
1806 (null_post_parser): Eliminate ARGSUSED.
1807
1808 * ppc-linux-nat.c (store_spe_registers): Eliminate K&R C.
1809 * tui/tui-win.c (tui_get_cmd_list): Ditto.
1810 * symfile-mem.c (_initialize_symfile_mem): Ditto.
1811
1812 * ppc-linux-tdep.c (ppc_linux_init_abi): Add [sic] to Linux.
1813 * ppc-linux-nat.c: Use "Linux kernel".
1814 * hppa-linux-tdep.c: Use GNU/Linux.
1815 * hppa-linux-nat.c: Use GNU/Linux.
1816 * dwarfread.c: Add [sic] to use of Linux.
1817
1818 * hppa-linux-nat.c: Do not include <string.h>.
1819 (supply_fpregset): Remove "register" attribute.
1820
1821 * solib-frv.c (fetch_loadmap): Use xfree, not free.
1822
1823 2004-07-17 Mark Kettenis <kettenis@gnu.org>
1824
1825 * configure.in: Define _MSE_INT_H on Solaris 9 too.
1826 * configure, config.in: Regenerated.
1827
1828 * vaxbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
1829 "bsd-kvm.h".
1830 (vaxbsd_supply_pcb): New function.
1831 (_initialize_vaxbsd_nat): New prototype and function.
1832 * config/vax/nbsdaout.mh (NATDEPFILES): Add bsd-kvm.o, solib.o and
1833 solib-sunos.o.
1834 (LOADLIBES): New variable.
1835 * config/vax/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
1836 (LOADLIBES): New variable.
1837 * config/vax/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
1838 (LOADLIBES): New variable.
1839 * Makefile.in (vaxbsd-nat.o): Update dependencies.
1840
1841 2004-07-16 Andrew Cagney <cagney@gnu.org>
1842
1843 * defs.h (event_loop_p): Replace variable declaration with macro,
1844 always 1.
1845 * main.c (captured_main): Delete options "-async" and "-noasync".
1846 (event_loop_p): Delete variable.
1847 * NEWS: Mention that "-async" and "-noasync" were removed.
1848
1849 2004-07-16 Andrew Cagney <cagney@gnu.org>
1850
1851 * remote-m32r-sdi.c: Re-indent.
1852
1853 2004-07-16 Jim Blandy <jimb@redhat.com>
1854
1855 * ppc-tdep.h (ppc_spr_asr): Add missing OEA SPR.
1856 (ppc_spr_mi_dbcam, ppc_spr_mi_dbram0, ppc_spr_mi_dbram1)
1857 (ppc_spr_md_cam, ppc_spr_md_ram0, ppc_spr_md_ram1): Add
1858 missing MPC823 SPRs.
1859 (ppc_spr_m_twb): Renamed from ppc_spr_md_twb; the old name was
1860 incorrect. (This was corrected in GDB's register name tables on
1861 2004-07-14.)
1862
1863 * rs6000-tdep.c (registers_602): Correct register name: "esassr"
1864 should be "esasrr" ("ESA Save and Restore Register").
1865
1866 2004-07-16 Andrew Cagney <cagney@gnu.org>
1867
1868 * infrun.c (insert_step_resume_breakpoint): Delete gdb_assert
1869 calls, no longer applicable. Update comments and rename parameter
1870 "step_frame" to "return_frame".
1871
1872 2004-07-16 Andrew Cagney <cagney@gnu.org>
1873
1874 * frame.c (fprint_field): New function.
1875 (fprint_frame_id): Use fprint_field.
1876
1877 2004-07-15 Joel Brobecker <brobecker@gnat.com>
1878
1879 * ada-lang.c (ada_language_defn): Remove commented out code.
1880
1881 2004-07-15 Jim Blandy <jimb@redhat.com>
1882
1883 * ppc-tdep.h (struct gdbarch_tdep): New member: ppc_sr0_regnum.
1884 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it.
1885
1886 2004-07-14 Jim Blandy <jimb@redhat.com>
1887
1888 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): Delete; unused.
1889
1890 * ppc-tdep.h (ppc_num_vrs): New enum constant.
1891
1892 * ppc-tdep.h (ppc_num_srs): New enum constant.
1893
1894 * ppc-tdep.h (ppc_spr_mq, ppc_spr_xer, ppc_spr_rtcu, ppc_spr_rtcl)
1895 (ppc_spr_lr, ppc_spr_ctr, ppc_spr_cnt, ppc_spr_dsisr, ppc_spr_dar)
1896 (ppc_spr_dec, ppc_spr_sdr1, ppc_spr_srr0, ppc_spr_srr1)
1897 (ppc_spr_eie, ppc_spr_eid, ppc_spr_nri, ppc_spr_sp, ppc_spr_cmpa)
1898 (ppc_spr_cmpb, ppc_spr_cmpc, ppc_spr_cmpd, ppc_spr_icr)
1899 (ppc_spr_der, ppc_spr_counta, ppc_spr_countb, ppc_spr_cmpe)
1900 (ppc_spr_cmpf, ppc_spr_cmpg, ppc_spr_cmph, ppc_spr_lctrl1)
1901 (ppc_spr_lctrl2, ppc_spr_ictrl, ppc_spr_bar, ppc_spr_vrsave)
1902 (ppc_spr_sprg0, ppc_spr_sprg1, ppc_spr_sprg2, ppc_spr_sprg3)
1903 (ppc_spr_ear, ppc_spr_tbl, ppc_spr_tbu, ppc_spr_pvr)
1904 (ppc_spr_spefscr, ppc_spr_ibat0u, ppc_spr_ibat0l, ppc_spr_ibat1u)
1905 (ppc_spr_ibat1l, ppc_spr_ibat2u, ppc_spr_ibat2l, ppc_spr_ibat3u)
1906 (ppc_spr_ibat3l, ppc_spr_dbat0u, ppc_spr_dbat0l, ppc_spr_dbat1u)
1907 (ppc_spr_dbat1l, ppc_spr_dbat2u, ppc_spr_dbat2l, ppc_spr_dbat3u)
1908 (ppc_spr_dbat3l, ppc_spr_ic_cst, ppc_spr_ic_adr, ppc_spr_ic_dat)
1909 (ppc_spr_dc_cst, ppc_spr_dc_adr, ppc_spr_dc_dat, ppc_spr_dpdr)
1910 (ppc_spr_dpir, ppc_spr_immr, ppc_spr_mi_ctr, ppc_spr_mi_ap)
1911 (ppc_spr_mi_epn, ppc_spr_mi_twc, ppc_spr_mi_rpn, ppc_spr_mi_cam)
1912 (ppc_spr_mi_ram0, ppc_spr_mi_ram1, ppc_spr_md_ctr, ppc_spr_m_casid)
1913 (ppc_spr_md_ap, ppc_spr_md_epn, ppc_spr_md_twb, ppc_spr_md_twc)
1914 (ppc_spr_md_rpn, ppc_spr_m_tw, ppc_spr_md_dbcam, ppc_spr_md_dbram0)
1915 (ppc_spr_md_dbram1, ppc_spr_ummcr0, ppc_spr_upmc1, ppc_spr_upmc2)
1916 (ppc_spr_usia, ppc_spr_ummcr1, ppc_spr_upmc3, ppc_spr_upmc4)
1917 (ppc_spr_zpr, ppc_spr_pid, ppc_spr_mmcr0, ppc_spr_pmc1)
1918 (ppc_spr_sgr, ppc_spr_pmc2, ppc_spr_dcwr, ppc_spr_sia)
1919 (ppc_spr_mmcr1, ppc_spr_pmc3, ppc_spr_pmc4, ppc_spr_sda)
1920 (ppc_spr_tbhu, ppc_spr_tblu, ppc_spr_dmiss, ppc_spr_dcmp)
1921 (ppc_spr_hash1, ppc_spr_hash2, ppc_spr_icdbdr, ppc_spr_imiss)
1922 (ppc_spr_esr, ppc_spr_icmp, ppc_spr_dear, ppc_spr_rpa)
1923 (ppc_spr_evpr, ppc_spr_cdbcr, ppc_spr_tsr, ppc_spr_602_tcr)
1924 (ppc_spr_403_tcr, ppc_spr_ibr, ppc_spr_pit, ppc_spr_esasrr)
1925 (ppc_spr_tbhi, ppc_spr_tblo, ppc_spr_srr2, ppc_spr_sebr)
1926 (ppc_spr_srr3, ppc_spr_ser, ppc_spr_hid0, ppc_spr_dbsr)
1927 (ppc_spr_hid1, ppc_spr_iabr, ppc_spr_dbcr, ppc_spr_iac1)
1928 (ppc_spr_dabr, ppc_spr_iac2, ppc_spr_dac1, ppc_spr_dac2)
1929 (ppc_spr_l2cr, ppc_spr_dccr, ppc_spr_ictc, ppc_spr_iccr)
1930 (ppc_spr_thrm1, ppc_spr_pbl1, ppc_spr_thrm2, ppc_spr_pbu1)
1931 (ppc_spr_thrm3, ppc_spr_pbl2, ppc_spr_fpecr, ppc_spr_lt)
1932 (ppc_spr_pir, ppc_spr_pbu2): New enum constants for PowerPC
1933 special-purpose register numbers.
1934
1935 * rs6000-tdep.c (registers_860): Correct register name. (No PPC
1936 manual mentions 'md_twb', but many mention 'm_twb', and at that
1937 point in the register list.)
1938
1939 2004-07-14 Andrew Cagney <cagney@gnu.org>
1940
1941 * utils.c (internal_warning_problem): Fix typo, "internal-warning"
1942 instead of "internal-error".
1943
1944 2004-07-10 Joel Brobecker <brobecker@gnat.com>
1945
1946 * hppa-hpux-tdep.c: Fix a compilation failure due to a comment
1947 that was inserted inside a comment.
1948
1949 2004-07-10 Randolph Chung <tausq@debian.org>
1950
1951 * hppa-hpux-tdep.c (hppa_hpux_som_find_global_pointer): New
1952 function.
1953 (hppa_hpux_push_dummy_code): New function.
1954 (hppa_hpux_init_abi): Set push_dummy_code and call_dummy_location.
1955 Set find_global_pointer method.
1956
1957 2004-07-10 Mark Kettenis <kettenis@gnu.org>
1958
1959 * NEWS: Mention BSD libkvm interface.
1960
1961 2004-07-10 Michael Snyder <msnyder@redhat.com>
1962
1963 * symfile.c (generic_load): Comment typo.
1964 * stack.c (get_selected_block): Ditto.
1965 * regcache.c (regcache_cooked_read): Ditto.
1966 * monitor.c (monitor_debug): Ditto.
1967 * mips-tdep.c (mips_read_pc): Ditto.
1968 * i386-linux-nat.c (ps_get_thread_area): Ditto.
1969 * gdb_mbuild.sh: Ditto.
1970 * gdbarch.sh: Ditto.
1971 * gdbarch.h: Ditto.
1972
1973 2004-07-09 Paul N. Hilfinger <Hilfinger@gnat.com>
1974
1975 * ada-tasks.c: Remove file.
1976
1977 Remove ARI problems:
1978
1979 * ada-exp.y (write_var_from_sym): Reformat to put operator at
1980 beginning of line.
1981
1982 * ada-lang.c (MAX_OF_SIZE): Rename max_of_size.
1983 Add comment.
1984 Add comment concerning MAX_OF_TYPE and MIN_OF_TYPE.
1985 (MIN_OF_SIZE): Rename min_of_size. Add comment.
1986 (UMAX_OF_SIZE): Renmae umax_of_size. Add comment.
1987 (UMIN_OF_SIZE): Remove.
1988 (max_of_type): New function to replace orphan macro in gdbtypes.h
1989 (min_of_type): Ditto.
1990 (discrete_type_high_bound): Use max_of_type.
1991 (discrete_type_low_bound): Use min_of_type.
1992 (possible_user_operator_p): Move operator to beginning of line.
1993 (ada_is_variant_part): Ditto.
1994 (ensure_lval): Rewrite to avoid deprecated operations.
1995 (ada_finish_decode_line_1): Use gdbarch_convert_from_func_ptr_addr
1996 rather than adding DEPRECATED_FUNCTION_START_OFFSET.
1997 (ada_enum_name): Remove assignments in 'if' statements.
1998 (build_ada_types): Add gdbarch parameter.
1999 (_initialize_ada_language): Replace deprecated_register_gdbarch_swap
2000 with gdbarch_data_register_post_init.
2001 Use add_setshow_uinteger_cmd rather than add_set_cmd and
2002 add_show_from_set.
2003
2004 * ada-valprint.c (inspect_it): Remove declaration.
2005 (repeat_count_threshold): Remove declaration.
2006 (ada_print_floating): Remove assignments in 'if' statements.
2007 (print_str): Move operator to beginning of line.
2008
2009 2004-07-08 Jim Blandy <jimb@redhat.com>
2010
2011 * rs6000-tdep.c (registers_powerpc_nofp): Unused; deleted.
2012
2013 2004-07-08 Bob Rossi <bob@brasko.net>
2014
2015 * symtab.c (lookup_symtab): check return value of symtab_to_fullname
2016
2017 2004-07-06 Jeff Johnston <jjohnstn@redhat.com>
2018
2019 * language.h (struct_language_defn): Add new function pointer:
2020 la_class_name_from_physname. Also add new prototype for
2021 language_class_name_from_physname.
2022 * language.c (language_class_name_from_physname): New function.
2023 (unk_lang_class_name): Ditto.
2024 (unknown_language_defn, auto_language_defn): Change
2025 to add unk_lang_class_name function pointer for
2026 la_class_name_from_physname.
2027 (local_language_defn): Ditto.
2028 * dwarf2read.c (guess_structure_name): Change to call
2029 language_class_name_from_physname.
2030 (determine_class_name): Ditto.
2031 * cp-support.c (class_name_from_physname): Renamed.
2032 (cp_class_name_from_physname): New name of function.
2033 * cp-support.h: Ditto.
2034 * c-lang.c (c_language_defn): Change to add NULL
2035 for class_name_from_physname function pointer.
2036 (cplus_language_defn): Change to add cp_class_name_from_physname.
2037 * jv-lang.c (java_class_name_physname): New function.
2038 (java_find_last_component): New static routine.
2039 (java_language_defn): Add java_class_name_from_physname pointer.
2040 * ada-lang.c (ada_language_defn): Change to add NULL
2041 for class_name_from_physname function pointer.
2042 * f-lang.c (f_language_defn): Ditto.
2043 * m2-lang.c (m2_language_defn): Ditto.
2044 * objc-lang.c (objc_language_defn): Ditto.
2045 * p-lang.c (pascal_language_defn): Ditto.
2046 * scm-lang.c (scm_language_defn): Ditto.
2047
2048 2004-07-06 Andrew Cagney <cagney@gnu.org>
2049
2050 Patch from Bart Robinson.
2051 * corelow.c (core_open): Add variable "flags", or in O_LARGEFILE.
2052 (O_LARGEFILE): Define to 0, if not defined.
2053
2054 2004-07-03 Mark Kettenis <kettenis@gnu.org>
2055
2056 * m68kbsd-nat.c: Include "gdbcore.h", <sys/types.h>,
2057 <machine/pcb.h> and "bsd-kvm.h".
2058 (PCB_REGS_FP, PCB_REGS_SP): Define if not already defined.
2059 (m68kbsd_supply_pcb): New function.
2060 (_initialize_m68kbsd_nat): New prototype and function.
2061 * Makefile.in (m68kbsd-nat.o): Update dependencies.
2062 * config/m68k/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
2063 (LOADLIBES): New variable.
2064 * config/m68k/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
2065 (LOADLIBES): New variable.
2066
2067 * bsd-kvm.c (bsd_kvm_cmdlist): Remove unecessary initialization.
2068
2069 2004-07-03 Mark Kettenis <kettenis@gnu.org>
2070
2071 * bsd-kvm.c: Include "cli/cli-cmds.h", "command.h", "value.h" and
2072 <sys/proc.h>.
2073 (bsd_kvm_cmdlist): New variable.
2074 (bsd_kvm_cmd, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd): New functions.
2075 (bsd_kvm_add_target): Register "kvm" command prefix, "kvm pcb"
2076 command and "kvm proc" command.
2077 * Makefile.in (bsd-kvm.o): Update dependencies.
2078
2079 2004-07-02 Mark Kettenis <kettenis@gnu.org>
2080
2081 * osabi.c: Update copyright year.
2082 (generic_elf_osabi_sniffer): Tweak comment. Look for OS-specific
2083 notes if EI_OSABI is set to ELFOSABI_HPUX.
2084
2085 2004-07-01 Michael Snyder <msnyder@redhat.com>
2086
2087 * win32-nat.c (core_dll_symbols_add): Re-indent a small section
2088 that seems to have gotten whacked out of line.
2089
2090 2004-07-01 Mark Kettenis <kettenis@gnu.org>
2091
2092 * dbxread.c (process_one_symbol) [PCC_SOL_BROKEN]: Remove dead
2093 code.
2094
2095 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
2096
2097 * ada-lang.c (decode_packed_array): Minor change to comment.
2098 (ada_value_slice_ptr): New function.
2099 (ada_value_slice): New function.
2100 (ada_evaluate_subexp): Remove XVS-suffix code from subscripting
2101 test. Don't know why it is there.
2102 Change slice code to use ada_value_slice_ptr and ada_value_slice, and
2103 to avoid dereferencing huge arrays from which one is slicing.
2104 (empty_array): Correct to return an array rather than
2105 a subrange value.
2106 * ada-valprint.c (print_optional_low_bound): Don't print lower bound
2107 on empty arrays (let'em use 'FIRST instead).
2108
2109 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
2110
2111 Address complaints from gdb_ari.sh:
2112
2113 * ada-exp.y: Include gdb_string.h rather than string.h.
2114 (convert_char_literal): Reformat declaration.
2115 * ada-lang.h: Include opaque struct declaration for struct frame_info.
2116 * ada-lex.l: Change use of free to xfree (the macro would do so
2117 anyway, but this is harmless).
2118 Include gdb_string.h rather than string.h.
2119 * ada-valprint.c (ada_val_print_stub): Change PTR => void*.
2120
2121 * ada-lang.c (parse): Remove K&Rism in parameter list.
2122 (is_name_suffix): Correct Linux => GNU/Linux in comment.
2123
2124 2004-06-30 Mark Kettenis <kettenis@gnu.org>
2125
2126 * dbxread.c (process_one_symbol) [SUN_FIXED_LBRAC_BUG]: Remove
2127 dead code.
2128
2129 2004-06-30 Mark Kettenis <kettenis@gnu.org>
2130
2131 * alphabsd-nat.c: Update copyright year.
2132 (getregs_supplies): Use ALPHA_PC_REGNUM instead of PC_REGNUM.
2133
2134 2004-06-29 Joel Brobecker <brobecker@gnat.com>
2135
2136 * i386-cygwin-tdep.c (i386_cygwin_skip_trampoline_code): New function.
2137 (i386_cygwin_in_solib_call_trampoline): New function.
2138 (i386_cygwin_init_abi): Initialize the in_solib_call_trampoline
2139 and skip_trampoline_code gdbarch methods.
2140
2141 2004-06-29 Jim Blandy <jimb@redhat.com>
2142
2143 * Makefile.in (gdb_callback_h): Renamed from callback_h to the
2144 name actually used in the dependency lists.
2145
2146 2004-06-29 Randolph Chung <tausq@debian.org>
2147
2148 * NEWS (New native configurations): Mention GNU/Linux/hppa.
2149
2150 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
2151
2152 * win32-nat.c (child_pid_to_exec_file): New function.
2153 (init_child_ops): Add child_pid_to_exec_file as to_pid_to_exec_file
2154 functionality.
2155
2156 2004-06-28 Andrew Cagney <cagney@gnu.org>
2157
2158 * defs.h (xstrvprintf): Declare.
2159 * utils.c (xstrvprintf): New function.
2160 (internal_vproblem, xstrprintf, xasprintf)
2161 (vfprintf_maybe_filtered, vfprintf_unfiltered): Use xstrvprintf.
2162 * serial.c (serial_printf): Ditto.
2163 * complaints.c (vcomplaint): Ditto.
2164
2165 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
2166
2167 * infcmd.c (attach_command): Move call to target_terminal_inferior
2168 behind loading symbol table.
2169
2170 2004-06-28 Andrew Cagney <cagney@gnu.org>
2171
2172 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Revert 2004-06-24
2173 change - add back extern deprecated_ui_loop_hook declaration.
2174
2175 2004-06-28 Andrew Cagney <cagney@gnu.org>
2176
2177 * xcoffsolib.c (xcoff_solib_address): Replace xasprintf with
2178 xstrprintf.
2179 * varobj.c (varobj_gen_name, create_child, c_name_of_child)
2180 (c_value_of_variable): Ditto.
2181 * utils.c (internal_vproblem): Ditto.
2182 * solib-aix5.c (build_so_list_from_mapfile): Ditto.
2183 * remote.c (add_packet_config_cmd): Ditto.
2184 * remote-rdp.c (rdp_set_command_line): Ditto.
2185 * regcache.c (regcache_dump): Ditto.
2186 * frv-tdep.c (new_variant, new_variant): Ditto.
2187 * fbsd-proc.c (child_pid_to_exec_file): Ditto.
2188 (fbsd_find_memory_regions): Ditto.
2189 * breakpoint.c (create_thread_event_breakpoint)
2190 (create_breakpoints): Ditto.
2191 * aix-thread.c (aix_thread_pid_to_str): Ditto.
2192 * ada-lang.c (is_package_name): Ditto. Also delete xmalloc call.
2193
2194 2004-06-28 Joel Brobecker <brobecker@gnat.com>
2195
2196 * ada-lang.c: Re-indent file, with some massaging to help indent
2197 a bit when the result is otherwise really too ugly.
2198
2199 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
2200
2201 * frame.h (struct frame_id): Change bit field type of stack_addr_p,
2202 code_addr_p and special_addr_p to 'unsigned int'.
2203
2204 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2205
2206 * i386v4-nat.c: Update copyright year and tweak comment.
2207 (regmap): Remove trailing comma.
2208 (supply_gregset): Rename local variable i to regnum. Call
2209 regcache_raw_supply instead of supply_register.
2210 (fill_gregset): Rename argument regno to regnum. Call
2211 regcache_raw_collect instead of regcache_collect.
2212
2213 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
2214
2215 * frame.h (struct frame_id): New fields stack_addr_p, code_addr_p
2216 and special_addr_p.
2217 (frame_id_build, frame_id_build_special): Update comments.
2218 (frame_id_build_wild): New prototype.
2219 * frame.c (frame_id_build, frame_id_build_special): Fill in new
2220 struct frame_id fields.
2221 (frame_id_build_wild): New function.
2222 (frame_id_eq, frame_id_inner): Use new struct frame_id fields.
2223
2224 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2225
2226 * config/djgpp/fnchange.lst: Add entries for hppabsd-nat.c and
2227 hppabsd-tdep.c.
2228
2229 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2230
2231 * ada-lang.c: Minor reformatting to conform to GNU coding standards.
2232
2233 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2234
2235 * ada-lang.c: Re-indent file.
2236
2237 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2238
2239 * ada-lang.c (symtab_symbol_info): Remove unused declaration.
2240 (no_symtab_msg): Likewise.
2241
2242 2004-06-27 Andreas Schwab <schwab@suse.de>
2243
2244 * source.c: Fix whitespace.
2245
2246 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2247
2248 * configure.in: Include <sys/param.h> for td_pcb test.
2249 * configure: Regenerated.
2250
2251 * i386nbsd-nat.c: New file.
2252 * Makefile.in (ALLDEPFILES): Add i386nbsd-nat.c, i386nbsd-tdep.c,
2253 i386obsd-nat.c and i386obsd-tdep.c.
2254 (i386nbsd-nat.o): New dependency.
2255 * config/i386/obsd.mh (NATDEPFILES): Add i386nbsd-nat.o and
2256 bsd-kvm.o.
2257 (LOADLIBES): New variable.
2258 * config/i386/nbsdelf.mh (NATDEPFILES): Add i386nbsd-nat.o and
2259 bsd-kvm.o.
2260 (LOADLIBES): New variable.
2261
2262 * config/i386/fbsd64.mh (NATDEPFILES): Add bsd-kvm.o.
2263 (LOADLIBES): New variable.
2264
2265 * bsd-kvm.c (bsd_kvm_fetch_registers): Directly return after
2266 fetching from BSD_KVM_PADDR. Correctly lookup address for
2267 "_thread0".
2268
2269 * amd64fbsd-nat.c: Include <sys/types.h, <machine/pcb.h> and
2270 "bsd-kvm.h".
2271 (amd64fbsd_supply_pcb): New funcion.
2272 (_initialize_amd64fbsd_nat): Enable libkvm interface.
2273
2274 2004-06-27 <david@streamline-computing.com>
2275
2276 Partial fix for PR cli/1056.
2277 * valarith.c: Check for zero in division and remainder
2278 evaluation.
2279
2280 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2281
2282 * i387-tdep.c: Remove excessive whitespace.
2283
2284 2004-06-26 Andrew Cagney <cagney@gnu.org>
2285
2286 * gdb-events.sh (deprecated_set_gdb_event_hooks): Deprecated.
2287 * gdb-events.h, gdb-events.c: Re-generate.
2288 * tui/tui-hooks.c (tui_install_hooks): Update.
2289 (tui_remove_hooks): Update.
2290 * mi/mi-cmd-break.c (mi_cmd_break_insert): Update.
2291
2292 2004-06-26 Mark Kettenis <kettenis@gnu.org>
2293
2294 * amd64fbsd-nat.c: Don't include <sys/procfs.h> and "gregset.h".
2295 (gregset_t, fpregset_t): Remove typedefs.
2296 (REG_OFFSET): Rename argument.
2297 (amd64bsd_r_reg_offset): Rename from reg_offset.
2298 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
2299 Remove functions.
2300 (_initialize_amd64fbsd_nat): Use amd64fbsd64_r_reg_offset instead
2301 of reg_offset.
2302 * Makefile.in (amd64fbsd-nat.o): Update dependencies.
2303
2304 * amd64-nat.c (amd64_supply_native_gregset): Fix comment.
2305
2306 * vax-tdep.c: Tweak comment.
2307
2308 Add OpenBSD/hppa support.
2309 * NEWS (New native configurations): Mention OpenBSD/hppa.
2310 * hppabsd-nat.c, hppabsd-tdep.c, config/pa/obsd.mh,
2311 config/pa/obsd.mt, config/pa/nm-obsd.h, config/pa/tm-bsd.h: New
2312 files.
2313 * Makefile.in (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
2314 (hppabsd-nat.o, hppabsd-tdep.c): New dependencies.
2315 * configure.host: Add hppa*-*-openbsd*.
2316 * configure.tgt: Add hppa*-*-openbsd*.
2317
2318 2004-06-25 Andrew Cagney <cagney@gnu.org>
2319
2320 * defs.h (deprecated_ui_loop_hook): Deprecated.
2321 * wince.c (child_wait): Update.
2322 * win32-nat.c (child_wait): Update.
2323 * v850ice.c (v850ice_wait): Update.
2324 * top.c (deprecated_ui_loop_hook): Update.
2325 * serial.h: Update.
2326 * ser-unix.c (do_hardwire_readchar, do_hardwire_readchar)
2327 (do_unix_readchar): Update.
2328 * ser-tcp.c (net_open): Update.
2329 * remote-sim.c (gdb_os_poll_quit): Update.
2330 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Update.
2331
2332 2004-06-24 Andrew Cagney <cagney@gnu.org>
2333
2334 * defs.h (deprecated_pre_add_symbol_hook)
2335 (deprecated_post_add_symbol_hook): Deprecated.
2336 * symfile.c (symbol_file_add_with_addrs_or_offsets)
2337 (symbol_file_add_with_addrs_or_offsets): Update references.
2338
2339 2004-06-24 Andrew Cagney <cagney@gnu.org>
2340
2341 * defs.h (post_add_symbol_hook, pre_add_symbol_hook)
2342 (ui_loop_hook, selected_frame_level_changed_hook): Declare.
2343 * wince.c (ui_loop_hook): Delete extern declaration.
2344 * win32-nat.c (ui_loop_hook): Delete extern declaration..
2345 * v850ice.c (ui_loop_hook): Delete extern declaration..
2346 * ser-unix.c (ui_loop_hook): Delete extern declaration..
2347 * ser-tcp.c (ui_loop_hook): Delete extern declaration..
2348 * remote-sim.c (ui_loop_hook): Delete extern declaration..
2349 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Delete extern.
2350 ui_loop_hook declaration.
2351
2352 2004-06-24 Andrew Cagney <cagney@gnu.org>
2353
2354 * objfiles.h (struct entry_info): Delete entry_func_lowpc and
2355 entry_func_highpc fields.
2356 * objfiles.c (init_entry_point_info): Do not clear
2357 entry_func_lowpc and entry_func_highpc.
2358 (objfile_relocate): Do not relocate entry_func_lowpc and
2359 entry_func_highpc.
2360 * dwarfread.c (read_func_scope): Do not set entry_func_lowpc and
2361 entry_func_highpc.
2362 * dwarf2read.c (read_func_scope): Do not set entry_func_lowpc and
2363 entry_func_highpc.
2364 * blockframe.c (legacy_frame_chain_valid): Replace tests against
2365 entry_func_lowpc and entry_func_highpc with call to
2366 inside_entry_func.
2367
2368 2004-06-24 Mark Kettenis <kettenis@gnu.org>
2369
2370 * sparc64-tdep.c (sparc64_store_arguments): Fix passing
2371 quad-precision floating point arguments in registers.
2372
2373 2004-06-24 Mark Kettenis <kettenis@gnu.org>
2374
2375 From Michael Mueller <m.mueller99@kay-mueller.de>:
2376 * sparc64-tdep.c (sparc64_frame_base_address): Take BIAS into
2377 account.
2378
2379 2004-06-22 Jeff Johnston <jjohnstn@redhat.com>
2380
2381 * infrun.c (handle_inferior_event): Initialize stopped_by_watchpoint
2382 to -1.
2383 * breakpoint.c (bpstat_stop_status): Move check for ignoring
2384 untriggered watchpoints to a separate if clause. Update function
2385 comment regarding STOPPED_BY_WATCHPOINT argument.
2386
2387 2004-06-22 Jim Blandy <jimb@redhat.com>
2388
2389 * gdbarch.sh: Doc fix.
2390
2391 2004-06-21 Martin Hunt <hunt@redhat.com>
2392 Kevin Buettner <kevinb@redhat.com>
2393
2394 * config/mips/tm-mips.h (SP_REGNUM): Delete define.
2395 * mips-tdep.h (MIPS_SP_REGNUM): Define.
2396 * mips-tdep.c (mips_gdbarch_init): Set SP_REGNUM via call
2397 to set_gdbarch_sp_regnum(). Use cooked register number.
2398 (SP_REGNUM): Replace all occurrences with MIPS_SP_REGNUM.
2399
2400 2004-06-21 Andrew Cagney <cagney@gnu.org>
2401
2402 * gdbarch.sh: When the macro field is empty, do not generate a
2403 macro definition. When the macro field is "=", generate the macro
2404 name from the upper-case function name.
2405 (NUM_REGS, NUM_PSEUDO_REGS, SP_REGNUM, PC_REGNUM, PS_REGNUM)
2406 (FP0_REGNUM, STAB_REG_TO_REGNUM, ECOFF_REG_TO_REGNUM)
2407 (DWARF_REG_TO_REGNUM, SDB_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM)
2408 (REGISTER_NAME, DEPRECATED_REGISTER_VIRTUAL_TYPE)
2409 (DEPRECATED_REGISTER_BYTES, DEPRECATED_REGISTER_BYTE)
2410 (DEPRECATED_REGISTER_RAW_SIZE, DEPRECATED_REGISTER_VIRTUAL_SIZE)
2411 (DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_FP_REGNUM)
2412 (DEPRECATED_TARGET_READ_FP, DEPRECATED_PUSH_ARGUMENTS)
2413 (DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP)
2414 (DEPRECATED_REGISTER_SIZE, CALL_DUMMY_LOCATION)
2415 (DEPRECATED_DO_REGISTERS_INFO, REGISTER_SIM_REGNO)
2416 (REGISTER_BYTES_OK, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER)
2417 (GET_LONGJMP_TARGET, DEPRECATED_INIT_FRAME_PC)
2418 (BELIEVE_PCC_PROMOTION, DEPRECATED_GET_SAVED_REGISTER)
2419 (CONVERT_REGISTER_P, REGISTER_TO_VALUE, VALUE_TO_REGISTER)
2420 (POINTER_TO_ADDRESS, ADDRESS_TO_POINTER, INTEGER_TO_ADDRESS)
2421 (DEPRECATED_POP_FRAME, DEPRECATED_STORE_STRUCT_RETURN)
2422 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE)
2423 (DEPRECATED_EXTRACT_RETURN_VALUE, DEPRECATED_STORE_RETURN_VALUE)
2424 (DEPRECATED_USE_STRUCT_CONVENTION)
2425 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
2426 (DEPRECATED_FRAME_INIT_SAVED_REGS)
2427 (DEPRECATED_INIT_EXTRA_FRAME_INFO, SKIP_PROLOGUE, INNER_THAN)
2428 (BREAKPOINT_FROM_PC, MEMORY_INSERT_BREAKPOINT)
2429 (MEMORY_REMOVE_BREAKPOINT, DECR_PC_AFTER_BREAK)
2430 (DEPRECATED_FUNCTION_START_OFFSET, FRAME_ARGS_SKIP)
2431 (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION, DEPRECATED_FRAME_CHAIN)
2432 (DEPRECATED_FRAME_CHAIN_VALID, DEPRECATED_FRAME_SAVED_PC)
2433 (DEPRECATED_FRAME_ARGS_ADDRESS, DEPRECATED_FRAME_LOCALS_ADDRESS)
2434 (DEPRECATED_SAVED_PC_AFTER_CALL, FRAME_NUM_ARGS)
2435 (DEPRECATED_STACK_ALIGN, DEPRECATED_REG_STRUCT_HAS_ADDR)
2436 (FRAME_RED_ZONE_SIZE, ADDR_BITS_REMOVE, SMASH_TEXT_ADDRESS)
2437 (SOFTWARE_SINGLE_STEP, SKIP_TRAMPOLINE_CODE)
2438 (IN_SOLIB_CALL_TRAMPOLINE, IN_SOLIB_RETURN_TRAMPOLINE)
2439 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL)
2440 (NAME_OF_MALLOC, CANNOT_STEP_BREAKPOINT)
2441 (HAVE_NONSTEPPABLE_WATCHPOINT, ADDRESS_CLASS_TYPE_FLAGS)
2442 (FETCH_POINTER_ARGUMENT): Replace the macro name with "=".
2443
2444 2004-06-21 Andrew Cagney <cagney@gnu.org>
2445
2446 * gdbarch.sh: For gdbarch_dump, print the "function" rather than
2447 macro name, and the function rather than macro value. Only wrap
2448 macro print statements in #ifdef. Move format logic to where it
2449 is needed.
2450 * gdbarch.c: Re-generate.
2451
2452 * gdbarch.sh (read): Delete "print_p" and "description", add
2453 "garbage_at_eol". Check for non-empty garbage at end-of-line.
2454 Delete references to print_p.
2455 (TARGET_ARCHITECTURE): Delete print predicate.
2456 * gdbarch.c: Re-generate.
2457
2458 * gdbarch.sh: Check that multi-arch methods do not provide a
2459 macro.
2460 (register_type, unwind_dummy_id, push_dummy_call, push_dummy_code)
2461 (print_registers_info, print_float_info, print_vector_info)
2462 (adjust_breakpoint_address, remote_translate_xfer_address)
2463 (construct_inferior_arguments, skip_solib_resolver, unwind_pc)
2464 (address_class_type_flags_to_name, unwind_sp): Remove the macro
2465 name from the multi-arch definition.
2466
2467 2004-06-20 Andrew Cagney <cagney@gnu.org>
2468
2469 * gdbarch.sh: Sort by the function, instead of macro name.
2470 * gdbarch.c: Re-generate.
2471
2472 2004-06-20 Andrew Cagney <cagney@gnu.org>
2473
2474 * gdbarch.sh: Use the function, instead of macro name in
2475 errors and the log file.
2476 (return_value): Remove stray ":" in spec.
2477
2478 * gdbarch.sh (RETURN_VALUE): Default to legacy_return_value.
2479 * gdbarch.h, gdbarch.c: Re-generate.
2480 * Makefile.in (arch-utils.o): Update dependencies.
2481 * values.c (using_struct_return): Move code calling
2482 USE_STRUCT_CONVENTION to legacy_return_value, simplify.
2483 * stack.c (return_command): Move code calling STORE_RETURN_VALUE
2484 to legacy_return_value, simplify.
2485 * infcmd.c (print_return_value): Move code calling
2486 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_RETURN_VALUE
2487 to legacy_return_value, simplify.
2488 * infcall.c (call_function_by_hand): Move code calling
2489 EXTRACT_RETURN_VALUE to legacy_return_value, simplify.
2490 * arch-utils.c: Update copyright. Include "gdbcore.h".
2491 (legacy_return_value): New function.
2492 * arch-utils.h: Update copyright.
2493 (legacy_return_value): Declare.
2494
2495 2004-06-20 Andrew Cagney <cagney@gnu.org>
2496
2497 * gdbarch.sh (DEPRECATED_USE_STRUCT_CONVENTION): Deprecated.
2498 * gdbarch.h, gdbarch.c: Re-generate.
2499 * values.c (using_struct_return): Update call.
2500 * mcore-tdep.c: Update comment.
2501 * infcall.c (call_function_by_hand): Update comment.
2502 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2503 * arch-utils.h (always_use_struct_convention): Update.
2504 * v850-tdep.c (v850_gdbarch_init): Update.
2505 * sh64-tdep.c (sh64_gdbarch_init): Update.
2506 * sh-tdep.c (sh_gdbarch_init): Update.
2507 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2508 * mips-tdep.c (mips_gdbarch_init): Update.
2509 * mcore-tdep.c (mcore_gdbarch_init): Update.
2510 * m32r-tdep.c (m32r_gdbarch_init): Update.
2511 * ia64-tdep.c (ia64_gdbarch_init): Update.
2512 * h8300-tdep.c (h8300_gdbarch_init): Update.
2513 * frv-tdep.c (frv_gdbarch_init): Update.
2514 * cris-tdep.c (cris_gdbarch_init): Update.
2515 * arm-tdep.c (arm_gdbarch_init): Update.
2516 * alpha-tdep.c (alpha_gdbarch_init): Update.
2517
2518 2004-06-18 Michael Chastain <mec.gnu@mindspring.com>
2519
2520 * PROBLEMS: Add more specific information, and a work-around,
2521 for PR gdb/1458.
2522
2523 2004-06-18 Andrew Cagney <cagney@gnu.org>
2524
2525 * gdbarch.sh (DEPRECATED_FUNCTION_START_OFFSET): Deprecated.
2526 * gdbarch.h, gdbarch.c: Re-generate.
2527 * ada-lang.c (ada_finish_decode_line_1): Update.
2528 * infrun.c (handle_inferior_event): Update.
2529 * infcall.c (find_function_addr): Update.
2530 * linespec.c (minsym_found): Update.
2531 * symtab.c (find_function_start_sal, skip_prologue_using_sal):
2532 Update.
2533 * blockframe.c (legacy_frameless_look_for_prologue): Update.
2534 * cli/cli-cmds.c (disassemble_command): Update.
2535 * vax-tdep.c (vax_gdbarch_init): Update.
2536
2537 2004-06-18 Mark Kettenis <kettenis@gnu.org>
2538
2539 * i386-tdep.c (i386_collect_fpregset): Fix comment.
2540
2541 2004-06-17 Andrew Cagney <cagney@gnu.org>
2542
2543 GDB 6.1.1 released from the GDB 6.1 branch.
2544 * NEWS: Merge in 6.1.1 NEWS from 6.1 branch.
2545 * PROBLEMS: Ditto.
2546
2547 2004-06-16 Daniel Jacobowitz <dan@debian.org>
2548
2549 PR gdb/1658
2550 * dwarf2read.c (dwarf_decode_lines): Read the length of the extended
2551 operation as a uleb128. Found by Michael Coulter.
2552
2553 2004-06-16 Paul N. Hilfinger <Hilfinger@gnat.com>
2554
2555 * ada-tasks.c: Rename build_task_list to ada_build_task_list, and
2556 make it non-static.
2557 * ada-lang.h (task_control_block): declaration moved from ada-task.c
2558 to ada-lang.h; this is needed to be able to implement the kill command
2559 in multi-task mode.
2560 (task_ptid): Ditto.
2561 (task_entry): Ditto.
2562 (task_list): Ditto.
2563 (ada_build_task_list): Ditto.
2564
2565 * ada-lang.c: Conditionalize routines and data structures related
2566 to breakpoints, exceptions, completion, and symbol caching on
2567 GNAT_GDB, since these are not yet used in the submitted public sources.
2568 (ada_main_name): Editorial: Move definition out of exception-related
2569 code.
2570
2571 2004-06-15 Andrew Cagney <cagney@gnu.org>
2572
2573 * mips-tdep.c (non_heuristic_proc_desc): Delete call to
2574 deprecated_pc_in_call_dummy.
2575
2576 2004-06-15 Alan Modra <amodra@bigpond.net.au>
2577
2578 * dsrec.c (load_srec, make_srec): Use bfd_get_section_size instead of
2579 bfd_get_section_size_before_reloc or _raw_size.
2580 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2581 * dwarf2read.c (dwarf2_locate_sections): Likewise.
2582 (dwarf2_read_section): Likewise.
2583 * elfread.c (elf_locate_sections): Likewise.
2584 * gcore.c (derive_heap_segment): Likewise.
2585 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
2586 * remote-e7000.c (e7000_load): Likewise.
2587 * remote-m32r-sdi.c (m32r_load): Likewise.
2588 * remote-mips.c (mips_load_srec): Likewise.
2589 (pmon_load_fast): Likewise.
2590 * remote.c (compare_sections_command): Likewise.
2591 * symfile.c (add_section_size_callback): Likewise.
2592 (load_section_callback): Likewise.
2593 (pc_in_unmapped_range): Likewise.
2594 (pc_in_mapped_range): Likewise.
2595 (sections_overlap): Likewise.
2596 (list_overlays_command): Likewise.
2597 (simple_overlay_update_1): Likewise.
2598 (simple_overlay_update): Likewise.
2599 * tracepoint.c (remote_set_transparent_ranges): Likewise.
2600 * win32-nat.c (core_section_load_dll_symbols): Likewise.
2601
2602 2004-06-14 Randolph Chung <tausq@debian.org>
2603
2604 * Makefile.in (hppa-hpux-tdep.o): Update dependency.
2605 * hppa-hpux-tdep.c (hp_cxx_exception_support_initialized): Make
2606 static.
2607 (hppa_hpux_inferior_created): New function.
2608 (hppa_hpux_init_abi): Register observer.
2609 * symfile.c (hp_cxx_exception_support_initialized)
2610 (RESET_HP_UX_GLOBALS): Remove HPUXHPPA specific hacks.
2611 (symbol_file_add_main_1, symbol_file_clear): Likewise.
2612
2613 2004-06-14 Randolph Chung <tausq@debian.org>
2614
2615 * MAINTAINERS (Write After Approval): Alphabetize my entry
2616 correctly.
2617
2618 2004-06-14 Andrew Cagney <cagney@gnu.org>
2619
2620 * MAINTAINERS (testsuite): List Michael Chastain as the lead
2621 testsuite maintainer.
2622
2623 2004-06-13 Andrew Cagney <cagney@gnu.org>
2624
2625 * infcmd.c (print_return_value): Fix logic, allow
2626 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS when struct_return.
2627
2628 * gdbarch.sh: For predicates, do not check GDB_MULTI_ARCH when
2629 defining any macros.
2630 * gdbarch.h: Re-generate.
2631
2632 * gdbarch.sh: Delete "level" attribute. Only check for a macro
2633 redefinition when multi-arch greater than GDB_MULTI_ARCH_PARTIAL.
2634 * gdbarch.h: Re-generate.
2635
2636 * values.c (generic_use_struct_convention): Don't check gcc_p.
2637
2638 * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE)
2639 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Delete.
2640 * gdbarch.h, gdbarch.c: Regenerate.
2641 * ns32k-tdep.h (NS32K_MAX_REGISTER_RAW_SIZE)
2642 (NS32K_MAX_REGISTER_VIRTUAL_SIZE): Delete macros.
2643 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
2644 deprecated_max_register_raw_size and
2645 deprecated_max_register_virtual_size.
2646 * v850-tdep.c (v850_gdbarch_init): Ditto.
2647 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
2648 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2649 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
2650 * cris-tdep.c (cris_gdbarch_init): Ditto.
2651
2652 * gdbarch.sh (RETURN_VALUE_ON_STACK): Delete method.
2653 * gdbarch.h, gdbarch.c: Re-generate.
2654 * m68hc11-tdep.c (m68hc11_return_value_on_stack): Delete function.
2655 (m68hc11_use_struct_convention): Delete function.
2656 (m68hc11_extract_struct_value_address): Delete function.
2657 (m68hc11_return_value): New function.
2658 (m68hc11_gdbarch_init): Instead of store_return_value,
2659 extract_return_value, return_value_on_stack,
2660 deprecated_extract_struct_value_address and use_struct_convention,
2661 set return_value.
2662 * values.c (using_struct_return): Do not call
2663 RETURN_VALUE_ON_STACK.
2664 * arch-utils.h (generic_return_value_on_stack_not): Delete
2665 declaration.
2666 * arch-utils.c (generic_return_value_on_stack_not): Delete
2667 function.
2668
2669 2004-06-12 Andrew Cagney <cagney@gnu.org>
2670
2671 * values.c (register_value_being_returned): Delete function.
2672 * infcmd.c (legacy_return_value): Delete function.
2673 * infcall.c (call_function_by_hand): Inline
2674 "register_value_being_returned", simplify.
2675 * values.c (using_struct_return): Update comment, refer to
2676 print_return_value instead of register_value_being_returned.
2677 * infcmd.c (print_return_value): Inline calls to
2678 register_value_being_returned and legacy_return_value. Simplify.
2679
2680 2004-06-11 Randolph Chung <tausq@debian.org>
2681
2682 * somread.c (som_symtab_read): Exclude gcc local symbols.
2683
2684 2004-06-11 Randolph Chung <tausq@debian.org>
2685
2686 * infrun.c (handle_inferior_event): Handle the case when a
2687 trampoline ends up in the runtime resolver, and if the trampoline
2688 has no name. Rearrange the code so that all the trampoline
2689 processing happens before other step-out-of-range handling.
2690
2691 2004-06-11 Martin Hunt <hunt@redhat.com>
2692
2693 * mips-tdep.c (mips_gdbarch_init): Recognize vr4120
2694 has no fpu.
2695
2696 2004-06-10 Andrew Cagney <cagney@gnu.org>
2697
2698 * blockframe.c (legacy_inside_entry_func): Delete.
2699 (legacy_frame_chain_valid): Inline call to
2700 legacy_inside_entry_func, simplify.
2701
2702 2004-06-10 Bob Rossi <bob@brasko.net>
2703
2704 * dbxread.c (read_dbx_symtab): Set pst->dirname when known.
2705 * dwarf2read.c (partial_die_info): Add dirname field.
2706 (dwarf2_build_psymtabs_hard): Set pst->dirname when known.
2707 (read_partial_die): Save away DW_AT_comp_dir.
2708 * defs.h (symtab_to_filename): Removed.
2709 * source.c (find_and_open_source): Added.
2710 (open_source_file): Just calls find_and_open_source.
2711 (symtab_to_filename): Removed.
2712 (symtab_to_fullname, psymtab_to_fullname): Added.
2713 * source.h (psymtab_to_fullname,symtab_to_fullname): Added.
2714 * symtab.c (lookup_symtab): Call symtab_to_fullname instead of
2715 symtab_to_filename.
2716 * symtab.h (partial_symtab): Add dirname field.
2717 * mi/mi-cmd-file.c (FILENAME,FULLNAME): Added.
2718 (mi_cmd_file_list_exec_source_file): Call new function
2719 symtab_to_fullname to find fullname.
2720 (mi_cmd_file_list_exec_source_files): Added.
2721 * mi/mi-cmds.c (mi_cmd_mi_cmds): Add -file-list-exec-source-files.
2722 * mi/mi-cmds.h (mi_cmd_file_list_exec_source_files): Added.
2723
2724 2004-06-10 Andrew Cagney <cagney@gnu.org>
2725
2726 * avr-tdep.c (avr_gdbarch_init): Do not set use_struct_convention
2727 to generic_use_struct_convention, the default value.
2728
2729 * mn10300-tdep.c (mn10300_type_align): Call internal_error instead
2730 of abort.
2731
2732 * ns32k-tdep.c (ns32k_push_arguments): New function.
2733 (ns32k_gdbarch_init): Set deprecated_push_arguments.
2734 * infcall.c (call_function_by_hand): Call error instead of
2735 legacy_push_arguments.
2736 * value.h (legacy_push_arguments): Delete declaration.
2737 * valops.c (legacy_push_arguments): Delete function.
2738 (value_push): Delete function.
2739
2740 2004-06-10 Brian Ford <ford@vss.fsi.com>
2741
2742 * coffread.c (coff_symfile_read): Prevent mixed debugging formats
2743 from corrupting/reinitializing the psymtab. Support DWARF 2 frame
2744 info.
2745 * dbxread.c (elfstab_build_psymtabs): Remove bogus comment.
2746
2747 2004-06-10 Andrew Cagney <cagney@gnu.org>
2748
2749 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Delete.
2750 * gdbarch.h, gdbarch.c: Re-generate.
2751 * frame.h (deprecated_pc_in_call_dummy): Delete "sp" and "fp"
2752 parameters.
2753 * dummy-frame.c (deprecated_pc_in_call_dummy): Update.
2754 * arm-tdep.c (arm_pc_is_thumb_dummy): Call
2755 deprecated_pc_in_call_dummy instead of
2756 DEPRECATED_PC_IN_CALL_DUMMY.
2757 (arm_skip_prologue): Ditto.
2758 * xstormy16-tdep.c (xstormy16_pop_frame, xstormy16_scan_prologue)
2759 (xstormy16_frame_saved_pc, xstormy16_frame_chain): Ditto.
2760 * v850-tdep.c (v850_find_callers_reg, v850_frame_chain)
2761 (v850_pop_frame, v850_frame_saved_pc, v850_frame_init_saved_regs):
2762 Ditto.
2763 * sh64-tdep.c (sh64_frame_chain, sh64_get_saved_pr)
2764 (sh64_init_extra_frame_info, sh64_get_saved_register)
2765 (sh64_pop_frame): Ditto.
2766 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
2767 * mcore-tdep.c (mcore_find_callers_reg, mcore_frame_saved_pc)
2768 (mcore_pop_frame, mcore_init_extra_frame_info): Ditto.
2769 * h8300-tdep.c (h8300_frame_chain, h8300_frame_saved_pc)
2770 (h8300_pop_frame): Ditto.
2771 * blockframe.c (legacy_inside_entry_func)
2772 (legacy_frame_chain_valid): Ditto.
2773 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update call
2774 to deprecated_pc_in_call_dummy.
2775
2776 2004-06-09 Andrew Cagney <cagney@gnu.org>
2777
2778 * gdbarch.sh (REGISTER_TO_VALUE, VALUE_TO_REGISTER): Do not
2779 provide a default value.
2780 (CONVERT_REGISTER_P): Default to generic_convert_register_p.
2781 * gdbarch.h, gdbarch.c: Re-generate.
2782 * arch-utils.c (generic_convert_register_p): Rename
2783 legacy_convert_register_p
2784 (legacy_register_to_value, legacy_value_to_register): Delete
2785 functions.
2786 * arch-utils.h (generic_convert_register_p): Rename
2787 legacy_convert_register_p.
2788 (legacy_register_to_value, legacy_value_to_register): Delete
2789 declarations.
2790
2791 * gdbarch.sh (DEPRECATED_REGISTER_CONVERT_TO_RAW)
2792 (DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL)
2793 (DEPRECATED_REGISTER_CONVERTIBLE): Delete.
2794 * gdbarch.h, gdbarch.c: Re-generate.
2795 * infcmd.c (default_print_registers_info): Simplify.
2796 * findvar.c (value_of_register): Simplify.
2797 * mi/mi-main.c (get_register): Simplify.
2798 * arch-utils.c (legacy_convert_register_p): Always return 0.
2799 (legacy_register_to_value, legacy_value_to_register): Always call
2800 internal_error.
2801
2802 * infptrace.c (child_xfer_memory) [CLEAR_INSN_CACHE]: Delete
2803 #ifdef CLEAR_INSN_CACHE code.
2804 * target.c (generic_mourn_inferior) [CLEAR_DEFERRED_STORES]:
2805 Delete #ifdef CLEAR_DEFERRED_STORES code.
2806
2807 * solib-svr4.c [HANDLE_SVR4_EXEC_EMULATORS]: Delete #ifdef code.
2808
2809 * config/ia64/tm-linux.h (TARGET_ELF64): Delete macro, Update
2810 copyright.
2811 * config/ia64/tm-aix.h (TARGET_ELF64): Ditto.
2812
2813 * config/mips/mipsv4.mh: Delete file.
2814
2815 * config/pa/tm-hppa64.h (HPREAD_ADJUST_STACK_ADDRESS): Delete
2816 unreferenced macro.
2817 (hpread_adjust_stack_address): Delete declaration.
2818
2819 2004-06-08 Andrew Cagney <cagney@gnu.org>
2820
2821 * infptrace.c [ATTACH_DETACH]: Remove #ifdef wrappers.
2822 (attach, detach): When neither PT_ATTACH / PT_DETACH nor
2823 PTRACE_ATTACH / PTRACE_DETACH available call error.
2824 (PT_ATTACH, PT_DETACH): Move definition to attach / detach.
2825 * infttrace.c (update_thread_state_after_attach, attach, detach):
2826 Remove #ifdef wrappers.
2827 * inftarg.c (child_attach, child_detach): Remove #ifdef wrappers.
2828 * gnu-nat.c [ATTACH_DETACH]: Remove #ifdef wrappers.
2829 * config/nm-bsd.h (ATTACH_DETACH): Delete.
2830 * config/nm-sysv4.h (ATTACH_DETACH): Delete.
2831 * config/nm-nbsd.h (ATTACH_DETACH): Delete.
2832 * config/nm-linux.h (ATTACH_DETACH): Delete.
2833 * config/rs6000/nm-rs6000.h (ATTACH_DETACH): Delete.
2834 * config/pa/nm-hppah.h (ATTACH_DETACH): Delete.
2835 * config/i386/nm-i386sco5.h (ATTACH_DETACH): Delete.
2836 * config/i386/nm-i386sco4.h (ATTACH_DETACH): Delete.
2837 * config/i386/nm-i386gnu.h (ATTACH_DETACH): Delete.
2838
2839 2004-06-08 Corinna Vinschen <vinschen@redhat.com>
2840
2841 * configure.in: Set $configdir to the right OS specific value.
2842 Use value when setting $tcldir and $tkdir.
2843 * configure: Regenerate.
2844
2845 2004-06-06 Paul Brook <paul@codesourcery.com>
2846
2847 * gdb/dwarf2-frame.c (decode_frame_entry_1): Decode version 3 CIE
2848 records.
2849
2850 2004-06-08 Paul N. Hilfinger <Hilfinger@gnat.com>
2851
2852 * ada-lang.c (lookup_symbol_in_language): New function to allow
2853 re-use of another language's symbol lookup code. (Placed here
2854 temporarily while Ada support is being integrated into the public
2855 tree).
2856 (restore_language): New auxiliary function for
2857 lookup_symbol_in_language.
2858 * ada-lang.h (lookup_symbol_in_language): Declare (Placed here
2859 temporarily while Ada support is being integrated into the public
2860 tree).
2861
2862 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
2863
2864 * Makefile.in (check//%): New.
2865
2866 * mn10300-tdep.c (mn10300_extract_return_value): Rewrite.
2867 (mn10300_store_return_value): Rewrite.
2868 (mn10300_type_align): New.
2869 (mn10300_use_struct_convention): Rewrite.
2870 (mn10300_return_value): New, using all of the above.
2871 (mn10300_pop_frame_regular): Add saved_regs_size.
2872 (mn10300_gdbarch_init): Remove deprecated rewritten entry points.
2873
2874 * mn10300-tdep.c (mn10300_analyze_prologue): Don't compute saved
2875 regs if PC is on movm.
2876
2877 2004-06-07 Jim Blandy <jimb@redhat.com>
2878
2879 Add native Linux support for the PowerPC E500.
2880 * ppc-tdep.h (struct gdbarch_tdep): New member: 'ppc_gprs_pseudo_p'.
2881 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it to false on
2882 all architectures except the E500.
2883 * ppc-linux-nat.c: (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): New
2884 #definitions.
2885 (struct gdb_evrregset_t): New type.
2886 (have_ptrace_getsetevrregs): New variable.
2887 (get_spe_registers, read_spliced_spe_reg, fetch_spe_register,
2888 fetch_spe_registers): New functions.
2889 (fetch_register): Call fetch_spe_register as appropriate.
2890 Assert that we're only passed raw register numbers.
2891 (fetch_ppc_registers): Call fetch_spe_registers as appropriate.
2892 Don't fetch gprs if they're pseudoregisters.
2893 (set_spe_registers, write_spliced_spe_reg, store_spe_register,
2894 store_spe_registers): New functions.
2895 (store_register): Call store_spe_register as appropriate.
2896 Assert that we're only passed raw register numbers.
2897 (store_ppc_registers): Call store_spe_registers as appropriate.
2898 Don't store gprs if they're pseudoregisters.
2899
2900 2004-06-07 Jeff Johnston <jjohnstn@redhat.com>
2901
2902 * thread-db.c (thread_get_info_callback): Fill in the thread_info
2903 struct if one exists, even if we are dealing with a zombie thread.
2904
2905 2004-06-07 Andrew Cagney <cagney@gnu.org>
2906
2907 * target.h (PC_REQUIRES_RUN_BEFORE_USE): Delete definition.
2908 * config/pa/tm-hppa.h (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE):
2909 Rename PC_REQUIRES_RUN_BEFORE_USE.
2910 * breakpoint.c (breakpoint_sals_to_pc): Update. Wrap reference in
2911 #ifdef.
2912
2913 2004-06-07 Randolph Chung <tausq@debian.org>
2914
2915 * hppa-tdep.c (hppa_frame_cache): Handle the cases when we start
2916 unwinding after sp has been saved to the stack but before the end
2917 of the prologue, and after the fp has been modified but before it has
2918 been saved to the stack.
2919 (hppa_frame_base_address, hppa_frame_base, hppa_frame_base_sniffer):
2920 Remove superfluous definitions.
2921 (hppa_gdbarch_init): Remove superfluous frame base sniffer.
2922
2923 2004-06-07 Guy Martin <gmsoft@gentoo.org>
2924
2925 Committed by Randolph Chung.
2926 * hppa-linux-nat.c: Include the correct version of the header file
2927 depending on the kernel version.
2928
2929 2004-06-06 Randolph Chung <tausq@debian.org>
2930
2931 * infrun.c (trap_expected_after_continue): Remove HP_OS_BUG workaround.
2932 (proceed, init_wait_for_inferior, handle_inferior_event): Likewise.
2933
2934 2004-06-06 Randolph Chung <tausq@debian.org>
2935
2936 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
2937 (hppa_hpux_skip_trampoline_code): Don't cache symbol values.
2938 * hppa-linux-tdep.c (hppa_linux_in_dyncall): Likewise.
2939 * hppa-tdep.c (hppa_symbol_address): New function definition.
2940 * hppa-tdep.h (hppa_symbol_address): New function declaration.
2941
2942 2004-06-06 Randolph Chung <tausq@debian.org>
2943
2944 * hppa-tdep.h (struct value): Forward declaration.
2945 (gdbarch_tdep): Define tdep find_global_pointer method.
2946 * hppa-tdep.c (hppa32_push_dummy_call): Find the global pointer
2947 associated with the function we are trying to call, and write it
2948 to the gp register.
2949 (hppa32_convert_from_funct_ptr_addr): New function.
2950 (hppa_find_global_pointer): New function.
2951 (hppa_gdbarch_init): Set default find_global_pointer method; set
2952 convert_from_func_ptr_addr method.
2953 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): New function.
2954 (hppa_linux_init_abi): Set find_global_pointer method.
2955 * Makefile.in (hppa-linux-tdep.o): Add value.h dependency.
2956
2957 2004-06-06 Randolph Chung <tausq@debian.org>
2958
2959 * gdbarch.sh (PUSH_DUMMY_CALL): Change CORE_ADDR func_addr argument
2960 to struct value *function.
2961 * gdbarch.c: Regenerate.
2962 * gdbarch.h: Likewise.
2963 * infcall.c (call_function_by_hand): Pass entire function value
2964 to push_dummy_call.
2965
2966 * Makefile.in (alpha-tdep.o, frv-tdep.o, ia64-tdep.o, mips-tdep.o)
2967 (ppc-sysv-tdep.o, rs6000-tdep.o): Update dependencies.
2968 * alpha-tdep.c (alpha_push_dummy_call): Update call signature.
2969 * amd64-tdep.c (amd64_push_dummy_call): Likewise.
2970 * arm-tdep.c (arm_push_dummy_call): Likewise.
2971 * avr-tdep.c (avr_push_dummy_call): Likewise.
2972 * cris-tdep.c (cris_push_dummy_call): Likewise.
2973 * d10v-tdep.c (d10v_push_dummy_call): Likewise.
2974 * frv-tdep.c (frv_push_dummy_call): Likewise.
2975 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
2976 * hppa-tdep.c (hppa32_push_dummy_call)
2977 (hppa64_push_dummy_call): Likewise.
2978 * i386-tdep.c (i386_push_dummy_call): Likewise.
2979 * ia64-tdep.c (ia64_push_dummy_call): Likewise.
2980 * m32r-tdep.c (m32r_push_dummy_call): Likewise.
2981 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
2982 * m68k-tdep.c (m68k_push_dummy_call): Likewise.
2983 * m88k-tdep.c (m88k_push_dummy_call): Likewise.
2984 * mips-tdep.c (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
2985 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Likewise.
2986 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
2987 (ppc64_sysv_abi_push_dummy_call): Likewise.
2988 * ppc-tdep.h (ppc_sysv_abi_push_dummy_call)
2989 (ppc64_sysv_abi_push_dummy_call): Likewise.
2990 * rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
2991 * s390-tdep.c (s390_push_dummy_call): Likewise.
2992 * sh-tdep.c (sh_push_dummy_call_fpu)
2993 (sh_push_dummy_call_nofpu): Likewise.
2994 * sparc-tdep.c (sparc32_push_dummy_call): Likewise.
2995 * sparc64-tdep.c (sparc64_push_dummy_call): Likewise.
2996 * vax-tdep.c (vax_push_dummy_call): Likewise.
2997
2998 2004-06-04 Jim Blandy <jimb@redhat.com>
2999
3000 * ppc-linux-nat.c (fetch_register): Don't forget to pass the
3001 gdbarch argument to register_size.
3002
3003 * rs6000-tdep.c (rs6000_store_return_value): Use
3004 regcache_cooked_write_part instead of
3005 deprecated_write_register_bytes.
3006 (rs6000_gdbarch_init): Register it for gdbarch_store_return_value,
3007 not gdbarch_deprecated_store_return_value.
3008
3009 * ppc-linux-nat.c (store_register, fetch_register): Remove
3010 incorrect assertions. Simplify and generalize handling of
3011 transfers whose sizes are not multiples of, or less than, sizeof
3012 (PTRACE_XFER_TYPE).
3013
3014 2004-06-04 Jeff Johnston <jjohnstn@redhat.com>
3015
3016 * infrun.c (handle_inferior_event): Don't treat an invalid ptid
3017 as a new thread event.
3018 * thread-db.c (thread_get_info_callback): If the thread is a
3019 zombie, return TD_THR_ZOMBIE.
3020 (thread_from_lwp): If thread_get_info_callback returns
3021 TD_THR_ZOMBIE, check if the thread is still on the thread list
3022 and return a -1 ptid if not found.
3023 (thread_db_wait): If thread_from_lwp returns a -1 ptid, then
3024 change the status to TARGET_WAITKIND_SPURIOUS.
3025
3026 2004-06-03 Corinna Vinschen <vinschen@redhat.com>
3027
3028 * sh-tdep.c (sh3e_sh4_store_return_value): Correctly store
3029 double values in little endian mode.
3030
3031 2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>
3032
3033 Committed by Andrew Cagney.
3034 * gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
3035 after last enum constant to avoid error from IBM C
3036 compiler.
3037
3038 2004-06-02 Jim Blandy <jimb@redhat.com>
3039
3040 * ppc-linux-nat.c (store_register, fetch_register): Rename 'mess'
3041 to 'message', and make it local to the lone block that uses it.
3042
3043 * ppc-linux-nat.c (store_register): Remove unused local 'offset'.
3044
3045 2004-06-02 Paul N. Hilfinger <hilfinger@gnat.com>
3046
3047 * ada-exp.y: Update copyright notice.
3048 Include block.h.
3049
3050 Replace REGNAME, LAST, INTERNAL_VARIABLE with
3051 SPECIAL_VARIABLE and unify the treatment of these cases.
3052
3053 (write_attribute_call0): Remove.
3054 (write_attribute_call1): Remove.
3055 (write_attribute_calln): Remove.
3056 (save_qualifier): Add missing semicolon.
3057
3058 (simple_exp,exp): Decomment (i.e., reactivate) code that was
3059 temporarily disabled to allow compilation with FSF head version.
3060
3061 (simple_exp syntax): Remove use of OP_ADA_ATTRIBUTE and
3062 use individual operators (OP_*) for all attributes.
3063 (exp syntax): Use write_int.
3064 Handle STRING literals with OP_STRING.
3065 (variable syntax): Add limit parameter to calls to
3066 write_object_renaming.
3067
3068 (temp_parse_space): New definition to hold entities that need
3069 only live until the next call to ada_parse.
3070 (string_to_operator): Rename fields of ada_opname_table entries.
3071
3072 (write_var_from_sym): Record block.
3073 (write_var_from_name): Minor reformatting.
3074 Make sure saved name is properly encoded in the case of multiple
3075 matches, and set its language to Ada.
3076 Update comment.
3077 Modify to indicate unresolved name as symbol in the UNRESOLVED
3078 namespace, allocated in temp_parse_space.
3079 (write_int): New function.
3080
3081 (write_object_renaming): Add max_depth parameter to limit
3082 chains of object renamings.
3083 Handle case where root of renaming expression is itself a renaming.
3084 Use temp_parse_space for temporary name buffer.
3085 Handle renamings to dereferenced pointers (___XEXA suffices).
3086
3087 (ada_parse, yyerror, string_to_operator,
3088 write_var_from_sym, write_var_from_name, write_attribute_call0,
3089 write_attribute_call1, write_attribute_calln,
3090 write_object_renaming): Protoize.
3091
3092 (_initialize_ada_exp): New function.
3093
3094 * ada-lang.c: Update copyright notice.
3095 General terminology change to conform to GNAT compiler usage:
3096 mangle => encode, demangle => decode
3097 Include gdb_obstack.h.
3098 Include gdb_regex.h
3099 Include frame.h
3100 Include hashtab.h
3101 Include completer.h
3102 Include gdb_stat.h
3103 Include block.h
3104 Include infcall.h
3105
3106 (ADA_RETAIN_DOTS): Make sure this is defined.
3107 (TRUNCATION_TOWARDS_ZERO): Define.
3108 (struct string_vector): Define.
3109 (unresolved_names): Remove definition.
3110 (xnew_string_vector): New function.
3111 (string_vector_append): New function.
3112 (extract_string): Make static.
3113 (ada_unqualified_name): New function.
3114 (add_angle_brackets): New function.
3115 (function_name_from_pc): New function.
3116 (place_on_stack): Rename to ensure_lval.
3117
3118 (ensure_lval): Renamed from place_on_stack.
3119 Make identity on lvals.
3120 Update comment.
3121 (is_nonfunction): New interface.
3122 Only symbols in LOC_CONST class can be enumerals.
3123 (fill_in_ada_prototype): Remove; now independent of language.
3124 (add_defn_to_vec): Add obstack and symtab arguments.
3125 Use obstack to hold collected definitions.
3126 (num_defns_collected): New function.
3127 (defns_collected): New function.
3128 (ada_resolve_subexp): Rename to resolve_subexp.
3129 (resolve_subexp): Renamed from ada_resolve_subexp.
3130 (ada_op_name): Return non-const result.
3131 (ada_decoded_op_name): Renamed from ada_op_name, now used for
3132 other purposes.
3133
3134 (to_fixed_array_type): Add declaration.
3135 (coerce_unspec_val_to_type): Remove offset parameter.
3136 (find_sal_from_funcs_and_line): New interface.
3137 (find_line_in_linetable): Ditto.
3138
3139 (all_sals_for_line): Rename to ada_sals_for_line and make
3140 global.
3141 Add new parameter. When set, do not ask the user to choose the
3142 instance, but use the first one found instead.
3143 Use given line number in returned sals.
3144 Fix comment.
3145 Skip the prologue if funfirstline is set.
3146 Correct for memory leak when 0 lines found.
3147
3148 (value_pos_atr): Use pos_atr.
3149 (pos_atr): New function.
3150 (standard_lookup): Add block parameter.
3151
3152 (makeTimeStart): Remove declaration and uses.
3153 (makeTimeStop): Remove declaration and uses.
3154
3155 (ada_completer_word_break_characters): Allow for VMS.
3156 (ADA_MAIN_PROGRAM_SYMBOL_NAME): Make into constant.
3157 (raise_sym_name): New constant.
3158 (raise_unhandled_sym_name): New constant.
3159 (raise_assert_sym_name): New constant.
3160 (process_raise_exception_name): New constant.
3161 (longest_exception_template): New constant.
3162 (warning_limit): New variable to limit warnings during expression
3163 evaluation.
3164 (warnings_issued): New variable to keep track of warnings issued.
3165 (known_runtime_file_name_patterns): New constant.
3166 (known_auxiliary_function_name_patterns): New constant.
3167 (symbol_list_obstack): New variable.
3168
3169 (field_name_match,is_suffix,is_suppressed_name,ada_encode,
3170 ada_decode,ada_match_name,encoded_ordered_before,equiv_types,
3171 lesseq_defined_than,is_nondebugging_type,is_name_suffix,wild_match,
3172 find_sal_from_funcs_and_line, ada_breakpoint_rewrite,
3173 ada_is_tagged_type, ada_is_parent_field, ada_is_wrapper_field,
3174 ada_variant_discrim_name, field_alignment, dynamic_template_type,
3175 ada_is_character_type, ada_is_aligner_type, ada_is_vax_floating_type):
3176 Replace use of deprecated STREQ and STREQN macros by calls to strncmp
3177 and strcmp.
3178
3179 (ada_get_field_index): New function.
3180 (lim_warning): New function.
3181 (ada_translate_error_message): New function.
3182 (MAX_OF_SIZE): New function.
3183 (MIN_OF_SIZE): New function.
3184 (UMAX_OF_SIZE): New function.
3185 (UMIN_OF_SIZE): New function.
3186 (discrete_type_high_bound): New function.
3187 (discrete_type_low_bound): New function.
3188 (base_type): New function.
3189 (do_command): Remove.
3190
3191 (ada_update_initial_language): Use language_ada, not language_unknown.
3192 (ada_encode): Renamed from ada_mangle.
3193 Obey ADA_RETAIN_DOTS.
3194 (ada_decode): Renamed from ada_demangle.
3195 Update coding conventions.
3196 (decoded_names_store): New hash table.
3197 (ada_decode_symbol): New function.
3198 (ada_la_decode): New function.
3199
3200 (modify_general_field): Correct computations of offset and bit
3201 position.
3202 (desc_base_type): Handle ref types, too.
3203 (ada_is_direct_array_type): New function.
3204
3205 (ada_is_simple_array): Rename to ada_is_simple_array_type.
3206 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
3207 (ada_is_bogus_array_descriptor,ada_type_of_array,
3208 ada_coerce_to_simple_array_ptr,ada_coerce_to_simple_array,
3209 ada_type_match,convert_actual,ada_evaluate_subexp): Use renamed
3210 ada_is_array_descriptor_type.
3211
3212 (ada_coerce_to_simple_array_type): Fix incorrect value freeing.
3213 (ada_is_packed_array_type): Handle pointers or
3214 references to packed arrays as well.
3215 (packed_array_type): Uncomment use of TYPE_FLAG_FIXED_INSTANCE.
3216 (decode_packed_array_type): Search for the packed array type
3217 symbol in the currently selected block and associated
3218 superblocks too.
3219 Use lookup_symbol again.
3220
3221 (decode_packed_array): Handle pointers and references.
3222 Update call to coerce_unspec_val_to_type.
3223 (decode_packed_array_type,value_subscript_packed): Limit warnings.
3224 (ada_value_primitive_packed_val): Improve comment.
3225
3226 (ada_index_type): Substitute int type for "undefined".
3227 (ada_index_type,ada_array_bound_from_type,ada_array_bound,
3228 ada_array_langth, ada_is_string_type): Use renamed
3229 ada_is_simple_array_type.
3230 (empty_array): New function.
3231
3232 (ada_resolve): Rename to resolve.
3233 (resolve): Make static.
3234 Call renamed resolve_subexp.
3235 Update comment.
3236 (ada_resolve_subexp): Rename to resolve_subexp.
3237 (resolve_subexp): Update comment.
3238 Decomment disabled code.
3239 Add LOC_COMPUTED* cases.
3240 Modify to use temporary struct symbols (marked as being in
3241 UNDEF_NAMESPACE) to indicate unresolved names, instead of
3242 OP_UNRESOLVED_VALUE.
3243 Remove OP_ATTRIBUTE; use individual opcodes for attributes.
3244 Add OP_STRING case.
3245 Remove OP_ARRAY.
3246 Use SYMBOL_PRINT_NAME instead of ada_demangle.
3247 Use new ada_lookup_symbol_list interface.
3248 Use new ada_resolve_function interface.
3249 Remove OP_TYPE case.
3250
3251 (ada_args_match): Idiot proof against null actuals.
3252 Use intermediate variables to clarify.
3253 (ada_resolve_function): Update comment and interface.
3254 (mangled_ordered_before): Rename to encoded_ordered_before and
3255 update comment.
3256 (sort_choices): Update comment and interface.
3257 Use SYMBOL_LINKAGE_NAME in place of SYMBOL_NAME.
3258 (user_select_syms): New interface.
3259 Use new sort_choices interface.
3260 Use SYMBOL_PRINT_NAME rather than SYMBOL_SOURCE_NAME.
3261 (possible_user_operator_p): Idiot-proof against null values.
3262 (ada_simple_renamed_entity): Don't make cleanup; rely on
3263 caller to free result string.
3264 Remove const from return type.
3265 (make_array_descriptor): Rename uses of place_on_stack to
3266 ensure_lval.
3267 Make sure that arrays are on stack.
3268
3269 (HASH_SIZE): Define.
3270 (struct cache_entry): Define.
3271 (cache_space): Define.
3272 (cache): Define.
3273 (clear_ada_sym_cache): New function.
3274 (find_entry): New function.
3275 (lookup_cached_symbol): New function.
3276 (defn_vector_size): Define.
3277 (cache_symbol): New function.
3278 (defn_symbols): Remove.
3279
3280 (standard_lookup): Use lookup_symbol_in_language to get effect of
3281 C lookup.
3282 Cache results.
3283
3284 (symbol_completion_match): New function.
3285 (symbol_completion_add): New function.
3286 (ada_make_symbol_completion_list): New function.
3287
3288 (ada_lookup_partial_symbol,ada_lookup_simple_minsym,
3289 add_symbols_from_enclosing_procs,remove_extra_symbols): Replace
3290 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
3291 (symtab_for_sym): Handle LOC_COMPUTED, LOC_COMPUTED_ARG.
3292
3293 (ada_lookup_simple_minsym): New function.
3294 (ada_lookup_minimal_symbol): Use ada_lookup_simple_minsym.
3295
3296 (add_symbols_from_enclosing_procs): New interface.
3297 Conditionalize more helpfully.
3298 Don't bother if program isn't running.
3299 Use new interface to get_frame_block.
3300 Limit number of levels searched with MAX_LEXICAL_LEVELS, just in case.
3301
3302 (remove_extra_symbols): New interface.
3303 (xget_renaming_scope): New function.
3304 (is_package_name): New function.
3305 (renaming_is_visible): New function.
3306 (remove_out_of_scope_renamings): New function.
3307
3308 (ada_lookup_symbol_list): New interface.
3309 Properly reinitialize the symbol list obstack.
3310 Don't call add_symbols_from_enclosing_procs if we start from a
3311 static or global block.
3312 Use new interfaces to ada_add_block_symbols, add_defn_to_vec,
3313 add_symbols_from_enclosing_procs.
3314 Add symtab data to cached entries.
3315 Handle symbols prefixed with
3316 "standard__" specially; strip prefix and don't look in local symbols.
3317 Do not include out of scope renaming symbols in list of
3318 symbols returned.
3319 Add const to block parameter.
3320 Move check for non-local, non-global symbols earlier.
3321 Remove timing stuff.
3322 (ada_lookup_symbol): New interface.
3323 Find symtab as well.
3324 (ada_lookup_symbol_nonlocal): New function.
3325
3326 (is_name_suffix): Enhance suffix detection to recognize
3327 an optional "__[:digit:]+" before any "\.[:digit:]+" suffix.
3328 (is_dot_digits_suffix): New function.
3329 (wild_match): Ignore ".[:digit:]*" suffixes during matches.
3330
3331 (ada_add_block_symbols): New interface. Use obstack to return results
3332 in a vector of struct ada_symbol_infos. Add symtab argument.
3333 Use new interface to add_defn_to_vec.
3334 Remove calls to fill_in_ada_prototype.
3335 Use BLOCK_BUCKETS, BLOCK_BUCKET.
3336
3337 (ada_finish_decode_line_1): Add const qualification to local to fix
3338 warning.
3339 Start looking in static block for functions to avoid attempts
3340 to search frame chain for up-level variables.
3341 Adapt to new ada_sals_for_line interface.
3342 Use new interfaces to ada_lookup_symbol_list and user_select_syms.
3343 Handle quoting of the function name inside the spec string.
3344 Skip prologue when funfirstline is set and update the
3345 function documentation to that effect.
3346
3347 (debug_print_lines, debug_print_block, debug_print_blocks,
3348 debug_print_symtab): Remove.
3349
3350 (ada_main_name): New function.
3351 (ada_exception_breakpoint_type): New function.
3352 (is_known_support_routine): New function.
3353 (ada_find_printable_frame): Renamed from find_printable_frame and made
3354 global.
3355 Remove level parameter.
3356 Use new interface to select_frame.
3357
3358 (begin_command): Remove.
3359 (ada_adjust_exception_stop): New function.
3360 (ada_print_exception_stop): New function.
3361 (exception_name_from_cond): New function.
3362 (ada_report_exception_break): Replace disabled code with
3363 conditionalization on GNAT_GDB.
3364 Get the exception name from the condition string.
3365 Remove and move functionality into new functions
3366 ada_print_exception_breakpoint_task and
3367 ada_print_exception_breakpoint_nontask.
3368 (error_breakpoint_runtime_sym_not_found): New function.
3369 (is_runtime_sym_defined): New function.
3370 (ada_breakpoint_rewrite): Uncomment suppressed code.
3371 Use symbolic error-message and runtime-symbol names.
3372 Surround runtime symbol names in quotes.
3373 Allow non-specific breakpoints on exceptions and assertions before
3374 program starts.
3375
3376 (ada_is_tagged_type): Add parameter.
3377 (ada_is_tag_type): New function.
3378 (ada_tag_type): Use new ada_lookup_struct_elt_type interface.
3379 (ada_variant_discrim_type): Ditto.
3380 (value_tag_from_contents_and_address): New function.
3381 (type_from_tag): New function.
3382 (struct tag_args): New structure used to communicate with
3383 ada_tag_name_1.
3384 (ada_tag_name_1): New function.
3385 (ada_tag_name): New function.
3386
3387 (ada_scan_number): Update comment.
3388 (find_struct_field): New function.
3389 (ada_search_struct_field): Make static.
3390 (ada_value_struct_elt): New version that returns references when
3391 given pointers or references to structs.
3392 (ada_lookup_struct_elt_type): Add 'refok' parameter.
3393 (ada_which_variant_applies): Use new ada_lookup_struct_elt_type
3394 interface.
3395 (ada_value_ind): Use new ada_to_fixed_value interface.
3396 (ada_coerce_ref): Ditto.
3397 (field_offset): Remove.
3398
3399 (ada_find_any_symbol): New function, extracted from ada_find_any_type.
3400 (ada_find_renaming_symbol): New function.
3401 (ada_prefer_type): Prefer named types over unnamed ones.
3402 (variant_field_index): New function.
3403 (contains_variant_part): Removed: subsumed by variant_field_index.
3404 (ada_template_to_fixed_record_type): New function, mostly from
3405 template_to_fixed_record_type.
3406 (template_to_fixed_record_type):
3407 Do not scan the type fields beyond the last one; prevents a
3408 potential SEGV.
3409 Handle case where variant field is listed BEFORE discriminant it
3410 depends on.
3411 Fix calculation of record length when bit length is
3412 not evenly divisible by char length.
3413 Move code to ada_template_to_fixed_record_type and call it.
3414
3415 (template_to_static_fixed_type): Revise comment.
3416 Modify to work on ordinary record types as well as templates,
3417 so as to handle fields that use ___XVE or ___XVU encodings.
3418 (to_record_with_fixed_variant_part): Fill out comment.
3419 Initialize C++ stuff in right type.
3420 Allow case where DVAL is null.
3421 Handle case where variant field is not last.
3422 Fix typo concerning record length.
3423 (to_fixed_record_type): Decomment disabled code.
3424 (to_fixed_record_type): Use variant_field_index instead of
3425 contains_variant_part.
3426 (to_fixed_variant_branch_type): Ditto.
3427 (to_fixed_array_type): Decomment disabled code.
3428 (ada_to_fixed_type): Convert tagged types to the specific type.
3429 Deactivate the size-check for array types in order to avoid
3430 some false size alarms.
3431 (to_static_fixed_type): Decomment disabled code.
3432 Modify to call template_to_static_fixed_type
3433 on ordinary structs, not just ___XVE- and ___XVU-encoded fields.
3434 (ada_to_fixed_value_create): Renamed version of old ada_to_fixed_value.
3435 Remove valaddr argument, as it is never really used.
3436 (ada_to_fixed_value): Change interface to act on single struct value*
3437 operand.
3438 (adjust_pc_past_prologue): New function.
3439 (ada_attribute_name): Modify to take enum exp_opcode argument.
3440
3441 (ada_enum_name): Recognize new homonym-distinguishing convention.
3442 Adjust local variable's type to remove compiler warning.
3443 Fix a small problem in the part that unqualifies the enumeration name.
3444 (ada_value_binop): New function.
3445 (ada_value_equal): New function.
3446
3447 (ada_evaluate_subexp): Use new ada_lookup_struct_elt_type interface.
3448 Don't give error message when not doing normal evaluation
3449 and a tagged type doesn't seem to contain a structure member.
3450 Give error message for packed arrays.
3451 For indexing arrays, handle pointers to packed arrays correctly.
3452 Handle case of 'first and 'last attributes of bare integral type
3453 without encoded subtype info.
3454 Remove some unnecessary casts.
3455 Fix uninitialized value of type in computing 'first, 'last, or 'length
3456 of array object.
3457 Add BINOP_EQUAL and BINOP_NOTEQUAL cases.
3458 Remove binop_user_defined_p tests and value_x_binop and value_x_unop
3459 calls.
3460 Attributes are now exp_opcode values.
3461 Correct treatment of 'modulus.
3462 Better error message for taking 'length of wrong kind of type;
3463 improve comment.
3464 Change EVAL_NORMAL to noside for consistency.
3465 Use ada_value_binop for DIV, MOD, REM.
3466 Make special case out of array of length 0, since an argument
3467 of 0 upsets some platforms' malloc.
3468 Use OP_STRING instead of OP_ARRAY.
3469 For slice, add check that we have an array type before extracting
3470 a slice out of it. Avoids a SEGV.
3471 When evaluating an array slice, if the array type is a reference to
3472 an aligner type, then replace the aligner type by the actual type.
3473 Decomment disabled code.
3474 Remove some dead code.
3475 Use temporary struct symbols (marked as being in UNDEF_NAMESPACE)
3476 to indicate unresolved names, instead of OP_UNRESOLVED_VALUE.
3477 Rename BINOP_MBR to BINOP_IN_BOUNDS, TERNOP_MBR to TERNOP_IN_RANGE,
3478 and UNOP_MBR to UNOP_IN_RANGE.
3479 If an array type has a parallel ___XVE type, then use it.
3480 Turn arrays into pointers for lvalue arrays.
3481 Change TERNOP_SLICE code to work even when bounds are unknown, ignoring
3482 bounds error and handle 0-length slices.
3483 Use lim_warning.
3484 When selecting fields, apply ada_to_fixed_value (because the fields
3485 might have ___XVU or ___XVE encodings even if not dynamic.)
3486 Use ada_to_fixed_value_create and new ada_to_fixed_value interface.
3487 (ada_is_system_address_type): New function.
3488
3489 (get_var_value): Use new interface to ada_lookup_symbol_list.
3490 (get_int_var_value): New interface.
3491 (to_fixed_range_type): Allow unknown bound, with warning.
3492 (ada_is_modular_type): Decomment disabled code.
3493 (ADA_OPERATORS): New definition.
3494 (ada_operator_length): New function.
3495 (ada_expr_op_name): New function.
3496 (ada_forward_operator_length): New function.
3497 (ada_dump_subexp_body): New function.
3498 (ada_print_subexp): New function.
3499 (ada_exp_descriptor): New constant.
3500 (ada_op_print_tab): Add 'size. Remove FIXMEs.
3501 (ada_language_defn): Add ada_exp_descriptor entry.
3502 Change ada_parse => parse.
3503 Add post-parser entry.
3504 Use ada-specific non-local symbol lookup.
3505 Don't use C-style arrays.
3506 String lower-bound is 1.
3507 Decomment disabled code.
3508 (parse): New function.
3509 New fields ada_translate_error_message, ada_lookup_symbol,
3510 ada_lookup_minimal_symbol.
3511
3512 * ada-lang.h: Update copyright dates.
3513 Replace the mangle/demangle terminology throughout by the
3514 more appropriate encode/decode one.
3515 Include breakpoint.h.
3516 Forward declare struct partial_symbol, struct block.
3517 (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Define.
3518 (EXTRACT_ADDRESS): Remove.
3519 (EXTRACT_INT): Remove.
3520 (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Define.
3521 (MAX_ENCLOSING_FRAME_LEVELS): Define.
3522 (MAX_RENAMING_CHAIN_LENGTH): Define.
3523 (struct ada_opname_map): mangled => decoded, demangled=>encoded.
3524
3525 (enum task_states): Remove.
3526 ada_task_states: Remove.
3527 (fat_string): Remove.
3528 (struct entry_call): Remove.
3529 (struct task_fields): Remove.
3530 (struct task_entry): Remove.
3531
3532 (struct ada_symbol_info): Define.
3533 (enum ada_attribute): Remove.
3534 (enum ada_operator): Define.
3535
3536 (ada_get_field_index): Declare.
3537 (ada_coerce_to_simple_array): Rename to ada_coerce_to_simple_array_ptr.
3538 (ada_is_simple_array): Rename to ada_is_simple_array_type.
3539 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
3540 (ada_lookup_symbol_list): New interface.
3541 (ada_decode_symbol): Declare.
3542 (ada_decode): Declare.
3543 (ada_lookup_symbol): New interface.
3544 (ada_update_initial_language): Declare.
3545 (ada_lookup_simple_minsym): Declare.
3546 (user_select_syms): New interface.
3547 (ada_sals_for_line): Declare.
3548 (ada_is_tagged_type): New interface.
3549 (ada_tag_name): Declare.
3550 (ada_lookup_struct_elt_type): Remove declaration.
3551 (ada_search_struct_field): Remove declaration.
3552 (ada_attribute_name): New interface.
3553 (ada_is_system_address_type): Declare.
3554 (ada_to_fixed_value): Remove declaration.
3555 (ada_template_to_fixed_record_type_1): Declare.
3556 (get_int_var_value): New interface.
3557 (ada_find_any_symbol): Declare.
3558 (ada_find_renaming_symbol): Declare.
3559 (ada_mangle): Rename to ada_encode.
3560 (ada_simple_renamed_entity): Remove const.
3561 (ada_main_name): Declare.
3562 (get_current_task): Rename to ada_get_current_task.
3563 (get_entry_number): Remove declaration.
3564 (ada_report_exception_break): Remove declaration.
3565 (ada_print_exception_breakpoint_nontask): Declare.
3566 (ada_print_exception_breakpoint_task): Declare.
3567 (ada_find_printable_frame): Declare.
3568
3569 * ada-lex.l: Update copyright notices.
3570 Use xmalloc and xfree instead of malloc and free.
3571 Use new interface to name_lookup.
3572 Use new interface to
3573 ada_mangle=>ada_encode.
3574 Redo handling of '$...' variable to parallel current treatment
3575 in c-exp.y.
3576 (resize_tempbuf, canonicalizeNumeral, is_digit_in_base,
3577 digit_to_int, strtoulst, processInt, processReal, processId,
3578 block_lookup, name_lookup, find_dot_all, subseqMatch, processAttribute,
3579 yywrap): Protoize.
3580
3581 (processInt): Use cast to remove harmless warning.
3582 (processReal): Modify to get rid of compiler warning on scan formats.
3583
3584 (processId): Replace xmalloc with obstack_alloc for name and remove
3585 call to ada_name_string_cleanup.
3586 Remove obsolete disabled code.
3587 (name_lookup): Ditto.
3588 New interface.
3589 Use obsavestring on temp_parse_space instead of savestring
3590 on name, and remove call to ada_name_string_cleanup.
3591 Free string returned from ada_simple_renamed_entity.
3592 Use new interface to ada_lookup_symbol_list.
3593 Decomment disabled code.
3594 Treat LOC_COMPUTED and LOC_COMPUTED_ARG symbols as variables,
3595 not types.
3596 When a type name lookup succeeds as a result of
3597 lookup_primitive_typename, check for regular type entry that has not
3598 yet been read in.
3599 Limit length of chain of renamed symbols we are willing to follow.
3600 Do not break names beginning with "standard__" into segments.
3601 (block_lookup): Use new interface to ada_lookup_symbol_list.
3602
3603 * ada-typeprint.c: Update copyright notice.
3604 (demangled_type_name): Rename to decoded_type_name.
3605 (ada_typedef_print): Use SYMBOL_PRINT_NAME.
3606 (print_range_bound): Correct handling of negative
3607 bounds that make the index type looked unsigned under STABS.
3608 (print_dynamic_range_bound): Use new interface to get_int_var_value.
3609 (print_range_type_named): Use the builtin int type if no type
3610 corresponding to the given type name could be found.
3611 (print_array_type): ada_is_simple_array => ada_is_simple_array_type.
3612 Add some bullet-proofing.
3613 (print_variant_clauses): Allow for variant branches with ___XVU
3614 encodings that are not dynamic fields.
3615 Use new interface to ada_is_tagged_type.
3616 (print_record_type): Allow for fields with ___XVE encodings that
3617 are not dynamic fields.
3618 Use new interface to ada_is_tagged_type.
3619 (ada_print_type): ada_is_array_descriptor =>
3620 ada_is_array_descriptor_type.
3621
3622 * ada-valprint.c: Update copyright notice.
3623 Include gdb_string.h
3624 Include infcall.h
3625 (ui_memcpy): New function.
3626 (ada_print_floating): New function.
3627 (ada_print_str): Order arguments correctly.
3628 Correct handling of empty arrays and arrays of 0-length items.
3629 ada_is_array_descriptor => ada_is_array_descriptor_type
3630 Print values of type System.Address in hexadecimal format.
3631 Use ada_print_floating to print floating-point numbers in Ada format.
3632 Print class tag values with type names.
3633 No longer print the address of reference values. Avoids
3634 a potential confusion.
3635 (ada_value_print): Stop printing the object type for reference
3636 values, but preserve that behavior for access types. Avoids
3637 a potential confusion.
3638 Simplify one conditional expression, as the first part is now
3639 necessarily true.
3640 ada_is_array_descriptor => ada_is_array_descriptor_type
3641 Add check for arrays for null records, and print them by hand.
3642
3643 2004-06-01 Jim Blandy <jimb@redhat.com>
3644
3645 * ppc-tdep.h: Delete unused 'regoff' member.
3646 * rs6000-tdep.c (rs6000_gdbarch_init): Don't initialize it.
3647
3648 2004-06-01 Michael Chastain <mec.gnu@mindspring.com>
3649
3650 Fix PR symtab/1661.
3651 * hpread.c (hpread_pxdb_needed): Call memset after alloca.
3652 (hpread_read_struct_type): Likewise.
3653
3654 2004-06-01 Andrew Cagney <cagney@gnu.org>
3655
3656 * mi/mi-cmd-env.c (env_execute_cli_command): Use xstrprintf
3657 instead of xasprintf.
3658 * mi/mi-main.c (mi_error_last_message, mi_cmd_exec_interrupt)
3659 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
3660 (mi_cmd_data_list_register_names)
3661 (mi_cmd_data_list_changed_registers)
3662 (mi_cmd_data_list_register_values)
3663 (get_register, mi_cmd_data_write_register_values)
3664 (mi_cmd_data_write_register_values)
3665 (mi_cmd_data_assign, mi_cmd_data_evaluate_expression)
3666 (mi_cmd_target_download, mi_cmd_target_select)
3667 (mi_cmd_data_read_memory, mi_cmd_data_write_memory)
3668 (mi_execute_cli_command, mi_execute_async_cli_command)
3669 (mi_execute_async_cli_command): Ditto.
3670 * mi/mi-interp.c (mi_cmd_interpreter_exec) Ditto.
3671 * mi/mi-cmd-var.c (mi_cmd_var_create): Ditto.
3672
3673 * mi/mi-cmds.h (mi_error_last_message): Delete declaration.
3674 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call
3675 error_last_message instead of mi_error_last_message.
3676 * mi/mi-main.c (mi_error_last_message): Delete function.
3677
3678 * mi/mi-main.c (mi_cmd_data_read_memory): Add missing return for
3679 "invalid number of columns" error. Delete redundant "out of
3680 memory" check.
3681
3682 2004-05-31 Mark Kettenis <kettenis@gnu.org>
3683
3684 * i386bsd-nat.c: Don't include <sys/procfs.h>.
3685 (gregset_t, fpregset_t): Remove typedefs.
3686 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Remove macros.
3687 (REG_OFFSET): Rename argument.
3688 (i386bsd_r_reg_offset): Rename from reg_offset.
3689 (REG_ADDR): Remove macro.
3690 (cannot_fetch_register, supply_gregset, fill_gregset): Remove
3691 functions.
3692 (i386bsd_supply_gregset, i386bsd_collect_gregset): New functions.
3693 (fetch_inferior_registers): Use `struct reg' and `struct fpreg'
3694 instead of gregset_t and fpregset_t. Use i386bsd_supply_gregset
3695 instead of supply_gregset.
3696 (store_inferior_registers): Use `struct reg' and `struct fpreg'
3697 instead of gregset_t and fpregset_t. Use i386bsd_collect_gregset
3698 instead of fill_gregset.
3699 (register_u_addr): Use i386_r_reg_offset instead of REG_ADDR.
3700
3701 * i386bsd-nat.c: Don't include "gregset.h".
3702 (supply_gregset, fill_gregset): Make static.
3703 (supply_fpregset, fill_fpregset): Remove.
3704 * Makefile.in (i386bsd-nat.o): Update dependencies.
3705
3706 2004-05-30 Mark Kettenis <kettenis@gnu.org>
3707
3708 * fbsd-proc.c: Include "regcache.h", "regset.h" and
3709 "gdb_assert.h". Con't include "gregset.h".
3710 (fbsd_make_corefile_notes): Use regset-based core file support
3711 instead off fill_gregset and fill_fpregset.
3712 * Makefile.in (fbsd-proc.o): Update dependencies.
3713
3714 * m88k-tdep.c (m88k_analyze_prologue): Fix handling of branch
3715 instructions.
3716 (m88k_frame_prev_register): Simplify code a bit.
3717
3718 * amd64-tdep.c (amd64_supply_fpregset): Adjust comment.
3719 (amd64_collect_fpregset): New function.
3720 (amd64_regset_from_core_section): Use amd64_collect_fpregset.
3721
3722 * hppa-tdep.h (hppa_regnum): Add HPPA_R31_REGNUM.
3723
3724 * i386-tdep.c (i386_supply_gregset): Adjust comment.
3725 (i386_collect_gregset): New function.
3726 (i386_supply_fpregset): Adjust comment.
3727 (i386_collect_fpregset): New function.
3728 (i386_regset_from_core_section): Use i386_collect_gregset and
3729 i386_collect_fpregset.
3730
3731 * hppa-tdep.c (hppa_frame_prev_register_helper): Reimplement to
3732 handle VALUEP being null.
3733
3734 * regset.h (collect_regset_ftype): Unconstify fourth argument.
3735
3736 2004-05-29 Mark Kettenis <kettenis@gnu.org>
3737
3738 * MAINTAINERS: Undelete m88k. Add myself as maintainer.
3739
3740 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Adjust for new
3741 assembler in OpenBSD 3.5-current.
3742 (amd64obsd_sigcontext_addr): Likewise.
3743
3744 2004-05-28 Jim Blandy <jimb@redhat.com>
3745
3746 * rs6000-tdep.c: Use the modern gdbarch methods for handling the
3747 register set, so our regcache isn't declared "legacy" and our E500
3748 pseudoregister read and write functions aren't ignored.
3749 (rs6000_register_byte, rs6000_register_raw_size,
3750 rs6000_register_virtual_type, rs6000_register_convertible,
3751 rs6000_register_convert_to_virtual,
3752 rs6000_register_convert_to_raw): Deleted.
3753 (rs6000_register_type, rs6000_convert_register_p,
3754 rs6000_register_to_value, rs6000_value_to_register): New
3755 functions.
3756 (rs6000_gdbarch_init): Don't register
3757 gdbarch_deprecated_register_size,
3758 gdbarch_deprecated_register_bytes,
3759 gdbarch_deprecated_register_byte,
3760 gdbarch_deprecated_register_raw_size,
3761 gdbarch_deprecated_register_virtual_type,
3762 gdbarch_deprecated_register_convertible,
3763 gdbarch_deprecated_register_convert_to_virtual, or
3764 gdbarch_deprecated_register_convert_to_raw methods. Instead,
3765 register gdbarch_register_type, gdbarch_convert_register_p,
3766 gdbarch_register_to_value, and gdbarch_value_to_register methods.
3767
3768 2004-05-26 Jim Blandy <jimb@redhat.com>
3769
3770 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): Deleted.
3771 (rs6000_stab_reg_to_regnum, rs6000_dwarf2_reg_to_regnum): New
3772 functions, updated to match the register numberings used in GCC.
3773 (rs6000_gdbarch_init): Register rs6000_stab_reg_to_regnum and
3774 rs6000_dwarf2_reg_to_regnum as register number conversions
3775 functions for STABS and Dwarf2.
3776
3777 2004-05-26 Randolph Chung <tausq@debian.org>
3778
3779 * infttrace.h (target_waitkind): Forward declare type instead of pulling
3780 in header file.
3781
3782 2004-05-25 Joel Brobecker <brobecker@gnat.com>
3783
3784 * NEWS: Document new "start" command.
3785
3786 2004-05-25 Randolph Chung <tausq@debian.org>
3787
3788 * hppa-linux-tdep.c (hppa_linux_init_abi): sizeof(long double) == 8 on
3789 hppa-linux.
3790
3791 2004-05-25 Randolph Chung <tausq@debian.org>
3792
3793 * hppa-hpux-tdep.c (offsetof): Define.
3794 (hppa_hpux_pc_in_sigtramp, hppa32_hpux_frame_saved_pc_in_sigtramp)
3795 (hppa32_hpux_frame_base_before_sigtramp)
3796 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
3797 (hppa64_hpux_frame_saved_pc_in_sigtramp)
3798 (hppa64_hpux_frame_base_before_sigtramp)
3799 (hppa64_hpux_frame_find_saved_regs_in_sigtramp): Remove unused
3800 functions.
3801 (struct hppa_hpux_sigtramp_unwind_cache, hppa_hpux_tramp_reg)
3802 (hppa_hpux_sigtramp_frame_unwind_cache)
3803 (hppa_hpux_sigtramp_frame_this_id)
3804 (hppa_hpux_sigtramp_frame_prev_register)
3805 (hppa_hpux_sigtramp_frame_unwind)
3806 (hppa_hpux_sigtramp_unwind_sniffer): New signal trampoline unwinder.
3807 (hppa_hpux_init_abi): Register sigtramp unwinder.
3808 * Makefile.in (hppa-hpux-tdep.o): Update dependencies.
3809
3810 2004-05-25 Randolph Chung <tausq@debian.org>
3811
3812 * hppa-tdep.c (hppa_fallback_frame_cache): Handle stack adjustment,
3813 and multiple stack unwinds.
3814 (hppa_stub_unwind_sniffer): Handle unwind from pc == 0.
3815
3816 2004-05-25 Andrew Cagney <cagney@gnu.org>
3817
3818 * symfile.h (symbol_file_add_from_memory): Delete declaration.
3819 * symfile-mem.h: Delete file.
3820 * symfile-mem.c: Do not include "symfile-mem.h".
3821 (symbol_file_add_from_memory): Make static. Use "struct bfd" and
3822 "struct bfd_section". When an error do not bother returning NULL.
3823 (add_symbol_file_from_memory_command): Use "struct bfd" and
3824 "struct bfd_section".
3825 * Makefile.in (symfile_mem_h): Delete.
3826 (symfile-mem.o): Update dependencies.
3827
3828 2004-05-25 Nick Roberts <nickrob@gnu.org>
3829
3830 * gdb-mi.el: New file.
3831
3832 2004-05-25 Andrew Cagney <cagney@gnu.org>
3833
3834 * inftarg.c: Include "observer.h".
3835 (child_attach, child_create_inferior): Notify inferior_created.
3836 * corelow.c: Include "observer.h".
3837 (core_open): Notify inferior_created.
3838 * Makefile.in (inftarg.o, corelow.o): Update dependencies.
3839
3840 2004-05-25 Andrew Cagney <cagney@gnu.org>
3841
3842 * target.h (struct target_ops): Add from_tty to
3843 to_create_inferior.
3844 (target_create_inferior, find_default_create_inferior): Update.
3845 * infcmd.c (run_command): Update.
3846 * wince.c (child_create_inferior): Update.
3847 * win32-nat.c (child_create_inferior): Update.
3848 * uw-thread.c (uw_thread_create_inferior): Update.
3849 * thread-db.c (thread_db_create_inferior): Update.
3850 * target.c (debug_to_create_inferior)
3851 (find_default_create_inferior): Update.
3852 (maybe_kill_then_create_inferior): Update.
3853 * sol-thread.c (sol_thread_create_inferior): Update.
3854 * remote.c (extended_remote_async_create_inferior)
3855 (extended_remote_create_inferior): Update.
3856 * remote-vx.c (vx_create_inferior): Update.
3857 * remote-st.c (st2000_create_inferior): Update.
3858 * remote-sim.c (gdbsim_create_inferior): Update.
3859 * remote-sds.c (sds_create_inferior): Update.
3860 * remote-rdp.c (remote_rdp_create_inferior): Update.
3861 * remote-rdi.c (arm_rdi_create_inferior): Update.
3862 * remote-m32r-sdi.c (m32r_create_inferior): Update.
3863 * remote-e7000.c (e7000_create_inferior): Update.
3864 * procfs.c (procfs_create_inferior): Update.
3865 * ocd.c (ocd_create_inferior): Update.
3866 * ocd.h (ocd_create_inferior): Update.
3867 * nto-procfs.c (procfs_create_inferior): Update.
3868 * monitor.c (monitor_create_inferior): Update.
3869 * lin-lwp.c (lin_lwp_create_inferior): Update.
3870 * inftarg.c (child_create_inferior): Update.
3871 * hpux-thread.c (hpux_thread_create_inferior): Update.
3872 * gnu-nat.c (gnu_create_inferior): Update.
3873
3874 2004-05-25 Andrew Cagney <cagney@gnu.com>
3875
3876 * MAINTAINERS: Update e-mail address.
3877
3878 2004-05-24 Randolph Chung <tausq@debian.org>
3879
3880 * thread.c (info_threads_command, thread_apply_all_command)
3881 (thread_apply_command, thread_command, do_captured_thread_select):
3882 Remove HPUXHPPA-specific code.
3883
3884 2004-05-24 Randolph Chung <tausq@debian.org>
3885
3886 * hppa-tdep.c (SR4EXPORT_LDIL_OFFSET, SR4EXPORT_LDO_OFFSET): Remove
3887 unused symbols.
3888 * hppa-tdep.h (HPPA_INSTRUCTION_SIZE): Remove, since there are no more
3889 references.
3890
3891 2004-05-24 Joel Brobecker <brobecker@gnat.com>
3892
3893 * infcmd.c (kill_if_already_running): New function, extracted
3894 from run_command().
3895 (run_command): Replace extracted code by call to
3896 kill_if_already_running().
3897 (start_command): New function.
3898 (_initialize_infcmd): Add "start" command.
3899
3900 2004-05-24 Mark Kettenis <kettenis@gnu.org>
3901
3902 Add OpenBSD/m88k support.
3903 * NEWS (New native configurations): Mention OpenBSD/m88k.
3904 * m88k-tdep.c, m88k-tdep.h, m88kbsd-nat.c, config/m88k/nm-obsd.h,
3905 config/m88k/obsd.mh, config/m88k/obsd.mt: New files.
3906 * Makefile.in (m88k_tdep_h): New variable.
3907 (ALLDEPFILES): Add m88k-tdep.c and m88kbsd-nat.c.
3908 (m88kbsd-nat.o, m88k-tdep.o): New dependencies.
3909 * configure.host: Add m88*-*-openbsd*.
3910 * configure.tgt: Add m88*-*-openbsd*.
3911
3912 2004-05-24 Jim Blandy <jimb@redhat.com>
3913
3914 * MAINTAINERS (tracing bytecode stuff): Allow global maintainers
3915 to approve changes.
3916
3917 2004-05-24 Kevin Buettner <kevinb@redhat.com>
3918
3919 * symtab.c (fixup_section): Search section table when lookup by
3920 name fails.
3921
3922 2004-05-24 Randolph Chung <tausq@debian.org>
3923
3924 * hppa-tdep.c: Fix handling of 8-byte structures; they should not
3925 be "small_struct".
3926
3927 2004-05-24 Mark Kettenis <kettenis@gnu.org>
3928
3929 * m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct
3930 register number in regcache_raw_collect call.
3931 (m68kbsd_collect_fpregset): Likewise.
3932 * vaxbsd-nat.c (vaxbsd_collect_gregset): Likewise.
3933
3934 * regset.h (struct regset): Add back `regset' member.
3935
3936 2004-05-23 Mark Kettenis <kettenis@gnu.org>
3937
3938 * configure.in: Check for td_pcb in `struct thread'.
3939 * configure, config.in: Regenerated.
3940
3941 * dpx2-nat.c: Remove file.
3942 * Makefile.in (ALLDEPFILES): Remove dpx2-nat.c.
3943 (dpx2-nat.o): Remove dependencies.
3944
3945 * amd64obsd-nat.c: Include "gdbcore.h", "regcache.h",
3946 <sys/types.h>, <machine/frame.h>, <machine/pcb.h> and "bsd-kvm.h".
3947 (amd64obsd_supply_pcb): New function.
3948 (_initialize_amd64obsd_nat): Enable libkvm interface.
3949 * Makefile.in (amd64obsd-nat.o): Update dependencies.
3950 * config/i386/obsd64.mh (NATDEPFILES): Add bsd-kvm.o
3951 (LOADLIBES): New variable.
3952
3953 * sparcnbsd-nat.c: Include "gdbcore.h", "regcache.h",
3954 <sys/types.h>, <machine/pcb.h> and "bsd-kvm.h".
3955 (sparc32nbsd_supply_pcb): New function.
3956 (_initialize_sparcnbsd_nat): Enable libkvm interface.
3957 * Makefile.in (sparcnbsd-nat.o): Update dependencies.
3958 * config/sparc/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
3959 (LOADLIBES): New variable.
3960
3961 2004-05-22 Mark Kettenis <kettenis@gnu.org>
3962
3963 * bsd-kvm.c, bsd-kvm.h: New files.
3964 * i386fbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
3965 "bsd-kvm.h".
3966 (i386fbsd_supply_pcb): New function.
3967 * Makefile.in (ALLDEPFILES): Add bsd-kvm.c.
3968 (i386fbsd-nat.o): Update dependencies.
3969 (bsd_kvm_h): New variable.
3970 (bsd-kvm.o): New dependency.
3971 * config/i386/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
3972 (LOADLIBES): New variable.
3973
3974 * regset.c: Tweak comment.
3975 (regset_alloc): Remove descr argument. Use GDBARCH_OBSTACK_ZALLOC
3976 macro.
3977 * regset.h: Update copyright year.
3978 (struct regset): Remove `descr' member, add `gdbarch' member.
3979 (regset_alloc): Adjust prototype and comment.
3980 * i386-tdep.c (i386_supply_gregset): Get TDEP from REGSET->arch.
3981 (i386_supply_fpregset): Likewise.
3982 (i386_regset_from_core_section): Update call to regset_alloc.
3983 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Get TDEP from
3984 REGSET->arch.
3985 (i386obsd_aout_regset_from_core_section): Update call to
3986 regset_alloc.
3987 * i386nbsd-tdep.c (i386nbsd_aout_supply_regset): Get TDEP from
3988 REGSET->arch.
3989 (i386nbsd_aout_regset_from_core_section): Update call to
3990 regset_alloc.
3991 * amd64-tdep.c (amd64_supply_fpregset): Get TDEP from
3992 REGSET->arch.
3993 (amd64_regset_from_core_section): Update call to regset_alloc.
3994 * amd64obsd-tdep.c (amd64obsd_supply_regset): Get TDEP from
3995 REGSET->arch.
3996 (amd64obsd_regset_from_core_section): Update call to regset_alloc.
3997 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Directly pass
3998 &sparc32nbsd_gregset in sparc32_supply_gregset call.
3999 (sparc32nbsd_init_abi): Update call to regset_alloc.
4000 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Directly pass
4001 &sparc64obsd_core_gregset in sparc64_supply_gregset call.
4002 (sparc64obsd_init_abi): Update call to regset_alloc.
4003 * sparc64nbsd-tdep.c (sparc64nbsd_supply_gregset): Directly pass
4004 &sparc64nbsd_gregset in sparc64_supply_gregset call.
4005 (sparc64nbsd_init_abi): Update call to regset_alloc.
4006 * sparc64fbsd-tdep.c (sparc64fbsd_supply_gregset): Directly pass
4007 &sparc64fbsd_gregset in sparc64_supply_gregset call.
4008 (sparc64fbsd_init_abi): Update call to regset_alloc.
4009
4010 2004-05-22 Jim Blandy <jimb@redhat.com>
4011
4012 * ppc-tdep.h (spe_register_p): New declaration.
4013 (struct gdbarch_tdep): New members: ppc_acc_regnum and
4014 ppc_spefscr_regnum.
4015 * rs6000-tdep.c (spe_register_p): New function.
4016 (rs6000_dwarf2_stab_reg_to_regnum): Recognize numbers for acc and
4017 spefscr.
4018 (rs6000_gdbarch_init): Initialize the new members of the tdep
4019 structure.
4020
4021 2004-05-21 Jim Blandy <jimb@redhat.com>
4022
4023 * ppc-linux-nat.c (fetch_register): Move code back to be next
4024 to the comment that describes it. (Moved code, instead of
4025 comment, for symmetry with store_register.)
4026
4027 Allocate regset structures in the gdbarch's obstack, not using
4028 xmalloc.
4029 * regset.c (regset_alloc): Renamed from regset_xmalloc.
4030 Add 'arch' argument. Allocate the regset on arch's obstack, not
4031 using xmalloc.
4032 * regset.h (regset_alloc): Update declaration.
4033 * am64-tdep.c (amd64_regset_from_core_section): Update call; pass
4034 gdbarch argument.
4035 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
4036 * i386-tdep.c (i386_regset_from_core_section): Same.
4037 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
4038 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
4039 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
4040 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
4041 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
4042 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
4043
4044 2004-05-21 Joel Brobecker <brobecker@gnat.com>
4045
4046 * config/djgpp/fnchange.lst: Undo previous change, was useless.
4047
4048 2004-05-21 Jim Blandy <jimb@redhat.com>
4049
4050 * dwarf2expr.c (execute_stack_op): Add 'break' statements after
4051 cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
4052
4053 2004-05-20 Jim Blandy <jimb@redhat.com>
4054
4055 * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
4056
4057 2004-05-20 Mark Kettenis <kettenis@gnu.org>
4058
4059 * regset.h: Make prototype const-correct.
4060 * regset.c (regset_xmalloc): Make const-correct.
4061
4062 2004-05-20 Paul N. Hilfinger <hilfinger@gnat.com>
4063
4064 * symtab.h (SYMBOL_SEARCH_NAME): New definition.
4065 (SYMBOL_MATCHES_SEARCH_NAME): New definition.
4066 (symbol_search_name): Declare.
4067
4068 * dictionary.c (iter_name_first_hashed): Match on SYMBOL_SEARCH_NAME.
4069 (iter_name_next_hashed): Ditto.
4070 (iter_name_next_linear): Ditto.
4071 (insert_symbol_hashed): Hash on SYMBOL_SEARCH_NAME.
4072
4073 * symtab.c (lookup_partial_symbol): Assume symbols ordered by
4074 search name, using SYMBOL_SEARCH_NAME and SYMBOL_MATCHES_SEARCH_NAME.
4075 (symbol_search_name): New function.
4076
4077 * symfile.c (compare_psymbols): Order by SYMBOL_SEARCH_NAME.
4078
4079 * minsyms.c (build_minimal_symbol_hash_tables): Change
4080 test for adding to demangled hash table to check for difference
4081 between SYMBOL_SEARCH_NAME and SYMBOL_LINKAGE_NAME.
4082
4083 2004-05-19 Jim Blandy <jimb@redhat.com>
4084
4085 Use a constructor function to create regset structures.
4086 * regset.h (supply_regset_ftype, collect_regset_ftype): New typedefs.
4087 (struct regset): Use supply_regset_ftype. Add new
4088 'collect_regset' member.
4089 (regset_xmalloc): New declaration.
4090 * regset.c: New file.
4091 * am64-tdep.c (amd64_regset_from_core_section): Use
4092 regset_xmalloc to construct regset structures.
4093 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
4094 * i386-tdep.c (i386_regset_from_core_section): Same.
4095 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
4096 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
4097 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
4098 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
4099 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
4100 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
4101 * Makefile.in (COMMON_OBS): Add regset.o.
4102 (regset.o): New rule.
4103
4104 2004-05-19 Joel Brobecker <brobecker@gnat.com>
4105
4106 * config/djgpp/fnchange.lst: Add entries for pthread_cond_wait.exp
4107 and pthread_cond_wait.c.
4108
4109 2004-05-18 Jim Blandy <jimb@redhat.com>
4110
4111 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize tdep fields
4112 before the mach-specific switch, and then let the individual cases
4113 override the defaults, rather than leaving them uninitialized
4114 until the switch and then setting them in each case.
4115
4116 2004-05-18 Randolph Chung <tausq@debian.org>
4117
4118 * hppa-tdep.c (hppa_frame_cache): Check for validity of r31 for
4119 millicode functions.
4120
4121 2004-05-18 Randolph Chung <tausq@debian.org>
4122
4123 * somsolib.c (som_solib_remove_inferior_hook): Make all the size
4124 references to dld_flags_buffer consistent.
4125
4126 2004-05-18 Randolph Chung <tausq@debian.org>
4127
4128 * hppa-tdep.c (hppa_frame_cache): If a frame pointer is available, use
4129 it for unwinding the stack.
4130
4131 2004-05-18 Randolph Chung <tausq@debian.org>
4132
4133 * config/pa/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE)
4134 Undefine these so we can overide them using gdbarch.
4135
4136 2004-05-18 Randolph Chung <tausq@debian.org>
4137
4138 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't do export stub
4139 handling for 64-bit HPUX (elf).
4140
4141 2004-05-18 Daniel Jacobowitz <dan@debian.org>
4142
4143 * alpha-tdep.c (alpha_gdbarch_init): Use LL suffix for large
4144 constants.
4145 * amd64-tdep.c (amd64_skip_prologue): Likewise.
4146 * ia64-tdep.c (examine_prologue): Likewise.
4147 * ns32k-tdep.c (ns32k_fix_call_dummy): Remove unused function.
4148 * v850-tdep.c (v850_fix_call_dummy): Likewise.
4149
4150 2004-05-18 Mark Kettenis <kettenis@gnu.org>
4151
4152 * vax-tdep.c (vax_return_value): Implement
4153 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4154
4155 2004-05-17 Mark Kettenis <kettenis@gnu.org>
4156
4157 * vax-tdep.c (vax_return_value): Fix typo.
4158
4159 2004-05-17 Andrew Cagney <cagney@redhat.com>
4160
4161 * MAINTAINERS: Mark Salter was also responsible for
4162 testsuite/config/
4163
4164 * NEWS: Mention signal fixes.
4165
4166 2004-05-17 Randolph Chung <tausq@debian.org>
4167
4168 * hppa-tdep.c (hppa_stub_frame_unwind_cache): For HPUX stub unwinding,
4169 check to see if we are unwinding an export stub. Export stubs clobber
4170 the %rp in the call path and stores the original rp in a stack slot.
4171
4172 2004-05-17 Jim Blandy <jimb@redhat.com>
4173
4174 * MAINTAINERS: Update address for J.T. Conklin.
4175
4176 2004-05-17 Randolph Chung <tausq@debian.org>
4177
4178 * hppa-tdep.c: Remove superfluous #include's.
4179 * Makefile.in (hppa-tdep.o): Update dependencies.
4180
4181 2004-05-17 Randolph Chung <tausq@debian.org>
4182
4183 * hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
4184 (THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
4185 (unwind_command, hppa_alignof, prologue_inst_adjust_sp)
4186 (is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
4187 (read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
4188 Remove static function declarations.
4189
4190 2004-05-17 Mark Kettenis <kettenis@gnu.org>
4191
4192 * alphabsd-nat.c: Update copyright year.
4193 (getregs_supplies): Replace PC_REGNUM with ALPHA_PC_REGNUM.
4194
4195 * m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM
4196 and M68K_A2_REGNUM.
4197
4198 * m68k-tdep.c (m68k_svr4_return_value): Implement
4199 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4200
4201 2004-05-16 Mark Kettenis <kettenis@gnu.org>
4202
4203 * sol-thread.c Update copyright year. Fix various coding
4204 standards violations. Tweak a few comments.
4205 (td_err_string, td_state_string, thread_to_lwp, lwp_to_thread):
4206 Delete prototypes.
4207
4208 2004-05-15 Randolph Chung <tausq@debian.org>
4209
4210 * hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs
4211 as pointer instead of array reference since HPUX compiler does
4212 not accept unsized array arguments.
4213 * somsolib.c (dld_flags_buffer): Use constant array size.
4214
4215 2004-05-15 Mark Kettenis <kettenis@gnu.org>
4216
4217 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimal
4218 offset with decimal offset.
4219 (amd64obsd_sigcontext_addr): Return correct address for entire
4220 signal trampoline.
4221
4222 * vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
4223 instead of get_frame_base.
4224
4225 * i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.
4226 (fill_gregset): Use regcache_raw_collect.
4227
4228 * config/djgpp/fnchange.lst: Add entries for ppcobsd-nat.c and
4229 ppcobsd-tdep.c.
4230
4231 * config/sparc/tm-nbsd64.h: Remove file.
4232 * config/tm-sunos.h: Remove file.
4233
4234 2004-05-15 Joel Brobecker <brobecker@gnat.com>
4235
4236 * rs6000-tdep.c (store_param_on_stack_p): New function,
4237 an improved version of some code extracted from skip_prologue().
4238 (skip_prologue): Use store_param_on_stack_p() to detect
4239 instructions saving a parameter on the stack. Detect when r0
4240 is used to save a parameter.
4241 Do not mark "li rx, SIMM" instructions as part of the prologue,
4242 unless the following instruction is also part of the prologue.
4243
4244 2004-05-14 Andrew Cagney <cagney@redhat.com>
4245
4246 * infrun.c (handle_inferior_event): Simplify
4247 STEP_OVER_UNDEBUGGABLE.
4248
4249 * infrun.c (handle_step_into_function): Delete function.
4250 (handle_inferior_event): Inline calls to
4251 handle_step_into_function.
4252
4253 2004-05-14 Jerome Guitton <guitton@gnat.com>
4254
4255 * rs6000-nat.c: Fix a comment.
4256
4257 2004-05-12 David Anderson <davea@sgi.com>
4258
4259 Committed by Jim Blandy <jimb@redhat.com>:
4260 * regcache.c (struct regcache_descr): fix comment spelling.
4261
4262 2004-05-13 J. Brobecker <brobecker@gnat.com>
4263
4264 * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
4265 Fixes a link link failure.
4266
4267 2004-05-13 J. Brobecker <brobecker@gnat.com>
4268
4269 * aix-thread.c (store_regs_kernel_thread): Fix a little obvious
4270 error that was causing the build to fail.
4271
4272 2004-05-13 J. Brobecker <brobecker@gnat.com>
4273
4274 * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.
4275 * Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
4276
4277 2004-05-13 Andrew Cagney <cagney@redhat.com>
4278
4279 * infrun.c (handle_inferior_event): Check for
4280 STEP_OVER_UNDEBUGGABLE after signal trampolines and function
4281 calls. Update comments.
4282
4283 2004-05-13 Jim Blandy <jimb@redhat.com>
4284
4285 * aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)
4286 (fetch_regs_user_thread, fetch_regs_kernel_thread)
4287 (store_regs_user_thread, store_regs_kernel_thread): Use
4288 ppc_num_gprs and ppc_num_fprs instead of '32' and '31'.
4289 * ppc-linux-nat.c (fill_gregset): Same.
4290 * ppc-linux-tdep.c (ppc_linux_supply_gregset)
4291 (ppc_linux_sigtramp_cache): Same.
4292 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg)
4293 (ppcnbsd_sigtramp_cache_init): Same.
4294 * rs6000-nat.c (fetch_core_registers): Same.
4295 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset)
4296 (rs6000_frame_cache): Same.
4297
4298 * aix-thread.c (supply_gprs64, fetch_regs_user_thread)
4299 (store_regs_user_thread): Use tdep->ppc_gp0_regnum, instead
4300 of assuming that the gprs are numbered starting with zero.
4301 * ppc-linux-nat.c (fill_gregset): Same.
4302 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Same.
4303 * ppcnbsd-nat.c (getregs_supplies): Same.
4304 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg): Same.
4305 * rs6000-nat.c (fetch_core_registers): Same.
4306 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset): Same.
4307
4308 2004-05-07 Michael Snyder <msnyder@redhat.com>
4309
4310 * tracepoint.c (scope_info): Add handling for LOC_COMPUTED,
4311 LOC_COMPUTED_ARG, and LOC_INDIRECT.
4312
4313 2004-05-13 Andrew Cagney <cagney@redhat.com>
4314
4315 * infrun.c (handle_inferior_event): Use frame_unwind_id.
4316
4317 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
4318
4319 * dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust
4320 base_address for shared libraries.
4321
4322 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
4323
4324 * MAINTAINERS (write after approval): Add myself.
4325
4326 2004-05-13 Ulrich Weigand <uweigand@de.ibm.com>
4327
4328 * breakpoint.c (bpstat_stop_status): Add new argument
4329 STOPPED_BY_WATCHPOINT. Use it instead of testing
4330 target_stopped_data_address agaist 0 to check whether
4331 or not we stopped due to a hardware watchpoint.
4332 * breakpoint.h (bpstat_stop_status): Adapt prototype.
4333 * infrun.c (handle_inferior_event): Call bpstat_stop_status
4334 with new argument.
4335
4336 2004-05-12 Jim Blandy <jimb@redhat.com>
4337
4338 * configure.in: When checking whether we should use the -bbigtoc
4339 option, don't forget to restore the original value of LDFLAGS.
4340 * configure: Regenerated.
4341
4342 2004-05-12 Andrew Cagney <cagney@redhat.com>
4343
4344 * thread.c (load_infrun_state): Delete step_sp.
4345 * infrun.c (context_switch): Ditto.
4346 * inferior.h (step_sp): Ditto.
4347 * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto.
4348 * gdbthread.h (struct thread_info, save_infrun_state)
4349 (restore_infrun_state): Ditto.
4350
4351 2004-05-12 Ulrich Weigand <uweigand@de.ibm.com>
4352
4353 * MAINTAINERS (write after approval): Add myself.
4354
4355 2004-05-12 Andrew Cagney <cagney@redhat.com>
4356
4357 * infrun.c (adjust_pc_after_break): Rewrite decr logic,
4358 eliminate reference to step_sp.
4359 (struct execution_control_state, init_execution_control_state)
4360 (handle_inferior_event, keep_going): Delete update_step_sp and
4361 step_sp.
4362 * infcmd.c (step_sp): Note that variable is unused.
4363
4364 2004-05-11 Andrew Cagney <cagney@redhat.com>
4365
4366 * infrun.c (step_over_function): Delete function.
4367 (handle_step_into_function): Use insert_step_resume_breakpoint.
4368 (insert_step_resume_breakpoint): Fix assertion.
4369
4370 2004-05-11 Nick Roberts <nickrob@gnu.org>
4371
4372 * utils.c (defaulted_query): Just use the normal query input type
4373 when printing the annotations.
4374
4375 2004-05-11 Andrew Cagney <cagney@redhat.com>
4376
4377 * infrun.c (handle_inferior_event): Simplify code handling
4378 step-into or return-from a signal trampoline.
4379
4380 2004-05-11 Andrew Cagney <cagney@redhat.com>
4381
4382 * ppcnbsd-tdep.c: Include "gdb_assert.h".
4383 * Makefile.in (ppcnbsd-tdep.o): Update dependencies.
4384
4385 2004-05-10 Jim Blandy <jimb@redhat.com>
4386
4387 * ppc-bdm.c (bdm_ppc_fetch_registers): Replace utterly broken code
4388 with a call to internal_error.
4389
4390 * ppc-tdep.h (struct gdbarch_tdep): Change definition of
4391 ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
4392 processor variant lacks those registers.
4393 (ppc_floating_point_unit_p): Change description to make it clear
4394 that this returns info about the ISA, not the ABI.
4395 * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
4396 return true or false by checking tdep->ppc_fp0_regnum and
4397 tdep->ppc_fpscr_regnum. The original code replicated the BFD
4398 arch/mach switching done in rs6000_gdbarch_init; it's better to
4399 keep that logic there, and just check the results here.
4400 (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
4401 tdep->ppc_fpscr_regnum to -1 to indicate that we have no
4402 floating-point registers.
4403 (ppc_supply_fpregset, ppc_collect_fpregset)
4404 (rs6000_push_dummy_call, rs6000_extract_return_value)
4405 (rs6000_store_return_value): Assert that we have floating-point
4406 registers.
4407 (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
4408 (rs6000_frame_cache): Don't note the locations at which
4409 floating-point registers were saved if we have no fprs.
4410 * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
4411 registers.
4412 (fetch_regs_user_thread, fetch_regs_kernel_thread)
4413 (store_regs_user_thread, store_regs_kernel_thread): Only call
4414 supply_fprs / fill_fprs if we actually have floating-point
4415 registers.
4416 (special_register_p): Check ppc_fpscr_regnum before matching
4417 against it.
4418 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
4419 supply / collect fpscr if we don't have it.
4420 * ppc-bdm.c: #include "gdb_assert.h".
4421 (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
4422 have floating-point registers, since I can't test this code on
4423 FP-free systems to adapt it.
4424 * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
4425 fpscr and floating point register numbers if they don't exist.
4426 (fetch_register): Assert that we have floating-point registers
4427 before we reach the code that handles them.
4428 (store_register): Same. And use tdep instead of calling
4429 gdbarch_tdep again.
4430 (fill_fpregset): Don't try to collect FP registers and fpscr if we
4431 don't have them.
4432 (ppc_linux_sigtramp_cache): Don't record the saved locations of
4433 fprs and fpscr if we don't have them.
4434 (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
4435 don't have them.
4436 * ppcnbsd-nat.c: #include "gdb_assert.h".
4437 (getfpregs_supplies): Assert that we have floating-point registers.
4438 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
4439 * ppcobsd-tdep.c: #include "gdb_assert.h".
4440 (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
4441 have floating-point registers.
4442 * rs6000-nat.c (regmap): Don't match against the fpscr and
4443 floating point register numbers if they don't exist.
4444 (fetch_inferior_registers, store_inferior_registers,
4445 fetch_core_registers): Only fetch / store / supply the
4446 floating-point registers and the fpscr if we have them.
4447 * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
4448 (ppcobsd-tdep.o): Update dependencies.
4449
4450 2004-05-10 Andrew Cagney <cagney@redhat.com>
4451
4452 * infrun.c (through_sigtramp_breakpoint): Delete variable.
4453 (context_switch): Do not switch through_sigtramp_breakpoint.
4454 * gdbthread.h (save_infrun_state, load_infrun_state)
4455 (struct thread_info): Delete through_sigtramp_breakpoint parameter
4456 and structure member.
4457 * thread.c (load_infrun_state, save_infrun_state): Update.
4458
4459 2004-05-10 Mark Kettenis <kettenis@gnu.org>
4460
4461 * m68kbsd-tdep.c (m68kbsd_elf_init_abi): Call m68k_svr4_init_abi.
4462
4463 2004-05-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
4464
4465 * acinclude.m4: Quote macro names being defined by AC_DEFUN
4466 throughout.
4467 * aclocal.m4: Regenerate.
4468
4469 2004-05-10 Nathan J. Williams <nathanw@wasabisystems.com>
4470
4471 * alphanbsd-tdep.c: Fix include of "gdb_string.h".
4472
4473 2004-05-10 Andrew Cagney <cagney@redhat.com>
4474
4475 * infrun.c (check_sigtramp2): Delete function.
4476 (handle_inferior_event): When single stepping, and taking a
4477 signal, set a breakpoint at the signal return address. Delete
4478 redundant calls to check_sigtramp2.
4479 (insert_step_resume_breakpoint): New function.
4480 (through_sigtramp_breakpoint, handle_inferior_event)
4481 (follow_exec, wait_for_inferior, fetch_inferior_event)
4482 (currently_stepping, keep_going): Delete most uses of
4483 through_sigtramp_breakpoint, not that it should be deleted.
4484 (delete_breakpoint_current_contents): Delete function.
4485
4486 2004-05-10 Randolph Chung <tausq@debian.org>
4487
4488 * config/pa/linux.mt (TM_FILE): Use new tm-linux.h for hppa-linux
4489 target.
4490 * config/pa/tm-linux.h: New file.
4491
4492 2004-05-10 Daniel Jacobowitz <drow@mvista.com>
4493
4494 * cli/cli-setshow.c (cmd_show_list): Check for "show" in the middle
4495 of prefixes. Don't print the prefix twice in the CLI.
4496
4497 2004-05-10 Jim Blandy <jimb@redhat.com>
4498
4499 * rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do
4500 collect all the gprs.
4501
4502 * rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error in
4503 loop collecting gprs.
4504
4505 2004-05-09 Andrew Cagney <cagney@redhat.com>
4506
4507 * remote-vx.c (net_step): Delete step-range code.
4508 * remote.c (remote_resume, init_all_packet_configs)
4509 (set_remote_protocol_E_packet_cmd)
4510 (show_remote_protocol_E_packet_cmd)
4511 (remote_protocol_E, show_remote_cmd, _initialize_remote)
4512 (remote_protocol_e, set_remote_protocol_e_packet_cmd)
4513 (show_remote_protocol_e_packet_cmd): Ditto.
4514
4515 2004-05-09 Mark Kettenis <kettenis@gnu.org>
4516
4517 * hppa-tdep.h (enum hppa_regnum): Name enum, add HPPA_R1_REGNUM.
4518
4519 * hppa-tdep.h: Update copyright year.
4520 (struct trad_frame_saved_reg): Add opaque declaration.
4521
4522 * amd64-tdep.c (amd64_return_value): Implement
4523 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4524
4525 * m68k-tdep.c (m68k_convert_register_p, m68k_register_to_value)
4526 (m68k_value_to_register): New functions.
4527 (m68k_gdbarch_init): Set convert_register_p, register_to_value and
4528 value_to_register.
4529
4530 * defs.h (enum return_value_convention): Add
4531 RETURN_VALUE_ABI_RETURNS_ADDRESS and
4532 RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4533 * infcmd.c (legacy_return_value): New function.
4534 (print_return_value): Rwerite to implement
4535 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4536 * values.c (using_struct_return): Check for inequality to
4537 RETURN_VALUE_REGISTER_CONVENTION instead of equality to
4538 RETURN_VALUE_STRUCT_CONVENTION.
4539 * i386-tdep.c (i386_return_value): Implement
4540 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4541
4542 * vax-tdep.c: Tweak comments. Reorder include files. Don't
4543 include "symtab.h", "opcode/vax.h" and "inferior.h".
4544 (vax_skip_prologue): Replace calls to read_memory_integer by calls
4545 to read_memory_unsigned_integer.
4546 (vax_gdbarch_init): Reorder.
4547 (_initialize_vax_tdep): Spell out prototype.
4548 * Makefile.in (vax-tdep.o): Update dependencies.
4549
4550 2004-05-08 Andrew Cagney <cagney@redhat.com>
4551
4552 * infrun.c (resume): Delete call to DO_DEFERRED_STORES.
4553 * target.c (target_detach, target_disconnect): Ditto.
4554
4555 * infcall.c (call_function_by_hand): When no
4556 DEPRECATED_SAVE_DUMMY_FRAME_TOS call generic_save_dummy_frame_tos.
4557 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set
4558 DEPRECATED_SAVE_DUMMY_FRAME_TOS.
4559 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4560 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4561
4562 * gdbarch.sh (DEPRECATED_FIX_CALL_DUMMY): Delete.
4563 * gdbarch.h, gdbarch.c: Re-generate.
4564 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4565 deprecated_fix_call_dummy.
4566 * v850-tdep.c (v850_gdbarch_init): Ditto.
4567 * infcall.c (call_function_by_hand): Do not call
4568 DEPRECATED_FIX_CALL_DUMMY.
4569
4570 * gdbarch.sh (DEPRECATED_CALL_DUMMY_WORDS)
4571 (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Delete.
4572 * gdbarch.h, gdbarch.c: Re-generate.
4573 * arm-linux-tdep.c (arm_linux_call_dummy_words)
4574 (arm_linux_init_abi): Do not set deprecated_call_dummy_words or
4575 deprecated_sizeof_call_dummy_words.
4576 * arm-tdep.c (arm_call_dummy_words, arm_gdbarch_init): Ditto.
4577 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
4578 * v850-tdep.c (v850_gdbarch_init): Ditto.
4579 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
4580 * ns32k-tdep.c (ns32k_call_dummy_words, ns32k_gdbarch_init): Ditto.
4581 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4582 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4583 * arch-utils.h (legacy_call_dummy_words)
4584 (legacy_sizeof_call_dummy_words): Delete declarations.
4585 * arch-utils.c (legacy_call_dummy_words)
4586 (legacy_sizeof_call_dummy_words): Delete variables.
4587
4588 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Delete.
4589 * gdbarch.h, gdbarch.c: Re-generate.
4590 * inferior.h (PUSH_DUMMY_FRAME): Delete macro.
4591 * infcall.c (call_function_by_hand): Eliminate call to
4592 DEPRECATED_PUSH_DUMMY_FRAME.
4593 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
4594 push_dummy_frame.
4595 (ns32k_push_dummy_frame): Delete function.
4596
4597 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4598 deprecated_call_dummy_breakpoint_offset or
4599 deprecated_call_dummy_start_offset.
4600 * dummy-frame.c, arm-tdep.c: Update comments.
4601 * gdbarch.sh (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET)
4602 (DEPRECATED_CALL_DUMMY_START_OFFSET): Delete.
4603 * gdbarch.h, gdbarch.c: Re-generate.
4604
4605 * infcall.c (legacy_push_dummy_code): Delete function.
4606 (push_dummy_code): Delete call.
4607
4608 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete.
4609 * gdbarch.h, gdbarch.c: Re-generate.
4610 * blockframe.c (legacy_frame_chain_valid): Simplify by eliminating
4611 DEPRECATED_USE_GENERIC_DUMMY_FRAMES.
4612 * infcall.c (legacy_push_dummy_code, call_function_by_hand): Ditto.
4613 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Ditto.
4614
4615 * breakpoint.h (deprecated_frame_in_dummy): Delete declaration.
4616 (struct frame_info): Delete opaque declaration.
4617 * breakpoint.c (deprecated_frame_in_dummy): Delete function.
4618 * frame.c (get_frame_type): Delete call.
4619
4620 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
4621 pc_in_call_dummy.
4622 * inferior.h (deprecated_pc_in_call_dummy_on_stack): Delete.
4623 * blockframe.c (deprecated_pc_in_call_dummy_on_stack): Delete.
4624
4625 2004-05-08 Mark Kettenis <kettenis@gnu.org>
4626
4627 * alphanbsd-tdep.c: Include "gdb_string.h".
4628 * armnbsd-tdep.c: Update copyright year.
4629 Include "gdb_string.h".
4630 * Makefile.in (alphanbsd-tdep.o, armnbsd-tdep.o): Update
4631 dependencies.
4632
4633 * delta68-nat.c: Remove file.
4634 * m68k-tdep.c (delta68_in_sigtramp, delta68_frame_args_address)
4635 (delta68_frame_saved_pc, delta68_frame_num_args): Remove functions.
4636 * Makefile.in (ALLDEPFILES): Remove delta68-nat.c.
4637 (delta68-nat.o): Remove dependency.
4638
4639 * m68k-tdep.c (m68k_frameless_function_invocation): Remove
4640 function.
4641 (m68k_gdbarch_init): Don't set
4642 deprecated_frameless_function_invocation.
4643
4644 2004-05-07 Randolph Chung <tausq@debian.org>
4645
4646 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
4647 read_memory_nobpt for code reading when doing frame unwinding.
4648 * hppa-linux-tdep.c (insns_match_pattern): Likewise.
4649
4650 2004-05-07 Randolph Chung <tausq@debian.org>
4651
4652 * hppa-linux-tdep.c (hppa_linux_sigtramp_find_sigcontext): Pass in pc
4653 instead of sp, handle sigaltstack case.
4654 (hppa_linux_sigtramp_frame_unwind_cache): Adjust calls to
4655 hppa_linux_sigtramp_find_sigcontext, and set base to the frame of the
4656 signal handler and not that of the caller.
4657 (hppa_linux_sigtramp_unwind_sniffer): Adjust calls to
4658 hppa_linux_sigtramp_find_sigcontext.
4659
4660 2004-05-07 Randolph Chung <tausq@debian.org>
4661
4662 * Makefile.in (ALLDEPFILES): Add hppa-linux-tdep.c and
4663 hppa-linux-nat.c.
4664 (hppa-linux-tdep.o, hppa-linux-nat.o): Define rules.
4665 * hppa-linux-nat.c (fetch_register, store_register): Define.
4666 (fetch_inferior_registers, store_inferior_registers): Define.
4667 (supply_gregset): Add comment and clean up some unneeded code.
4668 (fill_gregset): Add comment and fix so that it saves registers in
4669 the right place in the gregset.
4670 (fill_fpregset): Fix buffer overrun problem.
4671 * config/pa/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
4672
4673 2004-05-07 Randolph Chung <tausq@debian.org>
4674
4675 * hppa-tdep.c (hppa_frame_prev_register_helper): New function to
4676 do common handling of the pcoqt register.
4677 (hppa_frame_prev_register, hppa_stub_frame_prev_register): Convert
4678 to use helper function.
4679 (hppa_frame_unwind_sniffer): Only use if unwind entry is present.
4680 (hppa_fallback_frame_cache, hppa_fallback_frame_this_id)
4681 (hppa_fallback_frame_prev_register, hppa_fallback_frame_unwind): New
4682 generic fallback unwinder when all else fails.
4683 (hppa_gdbarch_init): Add fallback sniffer.
4684 * hppa-tdep.h (hppa_frame_prev_register_helper): Prototype.
4685 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register): Convert
4686 to use helper function.
4687
4688 2004-05-08 Joel Brobecker <brobecker@gnat.com>
4689
4690 * config/djgpp/fnchange.lst: Add translation rules for
4691 gdb.arch/powerpc-aix-prologue.c and gdb.arch/powerpc-aix-prologue.exp.
4692
4693 2004-05-08 Mark Kettenis <kettenis@gnu.org>
4694
4695 * frame.c (get_prev_frame_1): Work around GCC bug.
4696 * frame.h: Add comment about GCC bug.
4697
4698 2004-05-07 Andrew Cagney <cagney@redhat.com>
4699
4700 * observer.c: Include "commands.h" and "gdbcmd.h".
4701 (observer_debug, _initialize_observer): Add the
4702 command "set/show debug observer".
4703 * observer.sh: When observer debugging, log notify calls.
4704 * Makefile.in (observer.o): Update dependencies.
4705
4706 2004-05-07 Jason Molenda (jmolenda@apple.com)
4707
4708 * cli/cli-decode.c: Fix "SHOW_DOR" comment typeos.
4709
4710 2004-05-07 Jim Blandy <jimb@redhat.com>
4711
4712 * aix-thread.c (fetch_regs_kernel_thread, fill_gprs64,
4713 fill_gprs32, store_regs_kernel_thread): Use tdep->ppc_gp0_regnum
4714 to recognize gpr regnums, instead of assuming that
4715 tdep->ppc_fp0_regnum marks the end of the general-purpose
4716 registers.
4717
4718 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Assert that
4719 the given architecture has floating-point registers.
4720
4721 2004-05-07 Andrew Cagney <cagney@redhat.com>
4722
4723 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Replace with
4724 macro defined to 1.
4725 * gdbarch.h, gdbarch.c: Re-generate.
4726 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4727 deprecated_use_generic_dummy_frames.
4728
4729 2004-05-07 Brian Ford <ford@vss.fsi.com>
4730
4731 * NEWS: Mention Cygwin DWARF 2 support.
4732
4733 2004-05-07 Andrew Cagney <cagney@redhat.com>
4734
4735 * objfiles.h (struct entry_info): Delete unused fields
4736 deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
4737 * objfiles.c (init_entry_point_info, objfile_relocate): Update.
4738 * mipsread.c (mipscoff_symfile_read): Update.
4739 * mdebugread.c (parse_partial_symbols): Update.
4740 * dwarfread.c (read_file_scope): Update.
4741 * dwarf2read.c (read_file_scope): Update.
4742 * dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
4743 * coffread.c (complete_symtab): Update.
4744
4745 2004-05-07 Mark Kettenis <kettenis@gnu.org>
4746
4747 * infcall.c (_initialize_infcall): Fix typo.
4748
4749 2004-05-07 Andrew Cagney <cagney@redhat.com>
4750
4751 * cli/cli-decode.c (add_setshow_zinteger_cmd): New function.
4752 * command.h (add_setshow_zinteger_cmd): Declare.
4753
4754 2004-05-06 Randolph Chung <tausq@debian.org>
4755
4756 * config/pa/tm-hppa.h (RO_REGNUM, FLAGS_REGNUM, RP_REGNUM)
4757 (HPPA_FP_REGNUM, HPPA_SP_REGNUM, SAR_REGNUM, IPSW_REGNUM)
4758 (PCOQ_HEAD_REGNUM, PCSQ_HEAD_REGNUM, PCOQ_TAIL_REGNUM, PCSQ_TAIL_REGNUM)
4759 (EIEM_REGNUM, IIR_REGNUM, ISR_REGNUM, IOR_REGNUM, SR4_REGNUM)
4760 (RCR_REGNUM, PID0_REGNUM, PID1_REGNUM, PID2_REGNUM, PID3_REGNUM)
4761 (CCR_REGNUM, TR0_REGNUM, CR27_REGNUM, HPPA_FP0_REGNUM, FP4_REGNUM)
4762 (ARG0_REGNUM, ARG1_REGNUM, ARG2_REGNUM, ARG3_REGNUM): Move *_REGNUM
4763 definitions ...
4764 * hppa-tdep.h: ... to here, with HPPA_ prefix.
4765 * Makefile.in (hppah-nat.o): Add $(hppa_tdep_h)
4766 * hppa-hpux-tdep.c (hppa32_hpux_frame_find_saved_regs_in_sig)
4767 (hppa64_hpux_frame_find_saved_regs_in_sig)
4768 (child_get_current_exception_event): Add HPPA_ prefix to *_REGNUM usage.
4769 * hppa-linux-nat.c (GR_REGNUM, TR_REGNUM, greg_map): Likewise.
4770 * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum)
4771 (hppa_linux_target_write_pc, hppa_linux_sigtramp_frame_unwind_cache)
4772 (hppa_linux_sigtramp_frame_prev_register): Likewise.
4773 * hppa-tdep.c (hppa32_return_value, hppa64_return_value)
4774 (hppa32_push_dummy_call, hppa64_push_dummy_call, hppa64_frame_align)
4775 (hppa_target_read_pc, hppa_target_write_pc, hppa_frame_cache)
4776 (hppa_frame_prev_register, hppa_stub_frame_unwind_cache)
4777 (hppa_stub_frame_prev_register, hppa_unwind_dummy_id)
4778 (hppa_skip_permanent_breakpoint, hppa_instruction_nullified)
4779 (hppa32_register_type, hppa_cannot_store_register)
4780 (hppa_fetch_pointer_argument, hppa_pseudo_register_read): Likewise.
4781 * hppah-nat.c (store_inferior_registers, fetch_register): Likewise.
4782 * hpread.c (hpread_process_one_debug_symbol): Likewise.
4783 * pa64solib.c (pa64_solib_have_load_event)
4784 (pa64_solib_have_unload_event, pa64_solib_loaded_library_pathname)
4785 (pa64_solib_unloaded_library_pathname): Likewise.
4786 * somsolib.c (som_solib_have_load_event, som_solib_have_unload_event)
4787 (som_solib_library_pathname): Likewise.
4788
4789 2004-05-05 Jim Ingham <jingham@apple.com>
4790
4791 * breakpoint.c (create_breakpoints): Copy the ignore count and
4792 thread id over from the pended breakpoint to the actual
4793 breakpoint.
4794
4795 2004-05-05 Andrew Cagney <cagney@redhat.com>
4796
4797 * gdbarch.sh (PARM_BOUNDARY): Delete.
4798 gdbarch.h, gdbarch.c: Re-generate.
4799 * valops.c (PARM_BOUNDARY): Delete macro.
4800 (value_push): Delete PARM_BOUNDARY code.
4801 * m68k-tdep.c (m68k_gdbarch_init): Do not set parm_boundary.
4802
4803 2004-05-04 Jim Blandy <jimb@redhat.com>
4804
4805 * ppc-linux-nat.c (fetch_ppc_registers, store_ppc_registers):
4806 Don't assume that the gprs, fprs, and UISA sprs are
4807 contiguous, start at register number zero, and end with fpscr.
4808 Instead, use the numbers from the tdep structure.
4809
4810 * config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
4811 should no longer be used in code specific to the RS6000 and its
4812 derivatives.
4813 * ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
4814 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize
4815 tdep->ppc_fp0_regnum.
4816 (ppc_supply_fpregset, ppc_collect_fpregset)
4817 (rs6000_push_dummy_call, rs6000_extract_return_value)
4818 (rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
4819 (rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
4820 FP0_REGNUM.
4821 * aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
4822 (fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
4823 Same.
4824 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
4825 bdm_ppc_store_registers): Same.
4826 * ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
4827 (store_register, fill_fpregset): Same.
4828 * ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
4829 (ppc_linux_supply_fpregset): Same.
4830 * ppcnbsd-nat.c (getfpregs_supplies): Same.
4831 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
4832 Same.
4833 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call,
4834 do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call,
4835 ppc64_sysv_abi_return_value): Same.
4836 * rs6000-nat.c (regmap, fetch_inferior_registers)
4837 (store_inferior_registers, fetch_core_registers): Same.
4838
4839 2004-05-01 Mark Kettenis <kettenis@gnu.org>
4840
4841 * m68knbsd-nat.c: Remove file.
4842 * m68knbsd-tdep.c: Remove file.
4843 * Makefile.in: (m68knbsd-nat.o, m68knbsd-tdep.o): Remove
4844 dependencies.
4845 * configure.host: Add m68k-*-netbsdelf*.
4846 * configure.tgt (m68k-*-netbsd*): Set gdb_target to nbsd.
4847 * config/m68k/nbsdaout.mh (NATDEPFILES): Add m68kbsd-nat.o,
4848 solib.o and solib-sunos.o. Remove m68knbsd-nat.o, corelow.o.
4849 (XM_FILE): Remove.
4850 * config/m68k/nbsdelf.mh: New file.
4851 * config/m68k/nbsd.mt: New file.
4852 * config/m68k/nbsdaout.mt: Remove file.
4853 * config/m68k/tm-nbsd.h: Don't include <sys/param.h>,
4854 <machine/vmparam.h> and "m68k/tm-m68k.h". Include "solib.h".
4855 (BPT_VECTOR, STACK_END_ADDR): Remove defines.
4856 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Likewise.
4857 (use_struct_convention): Remove prototype.
4858 (USE_STRUCT_CONVENTION): Remove define.
4859 * config/m68k/xm-nbsd.h: Remove file.
4860
4861 2004-05-04 Michael Snyder <msnyder@redhat.com>
4862
4863 * m68k-tdep.c (m68k_gdbarch_init): Default to using
4864 reg_struct_return method (as gcc usually does for cross targets).
4865
4866 2004-05-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4867
4868 Committed by Andrew Cagney.
4869 * s390-tdep.c (s390_sigtramp_frame_unwind_cache): Account for
4870 alignment padding when accessing ucontext struct members.
4871
4872 2004-05-04 Jim Blandy <jimb@redhat.com>
4873
4874 * config/ppc-tdep.h (struct gdbarch_tdep): Delete
4875 'ppc_gplast_regnum' member.
4876 (ppc_num_gprs): New enum constant.
4877 * ppc-linux-nat.c (ppc_register_u_addr): Use tdep->ppc_gp0_regnum
4878 and ppc_num_gprs instead of tdep->ppc_gplast_regnum.
4879 * rs6000-nat.c (regmap, fetch_inferior_registers,
4880 store_inferior_registers): Same.
4881 * rs6000-tdep.c (e500_pseudo_register_read)
4882 (e500_pseudo_register_write): Same.
4883 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gplast_regnum.
4884
4885 * config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
4886 * ppc-tdep.h (ppc_num_fprs): New enum constant.
4887 * aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
4888 store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
4889 FPLAST_REGNUM.
4890 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
4891 Same.
4892 * ppc-linux-nat.c (ppc_register_u_addr): Same.
4893 * rs6000-nat.c (regmap, fetch_inferior_registers)
4894 (store_inferior_registers): Same.
4895
4896 * aix-thread.c (fill_fprs): Fix off-by-one error comparing regno
4897 with FPLAST_REGNUM.
4898
4899 2004-05-03 Joel Brobecker <brobecker@gnat.com>
4900
4901 * dwarf2read.c (dwarf2_create_include_psymtab): Fix build
4902 failure detected by recent versions of GCC.
4903 (psymtab_to_symtab_1): No longer use the PST_PRIVATE macro
4904 to be consistent with the usage in dwarf2_create_include_psymtab.
4905
4906 2004-05-03 Michael Snyder <msnyder@redhat.com>
4907
4908 * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
4909 (heuristic_proc_start): Whitespace cleanup.
4910
4911 2004-05-04 Mark Kettenis <kettenis@gnu.org>
4912
4913 * sun3-nat.c: Remove file.
4914 * Makefile.in (tm-sun3.h tm-altos.h tm-sun2.h tm-3b1.h): Remove
4915 dependencies.
4916 (ALLDEPFILES): Remove sun3-nat.c.
4917 (sun3-nat.o): Remove dependencies.
4918
4919 * i386-interix-nat.c, i386-interix-tdep.c,
4920 config/i386/nm-interix.h, config/i386/interix.mh,
4921 config/i386/interix.mt: Remove files.
4922 * Makefile.in (i386-interix-nat.o, i386-interix-tdep.o): Remove
4923 dependencies.
4924
4925 2004-05-03 Mark Kettenis <kettenis@gnu.org>
4926
4927 * m68k-tdep.h (struct gdbarch_tdep): Add member
4928 struct_value_regnum.
4929 (m68k_svr4_init_abi): New prototype.
4930 * m68k-tdep.c: Include "floatformat.h". Add comment about all the
4931 different calling conventions.
4932 (m68k_extract_return_value): Remove code dealing with single-field
4933 structs.
4934 (m68k_store_return_value): Remove code dealing with single-field
4935 structs. Correctly store return values of 5, 6, 7 or 8 bytes.
4936 (m68k_extract_struct_value_address): Remove function.
4937 (m68k_svr4_extract_return_value,m68k_svr4_store_return_value)
4938 (m68k_reg_struct_return_p, m68k_return_value)
4939 (m68k_svr4_return_value): New functions.
4940 (m68k_use_struct_convention): Remove function.
4941 (m68k_push_dummy_call): Use new struct_value_regnum member of
4942 `struct gdbarch_tdep' instead of hardcoded register number to
4943 store STRUCT_ADDR.
4944 (m68k_svr4_init_abi): New function.
4945 (m68k_gdbarch_init): Don't set extract_return_value,
4946 store_return_values, deprecated_extract_struct_value_address and
4947 use_struct_convention. Set return_value instead. Initialize new
4948 struct_value_regnum member of `struct gdbarch_tdep'.
4949 * m68klinux-tdep.c: Update copyright year.
4950 (m68k_linux_extract_return_value, m68k_linux_store_return_value)
4951 (m68k_linux_extract_struct_value_address): Remove function.
4952 (m68k_linux_init_abi): Don't set extract_return_value,
4953 store_return_values, deprecated_extract_struct_value_address and
4954 use_struct_convention. Call m68k_svr4_init_abi but override the
4955 new struct_value_regnum member of `struct gdbarch_tdep'.
4956 * Makefile.in (m68k-tdep.o): Update dependencies.
4957
4958 2004-05-03 J. Brobecker <brobecker@gnat.com>
4959
4960 * dwarf2read.c (line_header): Add new included_p field in
4961 field file_names.
4962 (partial_die_info): New field has_stmt_list. New field line_offset.
4963 (dwarf2_create_include_psymtab): New function.
4964 (dwarf2_build_include_psymtabs): New function.
4965 (add_file_name): Add forward declaration. Initialize new field.
4966 (dwarf_decode_lines): Add new parameter. Enhance this procedure
4967 to be able to determine the list of files included by the
4968 given unit, and build their associated psymtabs.
4969 (dwarf2_build_psymtabs_hard): Build the psymtabs for the included
4970 files as well.
4971 (psymtab_to_symtab_1): Build the symtabs of all dependencies as well.
4972 (read_file_scope): Update call to dwarf_decode_lines.
4973 (read_partial_die): Handle DW_AT_stmt_list attributes.
4974
4975 2004-05-02 Michael Chastain <mec.gnu@mindspring.com>
4976
4977 Unfix PR gdb/1626.
4978 * configure.in: Revert special case for osf5.*.
4979 * configure: Regenerate.
4980
4981 2004-05-02 Jim Blandy <jimb@redhat.com>
4982
4983 Move the symbol-file-from-memory functions into their own file.
4984 * symfile-mem.c, symfile-mem.h: New files.
4985 * symfile.c (symbol_file_add_from_bfd): New function.
4986 (symbol_file_add): Call symbol_file_add_from_bfd.
4987 (symbol_file_add_from_memory, add_symbol_file_from_memory_command):
4988 Moved to symfile-mem.c.
4989 (_initialize_symfile): Move definition of
4990 add-symbol-file-from-memory command to symfile-mem.c.
4991 * symfile.h (symbol_file_add_from_bfd): New declaration.
4992 * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
4993 * config/powerpc/linux.mt (TDEPFILES): Same.
4994 * Makefile.in (SFILES): Add symfile-mem.c.
4995 (symfile_mem_h): New variable.
4996 (HFILES_NO_SRCDIR): Add symfile-mem.h.
4997 (symfile-mem.o): New rule.
4998
4999 2004-05-01 Andrew Cagney <cagney@redhat.com>
5000
5001 * breakpoint.c (insert_bp_location): Use get_frame_id, and
5002 frame_find_by_id instead of frame_relative_level.
5003 (do_enable_breakpoint): Ditto.
5004 * thread.c: Update copyright.
5005 (info_threads_command): Ditto, simplify.
5006
5007 * frame.c (deprecated_generic_get_saved_register): Delete
5008 function, moved to "xstormy16-tdep.c".
5009 * xstormy16-tdep.c (xstormy16_get_saved_register): Inline
5010 deprecated_generic_get_saved_register from "frame.c".
5011 (xstormy16_frame_saved_register): Call
5012 xstormy16_get_saved_register.
5013 * dummy-frame.c (deprecated_find_dummy_frame_regcache): Make
5014 static.
5015 * dummy-frame.h (deprecated_find_dummy_frame_regcache): Delete.
5016 * frame.h (deprecated_generic_get_saved_register): Delete.
5017
5018 2004-05-01 Michael Chastain <mec.gnu@mindspring.com>
5019
5020 * dwarfread.c: Update documentation on the state of dwarf-1.
5021
5022 2004-05-01 Andrew Cagney <cagney@redhat.com>
5023
5024 * stack.c (select_frame_command): Delete call to
5025 frame_relative_level.
5026 (print_frame, set_backtrace_limit_command, backtrace_limit_info):
5027 Delete #if0 code.
5028 (frame_info): Do not print FRAMELESS.
5029 (print_block_frame_labels): Replace DEPRECATED_STREQ.
5030 (catch_info): Delete #if0 code.
5031
5032 * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
5033 * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
5034 of frame_relative_level.
5035 * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
5036 to SENTINEL_FRAME.
5037 * frame.h (enum frame_type): Add SENTINEL_FRAME.
5038 * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
5039 frame_relative_level.
5040
5041 * frame.h (deprecated_set_frame_type): Delete declaration.
5042 * frame.c (deprecated_set_frame_type): Delete function, update
5043 comments.
5044
5045 * gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
5046 * gdbarch.h, gdbarch.c: Re-generate.
5047 * shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
5048 (shnbsd_pc_in_sigtramp): Delete.
5049 * i386-interix-tdep.c (i386_interix_init_abi): Do not set
5050 pc_in_sigtramp.
5051 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
5052 pc_in_sigtramp.
5053 * frame.h: Update comments.
5054 * ppc-linux-tdep.c: Update comments.
5055 * breakpoint.c (bpstat_what): Update comments.
5056
5057 * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix
5058 m68klinux-tdep.o's dependencies, were previously added to
5059 m68klinux-nat.o.
5060
5061 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Use pc_in_sigtramp.
5062 * alpha-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp.
5063 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
5064 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
5065 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
5066
5067 * Makefile.in (m68klinux-nat.o): Update dependencies.
5068 * m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
5069 (m68k_linux_sigtramp_frame_cache)
5070 (m68k_linux_sigtramp_frame_this_id)
5071 (m68k_linux_sigtramp_frame_prev_register)
5072 (m68k_linux_sigtramp_frame_unwind)
5073 (m68k_linux_sigtramp_frame_sniffer)
5074 (struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
5075 m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
5076 names, use trad-frame.h.
5077 * m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
5078 (struct m68k_sigtramp_info): Delete.
5079 * m68k-tdep.c (m68k_sigtramp_frame_cache)
5080 (m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
5081 (m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
5082 (m68k_gdbarch_init): Delete all the sigtramp code, moved to
5083 "m68klinux-tdep.c".
5084
5085 * infrun.c (check_sigtramp2): Delete check for
5086 DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.
5087
5088 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5089
5090 * m68k-tdep.h (m68kbsd_fpreg_offset): New prototype.
5091
5092 2004-05-01 Andrew Cagney <cagney@redhat.com>
5093
5094 * frv-linux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
5095 (frv_linux_sigtramp_frame_cache)
5096 (frv_linux_sigtramp_frame_this_id)
5097 (frv_linux_sigtramp_frame_prev_register)
5098 (frv_linux_sigtramp_frame_unwind)
5099 (frv_linux_sigtramp_frame_sniffer): Copied from frv-tdep.c,
5100 include "linux" in function and variable names, directly call
5101 frv_linux_pc_in_sigtramp and frv_linux_sigcontext_reg_addr, use
5102 the latest trad-frame code.
5103 (frv_linux_init_abi): Append frv_linux_sigtramp_frame_sniffer, do
5104 not set frv_sigcontext_reg_addr or deprecated_pc_in_sigtramp
5105 * Makefile.in (frv-linux-tdep.o): Update dependencies.
5106 * frv-tdep.h (frv_set_sigcontext_reg_addr): Delete declaration.
5107 * frv-tdep.c (frv_sigtramp_frame_cache)
5108 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
5109 (frv_sigtramp_frame_unwind, frv_sigtramp_frame_sniffer): Moved to
5110 frv-linux-tdep.c.
5111 (frv_gdbarch_init): Do not append a sigtramp sniffer.
5112 (struct gdbarch_tdep): Delete sigcontext_reg_addr.
5113 (frv_set_sigcontext_reg_addr): Delete function.
5114
5115 * gdbarch.sh (DEPRECATED_SIGTRAMP_START)
5116 (DEPRECATED_SIGTRAMP_END): Delete.
5117 * gdbarch.h, gdbarch.c: Re-generate.
5118 * arch-utils.c (legacy_pc_in_sigtramp): Simplify.
5119 * config/vax/tm-vaxbsd.h: Update copyright.
5120 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
5121 (DEPRECATED_IN_SIGTRAMP): Define.
5122 * config/m68k/tm-nbsd.h: Update copyright.
5123 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
5124 (DEPRECATED_IN_SIGTRAMP): Define.
5125
5126 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5127
5128 * dwarf2-frame.c (read_encoded_value): Handle DW_EH_PE_funcrel
5129 encondings. Fixes PR gdb/1628.
5130
5131 * dwarf2-frame.c (execute_cfa_program): Complain if we encounter a
5132 DW_CFA_restore state without a matching DW_CFA_remember_state
5133 instead of aborting. Fixes PR backtrace/1589.
5134
5135 2004-04-30 Joel Brobecker <brobecker@gnat.com>
5136
5137 * MAINTAINERS: Add self as AIX maintainer.
5138 Update my e-mail address in write-after-approval section.
5139
5140 2004-04-30 Andrew Cagney <cagney@redhat.com>
5141
5142 * frame.c (frame_type_from_pc): Delete call to PC_IN_SIGTRAMP.
5143 (legacy_get_prev_frame): Ditto.
5144
5145 * mips-tdep.c (mips_pc_in_sigtramp): Delete.
5146 (mips_gdbarch_init): Do not set pc_in_sigtramp.
5147 * mipsread.c (sigtramp_address): Delete extern variable.
5148 (mipscoff_new_init): Delete reference.
5149 * mdebugread.c (sigtramp_address, sigtramp_end): Delete variables.
5150 (fixup_sigtramp): Delete function.
5151 * config/mips/tm-mips.h (sigtramp_address, sigtramp_end)
5152 (fixup_sigtramp): Delete declarations.
5153
5154 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Do not set
5155 deprecated_pc_in_sigtramp.
5156 (ppcnbsd_pc_in_sigtramp): Delete function.
5157
5158 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5159
5160 * config/m68k/nm-nbsd.h: Tweak comments.
5161 * config/m68k/nm-nbsdaout.h: Likewise.
5162
5163 2004-04-30 Andrew Cagney <cagney@redhat.com>
5164
5165 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Call
5166 legacy_pc_in_sigtramp.
5167 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Ditto.
5168
5169 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5170
5171 Add OpenBSD/m68k support.
5172 * NEWS (New native configurations): Mention OpenBSD/m68k.
5173 * m68kbsd-tdep.c: New file.
5174 * m68kbsd-nat.c: New file.
5175 * Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
5176 (m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
5177 * configure.host: Add m68k-*-openbsd.
5178 * configure.tgt: Add m68k-*-openbsd.
5179 * config/m68k/tm-obsd.h: New file.
5180 * config/m68k/obsd.mt: New file.
5181 * config/m68k/obsd.mh: New file.
5182 * config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
5183 m68kbsd-tdep.c.
5184
5185 2004-04-30 Andrew Cagney <cagney@redhat.com>
5186
5187 * mipsnbsd-tdep.c (mipsnbsd_pc_in_sigtramp): Delete function.
5188 (mipsnbsd_init_abi): Do not set pc_in_sigtramp.
5189
5190 2004-04-30 Mark Kettenis <kettenis@gnu.org>
5191
5192 * m68k-tdep.c (REMOTE_BPT_VECTOR): Remove define.
5193 * config/m68k/tm-nbsd.h (REMOTE_BPT_VECTOR): Remove define.
5194
5195 2004-04-30 Brian Ford <ford@vss.fsi.com>
5196
5197 Revert 2004-04-16 change.
5198 * i386-tdep.c (i386_gdbarch_init): Fix comment typos.
5199 (i386_coff_init_abi): Remove.
5200 * i386-tdep.h (i386_coff_init_abi): Remove.
5201 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Remove call to above.
5202
5203 2004-04-30 Andrew Cagney <cagney@redhat.com>
5204
5205 * blockframe.c (find_pc_partial_function): Delete use of
5206 DEPRECATED_PC_IN_SIGTRAMP, DEPRECATED_SIGTRAMP_START and
5207 DEPRECATED_SIGTRAMP_END.
5208
5209 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
5210 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
5211 * config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
5212 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
5213 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
5214
5215 * defs.h (deprecated_inside_entry_file): Delete declaration.
5216 * blockframe.c (deprecated_inside_entry_file): Delete function.
5217 (legacy_frame_chain_valid): Delete call.
5218 * sh64-tdep.c (sh64_frame_chain): Delete call.
5219 * objfiles.h: Update comments.
5220 * i386-interix-tdep.c (i386_interix_frame_chain_valid): Delete
5221 call.
5222 * frame.c (get_prev_frame): Delete call, update comments.
5223
5224 2004-04-30 Brian Ford <ford@vss.fsi.com>
5225
5226 * MAINTAINERS (Write After Approval): Add myself.
5227
5228 2004-04-30 Andrew Cagney <cagney@redhat.com>
5229
5230 * gdbarch.sh (BELIEVE_PCC_PROMOTION_TYPE): Delete.
5231 * gdbarch.h, gdbarch.c: Re-generate.
5232 * stabsread.c (define_symbol): Delete BELIEVE_PCC_PROMOTION_TYPE
5233 code.
5234
5235 2004-04-30 Andrew Cagney <cagney@redhat.com>
5236
5237 * gdb-events.sh (selected_thread_changed)
5238 (selected_frame_level_changed, target_changed): Delete.
5239 * gdb-events.h, gdb-events.c: Re-generate.
5240 * valops.c (value_assign): Update.
5241 * stack.c (select_frame_command, up_silently_base)
5242 (down_silently_base): Update.
5243
5244 2004-04-29 Andrew Cagney <cagney@redhat.com>
5245
5246 * mips-tdep.c (mips_register_type): Re-write, handle 32-bit ABI
5247 registers correctly.
5248 (print_gp_register_row, mips32_heuristic_proc_desc)
5249 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
5250 (mips_o64_push_dummy_call, mips_eabi_push_dummy_call): Eliminate
5251 references to mips_isa_regsize.
5252
5253 2004-04-29 Andrew Cagney <cagney@redhat.com>
5254
5255 * mips-tdep.c (struct gdbarch_tdep): Delete
5256 mips_fp_register_double.
5257 (FP_REGISTER_DOUBLE): Delete macro, replace with test for
5258 mips_abi_regsize.
5259 (mips_gdbarch_init): Do not set mips_fp_register_double.
5260 (mips_dump_tdep): Do not print FP_REGISTER_DOUBLE.
5261
5262 2004-04-29 Joel Brobecker <brobecker@gnat.com>
5263
5264 Committed by Andrew Cagney.
5265 * infrun.c (handle_inferior_event): Rely on frame IDs to detect
5266 function calls.
5267
5268 2004-04-29 Andrew Cagney <cagney@redhat.com>
5269
5270 * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with
5271 gdbarch, use mips_abi, update callers.
5272 (mips_stack_argsize): Replace tdep parameter with gdbarch, use
5273 mips_abi_regsize, update callers.
5274 (struct gdbarch_tdep): Delete mips_default_stack_argsize and
5275 mips_default_abi_regsize.
5276 (mips_gdbarch_init): Do not set mips_default_stack_argsize and
5277 mips_default_abi_regsize.
5278
5279 2004-04-29 Andrew Cagney <cagney@redhat.com>
5280
5281 * mips-tdep.c (mips_abi_regsize): Rename mips_saved_regsize.
5282 (mips_abi_regsize_string): Rename mips_saved_regsize_string.
5283 (struct gdbarch_tdep): Rename mips_default_saved_regsize to
5284 mips_default_abi_regsize.
5285 (mips_isa_regsize): Rename mips_regisze.
5286 * mipsnbsd-tdep.c: Update.
5287 * mips-linux-tdep.c: Update.
5288 * irix5-nat.c: Update.
5289 * mips-tdep.h (mips_isa_regsize): Update.
5290
5291 * gdb-events.sh (WITH_GDB_EVENTS): Delete macro and references.
5292 Delete all disabled code.
5293 * gdb-events.h, gdb-events.c: Re-generate.
5294
5295 2004-04-19 Jerome Guitton <guitton@gnat.com>
5296 Mark Kettenis <kettenis@gnu.org>
5297
5298 * i386-tdep.c (i386_skip_prologue): follow the last jump only if
5299 the function begins with a branch instruction.
5300
5301 2004-04-29 Mark Kettenis <kettenis@gnu.org>
5302
5303 * i386-tdep.c: Fix spelling mistakes.
5304
5305 2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5306 Andrew Cagney <cagney@redhat.com>
5307
5308 * configure.in (mips-sgi-irix5*): Define _KMEMUSER for
5309 <sys/proc.h>.
5310 * acconfig.h: Provide default _KMEMUSER value.
5311 * config.in, configure: Re-generate.
5312 * NEWS: Mention fix.
5313
5314 2004-04-24 Randolph Chung <tausq@debian.org>
5315
5316 * configure.host (hppa*-*-linux*): New target.
5317 * configure.tgt (hppa*-*-linux*): Likewise.
5318 * hppa-tdep.c (hppa_gdbarch_init): Set cannot_fetch_register, move
5319 gdbarch_init_osabi() call earlier so that osabi-specific frame
5320 unwinders can be registered first.
5321 * config/djgpp/fnchange.lst: Add entries for hppa-linux-tdep.c and
5322 hppa-linux-nat.c.
5323 * config/pa/tm-hppa.h (ISR_REGNUM, PID0_REGNUM, PID1_REGNUM)
5324 (PID2_REGNUM, PID3_REGNUM): Add definitions of some register numbers.
5325 * config/pa/linux.mh: New file.
5326 * config/pa/linux.mt: New file.
5327 * config/pa/nm-linux.h: New file.
5328 * config/pa/xm-linux.h: New file.
5329 * hppa-linux-nat.c: New file.
5330 * hppa-linux-tdep.c: New file.
5331
5332 2004-04-28 Randolph Chung <tausq@debian.org>
5333
5334 * hppa-tdep.c (hppa32_return_value): Handle both 4- and 8-byte fp
5335 return values.
5336 (hppa32_push_dummy_call): Fix small struct and floating point argument
5337 passing, and make sure the stack frame is properly aligned.
5338
5339 2004-04-28 Andrew Cagney <cagney@redhat.com>
5340
5341 * stack.c (print_stack_frame): Fix description.
5342
5343 * NEWS: Mention gdb/gdbserver/configure execute permission
5344 changed. PR server/519.
5345
5346 2004-04-28 Andrew Cagney <cagney@redhat.com>
5347
5348 * stack.c (print_stack_frame_stub): Delete declaration.
5349 (struct print_stack_frame_args, print_stack_frame)
5350 (print_frame_info, print_frame): Replace "source" with print what.
5351 Replace "print" with "print_level". Replace "args" with
5352 "print_args".
5353 * frame.h (show_and_print_stack_frame, print_stack_frame)
5354 (print_frame_info): Update declarations.
5355 * stack.c (select_and_print_frame, frame_command)
5356 (current_frame_command, up_command, down_command): Update calls -
5357 use get_selected_frame, pass "enum print_what" for source, do not
5358 call frame_relative_level.
5359 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
5360 * remote-rdp.c (remote_rdp_open): Ditto.
5361 * remote-mips.c (common_open): Ditto.
5362 * remote-e7000.c (e7000_start_remote): Ditto.
5363 * ocd.c (ocd_start_remote): Ditto.
5364 * mi/mi-main.c (mi_cmd_exec_return): Ditto.
5365 * infrun.c (normal_stop): Ditto.
5366 * inflow.c (kill_command): Ditto.
5367 * infcmd.c (finish_command): Ditto.
5368 * corelow.c (core_open): Ditto.
5369 * tracepoint.c (finish_tfind_command): Ditto.
5370 * thread.c (info_threads_command, info_threads_command)
5371 (restore_current_thread, do_captured_thread_select): Ditto.
5372 * ada-tasks.c (task_command): Ditto.
5373
5374 2004-04-26 Orjan Friberg <orjanf@axis.com>
5375
5376 * frame.c: Include "observer.h".
5377 (frame_observer_target_changed): New function.
5378 (_initialize_frame): Attach target_changed observer.
5379 * regcache.c: Include "observer.h".
5380 (regcache_observer_target_changed): New function.
5381 (_initialize_regcache): Attach target_changed observer.
5382 * valops.c: Include "observer.h".
5383 (value_assign): Notify target_changed event when modifying register.
5384 * Makefile.in (frame.o, regcache.o, valops.o): Add $(observer_h).
5385
5386 2004-04-26 Orjan Friberg <orjanf@axis.com>
5387
5388 From Paul Koning <pkoning@equallogic.com>:
5389 * breakpoint.c (free_valchain): New function.
5390 (insert_bp_location, delete_breakpoint): Use free_valchain.
5391 (remove_breakpoint): Do not remove the valchain.
5392 (bpstat_stop_status): If not stopped by watchpoint, skip
5393 watchpoints when generating stop status list.
5394 * infrun.c (handle_inferior_event): Make
5395 stepped_after_stopped_by_watchpoint a global variable.
5396 * remote.c (remote_stopped_data_address): Return watch data
5397 address rather than zero if stepped_after_stopped_by_watchpoint is
5398 set.
5399
5400 2004-04-25 Michael Chastain <mec.gnu@mindspring.com>
5401
5402 Fix PR gdb/1626.
5403 * configure.in: Check for curses after termcap.
5404 On osf5.*, do not check for ncurses.
5405 * configure: Regenerate.
5406
5407 2004-04-25 Mark Kettenis <kettenis@gnu.org>
5408
5409 * ppcobsd-nat.c: Include "ppc-tdep.h".
5410 * Makefile.in (ppcobsd-nat.o): Update dependencies.
5411
5412 * stack.c (return_command): Use CHECK_TYPEDEF on the return type.
5413 Fixes PR tdep/1623 and PR tdep/1624.
5414
5415 2004-04-24 Michael Chastain <mec.gnu@mindspring.com>
5416
5417 * xmodem.h, xmodem.c: Remove files.
5418 * Makefile.in: Remove references to xmodem.h, xmodem.c.
5419
5420 2004-04-23 Randolph Chung <tausq@debian.org>
5421
5422 * hppa-tdep.c (hppa_stub_unwind_cache, hppa_stub_frame_unwind_cache)
5423 (hppa_stub_frame_this_id, hppa_stub_frame_prev_register)
5424 (hppa_stub_frame_unwind, hppa_stub_unwind_sniffer): New stub unwinder
5425 for handling stackless frames.
5426 (hppa_gdbarch_init): Link in hppa_stub_unwind_sniffer.
5427
5428 2004-04-23 Randolph Chung <tausq@debian.org>
5429
5430 * hppa-tdep.c (hppa_frame_cache): Handle the case when frame unwind
5431 starts at a pc before the frame is created.
5432
5433 2004-04-23 Joel Brobecker <brobecker@gnat.com>
5434
5435 * ChangeLog-2002: Fix year in one of the ChangeLog entries.
5436
5437 2004-04-23 Jerome Guitton <guitton@gnat.com>
5438
5439 * rs6000-tdep.c (rs6000_extract_return_value): When extracting a float,
5440 use convert_typed_floating to get the appropriate format.
5441
5442 2004-04-22 Randolph Chung <tausq@debian.org>
5443
5444 * hppa-tdep.h (find_unwind_entry, hppa_get_field, hppa_extract_5_load)
5445 (hppa_extract_5R_store, hppa_extract_5r_store, hppa_extract_17)
5446 (hppa_extract_21, hppa_extract_14, hppa_low_sign_extend)
5447 (hppa_sign_extend): Add prototype.
5448 * hppa-tdep.c (get_field, extract_5_load, extract_5R_store)
5449 (extract_5r_store, extract_17, extract_21, extract_14, low_sign_extend)
5450 (sign_extend): Rename with hppa_ prefix and make non-static. Other
5451 hppa targets will also use these functions.
5452 (find_unwind_entry): Remove prototype (moved to hppa-tdep.h).
5453 (hppa_in_solib_call_trampoline, hppa_in_solib_return_trampoline)
5454 (hppa_skip_trampoline_code): Move to hppa-hpux-tdep.c
5455 (hppa_gdbarch_init): Remove gdbarch setting of
5456 skip_trampoline_code, in_solib_call_trampoline and
5457 in_solib_return_trampoline.
5458 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
5459 (hppa64_hpux_in_solib_call_trampoline): New functions, split from
5460 hppa_in_solib_call_trampoline.
5461 (hppa_hpux_in_solib_return_trampoline, hppa_hpux_skip_trampoline_code):
5462 Moved from hppa-tdep.c.
5463 (hppa_hpux_init_abi): Set gdbarch for skip_trampoline_code,
5464 in_solib_call_trampoline and in_solib_return_trampoline.
5465
5466 2004-04-22 Randolph Chung <tausq@debian.org>
5467
5468 * hppa-tdep.c (hppa_debug): New variable.
5469 (find_unwind_entry, hppa_frame_cache): Add debug output.
5470 (_initialize_hppa_tdep): Add command to set debug flag.
5471
5472 2004-04-22 Andrew Cagney <cagney@redhat.com>
5473
5474 * ppcnbsd-tdep.c: Update copyright. Include "tramp-frame.h" and
5475 "trad-frame.h".
5476 (ppcnbsd_sigtramp_cache_init, ppcnbsd_sigtramp): Implement a NetBSD
5477 signal trampoline unwinder.
5478 (ppcnbsd_init_abi): Register ppcnbsd_sigtramp.
5479
5480 2004-04-22 Mark Kettenis <kettenis@gnu.org>
5481
5482 Add OpenBSD/powerpc support.
5483 * NEWS (New native configurations): Mention OpenBSD/powerpc.
5484 * ppc-tdep.h (struct ppc_reg_offsets): New structure.
5485 (ppc_supply_gregset, ppc_supply_fpregset, ppc_collect_gregset)
5486 (ppc_collect_fpregset): New prototypes.
5487 * ppcobsd-nat.c: New file.
5488 * ppcobsd-tdep.c: New file.
5489 * ppcobsd-tdep.h: New file.
5490 * rs6000-tdep.c: Include "regset.h".
5491 (ppc_supply_reg, ppc_collect_reg, ppc_supply_gregset)
5492 (ppc_supply_fpregset, ppc_collect_gregset, ppc_collect_fpregset):
5493 New functions.
5494 * Makefile.in (ALLDEPFILES): Add pccobsd-nat.c and ppcobsd-tdep.c.
5495 (ppcobsd-nat.o, ppcobsd-tdep.o): New dependencies.
5496 (rs6000-tdep.o): Update dependencies.
5497 * configure.host: Add powerpc-*-openbsd.
5498 * configure.tgt: Add powerpc-*-openbsd.
5499 * config/powerpc/obsd.mh: New file.
5500 * config/powerpc/nm-obsd.h: New file.
5501 * config/powerpc/obsd.mt: New file.
5502
5503 2004-04-22 Andrew Cagney <cagney@redhat.com>
5504
5505 * frame.h (show_frame_info): Delete declaration.
5506
5507 * arm-tdep.c (arm_prologue_this_id): Delete redundant cycle test.
5508 * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
5509 * m32r-tdep.c (m32r_frame_this_id): Ditto.
5510 * frv-tdep.c (frv_frame_this_id): Ditto.
5511 * avr-tdep.c (avr_frame_this_id): Ditto.
5512
5513 2004-04-22 Elena Zannoni <ezannoni@redhat.com>
5514
5515 * MAINTAINERS: Drop maintenance of gdb.stabs, and linespec.c.
5516
5517 2004-04-22 Jim Blandy <jimb@redhat.com>
5518
5519 * ppc-linux-nat.c (ppc_register_u_addr): Don't assume that r0 is
5520 register number zero.
5521
5522 2004-04-21 Michael Snyder <msnyder@redhat.com>
5523
5524 * mips-tdep.c (heuristic_proc_start):
5525 Warning() already prefixes "Warning: ".
5526
5527 2004-04-21 Andrew Cagney <cagney@redhat.com>
5528
5529 * annotate.h (deprecated_annotate_starting_hook)
5530 (deprecated_annotate_stopped_hook)
5531 (deprecated_annotate_exited_hook)
5532 (deprecated_annotate_signal_hook)
5533 (deprecated_annotate_signalled_hook): Deprecate.
5534 * tracepoint.h (deprecated_create_tracepoint_hook)
5535 (deprecated_delete_tracepoint_hook)
5536 (deprecated_modify_tracepoint_hook)
5537 (deprecated_trace_find_hook)
5538 (deprecated_trace_start_stop_hook): Deprecate.
5539 * target.h (deprecated_target_new_objfile_hook): Deprecate.
5540 * remote.h (deprecated_target_resume_hook)
5541 (deprecated_target_wait_loop_hook): Deprecate.
5542 * gdbcore.h (deprecated_exec_file_display_hook)
5543 (deprecated_file_changed_hook): Deprecate.
5544 * frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
5545 * defs.h (deprecated_modify_breakpoint_hook)
5546 (deprecated_command_loop_hook, deprecated_show_load_progress)
5547 (deprecated_print_frame_info_listing_hook)
5548 (deprecated_query_hook, deprecated_warning_hook)
5549 (deprecated_flush_hook, deprecated_create_breakpoint_hook)
5550 (deprecated_delete_breakpoint_hook)
5551 (deprecated_interactive_hook, deprecated_registers_changed_hook)
5552 (deprecated_readline_begin_hook, deprecated_readline_hook)
5553 (deprecated_readline_end_hook, deprecated_register_changed_hook)
5554 (deprecated_memory_changed_hook, deprecated_init_ui_hook)
5555 (deprecated_context_hook, deprecated_target_wait_hook)
5556 (deprecated_attach_hook, deprecated_detach_hook)
5557 (deprecated_call_command_hook, deprecated_set_hook)
5558 (deprecated_error_hook, deprecated_error_begin_hook)
5559 (deprecated_ui_load_progress_hook): Deprecate.
5560 * valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
5561 * tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
5562 * target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
5563 * remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
5564 * main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
5565 * exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
5566 * cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
5567 * annotate.c, aix-thread.c: Update.
5568
5569 2004-04-21 Andrew Cagney <cagney@redhat.com>
5570
5571 * Makefile.in (vaxnbsd-tdep.o): Update dependencies.
5572 * vaxnbsd-tdep.c: Include "gdb_string.h".
5573
5574 * symfile.c (symbol_file_add_from_memory): #if 0 function.
5575 (add_symbol_file_from_memory_command): #if 0 function body, call
5576 error instead.
5577
5578 2004-04-21 Andrew Cagney <cagney@redhat.com>
5579
5580 * gdbcore.h: Update copyright.
5581 (deprecated_add_core_fns): Rename add_core_fns.
5582 * win32-nat.c (_initialize_core_win32): Update.
5583 * sun3-nat.c (_initialize_core_sun3): Update.
5584 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Update.
5585 * rs6000-nat.c (_initialize_core_rs6000): Update.
5586 * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Update.
5587 * nto-tdep.c (_initialize_nto_tdep): Update.
5588 * ns32knbsd-nat.c (_initialize_ns32knbsd_nat): Update.
5589 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Update.
5590 * mips-nat.c (_initialize_core_mips): Update.
5591 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
5592 * m68knbsd-nat.c (_initialize_m68knbsd_nat): Update.
5593 * m68klinux-nat.c (_initialize_m68k_linux_nat): Update.
5594 * lynx-nat.c (_initialize_core_lynx): Update.
5595 * irix5-nat.c (_initialize_core_irix5): Update.
5596 * i386-interix-nat.c (_initialize_core_interix): Update.
5597 * cris-tdep.c (_initialize_cris_tdep): Update.
5598 * corelow.c (deprecated_add_core_fns): Update.
5599 * core-regset.c (_initialize_core_regset): Update.
5600 * core-aout.c (_initialize_core_aout): Update.
5601 * armnbsd-nat.c (_initialize_arm_netbsd_nat): Update.
5602 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Update.
5603 * alpha-nat.c (_initialize_core_alpha): Update.
5604
5605 2004-04-21 Jim Blandy <jimb@redhat.com>
5606
5607 * rs6000-tdep.c (registers_e500, registers_7400): Doc fixes.
5608
5609 2004-04-19 Daniel Jacobowitz <drow@mvista.com>
5610
5611 * dwarf2read.c (dwarf2_tmp_obstack, dwarf2_free_tmp_obstack):
5612 Delete.
5613 (dwarf_alloc_block): Take a CU argument. Use the comp_unit_obstack.
5614 (read_attribute_value): Update calls to dwarf_alloc_block.
5615 (dwarf2_build_psymtabs_hard): Don't initialize or clean up
5616 dwarf2_tmp_obstack.
5617 (psymtab_to_symtab_1): Likewise. Clean up using
5618 free_stack_comp_unit.
5619 (add_to_cu_func_list): Use the comp_unit_obstack.
5620
5621 2004-04-19 Joel Brobecker <brobecker@gnat.com>
5622
5623 * dwarf2read.c (dwarf2_flag_true_p): New function.
5624 (die_is_declaration): Use the function above. Add some comments.
5625
5626 2004-04-19 Mark Kettenis <kettenis@gnu.org>
5627
5628 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Specify
5629 architecture when registering sparcnbsd_core_osabi_sniffer.
5630 Adjust comment.
5631
5632 2004-04-18 Mark Kettenis <kettenis@gnu.org>
5633
5634 * infcall.c (find_function_addr): Add FUNCTION_START_OFFSET to
5635 return value.
5636
5637 Based on a patch from Brian Ford <ford@vss.fsi.com>:
5638 * i386-tdep.c: Correct register numbering scheme comments
5639 throughout.
5640 (i386_stab_reg_to_regnum): Rename to i386_dbx_reg_to_regnum.
5641 (i386_dwarf_reg_to_regnum): Rename to i386_svr4_reg_to_regnum.
5642 (i386_coff_init_abi, i386_elf_init_abi): Accomodate renames above.
5643 (i386_gdb_arch_init): Likewise.
5644
5645 * Makefile.in (ALLDEPFILES): List ppc-sysv-tdep.c, ppcnbsd-nat.c
5646 and ppcnbsd-tdep.c instead of ppc-sysv-tdep.o, ppcnbsd-nat.o and
5647 ppcnbsd-tdep.o.
5648
5649 * m68k-tdep.h: Tweak comments.
5650 * m68k-tdep.c: Tweak comment.
5651
5652 2004-04-17 Randolph Chung <tausq@debian.org>
5653
5654 * Makefile.in (hppa-hpux-tdep.o): Add $(hppa_tdep_h).
5655 * hppa-hpux-tdep.c (hppa-tdep.h): Include.
5656 (hppa_hpux_som_init_abi): Set is_elf to 0.
5657 (hppa_hpux_elf_init_abi): Set is_elf to 1.
5658 * hppa-tdep.c (low_text_segment_address): Remove global.
5659 (record_text_segment_lowaddr): Pass in low address as parameter. Use
5660 section offset to calculate segment address.
5661 (internalize_unwinds): Define low_text_segment_address as local and
5662 pass to record_text_segment_lowaddr for ELF targets.
5663 (hppa_gdbarch_init): Zero fill tdep structure.
5664 (hppa_dump_tdep): Print tdep structure.
5665 * hppa-tdep.h (gdbarch_tdep): Add is_elf member to tdep structure.
5666
5667 2004-04-17 Randolph Chung <tausq@debian.org>
5668
5669 * hppa-tdep.c (hppa_pseudo_register_read): Define.
5670 (hppa_gdbarch_init): Set pseudo_register_read.
5671 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Remove.
5672 * regcache.c (supply_register): Remove check for
5673 DEPRECATED_CLEAN_UP_REGISTER_VALUE since we've removed the last user.
5674
5675 2004-04-17 Randolph Chung <tausq@debian.org>
5676
5677 * Makefile.in (hpread.o, pa64solib.o, somsolib.o): Add $(hppa_tdep_h)
5678 * hppa-tdep.h (INSTRUCTION_SIZE): Move from tm-hppa.h.
5679 (hpread_adjust_stack_address): Move to hpread.c.
5680 * hppa-tdep.h (unwind_table_entry, unwind_stub_types, obj_unwind_info,
5681 obj_private_struct): Move from tm-hppa.h.
5682 * hpread.c (hppa-tdep.h): Include.
5683 (hpread_adjust_stack_address): Move from hppa-tdep.c.
5684 (hpread_read_function_type, hpread_read_doc_function_type)
5685 (hpread_process_one_debug_symbol): Call hpread_adjust_stack_address
5686 directly.
5687 * pa64solib.c (hppa-tdep.h): Include.
5688 * somsolib.c (hppa-tdep.h): Include.
5689 * config/pa/tm-hppa.h (frame_info, frame_saved_regs, value, type,
5690 inferior_status): Remove unused forward declarations.
5691 (INSTRUCTION_SIZE): Move to hppa-tdep.c.
5692 (unwind_table_entry, unwind_stub_types, obj_unwind_info,
5693 obj_private_struct): Move to hppa-tdep.h.
5694 (HPREAD_ADJUST_STACK_ADDRESS): Remove.
5695
5696 2004-04-17 Randolph Chung <tausq@debian.org>
5697
5698 * hppa-tdep.c (hppa_reg_struct_has_addr, hppa_skip_prologue)
5699 (hppa_skip_trampoline_code, hppa_in_solib_call_trampoline)
5700 (hppa_in_solib_return_trampoline, hppa_cannot_store_register)
5701 (hppa_smash_text_address, hppa_target_read_pc, hppa_target_write_pc):
5702 Remove forward declaration and make static.
5703 (hppa_reg_struct_has_addr): Remove.
5704
5705 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5706
5707 * observer.sh: Move comments in sed command to first column.
5708
5709 2004-04-16 Jason Molenda (jmolenda@apple.com)
5710
5711 * frame.c: Minor typeo corrections in comments.
5712
5713 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5714
5715 * observer.c (observer_test_first_notification_function): Update
5716 function profile.
5717 (observer_test_second_notification_function): Likewise.
5718 (observer_test_third_notification_function): Likewise.
5719
5720 2004-04-16 Mark Kettenis <kettenis@gnu.org>
5721
5722 From Brian Ford <ford@vss.fsi.com>:
5723 * i386-tdep.c (i386_coff_init_abi): New function.
5724 * i386-tdep.h (i386_coff_init_abi): New prototype.
5725 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Call it. Use correct
5726 register number translation functions for DWARF and DWARF 2.
5727
5728 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5729
5730 * dwarf2read.c: Back out my previous change, it was incorrect.
5731
5732 2004-04-16 Daniel Jacobowitz <drow@mvista.com>
5733
5734 * dwarf2read.c: Include "hashtab.h".
5735 (struct dwarf2_cu): Add partial_dies, comp_unit_obstack,
5736 has_namespace_info.
5737 (struct partial_die_info): Add comments. Use bitfields to reduce
5738 memory footprint. Add scope, scope_set, has_specification,
5739 spec_offset, die_parent, die_child, and die_sibling.
5740 (peek_die_abbrev): Add prototype.
5741 (partial_read_comp_unit_head): New function, broken out from
5742 dwarf2_build_psymtabs_hard.
5743 (dwarf2_build_psymtabs_hard): Remove unused variable abbrev_ptr.
5744 Use partial_read_comp_unit_head. Initialize the CU and
5745 comp_unit_obstack. Update calls to read_partial_die and
5746 scan_partial_symbols. Use free_stack_comp_unit and
5747 load_partial_dies.
5748 (scan_partial_symbols): Change PDI to a pointer. Use the child and
5749 sibling pointers to walk partial DIEs. Call fixup_partial_die.
5750 Update calls to helper functions. Remove NAMESPACE argument.
5751 Update comments.
5752 (partial_die_parent_scope, partial_die_full_name): New functions.
5753 (add_partial_symbol): Remove namespace argument. Update call to
5754 pdi_needs_namespace. Use partial_die_full_name. Handle
5755 DW_TAG_namespace. Check has_namespace_info flag.
5756 (pdi_needs_namespace): Remove NAMESPACE argument. Just check the
5757 tag. Handle namespaces.
5758 (add_partial_namespace, add_partial_enumeration): Simplify.
5759 (guess_structure_name): New function, derived from
5760 add_partial_structure.
5761 (add_partial_structure): Remove.
5762 (determine_class_name): Update comment.
5763 (dwarf2_read_abbrevs): Set has_namespace_info flag.
5764 (is_type_tag_for_partial, load_partial_dies): New functions.
5765 (read_partial_die): Pass abbrev and abbrev_len as arguments.
5766 Record specifications instead of following them immediately.
5767 (find_partial_die_in_comp_unit, find_partial_die)
5768 (fixup_partial_die, free_stack_comp_unit)
5769 (hashtab_obstack_allocate, dummy_obstack_deallocate)
5770 (partial_die_hash, partial_die_eq): New functions.
5771 * Makefile.in (hashtab_h): Define.
5772 (dwarf2read.o): Update dependencies.
5773 (observer_inc, observer_h): Move to the correct section.
5774
5775 2004-04-15 Joel Brobecker <brobecker@gnat.com>
5776
5777 * dwarf2read.c (dwarf2_attribute_true_p): New function.
5778 (die_is_declaration): Use the function above. Add comment.
5779
5780 2004-04-15 Joel Brobecker <brobecker@gnat.com>
5781
5782 * dwarf2read.c (read_structure_scope): Identify stub types
5783 using die_is_declaration() only.
5784
5785 2004-04-15 Roland McGrath <roland@redhat.com>
5786
5787 * symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as
5788 argument instead of NAME.
5789 (symbol_file_add, reread_separate_symbols): Call symfile_bfd_open
5790 in call to symbol_file_add_with_addrs_or_offsets.
5791 (build_addr_info): New function, helper for ...
5792 (symbol_file_add_from_memory): New function.
5793 (add_symbol_file_from_memory_command): New function using that.
5794 (_initialize_symfile): Register it for add-symbol-file-from-memory.
5795 (pre_add_symbol_hook): Add const to argument type.
5796 * symfile.h (symbol_file_add_from_memory): Declare it.
5797
5798 2004-04-15 Mark Kettenis <kettenis@gnu.org>
5799
5800 * NEWS (New native configurations): Mention OpenBSD/vax.
5801 * configure.host: Add vax-*-openbsd*.
5802 * config/vax/obsd.mh: New file.
5803 * config/vax/nm-obsd.h: New file.
5804
5805 * vax-tdep.c: Include "regset.h".
5806 (vax_supply_gregset): New function.
5807 (vax_gregset): New variable.
5808 (vax_regset_from_core_section): New function.
5809 (vax_gdbarch_init): Set regset_from_core_section.
5810 * Makefile.in (vax-tdep.o): Update dependencies.
5811
5812 2004-04-15 Andrew Cagney <cagney@redhat.com>
5813
5814 * observer.c (normal_stop_subject, observer_notify_normal_stop)
5815 (observer_normal_stop_notification_stub)
5816 (observer_attach_normal_stop, observer_detach_normal_stop):
5817 Delete, replaced by #include "observer.inc".
5818 * infrun.c (normal_stop): Pass "stop_bpstat" to
5819 observer_notify_normal_stop.
5820 * Makefile.in (observer_inc): Define.
5821 (observer.o): Update dependencies.
5822 (observer.h, observer.inc): New rules.
5823 * observer.h: Delete file.
5824 * observer.sh: New file.
5825
5826 2004-04-15 Mark Kettenis <kettenis@gnu.org>
5827
5828 * vax-tdep.c (vax_frame_cache): Fix typo.
5829
5830 2004-04-14 Mark Kettenis <kettenis@gnu.org>
5831
5832 * NEWS (New native configurations): Mention NetBSD/vax.
5833 * configure.host: Add vax-*-netbsdelf* and vax-*-netbsd*.
5834 * config/vax/nbsdelf.mh: New file.
5835 * config/vax/nbsdaout.mh: New file.
5836 * config/vax/nm-nbsd.h: New file.
5837 * config/vax/nm-nbsdaout.h: New file.
5838
5839 * vaxnbsd-tdep.c: New file.
5840 * Makefile.in (vaxnbsd-tdep.o): New dependency.
5841 * configure.tgt: Add vax-*-netbsd* and vax-*-openbsd*.
5842 * config/vax/nbsd.mt: New file.
5843 * config/vax/tm-nbsd.h: New file.
5844
5845 * Makefile.in (vaxbsd-nat.o): New dependency.
5846
5847 * vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
5848 * vax-tdep.c (vax_store_arguments): Remove struct_return and
5849 struct_addr arguments. Don't push return value address.
5850 (vax_push_dummy_call): Don't pass STRUCT_RETURN and STRUCT_ADDR as
5851 arguments to vax_store_arguments. Store return value address in
5852 R1.
5853 (vax_store_struct_return, vax_extract_return_value)
5854 (vax_store_return_value): Remove functions.
5855 (vax_return_value): New function.
5856 (vax_gdbarch_init): Set return value. Don't set
5857 deprecated_store_struct_return, deprecated_extract_struct_return
5858 and deprecated_store_return_value.
5859
5860 2004-04-14 Andreas Schwab <schwab@suse.de>
5861
5862 * ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
5863 value buffer.
5864 * libunwind-frame.c (libunwind_frame_prev_register): Likewise.
5865
5866 2004-04-14 Mark Kettenis <kettenis@gnu.org>
5867
5868 * vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
5869 (vax_unwind_dummy_id): New functions.
5870 (vax_push_dummy_frame, vax_pop_frame): Remove functions.
5871 (vax_call_dummy_words, sizeof_vax_call_dummy_words): Remove
5872 variables.
5873 (vax_fix_call_dummy): Remove function.
5874 (vax_gdbarch_init): Set push_dummy_call and unwind_dummy_id.
5875 Don't set deprecated_push_dummy_frame, deprecated_pop_frame,
5876 call_dummy_location, deprecated_call_dummy_words,
5877 deprecated_sizeof_call_dummy_words,
5878 deprecated_call_dummy_breakpoint_offset,
5879 deprecated_use_generic_dummy_frames, deprecated_pc_in_call_dummy,
5880 and deprecated_dummy_write_sp.
5881
5882 2004-04-13 David Carlton <carlton@kealia.com>
5883
5884 * MAINTAINERS: Move myself to "paper trail" section.
5885
5886 2004-04-12 Mark Kettenis <kettenis@gnu.org>
5887
5888 * vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
5889 "trad-frame.h".
5890 (vax_frame_init_saved_regs): Remove function.
5891 (vax_sigtramp_saved_pc): Remove function.
5892 (vax_frame_saved_pc): Remove function.
5893 (vax_frame_args_address): Remove function.
5894 (vax_frame_num_args): Rewrite.
5895 (vax_frame_chain): Remove function.
5896 (vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
5897 VAX_FP_REGNUM.
5898 (vax_pop_frame): Likewise.
5899 (vax_saved_pc_after_call): Remove function.
5900 (struct vax_frame_cache): New structure.
5901 (vax_frame_cache): New function.
5902 (vax_frame_this_id): New function.
5903 (vax_frame_prev_register): New function.
5904 (vax_frame_unwind): New variable.
5905 (vax_frame_sniffer): New function.
5906 (vax_frame_base_address): New function.
5907 (vax_frame_args_address): New function.
5908 (vax_frame_base): New variable.
5909 (vax_unwind_pc): New function.
5910 (vax_gdbarch_init): Don't set deprecated_init_frame_pc,
5911 deprecated_fp_regnum, deprecated_saved_pc_after_call,
5912 deprecated_frame_chain, deprecated_frame_saved_pc,
5913 deprecated_frame_args_address and
5914 deprecated_frame_init_saved_regs.
5915 * Makefile.in (vax-tdep.o): Update dependencies.
5916
5917 * vaxbsd-nat.c: New file.
5918
5919 * vax-tdep.h: Update copyright year. Adjust comments.
5920 (VAX_REGISTER_SIZE, VAX_REGISTER_BYTES, VAX_MAX_REGISTER_RAW_SIZE,
5921 VAX_MAX_REGISTER_VIRTUAL_SIZE): Remove macros.
5922 (vax_regnum): New enum. Replacing...
5923 (VAX_AP_REGNUM, VAX_FP_REGNUM, VAX_SP_REGNUM, VAX_PC_REGNUM)
5924 (VAX_PS_REGNUM): ... these removed macros.
5925 * vax-tdep.c (vax_register_name): Remove prototype.
5926 (vax_register_name): Reorganize somewhat. Use ARRAY_SIZE.
5927 (vax_register_byte, vax_register_raw_size,
5928 vax_register_virtual_size, vax_register_virtual_type): Remove
5929 functions.
5930 (vax_register_type): New function.
5931 (vax_breakpoint_from_pc): Reorganize.
5932 (vax_gdbarch_init): Set register_type. Don't set
5933 deprecated_register_size, deprecated_register_bytes,
5934 deprecated_register_byte, deprecated_register_raw_size,
5935 deprecated_max_register_raw_size,
5936 deprecated_register_virtual_size,
5937 deprecated_max_register_virtual_size and
5938 deprecated_register_virtual_type. Add comment on stack direction.
5939
5940 2004-04-11 Mark Kettenis <kettenis@gnu.org>
5941
5942 * amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
5943 AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
5944 AMD64_FS_REGNUM and AMD64_GS_REGNUM.
5945
5946 2004-04-10 Randolph Chung <tausq@debian.org>
5947
5948 * MAINTAINERS (write after approval): Add myself.
5949
5950 2004-04-07 Randolph Chung <tausq@debian.org>
5951
5952 * hppa-tdep.c (hppa_inner_than): Remove.
5953 (is_pa_2): Remove unused static variable.
5954 (hppa_gdbarch_init): Use core_addr_greaterthan instead of own version.
5955
5956 2004-03-10 Paul N. Hilfinger <Hilfinger@gnat.com>
5957
5958 * language.h (language_defn): Add new la_post_parser field.
5959 * parser-defs.h (null_post_parser): New declaration (default for
5960 la_post_parser).
5961
5962 * parse.c (parse_exp_1): Move code to parse_exp_in_context and
5963 insert call to that function.
5964 (parse_exp_in_context): New function, including code formerly in
5965 parse_exp_1. Calls language-dependent post-parser after
5966 prefixification.
5967 (parse_expression_in_context): New exported function.
5968 (null_post_parser): New definition.
5969 * expression.h (parse_expression_in_context): Add declaration.
5970
5971 * p-lang.c (pascal_language_defn): Add trivial post-parser.
5972 * c-lang.c (c_language_defn): Ditto.
5973 (cplus_language_defn): Ditto.
5974 (asm_language_defn): Ditto.
5975 (minimal_language_defn): Ditto.
5976 * f-lang.c (f_language_defn): Ditto.
5977 * jv-lang.c (java_language_defn): Ditto.
5978 * language.c (unknown_language_defn): Ditto.
5979 (auto_language_defn): Ditto.
5980 (local_language_defn): Ditto.
5981 * m2-lang.c (m2_language_defn): Ditto.
5982 * scm-lang.c (scm_language_defn): Ditto.
5983 * obj-lang.c (objc_language_defn): Ditto.
5984
5985 2004-04-10 Mark Kettenis <kettenis@gnu.org>
5986
5987 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Remove function.
5988 (amd64nbsd_mcontext_addr): New function.
5989 (amd64nbsd_init_abi): Initialize TDEP->sigcontext_addr as
5990 amd64nbsd_mcontext_addr. Directly initialize TDEP->sc_reg_offset
5991 with amd64nbsd_r_reg_offset, instead of building it on the fly.
5992
5993 * corelow.c (core_xfer_partial): Fix coding standards violation.
5994 Add support for TARGET_OBJECT_WCOOKIE.
5995
5996 * sparc-linux-tdep.c (sparc32_linux_init_abi): Don't set
5997 deprecated_pc_in_sigtramp.
5998 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Likewise.
5999 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Likewise.
6000 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Likewise.
6001 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Likewise.
6002 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Likewise.
6003 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Likewise.
6004 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
6005
6006 * amd64-linux-tdep.c, amd64nbsd-tdep.c, amd64obsd-tdep.c,
6007 i386-linux-tdep.c, i386-tdep.c, i386nbsd-tdep.c, i386obsd-tdep.c:
6008 Fix typo.
6009
6010 * amd64-tdep.c (amd64_supply_fxsave): Only fiddle with
6011 I387_FISEG_REGNUM and I387_FOSEG_REGNUM in 64-bit mode.
6012 (amd64_collect_fxsave): Likewise.
6013
6014 * i386-sol2-tdep.c: Include "gdb_string.h".
6015 (i386_sol2_sigtramp_p): Recognize signal trampoline based on its
6016 name.
6017 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
6018
6019 2004-04-10 Mark Kettenis <kettenis@gnu.org>
6020
6021 * i386-sol2-tdep.c: Include "solib-svr4.h".
6022 (i386_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6023 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
6024 * config/i386/tm-i386sol2.h: Include :solib.h".
6025 * config/i386/i386sol2.mh (NATDEPFILES): Remove solib.o,
6026 solib-svr4.o and solib-legacy.o.
6027 * config/i386/i386sol2.mt (TDEPFILES): Add solib.o and
6028 solib-svr4.o.
6029
6030 2004-04-09 Mark Kettenis <kettenis@gnu.org>
6031
6032 * amd64-linux-nat.c (fetch_inferior_registers): Correctly check
6033 whether a register is supplied by PTRACE_GETFPREGS.
6034 (store_inferior_registers): Likewise.
6035 * amd64bsd-nat.c (fetch_inferior_registers): Correctly check
6036 whether a register is supplied by PT_GETFPREGS.
6037 (store_inferior_registers): Likewise.
6038
6039 * config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
6040 * config/i386/linux64.mt (TDEPFILES): Likewise.
6041
6042 * i386-linux-nat.c: Update copyrigth year. Tweak comment.
6043
6044 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
6045 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
6046 the program counter is in the range specified by `struct
6047 gdbarch_tdep'.
6048 * amd64-linux-tdep.c: Include "symtab.h".
6049 (amd64_linux_pc_in_sigtramp): Remove function.
6050 (amd64_linux_sigtramp_p): New function.
6051 (amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
6052 deprecated_pc_in_sigtramp.
6053 * amd64nbsd-tdep.c: Include "symtab.h".
6054 (amd64nbsd_sigtramp_p): New function.
6055 (amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
6056 deprecated_pc_in_sigtramp.
6057 * amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
6058 few comments.
6059 (amd64obsd_pc_in_sigtramp): Remove function.
6060 (amd64obsd_sigtramp_p): New function.
6061 (amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
6062 deprecated_pc_in_sigtramp.
6063 * i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
6064 (i386bsd_pc_ins_sigtramp): Remove prototype.
6065 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
6066 * i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
6067 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
6068 the program counter is in the range specified by `struct
6069 gdbarch_tdep'.
6070 (i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
6071 (i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
6072 (i386_go32_pc_in_sigtramp): Remove function.
6073 (i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
6074 Initialize TDEP->sigtramp_p.
6075 (i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
6076 (i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
6077 deprecated_pc_in_sigtramp.
6078 * i386-linux-tdep.c: Adjust comments.
6079 (i386_linux_pc_in_sigtramp): Remove function.
6080 (i386_linux_sigtramp_p): New function.
6081 (i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
6082 deprecated_pc_in_sigtramp.
6083 * i386-nto-tdep.c: Update copyright year.
6084 (i386nto_pc_in_sigtramp): Remove function.
6085 (i386nto_sigtramp_p): New function.
6086 (i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
6087 SP_REGNUM.
6088 (i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
6089 deprecated_pc_in_sigtramp.
6090 * i386-sol2-tdep.c: Update copyright year.
6091 (i386_sol2_pc_in_sigtramp): Remove function.
6092 (i386_sol2_sigtramp_p): New function.
6093 (i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
6094 deprecated_pc_in_sigtramp.
6095 * i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
6096 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
6097 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6098 deprecated_sigtramp_start and deprecated_sigtramp_end.
6099 * i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
6100 (i386nbsd_pc_in_sigtramp): Remove function.
6101 (i386nbsd_sigtramp_p): New function.
6102 (i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6103 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
6104 TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
6105 * i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
6106 (i386obsd_pc_in_sigtramp): Remove function.
6107 (i386obsd_sigtramp_p): New function.
6108 (i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
6109 functions.
6110 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6111 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
6112 TDEP->sigtramp_p.
6113 * Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
6114 amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
6115 dependencies.
6116
6117 * config/i386/i386aout.mt: Remove file.
6118
6119 * configure.tgt: Remove i[34567]86-*-go32*,
6120 i[34567]86-*-msdosdjgpp*, i[34567]86-*-sco*, i[34567]86-*-sysv*
6121 and i[34567]86-*-isc*. Set gdb_target to i386 for
6122 i[34567]86-*-netware* and i[34567]86-*-*.
6123 * config/i386/i386.mt: New file.
6124 * config/i386/embed.mt: Remove file.
6125 * config/i386/go32.mt: Remove file.
6126 * config/i386/i386nw.mt: Remove file.
6127 * config/i386/i386v.mt: Remove file.
6128 * config/i386/tm-go32.h: Remove file.
6129
6130 * tui/tui-hooks.c: Include "readline/readline.h" after
6131 "gdb_curses.h" instead of before.
6132 * tui/tui-io.c: Likewise.
6133
6134 * tui/tui.c: Fix typo in comment.
6135
6136 * sparc64-tdep.c (sparc_address_from_register): Remove function.
6137
6138 2004-04-08 Andrew Cagney <cagney@redhat.com>
6139
6140 * breakpoint.h (deprecated_exception_catchpoints_are_fragile)
6141 (deprecated_exception_support_initialized): Declare.
6142 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support)
6143 (initialize_hp_cxx_exception_support)
6144 (child_enable_exception_callback): Update.
6145 * breakpoint.c (deprecated_exception_catchpoints_are_fragile)
6146 (deprecated_exception_support_initialized): Rename
6147 deprecated_exception_catchpoints_are_fragile and
6148 deprecated_exception_support_initialized.
6149 (breakpoint_init_inferior, breakpoint_init_inferior): Update.
6150
6151 * symtab.c (deprecated_hp_som_som_object_present): Rename
6152 hp_som_som_object_present.
6153 * symtab.h (deprecated_hp_som_som_object_present): Declare.
6154 * symfile.c (hp_som_som_object_present, RESET_HP_UX_GLOBALS):
6155 Update. Delete extern declaration.
6156 * valops.c (hp_som_som_object_present): Ditto.
6157 * parse.c (deprecated_hp_som_som_object_present)
6158 (parse_nested_classes_for_hpacc): Ditto.
6159 * hpread.c (hp_som_som_object_present, hpread_expand_symtab): Ditto.
6160 * hppa-hpux-tdep.c (hp_som_som_object_present)
6161 (initialize_hp_cxx_exception_support): Ditto.
6162 * eval.c (hp_som_som_object_present, evaluate_subexp_standard): Ditto.
6163 * cp-valprint.c (hp_som_som_object_present)
6164 (cp_print_class_method): Ditto.
6165 * c-typeprint.c (hp_som_som_object_present):
6166 (c_type_print_base): Ditto.
6167 * c-exp.y (hp_som_som_object_present): Ditto.
6168
6169 2004-04-08 Andrew Cagney <cagney@redhat.com>
6170
6171 * frame-unwind.c (struct frame_unwind_table, frame_unwind_init)
6172 (frame_unwind_prepend_unwinder, frame_unwind_append_sniffer)
6173 (frame_unwind_find_by_frame): Re-implement the unwind code so
6174 that it can both prepend and append sniffers. Replace
6175 frame_unwind_register_unwinder with frame_unwind_prepend_unwinder.
6176 * tramp-frame.c (tramp_frame_append): Use
6177 frame_unwind_prepend_unwinder.
6178 * frame-unwind.h (frame_unwind_prepend_unwinder): Replace
6179 frame_unwind_register_unwinder.
6180 * tramp-frame.h (tramp_frame_prepend_unwinder): Rename
6181 tramp_frame_append.
6182 * tramp-frame.c (tramp_frame_prepend_unwinder): Update.
6183 * mips-linux-tdep.c (mips_linux_init_abi, mips_linux_init_abi)
6184 (mips_linux_init_abi): Update.
6185
6186 2004-04-08 Kevin Buettner <kevinb@redhat.com>
6187
6188 * ppc-linux-tdep.c (ELF_NREG, ELF_NFPREG, ELF_NVRREG)
6189 (ELF_FPREGSET_SIZE): Delete constants formerly used in core
6190 file support.
6191
6192 2004-04-07 Kevin Buettner <kevinb@redhat.com>
6193
6194 * ia64-tdep.c (elf.h): Don't include.
6195 (elf/ia64.h) [HAVE_LIBUNWIND_IA64_H]: Include.
6196
6197 2004-04-07 Jason Molenda (jmolenda@apple.com)
6198
6199 * frame.h: Typeo corrections in comments.
6200
6201 2004-04-07 Jim Blandy <jimb@redhat.com>
6202
6203 * i386-tdep.c (i386_stab_reg_to_regnum): Correct numbering for
6204 %esp and %ebp
6205
6206 2004-04-07 Mark Kettenis <kettenis@gnu.org>
6207
6208 * config/sparc/linux.mt (TDEPFILES): Remove solib-legacy.o.
6209 * config/sparc/linux64.mt (TDEPFILES): Likewise.
6210 * config/sparc/sol2.mt (TDEPFILES): Add solib.o and solib-svr4.o.
6211 * config/sparc/sol2.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
6212 and solib-legacy.o.
6213 * config/sparc/sol2-64.mt (TDEPFILES): Add solib.o and
6214 solib-svr4.o.
6215 * config/sparc/tm-sol2.h: Update copyright year. Include
6216 "solib.h".
6217
6218 * sparc-sol2-tdep.c: Update copyright year. Include
6219 "solib-svr4.h".
6220 (sparc32_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6221 * sparc64-sol2-tdep.c: Include "solib-svr4.h".
6222 (sparc64_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6223 * Makefile.in (sparc-sol2-tdep.o, sparc64-sol2-tdep.o): Update
6224 dependencies.
6225
6226 2004-04-06 Andrew Cagney <cagney@redhat.com>
6227
6228 * infttrace.c: Include "infttrace.h".
6229 * infttrace.h: Include "target.h".
6230 * Makefile.in (infttrace_h): Update.
6231 (infttrace.o): Update.
6232
6233 2004-04-06 Andrew Cagney <cagney@redhat.com>
6234
6235 * hppah-nat.c (hpux_has_forked, hpux_has_vforked)
6236 (hpux_has_execd, hpux_has_syscall_event): Include "infttrace.h",
6237 move extern declarations from here ...
6238 * infttrace.h: ... to here.
6239 * Makefile.in (hppah-nat.o): Update dependencies.
6240
6241 * hppa-tdep.c (hppa_breakpoint_from_pc): Make static.
6242 (hppa_gdbarch_init): Set gdbarch_breakpoint_from_pc
6243 * config/pa/tm-hppa.h (BREAKPOINT_FROM_PC, BREAKPOINT32):
6244 (hppa_breakpoint_from_pc): Delete.
6245
6246 * MAINTAINERS: Mark hppa-elf as buildable with -Werror.
6247
6248 2004-04-05 Andrew Cagney <cagney@redhat.com>
6249
6250 * hppa-tdep.c: Do not include <sys/types.h>, <sys/param.h>,
6251 <signal.h>, <sys/ptrace.h>, #include "a.out.encap.h",
6252 <sys/file.h>.
6253
6254 2004-04-06 Randolph Chung <tausq@debian.org>
6255
6256 Committed by Andrew Cagney (mechanical change).
6257 * hppa-tdep.c: (args_for_find_stub, hp_som_som_object_present,
6258 exception_catchpoints_are_fragile, find_stub_with_shl_get,
6259 cover_find_stub_with_shl_get, initialize_hp_cxx_exception_support,
6260 child_enable_exception_callback, current_ex_event,
6261 null_symtab_and_line, child_get_current_exception_event,
6262 HP_ACC_EH_notify_hook, HP_ACC_EH_set_hook_value,
6263 HP_ACC_EH_notify_callback, HP_ACC_EH_break, HP_ACC_EH_catch_throw,
6264 HP_ACC_EH_catch_catch, __eh_notification, hp_cxx_exception_support,
6265 hp_cxx_exception_support_initialized, eh_notify_hook_addr,
6266 eh_notify_callback_addr, eh_break_addr, eh_catch_catch_addr,
6267 eh_catch_throw_addr, break_callback_sal, setup_d_pid_in_inferior):
6268 Move hpux-specific definitions ...
6269 * hppa-hpux-tdep.c: ... to here.
6270
6271 2004-04-05 Andrew Cagney <cagney@redhat.com>
6272
6273 * hppa-tdep.c (hppa_frame_cache): Pass the frame's func to
6274 skip_prologue_using_sal.
6275
6276 2004-04-05 Andrew Cagney <cagney@redhat.com>
6277
6278 * config/i386/tm-i386.h: Delete file.
6279 * config/i386/tm-vxworks.h: Update copyright, do not include
6280 "tm-i386.h".
6281 * config/i386/tm-nto.h, config/i386/tm-linux.h: Ditto.
6282 * config/i386/tm-i386sol2.h, config/i386/tm-i386lynx.h: Ditto.
6283 * config/i386/tm-go32.h, config/i386/tm-cygwin.h: Ditto.
6284 * config/i386/ncr3000.mt (TM_FILE): Delete.
6285 * config/i386/interix.mt (TM_FILE): Delete.
6286 * config/i386/i386v.mt (TM_FILE): Delete.
6287 * config/i386/i386nw.mt (TM_FILE): Delete.
6288 * config/i386/i386gnu.mt (TM_FILE): Delete.
6289 * config/i386/i386aout.mt (TM_FILE): Delete.
6290 * config/i386/embed.mt (TM_FILE): Delete.
6291
6292 2004-04-05 Kevin Buettner <kevinb@redhat.com>
6293
6294 * frv-tdep.h (fsr0_regnum, acc0_regnum, acc7_regnum, accg0123_regnum)
6295 (accg4567_regnum, msr0_regnum, msr1_regnum, gner0_regnum)
6296 (gner1_regnum, fner0_regnum, fner1_regnum, accg0_regnum)
6297 (accg7_regnum): New constants.
6298 (last_spr_regnum, last_pseudo_regnum): Update.
6299 * frv-tdep.c (new_variant): Initialize names for fsr0, acc0-acc7,
6300 accg0-accg7, msr0, msr1, gner0, gner1, fner0, and fner1.
6301 (frv_pseudo_register_read, frv_pseudo_register_write): Add support
6302 for accg registers.
6303 (frv_register_sim_regno): Update spr_map[].
6304
6305 2004-04-04 Andrew Cagney <cagney@redhat.com>
6306
6307 * config/mips/xm-riscos.h: Delete.
6308 * config/mips/xm-mipsv4.h, config/mips/xm-mips.h: Delete.
6309 * config/mips/tm-mipsv4.h, config/mips/riscos.mh: Delete.
6310 * config/mips/nm-riscos.h, config/mips/nm-news-mips.h: Delete.
6311 * config/mips/nm-mips.h, config/mips/news-mips.mh: Delete.
6312 * config/mips/news-mips.mh, config/m68k/tm-m68kv4.h: Delete.
6313 * config/mips/decstation.mh, config/mips/littlemips.mh: Delete.
6314 * config/mips/mipsv4.mt, config/m68k/tm-sun3.h: Delete.
6315 * config/m68k/xm-sun3os4.h, config/m68k/xm-sun3.h: Delete.
6316 * config/m68k/xm-sun2.h, config/m68k/xm-m68kv4.h: Delete.
6317 * config/m68k/xm-dpx2.h, config/m68k/xm-delta68.h: Delete.
6318 * config/m68k/xm-3b1.h, config/m68k/tm-sun3os4.h: Delete.
6319 * config/m68k/tm-m68klynx.h, config/m68k/tm-dpx2.h: Delete.
6320 * config/m68k/tm-delta68.h, config/m68k/tm-3b1.h: Delete.
6321 * config/m68k/sun3os4.mt, config/m68k/nm-sysv4.h: Delete.
6322 * config/m68k/nm-sun3.h, config/m68k/sun3os4.mh: Delete.
6323 * config/m68k/sun2os3.mh, config/m68k/nm-sun2.h: Delete.
6324 * config/m68k/nm-m68klynx.h, config/m68k/sun3os3.mt: Delete.
6325 * config/m68k/nm-dpx2.h, config/m68k/sun2os3.mt: Delete.
6326 * config/m68k/dpx2.mh, config/m68k/sun3os3.mh: Delete.
6327 * config/m68k/sun2os4.mh, config/m68k/nm-delta68.h: Delete.
6328 * config/m68k/m68kv4.mt, config/m68k/m68klynx.mt: Delete.
6329 * config/m68k/3b1.mt, config/m68k/m68klynx.mh: Delete.
6330 * config/m68k/m68kv4.mh, config/m68k/sun2os4.mt: Delete.
6331 * config/m68k/tm-sun2os4.h, config/m68k/3b1.mh: Delete.
6332 * config/m68k/dpx2.mt, config/m68k/delta68.mt: Delete.
6333 * config/m68k/tm-sun2.h, config/m68k/delta68.mh: Delete.
6334
6335 * configure.tgt: Remove m68000-*-sunos3*, m68000-*-sunos4*,
6336 m68*-bull-sysv*, m68*-att-*, m68*-motorola-*, m68*-*-lynxos*,
6337 m68*-*-sunos3*, m68*-*-sunos4*, m68*-*-sysv4*, mips*-*-sysv4*.
6338 * configure.host: Remove m680[01]0-sun-sunos3*,
6339 m680[01]0-sun-sunos4*, m68*-att-*, m68*-bull*-sysv*,
6340 m68*-*-lynxos*, m68*-*-sysv4*, m68*-motorola-*, m68*-sun-sunos3*,
6341 m68*-sun-sunos4*, m68*-sun-*, mips-dec-*, mips-little-*,
6342 mips-sony-*, mips-*-mach3*, mips-*-sysv4*, mips-*-sysv*,
6343 mips-*-riscos*.
6344 * NEWS: Mention removed systems.
6345
6346 2004-04-04 Andrew Cagney <cagney@redhat.com>
6347
6348 GDB 6.1 release created from 6.1 branch.
6349
6350 2004-04-04 Andrew Cagney <cagney@redhat.com>
6351
6352 * gnu-nat.c (gnu_wait): Use memcpy instead of bcopy.
6353 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
6354 * remote-vx68.c (vx_read_register, vx_write_register): Ditto.
6355
6356 * config/vax/xm-vax.h (FAULT_CODE_ORIGIN, INIT_STACK): Delete.
6357 * config/alpha/xm-alphaosf.h (NO_SIGINTERRUPT): Delete.
6358 * config/alpha/xm-alphalinux.h (NO_SIGINTERRUPT): Delete.
6359
6360 2004-04-03 Jim Blandy <jimb@redhat.com>
6361
6362 * MAINTAINERS: Chris Faylor has changed employers; add him to
6363 "paper trail" section, and update his E-mail address.
6364
6365 2004-04-03 Andrew Cagney <cagney@redhat.com>
6366
6367 * frame-unwind.c (frame_unwind_find_by_frame): Delete check for
6368 generic dummy frames.
6369 * dummy-frame.c: Update copyright.
6370 (dummy_frame_sniffer): Delete check for generic dummy frames.
6371
6372 * config/pa/tm-hppa.h (REG_PARM_STACK_SPACE): Delete.
6373 * config/pa/tm-hppa64.h (PA20W_CALLING_CONVENTIONS)
6374 (REG_PARM_STACK_SPACE): Delete.
6375 * hppa-tdep.c (hppa64_push_dummy_call, hppa32_push_dummy_call):
6376 Inline reference to REG_PARM_STACK_SPACE.
6377
6378 * config/pa/tm-hppah.h (FRAME_SAVED_PC_IN_SIGTRAMP)
6379 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
6380 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
6381 (FRAME_BASE_BEFORE_SIGTRAMP)
6382 (hppa32_hpux_frame_base_before_sigtramp)
6383 (hppa32_hpux_frame_saved_pc_in_sigtramp): Delete.
6384 * config/pa/tm-hppa64.h (hppa64_hpux_frame_saved_pc_in_sigtramp)
6385 (hppa64_hpux_frame_find_saved_regs_in_sigtramp)
6386 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
6387 (FRAME_BASE_BEFORE_SIGTRAMP)
6388 (hppa64_hpux_frame_base_before_sigtramp)
6389 (FRAME_SAVED_PC_IN_SIGTRAMP): Delete.
6390
6391 2004-04-03 Andrew Cagney <cagney@redhat.com>
6392
6393 * PROBLEMS: Mention that GDB doesn't build on HP/UX 11.00.
6394
6395 2004-04-02 Andrew Cagney <cagney@redhat.com>
6396
6397 * sh64-tdep.c (sh64_init_extra_frame_info): Replace
6398 DEPRECATED_CALL_DUMMY_LENGTH with 0, simplify.
6399 * dummy-frame.h: Delete out-of-date comments.
6400 * gdbarch.sh (DEPRECATED_CALL_DUMMY_LENGTH): Delete.
6401 * gdbarch.h, gdbarch.c: Re-generate.
6402
6403 2004-04-02 Joel Brobecker <brobecker@gnat.com>
6404
6405 Committed by Andrew Cagney <cagney@redhat.com>.
6406 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Do not take
6407 into account an instruction saving a register if we have already
6408 seen an earlier instruction saving that same register.
6409
6410 2004-04-02 Andrew Cagney <cagney@redhat.com>
6411
6412 * gdbarch.sh (DEPRECATED_INIT_FRAME_PC_FIRST): Delete.
6413 * gdbarch.h, gdbarch.c: Re-generate.
6414 * frame.c (legacy_get_prev_frame): Delete references to
6415 DEPRECATED_INIT_FRAME_PC_FIRST.
6416
6417 * infrun.c (pc_in_sigtramp): Delete function.
6418 (check_sigtramp2): Inline call to pc_in_sigtramp, use
6419 get_frame_type.
6420
6421 2004-04-02 Andrew Cagney <cagney@redhat.com>
6422
6423 * infrun.c (handle_step_into_function): Delete code conditional on
6424 legacy_frame_p.
6425 (handle_inferior_event, step_over_function): Ditto.
6426
6427 2004-04-02 Andrew Cagney <cagney@redhat.com>
6428
6429 * frame.c (get_prev_frame_1): Exclude signal trampolines from the
6430 "previous frame inner to this frame" test.
6431
6432 2004-04-02 Andrew Cagney <cagney@redhat.com>
6433
6434 * frame.c (safe_frame_unwind_memory): New function.
6435 * frame.h (safe_frame_unwind_memory): Declare. Update description
6436 of /safe_/ methods.
6437 * tramp-frame.c (tramp_frame_start): Re-order parmeters, add
6438 "next_frame". Use safe_frame_unwind_memory.
6439 (tramp_frame_sniffer): Update call to tramp_frame_start.
6440
6441 2004-04-01 Daniel Jacobowitz <drow@mvista.com>
6442
6443 * dwarf2read.c (dwarf2_objfile_data_key): New.
6444 (struct dwarf2_per_objfile, dwarf2_per_objfile): New.
6445 (dwarf_info_size, dwarf_abbrev_size, dwarf_line_size)
6446 (dwarf_pubnames_size, dwarf_aranges_size, dwarf_loc_size)
6447 (dwarf_macinfo_size, dwarf_str_size, dwarf_ranges_size)
6448 (dwarf_frame_size, dwarf_eh_frame_size, dwarf_info_buffer)
6449 (dwarf_abbrev_buffer, dwarf_line_buffer, dwarf_str_buffer)
6450 (dwarf_macinfo_buffer, dwarf_ranges_buffer, dwarf_loc_buffer):
6451 Remove variables.
6452 (struct dwarf2_pinfo): Remove per-objfile members. Update comments.
6453 (DWARF_ABBREV_SIZE, DWARF_LINE_SIZE)
6454 (DWARF_LOC_SIZE, DWARF_MACINFO_SIZE, DWARF_STR_SIZE)
6455 (DWARF_RANGES_SIZE, DWARF_INFO_BUFFER)
6456 (DWARF_ABBREV_BUFFER, DWARF_LINE_BUFFER, DWARF_STR_BUFFER)
6457 (DWARF_MACINFO_BUFFER, DWARF_RANGES_BUFFER, DWARF_LOC_BUFFER):
6458 Remove macros.
6459 (dwarf2_has_info): Take an objfile argument. Allocate per-objfile
6460 data.
6461 (dwarf2_locate_sections, dwarf2_build_psymtabs)
6462 (dwarf2_build_psymtabs_easy, dwarf2_build_psymtabs_hard)
6463 (skip_one_die, dwarf2_get_pc_bounds, dwarf2_read_abbrevs)
6464 (read_partial_die, read_full_die, read_indirect_string)
6465 (dwarf_decode_line_header, dwarf_decode_macros)
6466 (dwarf2_symbol_mark_computed): Remove use of removed macros.
6467 Update uses of removed variables.
6468 (psymtab_to_symtab_1): Restore per-objfile data pointer. Remove use
6469 of removed macros.
6470 (_initialize_dwarf2_read): New function.
6471 * symfile.h (dwarf2_has_info): Update prototype.
6472 * coffread.c (coff_symfile_read): Update call to dwarf2_has_info.
6473 * elfread.c (elf_symfile_read): Likewise.
6474
6475 2004-04-01 Jim Blandy <jimb@redhat.com>
6476
6477 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): New, unified
6478 function for register numbers on all the rs6000-derived targets.
6479 (rs6000_gdbarch_init): Don't register a separate
6480 gdbarch_dwarf2_reg_to_regnum function for the E500. Use
6481 rs6000_dwarf2_stab_reg_to_regnum for both Dwarf 2 and stabs on all
6482 variants.
6483
6484 * i386-tdep.c: Add FIXME regarding STABS vs. Dwarf 2 register
6485 numbering.
6486
6487 2004-04-01 Paul N. Hilfinger <Hilfinger@gnat.com>
6488
6489 * valarith.c: Update copyright notice.
6490 (value_add): Handle range types.
6491 (value_sub): Ditto.
6492 (value_equal): Ditto.
6493 (value_less): Ditto.
6494 (value_neg): Ditto.
6495 (value_complement): Ditto.
6496 (value_binop): Simplify slightly by using is_integral_type and
6497 eliminiating unnecessary COERCE_ENUMs.
6498
6499 2004-03-31 Andrew Cagney <cagney@redhat.com>
6500
6501 * frame.h (frame_unwind_id): Declare.
6502 * frame.c (frame_unwind_id): New function.
6503 (get_prev_frame_1): New function.
6504 (frame_debug_got_null_frame): New function.
6505 (get_prev_frame): Use frame_debug_got_null_frame. Move unwind
6506 code proper to prev_frame, update description.
6507 * infrun.c (step_over_function): Use frame_unwind_id.
6508
6509 2004-04-31 J. Brobecker <brobecker@gnat.com>
6510
6511 * hppa-tdep.c (hppa32_push_dummy_call): Set the Stack Pointer.
6512 (hppa64_push_dummy_call): Likewise.
6513
6514 2004-03-30 Jim Blandy <jimb@redhat.com>
6515
6516 From Ulrich Weigand:
6517 * utils.c (query): Do not use a va_list variable multiple times.
6518
6519 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
6520
6521 * Makefile.in (linux_nat_h): Update dependencies.
6522 * configure.in: Check for <gnu/libc-version.h>.
6523 * configure: Regenerate.
6524 * config.in: Regenerate.
6525 * linux-nat.h: Include "target.h". Add waitstatus field to
6526 struct lwp_info.
6527 * lin-lwp.c (add_lwp): Initialize waitstatus.kind.
6528 (lin_lwp_attach_lwp): Don't attach to LWPs we have already attached
6529 to.
6530 (lin_lwp_handle_extended): New function. Handle clone events.
6531 (wait_lwp): Use lin_lwp_handle_extended. Update comment about
6532 thread exit events.
6533 (child_wait): Handle clone events.
6534 (lin_lwp_wait: Use lin_lwp_handle_extended and handle clone events.
6535 * linux-nat.c (linux_enable_event_reporting): Turn on
6536 PTRACE_O_TRACECLONE.
6537 (linux_handle_extended_wait): Handle clone events.
6538 * thread-db.c: Include <gnu/libc-version.h>.
6539 (struct private_thread_info): Add dying flag.
6540 (enable_thread_event_reporting): Enable TD_DEATH for glibc 2.2 and
6541 higher.
6542 (attach_thread): Update comments. Handle dying threads.
6543 (detach_thread): Set the dying flag.
6544 (check_event): Always call attach_thread.
6545
6546 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
6547
6548 * mips-tdep.c (mips_pdr_data): New.
6549 (non_heuristic_proc_desc): Use objfile_data and set_objfile_data.
6550 (_initialize_mips_tdep): Initialize mips_pdr_data.
6551
6552 2004-03-29 Corinna Vinschen <vinschen@redhat.com>
6553
6554 * minsyms.c (install_minimal_symbols): Move dropping leading
6555 char from linkage name from here...
6556 (prim_record_minimal_symbol_and_info): ...to here. Simplify
6557 test for "__gnu_compiled*" symbols.
6558
6559 2004-03-28 Jim Blandy <jimb@redhat.com>
6560
6561 * rs6000-tdep.c (skip_prologue): Recognize moves from argument
6562 registers to temp register r0 and byte stores as prologue
6563 instructions.
6564
6565 2004-03-28 Andrew Cagney <cagney@redhat.com>
6566
6567 * PROBLEMS (Stack backtraces): Rewrite. Remove reference to
6568 arm*-*-*.
6569
6570 2004-03-28 Stephane Carrez <stcarrez@nerim.fr>
6571
6572 * tui/tui-regs.c (tui_show_registers): Make sure the TUI is active
6573 and switch the layout to force a display of register window.
6574
6575 2004-02-26 J. Brobecker <brobecker@gnat.com>
6576
6577 * amd64-tdep.c (amd64_classify): make RANGE_TYPE objects be part
6578 of the INTEGER class.
6579
6580 2004-03-26 Jim Blandy <jimb@redhat.com>
6581
6582 * ppc-linux-tdep.c (ppc_linux_init_abi): Long doubles are eight
6583 bytes long on PPC GNU/Linux.
6584
6585 2004-03-26 David Carlton <carlton@kealia.com>
6586
6587 * PROBLEMS: Refer to gdb/1588 instead of gdb/826.
6588
6589 2004-03-25 Andrew Cagney <cagney@redhat.com>
6590
6591 * PROBLEMS: Add general section titles, remove references to
6592 specific releases.
6593
6594 2004-03-25 Daniel Jacobowitz <drow@mvista.com>
6595
6596 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE): Define to
6597 INT_REGISTER_SIZE.
6598 (arm_linux_push_arguments): Use TARGET_DOUBLE_BIT instead of
6599 FP_REGISTER_VIRTUAL_SIZE.
6600 * arm-tdep.c (arm_make_sigtramp_cache): Use register_size instead
6601 of DEPRECATED_REGISTER_RAW_SIZE.
6602 (arm_register_type): Add gdbarch argument.
6603 (arm_register_raw_size, arm_register_virtual_size): Delete.
6604 (arm_register_byte, arm_extract_return_value)
6605 (arm_store_return_value, arm_get_longjmp_target): Update references
6606 to INT_REGISTER_RAW_SIZE and FP_REGISTER_RAW_SIZE.
6607 (arm_gdbarch_init): Likewise. Don't set
6608 deprecated_register_raw_size, deprecated_register_virtual_size,
6609 deprecated_max_register_raw_size,
6610 deprecated_max_register_virtual_size, or
6611 deprecated_max_register_virtual_type. Do set register_type.
6612 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE)
6613 (ARM_MAX_REGISTER_VIRTUAL_SIZE, INT_REGISTER_VIRTUAL_SIZE)
6614 (FP_REGISTER_VIRTUAL_SIZE): Delete.
6615 (INT_REGISTER_RAW_SIZE): Rename to INT_REGISTER_SIZE.
6616 (FP_REGISTER_RAW_SIZE): Rename to FP_REGISTER_SIZE.
6617 * arm-linux-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Define to
6618 INT_REGISTER_SIZE.
6619 * remote-rdp.c (remote_rdp_fetch_register): Use MAX_REGISTER_SIZE.
6620 (remote_rdp_store_register): Likewise.
6621
6622 2004-03-24 Daniel Jacobowitz <drow@mvista.com>
6623
6624 * Makefile.in (mips-linux-tdep.o): Update dependencies.
6625 * mips-tdep.c (mips_gdbarch_init): Move frame predicates
6626 to after osabi initialization.
6627 * mips-linux-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
6628 (mips_linux_o32_sigframe_init, mips_linux_n32n64_sigframe_init): New
6629 functions.
6630 (mips_linux_o32_sigframe, mips_linux_o32_rt_sigframe)
6631 (mips_linux_n32_rt_sigframe, mips_linux_n64_rt_sigframe): New
6632 variables.
6633 (mips_linux_init_abi): Append signal trampoline unwinders.
6634
6635 2004-03-24 Andrew Cagney <cagney@redhat.com>
6636
6637 * tramp-frame.h (TRAMP_SENTINEL_INSN): Define, document.
6638 * tramp-frame.c: Include "gdb_assert.h".
6639 (tramp_frame_start): Use TRAMP_SENTINEL_INSN. Use ULONGEST and
6640 correct sizeof.
6641 (tramp_frame_append): Validate the tramp frame's instructions.
6642 * Makefile.in (tramp-frame.o): Update dependencies.
6643
6644 2004-03-23 Andrew Cagney <cagney@redhat.com>
6645
6646 * trad-frame.h (trad_frame_set_reg_addr): Declare.
6647
6648 2004-03-23 Andrew Cagney <cagney@redhat.com>
6649
6650 * MAINTAINERS (Past Maintainers): Add Mark Salter and Fernando
6651 Nasser as past testsuite/lib/ (and other) maintainers.
6652
6653 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
6654
6655 * infcmd.c (attach_command): Reread symbols if we already have
6656 an exec file.
6657
6658 2004-03-23 Andrew Cagney <cagney@redhat.com>
6659
6660 * rs6000-tdep.c (frame_get_saved_regs): Delete unused function.
6661
6662 2004-03-23 Andrew Cagney <cagney@redhat.com>
6663
6664 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): Deprecate.
6665 * gdbarch.h, gdbarch.c: Re-generate.
6666 * i386obsd-tdep.c (i386obsd_init_abi): Update.
6667 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
6668 * i386bsd-tdep.c (i386bsd_init_abi): Update.
6669 * config/vax/tm-vaxbsd.h (DEPRECATED_SIGTRAMP_END)
6670 (DEPRECATED_SIGTRAMP_START): Update.
6671 * config/m68k/tm-nbsd.h (DEPRECATED_SIGTRAMP_END)
6672 (DEPRECATED_SIGTRAMP_START): Update.
6673 * blockframe.c (find_pc_sect_partial_function): Update.
6674 * arch-utils.c (legacy_pc_in_sigtramp): Update.
6675
6676 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
6677
6678 * remote.c (remote_open_1): Reopen the exec file and reread symbols
6679 if necessary.
6680
6681 2004-03-23 Andrew Cagney <cagney@redhat.com>
6682
6683 * gdbarch.sh (PC_IN_SIGTRAMP): Change to a function with
6684 predicate, deprecate.
6685 * gdbarch.h, gdbarch.c: Re-generate.
6686 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
6687 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
6688 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Update.
6689 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
6690 * alphanbsd-tdep.c (alphanbsd_init_abi): Update.
6691 * amd64-linux-tdep.c (amd64_linux_init_abi): Update.
6692 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Update.
6693 * amd64nbsd-tdep.c (amd64nbsd_init_abi): Update.
6694 * amd64obsd-tdep.c (amd64obsd_init_abi): Update.
6695 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Update.
6696 * blockframe.c (find_pc_partial_function): Update.
6697 * breakpoint.c (bpstat_what): Update.
6698 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update.
6699 * frv-linux-tdep.c (frv_linux_init_abi): Update.
6700 * frv-tdep.c (frv_sigtramp_frame_sniffer): Update.
6701 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Update.
6702 * i386-interix-tdep.c (i386_interix_init_abi): Update.
6703 * i386-linux-tdep.c (i386_linux_init_abi): Update.
6704 * i386-nto-tdep.c (i386nto_init_abi): Update.
6705 * i386-sol2-tdep.c (i386_sol2_init_abi): Update.
6706 * i386-tdep.c (i386_sigtramp_frame_sniffer)
6707 (i386_svr4_init_abi, i386_go32_init_abi, i386_gdbarch_init): Update.
6708 * i386bsd-tdep.c (i386bsd_init_abi): Update.
6709 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
6710 * i386obsd-tdep.c (i386obsd_init_abi): Update.
6711 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Update.
6712 * infrun.c (pc_in_sigtramp): Update.
6713 * m68k-tdep.c (m68k_sigtramp_frame_sniffer): Update.
6714 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
6715 * mips-tdep.c (mips_gdbarch_init): Update.
6716 * mipsnbsd-tdep.c (mipsnbsd_init_abi): Update.
6717 * ppc-linux-tdep.c: Update comment.
6718 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Update.
6719 * shnbsd-tdep.c (shnbsd_init_abi): Update.
6720 * sparc-linux-tdep.c (sparc32_linux_init_abi): Update.
6721 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Update.
6722 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Update.
6723 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Update.
6724 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Update.
6725 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Update.
6726 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Update.
6727 * sparcobsd-tdep.c (sparc32obsd_init_abi): Update.
6728
6729 2004-03-23 Andrew Cagney <cagney@redhat.com>
6730
6731 * tramp-frame.h, tramp-frame.h: New files.
6732 * Makefile.in (SFILES, tramp_frame_h, COMMON_OBS, tramp-frame.o):
6733 Update rules to include "tramp-frame.h" and "tramp-frame.c".
6734
6735 * Makefile.in: Update all dependencies.
6736
6737 2004-03-23 Andrew Cagney <cagney@redhat.com>
6738
6739 * Makefile.in (trad_frame_h): Add $(frame_h).
6740 * trad-frame.h: Update copyright. Include "frame.h".
6741 (struct trad_frame_cache, trad_frame_cache_zalloc): Declare.
6742 (trad_frame_set_id, trad_frame_get_id): Declare.
6743 (trad_frame_set_reg_addr, trad_frame_get_register): Declare.
6744 * trad-frame.c: Update copyright.
6745 (struct trad_frame_cache): Define.
6746 (trad_frame_cache_zalloc): New function.
6747 (trad_frame_set_id, trad_frame_get_id): New functions.
6748 (trad_frame_set_reg_addr, trad_frame_get_register): New functions.
6749
6750 2004-03-22 Andrew Cagney <cagney@redhat.com>
6751
6752 * s390-tdep.c (struct s390_stub_unwind_cache): Rename
6753 s390_pltstub_unwind_cache.
6754 (s390_stub_frame_unwind_cache): Rename
6755 s390_pltstub_frame_unwind_cache.
6756 (s390_stub_frame_this_id): Rename s390_pltstub_frame_this_id.
6757 (s390_stub_frame_prev_register): Rename
6758 s390_pltstub_frame_prev_register.
6759 (s390_stub_frame_unwind): Rename s390_pltstub_frame_unwind.
6760 (s390_stub_frame_sniffer): Rename s390_stub_frame_sniffer.
6761
6762 From Ulrich Weigand:
6763 * s390-tdep.c (s390_pltstub_frame_sniffer): Handle invalid function
6764 pointer calls like PLT calls.
6765
6766 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
6767
6768 * mips-tdep.c (non_heuristic_proc_desc): Search using the specified
6769 PC rather than the partial function start address. Use the start
6770 address to sanity check the found PDR.
6771
6772 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
6773
6774 * lin-lwp.c (lin_lwp_wait): Pass the LWP ID to
6775 linux_handle_extended_wait.
6776
6777 2004-03-22 Andrew Cagney <cagney@redhat.com>
6778
6779 * rs6000-tdep.c (frame_initial_stack_address): Delete unused
6780 function.
6781
6782 * frame.h (generic_pop_current_frame): Delete declaration.
6783 (deprecate_pop_dummy_frame): Deprecate
6784 generic_pop_dummy_frame.
6785 * dummy-frame.c (deprecated_pop_dummy_frame): Update.
6786 (generic_pop_current_frame): Delete function.
6787 * mn10300-tdep.c (mn10300_pop_frame): Eliminate call to
6788 generic_pop_current_frame.
6789 * v850-tdep.c (v850_pop_frame): Update.
6790 * mcore-tdep.c (mcore_pop_frame): Update.
6791 * sh64-tdep.c (sh64_pop_frame): Update.
6792 * h8300-tdep.c (h8300_pop_frame): Update.
6793
6794 2004-03-22 Andrew Cagney <cagney@redhat.com>
6795
6796 * frame.h (deprecated_pc_in_call_dummy): Rename
6797 generic_pc_in_call_dummy.
6798 * dummy-frame.h (pc_in_dummy_frame): Delete declaration.
6799 * dummy-frame.c (deprecated_pc_in_call_dummy): Rename
6800 generic_pc_in_call_dummy.
6801 (pc_in_dummy_frame): Make static.
6802 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Update.
6803 * gdbarch.h, gdbarch.c: Re-generate.
6804 * dummy-frame.c (dummy_frame_sniffer): Simplify.
6805 * frame.c (frame_type_from_pc): Call deprecated_pc_in_call_dummy.
6806 (legacy_get_prev_frame): Ditto.
6807 * inferior.h: Delete reference to generic_pc_in_call_dummy in
6808 comment.
6809
6810 2004-03-21 Andrew Cagney <cagney@redhat.com>
6811
6812 * inferior.h (deprecated_pc_in_call_dummy_at_entry_point): Delete
6813 declaration and out-of-date comment.
6814 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
6815 Delete function.
6816 * mn10300-tdep.c (mn10300_gdbarch_init): Do not set
6817 deprecated_pc_in_call_dummy.
6818
6819 * infrun.c (handle_inferior_event): For non legacy frames, use the
6820 frame ID and frame type to identify a signal trampoline. Update
6821 comments.
6822
6823 2004-03-21 Nathan J. Williams <nathanw@wasabisystems.com>
6824
6825 * mipsnbsd-tdep.c: Update copyright. Include "mips-tdep.h".
6826 * Makefile.in (mipsnbsd-tdep.o): Update dependencies.
6827
6828 2004-03-21 Andrew Cagney <cagney@redhat.com>
6829
6830 * frame-unwind.h: Update copyright.
6831 (struct frame_data): Add opaque declaration.
6832 (frame_sniffer_ftype): Declare.
6833 (struct frame_unwind): Add "unwind_data" and "sniffer".
6834 (frame_unwind_register_unwinder): Declare.
6835 (frame_unwind_find_by_frame): Add parameter "this_cache".
6836 * frame.c (get_frame_id, create_new_frame, legacy_get_prev_frame)
6837 (legacy_get_prev_frame, legacy_get_prev_frame)
6838 (get_frame_type): Pass the prologue_cache to
6839 frame_unwind_find_by_frame.
6840 * frame-unwind.c (struct frame_unwind_table_entry): Add field
6841 "unwinder".
6842 (frame_unwind_register_unwinder): New function.
6843 (frame_unwind_find_by_frame): Handle an unwind sniffer.
6844
6845 2004-03-20 Paul Hilfinger <hilfingr@nile.gnat.com>
6846
6847 * bcache.c (print_percentage): Use floating point to avoid
6848 incorrect results when portion*100 overflows.
6849
6850 2004-03-19 Kevin Buettner <kevinb@redhat.com>
6851
6852 * ppc_tdep.h (ppc_linux_frame_saved_pc)
6853 (ppc_linux_init_extra_frame_info)
6854 (ppc_linux_frameless_function_invocation)
6855 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain)
6856 (rs6000_frame_saved_pc, rs6000_init_extra_frame_info)
6857 (rs6000_frameless_function_invocation, rs6000_frame_init_saved_regs)
6858 (rs6000_frame_chain): Delete declarations.
6859 * ppc-linux-tdep.c (ppc_linux_frame_saved_pc)
6860 (ppc_linux_init_extra_frame_info)
6861 (ppc_linux_frameless_function_invocation)
6862 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain): Delete.
6863 (ppc_linux_init_abi): Remove registration of above deleted functions.
6864 * rs6000-tdep.c (rs6000_init_extra_frame_info)
6865 (rs6000_frame_init_saved_regs, rs6000_init_frame_pc_first)
6866 (rs6000_frame_args_address, rs6000_saved_pc_after_call)
6867 (rs6000_pop_frame, rs6000_frameless_function_invocation)
6868 (rs6000_frame_saved_pc, rs6000_frame_chain): Delete.
6869 (rs6000_gdbarch_init): Remove registration of above deleted functions.
6870 Use rs6000_unwind_pc(), rs6000_frame_sniffer(),
6871 rs6000_unwind_dummy_id(), and rs6000_frame_base_sniffer() for
6872 frame management for all OSABIs.
6873
6874 2004-03-19 Andrew Cagney <cagney@redhat.com>
6875
6876 Committed by Kevin Buettner <kevinb@redhat.com>.
6877
6878 * ppc-linux-tdep.c: Include "trad-frame.h", and "frame-unwind.h".
6879 Update copyright.
6880 (struct ppc_linux_sigtramp_cache, ppc_linux_sigtramp_cache)
6881 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
6882 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
6883 (ppc_linux_init_abi): Add both 32- and 64-bit signal trampoline
6884 unwinders. #ifdef legacy frame code.
6885 * rs6000-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
6886 "frame-base.h".
6887 (rs6000_unwind_pc, rs6000_unwind_dummy_id)
6888 (struct rs6000_frame_cache, rs6000_frame_cache)
6889 (rs6000_frame_this_id, rs6000_frame_prev_register)
6890 (rs6000_frame_sniffer, rs6000_frame_unwind)
6891 (rs6000_frame_base_address, rs6000_frame_base_sniffer)
6892 (rs6000_frame_base): Implement a traditional frame unwinder.
6893 (rs6000_gdbarch_init): When unknown, NetBSD, or GNU/Linux use the
6894 frame unwinder.
6895
6896 2004-03-19 Kevin Buettner <kevinb@redhat.com>
6897
6898 * breakpoint.c (adjust_breakpoint_address): Don't adjust
6899 breakpoint address for watchpoints or the catch eventpoints.
6900 Add new paramter ``bptype''. Adjust all callers.
6901
6902 2004-03-19 Andrew Cagney <cagney@redhat.com>
6903
6904 * config/pa/tm-hppa.h (GDB_TARGET_IS_HPPA): Delete unused macro.
6905
6906 * PROBLEMS: Delete note that ARM does not use frame code, problem
6907 fixed.
6908
6909 2004-03-18 Andrew Cagney <cagney@redhat.com>
6910
6911 * stack.c (return_command): Delete code wrapped in #ifdef
6912 DEPRECATED_CALL_DUMMY_HAS_COMPLETED, macro no longer defined.
6913
6914 * rs6000-tdep.c (skip_prologue): Record only the first LR save.
6915
6916 2004-03-18 Andrew Cagney <cagney@redhat.com>
6917
6918 * config/mips/tm-nbsd.h: Replace IN_SIGTRAMP with
6919 DEPRECATED_IN_SIGTRAMP.
6920 * config/powerpc/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6921 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP) Ditto.
6922 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6923 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6924 * config/ia64/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6925 * config/ia64/tm-aix.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6926 * config/arm/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6927 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6928 * arch-utils.c (legacy_pc_in_sigtramp): Ditto.
6929 * arch-utils.h: Remove reference to IN_SIGTRAMP in comment.
6930
6931 2004-03-18 Andrew Cagney <cagney@redhat.com>
6932
6933 * frame-base.c: Update copyright. Include "gdb_obstack.h".
6934 (struct frame_base_table_entry): Define.
6935 (struct frame_base_table): Re-implement as a linked list.
6936 (frame_base_init): Re-implement.
6937 (frame_base_table): Delete function.
6938 (append_predicate): Delete function.
6939 (frame_base_append_sniffer): Update.
6940 (frame_base_set_default): Update.
6941 (frame_base_find_by_frame): Update.
6942 (_initialize_frame_base): Use gdbarch_data_register_pre_init.
6943 * Makefile.in (frame-base.o): Update dependencies.
6944
6945 2004-03-17 Andrew Cagney <cagney@redhat.com>
6946
6947 * frame.c (legacy_get_prev_frame): Pass correct frame to
6948 frame_unwind_find_by_frame.
6949
6950 2004-03-17 David Carlton <carlton@kealia.com>
6951
6952 * NEWS: Mention C++ nested types and namespaces
6953
6954 2004-03-16 Michael Chastain <mec.gnu@mindspring.com>
6955
6956 * PROBLEMS: Add section headers, "Regressions since gdb 6.0"
6957 and "Regressions since gdb 5.3.". Add known regressions since
6958 gdb 6.0.
6959
6960 2004-03-16 David Carlton <carlton@kealia.com>
6961
6962 * dwarf2read.c (process_structure_scope): Process children even
6963 when we're a declaration.
6964
6965 2004-03-16 Andrew Cagney <cagney@redhat.com>
6966
6967 * symtab.h (find_pc_sect_partial_function): Delete declaration.
6968 * blockframe.c (find_pc_partial_function)
6969 (find_pc_sect_partial_function): Merge into a single
6970 find_pc_partial_function.
6971
6972 2004-03-16 Mark Kettenis <kettenis@gnu.org>
6973
6974 * i386bsd-nat.c: s/regno/regnum/g.
6975 (fetch_inferior_registers): Use I386_ST0_REGNUM instead of
6976 FP0_REGNUM.
6977 (store_inferior_registers): Likewise.
6978
6979 2004-03-16 Mark Kettenis <kettenis@gnu.org>
6980
6981 * i386bsd-nat.c (fill_fpregset): Call i387_collect_fsave instead
6982 of i387_fill_fsave.
6983 (store_inferior_registers): Call i387_collect_fsave and
6984 i387_collect_fxsave instead of i387_fill_fsave and
6985 i387_fill_fxsave.
6986
6987 2004-03-15 Andrew Cagney <cagney@redhat.com>
6988
6989 * Makefile.in (frame-unwind.o): Update dependencies.
6990 * frame-unwind.c: Include "gdb_obstack.h".
6991 (frame_unwind_init): Replace "gdbarch" parameter with an "obstack"
6992 parameter.
6993 (append_predicate): Delete function.
6994 (struct frame_unwind_table_entry): New structure.
6995 (struct frame_unwind_table): Replace "sniffer" with "head" and
6996 "tail".
6997 (frame_unwind_append_sniffer): Update.
6998 (frame_unwind_find_by_frame): Update.
6999 (_initialize_frame_unwind): Registe frame_unwind_init using
7000 gdbarch_data_register_pre_init.
7001
7002 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7003
7004 * i386bsd-nat.c: Update copyright year.
7005 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Undefine and then
7006 define unconditionally.
7007
7008 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7009
7010 * i387-tdep.h (i387_collect_fsave): New prototype.
7011 * i387-tdep.c (i387_collect_fsave): New function containing most
7012 of the code from i387_fill_fsave.
7013 (i387_fill_fsave): Call i387_collect_fsave.
7014
7015 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7016
7017 * i386-linux-tdep.c: Update copyright year.
7018 (i386_linux_svr4_fetch_link_map_offsets): Remove function.
7019 (i386_linux_init_abi): Set solib_svr4_fetch_link_maop_offsets to
7020 svr4_ilp32_link_map_offsets instead of
7021 i386_linux_svr4_fetch_link_map_offsets.
7022
7023 2004-03-15 David Carlton <carlton@kealia.com>
7024
7025 Fix for PR c++/1553:
7026 * dwarf2read.c (read_structure_type): Determine type name by
7027 calling determine_class_name.
7028 (determine_class_name): New.
7029 (determine_prefix): Look at TYPE_TAG_NAME and call
7030 determine_class_name when appropriate.
7031 (determine_prefix_aux, class_name): Delete.
7032 (read_namespace): Set die->type.
7033
7034 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7035
7036 * breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
7037 unused macro definition. The definition in target.h (or perhaps
7038 elsewhere) takes precedence.
7039
7040 2004-03-15 Andrew Cagney <cagney@redhat.com>
7041
7042 * ppc-tdep.h: Update copyright.
7043 (ppc_linux_supply_gregset, ppc_linux_supply_fpregset): Change
7044 function signatures to match "regsets.h".
7045 * ppc-linux-tdep.c: Include "regset.h".
7046 (ELF_GREGSET_SIZE): Delete.
7047 (right_supply_register): New function.
7048 (ppc_linux_supply_fpregset, ppc_linux_supply_gregset): Rewrite
7049 using right_supply_register.
7050 (ppc32_linux_supply_gregset, ppc64_linux_supply_gregset): New
7051 functions.
7052 (ppc64_linux_gregset, ppc32_linux_gregset): Define.
7053 (ppc_linux_init_abi): Register ppc_linux_regset_from_core_section.
7054 (_initialize_ppc_linux_tdep): Do not register
7055 ppc_linux_regset_core_fns.
7056 (ppc_linux_regset_from_core_section): Replace
7057 fetch_core_registers.
7058 (ppc_linux_regset_core_fns): Delete.
7059 * ppc-linux-nat.c: (right_fill_reg): New function.
7060 (supply_gregset): Update call to ppc_linux_supply_gregset.
7061 (fill_gregset): Clear the register set, use right_fill_reg.
7062 (supply_fpregset): Update call to ppc_linux_supply_fpregset.
7063 (fill_fpregset): Use right_fill_reg, correctly compute FP offsets.
7064
7065 * rs6000-tdep.c (rs6000_register_virtual_type): Make registers
7066 unsigned.
7067
7068 2004-03-15 Andrew Cagney <cagney@redhat.com>
7069
7070 * gdbarch.sh (gdbarch_data_pre_init_fytpe)
7071 (gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
7072 (gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
7073 and register_gdbarch_data.
7074 (deprecated_set_gdbarch_data): Rename set_gdbarch_data.
7075 (struct gdbarch_data): Replace "init" by "pre_init" and
7076 "post_init".
7077 * gdbarch.h, gdbarch.c: Re-generate.
7078 * dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
7079 with"obstack", use OBSTACK_ZALLOC.
7080 (dwarf2_frame_ops): Delete.
7081 (dwarf2_frame_set_init_reg): Use gdbarch_data.
7082 (dwarf2_frame_init_reg): Use gdbarch_data.
7083 (_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
7084 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets)
7085 (_initialize_svr4_solib): Update.
7086 * user-regs.c (_initialize_user_regs): Update.
7087 * reggroups.c (_initialize_reggroup): Update.
7088 * regcache.c (_initialize_regcache): Update.
7089 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
7090 * libunwind-frame.c (_initialize_libunwind_frame): Update.
7091 * gnu-v3-abi.c (init_gnuv3_ops): Update.
7092 * frame-unwind.c (_initialize_frame_unwind): Update.
7093 * frame-base.c (_initialize_frame_base): Update.
7094 * user-regs.c (user_reg_add): Update.
7095 * reggroups.c (reggroup_add): Update.
7096 * mips-linux-tdep.c (set_mips_linux_register_addr): Update.
7097 * libunwind-frame.c (libunwind_frame_set_descr): Update.
7098 * frame-unwind.c (frame_unwind_append_sniffer): Update.
7099 * frame-base.c (frame_base_table): Update.
7100 * remote.c (_initialize_remote): Update.
7101 * gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
7102
7103 2004-03-15 Andrew Cagney <cagney@redhat.com>
7104
7105 * cris-tdep.c (bfd_lookup_symbol): Delete unused function.
7106
7107 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7108
7109 * Makefile.in (frv-linux-tdep.o): Add dependencies.
7110 * frv-linux-tdep.c: New file.
7111 * frv-tdep.c (struct gdbarch_tdep): Add new field
7112 ``sigcontext_reg_addr''.
7113 (frv_set_sigcontext_reg_addr, frv_sigtramp,frame_cache)
7114 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
7115 (frv_sigramp_frame_sniffer): New functions.
7116 (frv_sigtramp_frame_unwind): New static global.
7117 (frv_gdbarch_init): Hook in ABI-specific overrides. Hook up frame
7118 sniffers.
7119 * frv-tdep.h (frv_set_sigcontext_reg_addr): New function.
7120 * config/frv/frv.mt (TDEPFILES): Add frv-linux-tdep.o.
7121
7122 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7123
7124 * frv-tdep.c (frv_analyze_prologue): Terminate prologue scan,
7125 but not via a call to error(), when unable to read memory.
7126
7127 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7128
7129 * frv-tdep.c (frv_call_dummy_words): Delete.
7130 (frv_frame_unwind_cache): Delete unused variable, ``prev_sp''.
7131
7132 2004-03-15 Andrew Cagney <cagney@redhat.com>
7133
7134 * infrun.c (handle_step_into_function, step_over_function): Only
7135 update and use STEP_FRAME_ID when the system is using legacy
7136 frames. Update comments.
7137
7138 2004-03-14 Mark Kettenis <kettenis@gnu.org>
7139
7140 * amd64-linux-tdep.h: Remove file.
7141 * amd64-linux-tdep.c: Don't include "inferior.h" and
7142 "amd64-linux-tdep.h". Include "frame.h" and "solib-svr4.h".
7143 (USER_R15, USER_R14, USER_R13, USER_R12, USER_RBP, USER_RBX)
7144 (USER_R11, USER_R10, USER_R9, USER_R8, USER_RAX, USER_RCX)
7145 (USER_RDX, USER_RSI, USER_RDI, USER_RIP, USER_CS, USER_EFLAGS)
7146 (USER_RSP, USER_SS, USER_DS, USER_ES, USER_FS, USER_GS): Remove
7147 macros.
7148 (user_to_gdb_regmap): Remove variable.
7149 (amd64_linux_gregset_reg_offset): New variable.
7150 (amd64_core_fns): Remove variable.
7151 (fetch_core_registers): Remove function.
7152 (amd64_linux_supply_gregset, amd64_linux_fill_gregset): Remove
7153 functions.
7154 (_initialize_amd64_linux_tdep): Don't set add_core_fns.
7155 * amd64-linux-nat.c: Don't include "amd64-linux-tdep.h".
7156 * Makefile.in (amd64_linux_tdep_h): Remove.
7157 (amd64-linux-nat.o): Update dependencies.
7158 (amd64-linux-tdep.o): Update dependencies.
7159
7160 * amd64-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
7161 (fetch_regs, fetch_fpregs, store_regs, store_fpregs): Remove
7162 functions.
7163 (fetch_inferior_registers, store_inferior_registers): Rewrite.
7164
7165 * amd64-tdep.h (amd64_fill_fxsave): Remove prototype.
7166 * amd64-tdep.c (amd64_fill_fxsave): Remove function.
7167
7168 2004-03-14 Daniel Jacobowitz <drow@mvista.com>
7169
7170 * dwarf2read.c (read_structure_type): Rename from
7171 read_structure_scope. Don't create a symbol or call process_die.
7172 Return immediately if die->type is set. Call read_type_die before
7173 dwarf2_add_member_fn.
7174 (process_structure_scope): New function.
7175 (read_enumeration_type, process_enumeration_scope): New functions,
7176 broken out from read_enumeration. Don't create the enumeration
7177 type if it has already been created.
7178 (read_enumeration): Removed.
7179 (process_die): Call read_structure_type, process_structure_scope,
7180 read_enumeration_type, and process_enumeration_scope. Just call
7181 new_symbol for base and subrange types. Add a comment about other
7182 type dies.
7183 (read_type_die): Call read_enumeration_type.
7184 (add_partial_structure, new_symbol): Update comments.
7185
7186 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
7187
7188 * m68hc11-tdep.c (m68hc11_register_name): Get soft reg information.
7189
7190 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
7191
7192 * tui/tui-win.h (tui_get_cmd_list): Declare.
7193 * tui/tui-win.c (tui_command): New function.
7194 (tui_get_cmd_list): New function.
7195 (_initialize_tui_win): Moved initialization of tui command in
7196 tui_get_cmd_list.
7197
7198 * tui/tui-data.c (init_content_element): Setup new data members.
7199 (init_win_info): Likewise.
7200 (free_content_elements): Free it.
7201 * tui/tui-data.h (struct tui_data_element): Store the register
7202 content to print.
7203 (struct tui_data_info): Keep the current register group.
7204
7205 * tui/tui-layout.c (tui_set_layout): Update call to tui_show_registers.
7206
7207 * tui/tui-regs.h (tui_show_registers): Update prototype.
7208 (tui_toggle_float_regs, tui_calculate_regs_column_count): Remove.
7209 (tui_resize_all): No need to calculate anything for register window.
7210 * tui/tui-regs.c (tui_calculate_regs_column_count): Remove.
7211 (tui_set_register_element, tui_set_general_regs_content): Remove.
7212 (tui_set_special_regs_content): Remove.
7213 (tui_set_general_and_special_regs_content): Remove.
7214 (tui_set_float_regs_content): Remove.
7215 (tui_reg_value_has_changed, tui_get_register_raw_value): Remove.
7216 (tui_set_regs_content): Remove.
7217 (tui_toggle_float_regs, _tui_toggle_float_regs_command): Remove.
7218 (tui_v_show_registers_command_support): Remove.
7219 (tui_show_registers): Use a reggroup to specify the registers to show.
7220 (tui_show_register_group): New function.
7221 (tui_display_registers_from): Compute the layout of register window
7222 and refresh with new API; be sure to delete old register windows.
7223 (tui_check_register_values): Update to use tui_get_register and
7224 tui_display_data.
7225 (tui_display_register): Just refresh the register window part.
7226 (tui_register_format): Format registers and save in tui_data_element.
7227 (tui_get_register): New to combine tui_reg_value_has_changed and
7228 tui_get_register_raw_value; fix to use the new gdb API.
7229 (tui_show_float_command): Renamed tui_reg_float_command.
7230 (tui_show_general_command): Renamed tui_reg_general_command.
7231 (tui_show_special_command): Renamed tui_reg_system_command.
7232 (_initialize_tui_regs): Remove unused commands.
7233
7234 2004-03-13 Mark Kettenis <kettenis@gnu.org>
7235
7236 * NEWS (New native configurations): Mention OpenBSD/amd64.
7237
7238 * config/i386/nm-fbsd.h: Include "config/nm-bsd.h".
7239 (PTRACE_ARG3_TYPE, FETCH_INFERIOR_REGISTERS, ATTACH_DETACH):
7240 Remove defines.
7241 * config/i386/nm-fbsd64.h: Likewise.
7242 * config/i386/nm-obsd.h: Likewise.
7243 * config/sparc/nm-fbsd.h: Likewise. Update copyright year.
7244 * config/alpha/nm-fbsd.h: Likewise. Update copyright year.
7245
7246 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7247
7248 * frv-tdep.c (set_variant_scratch_registers): New function.
7249 * frv-tdep.h (scr0_regnum, scr1_regnum, scr2_regnum, scr3_regnum):
7250 New constants.
7251
7252 From Richard Sandiford <rsandifo@redhat.com>:
7253 * frv-tdep.c (frv_gdbarch_init): Add FR450 support.
7254
7255 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7256
7257 * frv-tdep.c, frv-tdep.h (first_gpr_regnum, sp_regnum, fp_regnum)
7258 (struct_return_regnum, last_gpr_regnum, first_fpr_regnum)
7259 (last_fpr_regnum, pc_regnum, first_spr_regnum, psr_regnum, ccr_regnum)
7260 (cccr_regnum, fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum)
7261 (tbr_regnum, brr_regnum, dbar0_regnum, dbar1_regnum, dbar2_regnum)
7262 (dbar3_regnum, lr_regnum, lcr_regnum, iacc0h_regnum, iacc0l_regnum)
7263 (last_spr_regnum, frv_num_regs, first_pseudo_regnum, iacc0_regnum)
7264 (last_pseudo_regnum, frv_num_pseudo_regs): Move constant (enum)
7265 definitions from frv-tdep.c to frv-tdep.h.
7266
7267 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7268
7269 Add shared library support for FR-V FDPIC ABI:
7270 * Makefile.in (solib-frv.o): Add dependencies.
7271 * frv-tdep.c (find_func_descr, frv_convert_from_func_ptr_addr):
7272 New functions.
7273 (frv_push_dummy_call): Add support for FDPIC ABI.
7274 (frv_gdbarch_init): Call set_gdbarch_convert_from_func_ptr_addr()
7275 for FDPIC ABI.
7276 * frv-tdep.h (frv_fdpic_find_global_pointer): Declare.
7277 (frv_fdpic_find_canonical_descriptor): Declare.
7278 * solib-frv.c: New file.
7279 * config/frv/frv.mt (TDEPFILES): Add solib.o and solib-frv.o.
7280 * config/frv/tm-frv.h (solib.h): Include.
7281
7282 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7283
7284 * Makefile.in (elf_frv_h, frv_tdep_h): Define.
7285 (frv-tdep.o): Update dependencies.
7286 * frv-tdep.h: New file.
7287 * frv-tdep.c (elf-bfd.h, elf/frv.h, osabi.h, frv-tdep.h): Include.
7288 (fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum): New
7289 constants.
7290 (struct gdbarch_tdep): Add new member ``frv_abi''.
7291 (frv_abi, frv_fdpic_loadmap_addresses, set_variant_abi_fdpic): New
7292 functions.
7293 (new_variant): Set ``frv_abi'' field.
7294 (gdb_arch_init): Detect FDPIC executables.
7295
7296 2004-03-12 Mark Kettenis <kettenis@gnu.org>
7297
7298 * solib-svr4.h: Change SOLIB_SVR4 wrapper into SOLIB_SVR4_H
7299 wrapper.
7300
7301 2004-03-11 Andrew Cagney <cagney@redhat.com>
7302
7303 * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper.
7304
7305 2004-03-11 Kevin Buettner <kevinb@redhat.com>
7306
7307 * solist.h (master_so_list): New function.
7308 * solib.c (master_so_list): Likewise.
7309 * solib-svr4.c (enable_break): Iterate over so_list entries
7310 obtained from master list instead of entries obtained directly
7311 via svr4_current_sos().
7312
7313 2004-03-10 Ben Elliston <bje@gnu.org>
7314
7315 * MAINTAINERS: Update my mail address.
7316
7317 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com>
7318
7319 * remote-m32r-sdi.c: Support hardware watchpoint.
7320
7321 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7322
7323 * user-regs.c: Update copyright years.
7324 (struct user_regs): Rename to gdb_user_regs.
7325 (append_user_reg, builtin_user_regs, user_regs_init)
7326 (user_reg_add, user_reg_map_name_to_regnum)
7327 (usernum_to_user_reg): Update.
7328
7329 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7330
7331 * dwarf2read.c (skip_leb128, peek_die_abbrev, skip_one_die)
7332 (skip_children): New functions.
7333 (locate_pdi_sibling): Call skip_children.
7334
7335 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7336
7337 * arm-tdep.c (arm_use_struct_convention): Look through typedefs.
7338 * gdbtypes.c (check_typedef): Update comments.
7339
7340 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7341
7342 * dwarf2read.c (struct comp_unit_head): Remove dwarf2_abbrevs array.
7343 (struct dwarf2_cu): Add abbrev_obstack and dwarf2_abbrevs
7344 pointer. Update comment about comp_unit_head.
7345 (struct abbrev_info): Shorten two int flags.
7346 (dwarf_alloc_abbrev): Take a CU argument.
7347 (dwarf2_build_psymtabs_hard): Call dwarf2_free_abbrev_table
7348 each time through the loop. Update cleanup argument.
7349 (psymtab_to_symtab_1): Update cleanup call.
7350 (dwarf2_read_abbrevs, dwarf2_alloc_abbrev): Allocate on the
7351 abbrev_obstack.
7352 (dwarf2_free_abbrev_table): Renamed from dwarf2_empty_abbrev_table.
7353 Just call obstack_free and clear the pointer.
7354
7355 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7356
7357 * infrun.c (handle_inferior_event): Remove short-circuit code for
7358 events in a different thread.
7359
7360 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7361
7362 * target.c (debug_to_xfer_memory): If targetdebug is 1, don't
7363 print the whole transfer.
7364 (initialize_targets): Update description of "set debug target".
7365
7366 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7367
7368 * arm-tdep.c (thumb_get_next_pc): Handle Thumb BLX.
7369
7370 2004-03-08 Nathan J. Williams <nathanw@wasabisystems.com>
7371
7372 * MAINTAINERS (write after approval): Add myself.
7373
7374 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
7375
7376 * sh-tdep.c (sh_print_registers_info): Use for loop.
7377 Don't skip multiple registers when a float register is encountered.
7378
7379 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
7380
7381 Fix PR tdep/1291.
7382 * sh-tdep.c (sh_analyze_prologue): Align PC relative addressing
7383 to official SH documentation.
7384
7385 2004-03-07 Andrew Cagney <cagney@redhat.com>
7386
7387 * ppc-linux-nat.c (ppc_ptrace_cannot_fetch_store_register): Delete
7388 unused function.
7389
7390 2004-03-07 Daniel Jacobowitz <drow@mvista.com>
7391
7392 * arm-tdep.c (thumb_get_next_pc): Handle BX.
7393 (arm_get_next_pc): Handle BX and BLX.
7394
7395 2004-03-07 Andrew Cagney <cagney@redhat.com>
7396
7397 * hppa-tdep.c: Replace DEPRECATED_FP_REGNUM with HPPA_FP_REGNUM,
7398 FP0_REGNUM with HPPA_FP0_REGNUM, and SP_REGNUM with
7399 HPPA_SP_REGNUM.
7400 (hppa_register_raw_size, hppa_register_byte, hppa_read_fp)
7401 (hppa_target_read_fp): Delete.
7402 (hppa_gdbarch_init): Do not set deprecated register_raw_size,
7403 register_virtual_size, max_register_raw_size,
7404 max_register_virtual_size, register_byte, register_size,
7405 target_read_fp, fp_regnum, and register_bytes. Set register_type
7406 instead of register_virtual_type.
7407 (hppa32_register_type, hppa64_register_type): Replace
7408 hppa32_register_virtual_type and hppa64_register_virtual_type.
7409 * config/pa/tm-hppa.h (HPPA_FP0_REGNUM, HPPA_SP_REGNUM)
7410 (HPPA_FP_REGNUM): Define.
7411
7412 * hppa-tdep.c (hppa_gdbarch_init): Add missing "break".
7413
7414 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO)
7415 (pa_do_registers_info): Delete.
7416 * hppa-tdep.c (pa_do_registers_info, pa_do_strcat_registers_info)
7417 (pa_print_registers, pa_print_fp_reg, pa_strcat_registers)
7418 (pa_strcat_fp_reg, pa_register_look_aside): Delete.
7419
7420 * infcall.c (legacy_push_dummy_code): Delete #ifdef
7421 GDB_TARGET_IS_HPPA code.
7422 * config/pa/tm-hppa.h (DEPRECATED_FIX_CALL_DUMMY)
7423 (hppa_fix_call_dummy, DEPRECATED_CALL_DUMMY_HAS_COMPLETED)
7424 (DEPRECATED_DUMMY_WRITE_SP, CALL_DUMMY): Delete.
7425 * config/pa/tm-hppa64.h (CALL_DUMMY): Delete.
7426 * hppa-tdep.c (hppa_frame_chain, hppa_frame_chain_valid)
7427 (hppa_push_dummy_frame, hppa_pop_frame, hppa_push_arguments)
7428 (hppa_fix_call_dummy, hppa64_stack_align, hppa_frame_saved_pc)
7429 (hppa_init_extra_frame_info, hppa_saved_pc_after_call)
7430 (hppa64_call_dummy_breakpoint_offset, hppa_frame_init_saved_regs)
7431 (hppa_frameless_function_invocation, hppa64_store_return_value)
7432 (hppa_store_struct_return, hppa64_extract_return_value)
7433 (hppa64_use_struct_convention, hppa_frame_find_saved_regs)
7434 (hppa32_call_dummy_length, hppa64_call_dummy_length)
7435 (find_dummy_frame_regs, FUNC_LDIL_OFFSET, FUNC_LDO_OFFSET)
7436 (find_proc_framesize, deposit_21, restore_pc_queue)
7437 (find_return_regnum, pc_in_interrupt_handler, deposit_14)
7438 (rp_saved, pc_in_linker_stub): Delete.
7439
7440 Unconditionally enable 64-bit frame and ABI code.
7441 * hppa-tdep.c (hppa_gdbarch_init): Do not set deprecated
7442 call_dummy_breakpoint_offset, call_dummy_length, stack_align,
7443 push_dummy_frame, fix_call_dummy, push_arguments,
7444 call_dummy_location, extract_return_value, use_struct_convention,
7445 store_return_value, store_struct_return, saved_pc_after_call,
7446 init_frame_pc, frame_init_saved_regs, init_extra_frame_info,
7447 frame_chain, frame_chain_valid, frameless_function_invocation,
7448 frame_saved_pc, and pop_frame.
7449
7450 * hppa-tdep.c: Replace PC_REGNUM with PCOQ_HEAD_REGNUM.
7451 (hppa64_return_value, hppa64_push_dummy_call): Rewrite.
7452 (hppa_gdbarch_init): Do not set PC_REGNUM.
7453
7454 2004-03-06 Mark Kettenis <kettenis@gnu.org>
7455
7456 * config/alpha/tm-fbsd.h: Remove file.
7457 * config/alpha/fbsd.mt: Tweak comment.
7458 (TM_FILE): Set to tm-alpha.h.
7459
7460 2004-03-05 Andrew Cagney <cagney@redhat.com>
7461
7462 * infrun.c (step_over_function): When non-legacy code, and no
7463 step_frame_id, use the unwinder to get the caller's frame ID.
7464
7465 2004-03-05 Mark Kettenis <kettenis@gnu.org>
7466
7467 * i386bsd-tdep.c (_initialize_i386bsd_tdep): Register
7468 i386bsd_core_osabi_sniffer for bfd_arch_i386 instead of
7469 bfd_arch_unknown. Adjust comment.
7470
7471 * i386-nat.c: Fix typo in comment. Re-introduce paranoiac.
7472 * i386obsd-tdep.c: Correct spelling in comment.
7473 * i386nbsd-tdep.c: Correct spelling in comment.
7474 * sparc-tdep.c: Correct spelling in comments.
7475
7476 2004-03-05 David Carlton <carlton@kealia.com>
7477
7478 * cp-namespace.c (cp_lookup_transparent_type_loop): Fix recursion
7479 bug.
7480
7481 2004-03-05 Mark Kettenis <kettenis@gnu.org>
7482
7483 * sparc-tdep.c: Fix typo in comment.
7484
7485 2004-03-04 J. Brobecker <brobecker@gnat.com>
7486
7487 * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
7488
7489 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
7490
7491 * dwarf2read.c: Add comment describing memory lifetimes.
7492 (struct dwarf2_pinfo): Update comment.
7493 (dwarf2_add_field, dwarf2_add_member_fn, read_structure_scope)
7494 (read_enumeration, new_symbol): Don't use obsavestring.
7495
7496 2004-03-04 Mark Kettenis <kettenis@gnu.org>
7497
7498 * amd64-linux-nat.c (fill_fpregset): Call amd64_colletc_fxsave
7499 instead of amd64_fill_fxsave.
7500 * amd64bsd-nat.c (store_inferior_registers): Likewise.
7501 * amd64fbsd-nat.c (fill_fpregset): Likewise.
7502
7503 * sparc-tdep.c (sparc_frame_cache): Don't bail out if %fp is zero.
7504 Reorganize code a bit.
7505
7506 2004-03-04 Orjan Friberg <orjanf@axis.com>
7507
7508 * cris-tdep.c (cris_scan_prologue): Save the frame pointer's offset
7509 when the frame pointer is pushed. Don't set the frame pointer's
7510 address on the stack unless it's actually located there.
7511 Set the SRP's address on the stack correctly when the PC is still in
7512 the prologue.
7513 (cris_return_value): New function.
7514 (cris_gdbarch_init): Clear deprecated store_return_value,
7515 extract_return_value.
7516
7517 2004-03-02 Jim Blandy <jimb@redhat.com>
7518
7519 * stabsread.c (reg_value_complaint): The maximum register number
7520 is one less than the number of registers.
7521
7522 2004-03-02 Andrew Cagney <cagney@redhat.com>
7523
7524 * i386-tdep.h (enum i386_regnum): Add I386_DS_REGNUM,
7525 I386_ES_REGNUM, I386_FS_REGNUM, and I386_GS_REGNUM. Remove
7526 trailing comma and redundant assignment of I386_ST0_REGNUM.
7527 * amd64-nat.c (amd64_collect_native_gregset): Zero-extend the
7528 32-bit segment registers.
7529
7530 2004-03-01 Andrew Cagney <cagney@redhat.com>
7531
7532 * rs6000-tdep.c (rs6000_init_frame_pc_first): Fix compiler error,
7533 use frame_relative_level and get_next_frame.
7534
7535 2004-02-29 Andrew Cagney <cagney@redhat.com>
7536
7537 * rs6000-tdep.c (rs6000_init_frame_pc_first): New function.
7538 (rs6000_gdbarch_init): Set deprecated_init_frame_pc_first.
7539 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST):
7540 Delete macro.
7541
7542 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
7543
7544 * inflow.c (terminal_inferior): Don't give up the terminal if we
7545 previously couldn't get the inferior's terminal state.
7546
7547 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
7548
7549 * regcache.c (read_pc_pid): Restore inferior_ptid after reading
7550 PC_REGNUM.
7551
7552 2004-02-28 Andrew Cagney <cagney@redhat.com>
7553
7554 * NEWS: Refer to GDB 6.1.
7555 * README: Refer to GDB 6.1.
7556 * PROBLEMS: Refer to GDB 6.1.
7557
7558 2004-02-28 Daniel Jacobowitz <drow@mvista.com>
7559
7560 * thread-db.c (disable_thread_signals): Remove unused function.
7561
7562 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7563
7564 * amd64-nat.c: Include "gdb_string.h".
7565 (amd64_collect_native_gregset): Zero-extend the 32-bit
7566 general-purpose registers and %eip.
7567
7568 * amd64-tdep.h: (amd64_collect_fxsave): New prototype.
7569 * amd64-tdep.c (amd64_collect_fxsave): New function.
7570 (amd64_fill_fxsave): Simply call amd64_collect_fxsave.
7571
7572 * i387-tdep.h: Update copyright year.
7573 (i387_collect_fxsave): New prototype.
7574 * i387-tdep.c: Update copyright year.
7575 (i387_collect_fxsave): New function containing most of the code
7576 from i387_fill_fxsave.
7577 (i387_fill_fxsave): Call i387_collect_fxsave.
7578
7579 2004-02-28 Andrew Cagney <cagney@redhat.com>
7580
7581 * amd64-linux-nat.c (ps_get_thread_area): When architecture is
7582 i386 use PTRACE_GET_THREAD_AREA. Suggested by Roland McGrath.
7583
7584 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7585
7586 * amd64-tdep.c (amd64_frame_cache): Fix comment.
7587
7588 2004-02-28 Andrew Cagney <cagney@redhat.com>
7589
7590 * utils.c: Use "", instead of <>, to include readline.
7591 tui/tui-win.c, tui/tui.c, tui/tui-hooks.c: Ditto.
7592 * tracepoint.c, top.c, symmisc.c, symfile.c: Ditto.
7593 * source.c, solib.c, exec.c, event-top.c: Ditto.
7594 * corelow.c, completer.c, cli/cli-setshow.c: Ditto.
7595 * cli/cli-dump.c, cli/cli-cmds.c: Ditto.
7596 * Makefile.in: Update all dependencies.
7597 (readline_tilde_h, readline_history_h): Define.
7598 (readline_headers): Delete.
7599
7600 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7601
7602 * config/djgpp/fnchange.lst: Rename "config/i386/nm-linux64.h" to
7603 "config/i386/nm-lx64.h" and "config/i386/tm-linux64.h" to
7604 "config/i386/tm-lx64.h".
7605
7606 * config/djgpp/fnchange.lst: Rename "amd64-linux-tdep.c" to
7607 "amd64-ltdep.c" and "amd64-linux-nat.c" to "amd64-lnat.c". Remove
7608 rules for "x86-64-linux-tdep.c" and "x86-64-linux-nat.c".
7609
7610 2004-02-28 Andrew Cagney <cagney@redhat.com>
7611
7612 * dwarf2-frame.h (struct gdbarch): Add opaque declaration.
7613
7614 * breakpoint.c (_initialize_breakpoint): Use
7615 "add_setshow_auto_boolean_cmd. Better word-wrap help messages.
7616 Add help to show command.
7617
7618 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7619
7620 * i386-nat.c: Reformat to be closer to coding standards.
7621 (i386_handle_nonaligned_watchpoint): Rename local variable `rv' to
7622 `retval'. Make variables `align' and `size' local to while-loop.
7623 (i386_stopped_data_address): Rename local variable `ret' to `addr'.
7624 (_initialize_i386_nat): New prototype.
7625
7626 * tui/tui.c: Include <readline/readline.h> instead of
7627 "readline/readline.h". Include it after <term.h> and
7628 "gdb_curses.h".
7629
7630 2004-02-27 Andrew Cagney <cagney@redhat.com>
7631
7632 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always use
7633 the new frame unwind code.
7634 (hppa_frame_cache): Use PCOQ_HEAD_REGNUM instead of PC_REGNUM.
7635 (hppa_frame_prev_register): Compute PCOQ_TAIL_REGNUM from
7636 PCOQ_HEAD_REGNUM.
7637
7638 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always
7639 "return_value" and "push_dummy_call".
7640 (hppa32_use_struct_convention): Delete unused function.
7641 (hppa32_store_return_value): Delete unused function.
7642 (hppa32_extract_return_value): Delete unused function.
7643 (hppa32_stack_align): Delete function.
7644
7645 2004-02-27 Eli Zaretskii <eliz@elta.co.il>
7646
7647 * coffread.c (enter_linenos): Don't let rawptr reference memory
7648 outside linetab[]'s limits.
7649
7650 2004-02-27 Andrew Cagney <cagney@redhat.com>
7651
7652 * hppa-tdep.c (hppa32_push_dummy_call): Fix code reserving
7653 inferior stack space - the stack needs to grow upwards.
7654 (hppa32_frame_align): New function.
7655 (hppa64_frame_align): Replace hppa_frame_align.
7656 (hppa_gdbarch_init): Update.
7657
7658 2004-02-26 Orjan Friberg <orjanf@axis.com>
7659
7660 * cris-tdep.c (frame_unwind.h, frame-base.h, trad-frame.h)
7661 (dwarf2-frame.h): Include.
7662 (enum cris_regnums): New enum CRIS_FP_REGNUM.
7663 Remove static variables related to ABI setting.
7664 (struct gdbarch_tdep): Remove cris_abi member.
7665 (struct frame_extra_info): Remove.
7666 (cris_unwind_cache, stack_item): New structs.
7667 (cris_frame_unwind, cris_frame_base): New variables.
7668 (push_stack_item, pop_stack_item)
7669 (cris_frame_unwind_cache, cris_frame_this_id)
7670 (cris_frame_prev_register, cris_unwind_dummy_id, cris_frame_align)
7671 (cris_push_dummy_code, cris_push_dummy_call, cris_frame_sniffer)
7672 (cris_frame_base_address, cris_scan_prologue, cris_unwind_pc)
7673 (cris_unwind_sp, cris_store_return_value, cris_extract_return_value)
7674 (cris_reg_struct_has_addr): New functions.
7675 (cris_examine, cris_frame_init_saved_regs, cris_frame_chain)
7676 (cris_frame_saved_pc, cris_saved_pc_after_call,
7677 (cris_store_struct_return, cris_frameless_function_invocation)
7678 (cris_pop_frame, cris_skip_prologue_main)
7679 (cris_abi_original_store_return_value)
7680 (cris_abi_v2_store_return_value)
7681 (cris_abi_original_extract_return_value)
7682 (cris_abi_v2_extract_return_value)
7683 (cris_abi_original_reg_struct_has_addr)
7684 (cris_abi_v2_reg_struct_has_addr)
7685 (cris_abi_original_push_arguments, cris_abi_v2_push_arguments)
7686 (cris_push_return_address, cris_abi_update): Remove.
7687 (_initialize_cris_tdep): Remove ABI command.
7688 (cris_dump_tdep): Ditto.
7689 (cris_gdbarch_init): Remove ABI command.
7690 Set store_return_value, extract_return_value, push_dummy_code,
7691 push_dummy_call, frame_align, unwind_pc, unwind_sp, unwind_dummy_id,
7692 frame_unwind_append_sniffer, frame_base_set_default.
7693 Clear deprecated init_frame_pc, push_arguments, store_return_value,
7694 extract_return_value, fp_regnum, pc_in_call_dummy, call_dummy_words,
7695 sizeof_call_dummy_words, get_saved_register, push_return_address,
7696 pop_frame, store_struct_return, frame_init_saved_regs,
7697 init_extra_frame_info, frameless_function_invocation, frame_chain,
7698 frame_saved_pc, saved_pc_after_call, save_dummy_frame_tos,
7699 dummy_write_sp.
7700
7701 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
7702
7703 * valprint.h (print_hex_chars, print_char_chars): New prototypes.
7704 * valprint.c (print_hex_chars): Change from static to external.
7705 (print_char_chars): New function.
7706 * printcmd.c (print_scalar_formatted): For integer and enum types
7707 that are longer than LONGEST, perform processing via appropriate
7708 print_*_chars routines.
7709
7710 2004-02-26 Andrew Cagney <cagney@redhat.com>
7711
7712 * Makefile.in: Update dependencies.
7713 Changes from Ulrich Weigand,
7714 * s390-tdep.c: Include "dwarf2-frame.h".
7715 (s390_dwarf2_frame_init_reg): New function.
7716 (s390_gdbarch_init): Install dwarf2_frame_sniffer and
7717 dwarf2_frame_base_sniffer. Call dwarf2_frame_set_init_reg.
7718
7719 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
7720
7721 * breakpoint.c (pending_break_support): New setting variable.
7722 (break_command_1): Account for pending_break_support setting
7723 when creating pending breakpoints.
7724 (set_breakpoint_cmd, show_breakpoint_cmd): New functions.
7725 (_initialize_breakpoint): Add "set breakpoint pending" and
7726 "show breakpoint pending" commands.
7727
7728 2004-02-26 Andrew Cagney <cagney@redhat.com>
7729
7730 Fix PR i18n/1570.
7731 * charset.c (backslashable, backslashed, represented): Remove 'e'
7732 from list of escaped characters, not part of ISO-C.
7733
7734 2004-02-25 J. Brobecker <brobecker@gnat.com>
7735
7736 From Peter Schauer <schauer@pdf.de>:
7737 * tui/tui.c: Move system header includes after local includes.
7738 Fixes a build failure on solaris systems.
7739
7740 2004-02-25 J. Brobecker <brobecker@gnat.com>
7741
7742 * configure.in: Refine the previous change.
7743 * configure: Regenerate.
7744
7745 2004-02-25 Mark Kettenis <kettenis@gnu.org>
7746
7747 * amd64-tdep.h: Renamed from x86-64-tdep.h.
7748 * amd64-tdep.c: Renamed from x86-64-tdep.c. Include
7749 "amd64-tdep.h" instead of "x86-64-tdep.h".
7750 * amd64-nat.c: Include "amd64-tdep.h" instead of "x86-64-tdep.h".
7751 * amd64-linux-tdep.h: Renamed from x86-64-linux.h.
7752 * amd64-linux-tdep.c: Renamed from x86-64-linux-tdep.c. Include
7753 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
7754 and "x86-64-tdep.c".
7755 * amd64-linux-nat.c: Renamed from x86-64-linux-nat.c. Include
7756 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
7757 and "x86-64-tdep.c".
7758 * amd64bsd-nat.c: Update copyright year.
7759 Include "amd64-tdep.h" instead of "x86-64-tdep.h".
7760 * amd64fbsd-tdep.c: Include "amd64-tdep.h" instead of
7761 "x86-64-tdep.h".
7762 * amd64fbsd-nat.c: Include "amd64-tdep.h" instead of
7763 "x86-64-tdep.h".
7764 * amd64nbsd-tdep.c: Include "amd64-tdep.h" instead of
7765 "x86-64-tdep.h".
7766 * amd64nbsd-nat.c: Include "amd64-tdep.h" instead of
7767 "x86-64-tdep.h".
7768 * amd64obsd-tdep.c: Include "amd64-tdep.h" instead of
7769 "x86-64-tdep.h".
7770 * amd64obsd-nat.c: Include "amd64-tdep.h" instead of
7771 "x86-64-tdep.h".
7772 * configure.host: (x86_64-*-linux*): Set gdb_target to linux64.
7773 * configure.tgt (x86_64-*-linux*): Set gdb_target to linux64.
7774 * Makefile.in (amd64_linux_tdep_h): Renamed from
7775 x86_64_linux_tdep_h.
7776 (amd64_tdep_h): Renamed from x86_64_tdep_h.
7777 (amd64bsd-nat.o, amd64fbsd-nat.o, amd64fbsd-tdep.o, amd64-nat.o)
7778 (amd64nbsd-nat.o, amd64nbsd-tdep.o, amd64obsd-nat.o)
7779 (amd64obsd-tdep.o): Update dependencies.
7780 (amd64-tdep.o, amd64-linux-nat.o, amd64-linux-tdep.o): New
7781 dependencies.
7782 (x86-64-linux-nat.o, x86-64-linux-tdep.o, x86-64-tdep.o): Remove
7783 dependencies.
7784 (ALLDEPFILES): Add amd64-tdep.c, amd64obsd-nat.c, amd64obsd-nat.c,
7785 amd64-linux-nat.c amd64-linux-tdep.c.
7786 * config/i386/tm-linux64.h: Renamed from tm-x86-64linux.h
7787 * config/i386/nm-linux64.h: Renamed from nm-x86-64linux.h.
7788 * config/i386/linux64.mt: Renamed from x86-64linux.mt.
7789 (TDEPFILES): Replace x86-64-tdep.o and x86-64-linux-tdep.o with
7790 amd64-tdep.o and amd64-linux-tdep.o.
7791 (TM_FILE): Set to tm-linux64.h.
7792 * config/i386/linux64.mh: Renamed from x86-64linux.mh.
7793 (NAT_FILE): Set to nm-linux64.h.
7794 (NATDEPFILES): Replace x86-64-linux-nat.o with amd64-linux-nat.o.
7795 * config/i386/fbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7796 amd64-tdep.o.
7797 * config/i386/nbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7798 amd64-tdep.o.
7799 * config/i386/obsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7800 amd64-tdep.o.
7801
7802 2004-02-25 Roland McGrath <roland@redhat.com>
7803
7804 * remote.c (remote_protocol_qPart_auxv): New variable.
7805 (init_all_packet_configs): Initialize it.
7806 (set_remote_protocol_qPart_auxv_packet_cmd): New function.
7807 (show_remote_protocol_qPart_auxv_packet_cmd): New function.
7808 (show_remote_cmd): Call it.
7809 (_initialize_remote): Initialize commands.
7810 (remote_xfer_partial): If enabled, use qPart:auxv:read:... query to
7811 service TARGET_OBJECT_AUXV requests.
7812
7813 2004-02-25 J. Brobecker <brobecker@gnat.com>
7814
7815 * configure.in: Make sure that the wborder function is available.
7816 Otherwise, search for it in the cur_colr library.
7817 * configure: Regenerate.
7818
7819 2004-02-25 Andrew Cagney <cagney@redhat.com>
7820
7821 * hppa-tdep.c (hppa32_push_dummy_call): Rewrite.
7822
7823 2004-02-25 Mark Kettenis <kettenis@gnu.org>
7824
7825 * config/i386/tm-x86-64linux.h: Tweak comments.
7826
7827 2004-02-25 Richard Sandiford <rsandifo@redhat.com>
7828
7829 * MAINTAINERS: Add self to write-after-approval list.
7830
7831 2004-02-25 Andrew Cagney <cagney@redhat.com>
7832
7833 PR cli/1566. Problem found, and fix suggested by David Allan.
7834 * cli/cli-script.c (execute_control_command): Unconditionally
7835 install a cleanup. Default "ret" to "invalid_control". Use
7836 "break" instead of "return" to escape from the switch.
7837
7838 2004-02-24 J. Brobecker <brobecker@gnat.com>
7839
7840 * tui/tui-disasm.c: %s/lines/asm_lines/g to avoid a collision
7841 with the lines macro defined in term.h on AiX.
7842 * tui/tui-regs.c: %s/label_width/tui_label_width/g, to avoid
7843 a collision with the label_width macro defined in term.h on AiX.
7844
7845 2004-02-23 David Mosberger <davidm@hpl.hp.com>
7846
7847 Committed by Kevin Buettner <kevinb@redhat.com>.
7848
7849 * ia64-tdep.h (ia64_write_pc, ia64_linux_write_pc): Declare.
7850 * ia64-tdep.c (ia64_write_pc): Make it a global function.
7851 (ia64_gdbarch_init): For Linux targets, use ia64_linux_write_pc()
7852 instead of ia64_write_pc().
7853 * ia64-linux-tdep.c (regcache.h): Include.
7854 (ia64_linux_write_pc): New function.
7855
7856 2004-02-23 Roland McGrath <roland@redhat.com>
7857
7858 * auxv.c (info_auxv_command): Fix typos in error messages.
7859
7860 2004-02-23 Mark Kettenis <kettenis@gnu.org>
7861
7862 * x86-64-tdep.h: Tweak comment.
7863 (enum amd64_regnum): New.
7864 (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM)
7865 (X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM)
7866 (X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM)
7867 (X86_64_XMM1_REGNUM): Removed.
7868 (AMD64_NUM_GREGS): Renamed from X86_64_NUM_GREGS.
7869 (amd64_init_abi, amd64_supply_fxsave, amd64_fill_fxsave): Adjust
7870 prototypes for renamed functions.
7871 * x86-64-tdep.c: Fix typo.
7872 (amd64_dwarf_regmap): Use constants from `enum amd64_regnum' for
7873 register numbers.
7874 (amd64_return_value, amd64_push_arguments, amd64_push_dummy_call):
7875 Use constants from `enum amd64_regnum' for register numbers.
7876 (AMD64_NUM_SAVED_REGS): Adjust for renamed macros.
7877 (amd64_analyze_prologue, amd64_frame_cache,
7878 amd64_sigtramp_frame_cache): Use constants from `enum
7879 amd64_regnum' for register numbers.
7880 (amd64_supply_fpregset): Adjust for renamed functions.
7881 (amd64_init_abi): Rename from x86_64_init_abi. Use constants from
7882 `enum amd64_regnum' for register numbers.
7883 (I387_ST0_REGNUM): Use constant from `enum amd64_regnum'.
7884 (amd64_supply_fxsave): Rename from x86_64_supply_fxsave.
7885 (amd64_fill_fxsave): Rename fro x86_64_fill_fxsave.
7886 * x86-64-linux-tdep.c (amd64_linux_supply_gregset)
7887 (amd64_linux_fill_gregset): Adjust for renamed macros.
7888 (fetch_core_registers): Adjust for renamed functions.
7889 (amd64_linux_init_abi): Adjust for renamed functions.
7890 * x86-64-linux-nat.c (supply_gregset, fill_gregset): Adjust for
7891 renamed functions.
7892 * amd64-nat.c: Adjust for renamed macros.
7893 * amd64bsd-nat.c (fetch_inferior_registers)
7894 (store_inferior_registers): Use constants from `enum amd64_regnum'
7895 for register numbers. Adjust for renamed variables.
7896 * amd64fbsd-nat.c (supply_gregset, fill_gregset): Adjust for
7897 renamed variables.
7898 (_initialize_amd64fbsd_nat): Use constants from `enum
7899 amd64_regnum' for register numbers.
7900 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use constants from
7901 `enum amd64_regnum' for register numbers.
7902 (amd64fbsd_init_abi): Adjust for renamed functions.
7903 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Use constants from
7904 `enum amd64_regnum' for register numbers.
7905 (amd64nbsd_init_abi): Adjust for renamed functions.
7906 (_initialize_amd64nbsd_ndep): Adjust for renamed macros.
7907 * amd64obsd-tdep.c (amd64obsd_sigcontext_addr): Use constants from
7908 `enum amd64_regnum' for register numbers.
7909 (amd64obsd_init_abi): Adjust for renamed functions.
7910 (_initialize_amd64obsd_ndep): Adjust for renamed macros.
7911
7912 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7913
7914 * breakpoint.c (print_one_breakpoint): Do not output spaces
7915 after printing <PENDING> for a pending breakpoint.
7916
7917 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7918
7919 * printcmd.c (print_scalar_formatted): Initialize val_long
7920 to remove compiler warning message.
7921
7922 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7923
7924 * defs.h (nquery, yquery): New prototypes.
7925 * breakpoint.c (break_command_1): Use new nquery interface.
7926 * utils.c (defaulted_query, nquery, yquery): New functions.
7927
7928 2004-02-23 Andrew Cagney <cagney@redhat.com>
7929
7930 * hppa-tdep.c (hppa_frame_align): New function.
7931 (hppa32_push_dummy_call): New function.
7932 (hppa64_push_dummy_call): New function.
7933 (hppa_gdbarch_init): Set frame_align and push_dummy_call; keep
7934 disabled.
7935
7936 * infcall.c (legacy_push_dummy_code): Don't call deprecated
7937 FIX_CALL_DUMMY when push_dummy_call is available.
7938 (call_function_by_hand, push_dummy_code): Ditto.
7939
7940 2004-02-22 Andrew Cagney <cagney@redhat.com>
7941
7942 * config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Delete macro.
7943 (DEPRECATED_PC_IN_CALL_DUMMY): Delete macro.
7944 (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete macro.
7945 * hppa-tdep.c (hppa_gdbarch_init): Clear deprecated
7946 use_generic_dummy_frames, set deprecated pc_in_call_dummy, set
7947 call_dummy_location to ON_STACK.
7948
7949 2004-02-22 Mark Kettenis <kettenis@gnu.org>
7950
7951 * x86-64-linux-tdep.c: Tweak comment.
7952 (amd64_linux_supply_gregset): Renamed from
7953 x86_64_linux_supply_gresget.
7954 (amd64_linux_fill_gregset): Renamed from
7955 x86_64_linux_fill_gregset.
7956 (fetch_core_registers): Adjust for renamed functions.
7957 (amd64_core_fns): Renamed from x86_64_core_fns.
7958 (amd64_linux_sigtramp_start): Renamed from
7959 x86_64_linux_sigtramp_start.
7960 (amd64_linux_pc_in_sigtramp): Renamed from
7961 x86_64_linux_pc_in_sigtramp. Adjust for renamed functions.
7962 (AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Renamed from
7963 X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET.
7964 (amd64_linux_sigcontext_addr): Renamed from
7965 x86_64_linux_sigcontext_addr.
7966 (amd64_linux_sc_reg_offset): Renamed from
7967 x86_64_linux_sc_reg_offset.
7968 (amd64_linux_init_abi): Renamed from x86_64_linux_init_abi.
7969 Adjust for renamed functions and variables.
7970 (_initialize_amd64_linux_tdep): Renamed from
7971 _initialize_x86_64_linux_tdep. Adjust for renamed functions and
7972 variables.
7973 * x86-64-linux-tdep.h: Update copyright year. Tweak comment.
7974 Adjust for renamed functions.
7975
7976 * x86-64-linux-nat.c (amd64_linux_gregset64_reg_offset): Rename
7977 from x86_64_linux_gregset64_reg_offset.
7978 (amd64_linux_gregset32_reg_offset): Rename from
7979 x86_64_linux_gregset64_reg_offset.
7980 (amd64_linux_dr_get): Renamed from x86_64_linux_dr_get.
7981 (amd64_linux_dr_set): Renamed from x86_64_linux_dr_set.
7982 (amd64_linux_dr_set_control): Renamed from
7983 x86_64_linux_dr_set_control. Adjust for renamed functions.
7984 (amd64_linux_dr_set_addr): Renamed from x86_64_linux_dr_set_addr.
7985 Adjust for renamed functions.
7986 (amd64_linux_dr_reset_addr): Renamed from
7987 x86_64_linux_dr_reset_addr. Adjust for renamed functions.
7988 (amd64_linux_dr_get_status): Renamed from
7989 x86_64_linux_dr_get_status. Adjust for renamed functions.
7990 (_initialize_amd64_linux_nat): Renamed from
7991 _initialize_x86_64_linux_nat. Adjust for renamed variables and
7992 functions.
7993 * config/i386/nm-x86-64linux.h: Update copyright year.
7994 Adjust for renamed functions.
7995
7996 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_start_addr): Renamed from
7997 amd64fbsd_sigtramp_start.
7998 (amd64fbsd_sigtramp_end_addr): Renamed from
7999 amd64fbsd_sigtramp_end.
8000 (amd64fbsd_init_abi): Adjust for renamed variables.
8001 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Adjust for renamed
8002 variables.
8003 * x86-64-tdep.h (amd64fbsd_sigtramp_start_addr): Renamed from
8004 amd64fbsd_sigtramp_start.
8005 (amd64fbsd_sigtramp_end_addr): Renamed from
8006 amd64fbsd_sigtramp_end.
8007
8008 2004-02-22 Andrew Cagney <cagney@redhat.com>
8009
8010 * hppa-tdep.c (hppa32_return_value): New function.
8011 (hppa64_return_value): New function.
8012 (hppa_gdbarch_init): Set return_value; keep disabled.
8013
8014 * hppa-tdep.c (hppa_gdbarch_init): Re-order separating
8015 struct-return and inferior function call methods.
8016
8017 * hppa-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
8018 "frame-base.h".
8019 (struct hppa_frame_cache): Define.
8020 (hppa_frame_cache, hppa_frame_this_id): New functions.
8021 (hppa_frame_prev_register): New function.
8022 (hppa_frame_unwind, hppa_frame_base): New variables.
8023 (hppa_frame_unwind_sniffer): New function.
8024 (hppa_frame_base_address, hppa_unwind_pc): New function.
8025 (hppa_gdbarch_init): Set unwind_dummy_id, unwind_pc, frame unwind
8026 sniffer, and frame base sniffer; keep disabled.
8027 (hppa_frame_base_sniffer, hppa_unwind_dummy_id): New functions.
8028 * Makefile.in: Update dependencies, fix s/nbsd/obsd/ typo.
8029
8030 * frame-unwind.c (frame_unwind_find_by_frame): Add legacy_frame_p
8031 to predicates for "seriously old code".
8032
8033 * hppa-tdep.c (hppa_gdbarch_init): Convert compile time #if0s into
8034 runtime if(0).
8035
8036 * hppa-tdep.c (hppa_breakpoint_from_pc): Make "breakpoint"
8037 unsigned.
8038 (hppa_frame_find_saved_regs): Fix "std" instruction pattern
8039
8040 * config/pa/tm-hppa.h: Update copyright.
8041 (DEPRECATED_INIT_FRAME_PC): Delete macro.
8042 (deprecated_init_frame_pc_default): Delete declaration.
8043 (hppa_frame_init_saved_regs): Delete declaration.
8044 (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
8045 * hppa-tdep.c: Include "arch-utils.h".
8046 (hppa_gdbarch_init): Set deprecated init_frame_pc
8047 and deprecated frame_init_saved_regs.
8048 (hppa_frame_init_saved_regs): Make static.
8049
8050 2004-02-22 Mark Kettenis <kettenis@gnu.org>
8051
8052 Remove old 386BSD support.
8053 * NEWS (REMOVED configurations and files): Add i[3456]86-*-bsd*.
8054 * configure.host: Remove i[34567]86-*-bsd*.
8055 * configure.tgt: Remove i[34567]86-*-bsd*.
8056 * i386b-nat.c: Removed.
8057 * Makefile.in (ALLDEPFILES): Remove i386b-nat.c.
8058 (i386b-nat.o): Remove dependencies.
8059
8060 * config/i386/i386bsd.mh: Removed.
8061 * config/i386/i386bsd.mt: Removed.
8062 * config/i386/nm-i386bsd.h: Removed.
8063 * config/i386/tm-i386bsd.h: Removed.
8064 * config/i386/xm-i386bsd.h: Removed.
8065
8066 * x86-64-tdep.h (amd64obsd_r_reg_offset): New extern declaration.
8067
8068 * amd64fbsd-tdep.c: Include "solib-svr4.h".
8069 (amd64fbsd_init_abi): Set link map offsets.
8070 * amd64nbsd-tdep.c: Include "slib-svr4.h".
8071 (amd64nbsd_init_abi): Set link map offsets.
8072 * amd64obsd-tdep.c: Include "solib-svr4.h".
8073 (amd64obsd_init_abi): Set link map offsets.
8074 * i386fbsd-tdep.c: Include "solib-svr4.h".
8075 (i386fbsd_init_abi): Set link map offsets.
8076 * i386nbsd-tdep.c: Include "solib-svr4.h".
8077 (i386nbsdelf_init_abi): Set link map offsets.
8078 * Makefile.in (amd64fbsd-tdep.o, amd64nbsd-tdep.o)
8079 (amd64obsd-tdep.o, i386fbsd-tdep.o): Update dependencies.
8080 * config/i386/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o,
8081 solib-legacy.o and core-aout.o. Reformat.
8082 * config/i386/fbsd64.mh (NATDEPFILES): Remove solib.o,
8083 solib-svr4.o, solib-legacy.o. Reformat.
8084 * config/i386/nbsdaout.mh (NATDEPFILES): Add solib.o. Reformat.
8085 * config/i386/nbsdelf.mh: Reformat.
8086 * config/i386/nbsd64.mh (NATDEPFILES): Remove solib.o,
8087 solib-svr4.o, solib-legacy.o and corelow.o.
8088 * config/i386/obsd.mh, config/i386/obsdaout.mh: Reformat.
8089 * config/i386/obsd64.mh (NATDEPFILES): Remove solib.o,
8090 solib-svr4.o, solib-legacy.o and corelow.o. Reformat.
8091 * config/i386/fbsd.mt (TDEPFILES): Add solib.o, solib-svr4.o.
8092 * config/i386/fbsd64.mt (TDEPFILES): Add solib.o, solib-svr4.o.
8093 (TM_FILE): Set to tm-fbsd.h.
8094 * config/i386/nbsd.mt (TDEPFILES): Reformat.
8095 * config/i386/nbsd64.mt (TDEPFILES): Add corelow.o, solib.o and
8096 solib-svr4.o.
8097 * config/i386/obsd.mt (TDEPFILES): Add corelow.o, solib.o and
8098 solib-svr4.o.
8099 (TM_FILE): Set to nm-nbsd.h.
8100 * config/i386/nm-fbsd.h: Update copyright year. Tweak comments.
8101 Simplify shared library support. Don't include "elf/common.h".
8102 (SVR4_SHARED_LIBS): Don't define.
8103 * config/i386/nm-fbsd64.h: Update copyright year. Don't include
8104 "solib.h".
8105 * config/i386/nm-nbsd.h, config/i386/nm-nbsdaout.h,
8106 config/i386/nm-obsd.h: Update copyright year. Tweak comments.
8107 * config/i386/tm-fbsd.h: Update copyright tear. Tweak comments.
8108 Don't include "i386/tm-i386.h". Include "solib.h".
8109 * config/i386/tm-nbsd.h: Update copyright year. Tweak comments.
8110 Don't include "i386/tm-i386.h".
8111 * config/i386/xm-i386.h: Update copyright year. Tweak comments.
8112 * config/i386/xm-nbsd.h: Update copyright year. Tweak comments.
8113 Include "i386/xm-i386.h".
8114 (HOST_LONG_DOUBLE_FORMAT): Remove.
8115
8116 Fix OpenBSD/i386 sigtramp recognition.
8117 * i386-tdep.h: Update copyright year.
8118 (i386bsd_pc_in_sigtramp, i386bsd_sigtramp_start)
8119 (i386bsd_sigtramp_end): New prototypes.
8120 (i386fbsd_sigtramp_start_addr): Renamed from
8121 i386fbsd_sigtramp_start.
8122 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
8123 (i386obsd_sigtramp_start_addr): Renamed from
8124 i386obsd_sigtramp_start.
8125 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
8126 * i386bsd-tdep.c: Update copyright year.
8127 (i386bsd_pc_in_sigtramp): Make public.
8128 * i386fbsd-nat.c: Update copyright year.
8129 (_initialize_i386fbsd_nat): Adjust for renamed variables.
8130 * i386fbsd-tdep.c: Update copyright year.
8131 (i386fbsd_sigtramp_start_addr): Renamed from
8132 i386fbsd_sigtramp_start.
8133 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
8134 (i386fbsdaout_init_abi): Adjust for renamed variables.
8135 * i386obsd-nat.c: Update copyright year.
8136 (_initialize_i386obsd_nat): Adjust for renamed variables.
8137 * i386obsd-tdep.c: Include "target.h".
8138 (i386obsd_page_size): New variable.
8139 (i386obsd_pc_in_sigtramp, i386obsd_sigtramp_start)
8140 (i386obsd_sigtramp_end): New functions.
8141 (i386obsd_sigtramp_start_addr): Renamed from
8142 i386obsd_sigtramp_start.
8143 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
8144 (i386obsd_init_abi): Adjust for renamed variables. Set
8145 pc_in_sigtramp, sigtramp_start and sigtramp_end.
8146 * Makefile.in (i386obsd-tdep.o): Update dependencies.
8147
8148 * amd64obsd-tdep.c (amd64obsd_pc_in_sigtramp): Adjust for signal
8149 trampoline change in OpenBSD kernel.
8150
8151 * amd64-nat.c: Update copyright year.
8152 (amd64_supply_native_gregset, amd64_collect_native_gregset): Use
8153 architecture from REGCACHE.
8154
8155 * x86-64-linux-nat.c (x86_64_linux_gregset32_reg_offset): Use
8156 symbolic constants from <sys/reg.h> instead of hard-coded numbers.
8157
8158 2004-02-21 Mark Kettenis <kettenis@gnu.org>
8159
8160 * configure.host: Add i[34567]86-*-openbsd[0-2].* and
8161 i[34567]86-*-openbsd3.[0-3].
8162 * config/i386/obsdaout.mh: New file.
8163
8164 * config/i386/obsd.mh (MH_FLAGS): Remove.
8165
8166 Fix PR build/1549.
8167 * i386obsd-tdep.c: Update copyright years. Include
8168 "solib-svr4.h".
8169 (i386obsd_init_abi): Don't set regset_from_core_section here.
8170 (i386obsd_aout_init_abi): New function. Set
8171 regset_from_core_section here.
8172 (i386obsd_elf_init_abi): New function.
8173 (_initialize_i386obsd_tdep): Register OS/ABI for OpenBSD ELF.
8174 * Makefile.in (i386obsd-tdep.o): Update dependecies.
8175 * config/i386/obsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
8176 (TM_FILE): Set to tm-nbsd.h.
8177
8178 * config/i386/obsd.mh (NATDEPFILES): Remove solib.o and
8179 solib-sunos.o.
8180
8181 * solib-svr4.h: Update copyright year.
8182 (svr4_ilp32_fetch_link_map_offsets)
8183 (svr4_lp64_fetch_link_map_offsets): New prototype.
8184 * solib-svr4.c: Update copyright year.
8185 (svr4_ilp32_fetch_link_map_offsets)
8186 (svr4_lp64_fetch_link_map_offsets): New function.
8187
8188 2004-02-20 Daniel Jacobowitz <drow@mvista.com>
8189
8190 * dwarf2read.c (add_partial_symbol): Fix typo in adding enumerators
8191 to the partial symbol table.
8192
8193 2004-02-20 J. brobecker <brobecker@gnat.com>
8194
8195 * PROBLEMS: Add description of problem documented under gdb/1560.
8196
8197 2004-02-20 Mark Kettenis <kettenis@gnu.org>
8198
8199 * amd64obsd-tdep.c: Include "regset.h" and "i387-tdep.h". Fix
8200 comments.
8201 (amd64obsd_supply_regset, amd64obsd_regset_from_core_section): New
8202 functions.
8203 (amd64obsd_init_abi): Reorder initializations. Use
8204 amd64obsd_r_reg_offset to initialize the general-purpose register
8205 set details. Set regset_from_core_section.
8206 (_initialize_amd64obsd_tdep): Rename from
8207 _initialize_amd64obsd_ndep. Add OS ABI handler for core dumps.
8208 * Makefile.in (amd64obsd-tdep.o): Update dependencies.
8209 * config/i386/obsd64.mt (TDEPFILES): Add i386-tdep.o.
8210
8211 * NEWS (New native configurations): Mention OpenBSD/alpha.
8212 * configure.tgt: Add alpha*-*-openbsd*.
8213 * configure.host: Add alpha*-*-openbsd*.
8214 * alphanbsd-tdep.c: Update copyright year.
8215 (_initialize_alphanbsd_tdep): Register OS ABI for OpenBSD ELF.
8216
8217 2004-02-20 Andrew Cagney <cagney@redhat.com>
8218
8219 Fix PR tdep/1372.
8220 * configure.tgt: Delete target "none-*-*".
8221 * configure.host: Delete host "none-*-*".
8222 * config/none/none.mh: Delete file.
8223 * config/none/none.mt: Delete file.
8224 * config/none/xm-none.h: Delete file.
8225 * config/none/tm-none.h: Delete file.
8226 * config/none/nm-none.h: Delete file.
8227
8228 2004-02-19 Fred Fish <fnf@redhat.com>
8229
8230 * sh-tdep.c (sh_analyze_prologue): Eliminate useless test of
8231 cache->uses_fp prior to setting it.
8232
8233 2004-02-19 Fred Fish <fnf@redhat.com>
8234
8235 Fix for PR breakpoint/1558.
8236 * sh-tdep.c (IS_JSR): New macro.
8237 (sh_analyze_prologue): Use IS_JSR to terminate prologue scan.
8238
8239 2004-02-19 Jim Blandy <jimb@redhat.com>
8240
8241 * findvar.c (value_from_register): Doc fix.
8242
8243 2004-02-19 Jeff Johnston <jjohnstn@redhat.com>
8244
8245 * printcmd.c (print_scalar_formatted): Do not check for sizeof
8246 type being greater than sizeof of host's LONGEST. Always use
8247 unpack_long() unless format 'f' chosen.
8248
8249 2004-02-19 Joel Brobecker <brobecker@gnat.com>
8250
8251 Committed by Elena Zannoni <ezannoni@redhat.com>
8252
8253 * symtab.c (find_pc_sect_psymtab): Return the psymtab that
8254 contains a symbol wich is the best, non-exact match for the given
8255 pc. Update comments.
8256
8257 2004-02-19 Elena Zannoni <ezannoni@redhat.com>
8258
8259 * event-top.c (async_request_quit): Remove uses of REQUEST_QUIT
8260 macro, which was part of the now removed Mach 3 port.
8261 * utils.c (request_quit): Ditto.
8262
8263 2004-02-18 Mark Kettenis <kettenis@gnu.org>
8264
8265 * config/djgpp/fnchange.lst: Rename "amd64obsd-tdep.c" and
8266 "amd64obsd-nat.c" to "a64ob-tdep.c" and "a64ob-nat.c".
8267
8268 2004-02-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
8269
8270 Committed by Mark Kettenis <kettenis@gnu.org>.
8271
8272 * config/s390/nm-linux.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT):
8273 Define.
8274
8275 2004-02-18 Andrew Cagney <cagney@redhat.com>
8276
8277 * configure.in: Add a TUI target to CONFIG_ALL, CONFIG_CLEAN,
8278 CONFIG_INSTALL and CONFIG_UNINSTALL.
8279 * configure: Re-generate.
8280 * interps.h (INTERP_TUI): Define.
8281 * Makefile.in: Update dependencies.
8282 (TUI): New macro.
8283 (tui-main.o): Specify dependencies.
8284 (install-tui, uninstall-tui, clean-tui, all-tui): New rules.
8285 * tui/tui-main.c: New file.
8286
8287 2004-02-18 Mark Kettenis <kettenis@gnu.org>
8288
8289 * amd64obsd-tdep.c, amd64obsd-nat.c: New files.
8290 * Makefile.in (amd64obsd-nat.o, amd64obsd-tdep.o): New
8291 dependencies.
8292 * configure.host: Add x86_64-*-openbsd*.
8293 * configure.tgt: Add x86_64-*-openbsd*.
8294 * config/i386/obsd64.mt, config/i386/obsd64.mh: New files.
8295
8296 * tui/tui.c: Don't include <malloc.h>.
8297
8298 * Makefile.in (ALLDEPFILES): Add amd64-nat.c, amd64bsd-nat.c,
8299 amdfbsd-nat.c, amd64-fbsd-tdep.c, amd64nbsd-nat.c and
8300 amd64nbsd-tdep.c.
8301
8302 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Make
8303 static. Remove extraneous whitespace.
8304 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Make
8305 static.
8306
8307 2004-02-17 Jim Blandy <jimb@redhat.com>
8308
8309 * findvar.c (value_from_register): Doc fix.
8310
8311 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
8312
8313 Committed by Jim Blandy <jimb@redhat.com>.
8314
8315 * eval.c (evaluate_subexp_standard, case OP_OBJC_MSGCALL): Use
8316 CORE_ADDR as type for selectors. Correct types for GNU run time
8317 message lookup function to use double indirection.
8318 * objc-lang.c (lookup_child_selector): Use CORE_ADDR as return type.
8319 * objc-lang.h (lookup_child_selector): Adapt prototype.
8320
8321 * s390-nat.c (SUBOFF): New macro.
8322 (supply_gregset, fill_gregset): Use it to handle debugging
8323 of 32-bit exectuables running under a 64-bit kernel.
8324 * s390-tdep.c: Include "solib-svr4.h".
8325 (s390_svr4_fetch_link_map_offset): New function.
8326 (s390x_svr_fetch_link_map_offset): Likewise.
8327 (s390_gdbarch_init): Call set_solib_svr4_fetch_link_map_offsets.
8328 * Makefile.in (s390-tdep.o): Update dependencies.
8329
8330 * s390-tdep.c: Include "trad-frame.h", "frame-base.h", and
8331 "frame-unwind.h".
8332 (s390_readinstruction): Reformat. Use read_memory_nobpt.
8333 (GDB_TARGET_IS_ESAME, S390_GPR_SIZE, S390_FPR_SIZE): Remove.
8334 (S390_SYSCALL_OPCODE, S390_SYSCALL_SIZE): Remove.
8335 (S390_SIGCONTEXT_SREGS_OFFSET, S390X_SIGCONTEXT_SREGS_OFFSET,
8336 S390_SIGREGS_FP0_OFFSET, S390X_SIGREGS_FP0_OFFSET,
8337 S390_UC_MCONTEXT_OFFSET, S390X_UC_MCONTEXT_OFFSET,
8338 S390_SIGNAL_FRAMESIZE,
8339 s390_NR_sigreturn, s390_NR_rt_sigreturn): Remove.
8340 (struct frame_extra_info): Remove.
8341 (s390_memset_extra_info): Remove.
8342 (op1_ag, op1_ay, op1_brasl, op1_brc, op1_brcl, op1_lay, op1_lg)
8343 (op1_lmy, op1_ly, op1_sg, op1_stmy, op1_sty, op1_sy, op_a)
8344 (op_agr, op_bas, op_bc, op_bcr, op_sgr, op_sr): New opcodes.
8345 (is_rse): Renamed to ...
8346 (is_rsy): ... this. Support long displacements.
8347 (is_rxe): Renamed to ...
8348 (is_rxy): ... this. Support long displacements.
8349 (compute_x_addr): Support long displacements.
8350 (struct s390_prologue_data): New data type.
8351 (s390_on_stack): Change API to use struct s390_prologue_data.
8352 (s390_store): Reimplement.
8353 (s390_load): New function.
8354 (s390_get_signal_frame_info): Remove.
8355 (s390_get_frame_info): Remove, replace by ...
8356 (s390_analyze_prolog): ... this new function.
8357 (s390_check_function_end): Remove.
8358 (s390_function_start): Remove.
8359 (s390_frameless_function_invokation): Remove.
8360 (s390_is_sigreturn): Remove.
8361 (s390_init_frame_pc_first): Remove.
8362 (s390_init_frame_extra_info): Remove.
8363 (s390_frame_init_saved_regs): Remove.
8364 (s390_frame_saved_pc_nofix): Remove.
8365 (s390_frame_saved_pc): Remove.
8366 (s390_frame_chain): Remove.
8367 (s390_fp_regnum, s390_read_fp): Remove.
8368 (s390_pop_frame_regular, s390_pop_frame): Remove.
8369 (s390_saved_pc_after_call): Remove.
8370 (s390_skip_prologue): Reimplement.
8371 (s390_in_function_epilogue_p): Support long displacements.
8372 (struct s390_unwind_cache): New data structure.
8373 (s390_frame_unwind_cache): New function.
8374 (s390_prologue_frame_unwind_cache): Likewise.
8375 (s390_backchain_frame_unwind_cache): Likewise.
8376 (s390_frame_this_id, s390_frame_prev_register): Likewise.
8377 (s390_frame_unwind): Define.
8378 (s390_frame_sniffer): New function.
8379 (struct s390_pltstub_unwind_cache): New data structure.
8380 (s390_pltstub_frame_unwind_cache): New function.
8381 (s390_pltstub_frame_this_id): Likewise.
8382 (s390_pltstub_frame_prev_register): Likewise.
8383 (s390_pltstub_frame_unwind): Define.
8384 (s390_pltstub_frame_sniffer): New function.
8385 (struct s390_sigtramp_unwind_cache): New data structure.
8386 (s390_sigtramp_frame_unwind_cache): New function.
8387 (s390_sigtramp_frame_this_id): Likewise.
8388 (s390_sigtramp_frame_prev_register): Likewise.
8389 (s390_sigtramp_frame_unwind): Define.
8390 (s390_sigtramp_frame_sniffer): New function.
8391 (s390_frame_base_address, s390_local_base_address): New functions.
8392 (s390_frame_base): Define.
8393 (s390_unwind_pc, s390_unwind_sp): New function.
8394 (s390_push_dummy_call): Use new frame base location.
8395 (s390_unwind_dummy_id): Likewise.
8396 (s390_gdbarch_init): Remove calls to:
8397 set_gdbarch_frameless_function_invocation,
8398 set_gdbarch_deprecated_init_frame_pc,
8399 set_gdbarch_deprecated_frame_chain,
8400 set_gdbarch_deprecated_frame_init_saved_regs,
8401 set_gdbarch_deprecated_pop_frame,
8402 set_gdbarch_deprecated_init_extra_frame_info,
8403 set_gdbarch_deprecated_init_frame_pc_first,
8404 set_gdbarch_deprecated_target_read_fp,
8405 set_gdbarch_deprecated_frame_saved_pc,
8406 set_gdbarch_deprecated_saved_pc_after_call,
8407 set_gdbarch_deprecated_fp_regnum.
8408 Add calls to:
8409 set_gdbarch_in_solib_call_trampoline,
8410 frame_unwind_append_sniffer,
8411 frame_base_set_default,
8412 set_gdbarch_unwind_pc,
8413 set_gdbarch_unwind_sp.
8414 * Makefile.in (s390-tdep.o): Update dependencies.
8415
8416 * s390-tdep.c (struct gdbarch_tdep): Add 'abi' member.
8417 (S390_STACK_FRAME_OVERHEAD): Remove.
8418 (S390_STACK_PARAMETER_ALIGNMENT): Remove.
8419 (S390_NUM_FP_PARAMETER_REGISTERS): Remove.
8420 (s390_promote_integer_argument): Remove.
8421 (s390_cannot_extract_struct_value_address): Remove.
8422 (s390_use_struct_convention, s390_store_struct_return): Remove.
8423 (s390_extract_return_value, s390_store_return_value): Remove.
8424 (s390_return_value_convention, s390_return_value): New functions.
8425 (is_float_singleton): Handle typedefs.
8426 (is_double_or_float, is_double_arg, is_simple_arg, pass_by_copy_ref):
8427 Remove, replace by ...
8428 (s390_function_arg_pass_by_reference, s390_function_arg_float,
8429 s390_function_arg_integer): ... these new functions.
8430 (s390_push_arguments, s390_push_return_address): Remove, replace by ...
8431 (s390_push_dummy_call, s390_unwind_dummy_id): ... these new functions.
8432 (s390_gdbarch_init): Remove s390_call_dummy_words and elf_flags.
8433 Fill in tdep->abi.
8434 Remove calls to:
8435 set_gdbarch_deprecated_store_struct_return,
8436 set_gdbarch_deprecated_extract_return_value,
8437 set_gdbarch_deprecated_store_return_value,
8438 set_gdbarch_use_struct_convention,
8439 set_gdbarch_extract_struct_value_address,
8440 set_gdbarch_deprecated_pc_in_call_dummy,
8441 set_gdbarch_deprecated_push_arguments,
8442 set_gdbarch_deprecated_save_dummy_frame_tos,
8443 set_gdbarch_deprecated_push_return_address,
8444 set_gdbarch_deprecated_sizeof_call_dummy_words,
8445 set_gdbarch_deprecated_call_dummy_words,
8446 set_gdbarch_deprecated_dummy_write_sp.
8447 Add calls to:
8448 set_gdbarch_push_dummy_call,
8449 set_gdbarch_unwind_dummy_id,
8450 set_gdbarch_return_value.
8451
8452 * config/s390/nm-linux.h: Update comments.
8453 (target_insert_watchpoint, target_remove_watchpoint): Redefine.
8454 (STOPPED_BY_WATCHPOINT): Redefine.
8455 (TARGET_CAN_USE_HARDWARE_WATCHPOINT): Redefine to 1.
8456 (s390_insert_watchpoint, s390_remove_watchpoint): Update prototype.
8457 (s390_stopped_by_watchpoint): Likewise.
8458 (watch_area_cnt): Remove.
8459 * s390-nat.c: Update comments.
8460 (watch_area): Remove typedef.
8461 Global replace watch_area by struct watch_area.
8462 (watch_area_cnt, watch_lo_addr, watch_hi_addr): Remove.
8463 (s390_stopped_by_watchpoint): Remove pid argument,
8464 use s390_inferior_tid. Add short-cut for the no watchpoint case.
8465 (s390_fix_watch_points): Remove pid argument,
8466 use s390_inferior_tid. Recompute area spanned by watchpoints.
8467 (s390_insert_watchpoint, s390_remove_watchpoint): Remove pid
8468 argument. Reimplement.
8469
8470 * config/s390/nm-linux.h: Update comments. Do not include "solib.h".
8471 (KERNEL_U_ADDR, REGISTER_U_ADDR, U_REGS_OFFSET): Remove.
8472 (FETCH_INFERIOR_REGISTERS): Define.
8473 * config/s390/s390.mh (NATDEPFILES): Remove core-aout.o and
8474 core-regset.o.
8475 * config/s390/s390x.mt: Remove.
8476 * config/s390/tm-s390.h: Remove.
8477 * config/s390/tm-linux.h: Do not include "s390/tm-s390.h".
8478 (TARGET_ELF64): Remove.
8479 (SKIP_TRAMPOLINE_CODE): Do not undefine.
8480 * configure.tgt [s390-*-*, s390x-*-*]: Merge into single
8481 s390*-*-* case; always set gdb_target to s390.
8482 * regformats/reg-s390.dat: Remove control registers.
8483 * regformats/reg-s390x.dat: Likewise.
8484 * s390-tdep.h: New file.
8485 * s390-nat.c: Do not include <asm/processor.h> or <value.h>.
8486 Include "inferior.h" and "s390-tdep.h".
8487 Remove private definition of offsetof.
8488 (s390_register_u_addr): Remove.
8489 (regmap_gregset, regmap_fpregset): Define.
8490 (supply_gregset, fill_gregset): Reimplement.
8491 (supply_fpregset, fill_fpregset): Likewise.
8492 (s390_inferior_tid): New function.
8493 (fetch_regs, store_regs, fetch_fpregs, store_fpregs): Likewise.
8494 (fetch_inferior_registers, store_inferior_registers): Likewise.
8495 * s390-tdep.c: Do not define S390_TDEP. Include "defs.h" instead
8496 of <defs.h>. Include "reggroups.h", "regset.h", and "s390-tdep.h".
8497 Global replace of S390_GP0_REGNUM by S390_R0_REGNUM.
8498 Global replace of S390_FP0_REGNUM by S390_F0_REGNUM.
8499 (struct gdbarch_tdep): Define.
8500 (struct s390_register_info): Define.
8501 (s390_register_info): New variable.
8502 (s390_register_name): Reimplement.
8503 (s390_register_type): New function.
8504 (s390_register_raw_size, s390x_register_raw_size): Remove.
8505 (s390_cannot_fetch_register): Remove.
8506 (s390_register_byte): Remove.
8507 (s390_register_virtual_type, s390x_register_virtual_type): Remove.
8508 (s390_dwarf_regmap): New variable.
8509 (s390_dwarf_reg_to_regnum): New function.
8510 (s390_stab_reg_to_regnum): Remove.
8511 (s390_pseudo_register_read, s390_pseudo_register_write): New functions.
8512 (s390x_pseudo_register_read, s390x_pseudo_register_write): Likewise.
8513 (s390_convert_register_p): Likewise.
8514 (s390_register_to_value, s390_value_to_register): Likewise.
8515 (s390_register_reggroup_p): Likewise.
8516 (s390_regmap_gregset, s390x_regmap_gregset, s390_regmap_fpregset,
8517 s390_gregset, s390x_gregset, s390_fpregset): New variables.
8518 (s390_supply_regset, s390_regset_from_core_section): New functions.
8519 (GDB_TARGET_IS_ESAME): Move here from tm-s390.h.
8520 (S390_FPR_SIZE): Likewise.
8521 (S390_GPR_SIZE): Likewise. Redefine in terms of GDB_TARGET_IS_ESAME.
8522 Global replace of DEPRECATED_REGISTER_SIZE by S390_GPR_SIZE.
8523 (S390_NUM_GPRS): Move here from tm-s390.h.
8524 (S390_NUM_FPRS): Likewise.
8525 (s390_in_function_epilogue_p): New function.
8526 (s390_is_sigreturn): Replace S390_PSW_ADDR_SIZE by S390_GPR_SIZE.
8527 Replace S390_PC_REGNUM by S390_PSWA_REGNUM.
8528 (s390_gdbarch_init): Allocate and set up gdbarch_tdep structure.
8529 Replace s390_stab_reg_to_regnum by s390_dwarf_reg_to_regnum.
8530 Replace S390_FP_REGNUM by S390_SP_REGNUM.
8531 Remove calls to:
8532 set_gdbarch_deprecated_max_register_raw_size,
8533 set_gdbarch_deprecated_max_register_virtual_size,
8534 set_gdbarch_deprecated_register_byte,
8535 set_gdbarch_cannot_fetch_register,
8536 set_gdbarch_cannot_store_register,
8537 set_gdbarch_deprecated_register_size,
8538 set_gdbarch_deprecated_register_raw_size,
8539 set_gdbarch_deprecated_register_virtual_size,
8540 set_gdbarch_deprecated_register_virtual_type,
8541 set_gdbarch_deprecated_register_bytes.
8542 Add calls to:
8543 set_gdbarch_num_pseudo_regs,
8544 set_gdbarch_register_type,
8545 set_gdbarch_convert_register_p,
8546 set_gdbarch_register_to_value,
8547 set_gdbarch_value_to_register,
8548 set_gdbarch_register_reggroup_p,
8549 set_gdbarch_regset_from_core_section,
8550 set_gdbarch_pseudo_register_read,
8551 set_gdbarch_pseudo_register_write,
8552 set_gdbarch_in_function_epilogue_p.
8553 * Makefile.in (s390-nat.o, s390-tdep.o): Update dependencies.
8554 (s390_tdep_h): New variable.
8555
8556 2004-02-17 Jim Blandy <jimb@redhat.com>
8557
8558 * findvar.c (value_from_register): If the type has no length, just
8559 return an acceptable value --- don't report an internal error.
8560
8561 * stabsread.c (read_type): If we find any type numbers that are
8562 forward references, complain if the references aren't resolved by
8563 the time we're finished reading.
8564 (cleanup_undefined_types): Make error message more appropriate for
8565 a complaint.
8566
8567 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
8568
8569 * Makefile.in (defs_h): Remove dependency on progress_h.
8570 * defs.h (QUIT): Remove use of PROGRESS macro. Remove include of
8571 progress.h.
8572 * main.c (captured_main): Delete use of START_PROGRESS and
8573 END_PROGRESS.
8574
8575 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
8576
8577 * objfiles.c (terminate_minimal_symbol_table): Add back
8578 initialization of MSYMBOL_TYPE.
8579
8580 2004-02-17 David Mosberger <davidm@hpl.hp.com>
8581
8582 Committed by Andrew Cagney.
8583 * Makefile.in (ia64_tdep_h): New macro.
8584 (ia64-linux-tdep.o): Mention $(ia64_tdep_h).
8585 (ia64-tdep.o): Likewise.
8586 * ia64-tdep.h: New file.
8587 * ia64-tdep.c: Update copyright notice. Include "ia64-tdep.h".
8588 (ia64_linux_sigcontext_register_address): Move decl to ia64-tdep.h.
8589 (ia64_aix_sigcontext_register_address): Likewise.
8590 (ia64_linux_getunwind_table): Delete declaration.
8591 * ia64-linux-tdep.c: Likewise.
8592
8593 2004-02-17 Corinna Vinschen <vinschen@redhat.com>
8594
8595 * sh-tdep.c (sh_dsp_register_sim_regno): Use DSP_Rx_BANK_REGNUM.
8596 * sh-tdep.h: Rename R0_BANK_REGNUM and R7_BANK_REGNUM to
8597 DSP_R0_BANK_REGNUM and DSP_R7_BANK_REGNUM.
8598
8599 2004-02-17 Andrew Cagney <cagney@redhat.com>
8600
8601 * symtab.c (skip_prologue_using_sal): New function.
8602 * symtab.h (skip_prologue_using_sal): Declare.
8603 * frv-tdep.c: Include "symtab.h".
8604 (skip_prologue_using_sal): Delete function.
8605 * mips-tdep.c (skip_prologue_using_sal): Delete function.
8606 * rs6000-tdep.c (refine_prologue_limit): Mention
8607 skip_prologue_using_sal.
8608 * ia64-tdep.c (refine_prologue_limit): Ditto.
8609 * Makefile.in: Update dependencies.
8610
8611 2004-02-16 Andrew Cagney <cagney@redhat.com>
8612
8613 * config/alpha/tm-nbsd.h: Update copyright, delete #undef
8614 START_INFERIOR_TRAPS_EXPECTED.
8615 * config/alpha/tm-fbsd.h: Update copyright, delete #undef
8616 START_INFERIOR_TRAPS_EXPECTED.
8617 * config/alpha/tm-alphalinux.h (START_INFERIOR_TRAPS_EXPECTED):
8618 Delete macro.
8619 * config/alpha/tm-alpha.h (START_INFERIOR_TRAPS_EXPECTED): Delete
8620 macro, moved to "nm-osf.h". Update copyright.
8621 * config/alpha/nm-osf.h (START_INFERIOR_TRAPS_EXPECTED): Define,
8622 update copyright.
8623
8624 * gdbarch.sh (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION): Predicate
8625 and function replacing FRAMELESS_FUNCTION_INVOCATION.
8626 * blockframe.c (legacy_frameless_look_for_prologue): Rename
8627 frameless_look_for_prologue.
8628 * frame.h (legacy_frameless_look_for_prologue): Rename
8629 frameless_look_for_prologue.
8630 * gdbarch.h, gdbarch.c: Re-generate.
8631 * sh64-tdep.c (sh64_gdbarch_init): Update.
8632 * sh-tdep.c (sh_gdbarch_init): Update.
8633 * s390-tdep.c (s390_gdbarch_init): Update.
8634 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
8635 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
8636 * m68k-tdep.c (m68k_gdbarch_init): Update.
8637 (delta68_frame_args_address): Update.
8638 * m32r-tdep.c (m32r_gdbarch_init): Update.
8639 * hppa-tdep.c (hppa_gdbarch_init): Update.
8640 * h8300-tdep.c (h8300_gdbarch_init): Update.
8641 * frv-tdep.c (frv_gdbarch_init): Update.
8642 (frv_frameless_function_invocation): Update.
8643 * cris-tdep.c (cris_gdbarch_init): Update.
8644 (cris_frameless_function_invocation): Update.
8645 * avr-tdep.c (avr_gdbarch_init): Update.
8646 * arm-tdep.c (arm_gdbarch_init): Update.
8647 * stack.c (frame_info): Update, call predicate.
8648 * rs6000-tdep.c (rs6000_frame_chain): Update, call predicate..
8649 * frame.c (legacy_get_prev_frame): Update, call predicate..
8650 * arch-utils.c (generic_frameless_function_invocation_not): Delete.
8651 * arch-utils.h (generic_frameless_function_invocation_not): Delete.
8652 * alpha-tdep.c (alpha_gdbarch_init): Do not set frameless function
8653 invocation.
8654 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
8655 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
8656 * vax-tdep.c (vax_gdbarch_init): Ditto.
8657
8658 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): Delete unused
8659 function.
8660
8661 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
8662
8663 * objfiles.c (terminate_minimal_symbol_table): Remove unnecessary
8664 initializations.
8665
8666 2004-02-16 Andrew Cagney <cagney@redhat.com>
8667
8668 * tui/tui-windata.c: Include "gdb_string.h".
8669 * tui/tui-source.c, tui/tui-winsource.c: Ditto.
8670 * tui/tui-layout.c, tui/tui-command.c: Ditto.
8671 * Makefile.in: Update dependencies.
8672
8673 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
8674
8675 * Makefile.in (infrun.o): Add $(gdb_assert_h).
8676 * infrun.c: Include "gdb_assert.h".
8677 (singlestep_ptid, saved_singlestep_ptid)
8678 (stepping_past_singlestep_breakpoint): New variables.
8679 (resume): Set singlestep_ptid. Check for singlestep thread
8680 hop.
8681 (init_wait_for_inferior): Clear stepping_past_singlestep_breakpoint.
8682 (handle_inferior_event): Handle singlestep thread hop.
8683
8684 2004-02-16 Andrew Cagney <cagney@redhat.com>
8685
8686 * dwarf2-frame.c (dwarf2_frame_ops): New function.
8687 (dwarf2_frame_set_init_reg): Use, instead of gdbarch_data.
8688 (dwarf2_frame_init_reg): Ditto.
8689
8690 * printcmd.c (display_command): Check that EXP isn't NULL. Fix
8691 suggested by Joshua Neuheisel
8692
8693 * configure.in: Always check for curses, including pdcurses.
8694 Warn, instead of error, when no curses are found. Enable TUI when
8695 curses is available.
8696 * configure: Re-generate.
8697
8698 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
8699
8700 * sh-tdep.c (sh_register_convert_to_virtual): Rename from
8701 sh_sh4_register_convert_to_virtual.
8702 (sh_register_convert_to_raw): Rename from
8703 sh_sh4_register_convert_to_raw.
8704 (sh_pseudo_register_read): Accomodate above name change.
8705 (sh_pseudo_register_write): Ditto.
8706
8707 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
8708
8709 * sh-tdep.c (sh_generic_register_name): Remove.
8710 (sh_gdbarch_init): Use sh_sh_register_name in default case.
8711
8712 2004-02-15 Andrew Cagney <cagney@redhat.com>
8713
8714 * configure.in (build_warnings): Add -Wunused-function.
8715 * configure: Re-generate.
8716
8717 * config/tm-lynx.h (START_INFERIOR_TRAPS_EXPECTED): Delete macro.
8718 * config/rs6000/tm-rs6000.h (START_INFERIOR_TRAPS_EXPECTED): Ditto.
8719
8720 * procfs.c (procfs_init_inferior): Assume that
8721 START_INFERIOR_TRAPS_EXPECTED is defined.
8722 * config/ns32k/nbsdaout.mt (TM_FILE): Set to tm-ns32k.h.
8723 * config/ns32k/tm-nbsd.h: Delete file,
8724 START_INFERIOR_TRAPS_EXPECTED already defined as 2.
8725
8726 * config/vax/tm-vaxbsd.h: Do not include "tm-vax.h".
8727 * config/vax/tm-vax.h: Delete file.
8728
8729 * config/mips/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8730 * config/i386/tm-i386bsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8731 * config/arm/tm-linux.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8732 * config/vax/tm-vaxbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8733 * vax-tdep.c (vax_sigtramp_saved_pc): Inline only reference.
8734 * config/ns32k/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8735 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): Inline only reference.
8736
8737 2004-02-15 Mark Kettenis <kettenis@gnu.org>
8738
8739 * dwarf2-frame.h (dwarf2_frame_set_init_reg): New prototype.
8740 * dwarf2-frame.c (dwarf2_frame_data): New variable.
8741 (struct dwarf2_frame_ops): New.
8742 (dwarf2_frame_default_init_reg): New function, based on
8743 dwarf2_frame_init_reg.
8744 (dwarf2_frame_init, dwarf2_frame_set_init_reg): New function.
8745 (dwarf2_frame_init_reg): Call architecture-specific function.
8746 (dwarf2_frame_objfile_data): Renamed from dwarf2_frame_data.
8747 (dwarf2_frame_find_fde, add_fde): Use dwarf2_frame_objfile_data
8748 instead of dwarf2_frame_data.
8749 (_initialize_dwarf2_frame): Initailize new dwarf2_frame_data.
8750 Initialize dwarf2_frame_objfile instead of old dwarf2_frame_data.
8751
8752 2004-02-15 Andrew Cagney <cagney@redhat.com>
8753
8754 * gdbarch.sh (deprecated_register_gdbarch_swap): Rename
8755 register_gdbarch_swap.
8756 (DEPRECATED_REGISTER_GDBARCH_SWAP): Rename REGISTER_GDBARCH_SWAP.
8757 * f-lang.c (_initialize_f_language): Update, use
8758 DEPRECATED_REGISTER_GDBARCH_SWAP.
8759 * remote.c (_initialize_remote): Ditto.
8760 * regcache.c (_initialize_regcache): Ditto.
8761 * parse.c (_initialize_parse): Ditto.
8762 * infrun.c (_initialize_infrun): Ditto.
8763 * mi/mi-main.c (_initialize_mi_main): Ditto.
8764 * gdbtypes.c (_initialize_gdbtypes): Ditto.
8765
8766 * solib.c (solib_map_sections): Use bfd_set_cacheable instead of
8767 poking .cacheable directly.
8768 * symfile.c (symfile_bfd_open): Ditto.
8769
8770 * Makefile.in: Update all dependencies.
8771
8772 * Makefile.in: (.SUFFIXES): Add ".l" and ".y".
8773 (.y.c, .l.c): Specify implicit rule. Instead of .tab.c, generate
8774 .c. Update references. Delete unnecessary .tab.c and -lex.c rules.
8775 (ada-exp.o, c-exp.o, f-exp.o): Replace ada-exp.tab.o et.al. rule.
8776 (jv-exp.o, m2-exp.o, objc-exp.o, p-exp.o): Similar.
8777
8778 2004-02-14 Andrew Cagney <cagney@redhat.com>
8779
8780 * arch-utils.c (legacy_convert_register_p): Check
8781 DEPRECATED_REGISTER_CONVERTIBLE_P.
8782 * findvar.c (value_of_register): Ditto.
8783
8784 * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Add predicate.
8785 * gdbarch.h, gdbarch.c: Re-generate.
8786 * arch-utils.c (deprecated_register_convertible_not): Delete.
8787 * arch-utils.h (deprecated_register_convertible_not): Delete.
8788 * mi/mi-main.c (get_register): Update. Update copyright.
8789 * infcmd.c (default_print_registers_info): Update.
8790
8791 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
8792 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Delete.
8793 (DEPRECATED_CALL_DUMMY_ADDRESS): Delete.
8794 * gdbarch.h, gdbarch.c: Re-generate.
8795 * frame.c (deprecated_get_next_frame_hack): Delete function.
8796 * frame.h (deprecated_get_next_frame_hack): Delete declaration.
8797 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
8798 Update.
8799 * infcall.c (call_function_by_hand): Update.
8800
8801 2004-02-14 Elena Zannoni <ezannoni@redhat.com>
8802
8803 * symfile.c (init_entry_point_info, entry_point_address): Move
8804 from here...
8805 * objfiles.c (init_entry_point_info, entry_point_address):..to
8806 here.
8807 * symfile.h (init_entry_point_info, entry_point_address): Remove
8808 prototypes.
8809 * objfiles.h (init_entry_point_info, entry_point_address):Add
8810 prototypes.
8811 * cris-tdep.c: Remove include of symfile.h. Add include of
8812 objfiles.h.
8813 * infcall.c: Ditto.
8814 * mcore-tdep.c: Ditto.
8815 * mn10300-tdep.c: Ditto.
8816 * sh64-tdep.c: Ditto.
8817 * v850-tdep.c: Ditto.
8818 * arm-tdep.c: Remove include of symfile.h.
8819 * blockframe.c: Ditto.
8820 * coffread.c: Ditto.
8821 * dbxread.c: Ditto.
8822 * dwarf2read.c: Ditto.
8823 * dwarfread.c: Ditto.
8824 * frv-tdep.c: Ditto.
8825 * ia64-tdep.c: Ditto.
8826 * mdebugread.c: Ditto.
8827 * mipsread.c: Ditto.
8828 * rs6000-tdep.c: Ditto.
8829 * s390-tdep.c: Ditto.
8830 * sh-tdep.c: Ditto.
8831 * xstormy16-tdep.c: Ditto.
8832 * gdbarch.sh: Remove include of symfile.h.
8833 * gdbarch.c: Regenerate.
8834 * solib-irix.c (enable_break): Use entry_point_address().
8835 Add comment about include file.
8836 * xcoffread.c: Add comment about include file.
8837 * Makefile.in (arm-tdep.o, blockframe.o, coffread.o, cris-tdep.o)
8838 (dbxread.o, dwarf2read.o, dwarfread.o, frv-tdep.o, gdbarch.o)
8839 (ia64-tdep.o, infcall.o, mcore-tdep.o, mdebugread.o, mipsread.o)
8840 (mn10300-tdep.o, rs6000-nat.o, s390-tdep.o, sh64-tdep.o)
8841 (sh-tdep.o, v850-tdep.o, xstormy16-tdep.o): Update dependencies.
8842
8843 2004-02-13 Andrew Cagney <cagney@redhat.com>
8844
8845 * corelow.c (core_xfer_partial): Use "struct bfd_section".
8846 * config/sparc/nm-nbsd.h (struct target_ops): Declare, update
8847 copyright.
8848 * mips-linux-tdep.c: Use "GNU/Linux", update copyright.
8849
8850 2004-02-12 Fred Fish <fnf@redhat.com>
8851
8852 * m68hc11-tdep.c (m68hc11_gdbarch_init): Remove duplicate call to
8853 set_gdbarch_store_return_value.
8854
8855 2004-02-12 Andrew Cagney <cagney@redhat.com>
8856
8857 * remote-rdi.c (arm_rdi_start_remote): Delete unused function.
8858 (arm_rdi_interrupt, arm_rdi_interrupt_twice): Ditto.
8859 (interrupt_query): Ditto.
8860 (ofunc): Delete unused variable.
8861 * cris-tdep.c (cris_abi): Delete unused function.
8862 (reg_pop_op, move_reg_to_mem_index_inc_op): Ditto.
8863 (cris_get_wide_opcode, cris_get_short_size): Ditto.
8864 (cris_get_asr_quick_shift_steps): Ditto.
8865 (cris_skip_prologue_frameless_p): Ditto.
8866 * arm-tdep.c (arm_push_return_address): Delete unused function.
8867 (arm_push_dummy_frame, arm_fix_call_dummy): Ditto.
8868 * rs6000-tdep.c (rs6000_pc_in_call_dummy): Delete unused function.
8869 * s390-tdep.c (s390_function_start): Delete unused function.
8870
8871 2004-02-12 Andrew Cagney <cagney@redhat.com>
8872
8873 * gdbarch.sh (PROLOGUE_FRAMELESS_P): Delete.
8874 gdbarch.h, gdbarch.c: Re-generate.
8875 * cris-tdep.c (cris_gdbarch_init): Do not set prologue_frameless_p
8876 to generic_prologue_frameless_p.
8877 * arch-utils.h (generic_prologue_frameless_p): Delete declaration.
8878 * arch-utils.c (generic_prologue_frameless_p): Delete function.
8879
8880 2004-02-11 Daniel Jacobowitz <drow@mvista.com>
8881
8882 * mips-linux-tdep.c: Include "frame.h".
8883 (mips_linux_in_dynsym_stub, mips_linux_in_dynsym_resolve_code)
8884 (mips_linux_skip_resolver): New functions.
8885 (mips_linux_init_abi): Call set_gdbarch_skip_solib_resolver
8886 and set_gdbarch_in_solib_call_trampoline.
8887 * mips-tdep.c (mips_gdbarch_init): Move gdbarch_init_osabi call
8888 to after set_gdbarch_in_solib_return_trampoline. Only set the
8889 solib hooks to mips16 functions if the OS ABI is unknown.
8890 * config/mips/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Undefine after
8891 including "config/tm-linux.h".
8892 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Define.
8893 * Makefile.in (mips-linux-tdep.o): Update.
8894
8895 2004-02-11 David Carlton <carlton@kealia.com>
8896
8897 * linespec.c (decode_compound): Only look for a class symbol when
8898 considering all but the rightmost component.
8899
8900 2004-02-11 Andrew Cagney <cagney@redhat.com>
8901
8902 * hppa-tdep.c (hppa_gdbarch_init): Re-order so that the frame and
8903 abi code are are separatly grouped.
8904
8905 2004-02-11 Andrew Cagney <cagney@redhat.com>
8906
8907 * gdbarch.sh (FRAME_ARGS_SKIP): Default to 0.
8908 * gdbarch.h, gdbarch.c: Re-generate.
8909 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
8910 * v850-tdep.c (v850_gdbarch_init): Update.
8911 * sh64-tdep.c (sh64_gdbarch_init): Update.
8912 * sh-tdep.c (sh_gdbarch_init): Update.
8913 * s390-tdep.c (s390_gdbarch_init): Update.
8914 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
8915 * mips-tdep.c (mips_gdbarch_init): Update.
8916 * mcore-tdep.c (mcore_gdbarch_init): Update.
8917 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
8918 * m32r-tdep.c (m32r_gdbarch_init): Update.
8919 * ia64-tdep.c (ia64_gdbarch_init): Update.
8920 * hppa-tdep.c (hppa_gdbarch_init): Update.
8921 * h8300-tdep.c (h8300_gdbarch_init): Update.
8922 * frv-tdep.c (frv_gdbarch_init): Update.
8923 * d10v-tdep.c (d10v_gdbarch_init): Update.
8924 * cris-tdep.c (cris_gdbarch_init): Update.
8925 * avr-tdep.c (avr_gdbarch_init): Update.
8926 * arm-tdep.c (arm_gdbarch_init): Update.
8927 * alpha-tdep.c (alpha_gdbarch_init): Update.
8928
8929 2004-02-11 Corinna Vinschen <vinschen@redhat.com>
8930
8931 * sh-tdep.c (sh_sh3_dsp_register_name): Fix formatting. Add missing
8932 comma.
8933 (sh_sh4al_dsp_register_name): Ditto.
8934
8935 2004-02-10 Andrew Cagney <cagney@redhat.com>
8936
8937 * mips-tdep.c (mips_gdbarch_init): Delete deprecated frame code.
8938 (mips_init_frame_pc_first): Delete function.
8939 (mips_frame_saved_pc): Delete function.
8940 (mips_frame_chain): Delete function.
8941 (mips_init_extra_frame_info): Delete function.
8942 (mips_xfer_register): Delete unused variable "reg".
8943 (mips_n32n64_push_dummy_call): Delete unused variable "valbuf".
8944 (mips_n32n64_return_value): Delete unused variable "reg".
8945 (mips_n32n64_return_value): Delete unused variable "pos".
8946 (mips_o32_push_dummy_call): Delete unused variable "valbuf".
8947 (mips_o32_return_value): Delete unused variable "pos".
8948 (mips_o64_push_dummy_call): Delete unused variable "valbuf".
8949 (mips_print_fp_register): Delete unused variable "namelen"
8950 (mips_print_fp_register): Delete unused variable "flt2"
8951 (get_frame_pointer): Delete function.
8952 (cached_proc_desc): Delete static variable.
8953 (mips_pop_frame): Delete function.
8954 (mips_find_saved_regs): Delete function.
8955 (mips_get_saved_register): Delete function.
8956 (mips_saved_pc_after_call): Delete function.
8957 (SIGFRAME_BASE): Delete macro.
8958 (SIGFRAME_FPREGSAVE_OFF): Delete macro.
8959 (SIGFRAME_PC_OFF): Delete macro.
8960 (SIGFRAME_REGSAVE_OFF): Delete macro.
8961 (mips_dump_tdep): Do not print deleted macro definitions.
8962
8963 2004-02-10 Andrew Cagney <cagney@redhat.com>
8964
8965 * Makefile.in (SFILES): Remove explictly listed tui files.
8966 (SUBDIR_GDBTK_SRCS): Fix path to gdbtk-interp.c.
8967
8968 2004-02-10 Jeff Johnston <jjohnstn@redhat.com>
8969
8970 * ia64-tdep.c (ia64_frame_this_id): Fix tracing print statement
8971 to use paddr functions to format ia64 addresses and long values.
8972 (ia64_frame_prev_register, ia64_sigtramp_frame_this_id): Ditto.
8973 (ia64_sigtramp_frame_prev_register, ia64_access_reg): Ditto.
8974 (get_kernel_table, ia64_find_proc_info_x): Ditto.
8975 (ia64_get_dyn_info_list, ia64_libunwind_this_frame_id): Ditto.
8976 (ia64_libunwind_frame_prev_register, ia64_unwind_dummy_id): Ditto.
8977
8978 2004-02-10 Andrew Cagney <cagney@redhat.com>
8979
8980 * defs.h: Do not include "tui.h".
8981 * gdb_curses.h: New file.
8982 * tui/tui-hooks.h: New file.
8983 * tui/tui.h (tui_update_all_exec_infos): Delete declaration.
8984 (tui_install_hooks, tui_remove_hooks): Delete declarations.
8985 (tui_initialize_io): Delete declaration.
8986 (tui_initialize_readline: Delete redundant declaration.
8987 (struct tui_point): Delete definition.
8988 * tui/tui-data.h (struct tui_point): Define.
8989 * cli/cli-decode.c [TUI]: Include "tui/tui.h".
8990 * utils.c: Include "tui/tui.h".
8991 * tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
8992 * printcmd.c [TUI]: Include "tui/tui.h".
8993 * cli/cli-cmds.c [TUI]: Include "tui/tui.h".
8994 * tui/tui-command.c: Include "gdb_curses.h".
8995 * tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
8996 * tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
8997 * tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
8998 * tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
8999 * tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
9000 * Makefile.in: Update all dependencies.
9001 (tui_hooks_h, gdb_curses_h): Define.
9002 (SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
9003
9004 2004-02-10 Elena Zannoni <ezannoni@redhat.com>
9005
9006 * objfiles.h (struct objfile): Remove unused fields auxf1 and
9007 auxf2. Add comments about some other rarely used fields.
9008
9009 2004-02-10 Andrew Cagney <cagney@redhat.com>
9010
9011 * Makefile.in (init.c): Fix script removing duplicates. Problem
9012 reported by Peter Schauer.
9013
9014 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
9015
9016 * bcache.c (bcache_xmalloc): Use obstack_init instead of
9017 obstack_specify_allocation.
9018 * objfiles.c (allocate_objfile): Ditto.
9019 * solib-sunos.c (solib_add_common_symbols)
9020 (allocate_rt_common_objfile): Ditto.
9021 * symfile.c (reread_symbols): Ditto.
9022 * gdb_obstack.h: Add comment.
9023
9024 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
9025
9026 * linespec.c (decode_line_1, locate_first_half)
9027 (decode_compound, lookup_prefix_sym): Update comments. Delete old
9028 commented out code.
9029
9030 2004-02-09 Daniel Jacobowitz <drow@mvista.com>
9031
9032 * cp-namespace.c (check_one_possible_namespace_symbol): Don't use
9033 obstack_free.
9034
9035 2004-02-09 Andrew Cagney <cagney@redhat.com>
9036
9037 * blockframe.c (find_pc_partial_function): If find_pc_overlay
9038 fails, try find_pc_section. Fix PR c++/1267.
9039 * minsyms.c (lookup_minimal_symbol_by_pc): Use find_pc_section
9040 instead of find_pc_mapped_section.
9041 (lookup_minimal_symbol_by_pc_section): If the SECTION is NULL, do
9042 not default to the section containing PC. Fix PR symtab/1519.
9043
9044 2004-02-09 Andrew Cagney <cagney@redhat.com>
9045
9046 * Makefile.in (mips-tdep.o): Update dependencies.
9047 * mips-tdep.c: Include "frame-unwind.h", "frame-base.h" and
9048 "trad-frame.h".
9049 (mips_unwind_pc): Return the pseudo PC register.
9050 (mips_unwind_dummy_id): New function.
9051 (mips16_fetch_instruction): New function.
9052 (mips32_fetch_instruction): New function.
9053 (struct mips_frame_cache): Define.
9054 (mips_mdebug_frame_cache): New function.
9055 (mips_mdebug_frame_this_id): New function.
9056 (mips_mdebug_frame_prev_register): New function.
9057 (mips_mdebug_frame_unwind): Define.
9058 (mips_mdebug_frame_sniffer): New function.
9059 (mips_mdebug_frame_base_address): New function.
9060 (mips_mdebug_frame_base): Define.
9061 (mips_mdebug_frame_base_sniffer): New function.
9062 (mips_gdbarch_init): Append unwind and base sniffers. Set
9063 unwind_dummy_id.
9064
9065 2004-02-08 Andrew Cagney <cagney@redhat.com>
9066
9067 * frame.c: Print both the register number and name.
9068
9069 * Makefile.in (init.c): Eliminate duplicates. Combine two greps
9070 and a sed into a single sed. Make .c and .o patterns more robust.
9071 (OBS): Delete.
9072 (INIT_FILES): Replace OBS with COMMON_OBS.
9073 (COMMON_OBS): Move DEPFILES and YYOBJ to start of definition.
9074
9075 2004-02-08 Mark Kettenis <kettenis@gnu.org>
9076
9077 * sparc-nat.c (sparc_xfer_wcookie): Try to fetch the cookie using
9078 the PT_WCOOKIE request.
9079
9080 2004-02-08 Andrew Cagney <cagney@redhat.com>
9081
9082 * mips-tdep.c (mips_unwind_pc): New function.
9083 (mips_gdbarch_init): Set mips_unwind_pc.
9084
9085 * frame.c (legacy_saved_regs_this_id): Return a null frame ID.
9086 (get_frame_id): Allow the UNKNOWN_FRAME.
9087 (frame_register_unwind, get_frame_type): Ditto.
9088
9089 * frame.c (legacy_frame_p): Check for DEPRECATED_TARGET_READ_FP_P
9090 and DEPRECATED_FP_REGNUM. Don't assume that the lack of
9091 unwind_dummy_id indicates a legacy frame.
9092
9093 * configure.in (CONFIG_LIB_OBS): Replace with CONFIG_OBS.
9094 * configure: Re-generate.
9095
9096 * mips-tdep.c (mips_gdbarch_init): Group deprecated frame unwind
9097 methods.
9098
9099 2004-02-08 Andrew Cagney <cagney@redhat.com>
9100
9101 * configure.in (CONFIG_ALL): Set to Makefile target, and not
9102 makefile macro.
9103 * configure: Re-generate.
9104 (CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Ditto.
9105 * Makefile.in (SUBDIR_CLI_CLEAN): Delete.
9106 (SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): Delete.
9107 (SUBDIR_CLI_ALL, SUBDIR_GDBTK_ALL): Delete.
9108 (SUBDIR_GDBTK_CLEAN, SUBDIR_GDBTK_INSTALL): Delete.
9109 (SUBDIR_GDBTK_UNINSTALL, SUBDIR_MI_ALL): Delete.
9110 (SUBDIR_MI_CLEAN, SUBDIR_MI_INSTALL): Delete.
9111 (SUBDIR_MI_UNINSTALL, SUBDIR_TUI_ALL): Delete.
9112 (SUBDIR_TUI_CLEAN, SUBDIR_TUI_INSTALL): Delete.
9113 (SUBDIR_TUI_UNINSTALL, SUBDIR_CLI_CLEAN): Delete.
9114
9115 2004-02-07 Andrew Cagney <cagney@redhat.com>
9116
9117 * Makefile.in: Update all dependencies.
9118
9119 * configure.in (CONFIG_INITS, CONFIG_LIB_OBS): Delete.
9120 * configure: Re-generate.
9121 * Makefile.in (INIT_FILES): Replace CONFIG_INITS with CONFIG_SRCS.
9122 (CONFIG_LIB_OBS, CONFIG_INITS): Delete.
9123 (COMMON_OBS): Add "main.o" and "annotate.o".
9124 (ANNOTATE_OBS): Delete.
9125 (OBS): Remove ANNOTATE_OBS.
9126 (DEPFILES): Replace CONFIG_LIB_OBS with CONFIG_LIB_OBS, remove
9127 CONFIG_INITS.
9128 (gdb$(EXEEXT), insight$(EXEEXT)): Do not depend on, or link
9129 against CONFIG_OBS and "main.o".
9130 (SUBDIR_CLI_INITS, SUBDIR_MI_INITS): Delete.
9131 (SUBDIR_TUI_INITS, SUBDIR_GDBTK_INITS): Delete.
9132
9133 * tui/tui-command.c: Include "gdb_string.h", delete register
9134 attribute, use ISO-C function signatures.
9135 * tui/tui-disasm.c, tui/tui-file.c, tui/tui-io.c: Ditto.
9136 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
9137 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Ditto.
9138 * tui/tui.c: Ditto.
9139
9140 * tui/tui-command.c: Change variable and function names to lower
9141 case.
9142 * tui/tui-data.c, tui/tui-disasm.c: Ditto.
9143 * tui/tui-hooks.c, tui/tui-io.c, tui/tui-layout.c: Ditto.
9144 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
9145 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9146 * tui/tui-winsource.c, tui/tui.c: Ditto.
9147
9148 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9149
9150 * buildsym.c (free_pending_blocks, finish_block)
9151 (record_pending_block, make_blockvector, end_symtab): Replace
9152 symbol_obstack with objfile_obstack.
9153 * coffread.c (process_coff_symbol, coff_read_struct_type)
9154 (coff_read_enum_type): Ditto.
9155 * cp-namespace.c (initialize_namespace_symtab)
9156 (check_one_possible_namespace_symbol): Ditto.
9157 * dwarf2read.c (new_symbol, dwarf2_const_value, macro_start_file)
9158 (dwarf2_symbol_mark_computed): Ditto.
9159 * dwarfread.c (enum_type, new_symbol, synthesize_typedef): Ditto.
9160 * elfread.c (elf_symtab_read): Ditto.
9161 * hpread.c (hpread_symfile_init, hpread_symfile_init)
9162 (hpread_read_enum_type, hpread_read_function_type)
9163 (hpread_read_doc_function_type, hpread_process_one_debug_symbol):
9164 Ditto.
9165 * jv-lang.c (get_java_class_symtab, add_class_symbol)
9166 (java_link_class_type): Ditto.
9167 * mdebugread.c (parse_symbol, psymtab_to_symtab_1, new_symtab)
9168 (new_symbol): Ditto.
9169 * minsyms.c (install_minimal_symbols): Ditto.
9170 * objfiles.c (allocate_objfile): Remove init of symbol_obstack.
9171 (terminate_minimal_symbol_table): Replace symbol_obstack with
9172 objfile_obstack.
9173 (free_objfile): Remove freeing of symbol_obstack.
9174 * objfiles.h: Remove symbol_obstack field.
9175 * pa64solib.c (add_to_solist): Replace symbol_obstack with
9176 objfile_obstack.
9177 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
9178 symbol_obstack.
9179 (solib_add_common_symbols): Replace symbol_obstack with
9180 objfile_obstack.
9181 * somsolib.c (som_solib_add): Ditto.
9182 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
9183 (common_block_start, common_block_end): Ditto.
9184 * symfile.c (reread_symbols): Remove freeing and init of
9185 symbol_obstack.
9186 (allocate_symtab): Rename symbol_obstack to objfile_obstack.
9187 * symfile.h: Update comment.
9188 * symmisc.c (print_objfile_statistics): Remove symbol_obstack
9189 stats printing.
9190 * symtab.c (symbol_set_names): Replace symbol_obstack with
9191 objfile_obstack.
9192 * symtab.h (struct general_symbol_info, struct minimal_symbol):
9193 Update comments.
9194 * xcoffread.c (read_xcoff_symtab, SYMBOL_DUP, SYMNAME_ALLOC)
9195 (init_stringtab, xcoff_initial_scan): Replace symbol_obstack with
9196 objfile_obstack.
9197
9198 2004-02-07 Andrew Cagney <cagney@redhat.com>
9199
9200 * tui/tui.h: Do not include <stdarg.h>, <string.h>, and
9201 "ansidecl.h". Do not undef "reg" and "chtype". Fix case of
9202 fields and variables.
9203 * tui/tui-wingeneral.h (m_beVisible): Delete macro.
9204 (m_beInvisible): Delete macro.
9205 * tui/tui-data.h: Fix case case fields and variables.
9206 (m_genWinPtrIsNull): Delete macro.
9207 (tui_win_list): Rename winList.
9208 (TUI_SRC_WIN): Rename srcWin.
9209 (TUI_DISASM_WIN): Rename disassemWin.
9210 (TUI_DATA_WIN): Rename dataWin.
9211 (TUI_CMD_WIN): Rename cmdWin.
9212 (m_genWinPtrNotNull): Delete macro.
9213 (m_winPtrIsNull): Delete macro.
9214 (m_winPtrNotNull): Delete macro.
9215 (tui_win_is_source_type): Replace m_winIsSourceType
9216 (tui_win_is_auxillary): Replace m_winIsAuzillary.
9217 (tui_win_has_locator): Replace m_hasLocator.
9218 (tui_set_win_highlight): Replace m_setWinHighlightOn and
9219 m_setWinHighlightOff.
9220 * tui/tui-data.c: Update references.
9221 (tui_win_is_source_type, tui_set_win_highlight): New functions.
9222 (tui_win_has_locator, tui_win_is_auxillary): New functions.
9223 * tui/tui-command.c, tui/tui-disasm.c: Update references.
9224 * tui/tui-io.c, tui/tui-layout.c, tui/tui-regs.c: Ditto.
9225 * tui/tui-regs.h, tui/tui-source.c, tui/tui-stack.c: Ditto.
9226 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9227 * tui/tui-winsource.c, tui/tui.c: Ditto.
9228
9229 2004-02-07 Mark Kettenis <kettenis@gnu.org>
9230
9231 * sparc-tdep.h (sparc_fetch_wcookie): New prototype.
9232 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Handle
9233 StackGhost.
9234
9235 * sparc-tdep.c (sparc32_frame_prev_register): Rename local
9236 variable `i6' to `i7'.
9237 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
9238
9239 2004-02-07 Andrew Cagney <cagney@redhat.com>
9240
9241 * tui/tui.h (Opaque, OpaquePtr OpaqueList): Delete definition.
9242 (TuiPoint, TuiPointPtr): Ditto.
9243 (TuiStatus, TuiStatusPtr): Ditto.
9244 (TuiWinType, TuiWinTypePtr): Ditto.
9245 (struct tui_point): Rename _TuiPoint.
9246 (tui_get_low_disassembly_address): Rename
9247 tuiGetLowDisassemblyAddress.
9248 (tui_update_all_exec_infos): Rename tuiUpdateAllExecInfos.
9249 (tuiFree): Delete declaration.
9250 (OpaqueFuncPtr, TuiOpaqueFuncPtr): Delete definitions.
9251 (TuiVoidFuncPtr, TuiIntFuncPtr): Delete definitions.
9252 * tui/tui.c (tuiFree): Delete function.
9253 * cli/cli-cmds.c (disassemble_command): Update references.
9254 * tui/tui-data.c, tui/tui-data.h, tui/tui-disasm.c: Ditto.
9255 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
9256 * tui/tui-stack.c, tui/tui-win.c, tui/tui-wingeneral.c: Ditto.
9257 * tui/tui-winsource.c: Ditto.
9258
9259 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9260
9261 * dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
9262 coffstab_build_psymtabs, elfstab_build_psymtabs)
9263 (stabsect_build_psymtabs): Replace psymbol_obstack with
9264 objfile_obstack.
9265 * dwarf2-frame.c (decode_frame_entry_1): Ditto.
9266 * dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
9267 Ditto.
9268 * dwarfread.c (scan_compilation_units): Ditto.
9269 * elfread.c (elfstab_offset_sections): Ditto.
9270 * hppa-tdep.c (read_unwind_info): Ditto.
9271 * hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
9272 (hpread_end_psymtab): Ditto.
9273 * mdebugread.c (mdebug_build_psymtabs, add_pending)
9274 (parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
9275 Ditto.
9276 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
9277 * objfiles.c (add_to_objfile_sections)
9278 (build_objfile_section_table): Ditto.
9279 (allocate_objfile): Remove init of psymbol_obstack.
9280 (free_objfile): Remove freeing of psymbol_obstack.
9281 * objfiles.h (struct objfile): Remove field
9282 psymbol_obstack. Update comments.
9283 * pa64solib.c (pa64_solib_add_solib_objfile): Replace
9284 psymbol_obstack with objfile_obstack.
9285 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
9286 psymbol_obstack.
9287 * somread.c (som_symfile_offsets, init_import_symbols)
9288 (init_export_symbols): Replace psymbol_obstack with
9289 objfile_obstack.
9290 * somsolib.c (som_solib_add_solib_objfile): Ditto.
9291 * symfile.c (default_symfile_offsets, syms_from_objfile)
9292 (reread_symbols): Remove freeing and init of psymbol_obstack.
9293 (cashier_psymtab): Update comment.
9294 * symmisc.c (print_objfile_statistics): Don't report stats for
9295 psymbol obstack.
9296 * symtab.h (struct general_symbol_info, struct partial_symtab):
9297 Update comments.
9298 * xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
9299 (xcoff_symfile_offsets): Replace psymbol_obstack with
9300 objfile_obstack.
9301
9302 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9303
9304 * objfiles.h (struct objfile): Add objfile_obstack field.
9305 Remove type_obstack field.
9306
9307 * dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
9308 read_structure_scope read_enumeration, new_symbol): Replace
9309 type_obstack with objfile_obstack.
9310 * dwarfread.c (struct_type, enum_type): Ditto.
9311 * gdbtypes.c (alloc_type, alloc_type_instance, init_type)
9312 (lookup_fundamental_type): Ditto.
9313 * gdbtypes.h (TYPE_ALLOC): Ditto.
9314 * hpread.c (hpread_read_enum_type, hpread_read_function_type)
9315 (hpread_read_doc_function_type, hpread_read_struct_type)
9316 (fix_static_member_physnames, hpread_read_array_type)
9317 (hpread_read_subrange_type, hpread_type_lookup): Ditto.
9318 * jv-lang.c (java_lookup_class, type_from_class, type_from_class)
9319 (java_link_class_type): Ditto.
9320 * mdebugread.c (parse_type): Ditto.
9321 * objfiles.c (allocate_objfile, free_objfile): Ditto.
9322 * solib-sunos.c (solib_add_common_symbols): Ditto.
9323 * stabsread.c (define_symbol, read_type, read_member_functions,
9324 read_cpp_abbrev, read_one_struct_field): Ditto.
9325 * symfile.c (reread_symbols): Ditto.
9326 * symmisc.c (print_objfile_statistics): Ditto.
9327
9328 2004-02-07 Andrew Cagney <cagney@redhat.com>
9329
9330 * tui/tui-data.h (tui_win_element): Rename TuiWinElement.
9331 (tui_exec_info_content): Rename TuiExecInfoContent.
9332 (TuiGenWinInfo, TuiGenWinInfoPtr): Delete definitions.
9333 (TuiWinInfo, TuiWinInfoPtr): Ditto.
9334 (TuiScrollDirection, TuiScrollDirectionPtr): Ditto.
9335 (TuiList, TuiListPtr): Ditto.
9336 (TuiLayoutType, TuiLayoutTypePtr): Ditto.
9337 (TuiDataType, TuiDataTypePtr): Ditto.
9338 (TuiRegisterDisplayType, TuiRegisterDisplayTypePtr): Ditto.
9339 (TuiLineOrAddress, TuiLineOrAddressPtr): Ditto.
9340 (TuiLayoutDef, TuiLayoutDefPtr): Ditto.
9341 (TuiSourceElement, TuiSourceElementPtr): Ditto.
9342 (TuiDataElement, TuiDataElementPtr): Ditto.
9343 (TuiWinElement, TuiWinElementPtr): Ditto.
9344 (TuiDataInfo, TuiDataInfoPtr): Ditto.
9345 (TuiCommandElement, TuiCommandElementPtr): Ditto.
9346 (TuiLocatorElement, TuiLocatorElementPtr): Ditto.
9347 (TuiWhichElement, TuiWhichElementPtr): Ditto.
9348 (TuiSourceInfo, TuiSourceInfoPtr): Ditto.
9349 (TuiCommandInfo, TuiCommandInfoPtr): Ditto.
9350 * tui/tui-command.c, tui/tui-data.c: Update references.
9351 * tui/tui-data.h, tui/tui-disasm.c, tui/tui-layout.c: Ditto.
9352 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
9353 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9354 * tui/tui-winsource.c, tui/tui.c: Ditto.
9355
9356 2004-02-07 Mark Kettenis <kettenis@gnu.org>
9357
9358 * dwarf2-frame.h: Update copyright.
9359 (enum dwarf2_frame_reg_rule): New.
9360 (struct dwarf2_frame_state_reg): New.
9361 (dwarf2_frame_sniffer, dwarf2_frame_base_sniffer): Make extern.
9362 * dwarf2-frame.c: Update copyright.
9363 (enum dwarf2_reg_rule): Remove.
9364 (struct dwarf2_frame_state): Remove defenition of `struct
9365 dwarf2_frame_state_reg'.
9366 (read_reg): Call get_frame_arch to get the architecture instead of
9367 using CURRENT_GDBARCH.
9368 (execute_cfa_program): Prefix old `enum dwarf2_reg_rule' tags with
9369 DWARF2_FRAME_.
9370 (dwarf2_frame_init_reg): New function.
9371 (dwarf2_frame_cache): Call get_frame_arch to get the architecture
9372 instead of using CURRENT_GDBARCH. Call dwarf2_frame_init_reg to
9373 initialize the register state. Prefix old `enum dwarf2_reg_rule'
9374 tags with DWARF2_FRAME_.
9375 (dwarf2_frame_prev_register): Call get_frame_arch to get the
9376 architecture instead of using CURRENT_GDBARCH. Prefix old `enum
9377 dwarf2_reg_rule' tags with DWARF2_FRAME_.
9378
9379 2004-02-06 Andrew Cagney <cagney@redhat.com>
9380
9381 * tui/tui-data.h (struct tui_list): Rename _TuiList.
9382 (enum tui_data_type): Rename _TuiDataType.
9383 (struct tui_layout_def): Rename _TuiLayoutDef.
9384 (struct tui_source_element): Rename _TuiSourceElement.
9385 (struct tui_data_element): Rename _TuiDataElement.
9386 (struct tui_command_element): Rename _TuiCommandElement.
9387 (struct tui_locator_element): Rename _TuiLocatorElement.
9388 (union tui_which_element): Define.
9389 (struct tui_win_element): Rename _TuiWinElement.
9390 (struct tui_data_info): Rename _TuiDataInfo.
9391 (struct tui_source_info): Rename _TuiSourceInfo.
9392 (struct tui_command_info): Rename _TuiCommandInfo.
9393 (tui_initialize_static_data): Rename initializeStaticData.
9394 (tui_alloc_generic_win_info): Rename allocGenericWinInfo.
9395 (tui_alloc_win_info): Rename allocWinInfo.
9396 (tui_init_generic_part): Rename initGenericPart.
9397 (tui_init_win_info): Rename initWinInfo.
9398 (tui_alloc_content): Rename allocContent.
9399 (tui_add_content_elements): Rename addContentElements.
9400 (tui_init_content_element): Rename initContentElement.
9401 (tui_free_window): Rename freeWindow.
9402 (tui_free_win_content): Rename freeWinContent.
9403 (tui_free_data_content): Rename freeDataContent.
9404 (tui_free_all_source_wins_content): Rename
9405 freeAllSourceWinsContent.
9406 (tui_del_window): Rename tuiDelWindow.
9407 (tui_del_data_windows): Rename tuiDelDataWindows.
9408 (tui_partial_win_by_name): Rename partialWinByName.
9409 (tui_win_name): Rename winName.
9410 (tui_current_layout): Rename currentLayout.
9411 (tui_set_current_layout_to): Rename setCurrentLayoutTo.
9412 (tui_term_height): Rename termHeight.
9413 (tui_set_term_height_to): Rename setTermHeightTo.
9414 (tui_term_width): Rename termWidth.
9415 (tui_set_term_width_to): Rename setTermWidthTo.
9416 (tui_set_gen_win_origin): Rename setGenWinOrigin.
9417 (tui_locator_win_info_ptr): Rename locatorWinInfoPtr.
9418 (tui_source_exec_info_win_ptr): Rename tui_gen_win_info.
9419 (tui_disassem_exec_info_win_ptr): Rename disassemExecInfoWinPtr.
9420 (tui_source_windows): Rename sourceWindows.
9421 (tui_clear_source_windows): Rename clearSourceWindows.
9422 (tui_clear_source_windows_detail): Rename
9423 clearSourceWindowsDetail.
9424 (tui_clear_win_detail): Rename clearWinDetail.
9425 (tui_add_to_source_windows): Rename tuiAddToSourceWindows.
9426 (tui_default_tab_len): Rename tuiDefaultTabLen.
9427 (tui_set_default_tab_len): Rename tuiSetDefaultTabLen.
9428 (tui_win_with_focus): Rename tuiWinWithFocus.
9429 (tui_set_win_with_focus): Rename tuiSetWinWithFocus.
9430 (tui_layout_def): Rename tuiLayoutDef.
9431 (tui_win_resized): Rename tuiWinResized.
9432 (tui_set_win_resized_to): Rename tuiSetWinResizedTo.
9433 (tui_next_win): Rename tuiNextWin.
9434 (tui_prev_win): Rename tuiPrevWin.
9435 (tui_add_to_source_windows): Rename addToSourceWindows.
9436 * tui/tui-winsource.c, tui/tui-win.c: Update references.
9437 * tui/tui-layout.c, tui/tui-source.c: Ditto.
9438 * tui/tui-stack.c, tui/tui-io.c: Ditto.
9439 * tui/tui.c, tui/tui-data.c: Ditto.
9440 * tui/tui-interp.c, tui/tui-data.c: Ditto.
9441 * tui/tui-disasm.c, tui/tui-command.c: Ditto.
9442
9443 * tui/tui-source.h: Update copyright. Include "tui-data.h".
9444 (struct symtab): Declare.
9445 (tui_set_source_content): Rename tuiSetSourceContent.
9446 (tui_show_symtab_source): Rename tuiShowSource.
9447 (tui_source_is_displayed): Rename tuiSourceIsDisplayed.
9448 (tui_vertical_source_scroll): Rename tuiVerticalSourceScroll.
9449 * tui/tui-source.c: Update copyright. Update references.
9450 * tui/tui-win.c, tui/tui-winsource.c: Update references.
9451 * tui/tui-stack.c: Update references.
9452
9453 * tui/tui-win.h: Update copyright. Include "tui-data.h".
9454 (struct tui_win_info): Declare.
9455 (tui_scroll_forward): Rename tuiScrollForward.
9456 (tui_scroll_backward): Rename tuiScrollBackward.
9457 (tui_scroll_left): Rename tuiScrollLeft.
9458 (tui_scroll_right): Rename tuiScrollRight.
9459 (tui_set_win_focus_to): Rename tuiSetWinFocusTo.
9460 (tui_resize_all): Rename tuiResizeAll.
9461 (tui_refresh_all_win): Rename tuiRefreshAll.
9462 (tui_sigwinch_handler): Rename tuiSigwinchHandler.
9463 * tui/tui-layout.c, * tui/tui-io.c: Update references.
9464 * tui/tui-wingeneral.h, * tui/tui.c: Update references.
9465 * tui/tui-disasm.c, * tui/tui-command.c: Update references.
9466
9467 * tui/tui-windata.h: Update copyright. Include "tui-data.h".
9468 (tui_erase_data_content): Rename tuiEraseDataContent.
9469 (tui_display_all_data): Rename tuiDisplayAllData.
9470 (tui_check_data_values): Rename tuiCheckDataValues.
9471 (tui_display_data_from_line): Rename tuiDisplayDataFromLine.
9472 (tui_first_data_item_displayed): Rename tuiFirstDataItemDisplayed.
9473 (tui_first_data_element_no_in_line): Rename
9474 tuiFirstDataElementNoInLine.
9475 (tui_delete_data_content_windows): Rename
9476 tuiDeleteDataContentWindows.
9477 (tui_refresh_data_win): Rename tuiRefreshDataWin.
9478 (tui_display_data_from): Rename tuiDisplayDataFrom.
9479 (tui_vertical_data_scroll): Rename tuiVerticalDataScroll.
9480 * tui/tui-windata.c, tui/tui-hooks.c: Update references.
9481 * tui/tui-win.c, tui/tui-regs.c: Update references.
9482 * tui/tui-layout.c, tui/tui.c: Update references.
9483
9484 * tui/tui-wingeneral.h: Update copyright.
9485 (m_allBeVisible): Delete macro.
9486 (m_allBeInvisible): Delete macro.
9487 (struct tui_gen_win_info): Declare.
9488 (struct tui_win_info): Declare.
9489 (tui_unhighlight_win): Rename unhighlightWin.
9490 (tui_make_visible, tui_make_invisible): Replace makeVisible.
9491 (tui_make_all_visible, tui_make_all_invisible): Replace makeAllVisible.
9492 (tui_make_window): Rename makeWindow.
9493 (tui_copy_win): Rename copyWin.
9494 (tui_box_win): Rename boxWin.
9495 (tui_highlight_win): Rename highlightWin.
9496 (tui_check_and_display_highlight_if_needed): Rename
9497 checkAndDisplayHighlightIfNeeded.
9498 (tui_refresh_all): Rename refreshAll.
9499 (tui_delete_win): Rename tuiDelwin.
9500 (tui_refresh_win): Rename tuiRefreshWin.
9501 * tui/tui-wingeneral.c (make_visible): Rename makeVisible.
9502 (tui_make_visible, tui_make_invisible): New functions.
9503 (tui_make_all_visible, tui_make_all_invisible): New functions.
9504 (make_all_visible): Rename makeAllVisible.
9505 * tui/tui-winsource.c, tui/tui-windata.c: Update references.
9506 * tui/tui-data.c, tui/tui-winsource.c: Update references.
9507 * tui/tui-windata.c, tui/tui-win.c: Update references.
9508 * tui/tui-regs.c, tui/tui-layout.c: Update references.
9509 * tui/tui-data.h (struct tui_gen_win_info): Rename _TuiGenWinInfo.
9510
9511 2004-02-06 Mark Kettenis <kettenis@gnu.org>
9512
9513 * proc-api.c (write_with_trace): Initialize local variable to
9514 silence compiler warning.
9515
9516 2004-02-06 Andrew Cagney <cagney@redhat.com>
9517
9518 * tui/tui-source.h: Do not include "defs.h".
9519 (struct tui_win_info): Declare.
9520 (tui_set_source_content_nil): Declare.
9521 * tui/tui-data.h (struct tui_win_info): Rename _TuiWinInfo.
9522 (union tui_line_or_address): Rename _TuiLineOrAddress.
9523 * tui/tui-winsource.h: Update copyright. Include "tui-data.h".
9524 (tui_update_source_window): Rename tuiUpdateSourceWindow.
9525 (tui_update_source_window_as_is): Rename
9526 tuiUpdateSourceWindowAsIs.
9527 (tui_update_source_windows_with_addr): Rename
9528 tuiUpdateSourceWindowsWithAddr.
9529 (tui_update_source_windows_with_line): Rename
9530 tuiUpdateSourceWindowsWithLine.
9531 (tui_clear_source_content): Rename tuiClearSourceContent.
9532 (tui_erase_source_content): Rename tuiEraseSourceContent.
9533 (tui_set_source_content_nil): Rename tuiSetSourceContentNil.
9534 (tui_show_source_content): Rename tuiShowSourceContent.
9535 (tui_horizontal_source_scroll): Rename tuiHorizontalSourceScroll.
9536 (tui_set_exec_info_content): Rename tuiSetExecInfoContent.
9537 (tui_show_exec_info_content): Rename tuiShowExecInfoContent.
9538 (tui_erase_exec_info_content): Rename tuiEraseExecInfoContent.
9539 (tui_clear_exec_info_content): Rename tuiClearExecInfoContent.
9540 (tui_update_exec_info): Rename tuiUpdateExecInfo.
9541 (tui_set_is_exec_point_at): Rename tuiSetIsExecPointAt.
9542 (tui_alloc_source_buffer): Rename tuiAllocSourceBuffer.
9543 (tui_line_is_displayed): Rename tuiLineIsDisplayed.
9544 (tui_addr_is_displayed): Rename tuiAddrIsDisplayed.
9545 (struct tui_win_info): Declare.
9546 * tui/tui-stack.c: Update references.
9547 * tui/tui-layout.c, tui/tui-winsource.c: Ditto.
9548 * tui/tui-win.c, tui/tui-source.c: Ditto.
9549 * tui/tui.c, tui/tui-disasm.c: Ditto.
9550
9551 2004-02-06 Mark Kettenis <kettenis@gnu.org>
9552
9553 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Fix calculation
9554 of UCONTEXT_ADDR. Fixes PR backtrace/1545.
9555
9556 2004-02-05 Mark Kettenis <kettenis@gnu.org>
9557
9558 * infrun.c (handle_inferior_event): Allow for breakpoint
9559 instructions to generate a SIGSEGV in addition to SIGTRAP, SIGILL
9560 and SIGEMT. Update comments.
9561 * NEWS (Revised SPARC target): Mention support for non-executable
9562 stack.
9563
9564 2004-02-04 Mark Kettenis <kettenis@gnu.org>
9565
9566 * target.h (target_object): Add TARGET_OBJECT_WCOOKIE.
9567 * inftarg.c: Update copyright year.
9568 (child_xfer_partial): Add support for TARGET_OBJECT_WCOOKIE.
9569 * sparc-nat.c: Include "target.h" and "gdb_assert.h".
9570 (sparc_xfer_wcookie): New function.
9571 * sparc-tdep.c (sparc_fetch_wcookie): New function.
9572 * Makefile.in (sparc-nat.o): Update dependencies.
9573 * config/sparc/nm-nbsd.h: Include "target.h".
9574 (NATIVE_XFER_WCOOKIE): New define.
9575 (sparc_xfer_wcookie): New prototype.
9576
9577 2004-02-04 Andrew Cagney <cagney@redhat.com>
9578
9579 * m68k-tdep.c (m68k_saved_pc_after_call): Delete #ifdef
9580 SYSCALL_TRAP function.
9581 (m68k_gdbarch_init): Delete #ifdef SYSCALL_TRAP code.
9582
9583 2004-02-04 Andrew Cagney <cagney@redhat.com>
9584 Daniel Jacobowitz <drow@mvista.com>
9585
9586 * objfiles.h: Delete comments refering to inside_entry_func and
9587 DEPRECATED_FRAME_CHAIN_VALID.
9588 * defs.h (inside_entry_func): Update prototype..
9589 * blockframe.c (inside_entry_func): Rename to
9590 legacy_inside_entry_func. Add new inside_entry_func taking a frame.
9591 * frame.c (get_prev_frame): Pass the frame to inside_entry_func.
9592
9593 2004-02-03 Jeff Johnston <jjohnstn@redhat.com>
9594
9595 * breakpoint.c (struct captured_parse_breakpoint_args): Move
9596 outside of #ifdef SOLIB_ADD region.
9597 (do_restore_lang_radix_cleanup): Ditto.
9598 (resolve_pending_breakpoint): Ditto.
9599
9600 2004-02-03 Andrew Cagney <cagney@redhat.com>
9601
9602 * ia64-tdep.c (read_sigcontext_register): Delete unused function.
9603 (process_note_abi_tag_sections): Delete unused function.
9604 (ia64_read_fp): Delete unused function.
9605 (gdbarch_extract_struct_value_address): Delete declaration.
9606
9607 2004-02-02 Andrew Cagney <cagney@redhat.com>
9608
9609 * vax-tdep.c (vax_frame_chain): Delete call to
9610 deprecated_inside_entry_file.
9611 * ns32k-tdep.c (ns32k_frame_chain): Ditto.
9612
9613 2004-02-02 Mark Kettenis <kettenis@gnu.org>
9614
9615 * dwarf2-frame.c (dwarf2_frame_cache): Deal with a return address
9616 column that's "empty" or "same value" when eliminating REG_RA
9617 rules.
9618
9619 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
9620
9621 * NEWS: Add information about new pending breakpoint support.
9622
9623 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
9624
9625 * breakpoint.h (struct breakpoint): Add new flag, from_tty,
9626 and pending fields for pending breakpoint support.
9627 * breakpoint.c (breakpoint_enabled): Add check for not pending.
9628 (condition_command): Only parse condition if not a pending
9629 breakpoint.
9630 (print_one_breakpoint): Add support for pending breakpoints.
9631 (describe_other_breakpoints): Add checks to verify we are not
9632 dealing with pending breakpoints.
9633 (check_duplicates): Don't check pending breakpoints.
9634 (set_raw_breakpoint): Initialize pending flag.
9635 (do_restore_lang_radix_cleanup): New cleanup routine.
9636 (resolve_pending_breakpoint): New function.
9637 (re_enable_breakpoints_in_shlibs): Try and resolve any
9638 pending breakpoints via resolve_pending_breakpoint.
9639 (mention): Add pending breakpoint support.
9640 (parse_breakpoint_sals): Add new parameter to pass to
9641 decode_line_1 to indicate silent errors when files or functions
9642 are not found. Change all callers.
9643 (do_captured_parse_breakpoint): New function.
9644 (break_command_1): Change prototype to return an rc value and to
9645 take an optional pending breakpoint pointer. Support creating
9646 a pending breakpoint if a "not found" form of error occurs when
9647 parsing the breakpoint. Also support resolving an existing pending
9648 breakpoint and be silent if the resolution fails.
9649 (create_breakpoints): Change prototype to take pending breakpoint
9650 pointer. When resolving a pending breakpoint, use the new pointer
9651 to provide a conditional or commands added by the end-user.
9652 (delete_breakpoint): Add appropriate check for pending.
9653 (breakpoint_re_set_one): Ditto.
9654 (do_enable_breakpoint): Ditto.
9655
9656 2004-02-02 David Carlton <carlton@kealia.com>
9657
9658 * valops.c (enum oload_classification): New.
9659 (find_overload_match): Break implementation into separate
9660 functions; delete #if 0'd code; look for symbols within
9661 namespaces.
9662 (find_oload_champ_namespace,find_oload_champ_namespace_loop)
9663 (find_oload_champ,oload_method_static,classify_oload_match): New.
9664 * cp-support.h: Add declaration for cp_func_name; update
9665 declaration for make_symbol_overload_list.
9666 * cp-support.c (cp_func_name): New.
9667 (overload_list_add_symbol): Fix comment, use
9668 SYMBOL_LINKAGE_NAME and SYMBOL_NATURAL_NAME.
9669 (make_symbol_overload_list): Take a function name and a namespace
9670 instead of a symbol; change implementation.
9671 (make_symbol_overload_list_using): New.
9672 (make_symbol_overload_list_qualified, read_in_psymtabs): New.
9673
9674 2004-02-02 Fred Fish <fnf@redhat.com>
9675
9676 * main.c (gdb_stdtarg): Move definition to group with other
9677 gdb_stdtarg definitions and update copyright years.
9678 * remote-sim.c (gdb_os_write_stderr): Write output to
9679 gdb_stdtargerr stream instead of gdb_stdtarg stream.
9680 (gdb_os_flush_stderr): Flush gdb_stdtargerr steam instead of
9681 gdb_stderr stream and update copyright years.
9682
9683 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9684
9685 * Makefile.in (mips-linux-nat.o): Update dependencies.
9686 * mips-linux-nat.c: Include mips-tdep.h.
9687
9688 2004-02-01 Roland McGrath <roland@redhat.com>
9689
9690 * sol-thread.c (sol_thread_xfer_partial): New function.
9691 (init_sol_thread_ops): Use that for to_xfer_partial hook.
9692 (init_sol_core_ops): Likewise.
9693
9694 * procfs.c (procfs_xfer_partial): New function.
9695 (init_procfs_ops): Use that for procfs_ops.to_xfer_partial.
9696 * Makefile.in (procfs.o): Add $(auxv_h) dep.
9697
9698 * config/nm-linux.h (NATIVE_XFER_AUXV): New macro, uses auxv.c's
9699 procfs_xfer_auxv function.
9700
9701 * procfs.c (procfs_make_note_section): If we can read
9702 TARGET_OBJECT_AUXV data, add an NT_AUXV note containing it.
9703 * linux-proc.c (linux_make_note_section): Likewise.
9704
9705 * auxv.h: New file.
9706 * auxv.c: New file.
9707 * Makefile.in (auxv_h): New variable.
9708 (COMMON_OBS): Add auxv.o here.
9709 (auxv.o): New target.
9710
9711 * corelow.c (core_xfer_partial): New function.
9712 (init_core_ops): Use it for core_ops.to_xfer_partial.
9713
9714 * target.h (enum target_object): Add TARGET_OBJECT_AUXV.
9715 * inftarg.c (child_xfer_partial): Support it using NATIVE_XFER_AUXV
9716 macro if that is defined.
9717
9718 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9719
9720 * breakpoint.c (bpstat_stop_status): Take a ptid_t argument,
9721 and check the specified thread for each breakpoint.
9722 * breakpoint.h (bpstat_stop_status): Update prototype.
9723 * infrun.c (handle_inferior_event): Update calls to
9724 bpstat_stop_status.
9725
9726 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9727
9728 * Makefile.in (cli-cmds.o): Add $(readline_h).
9729
9730 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9731
9732 * cli/cli-cmds.c: Include readline.h.
9733 (complete_command): Pass the start of the last word to
9734 complete_line.
9735
9736 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9737
9738 * breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
9739 argument, and change first argument to a CORE_ADDR.
9740 * breakpoint.h (bpstat_stop_status): Update prototype.
9741 * infrun.c (adjust_pc_after_break): Add a new comment.
9742 (handle_inferior_event): Update calls to bpstat_stop_status.
9743
9744 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9745
9746 * breakpoint.h: Update copyright years.
9747
9748 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9749
9750 * breakpoint.c (software_breakpoint_inserted_here_p): New function.
9751 (bpstat_stop_status): Don't decrement PC.
9752 * breakpoint.h (software_breakpoint_inserted_here_p): Add
9753 prototype.
9754 * infrun.c (adjust_pc_after_break): New function.
9755 (handle_inferior_event): Call it, early. Remove later references
9756 to DECR_PC_AFTER_BREAK.
9757 (normal_stop): Add commentary.
9758
9759 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9760
9761 * breakpoint.c (breakpoint_re_set_one): Add missing chunk of
9762 2004-01-27 double-free fix.
9763
9764 2004-01-31 Mark Kettenis <kettenis@gnu.org>
9765
9766 * sparc-tdep.c (sparc_fetch_wcookie): New function.
9767 (sparc32_frame_prev_register): Handle StackGhost.
9768 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
9769
9770 2004-01-29 Roland McGrath <roland@redhat.com>
9771
9772 * configure.in (NEW_PROC_API): Also match solaris2.9 for this test.
9773 * configure: Regenerated.
9774
9775 * procfs.c: Include gdb_string.h for str* decls, otherwise warnings.
9776 * Makefile.in (procfs.o): Add dep.
9777
9778 2004-01-28 Andrew Cagney <cagney@redhat.com>
9779
9780 * tui/tui-stack.h: Update copyright.
9781 (struct frame_info): Add opaque declaration.
9782 (tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
9783 (tui_show_locator_content): Rename tuiShowLocatorContent.
9784 (tui_show_frame_info): Rename tuiShowFrameInfo.
9785 * tui/tui-stack.c: Update copyright. Update references.
9786 * tui/tui-winsource.c: Update references.
9787 * tui/tui-win.c: Update references.
9788 * tui/tui-layout.c: Update references.
9789 * tui/tui-hooks.c: Update copyright, update references.
9790 * tui/tui.c: Update copyright, update references.
9791 * tui/tui-disasm.c: Update references.
9792
9793 2004-01-28 David Carlton <carlton@kealia.com>
9794
9795 * dwarf2read.c (add_partial_structure): Use demangled name if
9796 namespace equals "".
9797
9798 2004-01-27 Jim Blandy <jimb@redhat.com>
9799
9800 Clean up misapplied patch:
9801 * dwarf2read.c (determine_prefix): Change one of the two forward
9802 declarations for 'determine_prefix_aux' to a declaration for this.
9803 (read_func_scope): Use cu->language, not cu_language. Pass 'cu'
9804 argument to 'die_specification'.
9805
9806 * dwarf2read.c (read_func_scope): Re-indent comment.
9807
9808 2004-01-27 Paul N. Hilfinger <hilfinger@gnat.com>
9809
9810 * breakpoint.c (breakpoint_re_set_one): Set b->cond, b->val, and
9811 b->exp to NULL after freeing so that error during re-parsing or
9812 evaluation of expressions associated with breakpoint don't
9813 eventually lead to re-freeing of storage.
9814 Committed by Andrew Cagney.
9815
9816 2004-01-27 Andrew Cagney <cagney@redhat.com>
9817
9818 * source.c (ambiguous_line_spec): Delete undefined declaration.
9819 * m32r-rom.c (m32r_set_board_address): Delete unused function.
9820 (m32r_set_server_address, m32r_set_download_path): Ditto.
9821 * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
9822
9823 2004-01-27 Daniel Jacobowitz <drow@mvista.com>
9824
9825 * dwarf2read.c: Update calls to changed and renamed functions, and
9826 references to moved variables.
9827
9828 (struct dwarf2_cu): Add first_fn, last_fn, cached_fn,
9829 language, language_defn, list_in_scope, and ftypes members.
9830 (cu_first_fn, cu_last_fn, cu_cached_fn, cu_language)
9831 (cu_language_defn, list_in_scope, ftypes, cu_header_offset)
9832 (baseaddr): Remove globals.
9833
9834 (dwarf_attr): Renamed to dwarf2_attr. Add CU argument.
9835 (set_cu_language, die_is_declaration, die_specification)
9836 (determine_prefix, determin_prefix_aux, class_name, namespace_name)
9837 (dwarf2_linkage_name, dwarf2_name, dwarf2_extension)
9838 (dwarf2_get_ref_die_offset, dwarf2_fundamental_type)
9839 (initialize_cu_func_list, add_to_cu_func_list): Add CU argument.
9840
9841 (dwarf2_build_psymtabs_hard): Add local baseaddr. Initialize
9842 cu.list_in_scope. Don't initialize cu_header_offset.
9843 (add_partial_symbol): Add local baseaddr.
9844 (psymtab_to_symtab_1): Add local baseaddr. Use
9845 objfile->section_offsets for consistency. Don't initialize
9846 cu_header_offset; do initialize cu.header.offset and
9847 cu.list_in_scope.
9848 (read_file_scope, read_func_scope, read_lexical_block_scope)
9849 (dwarf_decode_lines, new_symbol): Add local baseaddr.
9850
9851 2004-01-27 Michael Chastain <mec.gnu@mindspring.com>
9852
9853 * PROBLEMS: Add gdb/1516.
9854
9855 2003-12-29 Robert Millan <robertmh@gnu.org>
9856
9857 Patch committed by Andrw Cagney.
9858 * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
9859 * configure.tgt: Match knetbsd*-gnu.
9860
9861 2004-01-26 Andrew Cagney <cagney@redhat.com>
9862
9863 * breakpoint.c (catch_command_1): Delete #ifdef code.
9864 (catch_fork_command_1): Delete #ifdef wrapper.
9865 (catch_exec_command_1): Ditto.
9866 (catch_load_command_1): Ditto.
9867 (catch_unload_command_1): Ditto.
9868
9869 * breakpoint.c (watchpoint_check): Delete #if0ed variable.
9870 (catch_breakpoint): Delete #if0ed function.
9871 (disable_catch_breakpoint): Ditto.
9872 (delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
9873 (disable_catch, enable_catch, delete_catch): Ditto.
9874
9875 2004-01-26 Andrew Cagney <cagney@redhat.com>
9876
9877 * remote.c (echo_check, quit_flag): Delete variables.
9878 (cisco_kernel_mode): Delete variable.
9879 (minitelnet_return, tty_input, escape_count): Delete variables.
9880 (remote_cisco_mode): Delete variable.
9881 (remote_cisco_open, remote_cisco_close): Delete function.
9882 (remote_cisco_mourn, remote_cisco_wait): Delete function.
9883 (init_remote_cisco_ops): Delete function.
9884 (_initialize_remote): Do not install "remote cisco" code.
9885 (read_frame): Delete cisco specific code.
9886 (remote_info_process): Delete function.
9887 (remote_wait): Delete cisco specific code.
9888 (remote_cisco_section_offsets): Delete function.
9889 (remote_cisco_objfile_relocate): Delete function.
9890 (remote_async_wait): Delete cisco specific code.
9891 (minitelnet, readtty, readsocket): Delete function.
9892
9893 2004-01-26 Andrew Cagney <cagney@redhat.com>
9894
9895 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS): Deprecate. Add
9896 comments mentioning extract_returned_value_address.
9897 * infcmd.c (print_return_value): Update. Add comments on
9898 extract_returned_value_address.
9899 * stack.c (return_command): Add comments on
9900 extract_returned_value_address.
9901 * values.c: Update comment.
9902 * m32r-tdep.c: Update comment.
9903 * sparc-tdep.c: Update comment.
9904 * ia64-tdep.c (ia64_use_struct_convention): Update comment.
9905 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
9906 * sh64-tdep.c (sh64_gdbarch_init): Update.
9907 * sh-tdep.c (sh_gdbarch_init): Update.
9908 * s390-tdep.c (s390_gdbarch_init): Update.
9909 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
9910 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
9911 * m68k-tdep.c (m68k_gdbarch_init): Update.
9912 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
9913 * m32r-tdep.c (m32r_gdbarch_init): Update.
9914 * ia64-tdep.c (ia64_gdbarch_init): Update.
9915 * h8300-tdep.c (h8300_gdbarch_init): Update.
9916 * frv-tdep.c (frv_gdbarch_init): Update.
9917 * arm-tdep.c (arm_gdbarch_init): Update.
9918 * alpha-tdep.c (alpha_gdbarch_init): Update.
9919
9920 2004-01-26 Andrew Cagney <cagney@redhat.com>
9921
9922 * dwarf2loc.c (dwarf_expr_frame_base): Use SYMBOL_OPS instead of
9923 SYMBOL_LOCATION_FUNCS
9924 (dwarf2_loclist_funcs, dwarf2_locexpr_funcs): Change type to
9925 "struct symbol_ops".
9926 * dwarf2loc.h (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Change
9927 type to "struct symbol_ops".
9928 * symtab.h (struct symbol_ops): Rename "struct location_funcs".
9929 (struct symbol): Replace ".aux_value.loc.funcs" and
9930 ".aux_value.loc.baton" with ".ops" and ".aux_value.ptr".
9931 (SYMBOL_OBJFILE): Delete macro.
9932 (SYMBOL_LOCATION_FUNCS): Delete macro.
9933 (SYMBOL_LOCATION_BATON): Update.
9934 * dwarf2read.c (dwarf2_symbol_mark_computed): Set SYMBOL_OPS
9935 intead of SYMBOL_LOCATION_FUNCS.
9936 * ax-gdb.c (gen_var_ref): Ditto.
9937 * printcmd.c (address_info): Ditto.
9938 * findvar.c (read_var_value): Ditto.
9939 (symbol_read_needs_frame): Ditto.
9940
9941 2004-01-26 Andrew Cagney <cagney@redhat.com>
9942
9943 * dwarf2read.c (read_func_scope): Document frame-base hack.
9944
9945 2004-01-25 Mark Kettenis <kettenis@gnu.org>
9946
9947 * infcmd.c (print_return_value): Plug memory leak; delete
9948 ui_stream object. Rename argument `structure_return' to
9949 `struct_return'.
9950
9951 2004-01-25 Mark Kettenis <kettenis@gnu.org>
9952
9953 * infcmd.c (print_return_value): Wrap long lines.
9954 (finish_command_continuation, finish_command): Remove unused
9955 variable `funcaddr'. Fix some coding-standards problems.
9956
9957 * sparc-tdep.c (sparc_regset_from_core_section): Check whether
9958 SECT_SIZE is large enough, not whether it's exactly the right size.
9959 (sparc32_gdbarch_init): Initialize TDEP->sizeof_gregset and
9960 TDEP->fpregset to zero.
9961
9962 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Also supply the
9963 floating-point registers for traditional NetBSD core files.
9964 (sparc32nbsd_init_abi): Initialize TDEP->sizeof_gregset and
9965 TDEP->sizeof_fpregset here.
9966
9967 2004-01-25 Mark Kettenis <kettenis@gnu.org>
9968
9969 * sparc-tdep.h (sparc32nbsd_sigcontext_saved_regs): New prototype.
9970 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): New
9971 function with code split out from
9972 sparc32nbsd_sigcontext_frame_cache.
9973 (sparc32nbsd_sigcontext_frame_cache): Use
9974 sparc32nbsd_sigcontext_saved_regs.
9975 (_initialize_sparc32nbsd_tdep): Don't register OS ABI handler for
9976 OpenBSD.
9977 * sparcobsd-tdep.c: New file.
9978 * Makefile.in (ALLDEPFILES): Add sparcobsd-tdep.c.
9979 (sparcobsd-tdep.o): New dependency.
9980 * configure.tgt (sparc-*-openbsd*): Set gdb_target to obsd.
9981 * config/sparc/obsd.mt: New file.
9982
9983 * sparc-tdep.c (sparc32_gdbarch_init): Don't require
9984 TDEP->fpregset to be initialized to enable core file register
9985 sets.
9986
9987 2004-01-24 Mark Kettenis <kettenis@gnu.org>
9988
9989 * sparc64-tdep.h (struct frame_info, struct trad_frame_saved_reg):
9990 Add opaque declarations.
9991 (sparc64nbsd_sigcontext_saved_regs): New prototype.
9992 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): New
9993 function with code split out from
9994 sparc64nbsd_sigcontext_frame_cache.
9995 (sparc64nbsd_sigcontext_frame_cache): Use
9996 sparc64nbsd_sigcontext_saved_regs.
9997 (_initialize_sparc64nbsd_tdep): Don't register OS ABI handler for
9998 OpenBSD.
9999 * sparc64obsd-tdep.c: New file.
10000 * Makefile.in (ALLDEPFILES): Add sparc64obsd-tdep.c.
10001 (sparc64obsd-tdep.o): New dependency.
10002 * configure.tgt (sparc64-*-openbsd*): Set gdb_target to obsd64 and
10003 gdb_osabi to GDB_OSABI_OPENBSD_ELF.
10004 * config/sparc/obsd64.mt: New file.
10005
10006 * sparc-tdep.c (sparc_fetch_instruction): Return zero if we can't
10007 read the instruction at PC.
10008
10009 * sparcnbsd-tdep.c (GDB_OSABI_NETBSD_CORE): Define, based on the
10010 value of GDB_OSABI_DEFAULT.
10011 (sparcnbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_CORE
10012 instead of GDB_OSABI_NETBSD_AOUT.
10013
10014 2004-01-24 Nick Roberts <nick@nick.uklinux.net>
10015
10016 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-cmds.h: Update
10017 copyright.
10018
10019 2004-01-23 Andrew Cagney <cagney@redhat.com>
10020
10021 * printcmd.c (display_command): Replace tui_set_display call with
10022 tui_set_layout_for_display_command.
10023 * tui/tui.h (enum tui_win_type): Define.
10024 (tui_set_layout): Delete declaration.
10025 (tui_set_layout_for_display_command): Rename set_tui_layout.
10026 * tui/tui-data.h (enum tui_layout_type): Define.
10027 * tui/tui-layout.h: Update copyright. Include "tui-data.h" and
10028 "tui.h".
10029 (tui_add_win_to_layout): Rename tuiAddWinToLayout.
10030 (tui_default_win_height): Rename tuiDefaultWinHeight.
10031 (tui_default_win_viewport_height): Rename
10032 tuiDefaultWinViewportHeight.
10033 (tui_set_layout): RenametuiSetLayout.
10034 * tui/tui-layout.c: Update references.
10035 * tui/tui.c: Update references.
10036 * tui/tui-disasm.c: Update references.
10037
10038 2004-01-23 David Carlton <carlton@kealia.com>
10039
10040 Partial workaround for PR c++/1511:
10041 * cp-namespace.c: Include frame.h.
10042 (cp_lookup_transparent_type): New
10043 (cp_lookup_transparent_type_loop): New.
10044 * cp-support.h: Declare cp_lookup_transparent_type.
10045 * symtab.c (basic_lookup_transparent_type): Renamed from
10046 lookup_transparent_type.
10047 (lookup_transparent_type): Replace old body by a call to
10048 current_language->la_lookup_transparent_type.
10049 * symtab.h: Update copyright. Declare
10050 basic_lookup_transparent_type.
10051 * language.h: Update copyright.
10052 (struct language_defn): Add la_lookup_transparent_type.
10053 * language.c: Update copyright.
10054 (unknown_language_defn): Add basic_lookup_transparent_type.
10055 (auto_language_defn): Add basic_lookup_transparent_type.
10056 (local_language_defn): Add basic_lookup_transparent_type.
10057 * ada-lang.c: Update copyright.
10058 (ada_language_defn): Add basic_lookup_transparent_type.
10059 * c-lang.c: Update copyright.
10060 (c_language_defn): Add basic_lookup_transparent_type.
10061 (cplus_language_defn): Add basic_lookup_transparent_type.
10062 (asm_language_defn): Add basic_lookup_transparent_type.
10063 (minimal_language_defn): Add basic_lookup_transparent_type.
10064 * f-lang.c: Update copyright.
10065 (f_language_defn): Add basic_lookup_transparent_type.
10066 * jv-lang.c: Update copyright.
10067 (java_language_defn): Add basic_lookup_transparent_type.
10068 * m2-lang.c: Update copyright.
10069 (m2_language_defn): Add basic_lookup_transparent_type.
10070 * objc-lang.c: Update copyright.
10071 (objc_language_defn): Add basic_lookup_transparent_type.
10072 * p-lang.c: Update copyright.
10073 (p_language_defn): Add basic_lookup_transparent_type.
10074 * scm-lang.c: Update copyright.
10075 (scm_language_defn): Add basic_lookup_transparent_type.
10076 * Makefile.in (cp-namespace.o): Depend on frame.h.
10077
10078 2004-01-23 David Carlton <carlton@kealia.com>
10079
10080 Patch for PR c++/1520:
10081 * dwarf2read.c (read_func_scope): Set processing_current_prefix
10082 properly if we have a specification die.
10083 (determine_prefix_aux): Rename from determine_prefix.
10084 (determine_prefix): Like the old determine_prefix, but never
10085 returns NULL.
10086
10087 2004-01-23 Theodore A. Roth <troth@openavr.org>
10088
10089 * avr-tdep.c: Update copyright.
10090 (avr_iaddr_p): Delete unused function.
10091 (avr_saddr_p): Delete unused function.
10092
10093 2004-01-23 David Carlton <carlton@kealia.com>
10094
10095 * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
10096 Fix for PR symtab/1534.
10097
10098 2004-01-23 Mark Kettenis <kettenis@gnu.org>
10099
10100 * NEWS (New native configurations): Mention OpenBSD/sparc and
10101 OpenBSD/sparc64.
10102 * configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*.
10103 * configure.host: Likewise.
10104 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI
10105 handler for OpenBSD.
10106 * sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
10107
10108 2004-01-22 Mark Kettenis <kettenis@gnu.org>
10109
10110 * sparcnbsd-tdep.c (sparcnbsd_core_osabi_sniffer): New function.
10111 (_initialize_sparnbsd_tdep): Register sparcnbsd_core_osabi_sniffer.
10112
10113 * ser-pipe.c (pipe_open): Use proper null pointer in execl call.
10114 * cli/cli-cmds.c (shell_escape): Likewise.
10115
10116 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Recognize
10117 OpenBSD .note.openbsd.ident sections.
10118
10119 2004-01-22 David Carlton <carlton@kealia.com>
10120
10121 * dwarf2read.c (psymtab_to_symtab_1): Calculate lowpc, highpc via
10122 get_scope_pc_bounds.
10123 (read_file_scope): Ditto.
10124 (get_scope_pc_bounds): New function, produced by extracting code
10125 from the above two functions, consolidating it, and adding support
10126 for DW_TAG_namespace.
10127
10128 2004-01-22 Mark Kettenis <kettenis@gnu.org>
10129
10130 * osabi.c (MAX_NOTESZ): New define.
10131 (check_note): New function.
10132 (generic_elf_osabi_sniff_abi_tag_sections): Reorganize code using
10133 check_note.
10134
10135 2004-01-21 Roland McGrath <roland@redhat.com>
10136
10137 * MAINTAINERS (write after approval): Add myself.
10138
10139 2004-01-21 Eli Zaretskii <eliz@gnu.org>
10140
10141 * utils.c (init_page_info): Move declarations of `rows' and
10142 `cols' before the __GO32__-specific code. Move the closing brace
10143 outside the #ifdef __GO32__..#endif block.
10144 [__GO32__]: Use `rows' and `cols' to avoid compiler warnings.
10145
10146 2004-01-21 Paul Brook <paul@codesourcery.com>
10147
10148 * infrun.c (handle_inferior_event): Check stop_stack_dummy if handling
10149 BPSTAT_WHAT_CHECK_SHLIBS.
10150
10151 2004-01-21 Paul Brook <paul@codesourcery.com>
10152
10153 * MAINTAINERS: Add myself to write-after-approval.
10154
10155 2004-01-20 Andrew Cagney <cagney@redhat.com>
10156
10157 * ax-gdb.c (print_axs_value): Delete unused function.
10158 * jv-lang.c (java_lookup_type): Delete unused function.
10159 * cli/cli-dump.c (dump_filetype): Delete unused function.
10160 * remote-mips.c (remote_mips_insert_hw_breakpoint)
10161 (remote_mips_remove_hw_breakpoint): Delete unused functions.
10162 (mips_getstring): Delete unused function.
10163 (pmon_insert_breakpoint): Delete #if0ed function.
10164 (PMON_MAX_BP): Delete #if0ed MACRO.
10165 (mips_pmon_bp_info): Delete #if0ed variable.
10166 (pmon_remove_breakpoint): Delete #if0ed function.
10167 * monitor.c (monitor_write_even_block): Delete unused function.
10168 (monitor_write_memory_block): Delete #if0ed code.
10169 * dink32-rom.c (dink32_load): Delete unused function.
10170 (_initialize_dink32_rom): Delete #if0ed code.
10171 * d10v-tdep.c (d10v_daddr_p): Delete unused function.
10172
10173 * tui/tui-command.c: Update references.
10174 * tui/tui-io.c: Update references.
10175 * tui/tui-command.h: Update copyright.
10176 (tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.
10177
10178 * source.c (ambiguous_line_spec): Delete never-defined function.
10179 * remote-rdi.c (arm_rdi_mourn, arm_rdi_send): Ditto.
10180 * gdbtypes.c (add_name, add_mangled_type): Ditto.
10181 * cli/cli-cmds.c (validate_comname): Ditto.
10182
10183 * tui/tui-disasm.h: Update copyright. Include "tui.h" and
10184 "tui-data.h".
10185 (tui_set_disassem_content): Rename tuiSetDisassemContent.
10186 (tui_show_disassem): Rename tuiShowDisassem.
10187 (tui_show_disassem_and_update_source): Rename
10188 tuiVerticalDisassemScroll.
10189 (tui_vertical_disassem_scroll): Rename tuiVerticalDisassemScroll.
10190 (tui_get_begin_asm_address): Rename tuiGetBeginAsmAddress.
10191 * tui/tui.h: Update copyright.
10192 (enum tui_status): Define.
10193 * tui/tui-data.h (enum tui_scroll_direction): Define.
10194 * tui/tui-disasm.c: Update copyright. Update references.
10195 * tui/tui-winsource.c: Update copyright. Update references.
10196 * tui/tui-win.c: Update references.
10197 * tui/tui-layout.c: Update references.
10198
10199 2004-01-20 Andrew Cagney <cagney@redhat.com>
10200
10201 * mi/mi-cmd-stack.c (list_args_or_locals): Move declaration of
10202 sym2 to start of block.
10203
10204 2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
10205
10206 * MAINTAINERS: Delete mmalloc.
10207 * Makefile.in: Delete MMALLOC, MMALLOC_CFLAGS, -lmmalloc, mmalloc_h.
10208 * NEWS: Mention removal of --with-malloc.
10209 * acconfig.h: Delete USE_MMALLOC, MMCHECK_FORCE.
10210 * config.in: Regenerate.
10211 * configure: Regenerate.
10212 * configure.in: Delete MMALLOC_CFLAGS, MMALLOC, --with-mmalloc,
10213 USE_MMALLOC, MMCHECK_FORCE.
10214 * gdbinit.in: Remove mmalloc.
10215 * utils.c: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE, malloc_botch.
10216 * config/alpha/alpha-linux.mh: Delete MMALLOC, MMALLOC_CFLAGS.
10217 * config/i386/go32.mh: Likewise.
10218 * config/i386/interix.mh: Likewise.
10219 * config/powerpc/xm-linux.h: Delete MMAP_BASE_ADDRESS, MMAP_INCREMENT.
10220
10221 2004-01-19 Jeff Johnston <jjohnstn@redhat.com>
10222
10223 * linespec.c (decode_variable, symtab_from_filename): Call
10224 error_silent with error message instead of throwing an exception
10225 directly.
10226 * defs.h (error_silent, error_output_message): Add prototypes.
10227 (catch_exceptions_with_msg): Ditto.
10228 * utils.c (error_silent, error_output_message): New functions.
10229 * top.c (catch_exceptions_with_msg): New function.
10230
10231 2004-01-20 Nick Roberts <nick@nick.uklinux.net>
10232
10233 * mi/mi-cmds.h (enum print_values): Add definition.
10234
10235 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Print the name,
10236 type and value for simple data types and just the name and type
10237 for complex ones, if required.
10238
10239 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Print the values of the
10240 children, if required.
10241
10242 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10243
10244 * frv-tdep.c (frv_push_arguments, frv_saved_pc_after_call): Delete
10245 unused declarations.
10246
10247 2004-01-19 Andrew Cagney <cagney@redhat.com>
10248
10249 * top.h (mapped_symbol_files): Delete declaration.
10250 * main.c (captured_main): Delete option "m" and "mapped".
10251 * objfiles.c (mapped_symbol_files): Delete variable.
10252 * symfile.c (symbol_file_command): Delete mmap code.
10253 (symbol_file_add_with_addrs_or_offsets): Ditto.
10254 (add_symbol_file_command, reread_separate_symbols): Ditto.
10255 * objfiles.h (OBJF_MAPPED): Delete.
10256 * objfiles.c (allocate_objfile) [USE_MMALLOC]: Delete.
10257 (free_objfile) [USE_MMALLOC]: Ditto.
10258 (open_existing_mapped_file): Delete function.
10259 (open_mapped_file): Delete function.
10260 (map_to_file): Delete function.
10261
10262 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10263
10264 * infrun.c (step_into_function): Account for possible breakpoint
10265 adjustment when computing ``stop_func_start''.
10266
10267 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10268
10269 * target.c (default_region_size_ok_for_hw_watchpoint): Compare
10270 the region size against the size of a pointer, not the size of
10271 a register as given by DEPRECATED_REGISTER_SIZE.
10272
10273 2004-01-19 Andrew Cagney <cagney@redhat.com>
10274
10275 * tui/tui-regs.h: Include "tui-data.h".
10276 (tuiFirstRegElementNoInLine): Delete declaration.
10277 (tui_display_registers_from): Rename tuiDisplayRegistersFrom.
10278 (tui_last_regs_line_no): Rename tuiLastRegsLineNo.
10279 (tui_line_from_reg_element_no): Rename tuiLineFromRegElementNo.
10280 (tui_calculate_regs_column_count): Rename
10281 tuiCalculateRegsColumnCount.
10282 (tui_check_register_values): Rename tuiCheckRegisterValues.
10283 (tui_show_registers): Rename tuiShowRegisters.
10284 (tui_display_registers_from_line): Rename
10285 tuiDisplayRegistersFromLine.
10286 (tui_first_reg_element_inline): Rename tuiFirstRegElementInLine.
10287 (tui_toggle_float_regs): Rename tuiToggleFloatRegs.
10288 (tui_first_reg_element_no_inline): Rename
10289 tuiFirstRegElementNoInLine.
10290 * tui/tui-data.h: Update copyright.
10291 (enum tui_register_display_type): Rename _TuiRegisterDisplayType.
10292 * tui/tui-windata.c: Update copyright, update references.
10293 * tui/tui-regs.c: Update copyright, update references.
10294 * tui/tui-win.c: Update copyright, update references.
10295 * tui/tui-layout.c: Update copyright, update references.
10296
10297 2004-01-18 Andrew Cagney <cagney@redhat.com>
10298
10299 * tui/tui-io.c: Update copyright.
10300 (key_is_end_sequence, key_is_backspace): New functions.
10301 (key_is_command_char, key_is_start_sequence): New function.
10302 (tui_getc): Update references.
10303 * tui/tui-io.h: Update copyright.
10304 (m_tuiStartNewLine): Delete macro.
10305 (m_isBackspace, m_isDeleteChar): Delete macros.
10306 (m_isDeleteLine, m_isDeleteToEol): Delete macros.
10307 (m_isNextPage, m_isPrevPage): Delete macros.
10308 (m_isLeftArrow, m_isRightArrow): Delete macros.
10309 (m_isXdbStyleCommandChar): Delete macro.
10310 (key_is_start_sequence): Declare, replace m_isStartSequence.
10311 (key_is_end_sequence): Declare, replace m_isEndSequence.
10312 (key_is_backspace): Declare ,replace m_isBackspace.
10313 (key_is_command_char): Declare, replace m_isCommandChar.
10314 * tui/tui-command.c: Update copyright.
10315 (tuiDispatchCtrlChar): Update references.
10316
10317 * config/djgpp/fnchange.lst: Delete tui/tuiSourceWin.c and
10318 tuiSourceWin.h.
10319
10320 * tui/tui-command.c: Rename tui/tuiCommand.c.
10321 * tui/tui-command.h: Rename tui/tuiCommand.h.
10322 * tui/tui-data.c: Rename tui/tuiData.c.
10323 * tui/tui-data.h: Rename tui/tuiData.h.
10324 * tui/tui-disasm.c: Rename tui/tuiDisassem.c.
10325 * tui/tui-disasm.h: Rename tui/tuiDisassem.h.
10326 * tui/tui-io.c: Rename tui/tuiIO.c.
10327 * tui/tui-io.h: Rename tui/tuiIO.h.
10328 * tui/tui-layout.c: Rename tui/tuiLayout.c.
10329 * tui/tui-layout.h: Rename tui/tuiLayout.h.
10330 * tui/tui-regs.c: Rename tui/tuiRegs.c.
10331 * tui/tui-regs.h: Rename tui/tuiRegs.h.
10332 * tui/tui-source.c: Rename tui/tuiSource.c.
10333 * tui/tui-source.h: Rename tui/tuiSource.h.
10334 * tui/tui-stack.c: Rename tui/tuiStack.c.
10335 * tui/tui-stack.h: Rename tui/tuiStack.h.
10336 * tui/tui-win.c: Rename tui/tuiWin.c.
10337 * tui/tui-win.h: Rename tui/tuiWin.h.
10338 * tui/tui-windata.c: Rename tui/tuiDataWin.c.
10339 * tui/tui-windata.h: Rename tui/tuiDataWin.h.
10340 * tui/tui-wingeneral.c: Rename tui/tuiGeneralWin.c.
10341 * tui/tui-wingeneral.h: Rename tui/tuiGeneralWin.h.
10342 * tui/tui-winsource.c: Rename tui/tuiSourceWin.c.
10343 * tui/tui-winsource.h: Rename tui/tuiSourceWin.h.
10344 * tui/tui-file.c: Update includes.
10345 * tui/tui-hooks.c: Update includes.
10346 * tui/tui-interp.c: Update includes.
10347 * tui/tui.c: Update includes.
10348 * Makefile.in: Update all tui/ dependencies.
10349 (SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS): Update file names.
10350
10351 * Makefile.in: Update copyright. Update dependencies.
10352
10353 * tui/tuiSourceWin.c (tui_update_breakpoint_info): Fix compile
10354 problem.
10355
10356 2004-01-18 Andrew Cagney <cagney@redhat.com>
10357
10358 * mn10300-tdep.c (_initialize_mn10300_tdep): Call gdbarch_register
10359 instead of register_gdbarch_init.
10360
10361 * remote-sds.c (tohex): Delete unused function. Update copyright.
10362 * xstormy16-tdep.c (xstormy16_register_virtual_size): Ditto.
10363 * v850-tdep.c (v850_register_virtual_size): Ditto.
10364 * target.c (normal_target_post_startup_inferior): Ditto.
10365 * source.c (ambiguous_line_spec): Ditto.
10366 * remote.c (adapt_remote_get_threadinfo): Ditto.
10367 * mi/mi-out.c (out_field_fmt): Ditto.
10368 * mi/mi-interp.c (mi_interp_read_one_line_hook): Ditto.
10369 (output_control_change_notification): Ditto.
10370 * m68k-tdep.c (m68k_register_byte): Ditto.
10371 (m68k_remote_breakpoint_from_pc): Ditto.
10372 * ui-out.c (init_ui_out_state): Delete unused declaration.
10373 * stabsread.c (search_value): Ditto.
10374 * mi/mi-cmd-env.c (env_cli_command): Ditto.
10375 * maint.c (print_section_table): Ditto.
10376 * infrun.c (set_follow_fork_mode_command): Ditto.
10377
10378 2004-01-18 Mark Kettenis <kettenis@gnu.org>
10379
10380 * dwarf2-frame.c (execute_cfa_program): Move DWA_CFA_nop before
10381 DW_CFA_def_cfa_exporession. Add support for
10382 DW_CFA_offset_extendend_sf, DW_CFA_def_cfa_sf and
10383 DW_CFA_def_cfa_offset_sf. This should fix PR backtrace/1391.
10384
10385 2004-01-18 Andrew Cagney <cagney@redhat.com>
10386
10387 * ocd.c: Update copyright.
10388 (bdm_read_register_command): Delete unused function.
10389 (_initialize_remote_ocd): Delete commented out reference.
10390 (get_quoted_char, reset_packet): Delete #if0ed function.
10391 (output_packet, put_quoted_char): Delete #if0ed function.
10392 (stu_put_packet, stu_get_packet): Delete #if0ed function.
10393 (ocd_start_remote): Delete #if0ed code, remove #if1 wrapper.
10394 (BDM_BREAKPOINT): Delete #if0ed macro.
10395 (remote_timeout): Delete #if0ed variable.
10396
10397 2004-01-18 Mark Kettenis <kettenis@gnu.org>
10398
10399 * Makefile.in (ALLDEPFILES): Remove core-sol2.c.
10400 (core-sol2.o): Remove dependency.
10401 * core-sol2.c: Remove file.
10402
10403 2004-01-17 Andrew Cagney <cagney@redhat.com>
10404
10405 * mdebugread.c (compare_blocks): Make addr_diff a LONGEST.
10406 * block.h: Make GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOOCK
10407 enums.
10408
10409 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10410
10411 * remote.c: Update copyright years.
10412
10413 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10414
10415 * remote.c (remote_vcont_resume): Use xstrprintf instead of sprintf.
10416
10417 2004-01-17 Andrew Cagney <cagney@redhat.com>
10418
10419 * mdebugread.c: Update copyright.
10420 (parse_symbol): Replace DEPRECATED_STREQ with strcmp.
10421 (parse_type, parse_procedure): Ditto.
10422 (parse_partial_symbols, psymtab_to_symtab_1): Ditto.
10423
10424 * cris-tdep.c (cris_store_struct_return): Put back accidently
10425 deleted function.
10426
10427 * gdbarch.sh: Update copyright year.
10428 * gdbarch.h, gdbarch.c: Re-generate.
10429
10430 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10431
10432 Suggested by George Anzinger.
10433 * dwarf2expr.c (execute_stack_op): Fetch the second item from the
10434 correct stack offset. Include unknown opcode numbers in the error
10435 message.
10436
10437 2004-01-17 Andrew Cagney <cagney@redhat.com>
10438
10439 * x86-64-tdep.c (x86_64_init_abi): No need to clear
10440 extract_struct_value_address, i386 does not set it.
10441 * sparc64-tdep.c (sparc64_init_abi): Do not set
10442 extract_struct_value_address, never called.
10443 (sparc64_extract_struct_value_address): Delete function.
10444 * m68hc11-tdep.c: Update copyright.
10445 (m68hc11_gdbarch_init): Delete redundant assignment of
10446 extract_struct_value_address.
10447 * i386-tdep.c: Update copyright.
10448 (i386_gdbarch_init): Do not set extract_struct_value_address,
10449 never called.
10450 (i386_extract_struct_value_address): Delete function.
10451 * sparc-tdep.c (sparc32_gdbarch_init): Do not set
10452 extract_struct_value_address, never called.
10453 (sparc32_extract_struct_value_address): #if 0 function. Add
10454 comments explaining its future.
10455
10456 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10457
10458 * arm-tdep.c (arm_write_pc): New function.
10459 (arm_gdbarch_init): Call set_gdbarch_write_pc.
10460
10461 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10462
10463 * breakpoint.c (must_shift_inst_regs): Delete.
10464 (bpstat_stop_status): Delete references to DECR_PC_AFTER_HW_BREAK
10465 and SHIFT_INST_REGS.
10466 * infcmd.c (step_1, step_1_continuation): Delete references to
10467 SHIFT_INST_REGS.
10468 * infrun.c (keep_going): Likewise.
10469 * target.h (DECR_PC_AFTER_HW_BREAK): Don't define.
10470 * config/i386/nm-i386.h (DECR_PC_AFTER_HW_BREAK): Likewise.
10471
10472 2004-01-17 Andrew Cagney <cagney@redhat.com>
10473
10474 * gdbarch.sh (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
10475 * gdbarch.h, gdbarch.c: Re-generate.
10476 * infcmd.c (print_return_value): Delete reference to
10477 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
10478
10479 * cris-tdep.c (cris_gdbarch_init): Do not set
10480 deprecated_extract_struct_value_address.
10481
10482 * xstormy16-tdep.c: Update copyright.
10483 (xstormy16_extract_struct_value_address): Update to current
10484 extract struct value address interface.
10485 (xstormy16_gdbarch_init): Set extract_struct_value_address.
10486 * sh64-tdep.c (sh64_extract_struct_value_address): Update to
10487 current extract struct value address interface.
10488 (sh64_gdbarch_init): Set extract_struct_value_address.
10489
10490 * cris-tdep.c: Update copyright.
10491 (cris_extract_struct_value_address): Delete function.
10492 (struct_return_address): Delete variable.
10493 (cris_store_struct_return): Do not set struct_return_address.
10494
10495 * mcore-tdep.c: Update copyright.
10496 (mcore_extract_struct_value_address): Delete function. Update
10497 comments.
10498 (mcore_gdbarch_init): Update.
10499 * mn10300-tdep.c: Update copyright.
10500 (mn10300_extract_struct_value_address): Delete function.
10501 (mn10300_gdbarch_init): Update.
10502 * v850-tdep.c: Update copyright.
10503 (v850_extract_struct_value_address): Delete.
10504 (v850_gdbarch_init): Update.
10505 * ns32k-tdep.c: Update copyright.
10506 (ns32k_extract_struct_value_address): Delete.
10507 (ns32k_gdbarch_init): Update.
10508 * hppa-tdep.c (hppa_extract_struct_value_address): Delete.
10509 (hppa_gdbarch_init): Update.
10510 * vax-tdep.c: Update copyright.
10511 (vax_extract_struct_value_address): Delete.
10512 (vax_gdbarch_init): Update.
10513
10514 * gdbarch.sh (DEPRECATED_NPC_REGNUM): Delete.
10515 * gdbarch.h, gdbarch.c: Re-generate.
10516 * procfs.c (procfs_fetch_registers): Delete reference to
10517 DEPRECATED_NPC_REGNUM.
10518 (procfs_store_registers): Ditto.
10519 * regcache.c (generic_target_write_pc): Simplify.
10520 * lynx-nat.c: Delete #ifdef SPARC code. Not used.
10521
10522 * core-sol2.c (fetch_core_registers): Replace
10523 DEPRECATED_NPC_REGNUM with equivalent tdep value.
10524
10525 * hppa-tdep.c: Update copyright year.
10526 (hppa_target_write_pc): Use PCOQ_TAIL_REGNUM instead of
10527 NPC_REGNUM.
10528 (hppa_gdbarch_init): Do not set deprecated_npc_regnum.
10529
10530 * mips-tdep.c (mips_write_pc): New function.
10531 (mips_gdbarch_init): Set "write_pc" to "mips_write_pc".
10532 (mips_read_pc): Use mips_regnum instead of PC_REGNUM.
10533 (mips_find_saved_regs, mips_software_single_step: Ditto.
10534 (mips_frame_saved_pc, mips_frame_saved_pc): Ditto.
10535 mips_init_extra_frame_info, mips_pop_frame): Ditto.
10536
10537 2004-01-17 Andrew Cagney <cagney@redhat.com>
10538
10539 * mips-tdep.c: Re-indent. Group functions by ABI.
10540
10541 2004-01-17 Andrew Cagney <cagney@redhat.com>
10542
10543 * gdbarch.sh (DECR_PC_AFTER_BREAK): Make zero the default.
10544 * gdbarch.c: Re-generate.
10545 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
10546 DECR_PC_AFTER_BREAK to zero.
10547 * vax-tdep.c (vax_gdbarch_init): Ditto.
10548 * v850-tdep.c (v850_gdbarch_init): Ditto.
10549 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
10550 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
10551 * sh-tdep.c (sh_gdbarch_init): Ditto.
10552 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
10553 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
10554 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
10555 * mips-tdep.c (mips_gdbarch_init): Ditto.
10556 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
10557 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10558 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
10559 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
10560 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
10561 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
10562 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
10563 * frv-tdep.c (frv_gdbarch_init): Ditto.
10564 * cris-tdep.c (cris_gdbarch_init): Ditto.
10565 * avr-tdep.c (avr_gdbarch_init): Ditto.
10566 * arm-tdep.c (arm_gdbarch_init): Ditto.
10567 * i386-nto-tdep.c (i386nto_init_abi): Add comment.
10568
10569 2004-01-17 J. Brobecker <brobecker@gnat.com>
10570
10571 * dwarf2read.c (dwarf2_non_const_array_bound_ignored_complaint):
10572 Delete, no longer used.
10573 (read_subrange_type): New function, mostly extracted from
10574 read_array_type().
10575 (read_array_type): Replace extracted code by call to
10576 read_subrange_type().
10577 (dwarf2_get_attr_constant_value): New function.
10578 (scan_partial_symbols): Add handling for DW_TAG_subrange_type.
10579 (add_partial_symbol): Likewise.
10580 (process_die): Likewise.
10581 (new_symbol): Likewise.
10582 (read_type_die): Likewise.
10583
10584 2004-01-16 Andrew Cagney <cagney@redhat.com>
10585
10586 * symfile.c: Update copyright year.
10587 (compare_symbols): Delete unused function.
10588 * stabsread.c: Update copyright year.
10589 (lrs_general_complaint): Delete unused function.
10590 (ref_search_value): Ditto.
10591 (get_substring): Delete declaration.
10592 * sh64-tdep.c: Update copyright year.
10593 (sh64_get_gdb_regnum): Delete unused function.
10594 * dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint):
10595 Delete unused function.
10596
10597 2004-01-17 Mark Kettenis <kettenis@gnu.org>
10598
10599 * defs.h (gdb_osabi): Add GDB_OSABI_OPENBSD_ELF.
10600 * osabi.c (gdb_osabi_names): Add "OpenBSD ELF".
10601
10602 2004-01-16 Andrew Cagney <cagney@redhat.com>
10603
10604 Changes from Peter Schauer.
10605 * rs6000-tdep.c: Update copyright year.
10606 (rs6000_push_dummy_call): Update the stack pointer before
10607 accessing the corresponding stack region.
10608 * rs6000-nat.c: Update copyright year.
10609 (set_host_arch): Set "info.abfd" to "exec_bfd".
10610
10611 2004-01-15 Mark Kettenis <kettenis@gnu.org>
10612
10613 * blockframe.c: Update copyright year.
10614 (inside_entry_func): Don't treat a zero PC specially.
10615
10616 2004-01-14 Elena Zannoni <ezannoni@redhat.com>
10617
10618 * gcore.c (gcore_copy_callback): Use paddr_d to print size
10619 variable.
10620 (gcore_create_callback): Ditto. Skip any memory segment that has
10621 no permissions set.
10622
10623 2004-01-14 David Carlton <carlton@kealia.com>
10624
10625 Change symbols for C++ nested types to contain the fully qualified
10626 name, if possible. (At least in the DWARF-2 case.) Partial fix
10627 for PR's c++/57, c++/488, c++/539, c++/573, c++/609, c++/832,
10628 c++/895.
10629 * c-exp.y (qualified_type): Handle types nested within classes.
10630 * cp-namespace.c: Update comments.
10631 (cp_set_block_scope): Delete #if 0.
10632 (cp_lookup_nested_type): Handle types nested within classes.
10633 * dwarf2read.c: (scan_partial_symbols): Call add_partial_structure
10634 when appropriate.
10635 (add_partial_symbol): Add the name of the enclosing namespace to
10636 types.
10637 (pdi_needs_namespace): New.
10638 (add_partial_namespace): Tweak comment.
10639 (add_partial_structure): New.
10640 (psymtab_to_symtab_1): Initialize processing_current_prefix
10641 here...
10642 (process_die): instead of here.
10643 (read_structure_scope): Try to figure out the name of the class or
10644 namespace that the structure might be defined within.
10645 (read_enumeration): Generate fully-qualified names, if possible.
10646 (read_namespace): Don't set name to NULL.
10647 (die_specification): New.
10648 (new_symbol): Generate fully-qualified names for types.
10649 (read_type_die): Determine appropriate prefix.
10650 (determine_prefix): New.
10651 (typename_concat): New.
10652 (class_name): New.
10653 * valops.c (value_aggregate_elt): Pass NOSIDE to
10654 value_struct_elt_for_reference.
10655 (value_struct_elt_for_reference): Make static, add NOSIDE
10656 parameter, call value_maybe_namespace_elt as a last resort.
10657 (value_namespace_elt): Break out code into
10658 value_maybe_namespace_elt.
10659 (value_maybe_namespace_elt): New.
10660
10661 2004-01-12 Andrew Cagney <cagney@redhat.com>
10662
10663 * mips-tdep.c (mips_convert_register_p): Handle both raw and
10664 cooked floating-point registers.
10665 (mips_gdbarch_init): Set convert_register_p, register_to_value,
10666 and value_to_register.
10667
10668 2004-01-13 Andrew Cagney <cagney@redhat.com>
10669
10670 * gdbarch.sh (FUNCTION_START_OFFSET): Make zero the default.
10671 * gdbarch.c: Re-generate.
10672 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
10673 FUNCTION_START_OFFSET.
10674 * v850-tdep.c (v850_gdbarch_init): Ditto.
10675 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
10676 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
10677 * sh-tdep.c (sh_gdbarch_init): Ditto.
10678 * s390-tdep.c (s390_gdbarch_init): Ditto.
10679 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
10680 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
10681 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
10682 * mips-tdep.c (mips_gdbarch_init): Ditto.
10683 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
10684 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
10685 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10686 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
10687 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
10688 * i386-tdep.c (i386_gdbarch_init): Ditto.
10689 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
10690 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
10691 * frv-tdep.c (frv_gdbarch_init): Ditto.
10692 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
10693 * cris-tdep.c (cris_gdbarch_init): Ditto.
10694 * avr-tdep.c (avr_gdbarch_init): Ditto.
10695 * arm-tdep.c (arm_gdbarch_init): Ditto.
10696 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
10697
10698 2004-01-13 Daniel Jacobowitz <drow@mvista.com>
10699
10700 * infrun.c (follow_fork_mode_ask): Remove.
10701 (follow_fork_mode_kind_names): Remove follow_fork_mode_ask.
10702 (follow_fork): Simplify and remove internal error for
10703 follow_fork_mode_ask.
10704 (_initialize_infrun): Update "set follow-fork-mode" help text.
10705
10706 2004-01-13 Andrew Cagney <cagney@redhat.com>
10707
10708 * configure.in: Update copyright year.
10709 (build_warnings): Add -Wunused-label.
10710 * configure: Re-generate.
10711
10712 2004-01-12 Andrew Cagney <cagney@redhat.com>
10713
10714 * exec.h (exec_ops): Make "extern".
10715
10716 * mips-tdep.c (mips_pseudo_register_read): Don't return a value,
10717 the function is void.
10718 (mips_pseudo_register_write): Ditto.
10719
10720 2004-01-12 Andrew Cagney <cagney@redhat.com>
10721
10722 * stack.c (frame_info): Delete DEPRECATED_PRINT_EXTRA_FRAME_INFO
10723 call. Never defined.
10724 * sparc-tdep.h (struct frame_info): Add opaque declaration.
10725 * sparc64-tdep.h (struct gdbarch): Add opaque declaration.
10726 (struct sparc_gregset, struct regcache): Ditto.
10727 * sparc-nat.c: Update copyright. Specify "GNU/Linux".
10728
10729 2004-01-12 Andrew Cagney <cagney@redhat.com>
10730
10731 * mi/ChangeLog: Delete file. Renamed to ...
10732 * mi/ChangeLog-1999-2003: New file.
10733 * tui/ChangeLog: Delete file. Renamed to ...
10734 * tui/ChangeLog-1998-2003: New file.
10735
10736 2004-01-11 Mark Kettenis <kettenis@gnu.org>
10737
10738 * sparc64nbsd-tdep.c: Include "regset.h".
10739 (sparc64nbsd_sizeof_struct_reg, sparc64nbsd_sizeof_struct_fpreg):
10740 Remove variables.
10741 (fetch_core_registers): Remove function.
10742 (sparc64nbsd_core_fns): Remove variable.
10743 (sparc64nbsd_supply_gregset, sparc64nbsd_supply_fpregset): New
10744 functions.
10745 (sparc64nbsd_init_abi): Initialize TDEP->gregset,
10746 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
10747 (_initialize_sparc64nbsd_tdep): Remove call to add_core_fns.
10748
10749 * sparc-tdep.c (sparc32_extract_struct_value_address): Rename from
10750 sparc_extract_struct_value_address.
10751 (sparc32_gdbarch_init): Set extract_struct_value_address.
10752 * sparc64-tdep.c (sparc64_extract_struct_value_address): New
10753 function.
10754 (sparc64_init_abi): Set extract_struct_value_address. Don't set
10755 return_value_on_stack.
10756
10757 * NEWS: Mention that %cs and %ss have been added to the AMD64
10758 configurations
10759
10760 * frame.c: Update copyright year.
10761 (get_prev_frame): Improve comment.
10762
10763 * sparc64fbsd-tdep.c: Include "regset.h".
10764 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
10765 Remove variables.
10766 (fetch_core_registers): Remove function.
10767 (sparc64fbsd_core_fns): Remove variable.
10768 (sparc64fbsd_supply_gregset, sparc64fbsd_supply_fpregset): New
10769 functions.
10770 (sparc64fbsd_init_abi): Initialize TDEP->gregset,
10771 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
10772 (_initialize_sparc64fbsd_tdep): Remove call to add_core_fns.
10773
10774 * sparcnbsd-tdep.c: Include "regset.h".
10775 (fetch_core_registers): Remove function.
10776 (sparcnbsd_core_fns, sparcnbsd_elfcore_fns): Remove varaibles.
10777 (sparc32nbsd_supply_gregset, sparc32nbsd_supply_fpregset): New
10778 functions.
10779 (sparc32nbsd_init_abi): Initialize TDEP->gregset and
10780 TDEP->fpregset.
10781 (_initialize_sparcnbsd_tdep): Remove calls to add_core_fns.
10782
10783 * sparc-tdep.h (struct regset): Provide opaque declaration.
10784 (struct gdbarch_tdep): Add gregset, sizeof_gregset,
10785 fpregset and sizeof_fpregset members.
10786 * sparc-tdep.c (struct regset): Provide opaque declaration.
10787 (sparc_regset_from_core_section): New function.
10788 (sparc32_gdbarch_init): Initialize TDEP->gregset,
10789 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_fpregset.
10790 Set regset_from_core_section when appropriate.
10791
10792 2004-01-10 Mark Kettenis <kettenis@gnu.org>
10793
10794 * x86-64-tdep.c (amd64_non_pod_p): New function.
10795 (amd64_classify_aggregate): Return class memory for non-POD
10796 C++ structure types.
10797
10798 * x86-64-tdep.c (amd64_push_arguments): Add struct_return
10799 argument. Use it to reserve a register if necessary.
10800 (amd64_push_dummy_call): Pass STRUCT_RETURN in call to
10801 amd64_push_arguments.
10802
10803 * x86-64-tdep.c (amd64_classify_aggregate): Ignore static fields.
10804
10805 * x86-64-tdep.c (amd64_register_info): Add %cs and %ss. Adjust
10806 register numbers in comments.
10807 * x86-64-tdep.h: Update copyright year.
10808 (X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM, X86_64_XMM1_REGNUM):
10809 Adjust for addition of %cs and %ss.
10810 * amd64fbsd-nat.c: Update copyright year.
10811 (reg_offset): Add register offsets for %cs and %ss.
10812 * amd64fbsd-tdep.c: Update copyright year.
10813 (amd64fbsd_r_reg_offset): Add register offsets for %cs and %ss.
10814 (amd64fbsd_sc_reg_offset): Likewise.
10815 * x86-64-linux-nat.c: Update copyright year.
10816 (x86_64_linux_gregset64_reg_offset): Add register offsets for %cs
10817 and %ss.
10818 * amd64nbsd-nat.c: Update copyright year.
10819 (amd64nbsd32_r_reg_offset): Add register offsets for %cs and %ss.
10820 * amd64nbsd-tdep.c: Update copyright year.
10821 (amd64nbsd_r_reg_offset): Add register offsets for %cs and %ss.
10822 * x86-64-linux-tdep.c: Update copyright year.
10823 (user_to_gdb_regmap): Add mapping for %cs and %ss.
10824 (x86_64_linux_sc_reg_offset): Adjust for addition of %cs and %ss.
10825 * regformats/reg-x86-64.dat: Add %cs and %ss.
10826
10827 * blockframe.c (inside_entry_func): Reformat. Introduce new local
10828 variables to prevent long lines. Update comments to reflect
10829 reality.
10830
10831 2004-01-09 David Carlton <carlton@kealia.com>
10832
10833 Checked in by Elena Zannoni <ezannoni@redhat.com>.
10834 * dwarf2read.c (read_namespace): Pull out name-generating code
10835 into namespace_name. Rename previous_namespace to previous_prefix
10836 and processing_current_namespace to processing_current_prefix..
10837 (namespace_name): New function.
10838 (add_partial_symbol): Substitute uses of pdi->name with
10839 actual_name.
10840 * cp-support.h: Rename processing_current_namespace to
10841 processing_current_prefix.
10842 Update copyright year.
10843 * cp-namespace.c: Rename processing_current_namespace to
10844 processing_current_prefix.
10845 Update copyright year.
10846
10847 2004-01-09 Andrew Cagney <cagney@redhat.com>
10848
10849 * jv-valprint.c, ser-unix.c: Add missing copyright years.
10850
10851 2004-01-09 Mark Kettenis <kettenis@gnu.org>
10852
10853 * dbxread.c (read_dbx_symtab): Ignore N_PATCH stabs instead of
10854 complaining.
10855 (process_one_symbol): Deal with N_PATCH stabs.
10856
10857 2004-01-09 Elena Zannoni <ezannoni@redhat.com>
10858
10859 * dwarf2read.c (read_array_type): Discard FORTRAN_HACK macro and
10860 ifdeffed code.
10861 Update copyright year.
10862
10863 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
10864
10865 * config/pa/tm-hppa.h: Update extern declarations for
10866 hppa32_hpux_frame_saved_pc_in_sigtramp,
10867 hppa32_hpux_frame_base_before_sigtramp, and
10868 hppa32_hpux_frame_find_saved_regs_in_sigtramp.
10869
10870 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
10871
10872 * config/pa/tm-hppah.h: Update copyright years.
10873
10874 2004-01-08 Andrew Cagney <cagney@redhat.com>
10875
10876 * mips-tdep.c (mips_n32n64_reg_struct_has_addr): Delete function.
10877 (mips_o32_reg_struct_has_addr): Delete function.
10878 (mips_gdbarch_init): Update.
10879 (mips_extract_struct_value_address): Delete function.
10880
10881 2004-01-08 David Mosberger <davidm@hpl.hp.com>
10882
10883 * ia64-linux-tdep.c: Update GATE_AREA_END value to reflect
10884 reality.
10885
10886 2004-01-07 Andrew Cagney <cagney@redhat.com>
10887
10888 * mips-tdep.c (mips_gdbarch_init): Set elf_flags to the previous
10889 architecture's elf flags (when available).
10890
10891 * mips-tdep.c (mips_gdbarch_init): Move code determining the MIPS
10892 FPU to the start, check the MIPS FPU when looking for an old
10893 architecture.
10894 (set_mipsfpu_single_command): Update the architecture.
10895 (set_mipsfpu_double_command, set_mipsfpu_none_command): Ditto.
10896
10897 * mips-tdep.c (MIPS_DEFAULT_MASK_ADDRESS_P): Delete macro.
10898 (mips_mask_address_p): Add "tdep" parameter.
10899 (show_mask_address, mips_addr_bits_remove): Update.
10900 (mips_dump_tdep): Update.
10901 (MIPS_DEFAULT_STACK_ARGSIZE): Delete macro.
10902 (MIPS_STACK_ARGSIZE): Delete macro.
10903 (mips_stack_argsize, mips_eabi_push_dummy_call): Update.
10904 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call): Update.
10905 (mips_o64_push_dummy_call, mips_o32_return_value): Update.
10906 (mips_dump_tdep): Update.
10907 (MIPS_SAVED_REGSIZE): Delete macro.
10908 (MIPS_DEFAULT_SAVED_REGSIZE): Delete macro.
10909 (mips_saved_regsize, mips_eabi_use_struct_convention): Update.
10910 (mips_eabi_reg_struct_has_addr, mips_find_saved_regs): Update.
10911 (mips_frame_saved_pc, mips16_heuristic_proc_desc): Update.
10912 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call): Update.
10913 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update.
10914 (mips_pop_frame, return_value_location): Update.
10915 (mips_n32n64_return_value, mips_dump_tdep): Update.
10916
10917 * mips-tdep.c (mips_gdbarch_init): Clean up code selecting the
10918 MIPS ABI.
10919
10920 * mips-tdep.c: Update copyright.
10921 (mips_gdbarch_init): Merge two code blocks handling the register
10922 name and number layout.
10923
10924 2004-01-02 Pawel Ostrowski <pasza@zodiac.mimuw.edu.pl>
10925
10926 * tracepoint.c (validate_actionline): Fix segv at EOF
10927
10928 2004-01-07 Michael Chastain <mec.gnu@mindspring.com>
10929
10930 * hpread.c (hpread_read_struct_type): Call SET_FIELD_PHYSNAME
10931 properly for static fields.
10932
10933 2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
10934 Jason Molenda <jmolenda@apple.com>
10935
10936 * disasm.c: Update copyright to include 2004.
10937 (do_mixed_source_and_assembly): For uiout asm list
10938 and tuple cleanups, initialize to null_cleanup instead of
10939 NULL and do so prior to loop. Only reset when we close off
10940 the tuple/list. Move check for whether to close off the
10941 asm tuple/list to after dump_insns call where it will be run
10942 on each loop iteration.
10943
10944 2004-01-05 Andrew Cagney <cagney@redhat.com>
10945
10946 * ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
10947 should be a switch case and not a label.
10948 * mips-tdep.c (mips32_next_pc): Delete unused labels
10949 "greater_equal_branch" and "less_zero_branch".
10950 * jv-valprint.c (java_print_value_fields): Delete unused label
10951 "flush_it".
10952
10953 * target.c (unpush_target): Only close a target that is in the
10954 target stack.
10955
10956 2004-01-05 Mark Kettenis <kettenis@gnu.org>
10957
10958 * sparc-tdep.c (sparc_extract_struct_value_address): Get the
10959 address from [sp + 64] instead of %o2.
10960
10961 * frame.c (get_prev_frame): Don't try to unwind the PC. This
10962 fixes PR backtrace/1476.
10963
10964 2004-01-05 Andrew Cagney <cagney@redhat.com>
10965
10966 * libunwind-frame.h (struct frame_id): Add opaque declaration,
10967 move to start of file.
10968 * i386-tdep.h (struct regcache): Add opaque declaration.
10969 * config/ia64/nm-linux.h (struct target_ops): Add opaque
10970 declaration.
10971 * ia64-tdep.c (ia64_find_proc_info_x): Do not use __FUNCTION__.
10972 (ia64_gdbarch_init): Use "GNU/Linux" in comment.
10973 * win32-nat.c (fake_create_process): Use ISO C style definition.
10974 * stabsread.c (define_symbol): Delete #ifndef
10975 DEPRECATED_USE_REGISTER_NOT_ARG wrapper around
10976 stabs_argument_has_addr call, macro never defined.
10977
10978 2004-01-04 Michael Chastain <mec.gnu@mindspring.com>
10979
10980 * op50-rom.c: Delete.
10981 * w89k-rom.c: Delete.
10982 * Makefile.in: Remove references.
10983
10984 2004-01-04 Mark Kettenis <kettenis@gnu.org>
10985
10986 * x86-64-tdep.c: Update copyright year.
10987 (struct amd64_register_info): Rename from x86_64_register_info.
10988 (amd64_register_info): Rename from x86_64_register_info.
10989 (AMD64_NUM_REGS): Rename from X86_64_NUM_REGS.
10990 (amd64_register_name): Rename from x86_64_register_name.
10991 (amd64_register_type): Rename from x86_64_register_type.
10992 (amd64_dwarf_regmap): Rename from x86_64_dwarf_regmap.
10993 (amd64_dwarf_regmap_len): Rename from x86_64_dwarf_regmap_len.
10994 (amd64_dwarf_reg_to_regnum): Rename from
10995 x86_64_dwarf_reg_to_regnum.
10996 (amd64_convert_register_p): Rename from x86_64_convert_register_p.
10997 (amd64_push_dummy_call): Rename from x86_64_push_dummy_call.
10998 (AMD64_NUM_SAVED_REGS): Rename from X86_64_NUM_SAVED_REGS.
10999 (struct amd64_frame_cache): Renamed from x86_64_frame_cache.
11000 (amd64_alloc_frame_cache): Renamed from x86_64_alloc_frame_cache.
11001 (amd64_analyze_prologue): Rename from x86_64_analyze_prologue.
11002 (amd64_skip_prologue): Rename from x86_64_skip_prologue.
11003 (amd64_frame_cache): Rename from x86_64_frame_cache.
11004 (amd64_frame_this_id): Rename from x86_64_frame_this_id.
11005 (amd64_frame_prev_register): Rename from
11006 x86_64_frame_prev_register.
11007 (amd64_frame_unwind): Rename from x86_64_frame_unwind.
11008 (amd64_frame_sniffer): Rename from x86_64_frame_sniffer.
11009 (amd64_sigtramp_frame_cache): Rename from
11010 x86_64_sigtramp_frame_cache.
11011 (amd64_sigtramp_frame_prev_register): Rename from
11012 x86_64_sigtramp_frame_prev_register.
11013 (amd64_sigtramp_frame_unwind): Rename from
11014 x86_64_sigtramp_frame_unwind.
11015 (amd64_sigtramp_frame_sniffer): Rename from
11016 x86_64_sigtramp_frame_sniffer.
11017 (amd64_frame_base_address): Rename from x86_64_frame_base_address.
11018 (amd64_frame_base): Rename from x86_64_frame_base.
11019 (amd64_unwind_dummy_id): Rename from x86_64_unwind_dummy_id.
11020 (amd64_frame_align): Rename from x86_64_frame_align.
11021 (amd64_supply_fpregset): Rename from x86_64_supply_fpregset.
11022 (amd64_regset_from_core_section): Rename from
11023 x86_64_regset_from_core_section.
11024 (x86_64_init_abi): Update comments.
11025
11026 2004-01-04 Nick Roberts <nick@nick.uklinux.net>
11027
11028 * MAINTAINERS (write after approval): Add myself.
11029
11030 2004-01-04 Mark Kettenis <kettenis@gnu.org>
11031
11032 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
11033 `float' arguments.
11034
11035 2004-01-04 Mark Kettenis <kettenis@gnu.org>
11036
11037 * sparc64-tdep.c (sparc64_store_floating_fields): Update comment
11038 such that it mentions a specific version of GCC that exhibits this
11039 bug.
11040
11041 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11042
11043 * sparc64-tdep.c (sparc64_store_floating_fields): If TYPE is a
11044 structure that has a single `float' member, store it in %f1 in
11045 addition to %f0.
11046
11047 * sparc-sol2-nat.c: Add missing '\'.
11048
11049 * sparc-tdep.c (sparc32_return_value): New function.
11050 (sparc32_use_struct_convention, sparc32_return_value_on_stack):
11051 Remove functions.
11052 (sparc32_gdbarch_init): Set return_value, don't set
11053 extract_return_value, store_return_value, use_struct_convention
11054 and return_value_on_stack.
11055
11056 * sparc-sol2-nat.c: Add missing ')'.
11057
11058 2004-01-03 J. Brobecker <brobecker@gnat.com>
11059
11060 * infrun.c (handle_step_into_function): New function.
11061 (handle_inferior_event): Extract out some code into the new
11062 function above.
11063
11064 2004-01-03 J. Brobecker <brobecker@gnat.com>
11065
11066 * infrun.c (handle_inferior_event): Move the declaration of
11067 real_stop_pc inside the if blocks where it is used.
11068
11069 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11070
11071 * sparc64-tdep.c (sparc64_16_byte_align_p)
11072 (sparc64_store_floating_fields, sparc64_store_floating_fields):
11073 Use check_typedef to get subtypes of structures and unions.
11074 (sparc64_store_return_value): Fix calculation of the appropriate
11075 offset into VALBUF when storing a structure or union.
11076 (sparc64_return_value): New function.
11077 (sparc64_use_struct_convention): Remove function.
11078 (sparc64_init_abi): Set return_value, don't set
11079 extract_return_value, store_return_value and
11080 use_struct_convention.
11081
11082 2004-01-03 Eli Zaretskii <eliz@elta.co.il>
11083
11084 * config/djgpp/fnchange.lst: Add lines for COPYING.LIBGLOSS,
11085 bfd/doc/ChangeLog-9103, bfd/elf32-m68hc1x.c,
11086 gdb/config/alpha/xm-alphaosf.h,
11087 gdb/config/powerpc/tm-ppcle-eabi.h,
11088 gdb/config/rs6000/tm-rs6000-aix4.h, gdb/gdbtk/ChangeLog-2001,
11089 gdb/gdbtk/ChangeLog-2002, gdb/gdbtk/ChangeLog-2003,
11090 gdb/gdbtk/plugins/intel-pentium/intel-pentium.tcl.in,
11091 gdb/gdbtk/plugins/rhabout/rhabout.tcl.in, gdb/i386-linux-nat.c,
11092 gdb/ia64-aix-nat.c, gdb/ia64-aix-tdep.c, gdb/ia64-linux-nat.c,
11093 gdb/ia64-linux-nat.c, gdb/ppc-linux-tdep.c, gdb/ppc-linux-nat.c,
11094 gdb/sparc64nbsd-nat.c, gdb/sparc64nbsd-tdep.c,
11095 gdb/sparc64-linux-nat.c, gdb/sparc64-linux-tdep.c,
11096 gdb/sparc64-nat.c, gdb/sparc64-tdep.c, gdb/sparc64-sol2-tdep.c,
11097 gdb/sparc-sol2-nat.c, gdb/sparc-sol2-tdep.c,
11098 gdb/testsuite/gdb.gdbtk/, gdb/testsuite/gdb.mi/mi-var-child.exp,
11099 nclude/ChangeLog-9103, include/coff/ChangeLog-9103,
11100 include/elf/ChangeLog-9103, include/opcode/ChangeLog-9103,
11101 opcodes/ChangeLog-0001, opcodes/ChangeLog-0203,
11102 opcodes/openrisc-dis.c, opcodes/openrisc-desc.h,
11103 sim/frv/profile-fr550.c, sim/frv/profile-fr550.h,
11104 sim/sh64/sem-compact-switch.c, sim/sh64/sem-media-switch.c,
11105 sim/testsuite/sim/sh64/compact/ldsl-mach.cgs,
11106 sim/testsuite/sim/sh64/compact/ldsl-macl.cgs,
11107 sim/testsuite/sim/sh64/compact/stsl-mach.cgs, and
11108 sim/testsuite/sim/sh64/compact/stsl-macl.cgs.
11109 Remove lines for .cvsignore files.
11110
11111 2004-01-03 J. Brobecker <brobecker@gnat.com>
11112
11113 * infrun.c: Back out the previous change.
11114
11115 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11116
11117 * NEWS: Mention revised SPARC target. Add sparc-*-lynxos* and
11118 sparc-*-sunos4* to the list of REMOVED configurations.
11119
11120 * configure.tgt: Add back sparc-*-vxworks*.
11121 * remote-vxsparc.c: Remove all includes except for "defs.h",
11122 "regcache.h", "vx-share/ptrace.h" and "vx-share/regPacket.h".
11123 Include "sparc-tdep.h".
11124 (SPARC_R_G1): New define.
11125 (vxsparc_gregset): New variable.
11126 (ext_format_sparc): Remove extern declaration.
11127 (vx_read_register): Rewrite to use sparc32_supply_gregset and
11128 sparc32_supply_fpregset.
11129 (vx_write_register): Rewrite to use sparc32_collect_gregset,
11130 sparc_collect_rwindow and sparc32_collect_fpregset.
11131 * config/sparc/tm-vxworks.h: New file, based on recently removed
11132 tm-vxsparc.h.
11133 * config/sparc/vxworks.mt: New file, based on recently removed
11134 vxworks.mt.
11135
11136 2004-01-03 J. Brobecker <brobecker@gnat.com>
11137
11138 * infrun.c (handle_step_into_function): New function.
11139 (handle_inferior_event): Extract out some code into the new
11140 function above.
11141
11142 2004-01-02 Mark Kettenis <kettenis@gnu.org>
11143
11144 * Makefile.in (ALLDEPFILES): Remove sparc-linux-nat.c and
11145 sparcl-tdep.c. Add sparc-linux-tdep.c, sparc-sol2-nat.c,
11146 sparc-sol2-tdep.c, sparc-sol2-nat.c, sparc-sol2-tdep.c,
11147 sparc64-linux-nat.c, sparc64-linux-tdep.c, sparc64-nat.c,
11148 sparc64-sol2-tdep.c, sparc64-tdep.c, sparc64fbsd-nat.c,
11149 sparc64fbsd-tdep.c, sparcnbsd-nat.c, sparcnbsd-tdep.c.
11150 (sparc_nat_h): New variable.
11151 (sparcbsd_nat_h, sparcnbsd_tdep_h): Remove variables.
11152 (tm-sun4os4.h): Remove dependency.
11153 (sparcbsd-nat.o, sparc-linux-nat.o): Remove dependencies.
11154 (sparc64fbsd-nat.o, sparc64fbsd-tdep.o, sparc64nbsd-nat.o,
11155 sparc64-tdep.o, sparc-nat.o, sparcnbsd-nat.o, sparcnbsd-tdep.o,
11156 sparc-tdep.o): Update dependencies.
11157 (sparc-linux-tdep.o, sparc-sol2-nat.o, sparc-sol2-tdep.o,
11158 sparc64-linux-nat.o, sparc64-linux-tdep.o, sparc64-nat.o,
11159 sparc64-sol2-tdep.o, sparc64-tdep.o, sparc64nbsd-tdep.o): New
11160 dependencies.
11161 * configure.host: Remove existing sparc-*-lynxos*,
11162 sparc-*-solaris*, sparc-*-sunos4*, sparc-*-sunos5*, sparc-*-*,
11163 ultrasparc-*-freebsd, sparcv9-*-freebsd, sparc64-*-linux*,
11164 sparcv9-*-* and sparc64-*-* triplets. Add new sparc64-*-linux*,
11165 sparc-*-solaris2*, sparcv9-*-solaris2* and sparc64-*-solaris2*
11166 triplets.
11167 * configure.tgt: Remove exitsing sparc-*-aout*, sparc-*-coff*,
11168 sparc-*-elf*, sparc*-lynxos*, sparc-*-solars2*, sparc-*-sunos4*,
11169 sparc-*-sunos5*, sparc-*-vxworks*, sparc64-*linux*, sparc64-*-*,
11170 sparcv9-*-* and commented out sparc64-*-solars2* triplets. Add
11171 new sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*,
11172 sparc64-*-linux, sparc-*-solaris2*, sparcv9-*-solaris*,
11173 sparc64-*-solaris2* and sparc64-*-* triplets.
11174 * sparc64-tdep.c: Update copyright year. Include "inferior.h",
11175 "symtab.h" and "objfiles.h".
11176 (BIAS): Remove define.
11177 (X_OP, X_RD, X_A, X_COND, X_OP2, X_IMM22, X_OP3, X_I, X_DISP22)
11178 (X_DISP19): Remove macros.
11179 (sparc_fetch_instruction): Remove function.
11180 (struct gdbarch_tdep): Remove definition.
11181 (SPARC64_NUM_REGS, SPARC64_NUM_PSEUDO_REGS): Use ARRAY_SIZE.
11182 (sparc_breakpoint_from_pc): Remove function.
11183 (struct sparc64_frame_cache): Remove definition.
11184 (sparc64_alloc_frame_cache, sparc64_analyze_prologue,
11185 sparc64_unwind_pc): Remove functions.
11186 (sparc64_skip_prologue): Use `struct sparc_frame_cache' instead of
11187 `struct sparc64_frame_cache. Call sparc_analyze_prologue instead
11188 of sparc64_analyze_prologue. Mark constant as ULL instead of UL.
11189 (sparc64_frame_cache): Change return type to `struct
11190 sparc_frame_cache *'. Simply call sparc_frame_cache.
11191 (sparc64_frame_this_id, sparc64_frame_prev_register,
11192 sparc64_frame_base_address): Use `struct sparc_frame_cache'
11193 instead of `struct sparc64_frame_cache.
11194 (sparc_unwind_dummy_id, sparc_extract_struct_value_address,
11195 sparc_analyze_control_transfer, sparc_software_single_step,
11196 sparc64_gdbarch_init, sparc_supply_rwindow, sparc_fill_rwindow,
11197 _initialize_sparc64_tdep): Remove functions.
11198 (TSTATE_CWP, TSTATE_ICC, TSTATE_XCC): New macros.
11199 (PSR_S, PSR_ICC, PSR_VERS, PSR_IMPL, PSR_V8PLUS, PSR_XCC): New
11200 macros.
11201 (sparc64_supply_gregset, sparc64_collect_gregset,
11202 sparc64_supply_fpregset, sparc64_collect_fpregset): New functions.
11203 (sparc64_init_abi): New function.
11204 * sparc64-tdep.h: Update copyright year. Fix typo in multiple
11205 inclusion guard. Include "sparc-tdep.h".
11206 (BIAS): Define.
11207 (r_tstate_offset, r_fprs_offset): New defines.
11208 (enum sparc_regnum): Remove defenition.
11209 (enum sparc64_regnum): Reformat.
11210 (sparc_supply_rwindow, sparc_fill_rwindow): Remove prototypes.
11211 (sparc64_init_abi, sparc64_supply_gregset,
11212 sparc64_collect_gregset, sparc64_supply_fpregset,
11213 sparc64_collect_fpregset): New prototypes.
11214 (sparc64_sol2_gregset, sparc64nbsd_gregset, sparc64fbsd_gregset):
11215 Add extern declarations.
11216 (sparc64_sol2_init_abi): New prototype.
11217 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
11218 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
11219 prototypes.
11220 * sparc64fbsd-nat.c: Include "sparc-nat.h", don't include
11221 "sparnbsd-nat.h".
11222 (sparc64fbsd_reg_supplies_p, sparc64fbsd_fpreg_supplies_p): Remove
11223 functions.
11224 (_initialize_sparc64fbsd_nat): Remove initialization of
11225 sparcbsd_supply_reg, sparcbsd_fill_reg, sparcbsd_supply_fpreg,
11226 sparcbsd_fill_fpreg, sparcbsd_reg_supplies_p,
11227 sparcbsd_fpreg_supplies_p. Initialize sparc_gregset.
11228 * sparc64fbsd-tdep.c: Update copyright year. Include "frame.h",
11229 "frame-unwind.h", "trad-frame.h" and "gdb_assert.h".
11230 (sparc64fbsd_r_global_offset, sparc64fbsd_r_out_offset)
11231 (sparc64fbsd_r_fprs_offset, sparc64fbsd_r_tnpc_offset)
11232 (sparc64fbsd_r_tpc_offset, sparc64fbsd_r_tstate_offset)
11233 (sparc64fbsd_r_y_offset): Remove variables.
11234 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
11235 Make static and const.
11236 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
11237 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
11238 functions.
11239 (sparc64fbsd_gregset): New variable.
11240 (fetch_core_registers): Replace calls to sparc64fbsd_supply_reg
11241 and sparc64fbsd_supply_fpreg with calls to sparc64_supply_gregset
11242 and sparc64_supply_fpregset.
11243 (sparc64fbsd_pc_in_sigtramp, sparc64fbsd_sigtramp_frame_cache)
11244 (sparc64fbsd_sigtramp_frame_this_id)
11245 (sparc64fbsd_sigtramp_frame_prev_register): New functions.
11246 (sparc64fbsd_sigtramp_frame_unwind): New variable.
11247 (sparc64fbsd_sigtramp_frame_sniffer): New function.
11248 (sparc64fbsd_init_abi): Set pc_in_sigtramp, append
11249 sparc64fbsd_sigtramp_frame_sniffer. Call sparc64_init_abi.
11250 * sparcnbsd-tdep.c: Update copyright year. Include
11251 "floatformat.h", "frame.h", "frame-unwind.h", "symtab.h",
11252 "trad-frame.h" and "gdb_assert.h", don't include "target.h",
11253 "value.h" and "sparcnbsd-tdep.h".
11254 (REG32_OFFSET_PSR, REG32_OFFSET_PC, REG32_OFFSET_NPC)
11255 (REG32_OFFSET_Y, REG32_OFFSET_GLOBAL, REG32_OFFSET_OUT)
11256 (REG64_OFFSET_TSTATE, REG64_OFFSET_PC, REG64_OFFSET_NPC)
11257 (REG64_OFFSET_Y, REG64_OFFSET_GLOBAL, REG64_OFFSET_OUT): Remove
11258 defines.
11259 (sparcnbsd_gregset): New variable.
11260 (sparcnbsd_supply_reg32, sparcnbsd_supply_reg64)
11261 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64)
11262 (sparcnbsd_supply_fpreg32, sparcnbsd_supply_fpreg64)
11263 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64): Remove functions.
11264 (sparc32nbsd_sigtramp_start, sparc32nbsd_sigtramp_end): New
11265 variables.
11266 (sparc32nbsd_pc_in_sigtramp, sparc32nbsd_sigcontext_frame_cache)
11267 (sparc32nbsd_sigcontext_frame_this_id)
11268 (sparc32nbsd_sigcontext_frame_prev_register): New functions.
11269 (sparc32nbsd_sigcontext_frame_unwind): New variable.
11270 (sparc32nbsd_sigtramp_frame_sniffer): New function.
11271 (sparcnbsd_get_longjmp_target_32,
11272 sparcnbsd_get_longjmp_target_64): Remove functions.
11273 (sparcnbsd_aout_in_solib_call_trampoline): Rewrite.
11274 (sparcnbsd_init_abi_common, sparcnbsd_init_aout,
11275 sparcnbsd_init_elf): Remove.
11276 (sparcnbsd_init_abi, sparcnbsd_aout_init_abi)
11277 (sparcnbsd_elf_init_abi): New functions.
11278 (_initialize_sparcnbsd_tdep): New prototype.
11279 (_initialize_sparnbsd_tdep): Update.
11280 * config/sparc/fbsd.mh (NATDEPFILES): Remove sparcbsd-nat.o and
11281 corelow.o. Add sparc64-nat.o and sparc-nat.o.
11282 * config/sparc/fbsd.mt (TDEPFILES): Add sparc-tdep.o and corelow.o.
11283 * config/sparc/linux.mh: Update comment.
11284 (XM_FILE, HOST_IPC): Remove variables.
11285 (NATDEPFILES): Add sparc-sol2-nat.o and core-regset.o. Remove
11286 sparc-linux-nat.o.
11287 * config/sparc/linux.mt: Update comment.
11288 (TDEPFILES): Add sparc-sol2-tdep.o and sparc-linux-tdep.o.
11289 * config/sparc/nbsd.mt: Reformat.
11290 * config/sparc/nbsd64.mh: Update comment.
11291 (NATDEPFILES): Add sparc-nat.o.
11292 * config/sparc/nbsd64.mt: Update comment.
11293 (TDEPFILES): Add sparc64-tdep.o and sparc64nbsd-tdep.o.
11294 (TM_FILE): Set to tm-nbsd.h.
11295 * config/sparc/nbsdelf.mh: Update comment.
11296 (NATDEPFILES): Add sparc-nat.o.
11297 (XM_FILE): Delete.
11298 * config/sparc/nbsdaout.mh: Update comment.
11299 (NATDEPFILES): Add sparc-nat.o
11300 (XM_FILE): Delete.
11301 * config/sparc/nm-linux.h: Update copyright year. Don't include
11302 "config/nm-svr4.h" and "solib.h". Add protection against multiple
11303 inclusion.
11304 (KERNEL_U_SIZE): Remove define.
11305 (kernel_u_size): Remove prototype.
11306 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define.
11307 * config/sparc/nm-nbsd.h: Update copyright. Don't include
11308 "regcache.h".
11309 (CHILD_PREPARE_TO_STORE): Remove define.
11310 * config/sparc/nm-nbsdaout.h: Tweak some comments.
11311 * sparc-nat.c, sparc-tdep.c, sparc-tdep.h, sparc64nbsd-nat.c,
11312 sparcnbsd-nat.c: Rewrite files.
11313 * config/sparc/tm-linux.h, config/sparc/tm-nbsd.h: Rewrite files.
11314 * sparc-linux-nat.c, sparcbsd-nat.c, sparcbsd-nat.h,
11315 sparcnbsd-tdep.h: Remove files.
11316 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4os4.h,
11317 config/sparc/nm-sun4sol2.h, config/sparc/sp64.mt,
11318 config/sparc/sp64linux.mt, config/sparc/sp64sol2.mt,
11319 config/sparc/sparc-em.mt, config/sparc/sparclynx.mh,
11320 config/sparc/sparclynx.mt, config/sparc/sun4os4.mh,
11321 config/sparc/sun4os4.mt, config/sparc/sun4sol2.mh,
11322 config/sparc/sun4sol2.mt, config/sparc/tm-sp64.h,
11323 config/sparc/tm-sp64linux.h, config/sparc/tm-sparc.h,
11324 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
11325 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
11326 config/sparc/tm-vxsparc.h, config/sparc/vxsparc.mt,
11327 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h: Remove files.
11328 * sparc-linux-tdep.c, sparc-nat.h, sparc-sol2-nat.c,
11329 sparc-sol2-tdep.c, sparc64-linux-nat.c, sparc64-linux-t dep.c,
11330 sparc64-nat.c, sparc64-sol2-tdep.c, sparc64nbsd-tdep.c: New files.
11331 * config/sparc/linux64.mh, config/sparc/linux64.mt,
11332 config/sparc/nm-sol2.h, config/sparc/sol2-64.mt,
11333 config/sparc/sol2.mh, config/sparc/sol2.mt, config/sparc/sparc.mt,
11334 config/sparc/sparc64.mt, config/sparc/tm-sol2.h: New files.
11335
11336 2004-01-02 Andrew Cagney <cagney@redhat.com>
11337
11338 From 2003-12-18 Kazuhiro Inaoka:
11339 * configure.host: Add m32r-linux target.
11340
11341 2004-01-02 Michael Chastain <mec.gnu@mindspring.com>
11342
11343 * top.c (print_gdb_version): Update year to 2004.
11344
11345 2004-01-02 Mark Mitchell <mark@codesourcery.com>
11346
11347 * MAINTAINERS: Add myself to the write-after-approval category.
11348
11349 2004-01-02 Daniel Jacobowitz <drow@mvista.com>
11350
11351 From Bernardo Innocenti <bernie@develer.com>:
11352 * configure.tgt: Add uClinux target.
11353
11354 2004-01-02 Andrew Cagney <cagney@redhat.com>
11355
11356 * utils.c (do_my_cleanups): Make static, add forward declaration.
11357 * defs.h (do_my_cleanups): Delete declaration.
11358
11359 2004-01-02 Eli Zaretskii <eliz@elta.co.il>
11360
11361 * config/djgpp/fnchange.lst: Add lines for gdb/ChangeLog-2003 and
11362 bfd/ChangeLog-0203.
11363
11364 2004-01-02 Mark Kettenis <kettenis@gnu.org>
11365
11366 * configure.in: Check for <machine/reg.h>. Check for `struct reg'
11367 in <machine/reg.h>.
11368 * configure, config.in: Regenerate.
11369
11370 For older changes see ChangeLog-2003, mi/ChangeLog-1999-2003, and
11371 tui/ChangeLog-1998-2003.
11372 \f
11373 Local Variables:
11374 mode: change-log
11375 left-margin: 8
11376 fill-column: 74
11377 version-control: never
11378 End:
This page took 0.456616 seconds and 5 git commands to generate.