2004-09-01 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2004-09-01 Andrew Cagney <cagney@gnu.org>
2
3 * objfiles.h (struct entry_info): Delete fields main_func_lowpc
4 and main_func_highpc.
5 (INVALID_ENTRY_LOWPC, INVALID_ENTRY_HIGHPC): Delete macros.
6 * objfiles.c (init_entry_point_info, objfile_relocate): Update
7 * nlmread.c (nlm_symfile_read): Update.
8
9 2004-09-01 Joel Brobecker <brobecker@gnat.com>
10
11 * mips-tdep.c (linked_proc_desc_table): Delete, not used.
12 (mips_insn32_frame_cache): Inline call to find_proc_desc.
13 (find_proc_desc): Remove dead code.
14
15 2004-09-01 Joel Brobecker <brobecker@gnat.com>
16
17 * mips-tdep.c (mips_mdebug_frame_cache): Minor reformatting.
18
19 2004-09-01 Jeff Johnston <jjohnstn@redhat.com>
20
21 * observer.sh: Add struct so_list declaration.
22 * Makefile.in: Add dependencies on observer.h for solib.c and
23 breakpoint.c.
24 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): New
25 function.
26 (_initialize_breakpoint): Register
27 disable_breakpoints_in_unloaded_shlib as an observer of the
28 "solib unloaded" observation event.
29 (re_enable_breakpoints_in_shlibs): For bp_shlib_disabled breakpoints,
30 call decode_line_1 so unfound breakpoint errors are silent.
31 * solib.c (update_solib_list): When a solib is discovered to have
32 been unloaded by the program, notify all observers of the
33 "solib unloaded" observation event.
34
35 2004-09-01 Andrew Cagney <cagney@gnu.org>
36
37 * frame.c: Include "objfiles.h".
38 (inside_main_func): New function.
39 (get_prev_frame): Use new inside_main_func.
40 * Makefile.in (frame.o): Update dependencies.
41 * defs.h (inside_main_func): Delete declaration.
42 * blockframe.c (inside_main_func): Delete function.
43
44 2004-08-31 Jim Blandy <jimb@redhat.com>
45
46 * dwarf2read.c (is_vtable_name): New function, based on logic from
47 read_structure_type, but passing the correct length to strncmp,
48 and using 'sizeof' instead of 'strlen'.
49 (read_structure_type): Call it.
50
51 2004-08-31 Joel Brobecker <brobecker@gnat.com>
52
53 * config/powerpc/aix.mh: Add comment.
54
55 2004-08-31 Paul GIlliam <pgilliam@us.ibm.com>
56
57 * MAINTAINERS: Add self to Write-After-Approval.
58
59 2004-08-30 Manoj Iyer <manjo@austin.ibm.com>
60
61 * MAINTAINERS: Add self to Write-After-Approval.
62
63 2004-08-30 Andrew Cagney <cagney@gnu.org>
64
65 Fix PR breakpoints/1757.
66 * infrun.c (struct execution_control_state): Replace
67 remove_breakpoints_on_following_step with
68 step_after_step_resume_breakpoint.
69 (init_execution_control_state): Update.
70 (handle_inferior_event): For signals, when stepping off a
71 breakpoint, set step_after_step_resume_breakpoint. When
72 BPSTAT_WHAT_STEP_RESUME, do a single-step off the breakpoint.
73 (keep_going): Delete code handling
74 remove_breakpoints_on_following_step.
75
76 2004-08-29 David Lecomber <david@streamline-computing.com>
77
78 Fix PR gdb/648
79 * language.h (enum array_ordering): New enum.
80 * language.h (struct language_defn): New la_array_ordering
81 attribute.
82 * language.c (unknown_language_defn, auto_language_defn)
83 (local_language_defn): Ditto.
84 * ada-lang.c (ada_language_defn): Ditto.
85 * c-lang.c (c_language_defn, cplus_language_defn)
86 (asm_language_defn, minimal_language_defn): Ditto.
87 * f-lang.c (f_language_defn): Ditto.
88 * jv-lang.c (java_language_defn): Ditto.
89 * m2-lang.c (f_language_defn): Ditto.
90 * objc-lang.c (objc_language_defn): Ditto.
91 * p-lang.c (pascal_language_defn): Ditto.
92 * scm-lang.c (scm_language_defn): Ditto.
93 * eval.c (evaluate_subexp_standard): Assume Fortran arrays are
94 oriented large to small in type structure.
95 * dwarf2read.c (read_array_order): New function.
96 (read_array_type): Use read_array_order to check row/column
97 major ordering.
98
99 2004-08-27 Nathan J. Williams <nathanw@wasabisystems.com>
100
101 * target.c (target_resize_to_sections): Check
102 current_target.to_sections for an old value when updating.
103
104 2004-08-27 Joel Brobecker <brobecker@gnat.com>
105
106 * procfs.c (dbx_link_bpt_addr): New static global variable.
107 (dbx_link_shadow_contents): New static global variable.
108 (procfs_wait, case <PR_SYSEXIT>): Handle syssgi events.
109 (procfs_wait, case <FLTBPT>): Remove the __dbx_link brekapoint
110 if we just hit it.
111 (procfs_init_inferior): Enable syssgi() syscall trace if appropriate.
112 Reset dbx_link_bpt_addr as the address of __dbx_link() may change
113 from run to run.
114 (procfs_create_inferior): Remove syssgi syscall-exit notifications
115 after the inferior has been forked.
116 (remove_dbx_link_breakpoint): New function.
117 (dbx_link_addr): New function.
118 (insert_dbx_link_bpt_in_file): New function.
119 (insert_dbx_link_bpt_in_region): New function.
120 (insert_dbx_link_breakpoint): New function.
121 (proc_trace_syscalls_1): New function, extracted from
122 proc_trace_syscalls.
123 (proc_trace_syscalls): Replace extract code by call to
124 proc_trace_syscalls_1.
125 * solib-irix.c (disable_break): Remove stop_pc assertion, as it
126 is no longer valid.
127
128 2004-08-25 Jim Blandy <jimb@redhat.com>
129
130 * gdbtypes.h (TYPE_CODE_ARRAY): Doc fix.
131
132 2004-08-25 Andrew Cagney <cagney@gnu.org>
133
134 * infrun.c (struct execution_control_state): Delete field
135 "stepping_through_sigtramp".
136 (init_execution_control_state): Do not set same.
137 (context_switch): Do not pass same to save_infrun_state and
138 load_infrun_state.
139 * gdbthread.h (struct thread_info): Delete field
140 stepping_through_sigtramp.
141 (save_infrun_state, load_infrun_state): Delete parameter
142 stepping_through_sigtramp.
143 * thread.c (load_infrun_state, save_infrun_state): Update.
144
145 * infrun.c: Re-indent. Move expression operators to the beginning
146 of the line. Remove long disabled #if 0 code.
147
148 2004-08-24 Andrew Cagney <cagney@gnu.org>
149
150 * doublest.h (floatformat_ieee_quad): Rename
151 floatformat_ia64_quad.
152 * doublest.c (floatformat_ieee_quad): Rename
153 floatformat_ia64_quad.
154 (_initialize_doublest): Update.
155
156 2004-08-24 Jim Blandy <jimb@redhat.com>
157
158 * dwarf2expr.h (struct dwarf_expr_context): New members
159 'num_pieces' and 'pieces', for returning the result of an
160 expression that uses DW_OP_piece.
161 (struct dwarf_expr_piece): New struct type.
162 * dwarf2expr.c (new_dwarf_expr_context): Initialize num_pieces and
163 pieces.
164 (free_dwarf_expr_context): Free pieces, if any.
165 (add_piece): New function.
166 (execute_stack_op): Implement DW_OP_piece.
167 * dwarf2loc.c (dwarf2_evaluate_loc_desc): If the result of the
168 expression is a list of pieces, print an error message.
169 (dwarf2_loc_desc_needs_frame): If the expression yields
170 pieces, and any piece is in a register, then we need a frame.
171
172 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Wait to fetch the top of
173 the stack until we've decided what sort of result the evaluation
174 has produced. Use separate variables, with more specific names.
175
176 2004-08-23 Richard Earnshaw <rearnsha@arm.com>
177
178 * armnbsd-tdep.c (arm_nbsd_arm_be_breakpoint): Define.
179 (arm_nbsd_thumb_[lb]e_breakpoint): Define.
180 (arm_netbsd_init_abi_common): Register them.
181
182 2004-08-22 Mark Kettenis <kettenis@gnu.org>
183
184 * config/vax/vax.mh (NATDEPFILES): Add vax-nat.c.
185
186 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Use
187 safe_frame_unwind_memory instead of target_read_memory.
188
189 * infptrace.c: Remove #ifdef'ed out inclusion of gdb_stat.h.
190 Reorder includes.
191 (fetch_register, store_register): Remove prototypes.
192 (child_resume): Reorganize code and comments such that it is
193 grouped a bit more logically.
194 (attach): Explicitly compare errno against 0.
195 (detach): Likewise. Use perror_with_name instead of
196 print_sys_errmsg.
197 * Makefile.in (infptrace.o): Update dependencies.
198
199 * ia64-linux-nat.c: Update copyright year.
200 (fetch_debug_register, store_debug_register)
201 (ia64_linux_stopped_by_watchpoint): Replace PTRACE_ARG3_TYPE with
202 PTRACE_TYPE_ARG3.
203 * config/ia64/nm-linux.h: Update copyright year.
204 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove defines.
205
206 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Change argument
207 from CORE_ADDR to struct frame_info *. Use
208 safe_frame_unwind_memory instead of deprecated_read_memory_nobpt.
209 (amd64_linux_sigtramp_p): Adjust for changed signature of
210 and64_linux_sigtramp_start
211
212 * gdb_ptrace.h: GNU/Linux.
213
214 * config/alpha/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
215 Remove defines.
216
217 * infptrace.c: Include "gdb_assert.h".
218 (PTRACE_XFER_TYPE): Remove define.
219 (offsetof): Only define if U_REGS_OFFSET isn't defined.
220 (fetch_register, store_register): Rewrite to use PTRACE_TYPE_RET.
221 Tweak comment.
222 (fetch_inferior_registers, store_inferior_registers): Remove
223 redundant culry braces. Tweak comment. s/regno/regnum.
224 * Makefile.in (infptrace.o): Update dependencies.
225
226 * configure.in: Change test for return type of ptrace to default
227 to `long' instead of `int'.
228 * configure: Regenerate.
229
230 2004-08-21 Mark Kettenis <kettenis@gnu.org>
231
232 * config/alpha/alpha-linux.mh (LOADLIBES): New variable.
233
234 * configure.in: Check for ttrace function.
235 * configure, config.in: Regenerate.
236
237 * gdb_ptrace.h: New file.
238 * infptrace.c: Include "gdb_ptrace.h" instead of <ptrace.h> or
239 <sys/ptrace.h>.
240 (PT_READ_I, PT_READ_D, PT_READ_U, PT_WRITE_I, PT_WRITE_D)
241 (PT_WRITE_U, PT_CONTINUE, PT_STEP, PT_KILL): Remove defines.
242 (attach): Don't define PT_ATTACH.
243 (detach): Don't define PT_DETACH.
244 * Makefile.in (gdb_ptrace_h): New variable.
245 (infptrace.o): Update dependencies.
246
247 2004-08-16 Mark Kettenis <kettenis@gnu.org>
248
249 * inferior.h (PTRACE_ARG3_TYPE): Define as PTRACE_TYPE_ARG3
250 instead of `int' if not already defined.
251 (call_ptrace): Revert change that replaced PTRACE_ARG3_TYPE with
252 PTRACE_TYPE_ARG3.
253 * infptrace.c (call_ptrace): Revert change that replaced
254 PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
255
256 2004-08-15 Mark Kettenis <kettenis@gnu.org>
257
258 * config/i386/nm-linux64.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
259 Remove defines.
260
261 * linux-nat.c (kill_inferior): Add missing third and fourth
262 arguments to ptrace call. Don't use PTRACE_ARG3_TYPE.
263
264 * infptrace.c (child_xfer_memory): Replace PTRACE_XFER_TYPE with
265 PTRACE_TYPE_RET.
266
267 * proc-why.c (proc_prettyfprint_why): Fix format string.
268
269 * solib-osf.c (osf_current_sos): Remove unsused label.
270
271 * configure.in: Add <ncurses/ncurses.h> to the list of possible
272 curses headers.
273 * configure, config.in: Regenerate.
274 * gdb_curses.h [HAVE_NCURSES_NCURSES_H]: Include
275 <ncurses/ncurses.h>.
276
277 * config/nm-bsd.h (PTRACE_ARG3_TYPE): Remove define.
278 * config/nm-nbsd.h: Update copyright year.
279 (PTRACE_ARG3_TYPE): Remove define.
280
281 * sparc-nat.c (fetch_inferior_registers)
282 (store_inferior_registers, sparc_xfer_wcookie):
283 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
284
285 * alphabsd-nat.c (fetch_inferior_registers):
286 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
287 PTRACE_TYPE_ARG3.
288 * amd64bsd-nat.c (fetch_inferior_registers)
289 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
290 PTRACE_TYPE_ARG3.
291 * armnbsd-nat.c: Update copyright year.
292 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs)
293 (store_register, store_regs, store_fp_register, store_fp_regs):
294 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
295 * hppabsd-nat.c (fetch_inferior_registers)
296 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
297 PTRACE_TYPE_ARG3.
298 * i386bsd-nat.c (fetch_inferior_registers)
299 (store_inferior_registers, i386bsd_dr_set, i386bsd_dr_get_status):
300 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
301 * m68kbsd-nat.c (fetch_inferior_registers)
302 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
303 PTRACE_TYPE_ARG3.
304 * m88kbsd-nat.c (fetch_inferior_registers)
305 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
306 PTRACE_TYPE_ARG3.
307 * mipsnbsd-nat.c: Update copyright year.
308 (fetch_inferior_registers, store_inferior_registers):
309 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
310 * ns32knbsd-nat.c: Update copyright year.
311 (fetch_inferior_registers, store_inferior_registers):
312 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
313 * ppcnbsd-nat.c (fetch_inferior_registers):
314 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
315 PTRACE_TYPE_ARG3.
316 * ppcobsd-nat.c (fetch_inferior_registers):
317 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
318 PTRACE_TYPE_ARG3.
319 * shnbsd-nat.c: Update copyright year.
320 (fetch_inferior_registers, store_inferior_registers):
321 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
322 * vaxbsd-nat.c (fetch_inferior_registers)
323 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
324 PTRACE_TYPE_ARG3.
325
326 * inferior.h (call_ptrace): Replace PTRACE_ARG3_TYPE with
327 PTRACE_TYPE_ARG3.
328 * infptrace.c (call_ptrace, child_resume, attach, detach)
329 (U_REGS_OFFSET, fetch_register, store_register, child_xfer_memory)
330 (udot_info): Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
331 * inftarg.c (ptrace_me): Replace PTRACE_ARG3_TYPE with
332 PTRACE_TYPE_ARG3.
333
334 2004-08-14 Mark Kettenis <kettenis@gnu.org>
335
336 * defs.h: Remove out-of-date comment.
337 [!FCLOSE_PROVIDED] (fclose): Remove prototype.
338 [!GETENV_PROVIDED] (getenv): Remove prototype.
339
340 * standalone.c: Remove file.
341 * Makefile.in (standalone.o): Remove dependency.
342
343 * i386-linux-nat.c (dummy_sse_values): Remove function and
344 prototype.
345 (i386_linux_dr_get): Fix typo in comment.
346 (LINUX_SYSCALL_REGNUM): Define as I386_EAX_REGNUM.
347
348 * config/i386/obsd64.mt (TDEPFILES): Add i386obsd-tdep.o.
349
350 * defs.h (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
351 from declaration.
352 * top.c (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
353 from definition.
354
355 2004-08-13 Mark Kettenis <kettenis@gnu.org>
356
357 * configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
358 parenthesis in definition.
359 * configure: Regenerated.
360
361 2004-08-12 Michael Chastain <mec.gnu@mindspring.com>
362
363 * PROBLEMS: Mention build/1411.
364
365 2004-08-09 Robert Millan <robertmh@gnu.org>
366
367 Committed by Nathanael Nerode.
368 * configure.host: Match kfreebsd*-gnu and knetbsd*-gnu.
369 * configure.tgt: Match kfreebsd*-gnu and knetbsd*-gnu.
370
371 2004-08-12 Andrew Cagney <cagney@gnu.org>
372
373 * NEWS: Mention fixes in GDB 6.2.1.
374 * PROBLEMS: Remove mention of mips-irix.
375
376 2004-08-11 Joel Brobecker <brobecker@gnat.com>
377
378 * config/powerpc/xm-aix.h: Delete.
379 * config/powerpc/aix.mh (MH_FILE): Remove.
380 * config/powerpc/aix432.mh (MH_FILE): Remove.
381
382 2004-08-11 Joel Brobecker <brobecker@gnat.com>
383
384 * config/powerpc/aix.mh: Remove obsolete comment.
385 * config/powerpc/aix432.mh: Likewise.
386
387 2004-08-11 Joel Brobecker <brobecker@gnat.com>
388
389 * config/powerpc/xm-aix.h (UINT_MAX): Remove undef.
390
391 2004-08-11 Joel Brobecker <brobecker@gnat.com>
392
393 * config/rs6000/xm-aix4.h: Remove "config/xm-aix4.h" include,
394 this file is now empty.
395 * config/xm-aix4.h: Remove, this file is no longer included
396 anywhere.
397
398 2004-08-11 Joel Brobecker <brobecker@gnat.com>
399
400 * config/powerpc/xm-aix.h: Remove "config/xm-aix4.h" include,
401 that file is now empty.
402 (termdef): Remove prototype, function no longer used.
403
404 2004-08-11 Joel Brobecker <brobecker@gnat.com>
405
406 * doc/gdbint.texinfo (Host Definition): Remove documentation
407 for USE_O_NOCTTY, no longer used.
408 * config/xm-aix4.h (USE_O_NOCTTY): Remove, no longer used.
409 * config/rs6000/xm-rs6000.h (USE_O_NOCTTY): Likewise.
410
411 2004-08-11 Joel Brobecker <brobecker@gnat.com>
412
413 * config/xm-aix4.h (FIVE_ARG_PTRACE): Remove, no longer used.
414 * config/pa/nm-hppah.h (FIVE_ARG_PTRACE): Likewise.
415 * config/rs6000/xm-rs6000.h (FIVE_ARG_PTRACE): Likewise.
416
417 2004-08-11 Mark Kettenis <kettenis@gnu.org>
418
419 * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5
420 instead of FIVE_ARG_PTRACE.
421
422 * inflow.c (O_NOCTTY): Define to zero if not already defined.
423 (new_tty): Use O_NOCTTY unconditionally.
424
425 2004-08-10 Mark Kettenis <kettenis@gnu.org>
426
427 * procfs.c (procfs_detach): Cleanup. Print process ID, not LWP
428 ID. Use comma in output. Use gdb_flush on gdb_stdout instead of
429 fflush on stdout.
430
431 2004-08-10 Joel Brobecker <brobecker@gnat.com>
432
433 * xcoff_symfile_finish: Replace last call to xmfree by call
434 to xfree.
435
436 2004-08-10 Andrew Cagney <cagney@gnu.org>
437
438 * main.c (captured_main): Delete call to init_malloc.
439 * defs.h (init_malloc): Delete declaration.
440 * utils.c (mmalloc, mrealloc, mcalloc, mfree)
441 (init_malloc): Delete functions.
442
443 * defs.h (xmfree): Delete.
444 * utils.c (xmfree): Delete function.
445 (xfree): Inline calls to xmfree and mfree.
446 * symmisc.c (free_symtab_block, free_symtab): Use xfree.
447 * symfile.c (reread_symbols, init_psymbol_list): Ditto.
448 * source.c (forget_cached_source_info, find_and_open_source): Ditto.
449 * somread.c (som_symfile_finish): Ditto.
450 * objfiles.c (allocate_objfile, free_objfile):
451 * nlmread.c (nlm_symfile_finish): Ditto.
452 * hpread.c (hpread_symfile_finish): Ditto.
453 * elfread.c (free_elfinfo, elf_symfile_finish): Ditto.
454 * dbxread.c (dbx_symfile_finish, free_bincl_list): Ditto.
455 * coffread.c (coff_symfile_finish): Ditto.
456
457 * defs.h (xmcalloc): Delete declaration.
458 * utils.c (xmcalloc): Delete.
459 (xcalloc): Inline calls to xmcalloc and mcalloc.
460 * ada-lang.c (_initialize_ada_language): Use htab_create_alloc,
461 xcalloc and xfree.
462 * symtab.c (create_demangled_names_hash): Ditto.
463
464 * defs.h (xmrealloc): Delete.
465 * utils.c (xmrealloc): Delete.
466 (xrealloc): Inline calls to xmrealloc, mmalloc and mrealloc.
467 * symmisc.c (extend_psymbol_list): Use xrealloc.
468 * source.c (find_source_lines): Ditto.
469 * hpread.c (hpread_lookup_type): Ditto.
470 * dbxread.c (add_bincl_to_list): Ditto.
471
472 * utils.c (xmmalloc): Delete.
473 (xmalloc): Inline xmmalloc and mmalloc calls.
474 (msavestring): Use xmalloc.
475 * defs.h (xmmalloc): Delete declaration.
476 * xcoffread.c (xcoff_symfile_init): Use xmalloc instead of
477 xmmalloc.
478 * symmisc.c (extend_psymbol_list): Ditto.
479 * symfile.c (init_psymbol_list): Ditto.
480 * source.c (find_source_lines): Ditto.
481 * hpread.c (hpread_symfile_init, hpread_lookup_type): Ditto.
482 * elfread.c (elf_symtab_read): Ditto.
483 * dbxread.c (dbx_symfile_init, init_bincl_list): Ditto.
484 * coffread.c (coff_symfile_init): Ditto.
485
486 2004-08-10 David Carlton <carlton@bactrian.org>
487
488 * MAINTAINERS: Remove David Carlton from c++ testsuite
489 maintainers.
490
491 2004-08-10 Jerome Guitton <guitton@gnat.com>
492
493 * symfile.c (symbol_file_add_with_addrs_or_offsets): Make sure to
494 print a line feed before the prompt.
495
496 2004-08-10 Mark Kettenis <kettenis@gnu.org>
497
498 * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP.
499
500 2004-08-09 Joel Brobecker <brobecker@gnat.com>
501
502 General cleanup of the AIX xm include file:
503 * config/xm-aix4.h (fd_set): Remove undefine.
504 Remove include of <sys/select.h>.
505 (HAVE_TERMIO): Remove define.
506 (USG): Likewise.
507 (NULL): Remove redefine.
508 (alloca): Remove #pragma.
509 (vfork): Remove define.
510 (termdef): Remove.
511 (SIGWINCH_HANDLER): Remove.
512 (SIGWINCH_HANDLER_BODY): Remove.
513
514 2004-08-09 Mark Kettenis <kettenis@gnu.org>
515
516 * configure.tgt (x86_64-*-openbsd*): Set gdb_osabi to
517 GDB_OSABI_OPENBSD_ELF.
518
519 2004-08-07 Robert Millan <robertmh@gnu.org>
520
521 * bsd-kvm.c: Check for nlist.h before including it.
522
523 2004-08-09 Mark Kettenis <kettenis@gnu.org>
524
525 * i386bsd-nat.c (_initialize_i386bsd_nat): Remove `struct
526 sigcontext' offset consistency checks for ancient BSD.
527
528 * gdb_curses.h [HAVE_CURSESX_H]: Include <cursesX.h>
529
530 * configure.in: Check for <sys/types.h>. Check return and
531 argument types of ptrace.
532 * configure, config.in: Regenerate.
533
534 2004-08-09 Jim Blandy <jimb@redhat.com>
535
536 * rs6000-tdep.c (set_sim_regno, init_sim_regno_table,
537 rs6000_register_sim_regno): Doc fixes.
538
539 2004-08-08 Joel Brobecker <brobecker@gnat.com>
540
541 * mips-tdep.c: Include "floatformat.h".
542 (n32n64_floatformat_always_valid): New function.
543 (floatformat_n32n64_long_double_big): New constant.
544 (mips_gdbarch_init): Set size and format of long double
545 for N32 and N64 ABIs.
546 * Makefile.in (mips-tdep.o): Update dependencies.
547
548 2004-08-08 Andrew Cagney <cagney@gnu.org>
549
550 * gdbarch.sh: Delete "fmt" and "attrib" fields. Always use %s to
551 print. Improve script's error messages.
552 * gdbarch.h: Re-generate.
553
554 * gdbarch.sh (pformat): New function.
555 (float_format, double_format, long_double_format): List with bit
556 members. Use pformat when printing.
557 * gdbarch.c, gdbarch.h: Re-generate.
558
559 2004-08-08 Nathan J. Williams <nathanw@wasabisystems.com>
560
561 * ppcnbsd-nat.c: Include <machine/frame.h>, <machine/pcb.h>,
562 "gdbcore.h", "regcache.h", and "bsd-kvm.h".
563 (ppcnbsd_supply_pcb): New function.
564 (_initialize_ppcnbsd_nat): New prototype and function.
565 * config/powerpc/nbsd.mh (NATDEPFILES): Add bsd-kvm.o.
566 (LOADLIBES): New variable.
567 * Makefile.in (ppcnbsd-nat.o): Update dependencies.
568
569 2004-08-08 Andrew Cagney <cagney@gnu.org>
570
571 * gdbtypes.c (builtin_type_arm_ext, builtin_type_ieee_single)
572 (builtin_type_ieee_double, builtin_type_ia64_quad)
573 (builtin_type_ia64_spill, _initialize_gdbtypes): Add tables of
574 BE/LE floating-point types.
575 * gdbtypes.h (builtin_type_arm_ext, builtin_type_ieee_single)
576 (builtin_type_ieee_double, builtin_type_ia64_quad)
577 (builtin_type_ia64_spill): Declare.
578 * doublest.c (_initialize_doublest, floatformat_ieee_single)
579 (floatformat_ieee_double, floatformat_arm_ext)
580 (floatformat_ia64_spill, floatformat_ia64_quad): Add tables
581 of LE/BE floatformats.
582 * doublest.h: (struct floatformat, floatformat_ieee_single)
583 (floatformat_ieee_double, floatformat_arm_ext)
584 (floatformat_ia64_spill, floatformat_ia64_quad): Declare.
585
586 2004-08-08 Mark Kettenis <kettenis@gnu.org>
587
588 * i386gnu-nat.c (gnu_store_registers): Fix typo.
589
590 * i386gnu-nat.c (gnu_store_registers): Use regcache_raw_collect
591 instead of regcache_raw_supply when storing the registers.
592
593 * i386gnu-nat.c: Update copyright year.
594 (gnu_store_registers): Don't use deprecated_registers and
595 deprecated_registers_valid. Use regcache_valid_p and
596 regcache_raw_supply instead.
597
598 * vax-tdep.c (vax_frame_this_id): Use frame_func_unwind instead of
599 frame_pc_unwind.
600
601 * procfs.c (procfs_pid_to_str): Remove redundant and unused
602 variables. Incapitalized "process".
603
604 * configure.in: Add cursesX to the list of possible curses libs.
605 Add cursesX.h to the list of possible curses headers.
606 * configure, config.in: Regenerate.
607
608 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
609
610 * configure.in: Test for struct lwp in <sys/lwp.h>.
611 * bsd-kvm.c (bsd_kvm_proc_cmd): If HAVE_STRUCT_LWP is defined, use
612 the offset of l_addr in struct lwp.
613
614 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
615
616 * bsd-kvm.c: Include "gdbcore.h"
617 (bsd_kvm_open): Use get_exec_file() to set 'execfile'.
618
619 2004-08-07 Andrew Cagney <cagney@gnu.org>
620
621 * gdbtypes.c (build_flt, build_complex): New functions.
622 (gdbtypes_post_init): Use.
623
624 * doublest.c (floatformat_from_length): Fix tipo, "*" not "&".
625
626 * gdbtypes.c (_initialize_gdbtypes): Do not swap builtin_type_int8
627 through to builtin_type_uint128.
628
629 * c-exp.y: Use builtin_type function to obtain builtin types.
630
631 * gdbtypes.h (struct builtin_type): Delete builtin_int0 through to
632 builtin_uint128.
633 * gdbtypes.c (gdbtypes_post_init): Update.
634 (build_gdbtypes): Move initialization of builtin_type_int0
635 through to builtin_type_uint128 from here ...
636 (_initialize_gdbtypes): ... to here.
637 * d10v-tdep.c (d10v_register_type): Update.
638
639 * doublest.c: Update copyright.
640 (floatformat_from_length): Call error when floatformat is NULL.
641 (extract_floating_by_length): Remove NULL fmt check.
642 (store_floating_by_length): Ditto.
643
644 2004-08-07 Andrew Cagney <cagney@gnu.org>
645
646 * regcache.c (regcache_raw_read): For the moment, #ifdef assert
647 that the register is valid.
648
649 2004-08-05 Mark Kettenis <kettenis@chello.nl>
650
651 * i386-linux-tdep.c (i386_linux_sigtramp_start)
652 (i386_linux_rt_sigtramp_start): Change argument from CORE_ADDR to
653 struct frame_info *. Use safe_frame_unwind_memory instead of
654 deprecated_read_memory_nobpt.
655 (i386_linux_sigtramp_p, i386_linux_sigcontext_addr): Adjust for
656 changed signature of i386_linux_sigtramp_start and
657 i386_linux_rt_sigtramp_start.
658
659 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Change argument from
660 CORE_ADDR to struct frame_info *. Use safe_frame_unwind_memory
661 instead of deprecated_read_memory_nobpt.
662 (i386nbsd_sigtramp_p): Adjust for changed signature of
663 i386nbsd_sigtramp_offset.
664
665 * i386obsd-tdep.c (i386obsd_sigtramp_p): Use
666 safe_frame_unwind_memory instead of target_read_memory.
667
668 * infptrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
669 !NO_SYS_FILE.
670 [KERNEL_U_ADDR_BSD]: Don't include <a.out.h>.
671 [KERNEL_U_ADDR_BSD] (kernel_u_addr): Remove variable.
672 (_initialize_kernel_u_addr): Remove prototype and function.
673 * infttrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
674 !NO_SYS_FILE.
675 * xcoffread.c: Likewise.
676
677 2004-08-06 Mark Kettenis <kettenis@gnu.org>
678
679 * vax-nat.c: New file.
680 * vaxbsd-nat.c: Tweak comment.
681 * Makefile.in (ALLDEPFILES): Add vax-nat.c, vaxbsd-nat.c and
682 vaxnbsd-tdep.c.
683 (vax-nat.o): New dependency.
684 * configure.host (vax-*-bsd*, vax-*-ultrix*): Set gdb_host to vax.
685 (vax-*-ultrix2*): Remove.
686 * config/vax/vax.mh: New file.
687 * config/vax/nm-vax.h (vax_kernel_u_addr): New extern declaration.
688 (KERNEL_U_ADDR): Define as vax_kernel_u_addr.
689 (vax_register_u_addr): New prototype.
690 (REGISTER_U_ADDR): Define using vax_register_u_addr.
691 * config/vax/vaxult2.mh: Remove file.
692 * config/vax/vaxult.mh: Remove file.
693 * config/vax/vaxbsd.mh: Remove file.
694 * config/vax/vax.mt (TM_FILE): Remove.
695 * config/vax/tm-vaxbsd.h: Remove file.
696
697 2004-08-06 Joel Brobecker <brobecker@gnat.com>
698
699 * aix-thread.c (get_signaled_thread): New function.
700 (iter_trap): Delete, no longer used.
701 (iter_tid): New function.
702 (pd_update): Find the thread that received the SIGTRAP signal
703 by first locating the kernel thread, and then finding its
704 associated thread.
705
706 2004-08-06 Ulrich Weigand <uweigand@de.ibm.com>
707
708 * lin-lwp.c (child_wait): Continue inferior after processing
709 PTRACE_EVENT_CLONE event.
710
711 2004-08-05 Nathanael Nerode <neroden@gcc.gnu.org>
712
713 * MAINTAINERS: Add self to Write-After-Approval.
714
715 2004-08-05 Jeff Johnston <jjohnstn@redhat.com>
716
717 * libunwind-frame.c (LIBUNWIND_SO): Change to be of form:
718 libunwind-xxxx.so" where xxxx is UNW_TARGET.
719
720 2004-08-05 Andrew Cagney <cagney@gnu.org>
721
722 * config/xm-sysv4.h: Delete file.
723 * config/mips/xm-irix5.h: Delete file.
724 * config/mips/irix6.mh (XM_FILE, XM_CLIBS): Delete.
725 * config/mips/irix5.mh (XM_FILE, XM_CLIBS): Delete.
726 * config/ia64/xm-aix.h: Delete file.
727 * config/ia64/aix.mh (XM_FILE): Delete.
728 * config/pa/xm-hppah.h: Delete file.
729 * config/pa/hpux11w.mh (XM_FILE): Delete.
730 * config/pa/hpux11.mh (XM_FILE): Delete.
731 * config/pa/hpux1020.mh (XM_FILE): Delete.
732 * config/pa/hppahpux.mh (XM_FILE): Delete.
733
734 * config/alpha/xm-alphalinux.h: Delete file.
735 * config/djgpp/fnchange.lst: Do not fix xm-alphalinux.h.
736 * config/alpha/alpha-linux.mh (XM_FILE, LOADLIBES): Delete.
737 * config/alpha/xm-alphaosf.h: Delete file.
738 * config/djgpp/fnchange.lst: Do not fix xm-alphaosf.h.
739 * config/alpha/alpha-osf3.mh (XM_FILE): Delete.
740 * config/alpha/alpha-osf2.mh (XM_FILE): Delete.
741 * config/alpha/alpha-osf1.mh (XM_FILE): Delete.
742
743 * config/i386/xm-i386v.h: Delete file.
744 * config/i386/i386v.mh (XM_FILE, XM_CLIBS): Delete.
745 * config/i386/i386sco5.mh (XM_FILE, XM_CLIBS): Delete.
746 * config/i386/xm-i386sco.h: Delete file.
747 * config/i386/i386sco4.mh (XM_FILE, XM_CLIBS, MH_CFLAGS): Delete.
748 * config/i386/i386sco.mh (XM_FILE, XM_CLIBS, CC): Delete.
749 * config/i386/xm-i386v4.h: Delete file.
750 * config/djgpp/fnchange.lst: Do not fix xm-i386v4.h.
751 * config/i386/ncr3000.mh (CC, CFLAGS, XM_FILE): Delete.
752 * config/i386/i386v42mp.mh (XM_FILE, XM_CLIBS): Delete.
753 * config/i386/i386v4.mh (XM_FILE, XM_CLIBS): Delete.
754
755 * config/vax/xm-vax.h: Delete file.
756 * Makefile.in (xm-vaxult.h, xm-vaxbsd.h): Delete.
757 * config/vax/xm-vaxult2.h: Delete file.
758 * config/djgpp/fnchange.lst: Do not fix xm-vaxult2.h.
759 * config/vax/vaxult2.mh (XM_FILE): Delete.
760 * config/vax/xm-vaxult.h: Delete file.
761 * config/vax/vaxult.mh (XM_FILE): Delete.
762 * config/vax/xm-vaxbsd.h: Delete file.
763 * config/vax/vaxbsd.mh (XM_FILE): Delete.
764
765 * gdbarch.sh (deprecated_frame_saved_pc): Delete.
766 * gdbarch.h, gdbarch.c: Re-generate.
767 * regcache.c (deprecated_read_fp, deprecated_write_sp): Delete.
768 * inferior.h (deprecated_read_fp, deprecated_write_sp): Delete.
769 * frame.h: Delete deprecated_read_fp from comments.
770 * arch-utils.c (deprecated_init_frame_pc_default): Delete.
771 * arch-utils.h (deprecated_init_frame_pc_default): Delete.
772
773 2004-08-04 Mark Kettenis <kettenis@gnu.org>
774
775 * i386obsd-tdep.c (i386obsd_sigtramp_p): Adjust for changed signal
776 trampoline in OpenBSD 3.5-current.
777
778 * i387-tdep.c (i387_supply_fsave): Provide summy values for the
779 SSE registers.
780
781 * Makefile.in: Remove embedded page breaks.
782
783 2004-08-04 Jim Blandy <jimb@redhat.com>
784
785 * regcache.c (regcache_raw_read): Assert that, after calling
786 target_fetch_registers, the register we're reading is cached.
787
788 * ppc-linux-nat.c (fetch_register): Replace 'gdb_assert (0)' with
789 a call to 'internal_error', with a more helpful error message.
790 * rs6000-tdep.c (e500_pseudo_register_read,
791 e500_pseudo_register_write, rs6000_store_return_value): Same.
792
793 2004-08-04 Andrew Cagney <cagney@gnu.org>
794
795 * Makefile.in: Update dependencies.
796
797 2004-08-04 Jim Blandy <jimb@redhat.com>
798
799 Change the layout of the PowerPC E500 raw register cache to allow
800 the lower 32-bit halves of the GPRS to be their own raw registers,
801 not pseudoregisters.
802 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_gprs_pseudo_p flag;
803 add ppc_ev0_upper_regnum flag.
804 * rs6000-tdep.c: #include "reggroups.h".
805 (spe_register_p): Recognize the ev upper half registers as SPE
806 registers.
807 (init_sim_regno_table): Build gdb->sim mappings for the upper-half
808 registers.
809 (e500_move_ev_register): New function.
810 (e500_pseudo_register_read, e500_pseudo_register_write): The 'ev'
811 vector registers are the pseudo-registers now, formed by splicing
812 together the gprs and the upper-half registers.
813 (e500_register_reggroup_p): New function.
814 (P): Macro deleted.
815 (P8, A4): New macro.
816 (PPC_EV_REGS, PPC_GPRS_PSEUDO_REGS): Macros deleted.
817 (PPC_SPE_GP_REGS, PPC_SPE_UPPER_GP_REGS, PPC_EV_PSEUDO_REGS): New
818 macros.
819 (registers_e500): Rearrange register set so that the raw register
820 set contains 32-bit GPRs and upper-half registers, and the SPE
821 vector registers become pseudo-registers.
822 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gprs_pseudo_p;
823 it has been deleted. Initialize ppc_ev0_upper_regnum. Many other
824 register numbers are now the same for the E500 as they are for
825 other PowerPC variants. Register e500_register_reggroup_p as the
826 register group function for the E500.
827 * Makefile.in (rs6000-tdep.o): Update dependencies.
828
829 Adapt PPC E500 native support to the new raw regcache layout.
830 * ppc-linux-nat.c (struct gdb_evrregset_t): Doc fixes.
831 (read_spliced_spe_reg, write_spliced_spe_reg): Deleted.
832 (fetch_spe_register, store_spe_register): Handle fetching/storing
833 all the SPE registers at once, if regno == -1. These now take
834 over the job of fetch_spe_registers and store_spe_registers.
835 (fetch_spe_registers, store_spe_registers): Deleted.
836 (fetch_ppc_registers, store_ppc_registers): Fetch/store gprs
837 unconditionally; they're always raw. Fetch/store SPE upper half
838 registers, if present, instead of ev registers.
839 (fetch_register, store_register): Remove sanity checks: gprs are
840 never pseudo-registers now, so we never need to even mention any
841 registers that are ever pseudoregisters.
842
843 Use a fixed register numbering when communicating with the PowerPC
844 simulator.
845 * ppc-tdep.h (struct gdbarch_tdep): New member: 'sim_regno'.
846 * rs6000-tdep.c: #include "sim-regno.h" and "gdb/sim-ppc.h".
847 (set_sim_regno, init_sim_regno_table, rs6000_register_sim_regno):
848 New functions.
849 (rs6000_gdbarch_init): Register rs6000_register_sim_regno. Call
850 init_sim_regno_table.
851 * Makefile.in (gdb_sim_ppc_h): New variable.
852 (rs6000-tdep.o): Update dependencies.
853
854 2004-08-02 Andrew Cagney <cagney@gnu.org>
855
856 * cris-tdep.c (cris_register_size): Restore function, still used
857 locally.
858
859 * gdbarch.sh (deprecated_target_read_fp)
860 (deprecated_frame_locals_address, deprecated_frame_args_address)
861 (deprecated_frame_chain_valid, deprecated_frame_chain)
862 (deprecated_init_extra_frame_info, deprecated_pop_frame)
863 (deprecated_frame_init_saved_regs, deprecated_get_saved_register)
864 (deprecated_do_registers_info, deprecated_init_frame_pc): Delete.
865 * gdbarch.h, gdbarch.c: Re-generate.
866 * regcache.c (deprecated_read_fp): Do not call
867 DEPRECATED_TARGET_READ_FP_P.
868 * infcmd.c (default_print_registers_info): Do not call
869 DEPRECATED_DO_REGISTERS_INFO.
870 * frame-base.c (default_frame_locals_address): Do not call
871 DEPRECATED_FRAME_LOCALS_ADDRESS.
872 (default_frame_args_address): Do not call
873 DEPRECATED_FRAME_ARGS_ADDRESS.
874
875 * gdbarch.sh (deprecated_register_raw_size)
876 (deprecated_register_virtual_size:int): Delete.
877 * gdbarch.h, gdbarch.c: Re-generate.
878 * cris-tdep.c (cris_register_size): Delete.
879 (cris_gdbarch_init): Update.
880 * alpha-tdep.c (alpha_register_raw_size)
881 (alpha_register_virtual_size): Delete.
882 (alpha_gdbarch_init): Update.
883
884 * gdbarch.sh (deprecated_register_virtual_type)
885 (deprecated_save_dummy_frame_tos, deprecated_push_return_address)
886 (deprecated_dummy_write_sp): Delete.
887 * gdbarch.h, gdbarch.c: Re-generate.
888
889 * gdbarch.sh (deprecated_register_bytes): Delete.
890 * gdbarch.h, gdbarch.c: Re-generate.
891 * regcache.c (deprecated_register_bytes): New function.
892 * regcache.h (deprecated_register_bytes): Declare.
893 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
894 * v850-tdep.c (v850_gdbarch_init): Update.
895 * sh64-tdep.c (sh64_gdbarch_init): Update.
896 * ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
897 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
898 * mcore-tdep.c (mcore_gdbarch_init): Update.
899 * cris-tdep.c (cris_gdbarch_init): Update.
900 * arm-tdep.c (arm_gdbarch_init): Update.
901 * remote.c (init_remote_state): Update.
902 * remote-vx.c (vx_prepare_to_store): Update.
903 * remote-sds.c (sds_fetch_registers, sds_prepare_to_store): Update.
904 * irix5-nat.c (fetch_core_registers): Update.
905 * cris-tdep.c (cris_register_bytes_ok): Update.
906 * config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
907
908 * mips-tdep.c (mips_gdbarch_init, mips_insn16_frame_cache)
909 (mips_insn16_frame_this_id, mips_insn16_frame_prev_register)
910 (mips_insn16_frame_unwind, mips_insn16_frame_sniffer)
911 (mips_insn16_frame_base_address, mips_insn16_frame_base)
912 (mips_insn16_frame_base_sniffer, mips_insn32_frame_cache)
913 (mips_insn32_frame_this_id, mips_insn32_frame_prev_register)
914 (mips_insn32_frame_unwind, mips_insn32_frame_sniffer)
915 (mips_insn32_frame_base_address, mips_insn32_frame_base)
916 (mips_insn32_frame_base_sniffer): Replace mips16 / mips32 prefix
917 with mips_insn16 and mips_insn32.
918
919 Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
920 * rs6000-tdep.c (rs6000_push_dummy_call)
921 (rs6000_extract_return_value): Use register_size.
922 * xstormy16-tdep.c (xstormy16_get_saved_register)
923 (xstormy16_extract_return_value): Ditto.
924 * valops.c (value_assign): Ditto.
925 * v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
926 * v850-tdep.c (v850_extract_return_value): Ditto.
927 * tracepoint.c (collect_symbol): Ditto.
928 * target.c (debug_print_register): Ditto.
929 * stack.c (frame_info): Ditto.
930 * rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
931 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
932 * remote.c (struct packet_reg, remote_wait, remote_async_wait)
933 (store_register_using_P): Ditto.
934 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
935 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
936 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
937 * remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
938 * regcache.c (deprecated_read_register_bytes)
939 (deprecated_write_register_bytes, read_register)
940 (write_register): Ditto.
941 * ppc-linux-nat.c (fetch_altivec_register, fetch_register)
942 (supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
943 * monitor.c (monitor_supply_register, monitor_fetch_register)
944 (monitor_store_register): Ditto.
945 * mn10300-tdep.c (mn10300_pop_frame_regular)
946 (mn10300_print_register): Ditto.
947 * mipsv4-nat.c (fill_fpregset): Ditto.
948 * mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
949 (mips64_fill_fpregset): Ditto.
950 * mi/mi-main.c (register_changed_p, get_register)
951 (mi_cmd_data_write_register_values): Ditto.
952 * lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
953 * irix5-nat.c (fill_gregset, fetch_core_registers):
954 * infrun.c (write_inferior_status_register): Ditto.
955 * infptrace.c (fetch_register, store_register): Ditto.
956 * infcmd.c (default_print_registers_info): Ditto.
957 * ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
958 * ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
959 * i386gnu-nat.c (gnu_store_registers, fill): Ditto.
960 * hpux-thread.c (hpux_thread_fetch_registers)
961 (hpux_thread_store_registers): Ditto.
962 * hppah-nat.c (store_inferior_registers, fetch_register):
963 * findvar.c (value_from_register): Ditto.
964 * dve3900-rom.c (fetch_bitmapped_register):
965 * cris-tdep.c (cris_gdbarch_init): Ditto.
966 * alpha-tdep.h: Ditto.
967 * aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
968
969 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_SIZE and
970 DEPRECATED_REGISTER_RAW_SIZE from comments.
971 * regcache.c (init_regcache_descr, regcache_dump): Do not check or
972 use DEPRECATED_REGISTER_VIRTUAL_SIZE and
973 DEPRECATED_REGISTER_RAW_SIZE.
974 * findvar.c (value_of_register): Simplify by assuming that the
975 registers raw and virtual sizes are identical.
976 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_TYPE in
977 comment.
978 * arch-utils.c (generic_register_size): Simplify by assuming
979 register_type.
980
981 * regcache.c (legacy_read_register_gen, real_register)
982 (legacy_write_register_gen): Delete, not used.
983
984 * regcache.c (struct regcache_descr): Delete legacy_p.
985 (init_legacy_regcache_descr): Delete function.
986 (init_regcache_descr): Delete call to init_legacy_regcache_descr.
987 Do not use deprecated register functions.
988 (regcache_raw_read, deprecated_write_register_gen):
989 (deprecated_read_register_gen, regcache_raw_write): Delete code
990 predicated on legacy_p.
991 (register_size): Delete check against register raw size.
992
993 * cris-tdep.c (cris_register_type): Replace
994 cris_register_virtual_type.
995 (cris_gdbarch_init): Update, set register_type.
996
997 * gdbarch.sh (deprecated_frameless_function_invocation): Delete.
998 * gdbarch.h, gdbarch.c: Re-generate.
999 * arm-tdep.c (arm_frameless_function_invocation): Delete.
1000 (arm_gdbarch_init) Do not set frameless function invocation.
1001 * frame.h (legacy_frameless_look_for_prologue): Delete declaration.
1002 * blockframe.c (legacy_frameless_look_for_prologue): Delete function.
1003 * frv-tdep.c (frv_frameless_function_invocation): Delete.
1004 (frv_gdbarch_init): Do not set frameless function invocation.
1005 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
1006 * sh-tdep.c (sh_gdbarch_init): Ditto.
1007 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
1008 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1009 * avr-tdep.c (avr_gdbarch_init): Ditto.
1010
1011 * blockframe.c (legacy_frame_chain_valid): Delete function.
1012
1013 * dummy-frame.c (struct dummy_frame): Delete call_lo, call_hi, top
1014 and pc. Update comments.
1015 (pc_in_dummy_frame): Delete function.
1016 (deprecated_pc_in_call_dummy): Inline old pc_in_dummy_frame code,
1017 use the "id".
1018 (dummy_frame_push, dummy_frame_sniffer): Instead of call_lo,
1019 call_hi, top and pc, use the id.
1020 (fprint_dummy_frames): Do not print call_lo, call_hi, top and pc.
1021
1022 * dummy-frame.c: Include "gdb_string.h".
1023 (generic_save_call_dummy_addr, generic_push_dummy_frame)
1024 (generic_save_dummy_frame_tos): Delete.
1025 (dummy_frame_push): New function, replaces above.
1026 * dummy-frame.h: Update copyright.
1027 (dummy_frame_push): Declare.
1028 * frame.h (generic_save_dummy_frame_tos, generic_push_dummy_frame)
1029 (generic_save_call_dummy_addr): Delete declarations.
1030 * infcall.c: Include "dummy-frame.h".
1031 (call_function_by_hand): Add locals caller_regcache,
1032 caller_regcache_cleanup and dummy_id. Replace push_dummy_frame
1033 with call to frame_save_as_regcache plus cleanup. Delete calls to
1034 generic_save_call_dummy_addr and generic_save_dummy_frame_tos.
1035 Move clear_proceed_status to just before the resume, add call to
1036 dummy_frame_push (discard cleanup).
1037 * Makefile.in (infcall.o): Add $(dummy_frame_h).
1038 (dummy-frame.o): Add $(gdb_string_h).
1039
1040 2004-08-01 Andrew Cagney <cagney@gnu.org>
1041
1042 * dummy-frame.h (dummy_frame_unwind): Replace dummy_frame_sniffer.
1043 * frame-unwind.c (frame_unwind_init): Use dummy_frame_unwind.
1044 * dummy-frame.c (find_dummy_frame): Delete.
1045 (struct dummy_frame_cache, dummy_frame_sniffer)
1046 (dummy_frame_prev_register, dummy_frame_this_id)
1047 (dummy_frame_unwinder, dummy_frame_unwind): Re-implement dummy
1048 frame unwinder using a dummy_frame_cache.
1049
1050 2004-08-01 Andrew Cagney <cagney@gnu.org>
1051
1052 * frame.h (frame_save_as_regcache): Declare.
1053 * frame.c (frame_save_as_regcache): New function.
1054 (do_frame_read_register): Replace do_frame_unwind_register.
1055 (frame_pop): Use frame_save_as_regcache.
1056 * dummy-frame.c (generic_push_dummy_frame): Use
1057 frame_save_as_regcache.
1058
1059 2004-08-01 Joel Brobecker <brobecker@gnat.com>
1060
1061 * dwarf2read.c (dwarf_decode_lines): Do not consider the current
1062 file as included until we record the first line in the linetable.
1063
1064 2004-08-01 Andrew Cagney <cagney@gnu.org>
1065
1066 * frame.h (deprecated_pop_dummy_frame)
1067 (deprecated_read_register_dummy)
1068 (deprecated_generic_find_dummy_frame): Delete.
1069 * dummy-frame.c (deprecated_generic_find_dummy_frame)
1070 (deprecated_read_register_dummy)
1071 (deprecated_find_dummy_frame_regcache)
1072 (discard_innermost_dummy)
1073 (deprecated_pop_dummy_frame): Delete.
1074 (dummy_frame_this_id): Simplify.
1075 (struct dummy_frame): Delete "fp" and "sp".
1076 (find_dummy_frame): Simplify.
1077 (generic_push_dummy_frame): Do not set "fp" or "sp".
1078 (fprint_dummy_frames): Do not print "fp" and "sp"
1079
1080 2004-08-01 Mark Kettenis <kettenis@gnu.org>
1081
1082 * i386-tdep.c (I386_MAX_INSN_LEN): New define.
1083 (struct i386_insn): New structure.
1084 (i386_match_insn): New function.
1085 (i386_frame_setup_skip_insns): New variable.
1086 (i386_analyze_frame_setup): Change to use i386_match_insn and the
1087 array i386_frame_setup_insns of instructions that should be
1088 skipped inside the frame setup sequence.
1089
1090 2004-08-01 Andrew Cagney <cagney@gnu.org>
1091
1092 * frame.h (deprecated_frame_xmalloc_with_cleanup)
1093 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
1094 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
1095 * stack.c (frame_info): Delete references to
1096 DEPRECATED_FRAME_INIT_SAVED_REGS and
1097 deprecated_get_frame_saved_regs.
1098 * frame.c (struct frame_info): Delete saved_regs and extra_info.
1099 (frame_pc_unwind): Do not use DEPRECATED_FRAME_SAVED_PC.
1100 (frame_register): Do not use DEPRECATED_GET_SAVED_REGISTER.
1101 (frame_unwind_register_signed)
1102 (frame_unwind_register_unsigned)
1103 (frame_unwind_unsigned_register): Use register_size.
1104 (create_new_frame): Do not use DEPRECATED_INIT_EXTRA_FRAME_INFO.
1105 (deprecated_frame_xmalloc_with_cleanup)
1106 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
1107 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
1108
1109 * sh-tdep.c (sh_gdbarch_init): Disable call to sh64_gdbarch_init.
1110 * config/sh/nbsd.mt (TDEPFILES): Remove sh64-tdep.o.
1111 * config/sh/linux.mt (TDEPFILES): Remove sh64-tdep.o.
1112 * config/sh/embed.mt (TDEPFILES): Remove sh64-tdep.o.
1113
1114 * infcall.c (call_function_by_hand): Do not use
1115 DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP,
1116 DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_TARGET_READ_FP,
1117 DEPRECATED_FP_REGNUM, DEPRECATED_STORE_STRUCT_RETURN, and
1118 DEPRECATED_STACK_ALIGN.
1119
1120 2004-07-30 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
1121
1122 Committed by Andrew Cagney.
1123 * arm-tdep.c: Remove references to add_setshow_cmd_full for apcs32 .
1124
1125 2004-08-01 Andrew Cagney <cagney@gnu.org>
1126
1127 * mips-tdep.c (mips16_frame_cache)
1128 (mips16_frame_this_id, mips16_frame_prev_register)
1129 (mips16_frame_unwind, mips16_frame_sniffer)
1130 (mips16_frame_base_address, mips16_frame_base)
1131 (mips16_frame_base_sniffer, mips32_frame_cache)
1132 (mips32_frame_this_id, mips32_frame_prev_register)
1133 (mips32_frame_unwind, mips32_frame_sniffer)
1134 (mips32_frame_base_address, mips32_frame_base)
1135 (mips32_frame_base_sniffer): Clone the mdebug unwinder into
1136 separate heuristic mips16 and mips32 unwinders.
1137 (mips_stub_frame_cache, mips_stub_frame_this_id)
1138 (mips_stub_frame_prev_register)
1139 (mips_stub_frame_unwind, mips_stub_frame_sniffer)
1140 (mips_stub_frame_base_address, mips_stub_frame_base)
1141 (mips_stub_frame_base_sniffer): Add a simple stub unwinder.
1142 (mips_mdebug_frame_base_sniffer, mips_mdebug_frame_sniffer): Only
1143 match true mdebug frames.
1144 (non_heuristic_proc_desc): Add forward declaration.
1145
1146 2004-08-01 Andrew Cagney <cagney@gnu.org>
1147
1148 * config/mips/tm-irix6.h: Delete file.
1149 * config/mips/tm-irix5.h: Delete file.
1150 * config/mips/irix5.mt (TM_FILE): Set to tm-mips.h
1151 * config/mips/irix6.mt (TM_FILE): Set to tm-mips.h
1152
1153 * config/ia64/tm-linux.h (IA64_GNULINUX_TARGET): Delete.
1154 * config/alpha/nm-osf2.h (PROCFS_SIGPEND_OFFSET): Delete.
1155 * config/nm-gnu.h (NO_CORE_OPS): Delete.
1156 * config/pa/nm-hppah.h (MAY_SWITCH_FROM_INFERIOR_PID): Delete.
1157 * config/i386/nm-i386v4.h (LOSING_POLL): Delete.
1158 * config/alpha/nm-osf2.h (LOSING_POLL): Delete.
1159 * config/tm-nto.h (RAW_SIGNAL_LO, RAW_SIGNAL_HI): Delete.
1160 * config/m68k/tm-vx68.h (VX_SIZE_FPREGS): Delete.
1161 * config/nm-linux.h (USE_THREAD_STEP_NEEDED): Delete.
1162 * config/pa/nm-hppah.h (USE_THREAD_STEP_NEEDED): Delete.
1163 * config/tm-nto.h (TARGET_SIGNAL_RAW_TABLE) Delete.
1164 (TARGET_SIGNAL_RAW_VALUES): Delete.
1165 * config/pa/nm-hppah.h (TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT):
1166 Delete.
1167 * config/frv/tm-frv.h (TARGET_HW_BREAK_LIMIT)
1168 (TARGET_HW_WATCH_LIMIT): Delete.
1169 * Makefile.in (minimon_h, HFILES_NO_SRCDIR): Remove minimon.h.
1170 * minimon.h: Delete file.
1171
1172 * trad-frame.c (trad_frame_get_this_base)
1173 (trad_frame_set_this_base, trad_frame_set_reg_realreg): New
1174 functions.
1175 * trad-frame.h (trad_frame_set_this_base)
1176 (trad_frame_get_this_base, trad_frame_set_reg_realreg): Declare.
1177
1178 2004-07-31 Andrew Cagney <cagney@gnu.org>
1179
1180 * trad-frame.c (trad_frame_get_prev_register): Rename
1181 trad_frame_get_prev_register.
1182 * vax-tdep.c (vax_frame_prev_register): Update.
1183 * trad-frame.h: Update.
1184 * trad-frame.c (trad_frame_get_register): Update.
1185 * sparcobsd-tdep.c (sparc32obsd_frame_prev_register): Update.
1186 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_prev_register):
1187 Update.
1188 * sparc64obsd-tdep.c (sparc64obsd_frame_prev_register): Update.
1189 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_prev_register):
1190 Update.
1191 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_prev_register):
1192 Update.
1193 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_prev_register):
1194 Update.
1195 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_prev_register):
1196 Update.
1197 * sparc-linux-tdep.c (sparc32_linux_sigtramp_frame_prev_register):
1198 Update.
1199 * s390-tdep.c (s390_frame_prev_register)
1200 (s390_stub_frame_prev_register)
1201 (s390_sigtramp_frame_prev_register): Update.
1202 * rs6000-tdep.c (rs6000_frame_prev_register): Update.
1203 * ppc-linux-tdep.c (ppc_linux_sigtramp_prev_register): Update.
1204 * mips-tdep.c (mips_mdebug_frame_prev_register): Update.
1205 * m88k-tdep.c (m88k_frame_prev_register)
1206 * m68hc11-tdep.c (m68hc11_frame_prev_register)
1207 * m32r-tdep.c (m32r_frame_prev_register): Update.
1208 * hppa-tdep.c (hppa_frame_prev_register_helper)
1209 * frv-tdep.c (frv_frame_prev_register): Update.
1210 * d10v-tdep.c (d10v_frame_prev_register): Update.
1211 * cris-tdep.c (cris_frame_prev_register): Update.
1212 * avr-tdep.c (avr_frame_prev_register): Update.
1213 * arm-tdep.c (arm_prologue_prev_register)
1214 (arm_sigtramp_prev_register): Update.
1215
1216 2004-07-31 Andrew Cagney <cagney@gnu.org>
1217
1218 * frame.h (legacy_saved_regs_unwind)
1219 (legacy_frame_chain_valid, legacy_frame_p)
1220 (enum frame_type): Delete UNKNOWN_FRAME.
1221 * dummy-frame.c (dummy_frame_this_id): Simplify.
1222 * frame-unwind.c (frame_unwind_find_by_frame): Simplify.
1223 * frame.c (struct frame_info): Delete the field "type".
1224 (legacy_saved_regs_prev_register, legacy_get_prev_frame)
1225 (legacy_saved_regs_this_id, legacy_saved_regs_unwinder)
1226 (legacy_saved_regs_unwind, legacy_frame_p)
1227 (frame_type_from_pc): Delete.
1228 (get_frame_id, frame_pop, frame_register_unwind, get_prev_frame_1)
1229 (fprint_frame, create_new_frame, fprint_frame_type): Simplify.
1230
1231 2004-07-31 Mark Kettenis <kettenis@gnu.org>
1232
1233 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Fix
1234 indentation.
1235
1236 * mips-nat.c: Remove file.
1237 * Makefile.in (ALLDEPFILES): Remove mips-nat.c
1238 (mips-nat.o): Remove dependency.
1239
1240 * infptrace.c: Update copyright year.
1241 (fetch_register): Pass NULL in regcache_raw_supply call instead of
1242 explicitly setting the buffer to all zeroes.
1243
1244 * sparc64obsd-tdep.c (sparc64obsd_sigreturn_offset): New variable.
1245 (sparc64obsd_pc_in_sigtramp): Reorganize to avoid goto.
1246
1247 2004-07-30 Andrew Cagney <cagney@gnu.org>
1248
1249 * GDB 6.2 released from gdb_6_2-branch.
1250
1251 2004-07-30 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
1252
1253 * defs.h (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH): New macros.
1254
1255 * exec.c (exec_file_attach):
1256 * nto-tdep.c (nto_find_and_open_solib):
1257 * pa64solib.c (pa64_solib_sizeof_symbol_table):
1258 * solib.c (solib_open):
1259 * somsolib.c (som_solib_sizeof_symbol_table):
1260 * source.c (is_regular_file, openp, open_source_file):
1261 * symfile.c (symfile_bfd_open):
1262 * wince.c (upload_to_device): Differentiate between the search for
1263 binary and source files.
1264
1265 2004-07-30 Andrew Cagney <cagney@gnu.org>
1266
1267 * complaints.c (_initialize_complaints): Pass NULL to
1268 add_setshow_zinteger_cmd for help_doc.
1269 * cli/cli-decode.c (add_setshow_cmd_full): Handle a NULL help_doc.
1270
1271 2004-07-30 Andrew Cagney <cagney@gnu.org>
1272
1273 Fix PR i18n/761.
1274 * Makefile.in (.SUFFIXES): Add po .gmo, and .pox.
1275 (.PHONY): Add all-po install-po, uninstall-po, clean-po,
1276 $(PACKAGE).pot and update-po.
1277 (all-po, .po.gmo, .po.pox, install-po, $(PACKAGE).pot)
1278 (po/$(PACKAGE).pot, clean-po, uninstall-po, install-po)
1279 (update-po): New rules.
1280 (localedir): Define using autoconf.
1281 (diststuff): Add $(PACKAGE).pot and $(CATALOGS)
1282 (GDB_CFLAGS): Define LOCALEDIR using $(localedir).
1283 (XGETTEXT, GMSGFMT, MSGMERGE, PACKAGE, CATALOGS): Define.
1284 * configure.in: Generate CATALOGS and LINGUAS from contents of
1285 src/gdb/po/ directory. Set @localedir@ in Makefile.in.
1286 * configure: Re-generate.
1287 * po/gdbtext: New file
1288
1289 2004-07-30 Jerome Guitton <guitton@gnat.com>
1290
1291 * MAINTAINERS: Reorder Write After Approval list in alphabetical
1292 order.
1293
1294 2004-07-30 David Lecomber <dsl@sources.redhat.com>
1295
1296 * dwarf2read.c (read_file_scope): Set producer if attribute
1297 present.
1298 (struct dwarf2_cu): Added new member producer.
1299
1300 2004-07-30 Jerome Guitton <guitton@gnat.com>
1301
1302 * inflow.c (kill_command): release file handles in BFD.
1303 * exec.c (exec_file_attach): Ditto.
1304 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
1305
1306 2004-07-29 Andrew Cagney <cagney@gnu.org>
1307
1308 * PROBLEMS (mips-irix): Note that it is broken.
1309
1310 2004-07-29 Andrew Cagney <cagney@gnu.org>
1311
1312 * config/mips/xm-irix5.h (REGISTER_U_ADDR): Move from here ...
1313 * config/mips/nm-irix5.h (REGISTER_U_ADDR): ... to here.
1314
1315 * config/xm-nbsd.h: Delete file.
1316 * config/arm/xm-nbsd.h: Delete file.
1317 * config/i386/xm-nbsd.h: Delete file.
1318 * config/ns32k/xm-nbsd.h: Delete file.
1319 * config/ns32k/nbsdaout.mh (XM_FILE): Delete.
1320 * config/i386/nbsdelf.mh (XM_FILE): Delete.
1321 * config/i386/nbsdaout.mh (XM_FILE): Delete.
1322 * config/arm/nbsdelf.mh (XM_FILE): Delete.
1323 * config/arm/nbsdaout.mh (XM_FILE): Delete.
1324
1325 * config/i386/xm-i386v.h (KERNEL_U_ADDR): Move from here ...
1326 * config/i386/nm-i386v42mp.h (KERNEL_U_ADDR): ... to here, ...
1327 * config/i386/nm-i386v4.h (KERNEL_U_ADDR): ... here, ...
1328 * config/i386/nm-i386v.h (KERNEL_U_ADDR): ... and here.
1329 * config/vax/xm-vax.h (KERNEL_U_ADDR): Move from here ...
1330 * config/vax/nm-vax.h (KERNEL_U_ADDR): ... to here.
1331
1332 * config/powerpc/xm-linux.h: Delete empty file.
1333 * config/powerpc/ppc64-linux.mh (XM_FILE): Delete.
1334 * config/powerpc/linux.mh (XM_FILE): Delete.
1335 * config/m68k/xm-linux.h: Delete empty file.
1336 * config/m68k/linux.mh (XM_FILE): Delete.
1337 * config/ia64/xm-linux.h: Delete empty file.
1338 * config/ia64/linux.mh (XM_FILE): Delete.
1339 * config/arm/xm-linux.h: Delete empty file.
1340 * config/arm/linux.mh (XM_FILE): Delete.
1341
1342 * config/powerpc/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1343 * config/powerpc/nm-linux.h (KERNEL_U_ADDR): ... to here.
1344 * config/m68k/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1345 * config/m68k/nm-linux.h (KERNEL_U_ADDR): ... to here.
1346 * config/ia64/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1347 * config/ia64/nm-linux.h (KERNEL_U_ADDR): ... to here.
1348 * config/arm/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1349 * config/arm/nm-linux.h (KERNEL_U_ADDR): ... to here.
1350
1351 * config/m68k/xm-m68k.h: Delete file.
1352 * config/m68k/xm-linux.h: Do not include "m68k/xm-m68k.h". Update
1353 copyright.
1354 (HOST_LONG_DOUBLE_FORMAT): Delete macro.
1355 * config/pa/xm-linux.h: Delete empty file.
1356 * config/pa/linux.mh (XM_FILE): Delete.
1357 * config/i386/xm-i386.h: Delete empty file.
1358 * config/i386/xm-nbsd.h, config/i386/xm-go32.h: Do not include
1359 "i386/xm-i386.h".
1360 * config/i386/obsdaout.mh (XM_FILE): Delete.
1361 * config/i386/obsd64.mh (XM_FILE): Delete.
1362 * config/i386/fbsd64.mh (XM_FILE): Delete.
1363 * config/i386/nto.mh (XM_FILE): Delete.
1364 * config/i386/obsd.mh (XM_FILE): Delete.
1365 * config/i386/linux64.mh (XM_FILE): Delete.
1366 * config/i386/linux.mh (XM_FILE): Delete.
1367 * config/i386/i386sol2.mh (XM_FILE): Delete.
1368 * config/i386/i386gnu.mh (XM_FILE): Delete.
1369 * config/i386/fbsd.mh (XM_FILE): Delete.
1370 * config/i386/nbsd64.mh (XM_FILE): Delete.
1371
1372 2004-07-29 Andrew Cagney <cagney@gnu.org>
1373
1374 * config/pa/xm-linux.h: Do not include "floatformat.h".
1375 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1376 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
1377 * config/i386/xm-i386.h: Do not include "floatformat.h".
1378 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1379 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
1380 * doublest.c (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1381 (HOST_LONG_DOUBLE_FORMAT): Delete macros. Use
1382 GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT and
1383 GDB_HOST_LONG_DOUBLE_FORMAT instead.
1384 * configure.in (GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT)
1385 (GDB_HOST_LONG_DOUBLE_FORMAT): Define.
1386 * configure, config.in: Regenerate.
1387 * configure.host (gdb_host_float_format, gdb_host_double_format)
1388 (gdb_host_long_double_format): Set according to the host.
1389
1390 2004-07-29 Andrew Cagney <cagney@gnu.org>
1391
1392 * Makefile.in (CONFIG_CLEAN): Delete duplicate definition.
1393
1394 2004-07-28 Andrew Cagney <cagney@gnu.org>
1395
1396 * PROBLEMS: Mention threads/1650.
1397 * NEWS: Mention the NPTL fix.
1398
1399 2004-07-28 Andrew Cagney <cagney@gnu.org>
1400
1401 * cli/cli-decode.c (add_setshow_cmd): Delete function.
1402 (add_setshow_cmd_full): Make static.
1403 * command.h (add_setshow_cmd, add_setshow_cmd_full): Delete.
1404 (add_setshow_filename_cmd, add_setshow_string_cmd): Declare.
1405 * cli/cli-decode.c (add_setshow_filename_cmd)
1406 (add_setshow_string_cmd): New functions.
1407 * nto-tdep.c (_initialize_nto_tdep): Update. Fix parameters.
1408 * mips-tdep.c (_initialize_mips_tdep): Update.
1409 * m32r-rom.c (_initialize_m32r_rom): Update. Update copyright.
1410 * cli/cli-logging.c (_initialize_cli_logging): Update.
1411 * complaints.c (_initialize_complaints): Update.
1412 * remote.c (_initialize_remote): Update.
1413
1414 2004-07-28 Andrew Cagney <cagney@gnu.org>
1415
1416 * cli/cli-decode.c (add_setshow_zinteger_cmd)
1417 (add_setshow_cmd, add_setshow_auto_boolean_cmd)
1418 (add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
1419 print parameters. Make string parameters constant.
1420 * command.h: Update. Update copyright.
1421 * remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
1422 * observer.c (_initialize_observer): Ditto.
1423 * frame.c (_initialize_frame): Ditto.
1424 * complaints.c (_initialize_complaints): Ditto.
1425 * maint.c (_initialize_maint_cmds): Ditto.
1426 * target.c (initialize_targets): Ditto.
1427 * cli/cli-logging.c (_initialize_cli_logging): Ditto.
1428 * infcall.c (_initialize_infcall): Ditto.
1429 * arm-tdep.c (_initialize_arm_tdep): Ditto.
1430 * m32r-rom.c (_initialize_m32r_rom): Ditto.
1431 * remote-rdi.c (_initialize_remote_rdi): Ditto.
1432 * d10v-tdep.c (_initialize_d10v_tdep): Ditto.
1433 * mips-tdep.c (_initialize_mips_tdep): Ditto.
1434
1435 2004-07-28 Andrew Cagney <cagney@gnu.org>
1436
1437 * gdbtypes.c (lookup_primitive_typename): Delete function.
1438 * gdbtypes.h (lookup_primitive_typename): Delete declaration.
1439 * ada-lex.l: Use language_lookup_primitive_type_by_name.
1440 * gdbtypes.c (lookup_typename): Ditto.
1441 * f-exp.y (yylex): Ditto.
1442 * c-exp.y (yylex): Ditto, eliminate assignment in "if".
1443
1444 * scm-lang.c (c_builtin_types): Delete extern declaration.
1445 (scm_language_defn): Replace
1446 string_char_type and primitive_type_vector with
1447 la_language_arch_info.
1448 * jv-lang.c (java_language_defn): Replace
1449 string_char_type and primitive_type_vector with
1450 la_language_arch_info.
1451 * config/i386/i386sco4.mh (NATDEPFILES): Remove reference to
1452 c_builtin_types in comment.
1453 * c-lang.h (struct language_arch_info): Declare opaque.
1454 (c_language_arch_info): Declare.
1455 (c_builtin_types): Delete declaration.
1456 * c-lang.c (c_language_arch_info): Set string_char_type to
1457 builtin_char, not builtin_true_char. Make global.
1458 (c_builtin_types): Delete array.
1459 (asm_language_defn, minimal_language_defn): Replace
1460 string_char_type and primitive_type_vector with
1461 la_language_arch_info.
1462
1463 2004-07-28 Andrew Cagney <cagney@gnu.org>
1464
1465 * gdbtypes.h (struct builtin_type): Rename true_char to
1466 builtin_true_char.
1467 * gdbtypes.c (gdbtypes_post_init): Update.
1468 * c-lang.c (arch_info): New function.
1469 (enum c_primitive_types): New enum.
1470 (c_language_defn): Instead of string_char_type and
1471 primitive_type_vector set la_language_arch_info.
1472
1473 2004-07-28 Andrew Cagney <cagney@gnu.org>
1474
1475 * language.h (struct language_arch_info): Fix typo
1476 s/primative/primitive/.
1477 * gdbtypes.c (lookup_primitive_typename): Ditto.
1478 * language.c (language_lookup_primitive_type_by_name)
1479 (unknown_language_arch_info): Ditto.
1480
1481 2004-07-27 Andrew Cagney <cagney@gnu.org>
1482
1483 * defs.h (enum language): Add nr_languages.
1484 * language.h (struct language_arch_info): Define.
1485 (struct language_defn): Add la_language_arch_info.
1486 (language_lookup_primative_type_by_name): Declare.
1487 (language_string_char_type): Declare.
1488 * language.c (_initialize_language, language_gdbarch_post_init)
1489 (struct language_gdbarch, language_gdbarch_data): Implement
1490 per-architecture language information.
1491 (unknown_language_arch_info, language_string_char_type)
1492 (language_lookup_primative_type_by_name): New functions.
1493 (unknown_language_defn, auto_language_defn)
1494 (local_language_defn): Set la_language_arch_info to
1495 unknown_language_arch_info.
1496 (unknown_builtin_types): Delete.
1497 * gdbtypes.c (lookup_primitive_typename): Use
1498 language_lookup_primative_type_by_name.
1499 (create_string_type): Use language_string_char_type.
1500 * values.c (value_from_string): Use language_string_char_type.
1501 * scm-lang.c (scm_language_defn): Add NULL la_language_arch_info.
1502 * p-lang.c (pascal_language_defn): Ditto.
1503 * m2-lang.c (m2_language_defn): Ditto.
1504 * jv-lang.c (java_language_defn): Ditto.
1505 * objc-lang.c (objc_language_defn): Ditto.
1506 * f-lang.c (f_language_defn): Ditto.
1507 * c-lang.c (c_language_defn, cplus_language_defn)
1508 (asm_language_defn, minimal_language_defn): Ditto.
1509
1510 2004-07-27 Andrew Cagney <cagney@gnu.org>
1511
1512 * gdbtypes.h (struct builtin_type): Declare.
1513 (builtin_type): Declare.
1514 * d10v-tdep.c (d10v_register_type): Use builtin_type.
1515 * gdbtypes.c (_initialize_gdbtypes): Register gdbtypes_post_init.
1516 (gdbtypes_post_init): New function.
1517 (builtin_type): New function.
1518
1519 2004-07-27 Kei Sakamoto <sakamoto.kei@renesas.com>
1520
1521 * remote-m32r-sdi.c: Fix breakpoint bug.
1522 (send_cmd, send_one_arg_cmd, send_two_arg_cmd, send_three_arg_cmd,
1523 recv_char_data, recv_long_data): New functions to replace communication
1524 sequences.
1525
1526 2004-07-26 Michael Chastain <mec.gnu@mindspring.com>
1527
1528 Document PR threads/1650.
1529 * PROBLEMS (Threads): Document problem with many threads
1530
1531 2004-07-26 Andrew Cagney <cagney@gnu.org>
1532
1533 * gdb-mi.el: Move from here ...
1534 * mi/gdb-mi.el: ... to here.
1535
1536 2004-07-26 Andrew Cagney <cagney@gnu.org>
1537
1538 Problem reported by Ashley Pittman <ashley@quadrics.com>.
1539 * main.c (captured_main): When in batch mode always detach.
1540
1541 2004-07-26 Andrew Cagney <cagney@gnu.org>
1542
1543 * MAINTAINERS: Mark the xstormy16, sh64, ns32k, mn10300, mcore,
1544 and h8300 as broken.
1545 * NEWS: END-OF-LIFE frame compatibility module.
1546 * PROBLEMS: For "Stack backtraces", remove powerpc, hppa and mips
1547 specific comments.
1548
1549 2004-07-26 Andrew Cagney <cagney@gnu.org>
1550
1551 * cli/cli-decode.c (deprecated_add_show_from_set): Deprecate.
1552 * xcoffsolib.c (_initialize_xcoffsolib): Update.
1553 * wince.c (_initialize_wince): Update.
1554 * win32-nat.c (_initialize_win32_nat): Update.
1555 * varobj.c (_initialize_varobj): Update.
1556 * valops.c (_initialize_valops): Update.
1557 * utils.c (initialize_utils, initialize_utils): Update.
1558 * tui/tui-win.c (_initialize_tui_win): Update.
1559 * top.c (init_main): Update.
1560 * symfile.c (_initialize_symfile): Update.
1561 * source.c (_initialize_source): Update.
1562 * somsolib.c (_initialize_som_solib): Update.
1563 * solib.c (_initialize_solib): Update.
1564 * solib-frv.c (_initialize_frv_solib): Update.
1565 * serial.c (_initialize_serial): Update.
1566 * ser-go32.c (_initialize_ser_dos, _initialize_ser_dos): Update.
1567 * remote.c (_initialize_remote, _initialize_remote): Update.
1568 * remote-vx.c (_initialize_vx): Update.
1569 * remote-utils.c (_initialize_sr_support): Update.
1570 * remote-sds.c (_initialize_remote_sds): Update.
1571 * remote-mips.c (_initialize_remote_mips): Update.
1572 * remote-e7000.c (_initialize_remote_e7000): Update.
1573 * proc-api.c (_initialize_proc_api): Update.
1574 * printcmd.c: Update.
1575 * parse.c (_initialize_parse): Update.
1576 * pa64solib.c (_initialize_pa64_solib): Update.
1577 * p-valprint.c (_initialize_pascal_valprint): Update.
1578 * monitor.c (_initialize_remote_monitors): Update.
1579 * mips-tdep.c (_initialize_mips_tdep): Update.
1580 * mcore-tdep.c (_initialize_mcore_tdep): Update.
1581 * maint.c (_initialize_maint_cmds): Update.
1582 * lin-lwp.c (_initialize_lin_lwp): Update.
1583 * language.c (_initialize_language): Update.
1584 * kod.c (_initialize_kod): Update.
1585 * infrun.c (set_schedlock_func, _initialize_infrun): Update.
1586 * i386-tdep.c (_initialize_i386_tdep): Update.
1587 * gdbtypes.c (build_gdbtypes, _initialize_gdbtypes): Update.
1588 * gdbarch.sh: Update.
1589 * gdbarch.c: Re-generate.
1590 * gdb-events.sh: Update.
1591 * gdb-events.c: Re-generate.
1592 * frame.c (_initialize_frame): Update.
1593 * exec.c: Update.
1594 * demangle.c (_initialize_demangler): Update.
1595 * dcache.c (_initialize_dcache): Update.
1596 * cris-tdep.c (_initialize_cris_tdep, cris_version_update): Update.
1597 * cp-valprint.c (_initialize_cp_valprint): Update.
1598 * corefile.c (_initialize_core): Update.
1599 * command.h: Update.
1600 * cli/cli-decode.h: Update.
1601 * cli/cli-cmds.c (init_cli_cmds): Update.
1602 * charset.c (_initialize_charset): Update.
1603 * breakpoint.c (_initialize_breakpoint): Update.
1604 * arm-tdep.c (_initialize_arm_tdep_initialize_arm_tdep): Update.
1605 * alpha-tdep.c (_initialize_alpha_tdep): Update.
1606 * aix-thread.c (_initialize_aix_thread): Update.
1607
1608 2004-07-24 Mark Kettenis <kettenis@gnu.org>
1609
1610 Partial fix for PR backtrace/1718.
1611 * i386-tdep.c (i386_analyze_frame_setup): Handle more instructions
1612 that GCC migrates into the prolugue. Don't handle any
1613 instructions that clobber %ebx.
1614
1615 2004-07-23 Andrew Cagney <cagney@gnu.org>
1616
1617 Use regcache_raw_collect instead of regcache_collect.
1618 * regcache.h (regcache_collect): Delete declaration.
1619 * regcache.c (regcache_colect): Delete function.
1620 * win32-nat.c (do_child_store_inferior_registers): Update.
1621 * sol-thread.c (sol_thread_store_registers): Update.
1622 * shnbsd-tdep.c (shnbsd_fill_reg): Update.
1623 * rs6000-nat.c (store_register): Update.
1624 * remote.c (store_register_using_P, remote_store_registers): Update.
1625 * ppcnbsd-tdep.c (ppcnbsd_fill_reg): Update.
1626 * ppc-linux-nat.c (store_altivec_register, store_spe_register)
1627 (fill_vrregset, store_spe_registers, fill_gregset)
1628 (fill_gregset): Update.
1629 * nto-procfs.c (procfs_store_registers): Update.
1630 * mipsnbsd-tdep.c (mipsnbsd_fill_reg): Update.
1631 * mips-linux-tdep.c (fill_gregset, mips64_fill_gregset): Update.
1632 * m68klinux-nat.c (store_register, fill_gregset): Update.
1633 * m68k-tdep.c (fill_gregset): Update.
1634 * infptrace.c (store_register): Update.
1635 * i386-nto-tdep.c (i386nto_regset_fill): Update.
1636 * i386-linux-nat.c (store_register, fill_gregset): Update.
1637 * hppa-linux-nat.c (fill_gregset): Update.
1638 * go32-nat.c (store_register): Update.
1639 * armnbsd-nat.c (store_register, store_regs, store_fp_register)
1640 (store_fp_regs): Update.
1641 * arm-linux-nat.c (store_nwfpe_single, store_nwfpe_double)
1642 (store_nwfpe_extended, store_fpregister, store_fpregs)
1643 (store_register, store_regs, fill_gregset, fill_fpregset): Update.
1644 * alpha-tdep.c (alpha_fill_int_regs, alpha_fill_fp_regs): Update.
1645 * aix-thread.c (fill_gprs64, fill_fprs, fill_sprs64, fill_sprs32)
1646 (store_regs_user_thread, store_regs_kernel_thread): Update.
1647
1648 2004-07-24 Mark Kettenis <kettenis@gnu.org>
1649
1650 * dwarf2-frame.c (struct dwarf2_cie): Delete `addr_size' member.
1651 (decode_frame_entry_1): Use DW_EH_PE_absptr as default for CIE
1652 encoding.
1653 (dwarf2_build_frame_info): Adjust for removal of `addr_size'
1654 member of `struct comp_unit'.
1655
1656 2004-07-23 Andrew Cagney <cagney@gnu.org>
1657
1658 * infrun.c (handle_inferior_event): Separate the STEP_OVER_ALL and
1659 DEPRECATED_IGNORE_HELPER_CALL cases, only #ifdef the latter.
1660
1661 2004-07-23 Martin Hunt <hunt@redhat.com>
1662 Kevin Buettner <kevinb@redhat.com>
1663
1664 * dwarf2-frame.c (execute_cfa_program): Fix typo in which the
1665 alignment was being added to the offset instead of multiplied.
1666
1667 2004-07-23 Mark Kettenis <kettenis@gnu.org>
1668
1669 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Adjust for
1670 changed signal trampoline in OpenBSD 3.5-current.
1671
1672 * sparc64nbsd-nat.c: Include "regcache.h", <sys/types.h>,
1673 <machine/pcb.h> and "bsd-kvm.h".
1674 (sparc64nbsd_supply_pcb): New function.
1675 (_initialize_sparc64nbsd_nat): Renamed from
1676 _initialize_sparcnbsd_nat. Enable libkvm interface.
1677 * Makefile.in (sparc64nbsd-nat.o): Update dependencies.
1678 * config/sparc/nbsd64.mh (NATDEPFILES): Add bsd-kvm.o
1679 (LOADLIBES): New variable.
1680
1681 * config/sparc/obsd64.mt (TDEPFILES): Add sparcobsd-tdep.o.
1682
1683 * sparcnbsd-nat.c (sparc32nbsd_supply_pcb): Fix typo in comment.
1684
1685 2004-07-21 Andrew Cagney <cagney@gnu.org>
1686
1687 Use regcache_raw_supply instead of supply_register.
1688 * regcache.h (supply_register): Delete declaration.
1689 * regcache.c (supply_register): Delete function.
1690 * wince.c (do_child_fetch_inferior_registers): Update.
1691 * win32-nat.c (do_child_fetch_inferior_registers)
1692 (fetch_elf_core_registers): Update.
1693 * v850ice.c (v850ice_fetch_registers): Update.
1694 * thread-db.c (thread_db_store_registers): Update.
1695 * sol-thread.c (sol_thread_store_registers): Update.
1696 * shnbsd-tdep.c (shnbsd_supply_reg): Update.
1697 * rs6000-nat.c (fetch_register): Update.
1698 * rom68k-rom.c (rom68k_supply_one_register): Update.
1699 * remote.c (remote_wait, remote_async_wait): Update.
1700 * remote-st.c (get_hex_regs): Update.
1701 * remote-sim.c (gdbsim_fetch_register): Update.
1702 * remote-sds.c (sds_fetch_registers): Update.
1703 * remote-rdp.c (remote_rdp_fetch_register): Update.
1704 * remote-rdi.c (arm_rdi_fetch_registers): Update.
1705 * remote-mips.c (mips_wait, mips_fetch_registers): Update.
1706 * remote-m32r-sdi.c (m32r_fetch_register): Update.
1707 * remote-hms.c (init_hms_cmds): Update.
1708 * remote-est.c (init_est_cmds): Update.
1709 * remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
1710 (e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
1711 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
1712 * ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
1713 (fetch_register, supply_vrregset, supply_vrregset)
1714 (fetch_spe_registers): Update.
1715 * ppc-bdm.c (bdm_ppc_fetch_registers): Update.
1716 * monitor.c (monitor_supply_register): Update.
1717 * mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
1718 * mipsnbsd-tdep.c (mipsnbsd_supply_reg)
1719 (mipsnbsd_supply_fpreg): Update.
1720 * mips-nat.c (fetch_inferior_registers)
1721 (fetch_core_registers): Update.
1722 * mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
1723 (supply_fpregset, mips64_supply_gregset)
1724 (mips64_supply_fpregset): Update.
1725 * m68klinux-nat.c (fetch_register, supply_gregset)
1726 (supply_fpregset): Update.
1727 * m68k-tdep.c (supply_gregset, supply_fpregset): Update.
1728 * m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
1729 * lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
1730 * irix5-nat.c (supply_gregset, supply_fpregset): Update.
1731 * infptrace.c (fetch_register): Update.
1732 * ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
1733 * ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
1734 * i386gnu-nat.c (fetch_fpregs, supply_gregset)
1735 (gnu_fetch_registers, gnu_store_registers): Update.
1736 * i386-nto-tdep.c (i386nto_supply_gregset): Update.
1737 * i386-linux-nat.c (fetch_register, supply_gregset)
1738 (dummy_sse_values): Update.
1739 * hpux-thread.c (hpux_thread_fetch_registers): Update.
1740 * hppah-nat.c (fetch_register): Update.
1741 * hppa-linux-nat.c (fetch_register, supply_gregset)
1742 (supply_fpregset): Update.
1743 * go32-nat.c (fetch_register): Update.
1744 * dve3900-rom.c (fetch_bitmapped_register)
1745 (_initialize_r3900_rom): Update.
1746 * cris-tdep.c (supply_gregset): Update.
1747 * abug-rom.c (init_abug_cmds): Update.
1748 * core-aout.c (fetch_core_registers): Update.
1749 * armnbsd-nat.c (supply_gregset, supply_fparegset)
1750 (fetch_register, fetch_fp_register): Update.
1751 * arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
1752 (fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
1753 (fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
1754 * alphanbsd-tdep.c (fetch_core_registers): Update.
1755 * alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
1756 * alpha-nat.c (fetch_osf_core_registers)
1757 (fetch_osf_core_registers, fetch_osf_core_registers): Update.
1758 * aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
1759 (supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
1760
1761 2004-07-21 Andrew Cagney <cagney@gnu.org>
1762
1763 * PROBLEMS: Mention breakpoints/1702.
1764 * NEWS: For signal trampolines, cite s390 GNU/Linux as a system
1765 that is known to work.
1766
1767 2004-07-21 Andrew Cagney <cagney@gnu.org>
1768
1769 * config/mips/tm-mips.h (DEPRECATED_IGNORE_HELPER_CALL): Deprecate.
1770 * mips-tdep.c (mips_dump_tdep, mips_ignore_helper): Update.
1771 * infrun.c (DEPRECATED_IGNORE_HELPER_CALL): Delete macro.
1772 (handle_inferior_event): Wrap call to deprecated
1773 IGNORE_HELPER_CALL in #ifdef.
1774 * config/mips/tm-nbsd.h: Update.
1775
1776 2004-07-20 Jim Blandy <jimb@redhat.com>
1777
1778 * rs6000-tdep.c (rs6000_gdbarch_init): The register set used for
1779 bfd_mach_ppc has no segment registers.
1780
1781 Include PowerPC SPR numbers for special-purpose registers.
1782 * rs6000-tdep.c (struct reg): Add new member, 'spr_num'.
1783 (R, R4, R8, R16, F, P, R32, R64, R0): Include value for
1784 new member in initializer.
1785 (S, S4, SN4, S64): New macros for defining special-purpose
1786 registers.
1787 (PPC_UISA_SPRS, PPC_UISA_NOFP_SPRS, PPC_OEA_SPRS, registers_power,
1788 registers_403, registers_403GC, registers_505, registers_860,
1789 registers_601, registers_602, registers_603, registers_604,
1790 registers_750, registers_e500): Use them.
1791
1792 * rs6000-tdep.c (rs6000_gdbarch_init): Delete variable 'power';
1793 replace references with expression used to initialize variable.
1794
1795 2004-07-20 Andrew Cagney <cagney@gnu.org>
1796
1797 * breakpoint.c (deprecated_read_memory_nobpt): Rename
1798 read_memory_nobpt.
1799 * sparc-linux-tdep.c (sparc_linux_sigtramp_start): Update.
1800 * s390-tdep.c (s390_readinstruction, s390_in_function_epilogue_p)
1801 (s390_sigtramp_frame_sniffer): Update.
1802 * mn10300-tdep.c (mn10300_analyze_prologue): Update.
1803 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Update.
1804 * mips-tdep.c (mips_fetch_instruction, mips16_fetch_instruction)
1805 (mips32_fetch_instruction): Update.
1806 * mcore-tdep.c (get_insn): Update.
1807 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Update.
1808 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Update.
1809 * i386ly-tdep.c (i386lynx_saved_pc_after_call): Update.
1810 * i386-linux-tdep.c (i386_linux_sigtramp_start)
1811 (i386_linux_rt_sigtramp_start): Update.
1812 * i386-linux-nat.c (child_resume): Update.
1813 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Update.
1814 * hppa-linux-tdep.c (insns_match_pattern): Update.
1815 * gdbcore.h: Update.
1816 * frv-tdep.c (frv_gdbarch_adjust_breakpoint_address): Update.
1817 * frame.c (safe_frame_unwind_memory): Update.
1818 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Update.
1819 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Update.
1820 * alpha-tdep.c (alpha_read_insn): Update.
1821
1822 2004-07-20 Andrew Cagney <cagney@gnu.org>
1823
1824 * tramp-frame.h (struct tramp_frame): Change "insn" to a struct
1825 containing both bytes and mask. Add "frame_type".
1826 * tramp-frame.c (tramp_frame_start): Update.
1827 (tramp_frame_prepend_unwinder): Update.
1828 * mips-linux-tdep.c (mips_linux_o32_sigframe)
1829 (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
1830 (mips_linux_n64_rt_sigframe): Update. Make "static const".
1831 * ppcnbsd-tdep.c (tramp_frame ppcnbsd_sigtramp): Update.
1832
1833 2004-07-19 Eli Zaretskii <eliz@gnu.org>
1834
1835 * config/djgpp/fnchange.lst: Add remapping for bfd/elf32-cr*.c,
1836 bfd/elf32-sh-symbian.c, bfd/elf32-sh64-com.c,
1837 sim/testsuite/sim/mips/hilo-hazard-[123].s, and
1838 sim/testsuite/sim/mips/fpu64-ps-sb1.s.
1839
1840 2004-07-17 Andrew Cagney <cagney@gnu.org>
1841
1842 * NEWS, PROBLEMS: Update for 6.2.
1843
1844 * README: Update to 6.2.
1845
1846 * utils.c (xvasprintf): Call xstrvprintf.
1847
1848 * parse.c: Update copyright.
1849 (null_post_parser): Eliminate ARGSUSED.
1850
1851 * ppc-linux-nat.c (store_spe_registers): Eliminate K&R C.
1852 * tui/tui-win.c (tui_get_cmd_list): Ditto.
1853 * symfile-mem.c (_initialize_symfile_mem): Ditto.
1854
1855 * ppc-linux-tdep.c (ppc_linux_init_abi): Add [sic] to Linux.
1856 * ppc-linux-nat.c: Use "Linux kernel".
1857 * hppa-linux-tdep.c: Use GNU/Linux.
1858 * hppa-linux-nat.c: Use GNU/Linux.
1859 * dwarfread.c: Add [sic] to use of Linux.
1860
1861 * hppa-linux-nat.c: Do not include <string.h>.
1862 (supply_fpregset): Remove "register" attribute.
1863
1864 * solib-frv.c (fetch_loadmap): Use xfree, not free.
1865
1866 2004-07-17 Mark Kettenis <kettenis@gnu.org>
1867
1868 * configure.in: Define _MSE_INT_H on Solaris 9 too.
1869 * configure, config.in: Regenerated.
1870
1871 * vaxbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
1872 "bsd-kvm.h".
1873 (vaxbsd_supply_pcb): New function.
1874 (_initialize_vaxbsd_nat): New prototype and function.
1875 * config/vax/nbsdaout.mh (NATDEPFILES): Add bsd-kvm.o, solib.o and
1876 solib-sunos.o.
1877 (LOADLIBES): New variable.
1878 * config/vax/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
1879 (LOADLIBES): New variable.
1880 * config/vax/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
1881 (LOADLIBES): New variable.
1882 * Makefile.in (vaxbsd-nat.o): Update dependencies.
1883
1884 2004-07-16 Andrew Cagney <cagney@gnu.org>
1885
1886 * defs.h (event_loop_p): Replace variable declaration with macro,
1887 always 1.
1888 * main.c (captured_main): Delete options "-async" and "-noasync".
1889 (event_loop_p): Delete variable.
1890 * NEWS: Mention that "-async" and "-noasync" were removed.
1891
1892 2004-07-16 Andrew Cagney <cagney@gnu.org>
1893
1894 * remote-m32r-sdi.c: Re-indent.
1895
1896 2004-07-16 Jim Blandy <jimb@redhat.com>
1897
1898 * ppc-tdep.h (ppc_spr_asr): Add missing OEA SPR.
1899 (ppc_spr_mi_dbcam, ppc_spr_mi_dbram0, ppc_spr_mi_dbram1)
1900 (ppc_spr_md_cam, ppc_spr_md_ram0, ppc_spr_md_ram1): Add
1901 missing MPC823 SPRs.
1902 (ppc_spr_m_twb): Renamed from ppc_spr_md_twb; the old name was
1903 incorrect. (This was corrected in GDB's register name tables on
1904 2004-07-14.)
1905
1906 * rs6000-tdep.c (registers_602): Correct register name: "esassr"
1907 should be "esasrr" ("ESA Save and Restore Register").
1908
1909 2004-07-16 Andrew Cagney <cagney@gnu.org>
1910
1911 * infrun.c (insert_step_resume_breakpoint): Delete gdb_assert
1912 calls, no longer applicable. Update comments and rename parameter
1913 "step_frame" to "return_frame".
1914
1915 2004-07-16 Andrew Cagney <cagney@gnu.org>
1916
1917 * frame.c (fprint_field): New function.
1918 (fprint_frame_id): Use fprint_field.
1919
1920 2004-07-15 Joel Brobecker <brobecker@gnat.com>
1921
1922 * ada-lang.c (ada_language_defn): Remove commented out code.
1923
1924 2004-07-15 Jim Blandy <jimb@redhat.com>
1925
1926 * ppc-tdep.h (struct gdbarch_tdep): New member: ppc_sr0_regnum.
1927 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it.
1928
1929 2004-07-14 Jim Blandy <jimb@redhat.com>
1930
1931 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): Delete; unused.
1932
1933 * ppc-tdep.h (ppc_num_vrs): New enum constant.
1934
1935 * ppc-tdep.h (ppc_num_srs): New enum constant.
1936
1937 * ppc-tdep.h (ppc_spr_mq, ppc_spr_xer, ppc_spr_rtcu, ppc_spr_rtcl)
1938 (ppc_spr_lr, ppc_spr_ctr, ppc_spr_cnt, ppc_spr_dsisr, ppc_spr_dar)
1939 (ppc_spr_dec, ppc_spr_sdr1, ppc_spr_srr0, ppc_spr_srr1)
1940 (ppc_spr_eie, ppc_spr_eid, ppc_spr_nri, ppc_spr_sp, ppc_spr_cmpa)
1941 (ppc_spr_cmpb, ppc_spr_cmpc, ppc_spr_cmpd, ppc_spr_icr)
1942 (ppc_spr_der, ppc_spr_counta, ppc_spr_countb, ppc_spr_cmpe)
1943 (ppc_spr_cmpf, ppc_spr_cmpg, ppc_spr_cmph, ppc_spr_lctrl1)
1944 (ppc_spr_lctrl2, ppc_spr_ictrl, ppc_spr_bar, ppc_spr_vrsave)
1945 (ppc_spr_sprg0, ppc_spr_sprg1, ppc_spr_sprg2, ppc_spr_sprg3)
1946 (ppc_spr_ear, ppc_spr_tbl, ppc_spr_tbu, ppc_spr_pvr)
1947 (ppc_spr_spefscr, ppc_spr_ibat0u, ppc_spr_ibat0l, ppc_spr_ibat1u)
1948 (ppc_spr_ibat1l, ppc_spr_ibat2u, ppc_spr_ibat2l, ppc_spr_ibat3u)
1949 (ppc_spr_ibat3l, ppc_spr_dbat0u, ppc_spr_dbat0l, ppc_spr_dbat1u)
1950 (ppc_spr_dbat1l, ppc_spr_dbat2u, ppc_spr_dbat2l, ppc_spr_dbat3u)
1951 (ppc_spr_dbat3l, ppc_spr_ic_cst, ppc_spr_ic_adr, ppc_spr_ic_dat)
1952 (ppc_spr_dc_cst, ppc_spr_dc_adr, ppc_spr_dc_dat, ppc_spr_dpdr)
1953 (ppc_spr_dpir, ppc_spr_immr, ppc_spr_mi_ctr, ppc_spr_mi_ap)
1954 (ppc_spr_mi_epn, ppc_spr_mi_twc, ppc_spr_mi_rpn, ppc_spr_mi_cam)
1955 (ppc_spr_mi_ram0, ppc_spr_mi_ram1, ppc_spr_md_ctr, ppc_spr_m_casid)
1956 (ppc_spr_md_ap, ppc_spr_md_epn, ppc_spr_md_twb, ppc_spr_md_twc)
1957 (ppc_spr_md_rpn, ppc_spr_m_tw, ppc_spr_md_dbcam, ppc_spr_md_dbram0)
1958 (ppc_spr_md_dbram1, ppc_spr_ummcr0, ppc_spr_upmc1, ppc_spr_upmc2)
1959 (ppc_spr_usia, ppc_spr_ummcr1, ppc_spr_upmc3, ppc_spr_upmc4)
1960 (ppc_spr_zpr, ppc_spr_pid, ppc_spr_mmcr0, ppc_spr_pmc1)
1961 (ppc_spr_sgr, ppc_spr_pmc2, ppc_spr_dcwr, ppc_spr_sia)
1962 (ppc_spr_mmcr1, ppc_spr_pmc3, ppc_spr_pmc4, ppc_spr_sda)
1963 (ppc_spr_tbhu, ppc_spr_tblu, ppc_spr_dmiss, ppc_spr_dcmp)
1964 (ppc_spr_hash1, ppc_spr_hash2, ppc_spr_icdbdr, ppc_spr_imiss)
1965 (ppc_spr_esr, ppc_spr_icmp, ppc_spr_dear, ppc_spr_rpa)
1966 (ppc_spr_evpr, ppc_spr_cdbcr, ppc_spr_tsr, ppc_spr_602_tcr)
1967 (ppc_spr_403_tcr, ppc_spr_ibr, ppc_spr_pit, ppc_spr_esasrr)
1968 (ppc_spr_tbhi, ppc_spr_tblo, ppc_spr_srr2, ppc_spr_sebr)
1969 (ppc_spr_srr3, ppc_spr_ser, ppc_spr_hid0, ppc_spr_dbsr)
1970 (ppc_spr_hid1, ppc_spr_iabr, ppc_spr_dbcr, ppc_spr_iac1)
1971 (ppc_spr_dabr, ppc_spr_iac2, ppc_spr_dac1, ppc_spr_dac2)
1972 (ppc_spr_l2cr, ppc_spr_dccr, ppc_spr_ictc, ppc_spr_iccr)
1973 (ppc_spr_thrm1, ppc_spr_pbl1, ppc_spr_thrm2, ppc_spr_pbu1)
1974 (ppc_spr_thrm3, ppc_spr_pbl2, ppc_spr_fpecr, ppc_spr_lt)
1975 (ppc_spr_pir, ppc_spr_pbu2): New enum constants for PowerPC
1976 special-purpose register numbers.
1977
1978 * rs6000-tdep.c (registers_860): Correct register name. (No PPC
1979 manual mentions 'md_twb', but many mention 'm_twb', and at that
1980 point in the register list.)
1981
1982 2004-07-14 Andrew Cagney <cagney@gnu.org>
1983
1984 * utils.c (internal_warning_problem): Fix typo, "internal-warning"
1985 instead of "internal-error".
1986
1987 2004-07-10 Joel Brobecker <brobecker@gnat.com>
1988
1989 * hppa-hpux-tdep.c: Fix a compilation failure due to a comment
1990 that was inserted inside a comment.
1991
1992 2004-07-10 Randolph Chung <tausq@debian.org>
1993
1994 * hppa-hpux-tdep.c (hppa_hpux_som_find_global_pointer): New
1995 function.
1996 (hppa_hpux_push_dummy_code): New function.
1997 (hppa_hpux_init_abi): Set push_dummy_code and call_dummy_location.
1998 Set find_global_pointer method.
1999
2000 2004-07-10 Mark Kettenis <kettenis@gnu.org>
2001
2002 * NEWS: Mention BSD libkvm interface.
2003
2004 2004-07-10 Michael Snyder <msnyder@redhat.com>
2005
2006 * symfile.c (generic_load): Comment typo.
2007 * stack.c (get_selected_block): Ditto.
2008 * regcache.c (regcache_cooked_read): Ditto.
2009 * monitor.c (monitor_debug): Ditto.
2010 * mips-tdep.c (mips_read_pc): Ditto.
2011 * i386-linux-nat.c (ps_get_thread_area): Ditto.
2012 * gdb_mbuild.sh: Ditto.
2013 * gdbarch.sh: Ditto.
2014 * gdbarch.h: Ditto.
2015
2016 2004-07-09 Paul N. Hilfinger <Hilfinger@gnat.com>
2017
2018 * ada-tasks.c: Remove file.
2019
2020 Remove ARI problems:
2021
2022 * ada-exp.y (write_var_from_sym): Reformat to put operator at
2023 beginning of line.
2024
2025 * ada-lang.c (MAX_OF_SIZE): Rename max_of_size.
2026 Add comment.
2027 Add comment concerning MAX_OF_TYPE and MIN_OF_TYPE.
2028 (MIN_OF_SIZE): Rename min_of_size. Add comment.
2029 (UMAX_OF_SIZE): Renmae umax_of_size. Add comment.
2030 (UMIN_OF_SIZE): Remove.
2031 (max_of_type): New function to replace orphan macro in gdbtypes.h
2032 (min_of_type): Ditto.
2033 (discrete_type_high_bound): Use max_of_type.
2034 (discrete_type_low_bound): Use min_of_type.
2035 (possible_user_operator_p): Move operator to beginning of line.
2036 (ada_is_variant_part): Ditto.
2037 (ensure_lval): Rewrite to avoid deprecated operations.
2038 (ada_finish_decode_line_1): Use gdbarch_convert_from_func_ptr_addr
2039 rather than adding DEPRECATED_FUNCTION_START_OFFSET.
2040 (ada_enum_name): Remove assignments in 'if' statements.
2041 (build_ada_types): Add gdbarch parameter.
2042 (_initialize_ada_language): Replace deprecated_register_gdbarch_swap
2043 with gdbarch_data_register_post_init.
2044 Use add_setshow_uinteger_cmd rather than add_set_cmd and
2045 add_show_from_set.
2046
2047 * ada-valprint.c (inspect_it): Remove declaration.
2048 (repeat_count_threshold): Remove declaration.
2049 (ada_print_floating): Remove assignments in 'if' statements.
2050 (print_str): Move operator to beginning of line.
2051
2052 2004-07-08 Jim Blandy <jimb@redhat.com>
2053
2054 * rs6000-tdep.c (registers_powerpc_nofp): Unused; deleted.
2055
2056 2004-07-08 Bob Rossi <bob@brasko.net>
2057
2058 * symtab.c (lookup_symtab): check return value of symtab_to_fullname
2059
2060 2004-07-06 Jeff Johnston <jjohnstn@redhat.com>
2061
2062 * language.h (struct_language_defn): Add new function pointer:
2063 la_class_name_from_physname. Also add new prototype for
2064 language_class_name_from_physname.
2065 * language.c (language_class_name_from_physname): New function.
2066 (unk_lang_class_name): Ditto.
2067 (unknown_language_defn, auto_language_defn): Change
2068 to add unk_lang_class_name function pointer for
2069 la_class_name_from_physname.
2070 (local_language_defn): Ditto.
2071 * dwarf2read.c (guess_structure_name): Change to call
2072 language_class_name_from_physname.
2073 (determine_class_name): Ditto.
2074 * cp-support.c (class_name_from_physname): Renamed.
2075 (cp_class_name_from_physname): New name of function.
2076 * cp-support.h: Ditto.
2077 * c-lang.c (c_language_defn): Change to add NULL
2078 for class_name_from_physname function pointer.
2079 (cplus_language_defn): Change to add cp_class_name_from_physname.
2080 * jv-lang.c (java_class_name_physname): New function.
2081 (java_find_last_component): New static routine.
2082 (java_language_defn): Add java_class_name_from_physname pointer.
2083 * ada-lang.c (ada_language_defn): Change to add NULL
2084 for class_name_from_physname function pointer.
2085 * f-lang.c (f_language_defn): Ditto.
2086 * m2-lang.c (m2_language_defn): Ditto.
2087 * objc-lang.c (objc_language_defn): Ditto.
2088 * p-lang.c (pascal_language_defn): Ditto.
2089 * scm-lang.c (scm_language_defn): Ditto.
2090
2091 2004-07-06 Andrew Cagney <cagney@gnu.org>
2092
2093 Patch from Bart Robinson.
2094 * corelow.c (core_open): Add variable "flags", or in O_LARGEFILE.
2095 (O_LARGEFILE): Define to 0, if not defined.
2096
2097 2004-07-03 Mark Kettenis <kettenis@gnu.org>
2098
2099 * m68kbsd-nat.c: Include "gdbcore.h", <sys/types.h>,
2100 <machine/pcb.h> and "bsd-kvm.h".
2101 (PCB_REGS_FP, PCB_REGS_SP): Define if not already defined.
2102 (m68kbsd_supply_pcb): New function.
2103 (_initialize_m68kbsd_nat): New prototype and function.
2104 * Makefile.in (m68kbsd-nat.o): Update dependencies.
2105 * config/m68k/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
2106 (LOADLIBES): New variable.
2107 * config/m68k/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
2108 (LOADLIBES): New variable.
2109
2110 * bsd-kvm.c (bsd_kvm_cmdlist): Remove unecessary initialization.
2111
2112 2004-07-03 Mark Kettenis <kettenis@gnu.org>
2113
2114 * bsd-kvm.c: Include "cli/cli-cmds.h", "command.h", "value.h" and
2115 <sys/proc.h>.
2116 (bsd_kvm_cmdlist): New variable.
2117 (bsd_kvm_cmd, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd): New functions.
2118 (bsd_kvm_add_target): Register "kvm" command prefix, "kvm pcb"
2119 command and "kvm proc" command.
2120 * Makefile.in (bsd-kvm.o): Update dependencies.
2121
2122 2004-07-02 Mark Kettenis <kettenis@gnu.org>
2123
2124 * osabi.c: Update copyright year.
2125 (generic_elf_osabi_sniffer): Tweak comment. Look for OS-specific
2126 notes if EI_OSABI is set to ELFOSABI_HPUX.
2127
2128 2004-07-01 Michael Snyder <msnyder@redhat.com>
2129
2130 * win32-nat.c (core_dll_symbols_add): Re-indent a small section
2131 that seems to have gotten whacked out of line.
2132
2133 2004-07-01 Mark Kettenis <kettenis@gnu.org>
2134
2135 * dbxread.c (process_one_symbol) [PCC_SOL_BROKEN]: Remove dead
2136 code.
2137
2138 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
2139
2140 * ada-lang.c (decode_packed_array): Minor change to comment.
2141 (ada_value_slice_ptr): New function.
2142 (ada_value_slice): New function.
2143 (ada_evaluate_subexp): Remove XVS-suffix code from subscripting
2144 test. Don't know why it is there.
2145 Change slice code to use ada_value_slice_ptr and ada_value_slice, and
2146 to avoid dereferencing huge arrays from which one is slicing.
2147 (empty_array): Correct to return an array rather than
2148 a subrange value.
2149 * ada-valprint.c (print_optional_low_bound): Don't print lower bound
2150 on empty arrays (let'em use 'FIRST instead).
2151
2152 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
2153
2154 Address complaints from gdb_ari.sh:
2155
2156 * ada-exp.y: Include gdb_string.h rather than string.h.
2157 (convert_char_literal): Reformat declaration.
2158 * ada-lang.h: Include opaque struct declaration for struct frame_info.
2159 * ada-lex.l: Change use of free to xfree (the macro would do so
2160 anyway, but this is harmless).
2161 Include gdb_string.h rather than string.h.
2162 * ada-valprint.c (ada_val_print_stub): Change PTR => void*.
2163
2164 * ada-lang.c (parse): Remove K&Rism in parameter list.
2165 (is_name_suffix): Correct Linux => GNU/Linux in comment.
2166
2167 2004-06-30 Mark Kettenis <kettenis@gnu.org>
2168
2169 * dbxread.c (process_one_symbol) [SUN_FIXED_LBRAC_BUG]: Remove
2170 dead code.
2171
2172 2004-06-30 Mark Kettenis <kettenis@gnu.org>
2173
2174 * alphabsd-nat.c: Update copyright year.
2175 (getregs_supplies): Use ALPHA_PC_REGNUM instead of PC_REGNUM.
2176
2177 2004-06-29 Joel Brobecker <brobecker@gnat.com>
2178
2179 * i386-cygwin-tdep.c (i386_cygwin_skip_trampoline_code): New function.
2180 (i386_cygwin_in_solib_call_trampoline): New function.
2181 (i386_cygwin_init_abi): Initialize the in_solib_call_trampoline
2182 and skip_trampoline_code gdbarch methods.
2183
2184 2004-06-29 Jim Blandy <jimb@redhat.com>
2185
2186 * Makefile.in (gdb_callback_h): Renamed from callback_h to the
2187 name actually used in the dependency lists.
2188
2189 2004-06-29 Randolph Chung <tausq@debian.org>
2190
2191 * NEWS (New native configurations): Mention GNU/Linux/hppa.
2192
2193 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
2194
2195 * win32-nat.c (child_pid_to_exec_file): New function.
2196 (init_child_ops): Add child_pid_to_exec_file as to_pid_to_exec_file
2197 functionality.
2198
2199 2004-06-28 Andrew Cagney <cagney@gnu.org>
2200
2201 * defs.h (xstrvprintf): Declare.
2202 * utils.c (xstrvprintf): New function.
2203 (internal_vproblem, xstrprintf, xasprintf)
2204 (vfprintf_maybe_filtered, vfprintf_unfiltered): Use xstrvprintf.
2205 * serial.c (serial_printf): Ditto.
2206 * complaints.c (vcomplaint): Ditto.
2207
2208 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
2209
2210 * infcmd.c (attach_command): Move call to target_terminal_inferior
2211 behind loading symbol table.
2212
2213 2004-06-28 Andrew Cagney <cagney@gnu.org>
2214
2215 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Revert 2004-06-24
2216 change - add back extern deprecated_ui_loop_hook declaration.
2217
2218 2004-06-28 Andrew Cagney <cagney@gnu.org>
2219
2220 * xcoffsolib.c (xcoff_solib_address): Replace xasprintf with
2221 xstrprintf.
2222 * varobj.c (varobj_gen_name, create_child, c_name_of_child)
2223 (c_value_of_variable): Ditto.
2224 * utils.c (internal_vproblem): Ditto.
2225 * solib-aix5.c (build_so_list_from_mapfile): Ditto.
2226 * remote.c (add_packet_config_cmd): Ditto.
2227 * remote-rdp.c (rdp_set_command_line): Ditto.
2228 * regcache.c (regcache_dump): Ditto.
2229 * frv-tdep.c (new_variant, new_variant): Ditto.
2230 * fbsd-proc.c (child_pid_to_exec_file): Ditto.
2231 (fbsd_find_memory_regions): Ditto.
2232 * breakpoint.c (create_thread_event_breakpoint)
2233 (create_breakpoints): Ditto.
2234 * aix-thread.c (aix_thread_pid_to_str): Ditto.
2235 * ada-lang.c (is_package_name): Ditto. Also delete xmalloc call.
2236
2237 2004-06-28 Joel Brobecker <brobecker@gnat.com>
2238
2239 * ada-lang.c: Re-indent file, with some massaging to help indent
2240 a bit when the result is otherwise really too ugly.
2241
2242 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
2243
2244 * frame.h (struct frame_id): Change bit field type of stack_addr_p,
2245 code_addr_p and special_addr_p to 'unsigned int'.
2246
2247 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2248
2249 * i386v4-nat.c: Update copyright year and tweak comment.
2250 (regmap): Remove trailing comma.
2251 (supply_gregset): Rename local variable i to regnum. Call
2252 regcache_raw_supply instead of supply_register.
2253 (fill_gregset): Rename argument regno to regnum. Call
2254 regcache_raw_collect instead of regcache_collect.
2255
2256 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
2257
2258 * frame.h (struct frame_id): New fields stack_addr_p, code_addr_p
2259 and special_addr_p.
2260 (frame_id_build, frame_id_build_special): Update comments.
2261 (frame_id_build_wild): New prototype.
2262 * frame.c (frame_id_build, frame_id_build_special): Fill in new
2263 struct frame_id fields.
2264 (frame_id_build_wild): New function.
2265 (frame_id_eq, frame_id_inner): Use new struct frame_id fields.
2266
2267 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2268
2269 * config/djgpp/fnchange.lst: Add entries for hppabsd-nat.c and
2270 hppabsd-tdep.c.
2271
2272 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2273
2274 * ada-lang.c: Minor reformatting to conform to GNU coding standards.
2275
2276 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2277
2278 * ada-lang.c: Re-indent file.
2279
2280 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2281
2282 * ada-lang.c (symtab_symbol_info): Remove unused declaration.
2283 (no_symtab_msg): Likewise.
2284
2285 2004-06-27 Andreas Schwab <schwab@suse.de>
2286
2287 * source.c: Fix whitespace.
2288
2289 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2290
2291 * configure.in: Include <sys/param.h> for td_pcb test.
2292 * configure: Regenerated.
2293
2294 * i386nbsd-nat.c: New file.
2295 * Makefile.in (ALLDEPFILES): Add i386nbsd-nat.c, i386nbsd-tdep.c,
2296 i386obsd-nat.c and i386obsd-tdep.c.
2297 (i386nbsd-nat.o): New dependency.
2298 * config/i386/obsd.mh (NATDEPFILES): Add i386nbsd-nat.o and
2299 bsd-kvm.o.
2300 (LOADLIBES): New variable.
2301 * config/i386/nbsdelf.mh (NATDEPFILES): Add i386nbsd-nat.o and
2302 bsd-kvm.o.
2303 (LOADLIBES): New variable.
2304
2305 * config/i386/fbsd64.mh (NATDEPFILES): Add bsd-kvm.o.
2306 (LOADLIBES): New variable.
2307
2308 * bsd-kvm.c (bsd_kvm_fetch_registers): Directly return after
2309 fetching from BSD_KVM_PADDR. Correctly lookup address for
2310 "_thread0".
2311
2312 * amd64fbsd-nat.c: Include <sys/types.h, <machine/pcb.h> and
2313 "bsd-kvm.h".
2314 (amd64fbsd_supply_pcb): New funcion.
2315 (_initialize_amd64fbsd_nat): Enable libkvm interface.
2316
2317 2004-06-27 <david@streamline-computing.com>
2318
2319 Partial fix for PR cli/1056.
2320 * valarith.c: Check for zero in division and remainder
2321 evaluation.
2322
2323 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2324
2325 * i387-tdep.c: Remove excessive whitespace.
2326
2327 2004-06-26 Andrew Cagney <cagney@gnu.org>
2328
2329 * gdb-events.sh (deprecated_set_gdb_event_hooks): Deprecated.
2330 * gdb-events.h, gdb-events.c: Re-generate.
2331 * tui/tui-hooks.c (tui_install_hooks): Update.
2332 (tui_remove_hooks): Update.
2333 * mi/mi-cmd-break.c (mi_cmd_break_insert): Update.
2334
2335 2004-06-26 Mark Kettenis <kettenis@gnu.org>
2336
2337 * amd64fbsd-nat.c: Don't include <sys/procfs.h> and "gregset.h".
2338 (gregset_t, fpregset_t): Remove typedefs.
2339 (REG_OFFSET): Rename argument.
2340 (amd64bsd_r_reg_offset): Rename from reg_offset.
2341 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
2342 Remove functions.
2343 (_initialize_amd64fbsd_nat): Use amd64fbsd64_r_reg_offset instead
2344 of reg_offset.
2345 * Makefile.in (amd64fbsd-nat.o): Update dependencies.
2346
2347 * amd64-nat.c (amd64_supply_native_gregset): Fix comment.
2348
2349 * vax-tdep.c: Tweak comment.
2350
2351 Add OpenBSD/hppa support.
2352 * NEWS (New native configurations): Mention OpenBSD/hppa.
2353 * hppabsd-nat.c, hppabsd-tdep.c, config/pa/obsd.mh,
2354 config/pa/obsd.mt, config/pa/nm-obsd.h, config/pa/tm-bsd.h: New
2355 files.
2356 * Makefile.in (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
2357 (hppabsd-nat.o, hppabsd-tdep.c): New dependencies.
2358 * configure.host: Add hppa*-*-openbsd*.
2359 * configure.tgt: Add hppa*-*-openbsd*.
2360
2361 2004-06-25 Andrew Cagney <cagney@gnu.org>
2362
2363 * defs.h (deprecated_ui_loop_hook): Deprecated.
2364 * wince.c (child_wait): Update.
2365 * win32-nat.c (child_wait): Update.
2366 * v850ice.c (v850ice_wait): Update.
2367 * top.c (deprecated_ui_loop_hook): Update.
2368 * serial.h: Update.
2369 * ser-unix.c (do_hardwire_readchar, do_hardwire_readchar)
2370 (do_unix_readchar): Update.
2371 * ser-tcp.c (net_open): Update.
2372 * remote-sim.c (gdb_os_poll_quit): Update.
2373 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Update.
2374
2375 2004-06-24 Andrew Cagney <cagney@gnu.org>
2376
2377 * defs.h (deprecated_pre_add_symbol_hook)
2378 (deprecated_post_add_symbol_hook): Deprecated.
2379 * symfile.c (symbol_file_add_with_addrs_or_offsets)
2380 (symbol_file_add_with_addrs_or_offsets): Update references.
2381
2382 2004-06-24 Andrew Cagney <cagney@gnu.org>
2383
2384 * defs.h (post_add_symbol_hook, pre_add_symbol_hook)
2385 (ui_loop_hook, selected_frame_level_changed_hook): Declare.
2386 * wince.c (ui_loop_hook): Delete extern declaration.
2387 * win32-nat.c (ui_loop_hook): Delete extern declaration..
2388 * v850ice.c (ui_loop_hook): Delete extern declaration..
2389 * ser-unix.c (ui_loop_hook): Delete extern declaration..
2390 * ser-tcp.c (ui_loop_hook): Delete extern declaration..
2391 * remote-sim.c (ui_loop_hook): Delete extern declaration..
2392 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Delete extern.
2393 ui_loop_hook declaration.
2394
2395 2004-06-24 Andrew Cagney <cagney@gnu.org>
2396
2397 * objfiles.h (struct entry_info): Delete entry_func_lowpc and
2398 entry_func_highpc fields.
2399 * objfiles.c (init_entry_point_info): Do not clear
2400 entry_func_lowpc and entry_func_highpc.
2401 (objfile_relocate): Do not relocate entry_func_lowpc and
2402 entry_func_highpc.
2403 * dwarfread.c (read_func_scope): Do not set entry_func_lowpc and
2404 entry_func_highpc.
2405 * dwarf2read.c (read_func_scope): Do not set entry_func_lowpc and
2406 entry_func_highpc.
2407 * blockframe.c (legacy_frame_chain_valid): Replace tests against
2408 entry_func_lowpc and entry_func_highpc with call to
2409 inside_entry_func.
2410
2411 2004-06-24 Mark Kettenis <kettenis@gnu.org>
2412
2413 * sparc64-tdep.c (sparc64_store_arguments): Fix passing
2414 quad-precision floating point arguments in registers.
2415
2416 2004-06-24 Mark Kettenis <kettenis@gnu.org>
2417
2418 From Michael Mueller <m.mueller99@kay-mueller.de>:
2419 * sparc64-tdep.c (sparc64_frame_base_address): Take BIAS into
2420 account.
2421
2422 2004-06-22 Jeff Johnston <jjohnstn@redhat.com>
2423
2424 * infrun.c (handle_inferior_event): Initialize stopped_by_watchpoint
2425 to -1.
2426 * breakpoint.c (bpstat_stop_status): Move check for ignoring
2427 untriggered watchpoints to a separate if clause. Update function
2428 comment regarding STOPPED_BY_WATCHPOINT argument.
2429
2430 2004-06-22 Jim Blandy <jimb@redhat.com>
2431
2432 * gdbarch.sh: Doc fix.
2433
2434 2004-06-21 Martin Hunt <hunt@redhat.com>
2435 Kevin Buettner <kevinb@redhat.com>
2436
2437 * config/mips/tm-mips.h (SP_REGNUM): Delete define.
2438 * mips-tdep.h (MIPS_SP_REGNUM): Define.
2439 * mips-tdep.c (mips_gdbarch_init): Set SP_REGNUM via call
2440 to set_gdbarch_sp_regnum(). Use cooked register number.
2441 (SP_REGNUM): Replace all occurrences with MIPS_SP_REGNUM.
2442
2443 2004-06-21 Andrew Cagney <cagney@gnu.org>
2444
2445 * gdbarch.sh: When the macro field is empty, do not generate a
2446 macro definition. When the macro field is "=", generate the macro
2447 name from the upper-case function name.
2448 (NUM_REGS, NUM_PSEUDO_REGS, SP_REGNUM, PC_REGNUM, PS_REGNUM)
2449 (FP0_REGNUM, STAB_REG_TO_REGNUM, ECOFF_REG_TO_REGNUM)
2450 (DWARF_REG_TO_REGNUM, SDB_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM)
2451 (REGISTER_NAME, DEPRECATED_REGISTER_VIRTUAL_TYPE)
2452 (DEPRECATED_REGISTER_BYTES, DEPRECATED_REGISTER_BYTE)
2453 (DEPRECATED_REGISTER_RAW_SIZE, DEPRECATED_REGISTER_VIRTUAL_SIZE)
2454 (DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_FP_REGNUM)
2455 (DEPRECATED_TARGET_READ_FP, DEPRECATED_PUSH_ARGUMENTS)
2456 (DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP)
2457 (DEPRECATED_REGISTER_SIZE, CALL_DUMMY_LOCATION)
2458 (DEPRECATED_DO_REGISTERS_INFO, REGISTER_SIM_REGNO)
2459 (REGISTER_BYTES_OK, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER)
2460 (GET_LONGJMP_TARGET, DEPRECATED_INIT_FRAME_PC)
2461 (BELIEVE_PCC_PROMOTION, DEPRECATED_GET_SAVED_REGISTER)
2462 (CONVERT_REGISTER_P, REGISTER_TO_VALUE, VALUE_TO_REGISTER)
2463 (POINTER_TO_ADDRESS, ADDRESS_TO_POINTER, INTEGER_TO_ADDRESS)
2464 (DEPRECATED_POP_FRAME, DEPRECATED_STORE_STRUCT_RETURN)
2465 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE)
2466 (DEPRECATED_EXTRACT_RETURN_VALUE, DEPRECATED_STORE_RETURN_VALUE)
2467 (DEPRECATED_USE_STRUCT_CONVENTION)
2468 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
2469 (DEPRECATED_FRAME_INIT_SAVED_REGS)
2470 (DEPRECATED_INIT_EXTRA_FRAME_INFO, SKIP_PROLOGUE, INNER_THAN)
2471 (BREAKPOINT_FROM_PC, MEMORY_INSERT_BREAKPOINT)
2472 (MEMORY_REMOVE_BREAKPOINT, DECR_PC_AFTER_BREAK)
2473 (DEPRECATED_FUNCTION_START_OFFSET, FRAME_ARGS_SKIP)
2474 (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION, DEPRECATED_FRAME_CHAIN)
2475 (DEPRECATED_FRAME_CHAIN_VALID, DEPRECATED_FRAME_SAVED_PC)
2476 (DEPRECATED_FRAME_ARGS_ADDRESS, DEPRECATED_FRAME_LOCALS_ADDRESS)
2477 (DEPRECATED_SAVED_PC_AFTER_CALL, FRAME_NUM_ARGS)
2478 (DEPRECATED_STACK_ALIGN, DEPRECATED_REG_STRUCT_HAS_ADDR)
2479 (FRAME_RED_ZONE_SIZE, ADDR_BITS_REMOVE, SMASH_TEXT_ADDRESS)
2480 (SOFTWARE_SINGLE_STEP, SKIP_TRAMPOLINE_CODE)
2481 (IN_SOLIB_CALL_TRAMPOLINE, IN_SOLIB_RETURN_TRAMPOLINE)
2482 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL)
2483 (NAME_OF_MALLOC, CANNOT_STEP_BREAKPOINT)
2484 (HAVE_NONSTEPPABLE_WATCHPOINT, ADDRESS_CLASS_TYPE_FLAGS)
2485 (FETCH_POINTER_ARGUMENT): Replace the macro name with "=".
2486
2487 2004-06-21 Andrew Cagney <cagney@gnu.org>
2488
2489 * gdbarch.sh: For gdbarch_dump, print the "function" rather than
2490 macro name, and the function rather than macro value. Only wrap
2491 macro print statements in #ifdef. Move format logic to where it
2492 is needed.
2493 * gdbarch.c: Re-generate.
2494
2495 * gdbarch.sh (read): Delete "print_p" and "description", add
2496 "garbage_at_eol". Check for non-empty garbage at end-of-line.
2497 Delete references to print_p.
2498 (TARGET_ARCHITECTURE): Delete print predicate.
2499 * gdbarch.c: Re-generate.
2500
2501 * gdbarch.sh: Check that multi-arch methods do not provide a
2502 macro.
2503 (register_type, unwind_dummy_id, push_dummy_call, push_dummy_code)
2504 (print_registers_info, print_float_info, print_vector_info)
2505 (adjust_breakpoint_address, remote_translate_xfer_address)
2506 (construct_inferior_arguments, skip_solib_resolver, unwind_pc)
2507 (address_class_type_flags_to_name, unwind_sp): Remove the macro
2508 name from the multi-arch definition.
2509
2510 2004-06-20 Andrew Cagney <cagney@gnu.org>
2511
2512 * gdbarch.sh: Sort by the function, instead of macro name.
2513 * gdbarch.c: Re-generate.
2514
2515 2004-06-20 Andrew Cagney <cagney@gnu.org>
2516
2517 * gdbarch.sh: Use the function, instead of macro name in
2518 errors and the log file.
2519 (return_value): Remove stray ":" in spec.
2520
2521 * gdbarch.sh (RETURN_VALUE): Default to legacy_return_value.
2522 * gdbarch.h, gdbarch.c: Re-generate.
2523 * Makefile.in (arch-utils.o): Update dependencies.
2524 * values.c (using_struct_return): Move code calling
2525 USE_STRUCT_CONVENTION to legacy_return_value, simplify.
2526 * stack.c (return_command): Move code calling STORE_RETURN_VALUE
2527 to legacy_return_value, simplify.
2528 * infcmd.c (print_return_value): Move code calling
2529 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_RETURN_VALUE
2530 to legacy_return_value, simplify.
2531 * infcall.c (call_function_by_hand): Move code calling
2532 EXTRACT_RETURN_VALUE to legacy_return_value, simplify.
2533 * arch-utils.c: Update copyright. Include "gdbcore.h".
2534 (legacy_return_value): New function.
2535 * arch-utils.h: Update copyright.
2536 (legacy_return_value): Declare.
2537
2538 2004-06-20 Andrew Cagney <cagney@gnu.org>
2539
2540 * gdbarch.sh (DEPRECATED_USE_STRUCT_CONVENTION): Deprecated.
2541 * gdbarch.h, gdbarch.c: Re-generate.
2542 * values.c (using_struct_return): Update call.
2543 * mcore-tdep.c: Update comment.
2544 * infcall.c (call_function_by_hand): Update comment.
2545 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2546 * arch-utils.h (always_use_struct_convention): Update.
2547 * v850-tdep.c (v850_gdbarch_init): Update.
2548 * sh64-tdep.c (sh64_gdbarch_init): Update.
2549 * sh-tdep.c (sh_gdbarch_init): Update.
2550 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2551 * mips-tdep.c (mips_gdbarch_init): Update.
2552 * mcore-tdep.c (mcore_gdbarch_init): Update.
2553 * m32r-tdep.c (m32r_gdbarch_init): Update.
2554 * ia64-tdep.c (ia64_gdbarch_init): Update.
2555 * h8300-tdep.c (h8300_gdbarch_init): Update.
2556 * frv-tdep.c (frv_gdbarch_init): Update.
2557 * cris-tdep.c (cris_gdbarch_init): Update.
2558 * arm-tdep.c (arm_gdbarch_init): Update.
2559 * alpha-tdep.c (alpha_gdbarch_init): Update.
2560
2561 2004-06-18 Michael Chastain <mec.gnu@mindspring.com>
2562
2563 * PROBLEMS: Add more specific information, and a work-around,
2564 for PR gdb/1458.
2565
2566 2004-06-18 Andrew Cagney <cagney@gnu.org>
2567
2568 * gdbarch.sh (DEPRECATED_FUNCTION_START_OFFSET): Deprecated.
2569 * gdbarch.h, gdbarch.c: Re-generate.
2570 * ada-lang.c (ada_finish_decode_line_1): Update.
2571 * infrun.c (handle_inferior_event): Update.
2572 * infcall.c (find_function_addr): Update.
2573 * linespec.c (minsym_found): Update.
2574 * symtab.c (find_function_start_sal, skip_prologue_using_sal):
2575 Update.
2576 * blockframe.c (legacy_frameless_look_for_prologue): Update.
2577 * cli/cli-cmds.c (disassemble_command): Update.
2578 * vax-tdep.c (vax_gdbarch_init): Update.
2579
2580 2004-06-18 Mark Kettenis <kettenis@gnu.org>
2581
2582 * i386-tdep.c (i386_collect_fpregset): Fix comment.
2583
2584 2004-06-17 Andrew Cagney <cagney@gnu.org>
2585
2586 GDB 6.1.1 released from the GDB 6.1 branch.
2587 * NEWS: Merge in 6.1.1 NEWS from 6.1 branch.
2588 * PROBLEMS: Ditto.
2589
2590 2004-06-16 Daniel Jacobowitz <dan@debian.org>
2591
2592 PR gdb/1658
2593 * dwarf2read.c (dwarf_decode_lines): Read the length of the extended
2594 operation as a uleb128. Found by Michael Coulter.
2595
2596 2004-06-16 Paul N. Hilfinger <Hilfinger@gnat.com>
2597
2598 * ada-tasks.c: Rename build_task_list to ada_build_task_list, and
2599 make it non-static.
2600 * ada-lang.h (task_control_block): declaration moved from ada-task.c
2601 to ada-lang.h; this is needed to be able to implement the kill command
2602 in multi-task mode.
2603 (task_ptid): Ditto.
2604 (task_entry): Ditto.
2605 (task_list): Ditto.
2606 (ada_build_task_list): Ditto.
2607
2608 * ada-lang.c: Conditionalize routines and data structures related
2609 to breakpoints, exceptions, completion, and symbol caching on
2610 GNAT_GDB, since these are not yet used in the submitted public sources.
2611 (ada_main_name): Editorial: Move definition out of exception-related
2612 code.
2613
2614 2004-06-15 Andrew Cagney <cagney@gnu.org>
2615
2616 * mips-tdep.c (non_heuristic_proc_desc): Delete call to
2617 deprecated_pc_in_call_dummy.
2618
2619 2004-06-15 Alan Modra <amodra@bigpond.net.au>
2620
2621 * dsrec.c (load_srec, make_srec): Use bfd_get_section_size instead of
2622 bfd_get_section_size_before_reloc or _raw_size.
2623 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2624 * dwarf2read.c (dwarf2_locate_sections): Likewise.
2625 (dwarf2_read_section): Likewise.
2626 * elfread.c (elf_locate_sections): Likewise.
2627 * gcore.c (derive_heap_segment): Likewise.
2628 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
2629 * remote-e7000.c (e7000_load): Likewise.
2630 * remote-m32r-sdi.c (m32r_load): Likewise.
2631 * remote-mips.c (mips_load_srec): Likewise.
2632 (pmon_load_fast): Likewise.
2633 * remote.c (compare_sections_command): Likewise.
2634 * symfile.c (add_section_size_callback): Likewise.
2635 (load_section_callback): Likewise.
2636 (pc_in_unmapped_range): Likewise.
2637 (pc_in_mapped_range): Likewise.
2638 (sections_overlap): Likewise.
2639 (list_overlays_command): Likewise.
2640 (simple_overlay_update_1): Likewise.
2641 (simple_overlay_update): Likewise.
2642 * tracepoint.c (remote_set_transparent_ranges): Likewise.
2643 * win32-nat.c (core_section_load_dll_symbols): Likewise.
2644
2645 2004-06-14 Randolph Chung <tausq@debian.org>
2646
2647 * Makefile.in (hppa-hpux-tdep.o): Update dependency.
2648 * hppa-hpux-tdep.c (hp_cxx_exception_support_initialized): Make
2649 static.
2650 (hppa_hpux_inferior_created): New function.
2651 (hppa_hpux_init_abi): Register observer.
2652 * symfile.c (hp_cxx_exception_support_initialized)
2653 (RESET_HP_UX_GLOBALS): Remove HPUXHPPA specific hacks.
2654 (symbol_file_add_main_1, symbol_file_clear): Likewise.
2655
2656 2004-06-14 Randolph Chung <tausq@debian.org>
2657
2658 * MAINTAINERS (Write After Approval): Alphabetize my entry
2659 correctly.
2660
2661 2004-06-14 Andrew Cagney <cagney@gnu.org>
2662
2663 * MAINTAINERS (testsuite): List Michael Chastain as the lead
2664 testsuite maintainer.
2665
2666 2004-06-13 Andrew Cagney <cagney@gnu.org>
2667
2668 * infcmd.c (print_return_value): Fix logic, allow
2669 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS when struct_return.
2670
2671 * gdbarch.sh: For predicates, do not check GDB_MULTI_ARCH when
2672 defining any macros.
2673 * gdbarch.h: Re-generate.
2674
2675 * gdbarch.sh: Delete "level" attribute. Only check for a macro
2676 redefinition when multi-arch greater than GDB_MULTI_ARCH_PARTIAL.
2677 * gdbarch.h: Re-generate.
2678
2679 * values.c (generic_use_struct_convention): Don't check gcc_p.
2680
2681 * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE)
2682 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Delete.
2683 * gdbarch.h, gdbarch.c: Regenerate.
2684 * ns32k-tdep.h (NS32K_MAX_REGISTER_RAW_SIZE)
2685 (NS32K_MAX_REGISTER_VIRTUAL_SIZE): Delete macros.
2686 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
2687 deprecated_max_register_raw_size and
2688 deprecated_max_register_virtual_size.
2689 * v850-tdep.c (v850_gdbarch_init): Ditto.
2690 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
2691 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2692 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
2693 * cris-tdep.c (cris_gdbarch_init): Ditto.
2694
2695 * gdbarch.sh (RETURN_VALUE_ON_STACK): Delete method.
2696 * gdbarch.h, gdbarch.c: Re-generate.
2697 * m68hc11-tdep.c (m68hc11_return_value_on_stack): Delete function.
2698 (m68hc11_use_struct_convention): Delete function.
2699 (m68hc11_extract_struct_value_address): Delete function.
2700 (m68hc11_return_value): New function.
2701 (m68hc11_gdbarch_init): Instead of store_return_value,
2702 extract_return_value, return_value_on_stack,
2703 deprecated_extract_struct_value_address and use_struct_convention,
2704 set return_value.
2705 * values.c (using_struct_return): Do not call
2706 RETURN_VALUE_ON_STACK.
2707 * arch-utils.h (generic_return_value_on_stack_not): Delete
2708 declaration.
2709 * arch-utils.c (generic_return_value_on_stack_not): Delete
2710 function.
2711
2712 2004-06-12 Andrew Cagney <cagney@gnu.org>
2713
2714 * values.c (register_value_being_returned): Delete function.
2715 * infcmd.c (legacy_return_value): Delete function.
2716 * infcall.c (call_function_by_hand): Inline
2717 "register_value_being_returned", simplify.
2718 * values.c (using_struct_return): Update comment, refer to
2719 print_return_value instead of register_value_being_returned.
2720 * infcmd.c (print_return_value): Inline calls to
2721 register_value_being_returned and legacy_return_value. Simplify.
2722
2723 2004-06-11 Randolph Chung <tausq@debian.org>
2724
2725 * somread.c (som_symtab_read): Exclude gcc local symbols.
2726
2727 2004-06-11 Randolph Chung <tausq@debian.org>
2728
2729 * infrun.c (handle_inferior_event): Handle the case when a
2730 trampoline ends up in the runtime resolver, and if the trampoline
2731 has no name. Rearrange the code so that all the trampoline
2732 processing happens before other step-out-of-range handling.
2733
2734 2004-06-11 Martin Hunt <hunt@redhat.com>
2735
2736 * mips-tdep.c (mips_gdbarch_init): Recognize vr4120
2737 has no fpu.
2738
2739 2004-06-10 Andrew Cagney <cagney@gnu.org>
2740
2741 * blockframe.c (legacy_inside_entry_func): Delete.
2742 (legacy_frame_chain_valid): Inline call to
2743 legacy_inside_entry_func, simplify.
2744
2745 2004-06-10 Bob Rossi <bob@brasko.net>
2746
2747 * dbxread.c (read_dbx_symtab): Set pst->dirname when known.
2748 * dwarf2read.c (partial_die_info): Add dirname field.
2749 (dwarf2_build_psymtabs_hard): Set pst->dirname when known.
2750 (read_partial_die): Save away DW_AT_comp_dir.
2751 * defs.h (symtab_to_filename): Removed.
2752 * source.c (find_and_open_source): Added.
2753 (open_source_file): Just calls find_and_open_source.
2754 (symtab_to_filename): Removed.
2755 (symtab_to_fullname, psymtab_to_fullname): Added.
2756 * source.h (psymtab_to_fullname,symtab_to_fullname): Added.
2757 * symtab.c (lookup_symtab): Call symtab_to_fullname instead of
2758 symtab_to_filename.
2759 * symtab.h (partial_symtab): Add dirname field.
2760 * mi/mi-cmd-file.c (FILENAME,FULLNAME): Added.
2761 (mi_cmd_file_list_exec_source_file): Call new function
2762 symtab_to_fullname to find fullname.
2763 (mi_cmd_file_list_exec_source_files): Added.
2764 * mi/mi-cmds.c (mi_cmd_mi_cmds): Add -file-list-exec-source-files.
2765 * mi/mi-cmds.h (mi_cmd_file_list_exec_source_files): Added.
2766
2767 2004-06-10 Andrew Cagney <cagney@gnu.org>
2768
2769 * avr-tdep.c (avr_gdbarch_init): Do not set use_struct_convention
2770 to generic_use_struct_convention, the default value.
2771
2772 * mn10300-tdep.c (mn10300_type_align): Call internal_error instead
2773 of abort.
2774
2775 * ns32k-tdep.c (ns32k_push_arguments): New function.
2776 (ns32k_gdbarch_init): Set deprecated_push_arguments.
2777 * infcall.c (call_function_by_hand): Call error instead of
2778 legacy_push_arguments.
2779 * value.h (legacy_push_arguments): Delete declaration.
2780 * valops.c (legacy_push_arguments): Delete function.
2781 (value_push): Delete function.
2782
2783 2004-06-10 Brian Ford <ford@vss.fsi.com>
2784
2785 * coffread.c (coff_symfile_read): Prevent mixed debugging formats
2786 from corrupting/reinitializing the psymtab. Support DWARF 2 frame
2787 info.
2788 * dbxread.c (elfstab_build_psymtabs): Remove bogus comment.
2789
2790 2004-06-10 Andrew Cagney <cagney@gnu.org>
2791
2792 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Delete.
2793 * gdbarch.h, gdbarch.c: Re-generate.
2794 * frame.h (deprecated_pc_in_call_dummy): Delete "sp" and "fp"
2795 parameters.
2796 * dummy-frame.c (deprecated_pc_in_call_dummy): Update.
2797 * arm-tdep.c (arm_pc_is_thumb_dummy): Call
2798 deprecated_pc_in_call_dummy instead of
2799 DEPRECATED_PC_IN_CALL_DUMMY.
2800 (arm_skip_prologue): Ditto.
2801 * xstormy16-tdep.c (xstormy16_pop_frame, xstormy16_scan_prologue)
2802 (xstormy16_frame_saved_pc, xstormy16_frame_chain): Ditto.
2803 * v850-tdep.c (v850_find_callers_reg, v850_frame_chain)
2804 (v850_pop_frame, v850_frame_saved_pc, v850_frame_init_saved_regs):
2805 Ditto.
2806 * sh64-tdep.c (sh64_frame_chain, sh64_get_saved_pr)
2807 (sh64_init_extra_frame_info, sh64_get_saved_register)
2808 (sh64_pop_frame): Ditto.
2809 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
2810 * mcore-tdep.c (mcore_find_callers_reg, mcore_frame_saved_pc)
2811 (mcore_pop_frame, mcore_init_extra_frame_info): Ditto.
2812 * h8300-tdep.c (h8300_frame_chain, h8300_frame_saved_pc)
2813 (h8300_pop_frame): Ditto.
2814 * blockframe.c (legacy_inside_entry_func)
2815 (legacy_frame_chain_valid): Ditto.
2816 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update call
2817 to deprecated_pc_in_call_dummy.
2818
2819 2004-06-09 Andrew Cagney <cagney@gnu.org>
2820
2821 * gdbarch.sh (REGISTER_TO_VALUE, VALUE_TO_REGISTER): Do not
2822 provide a default value.
2823 (CONVERT_REGISTER_P): Default to generic_convert_register_p.
2824 * gdbarch.h, gdbarch.c: Re-generate.
2825 * arch-utils.c (generic_convert_register_p): Rename
2826 legacy_convert_register_p
2827 (legacy_register_to_value, legacy_value_to_register): Delete
2828 functions.
2829 * arch-utils.h (generic_convert_register_p): Rename
2830 legacy_convert_register_p.
2831 (legacy_register_to_value, legacy_value_to_register): Delete
2832 declarations.
2833
2834 * gdbarch.sh (DEPRECATED_REGISTER_CONVERT_TO_RAW)
2835 (DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL)
2836 (DEPRECATED_REGISTER_CONVERTIBLE): Delete.
2837 * gdbarch.h, gdbarch.c: Re-generate.
2838 * infcmd.c (default_print_registers_info): Simplify.
2839 * findvar.c (value_of_register): Simplify.
2840 * mi/mi-main.c (get_register): Simplify.
2841 * arch-utils.c (legacy_convert_register_p): Always return 0.
2842 (legacy_register_to_value, legacy_value_to_register): Always call
2843 internal_error.
2844
2845 * infptrace.c (child_xfer_memory) [CLEAR_INSN_CACHE]: Delete
2846 #ifdef CLEAR_INSN_CACHE code.
2847 * target.c (generic_mourn_inferior) [CLEAR_DEFERRED_STORES]:
2848 Delete #ifdef CLEAR_DEFERRED_STORES code.
2849
2850 * solib-svr4.c [HANDLE_SVR4_EXEC_EMULATORS]: Delete #ifdef code.
2851
2852 * config/ia64/tm-linux.h (TARGET_ELF64): Delete macro, Update
2853 copyright.
2854 * config/ia64/tm-aix.h (TARGET_ELF64): Ditto.
2855
2856 * config/mips/mipsv4.mh: Delete file.
2857
2858 * config/pa/tm-hppa64.h (HPREAD_ADJUST_STACK_ADDRESS): Delete
2859 unreferenced macro.
2860 (hpread_adjust_stack_address): Delete declaration.
2861
2862 2004-06-08 Andrew Cagney <cagney@gnu.org>
2863
2864 * infptrace.c [ATTACH_DETACH]: Remove #ifdef wrappers.
2865 (attach, detach): When neither PT_ATTACH / PT_DETACH nor
2866 PTRACE_ATTACH / PTRACE_DETACH available call error.
2867 (PT_ATTACH, PT_DETACH): Move definition to attach / detach.
2868 * infttrace.c (update_thread_state_after_attach, attach, detach):
2869 Remove #ifdef wrappers.
2870 * inftarg.c (child_attach, child_detach): Remove #ifdef wrappers.
2871 * gnu-nat.c [ATTACH_DETACH]: Remove #ifdef wrappers.
2872 * config/nm-bsd.h (ATTACH_DETACH): Delete.
2873 * config/nm-sysv4.h (ATTACH_DETACH): Delete.
2874 * config/nm-nbsd.h (ATTACH_DETACH): Delete.
2875 * config/nm-linux.h (ATTACH_DETACH): Delete.
2876 * config/rs6000/nm-rs6000.h (ATTACH_DETACH): Delete.
2877 * config/pa/nm-hppah.h (ATTACH_DETACH): Delete.
2878 * config/i386/nm-i386sco5.h (ATTACH_DETACH): Delete.
2879 * config/i386/nm-i386sco4.h (ATTACH_DETACH): Delete.
2880 * config/i386/nm-i386gnu.h (ATTACH_DETACH): Delete.
2881
2882 2004-06-08 Corinna Vinschen <vinschen@redhat.com>
2883
2884 * configure.in: Set $configdir to the right OS specific value.
2885 Use value when setting $tcldir and $tkdir.
2886 * configure: Regenerate.
2887
2888 2004-06-06 Paul Brook <paul@codesourcery.com>
2889
2890 * gdb/dwarf2-frame.c (decode_frame_entry_1): Decode version 3 CIE
2891 records.
2892
2893 2004-06-08 Paul N. Hilfinger <Hilfinger@gnat.com>
2894
2895 * ada-lang.c (lookup_symbol_in_language): New function to allow
2896 re-use of another language's symbol lookup code. (Placed here
2897 temporarily while Ada support is being integrated into the public
2898 tree).
2899 (restore_language): New auxiliary function for
2900 lookup_symbol_in_language.
2901 * ada-lang.h (lookup_symbol_in_language): Declare (Placed here
2902 temporarily while Ada support is being integrated into the public
2903 tree).
2904
2905 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
2906
2907 * Makefile.in (check//%): New.
2908
2909 * mn10300-tdep.c (mn10300_extract_return_value): Rewrite.
2910 (mn10300_store_return_value): Rewrite.
2911 (mn10300_type_align): New.
2912 (mn10300_use_struct_convention): Rewrite.
2913 (mn10300_return_value): New, using all of the above.
2914 (mn10300_pop_frame_regular): Add saved_regs_size.
2915 (mn10300_gdbarch_init): Remove deprecated rewritten entry points.
2916
2917 * mn10300-tdep.c (mn10300_analyze_prologue): Don't compute saved
2918 regs if PC is on movm.
2919
2920 2004-06-07 Jim Blandy <jimb@redhat.com>
2921
2922 Add native Linux support for the PowerPC E500.
2923 * ppc-tdep.h (struct gdbarch_tdep): New member: 'ppc_gprs_pseudo_p'.
2924 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it to false on
2925 all architectures except the E500.
2926 * ppc-linux-nat.c: (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): New
2927 #definitions.
2928 (struct gdb_evrregset_t): New type.
2929 (have_ptrace_getsetevrregs): New variable.
2930 (get_spe_registers, read_spliced_spe_reg, fetch_spe_register,
2931 fetch_spe_registers): New functions.
2932 (fetch_register): Call fetch_spe_register as appropriate.
2933 Assert that we're only passed raw register numbers.
2934 (fetch_ppc_registers): Call fetch_spe_registers as appropriate.
2935 Don't fetch gprs if they're pseudoregisters.
2936 (set_spe_registers, write_spliced_spe_reg, store_spe_register,
2937 store_spe_registers): New functions.
2938 (store_register): Call store_spe_register as appropriate.
2939 Assert that we're only passed raw register numbers.
2940 (store_ppc_registers): Call store_spe_registers as appropriate.
2941 Don't store gprs if they're pseudoregisters.
2942
2943 2004-06-07 Jeff Johnston <jjohnstn@redhat.com>
2944
2945 * thread-db.c (thread_get_info_callback): Fill in the thread_info
2946 struct if one exists, even if we are dealing with a zombie thread.
2947
2948 2004-06-07 Andrew Cagney <cagney@gnu.org>
2949
2950 * target.h (PC_REQUIRES_RUN_BEFORE_USE): Delete definition.
2951 * config/pa/tm-hppa.h (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE):
2952 Rename PC_REQUIRES_RUN_BEFORE_USE.
2953 * breakpoint.c (breakpoint_sals_to_pc): Update. Wrap reference in
2954 #ifdef.
2955
2956 2004-06-07 Randolph Chung <tausq@debian.org>
2957
2958 * hppa-tdep.c (hppa_frame_cache): Handle the cases when we start
2959 unwinding after sp has been saved to the stack but before the end
2960 of the prologue, and after the fp has been modified but before it has
2961 been saved to the stack.
2962 (hppa_frame_base_address, hppa_frame_base, hppa_frame_base_sniffer):
2963 Remove superfluous definitions.
2964 (hppa_gdbarch_init): Remove superfluous frame base sniffer.
2965
2966 2004-06-07 Guy Martin <gmsoft@gentoo.org>
2967
2968 Committed by Randolph Chung.
2969 * hppa-linux-nat.c: Include the correct version of the header file
2970 depending on the kernel version.
2971
2972 2004-06-06 Randolph Chung <tausq@debian.org>
2973
2974 * infrun.c (trap_expected_after_continue): Remove HP_OS_BUG workaround.
2975 (proceed, init_wait_for_inferior, handle_inferior_event): Likewise.
2976
2977 2004-06-06 Randolph Chung <tausq@debian.org>
2978
2979 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
2980 (hppa_hpux_skip_trampoline_code): Don't cache symbol values.
2981 * hppa-linux-tdep.c (hppa_linux_in_dyncall): Likewise.
2982 * hppa-tdep.c (hppa_symbol_address): New function definition.
2983 * hppa-tdep.h (hppa_symbol_address): New function declaration.
2984
2985 2004-06-06 Randolph Chung <tausq@debian.org>
2986
2987 * hppa-tdep.h (struct value): Forward declaration.
2988 (gdbarch_tdep): Define tdep find_global_pointer method.
2989 * hppa-tdep.c (hppa32_push_dummy_call): Find the global pointer
2990 associated with the function we are trying to call, and write it
2991 to the gp register.
2992 (hppa32_convert_from_funct_ptr_addr): New function.
2993 (hppa_find_global_pointer): New function.
2994 (hppa_gdbarch_init): Set default find_global_pointer method; set
2995 convert_from_func_ptr_addr method.
2996 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): New function.
2997 (hppa_linux_init_abi): Set find_global_pointer method.
2998 * Makefile.in (hppa-linux-tdep.o): Add value.h dependency.
2999
3000 2004-06-06 Randolph Chung <tausq@debian.org>
3001
3002 * gdbarch.sh (PUSH_DUMMY_CALL): Change CORE_ADDR func_addr argument
3003 to struct value *function.
3004 * gdbarch.c: Regenerate.
3005 * gdbarch.h: Likewise.
3006 * infcall.c (call_function_by_hand): Pass entire function value
3007 to push_dummy_call.
3008
3009 * Makefile.in (alpha-tdep.o, frv-tdep.o, ia64-tdep.o, mips-tdep.o)
3010 (ppc-sysv-tdep.o, rs6000-tdep.o): Update dependencies.
3011 * alpha-tdep.c (alpha_push_dummy_call): Update call signature.
3012 * amd64-tdep.c (amd64_push_dummy_call): Likewise.
3013 * arm-tdep.c (arm_push_dummy_call): Likewise.
3014 * avr-tdep.c (avr_push_dummy_call): Likewise.
3015 * cris-tdep.c (cris_push_dummy_call): Likewise.
3016 * d10v-tdep.c (d10v_push_dummy_call): Likewise.
3017 * frv-tdep.c (frv_push_dummy_call): Likewise.
3018 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
3019 * hppa-tdep.c (hppa32_push_dummy_call)
3020 (hppa64_push_dummy_call): Likewise.
3021 * i386-tdep.c (i386_push_dummy_call): Likewise.
3022 * ia64-tdep.c (ia64_push_dummy_call): Likewise.
3023 * m32r-tdep.c (m32r_push_dummy_call): Likewise.
3024 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
3025 * m68k-tdep.c (m68k_push_dummy_call): Likewise.
3026 * m88k-tdep.c (m88k_push_dummy_call): Likewise.
3027 * mips-tdep.c (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
3028 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Likewise.
3029 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
3030 (ppc64_sysv_abi_push_dummy_call): Likewise.
3031 * ppc-tdep.h (ppc_sysv_abi_push_dummy_call)
3032 (ppc64_sysv_abi_push_dummy_call): Likewise.
3033 * rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
3034 * s390-tdep.c (s390_push_dummy_call): Likewise.
3035 * sh-tdep.c (sh_push_dummy_call_fpu)
3036 (sh_push_dummy_call_nofpu): Likewise.
3037 * sparc-tdep.c (sparc32_push_dummy_call): Likewise.
3038 * sparc64-tdep.c (sparc64_push_dummy_call): Likewise.
3039 * vax-tdep.c (vax_push_dummy_call): Likewise.
3040
3041 2004-06-04 Jim Blandy <jimb@redhat.com>
3042
3043 * ppc-linux-nat.c (fetch_register): Don't forget to pass the
3044 gdbarch argument to register_size.
3045
3046 * rs6000-tdep.c (rs6000_store_return_value): Use
3047 regcache_cooked_write_part instead of
3048 deprecated_write_register_bytes.
3049 (rs6000_gdbarch_init): Register it for gdbarch_store_return_value,
3050 not gdbarch_deprecated_store_return_value.
3051
3052 * ppc-linux-nat.c (store_register, fetch_register): Remove
3053 incorrect assertions. Simplify and generalize handling of
3054 transfers whose sizes are not multiples of, or less than, sizeof
3055 (PTRACE_XFER_TYPE).
3056
3057 2004-06-04 Jeff Johnston <jjohnstn@redhat.com>
3058
3059 * infrun.c (handle_inferior_event): Don't treat an invalid ptid
3060 as a new thread event.
3061 * thread-db.c (thread_get_info_callback): If the thread is a
3062 zombie, return TD_THR_ZOMBIE.
3063 (thread_from_lwp): If thread_get_info_callback returns
3064 TD_THR_ZOMBIE, check if the thread is still on the thread list
3065 and return a -1 ptid if not found.
3066 (thread_db_wait): If thread_from_lwp returns a -1 ptid, then
3067 change the status to TARGET_WAITKIND_SPURIOUS.
3068
3069 2004-06-03 Corinna Vinschen <vinschen@redhat.com>
3070
3071 * sh-tdep.c (sh3e_sh4_store_return_value): Correctly store
3072 double values in little endian mode.
3073
3074 2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>
3075
3076 Committed by Andrew Cagney.
3077 * gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
3078 after last enum constant to avoid error from IBM C
3079 compiler.
3080
3081 2004-06-02 Jim Blandy <jimb@redhat.com>
3082
3083 * ppc-linux-nat.c (store_register, fetch_register): Rename 'mess'
3084 to 'message', and make it local to the lone block that uses it.
3085
3086 * ppc-linux-nat.c (store_register): Remove unused local 'offset'.
3087
3088 2004-06-02 Paul N. Hilfinger <hilfinger@gnat.com>
3089
3090 * ada-exp.y: Update copyright notice.
3091 Include block.h.
3092
3093 Replace REGNAME, LAST, INTERNAL_VARIABLE with
3094 SPECIAL_VARIABLE and unify the treatment of these cases.
3095
3096 (write_attribute_call0): Remove.
3097 (write_attribute_call1): Remove.
3098 (write_attribute_calln): Remove.
3099 (save_qualifier): Add missing semicolon.
3100
3101 (simple_exp,exp): Decomment (i.e., reactivate) code that was
3102 temporarily disabled to allow compilation with FSF head version.
3103
3104 (simple_exp syntax): Remove use of OP_ADA_ATTRIBUTE and
3105 use individual operators (OP_*) for all attributes.
3106 (exp syntax): Use write_int.
3107 Handle STRING literals with OP_STRING.
3108 (variable syntax): Add limit parameter to calls to
3109 write_object_renaming.
3110
3111 (temp_parse_space): New definition to hold entities that need
3112 only live until the next call to ada_parse.
3113 (string_to_operator): Rename fields of ada_opname_table entries.
3114
3115 (write_var_from_sym): Record block.
3116 (write_var_from_name): Minor reformatting.
3117 Make sure saved name is properly encoded in the case of multiple
3118 matches, and set its language to Ada.
3119 Update comment.
3120 Modify to indicate unresolved name as symbol in the UNRESOLVED
3121 namespace, allocated in temp_parse_space.
3122 (write_int): New function.
3123
3124 (write_object_renaming): Add max_depth parameter to limit
3125 chains of object renamings.
3126 Handle case where root of renaming expression is itself a renaming.
3127 Use temp_parse_space for temporary name buffer.
3128 Handle renamings to dereferenced pointers (___XEXA suffices).
3129
3130 (ada_parse, yyerror, string_to_operator,
3131 write_var_from_sym, write_var_from_name, write_attribute_call0,
3132 write_attribute_call1, write_attribute_calln,
3133 write_object_renaming): Protoize.
3134
3135 (_initialize_ada_exp): New function.
3136
3137 * ada-lang.c: Update copyright notice.
3138 General terminology change to conform to GNAT compiler usage:
3139 mangle => encode, demangle => decode
3140 Include gdb_obstack.h.
3141 Include gdb_regex.h
3142 Include frame.h
3143 Include hashtab.h
3144 Include completer.h
3145 Include gdb_stat.h
3146 Include block.h
3147 Include infcall.h
3148
3149 (ADA_RETAIN_DOTS): Make sure this is defined.
3150 (TRUNCATION_TOWARDS_ZERO): Define.
3151 (struct string_vector): Define.
3152 (unresolved_names): Remove definition.
3153 (xnew_string_vector): New function.
3154 (string_vector_append): New function.
3155 (extract_string): Make static.
3156 (ada_unqualified_name): New function.
3157 (add_angle_brackets): New function.
3158 (function_name_from_pc): New function.
3159 (place_on_stack): Rename to ensure_lval.
3160
3161 (ensure_lval): Renamed from place_on_stack.
3162 Make identity on lvals.
3163 Update comment.
3164 (is_nonfunction): New interface.
3165 Only symbols in LOC_CONST class can be enumerals.
3166 (fill_in_ada_prototype): Remove; now independent of language.
3167 (add_defn_to_vec): Add obstack and symtab arguments.
3168 Use obstack to hold collected definitions.
3169 (num_defns_collected): New function.
3170 (defns_collected): New function.
3171 (ada_resolve_subexp): Rename to resolve_subexp.
3172 (resolve_subexp): Renamed from ada_resolve_subexp.
3173 (ada_op_name): Return non-const result.
3174 (ada_decoded_op_name): Renamed from ada_op_name, now used for
3175 other purposes.
3176
3177 (to_fixed_array_type): Add declaration.
3178 (coerce_unspec_val_to_type): Remove offset parameter.
3179 (find_sal_from_funcs_and_line): New interface.
3180 (find_line_in_linetable): Ditto.
3181
3182 (all_sals_for_line): Rename to ada_sals_for_line and make
3183 global.
3184 Add new parameter. When set, do not ask the user to choose the
3185 instance, but use the first one found instead.
3186 Use given line number in returned sals.
3187 Fix comment.
3188 Skip the prologue if funfirstline is set.
3189 Correct for memory leak when 0 lines found.
3190
3191 (value_pos_atr): Use pos_atr.
3192 (pos_atr): New function.
3193 (standard_lookup): Add block parameter.
3194
3195 (makeTimeStart): Remove declaration and uses.
3196 (makeTimeStop): Remove declaration and uses.
3197
3198 (ada_completer_word_break_characters): Allow for VMS.
3199 (ADA_MAIN_PROGRAM_SYMBOL_NAME): Make into constant.
3200 (raise_sym_name): New constant.
3201 (raise_unhandled_sym_name): New constant.
3202 (raise_assert_sym_name): New constant.
3203 (process_raise_exception_name): New constant.
3204 (longest_exception_template): New constant.
3205 (warning_limit): New variable to limit warnings during expression
3206 evaluation.
3207 (warnings_issued): New variable to keep track of warnings issued.
3208 (known_runtime_file_name_patterns): New constant.
3209 (known_auxiliary_function_name_patterns): New constant.
3210 (symbol_list_obstack): New variable.
3211
3212 (field_name_match,is_suffix,is_suppressed_name,ada_encode,
3213 ada_decode,ada_match_name,encoded_ordered_before,equiv_types,
3214 lesseq_defined_than,is_nondebugging_type,is_name_suffix,wild_match,
3215 find_sal_from_funcs_and_line, ada_breakpoint_rewrite,
3216 ada_is_tagged_type, ada_is_parent_field, ada_is_wrapper_field,
3217 ada_variant_discrim_name, field_alignment, dynamic_template_type,
3218 ada_is_character_type, ada_is_aligner_type, ada_is_vax_floating_type):
3219 Replace use of deprecated STREQ and STREQN macros by calls to strncmp
3220 and strcmp.
3221
3222 (ada_get_field_index): New function.
3223 (lim_warning): New function.
3224 (ada_translate_error_message): New function.
3225 (MAX_OF_SIZE): New function.
3226 (MIN_OF_SIZE): New function.
3227 (UMAX_OF_SIZE): New function.
3228 (UMIN_OF_SIZE): New function.
3229 (discrete_type_high_bound): New function.
3230 (discrete_type_low_bound): New function.
3231 (base_type): New function.
3232 (do_command): Remove.
3233
3234 (ada_update_initial_language): Use language_ada, not language_unknown.
3235 (ada_encode): Renamed from ada_mangle.
3236 Obey ADA_RETAIN_DOTS.
3237 (ada_decode): Renamed from ada_demangle.
3238 Update coding conventions.
3239 (decoded_names_store): New hash table.
3240 (ada_decode_symbol): New function.
3241 (ada_la_decode): New function.
3242
3243 (modify_general_field): Correct computations of offset and bit
3244 position.
3245 (desc_base_type): Handle ref types, too.
3246 (ada_is_direct_array_type): New function.
3247
3248 (ada_is_simple_array): Rename to ada_is_simple_array_type.
3249 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
3250 (ada_is_bogus_array_descriptor,ada_type_of_array,
3251 ada_coerce_to_simple_array_ptr,ada_coerce_to_simple_array,
3252 ada_type_match,convert_actual,ada_evaluate_subexp): Use renamed
3253 ada_is_array_descriptor_type.
3254
3255 (ada_coerce_to_simple_array_type): Fix incorrect value freeing.
3256 (ada_is_packed_array_type): Handle pointers or
3257 references to packed arrays as well.
3258 (packed_array_type): Uncomment use of TYPE_FLAG_FIXED_INSTANCE.
3259 (decode_packed_array_type): Search for the packed array type
3260 symbol in the currently selected block and associated
3261 superblocks too.
3262 Use lookup_symbol again.
3263
3264 (decode_packed_array): Handle pointers and references.
3265 Update call to coerce_unspec_val_to_type.
3266 (decode_packed_array_type,value_subscript_packed): Limit warnings.
3267 (ada_value_primitive_packed_val): Improve comment.
3268
3269 (ada_index_type): Substitute int type for "undefined".
3270 (ada_index_type,ada_array_bound_from_type,ada_array_bound,
3271 ada_array_langth, ada_is_string_type): Use renamed
3272 ada_is_simple_array_type.
3273 (empty_array): New function.
3274
3275 (ada_resolve): Rename to resolve.
3276 (resolve): Make static.
3277 Call renamed resolve_subexp.
3278 Update comment.
3279 (ada_resolve_subexp): Rename to resolve_subexp.
3280 (resolve_subexp): Update comment.
3281 Decomment disabled code.
3282 Add LOC_COMPUTED* cases.
3283 Modify to use temporary struct symbols (marked as being in
3284 UNDEF_NAMESPACE) to indicate unresolved names, instead of
3285 OP_UNRESOLVED_VALUE.
3286 Remove OP_ATTRIBUTE; use individual opcodes for attributes.
3287 Add OP_STRING case.
3288 Remove OP_ARRAY.
3289 Use SYMBOL_PRINT_NAME instead of ada_demangle.
3290 Use new ada_lookup_symbol_list interface.
3291 Use new ada_resolve_function interface.
3292 Remove OP_TYPE case.
3293
3294 (ada_args_match): Idiot proof against null actuals.
3295 Use intermediate variables to clarify.
3296 (ada_resolve_function): Update comment and interface.
3297 (mangled_ordered_before): Rename to encoded_ordered_before and
3298 update comment.
3299 (sort_choices): Update comment and interface.
3300 Use SYMBOL_LINKAGE_NAME in place of SYMBOL_NAME.
3301 (user_select_syms): New interface.
3302 Use new sort_choices interface.
3303 Use SYMBOL_PRINT_NAME rather than SYMBOL_SOURCE_NAME.
3304 (possible_user_operator_p): Idiot-proof against null values.
3305 (ada_simple_renamed_entity): Don't make cleanup; rely on
3306 caller to free result string.
3307 Remove const from return type.
3308 (make_array_descriptor): Rename uses of place_on_stack to
3309 ensure_lval.
3310 Make sure that arrays are on stack.
3311
3312 (HASH_SIZE): Define.
3313 (struct cache_entry): Define.
3314 (cache_space): Define.
3315 (cache): Define.
3316 (clear_ada_sym_cache): New function.
3317 (find_entry): New function.
3318 (lookup_cached_symbol): New function.
3319 (defn_vector_size): Define.
3320 (cache_symbol): New function.
3321 (defn_symbols): Remove.
3322
3323 (standard_lookup): Use lookup_symbol_in_language to get effect of
3324 C lookup.
3325 Cache results.
3326
3327 (symbol_completion_match): New function.
3328 (symbol_completion_add): New function.
3329 (ada_make_symbol_completion_list): New function.
3330
3331 (ada_lookup_partial_symbol,ada_lookup_simple_minsym,
3332 add_symbols_from_enclosing_procs,remove_extra_symbols): Replace
3333 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
3334 (symtab_for_sym): Handle LOC_COMPUTED, LOC_COMPUTED_ARG.
3335
3336 (ada_lookup_simple_minsym): New function.
3337 (ada_lookup_minimal_symbol): Use ada_lookup_simple_minsym.
3338
3339 (add_symbols_from_enclosing_procs): New interface.
3340 Conditionalize more helpfully.
3341 Don't bother if program isn't running.
3342 Use new interface to get_frame_block.
3343 Limit number of levels searched with MAX_LEXICAL_LEVELS, just in case.
3344
3345 (remove_extra_symbols): New interface.
3346 (xget_renaming_scope): New function.
3347 (is_package_name): New function.
3348 (renaming_is_visible): New function.
3349 (remove_out_of_scope_renamings): New function.
3350
3351 (ada_lookup_symbol_list): New interface.
3352 Properly reinitialize the symbol list obstack.
3353 Don't call add_symbols_from_enclosing_procs if we start from a
3354 static or global block.
3355 Use new interfaces to ada_add_block_symbols, add_defn_to_vec,
3356 add_symbols_from_enclosing_procs.
3357 Add symtab data to cached entries.
3358 Handle symbols prefixed with
3359 "standard__" specially; strip prefix and don't look in local symbols.
3360 Do not include out of scope renaming symbols in list of
3361 symbols returned.
3362 Add const to block parameter.
3363 Move check for non-local, non-global symbols earlier.
3364 Remove timing stuff.
3365 (ada_lookup_symbol): New interface.
3366 Find symtab as well.
3367 (ada_lookup_symbol_nonlocal): New function.
3368
3369 (is_name_suffix): Enhance suffix detection to recognize
3370 an optional "__[:digit:]+" before any "\.[:digit:]+" suffix.
3371 (is_dot_digits_suffix): New function.
3372 (wild_match): Ignore ".[:digit:]*" suffixes during matches.
3373
3374 (ada_add_block_symbols): New interface. Use obstack to return results
3375 in a vector of struct ada_symbol_infos. Add symtab argument.
3376 Use new interface to add_defn_to_vec.
3377 Remove calls to fill_in_ada_prototype.
3378 Use BLOCK_BUCKETS, BLOCK_BUCKET.
3379
3380 (ada_finish_decode_line_1): Add const qualification to local to fix
3381 warning.
3382 Start looking in static block for functions to avoid attempts
3383 to search frame chain for up-level variables.
3384 Adapt to new ada_sals_for_line interface.
3385 Use new interfaces to ada_lookup_symbol_list and user_select_syms.
3386 Handle quoting of the function name inside the spec string.
3387 Skip prologue when funfirstline is set and update the
3388 function documentation to that effect.
3389
3390 (debug_print_lines, debug_print_block, debug_print_blocks,
3391 debug_print_symtab): Remove.
3392
3393 (ada_main_name): New function.
3394 (ada_exception_breakpoint_type): New function.
3395 (is_known_support_routine): New function.
3396 (ada_find_printable_frame): Renamed from find_printable_frame and made
3397 global.
3398 Remove level parameter.
3399 Use new interface to select_frame.
3400
3401 (begin_command): Remove.
3402 (ada_adjust_exception_stop): New function.
3403 (ada_print_exception_stop): New function.
3404 (exception_name_from_cond): New function.
3405 (ada_report_exception_break): Replace disabled code with
3406 conditionalization on GNAT_GDB.
3407 Get the exception name from the condition string.
3408 Remove and move functionality into new functions
3409 ada_print_exception_breakpoint_task and
3410 ada_print_exception_breakpoint_nontask.
3411 (error_breakpoint_runtime_sym_not_found): New function.
3412 (is_runtime_sym_defined): New function.
3413 (ada_breakpoint_rewrite): Uncomment suppressed code.
3414 Use symbolic error-message and runtime-symbol names.
3415 Surround runtime symbol names in quotes.
3416 Allow non-specific breakpoints on exceptions and assertions before
3417 program starts.
3418
3419 (ada_is_tagged_type): Add parameter.
3420 (ada_is_tag_type): New function.
3421 (ada_tag_type): Use new ada_lookup_struct_elt_type interface.
3422 (ada_variant_discrim_type): Ditto.
3423 (value_tag_from_contents_and_address): New function.
3424 (type_from_tag): New function.
3425 (struct tag_args): New structure used to communicate with
3426 ada_tag_name_1.
3427 (ada_tag_name_1): New function.
3428 (ada_tag_name): New function.
3429
3430 (ada_scan_number): Update comment.
3431 (find_struct_field): New function.
3432 (ada_search_struct_field): Make static.
3433 (ada_value_struct_elt): New version that returns references when
3434 given pointers or references to structs.
3435 (ada_lookup_struct_elt_type): Add 'refok' parameter.
3436 (ada_which_variant_applies): Use new ada_lookup_struct_elt_type
3437 interface.
3438 (ada_value_ind): Use new ada_to_fixed_value interface.
3439 (ada_coerce_ref): Ditto.
3440 (field_offset): Remove.
3441
3442 (ada_find_any_symbol): New function, extracted from ada_find_any_type.
3443 (ada_find_renaming_symbol): New function.
3444 (ada_prefer_type): Prefer named types over unnamed ones.
3445 (variant_field_index): New function.
3446 (contains_variant_part): Removed: subsumed by variant_field_index.
3447 (ada_template_to_fixed_record_type): New function, mostly from
3448 template_to_fixed_record_type.
3449 (template_to_fixed_record_type):
3450 Do not scan the type fields beyond the last one; prevents a
3451 potential SEGV.
3452 Handle case where variant field is listed BEFORE discriminant it
3453 depends on.
3454 Fix calculation of record length when bit length is
3455 not evenly divisible by char length.
3456 Move code to ada_template_to_fixed_record_type and call it.
3457
3458 (template_to_static_fixed_type): Revise comment.
3459 Modify to work on ordinary record types as well as templates,
3460 so as to handle fields that use ___XVE or ___XVU encodings.
3461 (to_record_with_fixed_variant_part): Fill out comment.
3462 Initialize C++ stuff in right type.
3463 Allow case where DVAL is null.
3464 Handle case where variant field is not last.
3465 Fix typo concerning record length.
3466 (to_fixed_record_type): Decomment disabled code.
3467 (to_fixed_record_type): Use variant_field_index instead of
3468 contains_variant_part.
3469 (to_fixed_variant_branch_type): Ditto.
3470 (to_fixed_array_type): Decomment disabled code.
3471 (ada_to_fixed_type): Convert tagged types to the specific type.
3472 Deactivate the size-check for array types in order to avoid
3473 some false size alarms.
3474 (to_static_fixed_type): Decomment disabled code.
3475 Modify to call template_to_static_fixed_type
3476 on ordinary structs, not just ___XVE- and ___XVU-encoded fields.
3477 (ada_to_fixed_value_create): Renamed version of old ada_to_fixed_value.
3478 Remove valaddr argument, as it is never really used.
3479 (ada_to_fixed_value): Change interface to act on single struct value*
3480 operand.
3481 (adjust_pc_past_prologue): New function.
3482 (ada_attribute_name): Modify to take enum exp_opcode argument.
3483
3484 (ada_enum_name): Recognize new homonym-distinguishing convention.
3485 Adjust local variable's type to remove compiler warning.
3486 Fix a small problem in the part that unqualifies the enumeration name.
3487 (ada_value_binop): New function.
3488 (ada_value_equal): New function.
3489
3490 (ada_evaluate_subexp): Use new ada_lookup_struct_elt_type interface.
3491 Don't give error message when not doing normal evaluation
3492 and a tagged type doesn't seem to contain a structure member.
3493 Give error message for packed arrays.
3494 For indexing arrays, handle pointers to packed arrays correctly.
3495 Handle case of 'first and 'last attributes of bare integral type
3496 without encoded subtype info.
3497 Remove some unnecessary casts.
3498 Fix uninitialized value of type in computing 'first, 'last, or 'length
3499 of array object.
3500 Add BINOP_EQUAL and BINOP_NOTEQUAL cases.
3501 Remove binop_user_defined_p tests and value_x_binop and value_x_unop
3502 calls.
3503 Attributes are now exp_opcode values.
3504 Correct treatment of 'modulus.
3505 Better error message for taking 'length of wrong kind of type;
3506 improve comment.
3507 Change EVAL_NORMAL to noside for consistency.
3508 Use ada_value_binop for DIV, MOD, REM.
3509 Make special case out of array of length 0, since an argument
3510 of 0 upsets some platforms' malloc.
3511 Use OP_STRING instead of OP_ARRAY.
3512 For slice, add check that we have an array type before extracting
3513 a slice out of it. Avoids a SEGV.
3514 When evaluating an array slice, if the array type is a reference to
3515 an aligner type, then replace the aligner type by the actual type.
3516 Decomment disabled code.
3517 Remove some dead code.
3518 Use temporary struct symbols (marked as being in UNDEF_NAMESPACE)
3519 to indicate unresolved names, instead of OP_UNRESOLVED_VALUE.
3520 Rename BINOP_MBR to BINOP_IN_BOUNDS, TERNOP_MBR to TERNOP_IN_RANGE,
3521 and UNOP_MBR to UNOP_IN_RANGE.
3522 If an array type has a parallel ___XVE type, then use it.
3523 Turn arrays into pointers for lvalue arrays.
3524 Change TERNOP_SLICE code to work even when bounds are unknown, ignoring
3525 bounds error and handle 0-length slices.
3526 Use lim_warning.
3527 When selecting fields, apply ada_to_fixed_value (because the fields
3528 might have ___XVU or ___XVE encodings even if not dynamic.)
3529 Use ada_to_fixed_value_create and new ada_to_fixed_value interface.
3530 (ada_is_system_address_type): New function.
3531
3532 (get_var_value): Use new interface to ada_lookup_symbol_list.
3533 (get_int_var_value): New interface.
3534 (to_fixed_range_type): Allow unknown bound, with warning.
3535 (ada_is_modular_type): Decomment disabled code.
3536 (ADA_OPERATORS): New definition.
3537 (ada_operator_length): New function.
3538 (ada_expr_op_name): New function.
3539 (ada_forward_operator_length): New function.
3540 (ada_dump_subexp_body): New function.
3541 (ada_print_subexp): New function.
3542 (ada_exp_descriptor): New constant.
3543 (ada_op_print_tab): Add 'size. Remove FIXMEs.
3544 (ada_language_defn): Add ada_exp_descriptor entry.
3545 Change ada_parse => parse.
3546 Add post-parser entry.
3547 Use ada-specific non-local symbol lookup.
3548 Don't use C-style arrays.
3549 String lower-bound is 1.
3550 Decomment disabled code.
3551 (parse): New function.
3552 New fields ada_translate_error_message, ada_lookup_symbol,
3553 ada_lookup_minimal_symbol.
3554
3555 * ada-lang.h: Update copyright dates.
3556 Replace the mangle/demangle terminology throughout by the
3557 more appropriate encode/decode one.
3558 Include breakpoint.h.
3559 Forward declare struct partial_symbol, struct block.
3560 (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Define.
3561 (EXTRACT_ADDRESS): Remove.
3562 (EXTRACT_INT): Remove.
3563 (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Define.
3564 (MAX_ENCLOSING_FRAME_LEVELS): Define.
3565 (MAX_RENAMING_CHAIN_LENGTH): Define.
3566 (struct ada_opname_map): mangled => decoded, demangled=>encoded.
3567
3568 (enum task_states): Remove.
3569 ada_task_states: Remove.
3570 (fat_string): Remove.
3571 (struct entry_call): Remove.
3572 (struct task_fields): Remove.
3573 (struct task_entry): Remove.
3574
3575 (struct ada_symbol_info): Define.
3576 (enum ada_attribute): Remove.
3577 (enum ada_operator): Define.
3578
3579 (ada_get_field_index): Declare.
3580 (ada_coerce_to_simple_array): Rename to ada_coerce_to_simple_array_ptr.
3581 (ada_is_simple_array): Rename to ada_is_simple_array_type.
3582 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
3583 (ada_lookup_symbol_list): New interface.
3584 (ada_decode_symbol): Declare.
3585 (ada_decode): Declare.
3586 (ada_lookup_symbol): New interface.
3587 (ada_update_initial_language): Declare.
3588 (ada_lookup_simple_minsym): Declare.
3589 (user_select_syms): New interface.
3590 (ada_sals_for_line): Declare.
3591 (ada_is_tagged_type): New interface.
3592 (ada_tag_name): Declare.
3593 (ada_lookup_struct_elt_type): Remove declaration.
3594 (ada_search_struct_field): Remove declaration.
3595 (ada_attribute_name): New interface.
3596 (ada_is_system_address_type): Declare.
3597 (ada_to_fixed_value): Remove declaration.
3598 (ada_template_to_fixed_record_type_1): Declare.
3599 (get_int_var_value): New interface.
3600 (ada_find_any_symbol): Declare.
3601 (ada_find_renaming_symbol): Declare.
3602 (ada_mangle): Rename to ada_encode.
3603 (ada_simple_renamed_entity): Remove const.
3604 (ada_main_name): Declare.
3605 (get_current_task): Rename to ada_get_current_task.
3606 (get_entry_number): Remove declaration.
3607 (ada_report_exception_break): Remove declaration.
3608 (ada_print_exception_breakpoint_nontask): Declare.
3609 (ada_print_exception_breakpoint_task): Declare.
3610 (ada_find_printable_frame): Declare.
3611
3612 * ada-lex.l: Update copyright notices.
3613 Use xmalloc and xfree instead of malloc and free.
3614 Use new interface to name_lookup.
3615 Use new interface to
3616 ada_mangle=>ada_encode.
3617 Redo handling of '$...' variable to parallel current treatment
3618 in c-exp.y.
3619 (resize_tempbuf, canonicalizeNumeral, is_digit_in_base,
3620 digit_to_int, strtoulst, processInt, processReal, processId,
3621 block_lookup, name_lookup, find_dot_all, subseqMatch, processAttribute,
3622 yywrap): Protoize.
3623
3624 (processInt): Use cast to remove harmless warning.
3625 (processReal): Modify to get rid of compiler warning on scan formats.
3626
3627 (processId): Replace xmalloc with obstack_alloc for name and remove
3628 call to ada_name_string_cleanup.
3629 Remove obsolete disabled code.
3630 (name_lookup): Ditto.
3631 New interface.
3632 Use obsavestring on temp_parse_space instead of savestring
3633 on name, and remove call to ada_name_string_cleanup.
3634 Free string returned from ada_simple_renamed_entity.
3635 Use new interface to ada_lookup_symbol_list.
3636 Decomment disabled code.
3637 Treat LOC_COMPUTED and LOC_COMPUTED_ARG symbols as variables,
3638 not types.
3639 When a type name lookup succeeds as a result of
3640 lookup_primitive_typename, check for regular type entry that has not
3641 yet been read in.
3642 Limit length of chain of renamed symbols we are willing to follow.
3643 Do not break names beginning with "standard__" into segments.
3644 (block_lookup): Use new interface to ada_lookup_symbol_list.
3645
3646 * ada-typeprint.c: Update copyright notice.
3647 (demangled_type_name): Rename to decoded_type_name.
3648 (ada_typedef_print): Use SYMBOL_PRINT_NAME.
3649 (print_range_bound): Correct handling of negative
3650 bounds that make the index type looked unsigned under STABS.
3651 (print_dynamic_range_bound): Use new interface to get_int_var_value.
3652 (print_range_type_named): Use the builtin int type if no type
3653 corresponding to the given type name could be found.
3654 (print_array_type): ada_is_simple_array => ada_is_simple_array_type.
3655 Add some bullet-proofing.
3656 (print_variant_clauses): Allow for variant branches with ___XVU
3657 encodings that are not dynamic fields.
3658 Use new interface to ada_is_tagged_type.
3659 (print_record_type): Allow for fields with ___XVE encodings that
3660 are not dynamic fields.
3661 Use new interface to ada_is_tagged_type.
3662 (ada_print_type): ada_is_array_descriptor =>
3663 ada_is_array_descriptor_type.
3664
3665 * ada-valprint.c: Update copyright notice.
3666 Include gdb_string.h
3667 Include infcall.h
3668 (ui_memcpy): New function.
3669 (ada_print_floating): New function.
3670 (ada_print_str): Order arguments correctly.
3671 Correct handling of empty arrays and arrays of 0-length items.
3672 ada_is_array_descriptor => ada_is_array_descriptor_type
3673 Print values of type System.Address in hexadecimal format.
3674 Use ada_print_floating to print floating-point numbers in Ada format.
3675 Print class tag values with type names.
3676 No longer print the address of reference values. Avoids
3677 a potential confusion.
3678 (ada_value_print): Stop printing the object type for reference
3679 values, but preserve that behavior for access types. Avoids
3680 a potential confusion.
3681 Simplify one conditional expression, as the first part is now
3682 necessarily true.
3683 ada_is_array_descriptor => ada_is_array_descriptor_type
3684 Add check for arrays for null records, and print them by hand.
3685
3686 2004-06-01 Jim Blandy <jimb@redhat.com>
3687
3688 * ppc-tdep.h: Delete unused 'regoff' member.
3689 * rs6000-tdep.c (rs6000_gdbarch_init): Don't initialize it.
3690
3691 2004-06-01 Michael Chastain <mec.gnu@mindspring.com>
3692
3693 Fix PR symtab/1661.
3694 * hpread.c (hpread_pxdb_needed): Call memset after alloca.
3695 (hpread_read_struct_type): Likewise.
3696
3697 2004-06-01 Andrew Cagney <cagney@gnu.org>
3698
3699 * mi/mi-cmd-env.c (env_execute_cli_command): Use xstrprintf
3700 instead of xasprintf.
3701 * mi/mi-main.c (mi_error_last_message, mi_cmd_exec_interrupt)
3702 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
3703 (mi_cmd_data_list_register_names)
3704 (mi_cmd_data_list_changed_registers)
3705 (mi_cmd_data_list_register_values)
3706 (get_register, mi_cmd_data_write_register_values)
3707 (mi_cmd_data_write_register_values)
3708 (mi_cmd_data_assign, mi_cmd_data_evaluate_expression)
3709 (mi_cmd_target_download, mi_cmd_target_select)
3710 (mi_cmd_data_read_memory, mi_cmd_data_write_memory)
3711 (mi_execute_cli_command, mi_execute_async_cli_command)
3712 (mi_execute_async_cli_command): Ditto.
3713 * mi/mi-interp.c (mi_cmd_interpreter_exec) Ditto.
3714 * mi/mi-cmd-var.c (mi_cmd_var_create): Ditto.
3715
3716 * mi/mi-cmds.h (mi_error_last_message): Delete declaration.
3717 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call
3718 error_last_message instead of mi_error_last_message.
3719 * mi/mi-main.c (mi_error_last_message): Delete function.
3720
3721 * mi/mi-main.c (mi_cmd_data_read_memory): Add missing return for
3722 "invalid number of columns" error. Delete redundant "out of
3723 memory" check.
3724
3725 2004-05-31 Mark Kettenis <kettenis@gnu.org>
3726
3727 * i386bsd-nat.c: Don't include <sys/procfs.h>.
3728 (gregset_t, fpregset_t): Remove typedefs.
3729 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Remove macros.
3730 (REG_OFFSET): Rename argument.
3731 (i386bsd_r_reg_offset): Rename from reg_offset.
3732 (REG_ADDR): Remove macro.
3733 (cannot_fetch_register, supply_gregset, fill_gregset): Remove
3734 functions.
3735 (i386bsd_supply_gregset, i386bsd_collect_gregset): New functions.
3736 (fetch_inferior_registers): Use `struct reg' and `struct fpreg'
3737 instead of gregset_t and fpregset_t. Use i386bsd_supply_gregset
3738 instead of supply_gregset.
3739 (store_inferior_registers): Use `struct reg' and `struct fpreg'
3740 instead of gregset_t and fpregset_t. Use i386bsd_collect_gregset
3741 instead of fill_gregset.
3742 (register_u_addr): Use i386_r_reg_offset instead of REG_ADDR.
3743
3744 * i386bsd-nat.c: Don't include "gregset.h".
3745 (supply_gregset, fill_gregset): Make static.
3746 (supply_fpregset, fill_fpregset): Remove.
3747 * Makefile.in (i386bsd-nat.o): Update dependencies.
3748
3749 2004-05-30 Mark Kettenis <kettenis@gnu.org>
3750
3751 * fbsd-proc.c: Include "regcache.h", "regset.h" and
3752 "gdb_assert.h". Con't include "gregset.h".
3753 (fbsd_make_corefile_notes): Use regset-based core file support
3754 instead off fill_gregset and fill_fpregset.
3755 * Makefile.in (fbsd-proc.o): Update dependencies.
3756
3757 * m88k-tdep.c (m88k_analyze_prologue): Fix handling of branch
3758 instructions.
3759 (m88k_frame_prev_register): Simplify code a bit.
3760
3761 * amd64-tdep.c (amd64_supply_fpregset): Adjust comment.
3762 (amd64_collect_fpregset): New function.
3763 (amd64_regset_from_core_section): Use amd64_collect_fpregset.
3764
3765 * hppa-tdep.h (hppa_regnum): Add HPPA_R31_REGNUM.
3766
3767 * i386-tdep.c (i386_supply_gregset): Adjust comment.
3768 (i386_collect_gregset): New function.
3769 (i386_supply_fpregset): Adjust comment.
3770 (i386_collect_fpregset): New function.
3771 (i386_regset_from_core_section): Use i386_collect_gregset and
3772 i386_collect_fpregset.
3773
3774 * hppa-tdep.c (hppa_frame_prev_register_helper): Reimplement to
3775 handle VALUEP being null.
3776
3777 * regset.h (collect_regset_ftype): Unconstify fourth argument.
3778
3779 2004-05-29 Mark Kettenis <kettenis@gnu.org>
3780
3781 * MAINTAINERS: Undelete m88k. Add myself as maintainer.
3782
3783 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Adjust for new
3784 assembler in OpenBSD 3.5-current.
3785 (amd64obsd_sigcontext_addr): Likewise.
3786
3787 2004-05-28 Jim Blandy <jimb@redhat.com>
3788
3789 * rs6000-tdep.c: Use the modern gdbarch methods for handling the
3790 register set, so our regcache isn't declared "legacy" and our E500
3791 pseudoregister read and write functions aren't ignored.
3792 (rs6000_register_byte, rs6000_register_raw_size,
3793 rs6000_register_virtual_type, rs6000_register_convertible,
3794 rs6000_register_convert_to_virtual,
3795 rs6000_register_convert_to_raw): Deleted.
3796 (rs6000_register_type, rs6000_convert_register_p,
3797 rs6000_register_to_value, rs6000_value_to_register): New
3798 functions.
3799 (rs6000_gdbarch_init): Don't register
3800 gdbarch_deprecated_register_size,
3801 gdbarch_deprecated_register_bytes,
3802 gdbarch_deprecated_register_byte,
3803 gdbarch_deprecated_register_raw_size,
3804 gdbarch_deprecated_register_virtual_type,
3805 gdbarch_deprecated_register_convertible,
3806 gdbarch_deprecated_register_convert_to_virtual, or
3807 gdbarch_deprecated_register_convert_to_raw methods. Instead,
3808 register gdbarch_register_type, gdbarch_convert_register_p,
3809 gdbarch_register_to_value, and gdbarch_value_to_register methods.
3810
3811 2004-05-26 Jim Blandy <jimb@redhat.com>
3812
3813 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): Deleted.
3814 (rs6000_stab_reg_to_regnum, rs6000_dwarf2_reg_to_regnum): New
3815 functions, updated to match the register numberings used in GCC.
3816 (rs6000_gdbarch_init): Register rs6000_stab_reg_to_regnum and
3817 rs6000_dwarf2_reg_to_regnum as register number conversions
3818 functions for STABS and Dwarf2.
3819
3820 2004-05-26 Randolph Chung <tausq@debian.org>
3821
3822 * infttrace.h (target_waitkind): Forward declare type instead of pulling
3823 in header file.
3824
3825 2004-05-25 Joel Brobecker <brobecker@gnat.com>
3826
3827 * NEWS: Document new "start" command.
3828
3829 2004-05-25 Randolph Chung <tausq@debian.org>
3830
3831 * hppa-linux-tdep.c (hppa_linux_init_abi): sizeof(long double) == 8 on
3832 hppa-linux.
3833
3834 2004-05-25 Randolph Chung <tausq@debian.org>
3835
3836 * hppa-hpux-tdep.c (offsetof): Define.
3837 (hppa_hpux_pc_in_sigtramp, hppa32_hpux_frame_saved_pc_in_sigtramp)
3838 (hppa32_hpux_frame_base_before_sigtramp)
3839 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
3840 (hppa64_hpux_frame_saved_pc_in_sigtramp)
3841 (hppa64_hpux_frame_base_before_sigtramp)
3842 (hppa64_hpux_frame_find_saved_regs_in_sigtramp): Remove unused
3843 functions.
3844 (struct hppa_hpux_sigtramp_unwind_cache, hppa_hpux_tramp_reg)
3845 (hppa_hpux_sigtramp_frame_unwind_cache)
3846 (hppa_hpux_sigtramp_frame_this_id)
3847 (hppa_hpux_sigtramp_frame_prev_register)
3848 (hppa_hpux_sigtramp_frame_unwind)
3849 (hppa_hpux_sigtramp_unwind_sniffer): New signal trampoline unwinder.
3850 (hppa_hpux_init_abi): Register sigtramp unwinder.
3851 * Makefile.in (hppa-hpux-tdep.o): Update dependencies.
3852
3853 2004-05-25 Randolph Chung <tausq@debian.org>
3854
3855 * hppa-tdep.c (hppa_fallback_frame_cache): Handle stack adjustment,
3856 and multiple stack unwinds.
3857 (hppa_stub_unwind_sniffer): Handle unwind from pc == 0.
3858
3859 2004-05-25 Andrew Cagney <cagney@gnu.org>
3860
3861 * symfile.h (symbol_file_add_from_memory): Delete declaration.
3862 * symfile-mem.h: Delete file.
3863 * symfile-mem.c: Do not include "symfile-mem.h".
3864 (symbol_file_add_from_memory): Make static. Use "struct bfd" and
3865 "struct bfd_section". When an error do not bother returning NULL.
3866 (add_symbol_file_from_memory_command): Use "struct bfd" and
3867 "struct bfd_section".
3868 * Makefile.in (symfile_mem_h): Delete.
3869 (symfile-mem.o): Update dependencies.
3870
3871 2004-05-25 Nick Roberts <nickrob@gnu.org>
3872
3873 * gdb-mi.el: New file.
3874
3875 2004-05-25 Andrew Cagney <cagney@gnu.org>
3876
3877 * inftarg.c: Include "observer.h".
3878 (child_attach, child_create_inferior): Notify inferior_created.
3879 * corelow.c: Include "observer.h".
3880 (core_open): Notify inferior_created.
3881 * Makefile.in (inftarg.o, corelow.o): Update dependencies.
3882
3883 2004-05-25 Andrew Cagney <cagney@gnu.org>
3884
3885 * target.h (struct target_ops): Add from_tty to
3886 to_create_inferior.
3887 (target_create_inferior, find_default_create_inferior): Update.
3888 * infcmd.c (run_command): Update.
3889 * wince.c (child_create_inferior): Update.
3890 * win32-nat.c (child_create_inferior): Update.
3891 * uw-thread.c (uw_thread_create_inferior): Update.
3892 * thread-db.c (thread_db_create_inferior): Update.
3893 * target.c (debug_to_create_inferior)
3894 (find_default_create_inferior): Update.
3895 (maybe_kill_then_create_inferior): Update.
3896 * sol-thread.c (sol_thread_create_inferior): Update.
3897 * remote.c (extended_remote_async_create_inferior)
3898 (extended_remote_create_inferior): Update.
3899 * remote-vx.c (vx_create_inferior): Update.
3900 * remote-st.c (st2000_create_inferior): Update.
3901 * remote-sim.c (gdbsim_create_inferior): Update.
3902 * remote-sds.c (sds_create_inferior): Update.
3903 * remote-rdp.c (remote_rdp_create_inferior): Update.
3904 * remote-rdi.c (arm_rdi_create_inferior): Update.
3905 * remote-m32r-sdi.c (m32r_create_inferior): Update.
3906 * remote-e7000.c (e7000_create_inferior): Update.
3907 * procfs.c (procfs_create_inferior): Update.
3908 * ocd.c (ocd_create_inferior): Update.
3909 * ocd.h (ocd_create_inferior): Update.
3910 * nto-procfs.c (procfs_create_inferior): Update.
3911 * monitor.c (monitor_create_inferior): Update.
3912 * lin-lwp.c (lin_lwp_create_inferior): Update.
3913 * inftarg.c (child_create_inferior): Update.
3914 * hpux-thread.c (hpux_thread_create_inferior): Update.
3915 * gnu-nat.c (gnu_create_inferior): Update.
3916
3917 2004-05-25 Andrew Cagney <cagney@gnu.com>
3918
3919 * MAINTAINERS: Update e-mail address.
3920
3921 2004-05-24 Randolph Chung <tausq@debian.org>
3922
3923 * thread.c (info_threads_command, thread_apply_all_command)
3924 (thread_apply_command, thread_command, do_captured_thread_select):
3925 Remove HPUXHPPA-specific code.
3926
3927 2004-05-24 Randolph Chung <tausq@debian.org>
3928
3929 * hppa-tdep.c (SR4EXPORT_LDIL_OFFSET, SR4EXPORT_LDO_OFFSET): Remove
3930 unused symbols.
3931 * hppa-tdep.h (HPPA_INSTRUCTION_SIZE): Remove, since there are no more
3932 references.
3933
3934 2004-05-24 Joel Brobecker <brobecker@gnat.com>
3935
3936 * infcmd.c (kill_if_already_running): New function, extracted
3937 from run_command().
3938 (run_command): Replace extracted code by call to
3939 kill_if_already_running().
3940 (start_command): New function.
3941 (_initialize_infcmd): Add "start" command.
3942
3943 2004-05-24 Mark Kettenis <kettenis@gnu.org>
3944
3945 Add OpenBSD/m88k support.
3946 * NEWS (New native configurations): Mention OpenBSD/m88k.
3947 * m88k-tdep.c, m88k-tdep.h, m88kbsd-nat.c, config/m88k/nm-obsd.h,
3948 config/m88k/obsd.mh, config/m88k/obsd.mt: New files.
3949 * Makefile.in (m88k_tdep_h): New variable.
3950 (ALLDEPFILES): Add m88k-tdep.c and m88kbsd-nat.c.
3951 (m88kbsd-nat.o, m88k-tdep.o): New dependencies.
3952 * configure.host: Add m88*-*-openbsd*.
3953 * configure.tgt: Add m88*-*-openbsd*.
3954
3955 2004-05-24 Jim Blandy <jimb@redhat.com>
3956
3957 * MAINTAINERS (tracing bytecode stuff): Allow global maintainers
3958 to approve changes.
3959
3960 2004-05-24 Kevin Buettner <kevinb@redhat.com>
3961
3962 * symtab.c (fixup_section): Search section table when lookup by
3963 name fails.
3964
3965 2004-05-24 Randolph Chung <tausq@debian.org>
3966
3967 * hppa-tdep.c: Fix handling of 8-byte structures; they should not
3968 be "small_struct".
3969
3970 2004-05-24 Mark Kettenis <kettenis@gnu.org>
3971
3972 * m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct
3973 register number in regcache_raw_collect call.
3974 (m68kbsd_collect_fpregset): Likewise.
3975 * vaxbsd-nat.c (vaxbsd_collect_gregset): Likewise.
3976
3977 * regset.h (struct regset): Add back `regset' member.
3978
3979 2004-05-23 Mark Kettenis <kettenis@gnu.org>
3980
3981 * configure.in: Check for td_pcb in `struct thread'.
3982 * configure, config.in: Regenerated.
3983
3984 * dpx2-nat.c: Remove file.
3985 * Makefile.in (ALLDEPFILES): Remove dpx2-nat.c.
3986 (dpx2-nat.o): Remove dependencies.
3987
3988 * amd64obsd-nat.c: Include "gdbcore.h", "regcache.h",
3989 <sys/types.h>, <machine/frame.h>, <machine/pcb.h> and "bsd-kvm.h".
3990 (amd64obsd_supply_pcb): New function.
3991 (_initialize_amd64obsd_nat): Enable libkvm interface.
3992 * Makefile.in (amd64obsd-nat.o): Update dependencies.
3993 * config/i386/obsd64.mh (NATDEPFILES): Add bsd-kvm.o
3994 (LOADLIBES): New variable.
3995
3996 * sparcnbsd-nat.c: Include "gdbcore.h", "regcache.h",
3997 <sys/types.h>, <machine/pcb.h> and "bsd-kvm.h".
3998 (sparc32nbsd_supply_pcb): New function.
3999 (_initialize_sparcnbsd_nat): Enable libkvm interface.
4000 * Makefile.in (sparcnbsd-nat.o): Update dependencies.
4001 * config/sparc/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
4002 (LOADLIBES): New variable.
4003
4004 2004-05-22 Mark Kettenis <kettenis@gnu.org>
4005
4006 * bsd-kvm.c, bsd-kvm.h: New files.
4007 * i386fbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
4008 "bsd-kvm.h".
4009 (i386fbsd_supply_pcb): New function.
4010 * Makefile.in (ALLDEPFILES): Add bsd-kvm.c.
4011 (i386fbsd-nat.o): Update dependencies.
4012 (bsd_kvm_h): New variable.
4013 (bsd-kvm.o): New dependency.
4014 * config/i386/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
4015 (LOADLIBES): New variable.
4016
4017 * regset.c: Tweak comment.
4018 (regset_alloc): Remove descr argument. Use GDBARCH_OBSTACK_ZALLOC
4019 macro.
4020 * regset.h: Update copyright year.
4021 (struct regset): Remove `descr' member, add `gdbarch' member.
4022 (regset_alloc): Adjust prototype and comment.
4023 * i386-tdep.c (i386_supply_gregset): Get TDEP from REGSET->arch.
4024 (i386_supply_fpregset): Likewise.
4025 (i386_regset_from_core_section): Update call to regset_alloc.
4026 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Get TDEP from
4027 REGSET->arch.
4028 (i386obsd_aout_regset_from_core_section): Update call to
4029 regset_alloc.
4030 * i386nbsd-tdep.c (i386nbsd_aout_supply_regset): Get TDEP from
4031 REGSET->arch.
4032 (i386nbsd_aout_regset_from_core_section): Update call to
4033 regset_alloc.
4034 * amd64-tdep.c (amd64_supply_fpregset): Get TDEP from
4035 REGSET->arch.
4036 (amd64_regset_from_core_section): Update call to regset_alloc.
4037 * amd64obsd-tdep.c (amd64obsd_supply_regset): Get TDEP from
4038 REGSET->arch.
4039 (amd64obsd_regset_from_core_section): Update call to regset_alloc.
4040 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Directly pass
4041 &sparc32nbsd_gregset in sparc32_supply_gregset call.
4042 (sparc32nbsd_init_abi): Update call to regset_alloc.
4043 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Directly pass
4044 &sparc64obsd_core_gregset in sparc64_supply_gregset call.
4045 (sparc64obsd_init_abi): Update call to regset_alloc.
4046 * sparc64nbsd-tdep.c (sparc64nbsd_supply_gregset): Directly pass
4047 &sparc64nbsd_gregset in sparc64_supply_gregset call.
4048 (sparc64nbsd_init_abi): Update call to regset_alloc.
4049 * sparc64fbsd-tdep.c (sparc64fbsd_supply_gregset): Directly pass
4050 &sparc64fbsd_gregset in sparc64_supply_gregset call.
4051 (sparc64fbsd_init_abi): Update call to regset_alloc.
4052
4053 2004-05-22 Jim Blandy <jimb@redhat.com>
4054
4055 * ppc-tdep.h (spe_register_p): New declaration.
4056 (struct gdbarch_tdep): New members: ppc_acc_regnum and
4057 ppc_spefscr_regnum.
4058 * rs6000-tdep.c (spe_register_p): New function.
4059 (rs6000_dwarf2_stab_reg_to_regnum): Recognize numbers for acc and
4060 spefscr.
4061 (rs6000_gdbarch_init): Initialize the new members of the tdep
4062 structure.
4063
4064 2004-05-21 Jim Blandy <jimb@redhat.com>
4065
4066 * ppc-linux-nat.c (fetch_register): Move code back to be next
4067 to the comment that describes it. (Moved code, instead of
4068 comment, for symmetry with store_register.)
4069
4070 Allocate regset structures in the gdbarch's obstack, not using
4071 xmalloc.
4072 * regset.c (regset_alloc): Renamed from regset_xmalloc.
4073 Add 'arch' argument. Allocate the regset on arch's obstack, not
4074 using xmalloc.
4075 * regset.h (regset_alloc): Update declaration.
4076 * am64-tdep.c (amd64_regset_from_core_section): Update call; pass
4077 gdbarch argument.
4078 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
4079 * i386-tdep.c (i386_regset_from_core_section): Same.
4080 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
4081 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
4082 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
4083 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
4084 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
4085 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
4086
4087 2004-05-21 Joel Brobecker <brobecker@gnat.com>
4088
4089 * config/djgpp/fnchange.lst: Undo previous change, was useless.
4090
4091 2004-05-21 Jim Blandy <jimb@redhat.com>
4092
4093 * dwarf2expr.c (execute_stack_op): Add 'break' statements after
4094 cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
4095
4096 2004-05-20 Jim Blandy <jimb@redhat.com>
4097
4098 * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
4099
4100 2004-05-20 Mark Kettenis <kettenis@gnu.org>
4101
4102 * regset.h: Make prototype const-correct.
4103 * regset.c (regset_xmalloc): Make const-correct.
4104
4105 2004-05-20 Paul N. Hilfinger <hilfinger@gnat.com>
4106
4107 * symtab.h (SYMBOL_SEARCH_NAME): New definition.
4108 (SYMBOL_MATCHES_SEARCH_NAME): New definition.
4109 (symbol_search_name): Declare.
4110
4111 * dictionary.c (iter_name_first_hashed): Match on SYMBOL_SEARCH_NAME.
4112 (iter_name_next_hashed): Ditto.
4113 (iter_name_next_linear): Ditto.
4114 (insert_symbol_hashed): Hash on SYMBOL_SEARCH_NAME.
4115
4116 * symtab.c (lookup_partial_symbol): Assume symbols ordered by
4117 search name, using SYMBOL_SEARCH_NAME and SYMBOL_MATCHES_SEARCH_NAME.
4118 (symbol_search_name): New function.
4119
4120 * symfile.c (compare_psymbols): Order by SYMBOL_SEARCH_NAME.
4121
4122 * minsyms.c (build_minimal_symbol_hash_tables): Change
4123 test for adding to demangled hash table to check for difference
4124 between SYMBOL_SEARCH_NAME and SYMBOL_LINKAGE_NAME.
4125
4126 2004-05-19 Jim Blandy <jimb@redhat.com>
4127
4128 Use a constructor function to create regset structures.
4129 * regset.h (supply_regset_ftype, collect_regset_ftype): New typedefs.
4130 (struct regset): Use supply_regset_ftype. Add new
4131 'collect_regset' member.
4132 (regset_xmalloc): New declaration.
4133 * regset.c: New file.
4134 * am64-tdep.c (amd64_regset_from_core_section): Use
4135 regset_xmalloc to construct regset structures.
4136 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
4137 * i386-tdep.c (i386_regset_from_core_section): Same.
4138 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
4139 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
4140 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
4141 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
4142 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
4143 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
4144 * Makefile.in (COMMON_OBS): Add regset.o.
4145 (regset.o): New rule.
4146
4147 2004-05-19 Joel Brobecker <brobecker@gnat.com>
4148
4149 * config/djgpp/fnchange.lst: Add entries for pthread_cond_wait.exp
4150 and pthread_cond_wait.c.
4151
4152 2004-05-18 Jim Blandy <jimb@redhat.com>
4153
4154 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize tdep fields
4155 before the mach-specific switch, and then let the individual cases
4156 override the defaults, rather than leaving them uninitialized
4157 until the switch and then setting them in each case.
4158
4159 2004-05-18 Randolph Chung <tausq@debian.org>
4160
4161 * hppa-tdep.c (hppa_frame_cache): Check for validity of r31 for
4162 millicode functions.
4163
4164 2004-05-18 Randolph Chung <tausq@debian.org>
4165
4166 * somsolib.c (som_solib_remove_inferior_hook): Make all the size
4167 references to dld_flags_buffer consistent.
4168
4169 2004-05-18 Randolph Chung <tausq@debian.org>
4170
4171 * hppa-tdep.c (hppa_frame_cache): If a frame pointer is available, use
4172 it for unwinding the stack.
4173
4174 2004-05-18 Randolph Chung <tausq@debian.org>
4175
4176 * config/pa/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE)
4177 Undefine these so we can overide them using gdbarch.
4178
4179 2004-05-18 Randolph Chung <tausq@debian.org>
4180
4181 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't do export stub
4182 handling for 64-bit HPUX (elf).
4183
4184 2004-05-18 Daniel Jacobowitz <dan@debian.org>
4185
4186 * alpha-tdep.c (alpha_gdbarch_init): Use LL suffix for large
4187 constants.
4188 * amd64-tdep.c (amd64_skip_prologue): Likewise.
4189 * ia64-tdep.c (examine_prologue): Likewise.
4190 * ns32k-tdep.c (ns32k_fix_call_dummy): Remove unused function.
4191 * v850-tdep.c (v850_fix_call_dummy): Likewise.
4192
4193 2004-05-18 Mark Kettenis <kettenis@gnu.org>
4194
4195 * vax-tdep.c (vax_return_value): Implement
4196 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4197
4198 2004-05-17 Mark Kettenis <kettenis@gnu.org>
4199
4200 * vax-tdep.c (vax_return_value): Fix typo.
4201
4202 2004-05-17 Andrew Cagney <cagney@redhat.com>
4203
4204 * MAINTAINERS: Mark Salter was also responsible for
4205 testsuite/config/
4206
4207 * NEWS: Mention signal fixes.
4208
4209 2004-05-17 Randolph Chung <tausq@debian.org>
4210
4211 * hppa-tdep.c (hppa_stub_frame_unwind_cache): For HPUX stub unwinding,
4212 check to see if we are unwinding an export stub. Export stubs clobber
4213 the %rp in the call path and stores the original rp in a stack slot.
4214
4215 2004-05-17 Jim Blandy <jimb@redhat.com>
4216
4217 * MAINTAINERS: Update address for J.T. Conklin.
4218
4219 2004-05-17 Randolph Chung <tausq@debian.org>
4220
4221 * hppa-tdep.c: Remove superfluous #include's.
4222 * Makefile.in (hppa-tdep.o): Update dependencies.
4223
4224 2004-05-17 Randolph Chung <tausq@debian.org>
4225
4226 * hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
4227 (THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
4228 (unwind_command, hppa_alignof, prologue_inst_adjust_sp)
4229 (is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
4230 (read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
4231 Remove static function declarations.
4232
4233 2004-05-17 Mark Kettenis <kettenis@gnu.org>
4234
4235 * alphabsd-nat.c: Update copyright year.
4236 (getregs_supplies): Replace PC_REGNUM with ALPHA_PC_REGNUM.
4237
4238 * m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM
4239 and M68K_A2_REGNUM.
4240
4241 * m68k-tdep.c (m68k_svr4_return_value): Implement
4242 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4243
4244 2004-05-16 Mark Kettenis <kettenis@gnu.org>
4245
4246 * sol-thread.c Update copyright year. Fix various coding
4247 standards violations. Tweak a few comments.
4248 (td_err_string, td_state_string, thread_to_lwp, lwp_to_thread):
4249 Delete prototypes.
4250
4251 2004-05-15 Randolph Chung <tausq@debian.org>
4252
4253 * hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs
4254 as pointer instead of array reference since HPUX compiler does
4255 not accept unsized array arguments.
4256 * somsolib.c (dld_flags_buffer): Use constant array size.
4257
4258 2004-05-15 Mark Kettenis <kettenis@gnu.org>
4259
4260 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimal
4261 offset with decimal offset.
4262 (amd64obsd_sigcontext_addr): Return correct address for entire
4263 signal trampoline.
4264
4265 * vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
4266 instead of get_frame_base.
4267
4268 * i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.
4269 (fill_gregset): Use regcache_raw_collect.
4270
4271 * config/djgpp/fnchange.lst: Add entries for ppcobsd-nat.c and
4272 ppcobsd-tdep.c.
4273
4274 * config/sparc/tm-nbsd64.h: Remove file.
4275 * config/tm-sunos.h: Remove file.
4276
4277 2004-05-15 Joel Brobecker <brobecker@gnat.com>
4278
4279 * rs6000-tdep.c (store_param_on_stack_p): New function,
4280 an improved version of some code extracted from skip_prologue().
4281 (skip_prologue): Use store_param_on_stack_p() to detect
4282 instructions saving a parameter on the stack. Detect when r0
4283 is used to save a parameter.
4284 Do not mark "li rx, SIMM" instructions as part of the prologue,
4285 unless the following instruction is also part of the prologue.
4286
4287 2004-05-14 Andrew Cagney <cagney@redhat.com>
4288
4289 * infrun.c (handle_inferior_event): Simplify
4290 STEP_OVER_UNDEBUGGABLE.
4291
4292 * infrun.c (handle_step_into_function): Delete function.
4293 (handle_inferior_event): Inline calls to
4294 handle_step_into_function.
4295
4296 2004-05-14 Jerome Guitton <guitton@gnat.com>
4297
4298 * rs6000-nat.c: Fix a comment.
4299
4300 2004-05-12 David Anderson <davea@sgi.com>
4301
4302 Committed by Jim Blandy <jimb@redhat.com>:
4303 * regcache.c (struct regcache_descr): fix comment spelling.
4304
4305 2004-05-13 J. Brobecker <brobecker@gnat.com>
4306
4307 * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
4308 Fixes a link link failure.
4309
4310 2004-05-13 J. Brobecker <brobecker@gnat.com>
4311
4312 * aix-thread.c (store_regs_kernel_thread): Fix a little obvious
4313 error that was causing the build to fail.
4314
4315 2004-05-13 J. Brobecker <brobecker@gnat.com>
4316
4317 * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.
4318 * Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
4319
4320 2004-05-13 Andrew Cagney <cagney@redhat.com>
4321
4322 * infrun.c (handle_inferior_event): Check for
4323 STEP_OVER_UNDEBUGGABLE after signal trampolines and function
4324 calls. Update comments.
4325
4326 2004-05-13 Jim Blandy <jimb@redhat.com>
4327
4328 * aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)
4329 (fetch_regs_user_thread, fetch_regs_kernel_thread)
4330 (store_regs_user_thread, store_regs_kernel_thread): Use
4331 ppc_num_gprs and ppc_num_fprs instead of '32' and '31'.
4332 * ppc-linux-nat.c (fill_gregset): Same.
4333 * ppc-linux-tdep.c (ppc_linux_supply_gregset)
4334 (ppc_linux_sigtramp_cache): Same.
4335 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg)
4336 (ppcnbsd_sigtramp_cache_init): Same.
4337 * rs6000-nat.c (fetch_core_registers): Same.
4338 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset)
4339 (rs6000_frame_cache): Same.
4340
4341 * aix-thread.c (supply_gprs64, fetch_regs_user_thread)
4342 (store_regs_user_thread): Use tdep->ppc_gp0_regnum, instead
4343 of assuming that the gprs are numbered starting with zero.
4344 * ppc-linux-nat.c (fill_gregset): Same.
4345 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Same.
4346 * ppcnbsd-nat.c (getregs_supplies): Same.
4347 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg): Same.
4348 * rs6000-nat.c (fetch_core_registers): Same.
4349 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset): Same.
4350
4351 2004-05-07 Michael Snyder <msnyder@redhat.com>
4352
4353 * tracepoint.c (scope_info): Add handling for LOC_COMPUTED,
4354 LOC_COMPUTED_ARG, and LOC_INDIRECT.
4355
4356 2004-05-13 Andrew Cagney <cagney@redhat.com>
4357
4358 * infrun.c (handle_inferior_event): Use frame_unwind_id.
4359
4360 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
4361
4362 * dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust
4363 base_address for shared libraries.
4364
4365 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
4366
4367 * MAINTAINERS (write after approval): Add myself.
4368
4369 2004-05-13 Ulrich Weigand <uweigand@de.ibm.com>
4370
4371 * breakpoint.c (bpstat_stop_status): Add new argument
4372 STOPPED_BY_WATCHPOINT. Use it instead of testing
4373 target_stopped_data_address agaist 0 to check whether
4374 or not we stopped due to a hardware watchpoint.
4375 * breakpoint.h (bpstat_stop_status): Adapt prototype.
4376 * infrun.c (handle_inferior_event): Call bpstat_stop_status
4377 with new argument.
4378
4379 2004-05-12 Jim Blandy <jimb@redhat.com>
4380
4381 * configure.in: When checking whether we should use the -bbigtoc
4382 option, don't forget to restore the original value of LDFLAGS.
4383 * configure: Regenerated.
4384
4385 2004-05-12 Andrew Cagney <cagney@redhat.com>
4386
4387 * thread.c (load_infrun_state): Delete step_sp.
4388 * infrun.c (context_switch): Ditto.
4389 * inferior.h (step_sp): Ditto.
4390 * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto.
4391 * gdbthread.h (struct thread_info, save_infrun_state)
4392 (restore_infrun_state): Ditto.
4393
4394 2004-05-12 Ulrich Weigand <uweigand@de.ibm.com>
4395
4396 * MAINTAINERS (write after approval): Add myself.
4397
4398 2004-05-12 Andrew Cagney <cagney@redhat.com>
4399
4400 * infrun.c (adjust_pc_after_break): Rewrite decr logic,
4401 eliminate reference to step_sp.
4402 (struct execution_control_state, init_execution_control_state)
4403 (handle_inferior_event, keep_going): Delete update_step_sp and
4404 step_sp.
4405 * infcmd.c (step_sp): Note that variable is unused.
4406
4407 2004-05-11 Andrew Cagney <cagney@redhat.com>
4408
4409 * infrun.c (step_over_function): Delete function.
4410 (handle_step_into_function): Use insert_step_resume_breakpoint.
4411 (insert_step_resume_breakpoint): Fix assertion.
4412
4413 2004-05-11 Nick Roberts <nickrob@gnu.org>
4414
4415 * utils.c (defaulted_query): Just use the normal query input type
4416 when printing the annotations.
4417
4418 2004-05-11 Andrew Cagney <cagney@redhat.com>
4419
4420 * infrun.c (handle_inferior_event): Simplify code handling
4421 step-into or return-from a signal trampoline.
4422
4423 2004-05-11 Andrew Cagney <cagney@redhat.com>
4424
4425 * ppcnbsd-tdep.c: Include "gdb_assert.h".
4426 * Makefile.in (ppcnbsd-tdep.o): Update dependencies.
4427
4428 2004-05-10 Jim Blandy <jimb@redhat.com>
4429
4430 * ppc-bdm.c (bdm_ppc_fetch_registers): Replace utterly broken code
4431 with a call to internal_error.
4432
4433 * ppc-tdep.h (struct gdbarch_tdep): Change definition of
4434 ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
4435 processor variant lacks those registers.
4436 (ppc_floating_point_unit_p): Change description to make it clear
4437 that this returns info about the ISA, not the ABI.
4438 * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
4439 return true or false by checking tdep->ppc_fp0_regnum and
4440 tdep->ppc_fpscr_regnum. The original code replicated the BFD
4441 arch/mach switching done in rs6000_gdbarch_init; it's better to
4442 keep that logic there, and just check the results here.
4443 (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
4444 tdep->ppc_fpscr_regnum to -1 to indicate that we have no
4445 floating-point registers.
4446 (ppc_supply_fpregset, ppc_collect_fpregset)
4447 (rs6000_push_dummy_call, rs6000_extract_return_value)
4448 (rs6000_store_return_value): Assert that we have floating-point
4449 registers.
4450 (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
4451 (rs6000_frame_cache): Don't note the locations at which
4452 floating-point registers were saved if we have no fprs.
4453 * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
4454 registers.
4455 (fetch_regs_user_thread, fetch_regs_kernel_thread)
4456 (store_regs_user_thread, store_regs_kernel_thread): Only call
4457 supply_fprs / fill_fprs if we actually have floating-point
4458 registers.
4459 (special_register_p): Check ppc_fpscr_regnum before matching
4460 against it.
4461 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
4462 supply / collect fpscr if we don't have it.
4463 * ppc-bdm.c: #include "gdb_assert.h".
4464 (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
4465 have floating-point registers, since I can't test this code on
4466 FP-free systems to adapt it.
4467 * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
4468 fpscr and floating point register numbers if they don't exist.
4469 (fetch_register): Assert that we have floating-point registers
4470 before we reach the code that handles them.
4471 (store_register): Same. And use tdep instead of calling
4472 gdbarch_tdep again.
4473 (fill_fpregset): Don't try to collect FP registers and fpscr if we
4474 don't have them.
4475 (ppc_linux_sigtramp_cache): Don't record the saved locations of
4476 fprs and fpscr if we don't have them.
4477 (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
4478 don't have them.
4479 * ppcnbsd-nat.c: #include "gdb_assert.h".
4480 (getfpregs_supplies): Assert that we have floating-point registers.
4481 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
4482 * ppcobsd-tdep.c: #include "gdb_assert.h".
4483 (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
4484 have floating-point registers.
4485 * rs6000-nat.c (regmap): Don't match against the fpscr and
4486 floating point register numbers if they don't exist.
4487 (fetch_inferior_registers, store_inferior_registers,
4488 fetch_core_registers): Only fetch / store / supply the
4489 floating-point registers and the fpscr if we have them.
4490 * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
4491 (ppcobsd-tdep.o): Update dependencies.
4492
4493 2004-05-10 Andrew Cagney <cagney@redhat.com>
4494
4495 * infrun.c (through_sigtramp_breakpoint): Delete variable.
4496 (context_switch): Do not switch through_sigtramp_breakpoint.
4497 * gdbthread.h (save_infrun_state, load_infrun_state)
4498 (struct thread_info): Delete through_sigtramp_breakpoint parameter
4499 and structure member.
4500 * thread.c (load_infrun_state, save_infrun_state): Update.
4501
4502 2004-05-10 Mark Kettenis <kettenis@gnu.org>
4503
4504 * m68kbsd-tdep.c (m68kbsd_elf_init_abi): Call m68k_svr4_init_abi.
4505
4506 2004-05-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
4507
4508 * acinclude.m4: Quote macro names being defined by AC_DEFUN
4509 throughout.
4510 * aclocal.m4: Regenerate.
4511
4512 2004-05-10 Nathan J. Williams <nathanw@wasabisystems.com>
4513
4514 * alphanbsd-tdep.c: Fix include of "gdb_string.h".
4515
4516 2004-05-10 Andrew Cagney <cagney@redhat.com>
4517
4518 * infrun.c (check_sigtramp2): Delete function.
4519 (handle_inferior_event): When single stepping, and taking a
4520 signal, set a breakpoint at the signal return address. Delete
4521 redundant calls to check_sigtramp2.
4522 (insert_step_resume_breakpoint): New function.
4523 (through_sigtramp_breakpoint, handle_inferior_event)
4524 (follow_exec, wait_for_inferior, fetch_inferior_event)
4525 (currently_stepping, keep_going): Delete most uses of
4526 through_sigtramp_breakpoint, not that it should be deleted.
4527 (delete_breakpoint_current_contents): Delete function.
4528
4529 2004-05-10 Randolph Chung <tausq@debian.org>
4530
4531 * config/pa/linux.mt (TM_FILE): Use new tm-linux.h for hppa-linux
4532 target.
4533 * config/pa/tm-linux.h: New file.
4534
4535 2004-05-10 Daniel Jacobowitz <drow@mvista.com>
4536
4537 * cli/cli-setshow.c (cmd_show_list): Check for "show" in the middle
4538 of prefixes. Don't print the prefix twice in the CLI.
4539
4540 2004-05-10 Jim Blandy <jimb@redhat.com>
4541
4542 * rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do
4543 collect all the gprs.
4544
4545 * rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error in
4546 loop collecting gprs.
4547
4548 2004-05-09 Andrew Cagney <cagney@redhat.com>
4549
4550 * remote-vx.c (net_step): Delete step-range code.
4551 * remote.c (remote_resume, init_all_packet_configs)
4552 (set_remote_protocol_E_packet_cmd)
4553 (show_remote_protocol_E_packet_cmd)
4554 (remote_protocol_E, show_remote_cmd, _initialize_remote)
4555 (remote_protocol_e, set_remote_protocol_e_packet_cmd)
4556 (show_remote_protocol_e_packet_cmd): Ditto.
4557
4558 2004-05-09 Mark Kettenis <kettenis@gnu.org>
4559
4560 * hppa-tdep.h (enum hppa_regnum): Name enum, add HPPA_R1_REGNUM.
4561
4562 * hppa-tdep.h: Update copyright year.
4563 (struct trad_frame_saved_reg): Add opaque declaration.
4564
4565 * amd64-tdep.c (amd64_return_value): Implement
4566 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4567
4568 * m68k-tdep.c (m68k_convert_register_p, m68k_register_to_value)
4569 (m68k_value_to_register): New functions.
4570 (m68k_gdbarch_init): Set convert_register_p, register_to_value and
4571 value_to_register.
4572
4573 * defs.h (enum return_value_convention): Add
4574 RETURN_VALUE_ABI_RETURNS_ADDRESS and
4575 RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4576 * infcmd.c (legacy_return_value): New function.
4577 (print_return_value): Rwerite to implement
4578 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4579 * values.c (using_struct_return): Check for inequality to
4580 RETURN_VALUE_REGISTER_CONVENTION instead of equality to
4581 RETURN_VALUE_STRUCT_CONVENTION.
4582 * i386-tdep.c (i386_return_value): Implement
4583 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4584
4585 * vax-tdep.c: Tweak comments. Reorder include files. Don't
4586 include "symtab.h", "opcode/vax.h" and "inferior.h".
4587 (vax_skip_prologue): Replace calls to read_memory_integer by calls
4588 to read_memory_unsigned_integer.
4589 (vax_gdbarch_init): Reorder.
4590 (_initialize_vax_tdep): Spell out prototype.
4591 * Makefile.in (vax-tdep.o): Update dependencies.
4592
4593 2004-05-08 Andrew Cagney <cagney@redhat.com>
4594
4595 * infrun.c (resume): Delete call to DO_DEFERRED_STORES.
4596 * target.c (target_detach, target_disconnect): Ditto.
4597
4598 * infcall.c (call_function_by_hand): When no
4599 DEPRECATED_SAVE_DUMMY_FRAME_TOS call generic_save_dummy_frame_tos.
4600 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set
4601 DEPRECATED_SAVE_DUMMY_FRAME_TOS.
4602 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4603 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4604
4605 * gdbarch.sh (DEPRECATED_FIX_CALL_DUMMY): Delete.
4606 * gdbarch.h, gdbarch.c: Re-generate.
4607 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4608 deprecated_fix_call_dummy.
4609 * v850-tdep.c (v850_gdbarch_init): Ditto.
4610 * infcall.c (call_function_by_hand): Do not call
4611 DEPRECATED_FIX_CALL_DUMMY.
4612
4613 * gdbarch.sh (DEPRECATED_CALL_DUMMY_WORDS)
4614 (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Delete.
4615 * gdbarch.h, gdbarch.c: Re-generate.
4616 * arm-linux-tdep.c (arm_linux_call_dummy_words)
4617 (arm_linux_init_abi): Do not set deprecated_call_dummy_words or
4618 deprecated_sizeof_call_dummy_words.
4619 * arm-tdep.c (arm_call_dummy_words, arm_gdbarch_init): Ditto.
4620 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
4621 * v850-tdep.c (v850_gdbarch_init): Ditto.
4622 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
4623 * ns32k-tdep.c (ns32k_call_dummy_words, ns32k_gdbarch_init): Ditto.
4624 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4625 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4626 * arch-utils.h (legacy_call_dummy_words)
4627 (legacy_sizeof_call_dummy_words): Delete declarations.
4628 * arch-utils.c (legacy_call_dummy_words)
4629 (legacy_sizeof_call_dummy_words): Delete variables.
4630
4631 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Delete.
4632 * gdbarch.h, gdbarch.c: Re-generate.
4633 * inferior.h (PUSH_DUMMY_FRAME): Delete macro.
4634 * infcall.c (call_function_by_hand): Eliminate call to
4635 DEPRECATED_PUSH_DUMMY_FRAME.
4636 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
4637 push_dummy_frame.
4638 (ns32k_push_dummy_frame): Delete function.
4639
4640 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4641 deprecated_call_dummy_breakpoint_offset or
4642 deprecated_call_dummy_start_offset.
4643 * dummy-frame.c, arm-tdep.c: Update comments.
4644 * gdbarch.sh (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET)
4645 (DEPRECATED_CALL_DUMMY_START_OFFSET): Delete.
4646 * gdbarch.h, gdbarch.c: Re-generate.
4647
4648 * infcall.c (legacy_push_dummy_code): Delete function.
4649 (push_dummy_code): Delete call.
4650
4651 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete.
4652 * gdbarch.h, gdbarch.c: Re-generate.
4653 * blockframe.c (legacy_frame_chain_valid): Simplify by eliminating
4654 DEPRECATED_USE_GENERIC_DUMMY_FRAMES.
4655 * infcall.c (legacy_push_dummy_code, call_function_by_hand): Ditto.
4656 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Ditto.
4657
4658 * breakpoint.h (deprecated_frame_in_dummy): Delete declaration.
4659 (struct frame_info): Delete opaque declaration.
4660 * breakpoint.c (deprecated_frame_in_dummy): Delete function.
4661 * frame.c (get_frame_type): Delete call.
4662
4663 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
4664 pc_in_call_dummy.
4665 * inferior.h (deprecated_pc_in_call_dummy_on_stack): Delete.
4666 * blockframe.c (deprecated_pc_in_call_dummy_on_stack): Delete.
4667
4668 2004-05-08 Mark Kettenis <kettenis@gnu.org>
4669
4670 * alphanbsd-tdep.c: Include "gdb_string.h".
4671 * armnbsd-tdep.c: Update copyright year.
4672 Include "gdb_string.h".
4673 * Makefile.in (alphanbsd-tdep.o, armnbsd-tdep.o): Update
4674 dependencies.
4675
4676 * delta68-nat.c: Remove file.
4677 * m68k-tdep.c (delta68_in_sigtramp, delta68_frame_args_address)
4678 (delta68_frame_saved_pc, delta68_frame_num_args): Remove functions.
4679 * Makefile.in (ALLDEPFILES): Remove delta68-nat.c.
4680 (delta68-nat.o): Remove dependency.
4681
4682 * m68k-tdep.c (m68k_frameless_function_invocation): Remove
4683 function.
4684 (m68k_gdbarch_init): Don't set
4685 deprecated_frameless_function_invocation.
4686
4687 2004-05-07 Randolph Chung <tausq@debian.org>
4688
4689 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
4690 read_memory_nobpt for code reading when doing frame unwinding.
4691 * hppa-linux-tdep.c (insns_match_pattern): Likewise.
4692
4693 2004-05-07 Randolph Chung <tausq@debian.org>
4694
4695 * hppa-linux-tdep.c (hppa_linux_sigtramp_find_sigcontext): Pass in pc
4696 instead of sp, handle sigaltstack case.
4697 (hppa_linux_sigtramp_frame_unwind_cache): Adjust calls to
4698 hppa_linux_sigtramp_find_sigcontext, and set base to the frame of the
4699 signal handler and not that of the caller.
4700 (hppa_linux_sigtramp_unwind_sniffer): Adjust calls to
4701 hppa_linux_sigtramp_find_sigcontext.
4702
4703 2004-05-07 Randolph Chung <tausq@debian.org>
4704
4705 * Makefile.in (ALLDEPFILES): Add hppa-linux-tdep.c and
4706 hppa-linux-nat.c.
4707 (hppa-linux-tdep.o, hppa-linux-nat.o): Define rules.
4708 * hppa-linux-nat.c (fetch_register, store_register): Define.
4709 (fetch_inferior_registers, store_inferior_registers): Define.
4710 (supply_gregset): Add comment and clean up some unneeded code.
4711 (fill_gregset): Add comment and fix so that it saves registers in
4712 the right place in the gregset.
4713 (fill_fpregset): Fix buffer overrun problem.
4714 * config/pa/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
4715
4716 2004-05-07 Randolph Chung <tausq@debian.org>
4717
4718 * hppa-tdep.c (hppa_frame_prev_register_helper): New function to
4719 do common handling of the pcoqt register.
4720 (hppa_frame_prev_register, hppa_stub_frame_prev_register): Convert
4721 to use helper function.
4722 (hppa_frame_unwind_sniffer): Only use if unwind entry is present.
4723 (hppa_fallback_frame_cache, hppa_fallback_frame_this_id)
4724 (hppa_fallback_frame_prev_register, hppa_fallback_frame_unwind): New
4725 generic fallback unwinder when all else fails.
4726 (hppa_gdbarch_init): Add fallback sniffer.
4727 * hppa-tdep.h (hppa_frame_prev_register_helper): Prototype.
4728 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register): Convert
4729 to use helper function.
4730
4731 2004-05-08 Joel Brobecker <brobecker@gnat.com>
4732
4733 * config/djgpp/fnchange.lst: Add translation rules for
4734 gdb.arch/powerpc-aix-prologue.c and gdb.arch/powerpc-aix-prologue.exp.
4735
4736 2004-05-08 Mark Kettenis <kettenis@gnu.org>
4737
4738 * frame.c (get_prev_frame_1): Work around GCC bug.
4739 * frame.h: Add comment about GCC bug.
4740
4741 2004-05-07 Andrew Cagney <cagney@redhat.com>
4742
4743 * observer.c: Include "commands.h" and "gdbcmd.h".
4744 (observer_debug, _initialize_observer): Add the
4745 command "set/show debug observer".
4746 * observer.sh: When observer debugging, log notify calls.
4747 * Makefile.in (observer.o): Update dependencies.
4748
4749 2004-05-07 Jason Molenda (jmolenda@apple.com)
4750
4751 * cli/cli-decode.c: Fix "SHOW_DOR" comment typeos.
4752
4753 2004-05-07 Jim Blandy <jimb@redhat.com>
4754
4755 * aix-thread.c (fetch_regs_kernel_thread, fill_gprs64,
4756 fill_gprs32, store_regs_kernel_thread): Use tdep->ppc_gp0_regnum
4757 to recognize gpr regnums, instead of assuming that
4758 tdep->ppc_fp0_regnum marks the end of the general-purpose
4759 registers.
4760
4761 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Assert that
4762 the given architecture has floating-point registers.
4763
4764 2004-05-07 Andrew Cagney <cagney@redhat.com>
4765
4766 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Replace with
4767 macro defined to 1.
4768 * gdbarch.h, gdbarch.c: Re-generate.
4769 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4770 deprecated_use_generic_dummy_frames.
4771
4772 2004-05-07 Brian Ford <ford@vss.fsi.com>
4773
4774 * NEWS: Mention Cygwin DWARF 2 support.
4775
4776 2004-05-07 Andrew Cagney <cagney@redhat.com>
4777
4778 * objfiles.h (struct entry_info): Delete unused fields
4779 deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
4780 * objfiles.c (init_entry_point_info, objfile_relocate): Update.
4781 * mipsread.c (mipscoff_symfile_read): Update.
4782 * mdebugread.c (parse_partial_symbols): Update.
4783 * dwarfread.c (read_file_scope): Update.
4784 * dwarf2read.c (read_file_scope): Update.
4785 * dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
4786 * coffread.c (complete_symtab): Update.
4787
4788 2004-05-07 Mark Kettenis <kettenis@gnu.org>
4789
4790 * infcall.c (_initialize_infcall): Fix typo.
4791
4792 2004-05-07 Andrew Cagney <cagney@redhat.com>
4793
4794 * cli/cli-decode.c (add_setshow_zinteger_cmd): New function.
4795 * command.h (add_setshow_zinteger_cmd): Declare.
4796
4797 2004-05-06 Randolph Chung <tausq@debian.org>
4798
4799 * config/pa/tm-hppa.h (RO_REGNUM, FLAGS_REGNUM, RP_REGNUM)
4800 (HPPA_FP_REGNUM, HPPA_SP_REGNUM, SAR_REGNUM, IPSW_REGNUM)
4801 (PCOQ_HEAD_REGNUM, PCSQ_HEAD_REGNUM, PCOQ_TAIL_REGNUM, PCSQ_TAIL_REGNUM)
4802 (EIEM_REGNUM, IIR_REGNUM, ISR_REGNUM, IOR_REGNUM, SR4_REGNUM)
4803 (RCR_REGNUM, PID0_REGNUM, PID1_REGNUM, PID2_REGNUM, PID3_REGNUM)
4804 (CCR_REGNUM, TR0_REGNUM, CR27_REGNUM, HPPA_FP0_REGNUM, FP4_REGNUM)
4805 (ARG0_REGNUM, ARG1_REGNUM, ARG2_REGNUM, ARG3_REGNUM): Move *_REGNUM
4806 definitions ...
4807 * hppa-tdep.h: ... to here, with HPPA_ prefix.
4808 * Makefile.in (hppah-nat.o): Add $(hppa_tdep_h)
4809 * hppa-hpux-tdep.c (hppa32_hpux_frame_find_saved_regs_in_sig)
4810 (hppa64_hpux_frame_find_saved_regs_in_sig)
4811 (child_get_current_exception_event): Add HPPA_ prefix to *_REGNUM usage.
4812 * hppa-linux-nat.c (GR_REGNUM, TR_REGNUM, greg_map): Likewise.
4813 * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum)
4814 (hppa_linux_target_write_pc, hppa_linux_sigtramp_frame_unwind_cache)
4815 (hppa_linux_sigtramp_frame_prev_register): Likewise.
4816 * hppa-tdep.c (hppa32_return_value, hppa64_return_value)
4817 (hppa32_push_dummy_call, hppa64_push_dummy_call, hppa64_frame_align)
4818 (hppa_target_read_pc, hppa_target_write_pc, hppa_frame_cache)
4819 (hppa_frame_prev_register, hppa_stub_frame_unwind_cache)
4820 (hppa_stub_frame_prev_register, hppa_unwind_dummy_id)
4821 (hppa_skip_permanent_breakpoint, hppa_instruction_nullified)
4822 (hppa32_register_type, hppa_cannot_store_register)
4823 (hppa_fetch_pointer_argument, hppa_pseudo_register_read): Likewise.
4824 * hppah-nat.c (store_inferior_registers, fetch_register): Likewise.
4825 * hpread.c (hpread_process_one_debug_symbol): Likewise.
4826 * pa64solib.c (pa64_solib_have_load_event)
4827 (pa64_solib_have_unload_event, pa64_solib_loaded_library_pathname)
4828 (pa64_solib_unloaded_library_pathname): Likewise.
4829 * somsolib.c (som_solib_have_load_event, som_solib_have_unload_event)
4830 (som_solib_library_pathname): Likewise.
4831
4832 2004-05-05 Jim Ingham <jingham@apple.com>
4833
4834 * breakpoint.c (create_breakpoints): Copy the ignore count and
4835 thread id over from the pended breakpoint to the actual
4836 breakpoint.
4837
4838 2004-05-05 Andrew Cagney <cagney@redhat.com>
4839
4840 * gdbarch.sh (PARM_BOUNDARY): Delete.
4841 gdbarch.h, gdbarch.c: Re-generate.
4842 * valops.c (PARM_BOUNDARY): Delete macro.
4843 (value_push): Delete PARM_BOUNDARY code.
4844 * m68k-tdep.c (m68k_gdbarch_init): Do not set parm_boundary.
4845
4846 2004-05-04 Jim Blandy <jimb@redhat.com>
4847
4848 * ppc-linux-nat.c (fetch_ppc_registers, store_ppc_registers):
4849 Don't assume that the gprs, fprs, and UISA sprs are
4850 contiguous, start at register number zero, and end with fpscr.
4851 Instead, use the numbers from the tdep structure.
4852
4853 * config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
4854 should no longer be used in code specific to the RS6000 and its
4855 derivatives.
4856 * ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
4857 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize
4858 tdep->ppc_fp0_regnum.
4859 (ppc_supply_fpregset, ppc_collect_fpregset)
4860 (rs6000_push_dummy_call, rs6000_extract_return_value)
4861 (rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
4862 (rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
4863 FP0_REGNUM.
4864 * aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
4865 (fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
4866 Same.
4867 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
4868 bdm_ppc_store_registers): Same.
4869 * ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
4870 (store_register, fill_fpregset): Same.
4871 * ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
4872 (ppc_linux_supply_fpregset): Same.
4873 * ppcnbsd-nat.c (getfpregs_supplies): Same.
4874 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
4875 Same.
4876 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call,
4877 do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call,
4878 ppc64_sysv_abi_return_value): Same.
4879 * rs6000-nat.c (regmap, fetch_inferior_registers)
4880 (store_inferior_registers, fetch_core_registers): Same.
4881
4882 2004-05-01 Mark Kettenis <kettenis@gnu.org>
4883
4884 * m68knbsd-nat.c: Remove file.
4885 * m68knbsd-tdep.c: Remove file.
4886 * Makefile.in: (m68knbsd-nat.o, m68knbsd-tdep.o): Remove
4887 dependencies.
4888 * configure.host: Add m68k-*-netbsdelf*.
4889 * configure.tgt (m68k-*-netbsd*): Set gdb_target to nbsd.
4890 * config/m68k/nbsdaout.mh (NATDEPFILES): Add m68kbsd-nat.o,
4891 solib.o and solib-sunos.o. Remove m68knbsd-nat.o, corelow.o.
4892 (XM_FILE): Remove.
4893 * config/m68k/nbsdelf.mh: New file.
4894 * config/m68k/nbsd.mt: New file.
4895 * config/m68k/nbsdaout.mt: Remove file.
4896 * config/m68k/tm-nbsd.h: Don't include <sys/param.h>,
4897 <machine/vmparam.h> and "m68k/tm-m68k.h". Include "solib.h".
4898 (BPT_VECTOR, STACK_END_ADDR): Remove defines.
4899 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Likewise.
4900 (use_struct_convention): Remove prototype.
4901 (USE_STRUCT_CONVENTION): Remove define.
4902 * config/m68k/xm-nbsd.h: Remove file.
4903
4904 2004-05-04 Michael Snyder <msnyder@redhat.com>
4905
4906 * m68k-tdep.c (m68k_gdbarch_init): Default to using
4907 reg_struct_return method (as gcc usually does for cross targets).
4908
4909 2004-05-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4910
4911 Committed by Andrew Cagney.
4912 * s390-tdep.c (s390_sigtramp_frame_unwind_cache): Account for
4913 alignment padding when accessing ucontext struct members.
4914
4915 2004-05-04 Jim Blandy <jimb@redhat.com>
4916
4917 * config/ppc-tdep.h (struct gdbarch_tdep): Delete
4918 'ppc_gplast_regnum' member.
4919 (ppc_num_gprs): New enum constant.
4920 * ppc-linux-nat.c (ppc_register_u_addr): Use tdep->ppc_gp0_regnum
4921 and ppc_num_gprs instead of tdep->ppc_gplast_regnum.
4922 * rs6000-nat.c (regmap, fetch_inferior_registers,
4923 store_inferior_registers): Same.
4924 * rs6000-tdep.c (e500_pseudo_register_read)
4925 (e500_pseudo_register_write): Same.
4926 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gplast_regnum.
4927
4928 * config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
4929 * ppc-tdep.h (ppc_num_fprs): New enum constant.
4930 * aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
4931 store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
4932 FPLAST_REGNUM.
4933 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
4934 Same.
4935 * ppc-linux-nat.c (ppc_register_u_addr): Same.
4936 * rs6000-nat.c (regmap, fetch_inferior_registers)
4937 (store_inferior_registers): Same.
4938
4939 * aix-thread.c (fill_fprs): Fix off-by-one error comparing regno
4940 with FPLAST_REGNUM.
4941
4942 2004-05-03 Joel Brobecker <brobecker@gnat.com>
4943
4944 * dwarf2read.c (dwarf2_create_include_psymtab): Fix build
4945 failure detected by recent versions of GCC.
4946 (psymtab_to_symtab_1): No longer use the PST_PRIVATE macro
4947 to be consistent with the usage in dwarf2_create_include_psymtab.
4948
4949 2004-05-03 Michael Snyder <msnyder@redhat.com>
4950
4951 * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
4952 (heuristic_proc_start): Whitespace cleanup.
4953
4954 2004-05-04 Mark Kettenis <kettenis@gnu.org>
4955
4956 * sun3-nat.c: Remove file.
4957 * Makefile.in (tm-sun3.h tm-altos.h tm-sun2.h tm-3b1.h): Remove
4958 dependencies.
4959 (ALLDEPFILES): Remove sun3-nat.c.
4960 (sun3-nat.o): Remove dependencies.
4961
4962 * i386-interix-nat.c, i386-interix-tdep.c,
4963 config/i386/nm-interix.h, config/i386/interix.mh,
4964 config/i386/interix.mt: Remove files.
4965 * Makefile.in (i386-interix-nat.o, i386-interix-tdep.o): Remove
4966 dependencies.
4967
4968 2004-05-03 Mark Kettenis <kettenis@gnu.org>
4969
4970 * m68k-tdep.h (struct gdbarch_tdep): Add member
4971 struct_value_regnum.
4972 (m68k_svr4_init_abi): New prototype.
4973 * m68k-tdep.c: Include "floatformat.h". Add comment about all the
4974 different calling conventions.
4975 (m68k_extract_return_value): Remove code dealing with single-field
4976 structs.
4977 (m68k_store_return_value): Remove code dealing with single-field
4978 structs. Correctly store return values of 5, 6, 7 or 8 bytes.
4979 (m68k_extract_struct_value_address): Remove function.
4980 (m68k_svr4_extract_return_value,m68k_svr4_store_return_value)
4981 (m68k_reg_struct_return_p, m68k_return_value)
4982 (m68k_svr4_return_value): New functions.
4983 (m68k_use_struct_convention): Remove function.
4984 (m68k_push_dummy_call): Use new struct_value_regnum member of
4985 `struct gdbarch_tdep' instead of hardcoded register number to
4986 store STRUCT_ADDR.
4987 (m68k_svr4_init_abi): New function.
4988 (m68k_gdbarch_init): Don't set extract_return_value,
4989 store_return_values, deprecated_extract_struct_value_address and
4990 use_struct_convention. Set return_value instead. Initialize new
4991 struct_value_regnum member of `struct gdbarch_tdep'.
4992 * m68klinux-tdep.c: Update copyright year.
4993 (m68k_linux_extract_return_value, m68k_linux_store_return_value)
4994 (m68k_linux_extract_struct_value_address): Remove function.
4995 (m68k_linux_init_abi): Don't set extract_return_value,
4996 store_return_values, deprecated_extract_struct_value_address and
4997 use_struct_convention. Call m68k_svr4_init_abi but override the
4998 new struct_value_regnum member of `struct gdbarch_tdep'.
4999 * Makefile.in (m68k-tdep.o): Update dependencies.
5000
5001 2004-05-03 J. Brobecker <brobecker@gnat.com>
5002
5003 * dwarf2read.c (line_header): Add new included_p field in
5004 field file_names.
5005 (partial_die_info): New field has_stmt_list. New field line_offset.
5006 (dwarf2_create_include_psymtab): New function.
5007 (dwarf2_build_include_psymtabs): New function.
5008 (add_file_name): Add forward declaration. Initialize new field.
5009 (dwarf_decode_lines): Add new parameter. Enhance this procedure
5010 to be able to determine the list of files included by the
5011 given unit, and build their associated psymtabs.
5012 (dwarf2_build_psymtabs_hard): Build the psymtabs for the included
5013 files as well.
5014 (psymtab_to_symtab_1): Build the symtabs of all dependencies as well.
5015 (read_file_scope): Update call to dwarf_decode_lines.
5016 (read_partial_die): Handle DW_AT_stmt_list attributes.
5017
5018 2004-05-02 Michael Chastain <mec.gnu@mindspring.com>
5019
5020 Unfix PR gdb/1626.
5021 * configure.in: Revert special case for osf5.*.
5022 * configure: Regenerate.
5023
5024 2004-05-02 Jim Blandy <jimb@redhat.com>
5025
5026 Move the symbol-file-from-memory functions into their own file.
5027 * symfile-mem.c, symfile-mem.h: New files.
5028 * symfile.c (symbol_file_add_from_bfd): New function.
5029 (symbol_file_add): Call symbol_file_add_from_bfd.
5030 (symbol_file_add_from_memory, add_symbol_file_from_memory_command):
5031 Moved to symfile-mem.c.
5032 (_initialize_symfile): Move definition of
5033 add-symbol-file-from-memory command to symfile-mem.c.
5034 * symfile.h (symbol_file_add_from_bfd): New declaration.
5035 * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
5036 * config/powerpc/linux.mt (TDEPFILES): Same.
5037 * Makefile.in (SFILES): Add symfile-mem.c.
5038 (symfile_mem_h): New variable.
5039 (HFILES_NO_SRCDIR): Add symfile-mem.h.
5040 (symfile-mem.o): New rule.
5041
5042 2004-05-01 Andrew Cagney <cagney@redhat.com>
5043
5044 * breakpoint.c (insert_bp_location): Use get_frame_id, and
5045 frame_find_by_id instead of frame_relative_level.
5046 (do_enable_breakpoint): Ditto.
5047 * thread.c: Update copyright.
5048 (info_threads_command): Ditto, simplify.
5049
5050 * frame.c (deprecated_generic_get_saved_register): Delete
5051 function, moved to "xstormy16-tdep.c".
5052 * xstormy16-tdep.c (xstormy16_get_saved_register): Inline
5053 deprecated_generic_get_saved_register from "frame.c".
5054 (xstormy16_frame_saved_register): Call
5055 xstormy16_get_saved_register.
5056 * dummy-frame.c (deprecated_find_dummy_frame_regcache): Make
5057 static.
5058 * dummy-frame.h (deprecated_find_dummy_frame_regcache): Delete.
5059 * frame.h (deprecated_generic_get_saved_register): Delete.
5060
5061 2004-05-01 Michael Chastain <mec.gnu@mindspring.com>
5062
5063 * dwarfread.c: Update documentation on the state of dwarf-1.
5064
5065 2004-05-01 Andrew Cagney <cagney@redhat.com>
5066
5067 * stack.c (select_frame_command): Delete call to
5068 frame_relative_level.
5069 (print_frame, set_backtrace_limit_command, backtrace_limit_info):
5070 Delete #if0 code.
5071 (frame_info): Do not print FRAMELESS.
5072 (print_block_frame_labels): Replace DEPRECATED_STREQ.
5073 (catch_info): Delete #if0 code.
5074
5075 * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
5076 * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
5077 of frame_relative_level.
5078 * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
5079 to SENTINEL_FRAME.
5080 * frame.h (enum frame_type): Add SENTINEL_FRAME.
5081 * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
5082 frame_relative_level.
5083
5084 * frame.h (deprecated_set_frame_type): Delete declaration.
5085 * frame.c (deprecated_set_frame_type): Delete function, update
5086 comments.
5087
5088 * gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
5089 * gdbarch.h, gdbarch.c: Re-generate.
5090 * shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
5091 (shnbsd_pc_in_sigtramp): Delete.
5092 * i386-interix-tdep.c (i386_interix_init_abi): Do not set
5093 pc_in_sigtramp.
5094 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
5095 pc_in_sigtramp.
5096 * frame.h: Update comments.
5097 * ppc-linux-tdep.c: Update comments.
5098 * breakpoint.c (bpstat_what): Update comments.
5099
5100 * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix
5101 m68klinux-tdep.o's dependencies, were previously added to
5102 m68klinux-nat.o.
5103
5104 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Use pc_in_sigtramp.
5105 * alpha-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp.
5106 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
5107 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
5108 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
5109
5110 * Makefile.in (m68klinux-nat.o): Update dependencies.
5111 * m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
5112 (m68k_linux_sigtramp_frame_cache)
5113 (m68k_linux_sigtramp_frame_this_id)
5114 (m68k_linux_sigtramp_frame_prev_register)
5115 (m68k_linux_sigtramp_frame_unwind)
5116 (m68k_linux_sigtramp_frame_sniffer)
5117 (struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
5118 m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
5119 names, use trad-frame.h.
5120 * m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
5121 (struct m68k_sigtramp_info): Delete.
5122 * m68k-tdep.c (m68k_sigtramp_frame_cache)
5123 (m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
5124 (m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
5125 (m68k_gdbarch_init): Delete all the sigtramp code, moved to
5126 "m68klinux-tdep.c".
5127
5128 * infrun.c (check_sigtramp2): Delete check for
5129 DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.
5130
5131 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5132
5133 * m68k-tdep.h (m68kbsd_fpreg_offset): New prototype.
5134
5135 2004-05-01 Andrew Cagney <cagney@redhat.com>
5136
5137 * frv-linux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
5138 (frv_linux_sigtramp_frame_cache)
5139 (frv_linux_sigtramp_frame_this_id)
5140 (frv_linux_sigtramp_frame_prev_register)
5141 (frv_linux_sigtramp_frame_unwind)
5142 (frv_linux_sigtramp_frame_sniffer): Copied from frv-tdep.c,
5143 include "linux" in function and variable names, directly call
5144 frv_linux_pc_in_sigtramp and frv_linux_sigcontext_reg_addr, use
5145 the latest trad-frame code.
5146 (frv_linux_init_abi): Append frv_linux_sigtramp_frame_sniffer, do
5147 not set frv_sigcontext_reg_addr or deprecated_pc_in_sigtramp
5148 * Makefile.in (frv-linux-tdep.o): Update dependencies.
5149 * frv-tdep.h (frv_set_sigcontext_reg_addr): Delete declaration.
5150 * frv-tdep.c (frv_sigtramp_frame_cache)
5151 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
5152 (frv_sigtramp_frame_unwind, frv_sigtramp_frame_sniffer): Moved to
5153 frv-linux-tdep.c.
5154 (frv_gdbarch_init): Do not append a sigtramp sniffer.
5155 (struct gdbarch_tdep): Delete sigcontext_reg_addr.
5156 (frv_set_sigcontext_reg_addr): Delete function.
5157
5158 * gdbarch.sh (DEPRECATED_SIGTRAMP_START)
5159 (DEPRECATED_SIGTRAMP_END): Delete.
5160 * gdbarch.h, gdbarch.c: Re-generate.
5161 * arch-utils.c (legacy_pc_in_sigtramp): Simplify.
5162 * config/vax/tm-vaxbsd.h: Update copyright.
5163 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
5164 (DEPRECATED_IN_SIGTRAMP): Define.
5165 * config/m68k/tm-nbsd.h: Update copyright.
5166 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
5167 (DEPRECATED_IN_SIGTRAMP): Define.
5168
5169 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5170
5171 * dwarf2-frame.c (read_encoded_value): Handle DW_EH_PE_funcrel
5172 encondings. Fixes PR gdb/1628.
5173
5174 * dwarf2-frame.c (execute_cfa_program): Complain if we encounter a
5175 DW_CFA_restore state without a matching DW_CFA_remember_state
5176 instead of aborting. Fixes PR backtrace/1589.
5177
5178 2004-04-30 Joel Brobecker <brobecker@gnat.com>
5179
5180 * MAINTAINERS: Add self as AIX maintainer.
5181 Update my e-mail address in write-after-approval section.
5182
5183 2004-04-30 Andrew Cagney <cagney@redhat.com>
5184
5185 * frame.c (frame_type_from_pc): Delete call to PC_IN_SIGTRAMP.
5186 (legacy_get_prev_frame): Ditto.
5187
5188 * mips-tdep.c (mips_pc_in_sigtramp): Delete.
5189 (mips_gdbarch_init): Do not set pc_in_sigtramp.
5190 * mipsread.c (sigtramp_address): Delete extern variable.
5191 (mipscoff_new_init): Delete reference.
5192 * mdebugread.c (sigtramp_address, sigtramp_end): Delete variables.
5193 (fixup_sigtramp): Delete function.
5194 * config/mips/tm-mips.h (sigtramp_address, sigtramp_end)
5195 (fixup_sigtramp): Delete declarations.
5196
5197 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Do not set
5198 deprecated_pc_in_sigtramp.
5199 (ppcnbsd_pc_in_sigtramp): Delete function.
5200
5201 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5202
5203 * config/m68k/nm-nbsd.h: Tweak comments.
5204 * config/m68k/nm-nbsdaout.h: Likewise.
5205
5206 2004-04-30 Andrew Cagney <cagney@redhat.com>
5207
5208 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Call
5209 legacy_pc_in_sigtramp.
5210 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Ditto.
5211
5212 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5213
5214 Add OpenBSD/m68k support.
5215 * NEWS (New native configurations): Mention OpenBSD/m68k.
5216 * m68kbsd-tdep.c: New file.
5217 * m68kbsd-nat.c: New file.
5218 * Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
5219 (m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
5220 * configure.host: Add m68k-*-openbsd.
5221 * configure.tgt: Add m68k-*-openbsd.
5222 * config/m68k/tm-obsd.h: New file.
5223 * config/m68k/obsd.mt: New file.
5224 * config/m68k/obsd.mh: New file.
5225 * config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
5226 m68kbsd-tdep.c.
5227
5228 2004-04-30 Andrew Cagney <cagney@redhat.com>
5229
5230 * mipsnbsd-tdep.c (mipsnbsd_pc_in_sigtramp): Delete function.
5231 (mipsnbsd_init_abi): Do not set pc_in_sigtramp.
5232
5233 2004-04-30 Mark Kettenis <kettenis@gnu.org>
5234
5235 * m68k-tdep.c (REMOTE_BPT_VECTOR): Remove define.
5236 * config/m68k/tm-nbsd.h (REMOTE_BPT_VECTOR): Remove define.
5237
5238 2004-04-30 Brian Ford <ford@vss.fsi.com>
5239
5240 Revert 2004-04-16 change.
5241 * i386-tdep.c (i386_gdbarch_init): Fix comment typos.
5242 (i386_coff_init_abi): Remove.
5243 * i386-tdep.h (i386_coff_init_abi): Remove.
5244 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Remove call to above.
5245
5246 2004-04-30 Andrew Cagney <cagney@redhat.com>
5247
5248 * blockframe.c (find_pc_partial_function): Delete use of
5249 DEPRECATED_PC_IN_SIGTRAMP, DEPRECATED_SIGTRAMP_START and
5250 DEPRECATED_SIGTRAMP_END.
5251
5252 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
5253 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
5254 * config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
5255 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
5256 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
5257
5258 * defs.h (deprecated_inside_entry_file): Delete declaration.
5259 * blockframe.c (deprecated_inside_entry_file): Delete function.
5260 (legacy_frame_chain_valid): Delete call.
5261 * sh64-tdep.c (sh64_frame_chain): Delete call.
5262 * objfiles.h: Update comments.
5263 * i386-interix-tdep.c (i386_interix_frame_chain_valid): Delete
5264 call.
5265 * frame.c (get_prev_frame): Delete call, update comments.
5266
5267 2004-04-30 Brian Ford <ford@vss.fsi.com>
5268
5269 * MAINTAINERS (Write After Approval): Add myself.
5270
5271 2004-04-30 Andrew Cagney <cagney@redhat.com>
5272
5273 * gdbarch.sh (BELIEVE_PCC_PROMOTION_TYPE): Delete.
5274 * gdbarch.h, gdbarch.c: Re-generate.
5275 * stabsread.c (define_symbol): Delete BELIEVE_PCC_PROMOTION_TYPE
5276 code.
5277
5278 2004-04-30 Andrew Cagney <cagney@redhat.com>
5279
5280 * gdb-events.sh (selected_thread_changed)
5281 (selected_frame_level_changed, target_changed): Delete.
5282 * gdb-events.h, gdb-events.c: Re-generate.
5283 * valops.c (value_assign): Update.
5284 * stack.c (select_frame_command, up_silently_base)
5285 (down_silently_base): Update.
5286
5287 2004-04-29 Andrew Cagney <cagney@redhat.com>
5288
5289 * mips-tdep.c (mips_register_type): Re-write, handle 32-bit ABI
5290 registers correctly.
5291 (print_gp_register_row, mips32_heuristic_proc_desc)
5292 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
5293 (mips_o64_push_dummy_call, mips_eabi_push_dummy_call): Eliminate
5294 references to mips_isa_regsize.
5295
5296 2004-04-29 Andrew Cagney <cagney@redhat.com>
5297
5298 * mips-tdep.c (struct gdbarch_tdep): Delete
5299 mips_fp_register_double.
5300 (FP_REGISTER_DOUBLE): Delete macro, replace with test for
5301 mips_abi_regsize.
5302 (mips_gdbarch_init): Do not set mips_fp_register_double.
5303 (mips_dump_tdep): Do not print FP_REGISTER_DOUBLE.
5304
5305 2004-04-29 Joel Brobecker <brobecker@gnat.com>
5306
5307 Committed by Andrew Cagney.
5308 * infrun.c (handle_inferior_event): Rely on frame IDs to detect
5309 function calls.
5310
5311 2004-04-29 Andrew Cagney <cagney@redhat.com>
5312
5313 * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with
5314 gdbarch, use mips_abi, update callers.
5315 (mips_stack_argsize): Replace tdep parameter with gdbarch, use
5316 mips_abi_regsize, update callers.
5317 (struct gdbarch_tdep): Delete mips_default_stack_argsize and
5318 mips_default_abi_regsize.
5319 (mips_gdbarch_init): Do not set mips_default_stack_argsize and
5320 mips_default_abi_regsize.
5321
5322 2004-04-29 Andrew Cagney <cagney@redhat.com>
5323
5324 * mips-tdep.c (mips_abi_regsize): Rename mips_saved_regsize.
5325 (mips_abi_regsize_string): Rename mips_saved_regsize_string.
5326 (struct gdbarch_tdep): Rename mips_default_saved_regsize to
5327 mips_default_abi_regsize.
5328 (mips_isa_regsize): Rename mips_regisze.
5329 * mipsnbsd-tdep.c: Update.
5330 * mips-linux-tdep.c: Update.
5331 * irix5-nat.c: Update.
5332 * mips-tdep.h (mips_isa_regsize): Update.
5333
5334 * gdb-events.sh (WITH_GDB_EVENTS): Delete macro and references.
5335 Delete all disabled code.
5336 * gdb-events.h, gdb-events.c: Re-generate.
5337
5338 2004-04-19 Jerome Guitton <guitton@gnat.com>
5339 Mark Kettenis <kettenis@gnu.org>
5340
5341 * i386-tdep.c (i386_skip_prologue): follow the last jump only if
5342 the function begins with a branch instruction.
5343
5344 2004-04-29 Mark Kettenis <kettenis@gnu.org>
5345
5346 * i386-tdep.c: Fix spelling mistakes.
5347
5348 2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5349 Andrew Cagney <cagney@redhat.com>
5350
5351 * configure.in (mips-sgi-irix5*): Define _KMEMUSER for
5352 <sys/proc.h>.
5353 * acconfig.h: Provide default _KMEMUSER value.
5354 * config.in, configure: Re-generate.
5355 * NEWS: Mention fix.
5356
5357 2004-04-24 Randolph Chung <tausq@debian.org>
5358
5359 * configure.host (hppa*-*-linux*): New target.
5360 * configure.tgt (hppa*-*-linux*): Likewise.
5361 * hppa-tdep.c (hppa_gdbarch_init): Set cannot_fetch_register, move
5362 gdbarch_init_osabi() call earlier so that osabi-specific frame
5363 unwinders can be registered first.
5364 * config/djgpp/fnchange.lst: Add entries for hppa-linux-tdep.c and
5365 hppa-linux-nat.c.
5366 * config/pa/tm-hppa.h (ISR_REGNUM, PID0_REGNUM, PID1_REGNUM)
5367 (PID2_REGNUM, PID3_REGNUM): Add definitions of some register numbers.
5368 * config/pa/linux.mh: New file.
5369 * config/pa/linux.mt: New file.
5370 * config/pa/nm-linux.h: New file.
5371 * config/pa/xm-linux.h: New file.
5372 * hppa-linux-nat.c: New file.
5373 * hppa-linux-tdep.c: New file.
5374
5375 2004-04-28 Randolph Chung <tausq@debian.org>
5376
5377 * hppa-tdep.c (hppa32_return_value): Handle both 4- and 8-byte fp
5378 return values.
5379 (hppa32_push_dummy_call): Fix small struct and floating point argument
5380 passing, and make sure the stack frame is properly aligned.
5381
5382 2004-04-28 Andrew Cagney <cagney@redhat.com>
5383
5384 * stack.c (print_stack_frame): Fix description.
5385
5386 * NEWS: Mention gdb/gdbserver/configure execute permission
5387 changed. PR server/519.
5388
5389 2004-04-28 Andrew Cagney <cagney@redhat.com>
5390
5391 * stack.c (print_stack_frame_stub): Delete declaration.
5392 (struct print_stack_frame_args, print_stack_frame)
5393 (print_frame_info, print_frame): Replace "source" with print what.
5394 Replace "print" with "print_level". Replace "args" with
5395 "print_args".
5396 * frame.h (show_and_print_stack_frame, print_stack_frame)
5397 (print_frame_info): Update declarations.
5398 * stack.c (select_and_print_frame, frame_command)
5399 (current_frame_command, up_command, down_command): Update calls -
5400 use get_selected_frame, pass "enum print_what" for source, do not
5401 call frame_relative_level.
5402 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
5403 * remote-rdp.c (remote_rdp_open): Ditto.
5404 * remote-mips.c (common_open): Ditto.
5405 * remote-e7000.c (e7000_start_remote): Ditto.
5406 * ocd.c (ocd_start_remote): Ditto.
5407 * mi/mi-main.c (mi_cmd_exec_return): Ditto.
5408 * infrun.c (normal_stop): Ditto.
5409 * inflow.c (kill_command): Ditto.
5410 * infcmd.c (finish_command): Ditto.
5411 * corelow.c (core_open): Ditto.
5412 * tracepoint.c (finish_tfind_command): Ditto.
5413 * thread.c (info_threads_command, info_threads_command)
5414 (restore_current_thread, do_captured_thread_select): Ditto.
5415 * ada-tasks.c (task_command): Ditto.
5416
5417 2004-04-26 Orjan Friberg <orjanf@axis.com>
5418
5419 * frame.c: Include "observer.h".
5420 (frame_observer_target_changed): New function.
5421 (_initialize_frame): Attach target_changed observer.
5422 * regcache.c: Include "observer.h".
5423 (regcache_observer_target_changed): New function.
5424 (_initialize_regcache): Attach target_changed observer.
5425 * valops.c: Include "observer.h".
5426 (value_assign): Notify target_changed event when modifying register.
5427 * Makefile.in (frame.o, regcache.o, valops.o): Add $(observer_h).
5428
5429 2004-04-26 Orjan Friberg <orjanf@axis.com>
5430
5431 From Paul Koning <pkoning@equallogic.com>:
5432 * breakpoint.c (free_valchain): New function.
5433 (insert_bp_location, delete_breakpoint): Use free_valchain.
5434 (remove_breakpoint): Do not remove the valchain.
5435 (bpstat_stop_status): If not stopped by watchpoint, skip
5436 watchpoints when generating stop status list.
5437 * infrun.c (handle_inferior_event): Make
5438 stepped_after_stopped_by_watchpoint a global variable.
5439 * remote.c (remote_stopped_data_address): Return watch data
5440 address rather than zero if stepped_after_stopped_by_watchpoint is
5441 set.
5442
5443 2004-04-25 Michael Chastain <mec.gnu@mindspring.com>
5444
5445 Fix PR gdb/1626.
5446 * configure.in: Check for curses after termcap.
5447 On osf5.*, do not check for ncurses.
5448 * configure: Regenerate.
5449
5450 2004-04-25 Mark Kettenis <kettenis@gnu.org>
5451
5452 * ppcobsd-nat.c: Include "ppc-tdep.h".
5453 * Makefile.in (ppcobsd-nat.o): Update dependencies.
5454
5455 * stack.c (return_command): Use CHECK_TYPEDEF on the return type.
5456 Fixes PR tdep/1623 and PR tdep/1624.
5457
5458 2004-04-24 Michael Chastain <mec.gnu@mindspring.com>
5459
5460 * xmodem.h, xmodem.c: Remove files.
5461 * Makefile.in: Remove references to xmodem.h, xmodem.c.
5462
5463 2004-04-23 Randolph Chung <tausq@debian.org>
5464
5465 * hppa-tdep.c (hppa_stub_unwind_cache, hppa_stub_frame_unwind_cache)
5466 (hppa_stub_frame_this_id, hppa_stub_frame_prev_register)
5467 (hppa_stub_frame_unwind, hppa_stub_unwind_sniffer): New stub unwinder
5468 for handling stackless frames.
5469 (hppa_gdbarch_init): Link in hppa_stub_unwind_sniffer.
5470
5471 2004-04-23 Randolph Chung <tausq@debian.org>
5472
5473 * hppa-tdep.c (hppa_frame_cache): Handle the case when frame unwind
5474 starts at a pc before the frame is created.
5475
5476 2004-04-23 Joel Brobecker <brobecker@gnat.com>
5477
5478 * ChangeLog-2002: Fix year in one of the ChangeLog entries.
5479
5480 2004-04-23 Jerome Guitton <guitton@gnat.com>
5481
5482 * rs6000-tdep.c (rs6000_extract_return_value): When extracting a float,
5483 use convert_typed_floating to get the appropriate format.
5484
5485 2004-04-22 Randolph Chung <tausq@debian.org>
5486
5487 * hppa-tdep.h (find_unwind_entry, hppa_get_field, hppa_extract_5_load)
5488 (hppa_extract_5R_store, hppa_extract_5r_store, hppa_extract_17)
5489 (hppa_extract_21, hppa_extract_14, hppa_low_sign_extend)
5490 (hppa_sign_extend): Add prototype.
5491 * hppa-tdep.c (get_field, extract_5_load, extract_5R_store)
5492 (extract_5r_store, extract_17, extract_21, extract_14, low_sign_extend)
5493 (sign_extend): Rename with hppa_ prefix and make non-static. Other
5494 hppa targets will also use these functions.
5495 (find_unwind_entry): Remove prototype (moved to hppa-tdep.h).
5496 (hppa_in_solib_call_trampoline, hppa_in_solib_return_trampoline)
5497 (hppa_skip_trampoline_code): Move to hppa-hpux-tdep.c
5498 (hppa_gdbarch_init): Remove gdbarch setting of
5499 skip_trampoline_code, in_solib_call_trampoline and
5500 in_solib_return_trampoline.
5501 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
5502 (hppa64_hpux_in_solib_call_trampoline): New functions, split from
5503 hppa_in_solib_call_trampoline.
5504 (hppa_hpux_in_solib_return_trampoline, hppa_hpux_skip_trampoline_code):
5505 Moved from hppa-tdep.c.
5506 (hppa_hpux_init_abi): Set gdbarch for skip_trampoline_code,
5507 in_solib_call_trampoline and in_solib_return_trampoline.
5508
5509 2004-04-22 Randolph Chung <tausq@debian.org>
5510
5511 * hppa-tdep.c (hppa_debug): New variable.
5512 (find_unwind_entry, hppa_frame_cache): Add debug output.
5513 (_initialize_hppa_tdep): Add command to set debug flag.
5514
5515 2004-04-22 Andrew Cagney <cagney@redhat.com>
5516
5517 * ppcnbsd-tdep.c: Update copyright. Include "tramp-frame.h" and
5518 "trad-frame.h".
5519 (ppcnbsd_sigtramp_cache_init, ppcnbsd_sigtramp): Implement a NetBSD
5520 signal trampoline unwinder.
5521 (ppcnbsd_init_abi): Register ppcnbsd_sigtramp.
5522
5523 2004-04-22 Mark Kettenis <kettenis@gnu.org>
5524
5525 Add OpenBSD/powerpc support.
5526 * NEWS (New native configurations): Mention OpenBSD/powerpc.
5527 * ppc-tdep.h (struct ppc_reg_offsets): New structure.
5528 (ppc_supply_gregset, ppc_supply_fpregset, ppc_collect_gregset)
5529 (ppc_collect_fpregset): New prototypes.
5530 * ppcobsd-nat.c: New file.
5531 * ppcobsd-tdep.c: New file.
5532 * ppcobsd-tdep.h: New file.
5533 * rs6000-tdep.c: Include "regset.h".
5534 (ppc_supply_reg, ppc_collect_reg, ppc_supply_gregset)
5535 (ppc_supply_fpregset, ppc_collect_gregset, ppc_collect_fpregset):
5536 New functions.
5537 * Makefile.in (ALLDEPFILES): Add pccobsd-nat.c and ppcobsd-tdep.c.
5538 (ppcobsd-nat.o, ppcobsd-tdep.o): New dependencies.
5539 (rs6000-tdep.o): Update dependencies.
5540 * configure.host: Add powerpc-*-openbsd.
5541 * configure.tgt: Add powerpc-*-openbsd.
5542 * config/powerpc/obsd.mh: New file.
5543 * config/powerpc/nm-obsd.h: New file.
5544 * config/powerpc/obsd.mt: New file.
5545
5546 2004-04-22 Andrew Cagney <cagney@redhat.com>
5547
5548 * frame.h (show_frame_info): Delete declaration.
5549
5550 * arm-tdep.c (arm_prologue_this_id): Delete redundant cycle test.
5551 * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
5552 * m32r-tdep.c (m32r_frame_this_id): Ditto.
5553 * frv-tdep.c (frv_frame_this_id): Ditto.
5554 * avr-tdep.c (avr_frame_this_id): Ditto.
5555
5556 2004-04-22 Elena Zannoni <ezannoni@redhat.com>
5557
5558 * MAINTAINERS: Drop maintenance of gdb.stabs, and linespec.c.
5559
5560 2004-04-22 Jim Blandy <jimb@redhat.com>
5561
5562 * ppc-linux-nat.c (ppc_register_u_addr): Don't assume that r0 is
5563 register number zero.
5564
5565 2004-04-21 Michael Snyder <msnyder@redhat.com>
5566
5567 * mips-tdep.c (heuristic_proc_start):
5568 Warning() already prefixes "Warning: ".
5569
5570 2004-04-21 Andrew Cagney <cagney@redhat.com>
5571
5572 * annotate.h (deprecated_annotate_starting_hook)
5573 (deprecated_annotate_stopped_hook)
5574 (deprecated_annotate_exited_hook)
5575 (deprecated_annotate_signal_hook)
5576 (deprecated_annotate_signalled_hook): Deprecate.
5577 * tracepoint.h (deprecated_create_tracepoint_hook)
5578 (deprecated_delete_tracepoint_hook)
5579 (deprecated_modify_tracepoint_hook)
5580 (deprecated_trace_find_hook)
5581 (deprecated_trace_start_stop_hook): Deprecate.
5582 * target.h (deprecated_target_new_objfile_hook): Deprecate.
5583 * remote.h (deprecated_target_resume_hook)
5584 (deprecated_target_wait_loop_hook): Deprecate.
5585 * gdbcore.h (deprecated_exec_file_display_hook)
5586 (deprecated_file_changed_hook): Deprecate.
5587 * frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
5588 * defs.h (deprecated_modify_breakpoint_hook)
5589 (deprecated_command_loop_hook, deprecated_show_load_progress)
5590 (deprecated_print_frame_info_listing_hook)
5591 (deprecated_query_hook, deprecated_warning_hook)
5592 (deprecated_flush_hook, deprecated_create_breakpoint_hook)
5593 (deprecated_delete_breakpoint_hook)
5594 (deprecated_interactive_hook, deprecated_registers_changed_hook)
5595 (deprecated_readline_begin_hook, deprecated_readline_hook)
5596 (deprecated_readline_end_hook, deprecated_register_changed_hook)
5597 (deprecated_memory_changed_hook, deprecated_init_ui_hook)
5598 (deprecated_context_hook, deprecated_target_wait_hook)
5599 (deprecated_attach_hook, deprecated_detach_hook)
5600 (deprecated_call_command_hook, deprecated_set_hook)
5601 (deprecated_error_hook, deprecated_error_begin_hook)
5602 (deprecated_ui_load_progress_hook): Deprecate.
5603 * valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
5604 * tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
5605 * target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
5606 * remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
5607 * main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
5608 * exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
5609 * cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
5610 * annotate.c, aix-thread.c: Update.
5611
5612 2004-04-21 Andrew Cagney <cagney@redhat.com>
5613
5614 * Makefile.in (vaxnbsd-tdep.o): Update dependencies.
5615 * vaxnbsd-tdep.c: Include "gdb_string.h".
5616
5617 * symfile.c (symbol_file_add_from_memory): #if 0 function.
5618 (add_symbol_file_from_memory_command): #if 0 function body, call
5619 error instead.
5620
5621 2004-04-21 Andrew Cagney <cagney@redhat.com>
5622
5623 * gdbcore.h: Update copyright.
5624 (deprecated_add_core_fns): Rename add_core_fns.
5625 * win32-nat.c (_initialize_core_win32): Update.
5626 * sun3-nat.c (_initialize_core_sun3): Update.
5627 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Update.
5628 * rs6000-nat.c (_initialize_core_rs6000): Update.
5629 * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Update.
5630 * nto-tdep.c (_initialize_nto_tdep): Update.
5631 * ns32knbsd-nat.c (_initialize_ns32knbsd_nat): Update.
5632 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Update.
5633 * mips-nat.c (_initialize_core_mips): Update.
5634 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
5635 * m68knbsd-nat.c (_initialize_m68knbsd_nat): Update.
5636 * m68klinux-nat.c (_initialize_m68k_linux_nat): Update.
5637 * lynx-nat.c (_initialize_core_lynx): Update.
5638 * irix5-nat.c (_initialize_core_irix5): Update.
5639 * i386-interix-nat.c (_initialize_core_interix): Update.
5640 * cris-tdep.c (_initialize_cris_tdep): Update.
5641 * corelow.c (deprecated_add_core_fns): Update.
5642 * core-regset.c (_initialize_core_regset): Update.
5643 * core-aout.c (_initialize_core_aout): Update.
5644 * armnbsd-nat.c (_initialize_arm_netbsd_nat): Update.
5645 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Update.
5646 * alpha-nat.c (_initialize_core_alpha): Update.
5647
5648 2004-04-21 Jim Blandy <jimb@redhat.com>
5649
5650 * rs6000-tdep.c (registers_e500, registers_7400): Doc fixes.
5651
5652 2004-04-19 Daniel Jacobowitz <drow@mvista.com>
5653
5654 * dwarf2read.c (dwarf2_tmp_obstack, dwarf2_free_tmp_obstack):
5655 Delete.
5656 (dwarf_alloc_block): Take a CU argument. Use the comp_unit_obstack.
5657 (read_attribute_value): Update calls to dwarf_alloc_block.
5658 (dwarf2_build_psymtabs_hard): Don't initialize or clean up
5659 dwarf2_tmp_obstack.
5660 (psymtab_to_symtab_1): Likewise. Clean up using
5661 free_stack_comp_unit.
5662 (add_to_cu_func_list): Use the comp_unit_obstack.
5663
5664 2004-04-19 Joel Brobecker <brobecker@gnat.com>
5665
5666 * dwarf2read.c (dwarf2_flag_true_p): New function.
5667 (die_is_declaration): Use the function above. Add some comments.
5668
5669 2004-04-19 Mark Kettenis <kettenis@gnu.org>
5670
5671 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Specify
5672 architecture when registering sparcnbsd_core_osabi_sniffer.
5673 Adjust comment.
5674
5675 2004-04-18 Mark Kettenis <kettenis@gnu.org>
5676
5677 * infcall.c (find_function_addr): Add FUNCTION_START_OFFSET to
5678 return value.
5679
5680 Based on a patch from Brian Ford <ford@vss.fsi.com>:
5681 * i386-tdep.c: Correct register numbering scheme comments
5682 throughout.
5683 (i386_stab_reg_to_regnum): Rename to i386_dbx_reg_to_regnum.
5684 (i386_dwarf_reg_to_regnum): Rename to i386_svr4_reg_to_regnum.
5685 (i386_coff_init_abi, i386_elf_init_abi): Accomodate renames above.
5686 (i386_gdb_arch_init): Likewise.
5687
5688 * Makefile.in (ALLDEPFILES): List ppc-sysv-tdep.c, ppcnbsd-nat.c
5689 and ppcnbsd-tdep.c instead of ppc-sysv-tdep.o, ppcnbsd-nat.o and
5690 ppcnbsd-tdep.o.
5691
5692 * m68k-tdep.h: Tweak comments.
5693 * m68k-tdep.c: Tweak comment.
5694
5695 2004-04-17 Randolph Chung <tausq@debian.org>
5696
5697 * Makefile.in (hppa-hpux-tdep.o): Add $(hppa_tdep_h).
5698 * hppa-hpux-tdep.c (hppa-tdep.h): Include.
5699 (hppa_hpux_som_init_abi): Set is_elf to 0.
5700 (hppa_hpux_elf_init_abi): Set is_elf to 1.
5701 * hppa-tdep.c (low_text_segment_address): Remove global.
5702 (record_text_segment_lowaddr): Pass in low address as parameter. Use
5703 section offset to calculate segment address.
5704 (internalize_unwinds): Define low_text_segment_address as local and
5705 pass to record_text_segment_lowaddr for ELF targets.
5706 (hppa_gdbarch_init): Zero fill tdep structure.
5707 (hppa_dump_tdep): Print tdep structure.
5708 * hppa-tdep.h (gdbarch_tdep): Add is_elf member to tdep structure.
5709
5710 2004-04-17 Randolph Chung <tausq@debian.org>
5711
5712 * hppa-tdep.c (hppa_pseudo_register_read): Define.
5713 (hppa_gdbarch_init): Set pseudo_register_read.
5714 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Remove.
5715 * regcache.c (supply_register): Remove check for
5716 DEPRECATED_CLEAN_UP_REGISTER_VALUE since we've removed the last user.
5717
5718 2004-04-17 Randolph Chung <tausq@debian.org>
5719
5720 * Makefile.in (hpread.o, pa64solib.o, somsolib.o): Add $(hppa_tdep_h)
5721 * hppa-tdep.h (INSTRUCTION_SIZE): Move from tm-hppa.h.
5722 (hpread_adjust_stack_address): Move to hpread.c.
5723 * hppa-tdep.h (unwind_table_entry, unwind_stub_types, obj_unwind_info,
5724 obj_private_struct): Move from tm-hppa.h.
5725 * hpread.c (hppa-tdep.h): Include.
5726 (hpread_adjust_stack_address): Move from hppa-tdep.c.
5727 (hpread_read_function_type, hpread_read_doc_function_type)
5728 (hpread_process_one_debug_symbol): Call hpread_adjust_stack_address
5729 directly.
5730 * pa64solib.c (hppa-tdep.h): Include.
5731 * somsolib.c (hppa-tdep.h): Include.
5732 * config/pa/tm-hppa.h (frame_info, frame_saved_regs, value, type,
5733 inferior_status): Remove unused forward declarations.
5734 (INSTRUCTION_SIZE): Move to hppa-tdep.c.
5735 (unwind_table_entry, unwind_stub_types, obj_unwind_info,
5736 obj_private_struct): Move to hppa-tdep.h.
5737 (HPREAD_ADJUST_STACK_ADDRESS): Remove.
5738
5739 2004-04-17 Randolph Chung <tausq@debian.org>
5740
5741 * hppa-tdep.c (hppa_reg_struct_has_addr, hppa_skip_prologue)
5742 (hppa_skip_trampoline_code, hppa_in_solib_call_trampoline)
5743 (hppa_in_solib_return_trampoline, hppa_cannot_store_register)
5744 (hppa_smash_text_address, hppa_target_read_pc, hppa_target_write_pc):
5745 Remove forward declaration and make static.
5746 (hppa_reg_struct_has_addr): Remove.
5747
5748 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5749
5750 * observer.sh: Move comments in sed command to first column.
5751
5752 2004-04-16 Jason Molenda (jmolenda@apple.com)
5753
5754 * frame.c: Minor typeo corrections in comments.
5755
5756 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5757
5758 * observer.c (observer_test_first_notification_function): Update
5759 function profile.
5760 (observer_test_second_notification_function): Likewise.
5761 (observer_test_third_notification_function): Likewise.
5762
5763 2004-04-16 Mark Kettenis <kettenis@gnu.org>
5764
5765 From Brian Ford <ford@vss.fsi.com>:
5766 * i386-tdep.c (i386_coff_init_abi): New function.
5767 * i386-tdep.h (i386_coff_init_abi): New prototype.
5768 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Call it. Use correct
5769 register number translation functions for DWARF and DWARF 2.
5770
5771 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5772
5773 * dwarf2read.c: Back out my previous change, it was incorrect.
5774
5775 2004-04-16 Daniel Jacobowitz <drow@mvista.com>
5776
5777 * dwarf2read.c: Include "hashtab.h".
5778 (struct dwarf2_cu): Add partial_dies, comp_unit_obstack,
5779 has_namespace_info.
5780 (struct partial_die_info): Add comments. Use bitfields to reduce
5781 memory footprint. Add scope, scope_set, has_specification,
5782 spec_offset, die_parent, die_child, and die_sibling.
5783 (peek_die_abbrev): Add prototype.
5784 (partial_read_comp_unit_head): New function, broken out from
5785 dwarf2_build_psymtabs_hard.
5786 (dwarf2_build_psymtabs_hard): Remove unused variable abbrev_ptr.
5787 Use partial_read_comp_unit_head. Initialize the CU and
5788 comp_unit_obstack. Update calls to read_partial_die and
5789 scan_partial_symbols. Use free_stack_comp_unit and
5790 load_partial_dies.
5791 (scan_partial_symbols): Change PDI to a pointer. Use the child and
5792 sibling pointers to walk partial DIEs. Call fixup_partial_die.
5793 Update calls to helper functions. Remove NAMESPACE argument.
5794 Update comments.
5795 (partial_die_parent_scope, partial_die_full_name): New functions.
5796 (add_partial_symbol): Remove namespace argument. Update call to
5797 pdi_needs_namespace. Use partial_die_full_name. Handle
5798 DW_TAG_namespace. Check has_namespace_info flag.
5799 (pdi_needs_namespace): Remove NAMESPACE argument. Just check the
5800 tag. Handle namespaces.
5801 (add_partial_namespace, add_partial_enumeration): Simplify.
5802 (guess_structure_name): New function, derived from
5803 add_partial_structure.
5804 (add_partial_structure): Remove.
5805 (determine_class_name): Update comment.
5806 (dwarf2_read_abbrevs): Set has_namespace_info flag.
5807 (is_type_tag_for_partial, load_partial_dies): New functions.
5808 (read_partial_die): Pass abbrev and abbrev_len as arguments.
5809 Record specifications instead of following them immediately.
5810 (find_partial_die_in_comp_unit, find_partial_die)
5811 (fixup_partial_die, free_stack_comp_unit)
5812 (hashtab_obstack_allocate, dummy_obstack_deallocate)
5813 (partial_die_hash, partial_die_eq): New functions.
5814 * Makefile.in (hashtab_h): Define.
5815 (dwarf2read.o): Update dependencies.
5816 (observer_inc, observer_h): Move to the correct section.
5817
5818 2004-04-15 Joel Brobecker <brobecker@gnat.com>
5819
5820 * dwarf2read.c (dwarf2_attribute_true_p): New function.
5821 (die_is_declaration): Use the function above. Add comment.
5822
5823 2004-04-15 Joel Brobecker <brobecker@gnat.com>
5824
5825 * dwarf2read.c (read_structure_scope): Identify stub types
5826 using die_is_declaration() only.
5827
5828 2004-04-15 Roland McGrath <roland@redhat.com>
5829
5830 * symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as
5831 argument instead of NAME.
5832 (symbol_file_add, reread_separate_symbols): Call symfile_bfd_open
5833 in call to symbol_file_add_with_addrs_or_offsets.
5834 (build_addr_info): New function, helper for ...
5835 (symbol_file_add_from_memory): New function.
5836 (add_symbol_file_from_memory_command): New function using that.
5837 (_initialize_symfile): Register it for add-symbol-file-from-memory.
5838 (pre_add_symbol_hook): Add const to argument type.
5839 * symfile.h (symbol_file_add_from_memory): Declare it.
5840
5841 2004-04-15 Mark Kettenis <kettenis@gnu.org>
5842
5843 * NEWS (New native configurations): Mention OpenBSD/vax.
5844 * configure.host: Add vax-*-openbsd*.
5845 * config/vax/obsd.mh: New file.
5846 * config/vax/nm-obsd.h: New file.
5847
5848 * vax-tdep.c: Include "regset.h".
5849 (vax_supply_gregset): New function.
5850 (vax_gregset): New variable.
5851 (vax_regset_from_core_section): New function.
5852 (vax_gdbarch_init): Set regset_from_core_section.
5853 * Makefile.in (vax-tdep.o): Update dependencies.
5854
5855 2004-04-15 Andrew Cagney <cagney@redhat.com>
5856
5857 * observer.c (normal_stop_subject, observer_notify_normal_stop)
5858 (observer_normal_stop_notification_stub)
5859 (observer_attach_normal_stop, observer_detach_normal_stop):
5860 Delete, replaced by #include "observer.inc".
5861 * infrun.c (normal_stop): Pass "stop_bpstat" to
5862 observer_notify_normal_stop.
5863 * Makefile.in (observer_inc): Define.
5864 (observer.o): Update dependencies.
5865 (observer.h, observer.inc): New rules.
5866 * observer.h: Delete file.
5867 * observer.sh: New file.
5868
5869 2004-04-15 Mark Kettenis <kettenis@gnu.org>
5870
5871 * vax-tdep.c (vax_frame_cache): Fix typo.
5872
5873 2004-04-14 Mark Kettenis <kettenis@gnu.org>
5874
5875 * NEWS (New native configurations): Mention NetBSD/vax.
5876 * configure.host: Add vax-*-netbsdelf* and vax-*-netbsd*.
5877 * config/vax/nbsdelf.mh: New file.
5878 * config/vax/nbsdaout.mh: New file.
5879 * config/vax/nm-nbsd.h: New file.
5880 * config/vax/nm-nbsdaout.h: New file.
5881
5882 * vaxnbsd-tdep.c: New file.
5883 * Makefile.in (vaxnbsd-tdep.o): New dependency.
5884 * configure.tgt: Add vax-*-netbsd* and vax-*-openbsd*.
5885 * config/vax/nbsd.mt: New file.
5886 * config/vax/tm-nbsd.h: New file.
5887
5888 * Makefile.in (vaxbsd-nat.o): New dependency.
5889
5890 * vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
5891 * vax-tdep.c (vax_store_arguments): Remove struct_return and
5892 struct_addr arguments. Don't push return value address.
5893 (vax_push_dummy_call): Don't pass STRUCT_RETURN and STRUCT_ADDR as
5894 arguments to vax_store_arguments. Store return value address in
5895 R1.
5896 (vax_store_struct_return, vax_extract_return_value)
5897 (vax_store_return_value): Remove functions.
5898 (vax_return_value): New function.
5899 (vax_gdbarch_init): Set return value. Don't set
5900 deprecated_store_struct_return, deprecated_extract_struct_return
5901 and deprecated_store_return_value.
5902
5903 2004-04-14 Andreas Schwab <schwab@suse.de>
5904
5905 * ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
5906 value buffer.
5907 * libunwind-frame.c (libunwind_frame_prev_register): Likewise.
5908
5909 2004-04-14 Mark Kettenis <kettenis@gnu.org>
5910
5911 * vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
5912 (vax_unwind_dummy_id): New functions.
5913 (vax_push_dummy_frame, vax_pop_frame): Remove functions.
5914 (vax_call_dummy_words, sizeof_vax_call_dummy_words): Remove
5915 variables.
5916 (vax_fix_call_dummy): Remove function.
5917 (vax_gdbarch_init): Set push_dummy_call and unwind_dummy_id.
5918 Don't set deprecated_push_dummy_frame, deprecated_pop_frame,
5919 call_dummy_location, deprecated_call_dummy_words,
5920 deprecated_sizeof_call_dummy_words,
5921 deprecated_call_dummy_breakpoint_offset,
5922 deprecated_use_generic_dummy_frames, deprecated_pc_in_call_dummy,
5923 and deprecated_dummy_write_sp.
5924
5925 2004-04-13 David Carlton <carlton@kealia.com>
5926
5927 * MAINTAINERS: Move myself to "paper trail" section.
5928
5929 2004-04-12 Mark Kettenis <kettenis@gnu.org>
5930
5931 * vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
5932 "trad-frame.h".
5933 (vax_frame_init_saved_regs): Remove function.
5934 (vax_sigtramp_saved_pc): Remove function.
5935 (vax_frame_saved_pc): Remove function.
5936 (vax_frame_args_address): Remove function.
5937 (vax_frame_num_args): Rewrite.
5938 (vax_frame_chain): Remove function.
5939 (vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
5940 VAX_FP_REGNUM.
5941 (vax_pop_frame): Likewise.
5942 (vax_saved_pc_after_call): Remove function.
5943 (struct vax_frame_cache): New structure.
5944 (vax_frame_cache): New function.
5945 (vax_frame_this_id): New function.
5946 (vax_frame_prev_register): New function.
5947 (vax_frame_unwind): New variable.
5948 (vax_frame_sniffer): New function.
5949 (vax_frame_base_address): New function.
5950 (vax_frame_args_address): New function.
5951 (vax_frame_base): New variable.
5952 (vax_unwind_pc): New function.
5953 (vax_gdbarch_init): Don't set deprecated_init_frame_pc,
5954 deprecated_fp_regnum, deprecated_saved_pc_after_call,
5955 deprecated_frame_chain, deprecated_frame_saved_pc,
5956 deprecated_frame_args_address and
5957 deprecated_frame_init_saved_regs.
5958 * Makefile.in (vax-tdep.o): Update dependencies.
5959
5960 * vaxbsd-nat.c: New file.
5961
5962 * vax-tdep.h: Update copyright year. Adjust comments.
5963 (VAX_REGISTER_SIZE, VAX_REGISTER_BYTES, VAX_MAX_REGISTER_RAW_SIZE,
5964 VAX_MAX_REGISTER_VIRTUAL_SIZE): Remove macros.
5965 (vax_regnum): New enum. Replacing...
5966 (VAX_AP_REGNUM, VAX_FP_REGNUM, VAX_SP_REGNUM, VAX_PC_REGNUM)
5967 (VAX_PS_REGNUM): ... these removed macros.
5968 * vax-tdep.c (vax_register_name): Remove prototype.
5969 (vax_register_name): Reorganize somewhat. Use ARRAY_SIZE.
5970 (vax_register_byte, vax_register_raw_size,
5971 vax_register_virtual_size, vax_register_virtual_type): Remove
5972 functions.
5973 (vax_register_type): New function.
5974 (vax_breakpoint_from_pc): Reorganize.
5975 (vax_gdbarch_init): Set register_type. Don't set
5976 deprecated_register_size, deprecated_register_bytes,
5977 deprecated_register_byte, deprecated_register_raw_size,
5978 deprecated_max_register_raw_size,
5979 deprecated_register_virtual_size,
5980 deprecated_max_register_virtual_size and
5981 deprecated_register_virtual_type. Add comment on stack direction.
5982
5983 2004-04-11 Mark Kettenis <kettenis@gnu.org>
5984
5985 * amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
5986 AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
5987 AMD64_FS_REGNUM and AMD64_GS_REGNUM.
5988
5989 2004-04-10 Randolph Chung <tausq@debian.org>
5990
5991 * MAINTAINERS (write after approval): Add myself.
5992
5993 2004-04-07 Randolph Chung <tausq@debian.org>
5994
5995 * hppa-tdep.c (hppa_inner_than): Remove.
5996 (is_pa_2): Remove unused static variable.
5997 (hppa_gdbarch_init): Use core_addr_greaterthan instead of own version.
5998
5999 2004-03-10 Paul N. Hilfinger <Hilfinger@gnat.com>
6000
6001 * language.h (language_defn): Add new la_post_parser field.
6002 * parser-defs.h (null_post_parser): New declaration (default for
6003 la_post_parser).
6004
6005 * parse.c (parse_exp_1): Move code to parse_exp_in_context and
6006 insert call to that function.
6007 (parse_exp_in_context): New function, including code formerly in
6008 parse_exp_1. Calls language-dependent post-parser after
6009 prefixification.
6010 (parse_expression_in_context): New exported function.
6011 (null_post_parser): New definition.
6012 * expression.h (parse_expression_in_context): Add declaration.
6013
6014 * p-lang.c (pascal_language_defn): Add trivial post-parser.
6015 * c-lang.c (c_language_defn): Ditto.
6016 (cplus_language_defn): Ditto.
6017 (asm_language_defn): Ditto.
6018 (minimal_language_defn): Ditto.
6019 * f-lang.c (f_language_defn): Ditto.
6020 * jv-lang.c (java_language_defn): Ditto.
6021 * language.c (unknown_language_defn): Ditto.
6022 (auto_language_defn): Ditto.
6023 (local_language_defn): Ditto.
6024 * m2-lang.c (m2_language_defn): Ditto.
6025 * scm-lang.c (scm_language_defn): Ditto.
6026 * obj-lang.c (objc_language_defn): Ditto.
6027
6028 2004-04-10 Mark Kettenis <kettenis@gnu.org>
6029
6030 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Remove function.
6031 (amd64nbsd_mcontext_addr): New function.
6032 (amd64nbsd_init_abi): Initialize TDEP->sigcontext_addr as
6033 amd64nbsd_mcontext_addr. Directly initialize TDEP->sc_reg_offset
6034 with amd64nbsd_r_reg_offset, instead of building it on the fly.
6035
6036 * corelow.c (core_xfer_partial): Fix coding standards violation.
6037 Add support for TARGET_OBJECT_WCOOKIE.
6038
6039 * sparc-linux-tdep.c (sparc32_linux_init_abi): Don't set
6040 deprecated_pc_in_sigtramp.
6041 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Likewise.
6042 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Likewise.
6043 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Likewise.
6044 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Likewise.
6045 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Likewise.
6046 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Likewise.
6047 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
6048
6049 * amd64-linux-tdep.c, amd64nbsd-tdep.c, amd64obsd-tdep.c,
6050 i386-linux-tdep.c, i386-tdep.c, i386nbsd-tdep.c, i386obsd-tdep.c:
6051 Fix typo.
6052
6053 * amd64-tdep.c (amd64_supply_fxsave): Only fiddle with
6054 I387_FISEG_REGNUM and I387_FOSEG_REGNUM in 64-bit mode.
6055 (amd64_collect_fxsave): Likewise.
6056
6057 * i386-sol2-tdep.c: Include "gdb_string.h".
6058 (i386_sol2_sigtramp_p): Recognize signal trampoline based on its
6059 name.
6060 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
6061
6062 2004-04-10 Mark Kettenis <kettenis@gnu.org>
6063
6064 * i386-sol2-tdep.c: Include "solib-svr4.h".
6065 (i386_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6066 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
6067 * config/i386/tm-i386sol2.h: Include :solib.h".
6068 * config/i386/i386sol2.mh (NATDEPFILES): Remove solib.o,
6069 solib-svr4.o and solib-legacy.o.
6070 * config/i386/i386sol2.mt (TDEPFILES): Add solib.o and
6071 solib-svr4.o.
6072
6073 2004-04-09 Mark Kettenis <kettenis@gnu.org>
6074
6075 * amd64-linux-nat.c (fetch_inferior_registers): Correctly check
6076 whether a register is supplied by PTRACE_GETFPREGS.
6077 (store_inferior_registers): Likewise.
6078 * amd64bsd-nat.c (fetch_inferior_registers): Correctly check
6079 whether a register is supplied by PT_GETFPREGS.
6080 (store_inferior_registers): Likewise.
6081
6082 * config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
6083 * config/i386/linux64.mt (TDEPFILES): Likewise.
6084
6085 * i386-linux-nat.c: Update copyrigth year. Tweak comment.
6086
6087 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
6088 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
6089 the program counter is in the range specified by `struct
6090 gdbarch_tdep'.
6091 * amd64-linux-tdep.c: Include "symtab.h".
6092 (amd64_linux_pc_in_sigtramp): Remove function.
6093 (amd64_linux_sigtramp_p): New function.
6094 (amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
6095 deprecated_pc_in_sigtramp.
6096 * amd64nbsd-tdep.c: Include "symtab.h".
6097 (amd64nbsd_sigtramp_p): New function.
6098 (amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
6099 deprecated_pc_in_sigtramp.
6100 * amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
6101 few comments.
6102 (amd64obsd_pc_in_sigtramp): Remove function.
6103 (amd64obsd_sigtramp_p): New function.
6104 (amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
6105 deprecated_pc_in_sigtramp.
6106 * i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
6107 (i386bsd_pc_ins_sigtramp): Remove prototype.
6108 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
6109 * i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
6110 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
6111 the program counter is in the range specified by `struct
6112 gdbarch_tdep'.
6113 (i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
6114 (i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
6115 (i386_go32_pc_in_sigtramp): Remove function.
6116 (i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
6117 Initialize TDEP->sigtramp_p.
6118 (i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
6119 (i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
6120 deprecated_pc_in_sigtramp.
6121 * i386-linux-tdep.c: Adjust comments.
6122 (i386_linux_pc_in_sigtramp): Remove function.
6123 (i386_linux_sigtramp_p): New function.
6124 (i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
6125 deprecated_pc_in_sigtramp.
6126 * i386-nto-tdep.c: Update copyright year.
6127 (i386nto_pc_in_sigtramp): Remove function.
6128 (i386nto_sigtramp_p): New function.
6129 (i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
6130 SP_REGNUM.
6131 (i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
6132 deprecated_pc_in_sigtramp.
6133 * i386-sol2-tdep.c: Update copyright year.
6134 (i386_sol2_pc_in_sigtramp): Remove function.
6135 (i386_sol2_sigtramp_p): New function.
6136 (i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
6137 deprecated_pc_in_sigtramp.
6138 * i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
6139 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
6140 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6141 deprecated_sigtramp_start and deprecated_sigtramp_end.
6142 * i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
6143 (i386nbsd_pc_in_sigtramp): Remove function.
6144 (i386nbsd_sigtramp_p): New function.
6145 (i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6146 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
6147 TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
6148 * i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
6149 (i386obsd_pc_in_sigtramp): Remove function.
6150 (i386obsd_sigtramp_p): New function.
6151 (i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
6152 functions.
6153 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6154 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
6155 TDEP->sigtramp_p.
6156 * Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
6157 amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
6158 dependencies.
6159
6160 * config/i386/i386aout.mt: Remove file.
6161
6162 * configure.tgt: Remove i[34567]86-*-go32*,
6163 i[34567]86-*-msdosdjgpp*, i[34567]86-*-sco*, i[34567]86-*-sysv*
6164 and i[34567]86-*-isc*. Set gdb_target to i386 for
6165 i[34567]86-*-netware* and i[34567]86-*-*.
6166 * config/i386/i386.mt: New file.
6167 * config/i386/embed.mt: Remove file.
6168 * config/i386/go32.mt: Remove file.
6169 * config/i386/i386nw.mt: Remove file.
6170 * config/i386/i386v.mt: Remove file.
6171 * config/i386/tm-go32.h: Remove file.
6172
6173 * tui/tui-hooks.c: Include "readline/readline.h" after
6174 "gdb_curses.h" instead of before.
6175 * tui/tui-io.c: Likewise.
6176
6177 * tui/tui.c: Fix typo in comment.
6178
6179 * sparc64-tdep.c (sparc_address_from_register): Remove function.
6180
6181 2004-04-08 Andrew Cagney <cagney@redhat.com>
6182
6183 * breakpoint.h (deprecated_exception_catchpoints_are_fragile)
6184 (deprecated_exception_support_initialized): Declare.
6185 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support)
6186 (initialize_hp_cxx_exception_support)
6187 (child_enable_exception_callback): Update.
6188 * breakpoint.c (deprecated_exception_catchpoints_are_fragile)
6189 (deprecated_exception_support_initialized): Rename
6190 deprecated_exception_catchpoints_are_fragile and
6191 deprecated_exception_support_initialized.
6192 (breakpoint_init_inferior, breakpoint_init_inferior): Update.
6193
6194 * symtab.c (deprecated_hp_som_som_object_present): Rename
6195 hp_som_som_object_present.
6196 * symtab.h (deprecated_hp_som_som_object_present): Declare.
6197 * symfile.c (hp_som_som_object_present, RESET_HP_UX_GLOBALS):
6198 Update. Delete extern declaration.
6199 * valops.c (hp_som_som_object_present): Ditto.
6200 * parse.c (deprecated_hp_som_som_object_present)
6201 (parse_nested_classes_for_hpacc): Ditto.
6202 * hpread.c (hp_som_som_object_present, hpread_expand_symtab): Ditto.
6203 * hppa-hpux-tdep.c (hp_som_som_object_present)
6204 (initialize_hp_cxx_exception_support): Ditto.
6205 * eval.c (hp_som_som_object_present, evaluate_subexp_standard): Ditto.
6206 * cp-valprint.c (hp_som_som_object_present)
6207 (cp_print_class_method): Ditto.
6208 * c-typeprint.c (hp_som_som_object_present):
6209 (c_type_print_base): Ditto.
6210 * c-exp.y (hp_som_som_object_present): Ditto.
6211
6212 2004-04-08 Andrew Cagney <cagney@redhat.com>
6213
6214 * frame-unwind.c (struct frame_unwind_table, frame_unwind_init)
6215 (frame_unwind_prepend_unwinder, frame_unwind_append_sniffer)
6216 (frame_unwind_find_by_frame): Re-implement the unwind code so
6217 that it can both prepend and append sniffers. Replace
6218 frame_unwind_register_unwinder with frame_unwind_prepend_unwinder.
6219 * tramp-frame.c (tramp_frame_append): Use
6220 frame_unwind_prepend_unwinder.
6221 * frame-unwind.h (frame_unwind_prepend_unwinder): Replace
6222 frame_unwind_register_unwinder.
6223 * tramp-frame.h (tramp_frame_prepend_unwinder): Rename
6224 tramp_frame_append.
6225 * tramp-frame.c (tramp_frame_prepend_unwinder): Update.
6226 * mips-linux-tdep.c (mips_linux_init_abi, mips_linux_init_abi)
6227 (mips_linux_init_abi): Update.
6228
6229 2004-04-08 Kevin Buettner <kevinb@redhat.com>
6230
6231 * ppc-linux-tdep.c (ELF_NREG, ELF_NFPREG, ELF_NVRREG)
6232 (ELF_FPREGSET_SIZE): Delete constants formerly used in core
6233 file support.
6234
6235 2004-04-07 Kevin Buettner <kevinb@redhat.com>
6236
6237 * ia64-tdep.c (elf.h): Don't include.
6238 (elf/ia64.h) [HAVE_LIBUNWIND_IA64_H]: Include.
6239
6240 2004-04-07 Jason Molenda (jmolenda@apple.com)
6241
6242 * frame.h: Typeo corrections in comments.
6243
6244 2004-04-07 Jim Blandy <jimb@redhat.com>
6245
6246 * i386-tdep.c (i386_stab_reg_to_regnum): Correct numbering for
6247 %esp and %ebp
6248
6249 2004-04-07 Mark Kettenis <kettenis@gnu.org>
6250
6251 * config/sparc/linux.mt (TDEPFILES): Remove solib-legacy.o.
6252 * config/sparc/linux64.mt (TDEPFILES): Likewise.
6253 * config/sparc/sol2.mt (TDEPFILES): Add solib.o and solib-svr4.o.
6254 * config/sparc/sol2.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
6255 and solib-legacy.o.
6256 * config/sparc/sol2-64.mt (TDEPFILES): Add solib.o and
6257 solib-svr4.o.
6258 * config/sparc/tm-sol2.h: Update copyright year. Include
6259 "solib.h".
6260
6261 * sparc-sol2-tdep.c: Update copyright year. Include
6262 "solib-svr4.h".
6263 (sparc32_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6264 * sparc64-sol2-tdep.c: Include "solib-svr4.h".
6265 (sparc64_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6266 * Makefile.in (sparc-sol2-tdep.o, sparc64-sol2-tdep.o): Update
6267 dependencies.
6268
6269 2004-04-06 Andrew Cagney <cagney@redhat.com>
6270
6271 * infttrace.c: Include "infttrace.h".
6272 * infttrace.h: Include "target.h".
6273 * Makefile.in (infttrace_h): Update.
6274 (infttrace.o): Update.
6275
6276 2004-04-06 Andrew Cagney <cagney@redhat.com>
6277
6278 * hppah-nat.c (hpux_has_forked, hpux_has_vforked)
6279 (hpux_has_execd, hpux_has_syscall_event): Include "infttrace.h",
6280 move extern declarations from here ...
6281 * infttrace.h: ... to here.
6282 * Makefile.in (hppah-nat.o): Update dependencies.
6283
6284 * hppa-tdep.c (hppa_breakpoint_from_pc): Make static.
6285 (hppa_gdbarch_init): Set gdbarch_breakpoint_from_pc
6286 * config/pa/tm-hppa.h (BREAKPOINT_FROM_PC, BREAKPOINT32):
6287 (hppa_breakpoint_from_pc): Delete.
6288
6289 * MAINTAINERS: Mark hppa-elf as buildable with -Werror.
6290
6291 2004-04-05 Andrew Cagney <cagney@redhat.com>
6292
6293 * hppa-tdep.c: Do not include <sys/types.h>, <sys/param.h>,
6294 <signal.h>, <sys/ptrace.h>, #include "a.out.encap.h",
6295 <sys/file.h>.
6296
6297 2004-04-06 Randolph Chung <tausq@debian.org>
6298
6299 Committed by Andrew Cagney (mechanical change).
6300 * hppa-tdep.c: (args_for_find_stub, hp_som_som_object_present,
6301 exception_catchpoints_are_fragile, find_stub_with_shl_get,
6302 cover_find_stub_with_shl_get, initialize_hp_cxx_exception_support,
6303 child_enable_exception_callback, current_ex_event,
6304 null_symtab_and_line, child_get_current_exception_event,
6305 HP_ACC_EH_notify_hook, HP_ACC_EH_set_hook_value,
6306 HP_ACC_EH_notify_callback, HP_ACC_EH_break, HP_ACC_EH_catch_throw,
6307 HP_ACC_EH_catch_catch, __eh_notification, hp_cxx_exception_support,
6308 hp_cxx_exception_support_initialized, eh_notify_hook_addr,
6309 eh_notify_callback_addr, eh_break_addr, eh_catch_catch_addr,
6310 eh_catch_throw_addr, break_callback_sal, setup_d_pid_in_inferior):
6311 Move hpux-specific definitions ...
6312 * hppa-hpux-tdep.c: ... to here.
6313
6314 2004-04-05 Andrew Cagney <cagney@redhat.com>
6315
6316 * hppa-tdep.c (hppa_frame_cache): Pass the frame's func to
6317 skip_prologue_using_sal.
6318
6319 2004-04-05 Andrew Cagney <cagney@redhat.com>
6320
6321 * config/i386/tm-i386.h: Delete file.
6322 * config/i386/tm-vxworks.h: Update copyright, do not include
6323 "tm-i386.h".
6324 * config/i386/tm-nto.h, config/i386/tm-linux.h: Ditto.
6325 * config/i386/tm-i386sol2.h, config/i386/tm-i386lynx.h: Ditto.
6326 * config/i386/tm-go32.h, config/i386/tm-cygwin.h: Ditto.
6327 * config/i386/ncr3000.mt (TM_FILE): Delete.
6328 * config/i386/interix.mt (TM_FILE): Delete.
6329 * config/i386/i386v.mt (TM_FILE): Delete.
6330 * config/i386/i386nw.mt (TM_FILE): Delete.
6331 * config/i386/i386gnu.mt (TM_FILE): Delete.
6332 * config/i386/i386aout.mt (TM_FILE): Delete.
6333 * config/i386/embed.mt (TM_FILE): Delete.
6334
6335 2004-04-05 Kevin Buettner <kevinb@redhat.com>
6336
6337 * frv-tdep.h (fsr0_regnum, acc0_regnum, acc7_regnum, accg0123_regnum)
6338 (accg4567_regnum, msr0_regnum, msr1_regnum, gner0_regnum)
6339 (gner1_regnum, fner0_regnum, fner1_regnum, accg0_regnum)
6340 (accg7_regnum): New constants.
6341 (last_spr_regnum, last_pseudo_regnum): Update.
6342 * frv-tdep.c (new_variant): Initialize names for fsr0, acc0-acc7,
6343 accg0-accg7, msr0, msr1, gner0, gner1, fner0, and fner1.
6344 (frv_pseudo_register_read, frv_pseudo_register_write): Add support
6345 for accg registers.
6346 (frv_register_sim_regno): Update spr_map[].
6347
6348 2004-04-04 Andrew Cagney <cagney@redhat.com>
6349
6350 * config/mips/xm-riscos.h: Delete.
6351 * config/mips/xm-mipsv4.h, config/mips/xm-mips.h: Delete.
6352 * config/mips/tm-mipsv4.h, config/mips/riscos.mh: Delete.
6353 * config/mips/nm-riscos.h, config/mips/nm-news-mips.h: Delete.
6354 * config/mips/nm-mips.h, config/mips/news-mips.mh: Delete.
6355 * config/mips/news-mips.mh, config/m68k/tm-m68kv4.h: Delete.
6356 * config/mips/decstation.mh, config/mips/littlemips.mh: Delete.
6357 * config/mips/mipsv4.mt, config/m68k/tm-sun3.h: Delete.
6358 * config/m68k/xm-sun3os4.h, config/m68k/xm-sun3.h: Delete.
6359 * config/m68k/xm-sun2.h, config/m68k/xm-m68kv4.h: Delete.
6360 * config/m68k/xm-dpx2.h, config/m68k/xm-delta68.h: Delete.
6361 * config/m68k/xm-3b1.h, config/m68k/tm-sun3os4.h: Delete.
6362 * config/m68k/tm-m68klynx.h, config/m68k/tm-dpx2.h: Delete.
6363 * config/m68k/tm-delta68.h, config/m68k/tm-3b1.h: Delete.
6364 * config/m68k/sun3os4.mt, config/m68k/nm-sysv4.h: Delete.
6365 * config/m68k/nm-sun3.h, config/m68k/sun3os4.mh: Delete.
6366 * config/m68k/sun2os3.mh, config/m68k/nm-sun2.h: Delete.
6367 * config/m68k/nm-m68klynx.h, config/m68k/sun3os3.mt: Delete.
6368 * config/m68k/nm-dpx2.h, config/m68k/sun2os3.mt: Delete.
6369 * config/m68k/dpx2.mh, config/m68k/sun3os3.mh: Delete.
6370 * config/m68k/sun2os4.mh, config/m68k/nm-delta68.h: Delete.
6371 * config/m68k/m68kv4.mt, config/m68k/m68klynx.mt: Delete.
6372 * config/m68k/3b1.mt, config/m68k/m68klynx.mh: Delete.
6373 * config/m68k/m68kv4.mh, config/m68k/sun2os4.mt: Delete.
6374 * config/m68k/tm-sun2os4.h, config/m68k/3b1.mh: Delete.
6375 * config/m68k/dpx2.mt, config/m68k/delta68.mt: Delete.
6376 * config/m68k/tm-sun2.h, config/m68k/delta68.mh: Delete.
6377
6378 * configure.tgt: Remove m68000-*-sunos3*, m68000-*-sunos4*,
6379 m68*-bull-sysv*, m68*-att-*, m68*-motorola-*, m68*-*-lynxos*,
6380 m68*-*-sunos3*, m68*-*-sunos4*, m68*-*-sysv4*, mips*-*-sysv4*.
6381 * configure.host: Remove m680[01]0-sun-sunos3*,
6382 m680[01]0-sun-sunos4*, m68*-att-*, m68*-bull*-sysv*,
6383 m68*-*-lynxos*, m68*-*-sysv4*, m68*-motorola-*, m68*-sun-sunos3*,
6384 m68*-sun-sunos4*, m68*-sun-*, mips-dec-*, mips-little-*,
6385 mips-sony-*, mips-*-mach3*, mips-*-sysv4*, mips-*-sysv*,
6386 mips-*-riscos*.
6387 * NEWS: Mention removed systems.
6388
6389 2004-04-04 Andrew Cagney <cagney@redhat.com>
6390
6391 GDB 6.1 release created from 6.1 branch.
6392
6393 2004-04-04 Andrew Cagney <cagney@redhat.com>
6394
6395 * gnu-nat.c (gnu_wait): Use memcpy instead of bcopy.
6396 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
6397 * remote-vx68.c (vx_read_register, vx_write_register): Ditto.
6398
6399 * config/vax/xm-vax.h (FAULT_CODE_ORIGIN, INIT_STACK): Delete.
6400 * config/alpha/xm-alphaosf.h (NO_SIGINTERRUPT): Delete.
6401 * config/alpha/xm-alphalinux.h (NO_SIGINTERRUPT): Delete.
6402
6403 2004-04-03 Jim Blandy <jimb@redhat.com>
6404
6405 * MAINTAINERS: Chris Faylor has changed employers; add him to
6406 "paper trail" section, and update his E-mail address.
6407
6408 2004-04-03 Andrew Cagney <cagney@redhat.com>
6409
6410 * frame-unwind.c (frame_unwind_find_by_frame): Delete check for
6411 generic dummy frames.
6412 * dummy-frame.c: Update copyright.
6413 (dummy_frame_sniffer): Delete check for generic dummy frames.
6414
6415 * config/pa/tm-hppa.h (REG_PARM_STACK_SPACE): Delete.
6416 * config/pa/tm-hppa64.h (PA20W_CALLING_CONVENTIONS)
6417 (REG_PARM_STACK_SPACE): Delete.
6418 * hppa-tdep.c (hppa64_push_dummy_call, hppa32_push_dummy_call):
6419 Inline reference to REG_PARM_STACK_SPACE.
6420
6421 * config/pa/tm-hppah.h (FRAME_SAVED_PC_IN_SIGTRAMP)
6422 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
6423 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
6424 (FRAME_BASE_BEFORE_SIGTRAMP)
6425 (hppa32_hpux_frame_base_before_sigtramp)
6426 (hppa32_hpux_frame_saved_pc_in_sigtramp): Delete.
6427 * config/pa/tm-hppa64.h (hppa64_hpux_frame_saved_pc_in_sigtramp)
6428 (hppa64_hpux_frame_find_saved_regs_in_sigtramp)
6429 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
6430 (FRAME_BASE_BEFORE_SIGTRAMP)
6431 (hppa64_hpux_frame_base_before_sigtramp)
6432 (FRAME_SAVED_PC_IN_SIGTRAMP): Delete.
6433
6434 2004-04-03 Andrew Cagney <cagney@redhat.com>
6435
6436 * PROBLEMS: Mention that GDB doesn't build on HP/UX 11.00.
6437
6438 2004-04-02 Andrew Cagney <cagney@redhat.com>
6439
6440 * sh64-tdep.c (sh64_init_extra_frame_info): Replace
6441 DEPRECATED_CALL_DUMMY_LENGTH with 0, simplify.
6442 * dummy-frame.h: Delete out-of-date comments.
6443 * gdbarch.sh (DEPRECATED_CALL_DUMMY_LENGTH): Delete.
6444 * gdbarch.h, gdbarch.c: Re-generate.
6445
6446 2004-04-02 Joel Brobecker <brobecker@gnat.com>
6447
6448 Committed by Andrew Cagney <cagney@redhat.com>.
6449 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Do not take
6450 into account an instruction saving a register if we have already
6451 seen an earlier instruction saving that same register.
6452
6453 2004-04-02 Andrew Cagney <cagney@redhat.com>
6454
6455 * gdbarch.sh (DEPRECATED_INIT_FRAME_PC_FIRST): Delete.
6456 * gdbarch.h, gdbarch.c: Re-generate.
6457 * frame.c (legacy_get_prev_frame): Delete references to
6458 DEPRECATED_INIT_FRAME_PC_FIRST.
6459
6460 * infrun.c (pc_in_sigtramp): Delete function.
6461 (check_sigtramp2): Inline call to pc_in_sigtramp, use
6462 get_frame_type.
6463
6464 2004-04-02 Andrew Cagney <cagney@redhat.com>
6465
6466 * infrun.c (handle_step_into_function): Delete code conditional on
6467 legacy_frame_p.
6468 (handle_inferior_event, step_over_function): Ditto.
6469
6470 2004-04-02 Andrew Cagney <cagney@redhat.com>
6471
6472 * frame.c (get_prev_frame_1): Exclude signal trampolines from the
6473 "previous frame inner to this frame" test.
6474
6475 2004-04-02 Andrew Cagney <cagney@redhat.com>
6476
6477 * frame.c (safe_frame_unwind_memory): New function.
6478 * frame.h (safe_frame_unwind_memory): Declare. Update description
6479 of /safe_/ methods.
6480 * tramp-frame.c (tramp_frame_start): Re-order parmeters, add
6481 "next_frame". Use safe_frame_unwind_memory.
6482 (tramp_frame_sniffer): Update call to tramp_frame_start.
6483
6484 2004-04-01 Daniel Jacobowitz <drow@mvista.com>
6485
6486 * dwarf2read.c (dwarf2_objfile_data_key): New.
6487 (struct dwarf2_per_objfile, dwarf2_per_objfile): New.
6488 (dwarf_info_size, dwarf_abbrev_size, dwarf_line_size)
6489 (dwarf_pubnames_size, dwarf_aranges_size, dwarf_loc_size)
6490 (dwarf_macinfo_size, dwarf_str_size, dwarf_ranges_size)
6491 (dwarf_frame_size, dwarf_eh_frame_size, dwarf_info_buffer)
6492 (dwarf_abbrev_buffer, dwarf_line_buffer, dwarf_str_buffer)
6493 (dwarf_macinfo_buffer, dwarf_ranges_buffer, dwarf_loc_buffer):
6494 Remove variables.
6495 (struct dwarf2_pinfo): Remove per-objfile members. Update comments.
6496 (DWARF_ABBREV_SIZE, DWARF_LINE_SIZE)
6497 (DWARF_LOC_SIZE, DWARF_MACINFO_SIZE, DWARF_STR_SIZE)
6498 (DWARF_RANGES_SIZE, DWARF_INFO_BUFFER)
6499 (DWARF_ABBREV_BUFFER, DWARF_LINE_BUFFER, DWARF_STR_BUFFER)
6500 (DWARF_MACINFO_BUFFER, DWARF_RANGES_BUFFER, DWARF_LOC_BUFFER):
6501 Remove macros.
6502 (dwarf2_has_info): Take an objfile argument. Allocate per-objfile
6503 data.
6504 (dwarf2_locate_sections, dwarf2_build_psymtabs)
6505 (dwarf2_build_psymtabs_easy, dwarf2_build_psymtabs_hard)
6506 (skip_one_die, dwarf2_get_pc_bounds, dwarf2_read_abbrevs)
6507 (read_partial_die, read_full_die, read_indirect_string)
6508 (dwarf_decode_line_header, dwarf_decode_macros)
6509 (dwarf2_symbol_mark_computed): Remove use of removed macros.
6510 Update uses of removed variables.
6511 (psymtab_to_symtab_1): Restore per-objfile data pointer. Remove use
6512 of removed macros.
6513 (_initialize_dwarf2_read): New function.
6514 * symfile.h (dwarf2_has_info): Update prototype.
6515 * coffread.c (coff_symfile_read): Update call to dwarf2_has_info.
6516 * elfread.c (elf_symfile_read): Likewise.
6517
6518 2004-04-01 Jim Blandy <jimb@redhat.com>
6519
6520 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): New, unified
6521 function for register numbers on all the rs6000-derived targets.
6522 (rs6000_gdbarch_init): Don't register a separate
6523 gdbarch_dwarf2_reg_to_regnum function for the E500. Use
6524 rs6000_dwarf2_stab_reg_to_regnum for both Dwarf 2 and stabs on all
6525 variants.
6526
6527 * i386-tdep.c: Add FIXME regarding STABS vs. Dwarf 2 register
6528 numbering.
6529
6530 2004-04-01 Paul N. Hilfinger <Hilfinger@gnat.com>
6531
6532 * valarith.c: Update copyright notice.
6533 (value_add): Handle range types.
6534 (value_sub): Ditto.
6535 (value_equal): Ditto.
6536 (value_less): Ditto.
6537 (value_neg): Ditto.
6538 (value_complement): Ditto.
6539 (value_binop): Simplify slightly by using is_integral_type and
6540 eliminiating unnecessary COERCE_ENUMs.
6541
6542 2004-03-31 Andrew Cagney <cagney@redhat.com>
6543
6544 * frame.h (frame_unwind_id): Declare.
6545 * frame.c (frame_unwind_id): New function.
6546 (get_prev_frame_1): New function.
6547 (frame_debug_got_null_frame): New function.
6548 (get_prev_frame): Use frame_debug_got_null_frame. Move unwind
6549 code proper to prev_frame, update description.
6550 * infrun.c (step_over_function): Use frame_unwind_id.
6551
6552 2004-04-31 J. Brobecker <brobecker@gnat.com>
6553
6554 * hppa-tdep.c (hppa32_push_dummy_call): Set the Stack Pointer.
6555 (hppa64_push_dummy_call): Likewise.
6556
6557 2004-03-30 Jim Blandy <jimb@redhat.com>
6558
6559 From Ulrich Weigand:
6560 * utils.c (query): Do not use a va_list variable multiple times.
6561
6562 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
6563
6564 * Makefile.in (linux_nat_h): Update dependencies.
6565 * configure.in: Check for <gnu/libc-version.h>.
6566 * configure: Regenerate.
6567 * config.in: Regenerate.
6568 * linux-nat.h: Include "target.h". Add waitstatus field to
6569 struct lwp_info.
6570 * lin-lwp.c (add_lwp): Initialize waitstatus.kind.
6571 (lin_lwp_attach_lwp): Don't attach to LWPs we have already attached
6572 to.
6573 (lin_lwp_handle_extended): New function. Handle clone events.
6574 (wait_lwp): Use lin_lwp_handle_extended. Update comment about
6575 thread exit events.
6576 (child_wait): Handle clone events.
6577 (lin_lwp_wait: Use lin_lwp_handle_extended and handle clone events.
6578 * linux-nat.c (linux_enable_event_reporting): Turn on
6579 PTRACE_O_TRACECLONE.
6580 (linux_handle_extended_wait): Handle clone events.
6581 * thread-db.c: Include <gnu/libc-version.h>.
6582 (struct private_thread_info): Add dying flag.
6583 (enable_thread_event_reporting): Enable TD_DEATH for glibc 2.2 and
6584 higher.
6585 (attach_thread): Update comments. Handle dying threads.
6586 (detach_thread): Set the dying flag.
6587 (check_event): Always call attach_thread.
6588
6589 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
6590
6591 * mips-tdep.c (mips_pdr_data): New.
6592 (non_heuristic_proc_desc): Use objfile_data and set_objfile_data.
6593 (_initialize_mips_tdep): Initialize mips_pdr_data.
6594
6595 2004-03-29 Corinna Vinschen <vinschen@redhat.com>
6596
6597 * minsyms.c (install_minimal_symbols): Move dropping leading
6598 char from linkage name from here...
6599 (prim_record_minimal_symbol_and_info): ...to here. Simplify
6600 test for "__gnu_compiled*" symbols.
6601
6602 2004-03-28 Jim Blandy <jimb@redhat.com>
6603
6604 * rs6000-tdep.c (skip_prologue): Recognize moves from argument
6605 registers to temp register r0 and byte stores as prologue
6606 instructions.
6607
6608 2004-03-28 Andrew Cagney <cagney@redhat.com>
6609
6610 * PROBLEMS (Stack backtraces): Rewrite. Remove reference to
6611 arm*-*-*.
6612
6613 2004-03-28 Stephane Carrez <stcarrez@nerim.fr>
6614
6615 * tui/tui-regs.c (tui_show_registers): Make sure the TUI is active
6616 and switch the layout to force a display of register window.
6617
6618 2004-02-26 J. Brobecker <brobecker@gnat.com>
6619
6620 * amd64-tdep.c (amd64_classify): make RANGE_TYPE objects be part
6621 of the INTEGER class.
6622
6623 2004-03-26 Jim Blandy <jimb@redhat.com>
6624
6625 * ppc-linux-tdep.c (ppc_linux_init_abi): Long doubles are eight
6626 bytes long on PPC GNU/Linux.
6627
6628 2004-03-26 David Carlton <carlton@kealia.com>
6629
6630 * PROBLEMS: Refer to gdb/1588 instead of gdb/826.
6631
6632 2004-03-25 Andrew Cagney <cagney@redhat.com>
6633
6634 * PROBLEMS: Add general section titles, remove references to
6635 specific releases.
6636
6637 2004-03-25 Daniel Jacobowitz <drow@mvista.com>
6638
6639 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE): Define to
6640 INT_REGISTER_SIZE.
6641 (arm_linux_push_arguments): Use TARGET_DOUBLE_BIT instead of
6642 FP_REGISTER_VIRTUAL_SIZE.
6643 * arm-tdep.c (arm_make_sigtramp_cache): Use register_size instead
6644 of DEPRECATED_REGISTER_RAW_SIZE.
6645 (arm_register_type): Add gdbarch argument.
6646 (arm_register_raw_size, arm_register_virtual_size): Delete.
6647 (arm_register_byte, arm_extract_return_value)
6648 (arm_store_return_value, arm_get_longjmp_target): Update references
6649 to INT_REGISTER_RAW_SIZE and FP_REGISTER_RAW_SIZE.
6650 (arm_gdbarch_init): Likewise. Don't set
6651 deprecated_register_raw_size, deprecated_register_virtual_size,
6652 deprecated_max_register_raw_size,
6653 deprecated_max_register_virtual_size, or
6654 deprecated_max_register_virtual_type. Do set register_type.
6655 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE)
6656 (ARM_MAX_REGISTER_VIRTUAL_SIZE, INT_REGISTER_VIRTUAL_SIZE)
6657 (FP_REGISTER_VIRTUAL_SIZE): Delete.
6658 (INT_REGISTER_RAW_SIZE): Rename to INT_REGISTER_SIZE.
6659 (FP_REGISTER_RAW_SIZE): Rename to FP_REGISTER_SIZE.
6660 * arm-linux-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Define to
6661 INT_REGISTER_SIZE.
6662 * remote-rdp.c (remote_rdp_fetch_register): Use MAX_REGISTER_SIZE.
6663 (remote_rdp_store_register): Likewise.
6664
6665 2004-03-24 Daniel Jacobowitz <drow@mvista.com>
6666
6667 * Makefile.in (mips-linux-tdep.o): Update dependencies.
6668 * mips-tdep.c (mips_gdbarch_init): Move frame predicates
6669 to after osabi initialization.
6670 * mips-linux-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
6671 (mips_linux_o32_sigframe_init, mips_linux_n32n64_sigframe_init): New
6672 functions.
6673 (mips_linux_o32_sigframe, mips_linux_o32_rt_sigframe)
6674 (mips_linux_n32_rt_sigframe, mips_linux_n64_rt_sigframe): New
6675 variables.
6676 (mips_linux_init_abi): Append signal trampoline unwinders.
6677
6678 2004-03-24 Andrew Cagney <cagney@redhat.com>
6679
6680 * tramp-frame.h (TRAMP_SENTINEL_INSN): Define, document.
6681 * tramp-frame.c: Include "gdb_assert.h".
6682 (tramp_frame_start): Use TRAMP_SENTINEL_INSN. Use ULONGEST and
6683 correct sizeof.
6684 (tramp_frame_append): Validate the tramp frame's instructions.
6685 * Makefile.in (tramp-frame.o): Update dependencies.
6686
6687 2004-03-23 Andrew Cagney <cagney@redhat.com>
6688
6689 * trad-frame.h (trad_frame_set_reg_addr): Declare.
6690
6691 2004-03-23 Andrew Cagney <cagney@redhat.com>
6692
6693 * MAINTAINERS (Past Maintainers): Add Mark Salter and Fernando
6694 Nasser as past testsuite/lib/ (and other) maintainers.
6695
6696 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
6697
6698 * infcmd.c (attach_command): Reread symbols if we already have
6699 an exec file.
6700
6701 2004-03-23 Andrew Cagney <cagney@redhat.com>
6702
6703 * rs6000-tdep.c (frame_get_saved_regs): Delete unused function.
6704
6705 2004-03-23 Andrew Cagney <cagney@redhat.com>
6706
6707 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): Deprecate.
6708 * gdbarch.h, gdbarch.c: Re-generate.
6709 * i386obsd-tdep.c (i386obsd_init_abi): Update.
6710 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
6711 * i386bsd-tdep.c (i386bsd_init_abi): Update.
6712 * config/vax/tm-vaxbsd.h (DEPRECATED_SIGTRAMP_END)
6713 (DEPRECATED_SIGTRAMP_START): Update.
6714 * config/m68k/tm-nbsd.h (DEPRECATED_SIGTRAMP_END)
6715 (DEPRECATED_SIGTRAMP_START): Update.
6716 * blockframe.c (find_pc_sect_partial_function): Update.
6717 * arch-utils.c (legacy_pc_in_sigtramp): Update.
6718
6719 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
6720
6721 * remote.c (remote_open_1): Reopen the exec file and reread symbols
6722 if necessary.
6723
6724 2004-03-23 Andrew Cagney <cagney@redhat.com>
6725
6726 * gdbarch.sh (PC_IN_SIGTRAMP): Change to a function with
6727 predicate, deprecate.
6728 * gdbarch.h, gdbarch.c: Re-generate.
6729 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
6730 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
6731 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Update.
6732 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
6733 * alphanbsd-tdep.c (alphanbsd_init_abi): Update.
6734 * amd64-linux-tdep.c (amd64_linux_init_abi): Update.
6735 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Update.
6736 * amd64nbsd-tdep.c (amd64nbsd_init_abi): Update.
6737 * amd64obsd-tdep.c (amd64obsd_init_abi): Update.
6738 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Update.
6739 * blockframe.c (find_pc_partial_function): Update.
6740 * breakpoint.c (bpstat_what): Update.
6741 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update.
6742 * frv-linux-tdep.c (frv_linux_init_abi): Update.
6743 * frv-tdep.c (frv_sigtramp_frame_sniffer): Update.
6744 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Update.
6745 * i386-interix-tdep.c (i386_interix_init_abi): Update.
6746 * i386-linux-tdep.c (i386_linux_init_abi): Update.
6747 * i386-nto-tdep.c (i386nto_init_abi): Update.
6748 * i386-sol2-tdep.c (i386_sol2_init_abi): Update.
6749 * i386-tdep.c (i386_sigtramp_frame_sniffer)
6750 (i386_svr4_init_abi, i386_go32_init_abi, i386_gdbarch_init): Update.
6751 * i386bsd-tdep.c (i386bsd_init_abi): Update.
6752 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
6753 * i386obsd-tdep.c (i386obsd_init_abi): Update.
6754 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Update.
6755 * infrun.c (pc_in_sigtramp): Update.
6756 * m68k-tdep.c (m68k_sigtramp_frame_sniffer): Update.
6757 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
6758 * mips-tdep.c (mips_gdbarch_init): Update.
6759 * mipsnbsd-tdep.c (mipsnbsd_init_abi): Update.
6760 * ppc-linux-tdep.c: Update comment.
6761 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Update.
6762 * shnbsd-tdep.c (shnbsd_init_abi): Update.
6763 * sparc-linux-tdep.c (sparc32_linux_init_abi): Update.
6764 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Update.
6765 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Update.
6766 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Update.
6767 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Update.
6768 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Update.
6769 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Update.
6770 * sparcobsd-tdep.c (sparc32obsd_init_abi): Update.
6771
6772 2004-03-23 Andrew Cagney <cagney@redhat.com>
6773
6774 * tramp-frame.h, tramp-frame.h: New files.
6775 * Makefile.in (SFILES, tramp_frame_h, COMMON_OBS, tramp-frame.o):
6776 Update rules to include "tramp-frame.h" and "tramp-frame.c".
6777
6778 * Makefile.in: Update all dependencies.
6779
6780 2004-03-23 Andrew Cagney <cagney@redhat.com>
6781
6782 * Makefile.in (trad_frame_h): Add $(frame_h).
6783 * trad-frame.h: Update copyright. Include "frame.h".
6784 (struct trad_frame_cache, trad_frame_cache_zalloc): Declare.
6785 (trad_frame_set_id, trad_frame_get_id): Declare.
6786 (trad_frame_set_reg_addr, trad_frame_get_register): Declare.
6787 * trad-frame.c: Update copyright.
6788 (struct trad_frame_cache): Define.
6789 (trad_frame_cache_zalloc): New function.
6790 (trad_frame_set_id, trad_frame_get_id): New functions.
6791 (trad_frame_set_reg_addr, trad_frame_get_register): New functions.
6792
6793 2004-03-22 Andrew Cagney <cagney@redhat.com>
6794
6795 * s390-tdep.c (struct s390_stub_unwind_cache): Rename
6796 s390_pltstub_unwind_cache.
6797 (s390_stub_frame_unwind_cache): Rename
6798 s390_pltstub_frame_unwind_cache.
6799 (s390_stub_frame_this_id): Rename s390_pltstub_frame_this_id.
6800 (s390_stub_frame_prev_register): Rename
6801 s390_pltstub_frame_prev_register.
6802 (s390_stub_frame_unwind): Rename s390_pltstub_frame_unwind.
6803 (s390_stub_frame_sniffer): Rename s390_stub_frame_sniffer.
6804
6805 From Ulrich Weigand:
6806 * s390-tdep.c (s390_pltstub_frame_sniffer): Handle invalid function
6807 pointer calls like PLT calls.
6808
6809 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
6810
6811 * mips-tdep.c (non_heuristic_proc_desc): Search using the specified
6812 PC rather than the partial function start address. Use the start
6813 address to sanity check the found PDR.
6814
6815 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
6816
6817 * lin-lwp.c (lin_lwp_wait): Pass the LWP ID to
6818 linux_handle_extended_wait.
6819
6820 2004-03-22 Andrew Cagney <cagney@redhat.com>
6821
6822 * rs6000-tdep.c (frame_initial_stack_address): Delete unused
6823 function.
6824
6825 * frame.h (generic_pop_current_frame): Delete declaration.
6826 (deprecate_pop_dummy_frame): Deprecate
6827 generic_pop_dummy_frame.
6828 * dummy-frame.c (deprecated_pop_dummy_frame): Update.
6829 (generic_pop_current_frame): Delete function.
6830 * mn10300-tdep.c (mn10300_pop_frame): Eliminate call to
6831 generic_pop_current_frame.
6832 * v850-tdep.c (v850_pop_frame): Update.
6833 * mcore-tdep.c (mcore_pop_frame): Update.
6834 * sh64-tdep.c (sh64_pop_frame): Update.
6835 * h8300-tdep.c (h8300_pop_frame): Update.
6836
6837 2004-03-22 Andrew Cagney <cagney@redhat.com>
6838
6839 * frame.h (deprecated_pc_in_call_dummy): Rename
6840 generic_pc_in_call_dummy.
6841 * dummy-frame.h (pc_in_dummy_frame): Delete declaration.
6842 * dummy-frame.c (deprecated_pc_in_call_dummy): Rename
6843 generic_pc_in_call_dummy.
6844 (pc_in_dummy_frame): Make static.
6845 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Update.
6846 * gdbarch.h, gdbarch.c: Re-generate.
6847 * dummy-frame.c (dummy_frame_sniffer): Simplify.
6848 * frame.c (frame_type_from_pc): Call deprecated_pc_in_call_dummy.
6849 (legacy_get_prev_frame): Ditto.
6850 * inferior.h: Delete reference to generic_pc_in_call_dummy in
6851 comment.
6852
6853 2004-03-21 Andrew Cagney <cagney@redhat.com>
6854
6855 * inferior.h (deprecated_pc_in_call_dummy_at_entry_point): Delete
6856 declaration and out-of-date comment.
6857 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
6858 Delete function.
6859 * mn10300-tdep.c (mn10300_gdbarch_init): Do not set
6860 deprecated_pc_in_call_dummy.
6861
6862 * infrun.c (handle_inferior_event): For non legacy frames, use the
6863 frame ID and frame type to identify a signal trampoline. Update
6864 comments.
6865
6866 2004-03-21 Nathan J. Williams <nathanw@wasabisystems.com>
6867
6868 * mipsnbsd-tdep.c: Update copyright. Include "mips-tdep.h".
6869 * Makefile.in (mipsnbsd-tdep.o): Update dependencies.
6870
6871 2004-03-21 Andrew Cagney <cagney@redhat.com>
6872
6873 * frame-unwind.h: Update copyright.
6874 (struct frame_data): Add opaque declaration.
6875 (frame_sniffer_ftype): Declare.
6876 (struct frame_unwind): Add "unwind_data" and "sniffer".
6877 (frame_unwind_register_unwinder): Declare.
6878 (frame_unwind_find_by_frame): Add parameter "this_cache".
6879 * frame.c (get_frame_id, create_new_frame, legacy_get_prev_frame)
6880 (legacy_get_prev_frame, legacy_get_prev_frame)
6881 (get_frame_type): Pass the prologue_cache to
6882 frame_unwind_find_by_frame.
6883 * frame-unwind.c (struct frame_unwind_table_entry): Add field
6884 "unwinder".
6885 (frame_unwind_register_unwinder): New function.
6886 (frame_unwind_find_by_frame): Handle an unwind sniffer.
6887
6888 2004-03-20 Paul Hilfinger <hilfingr@nile.gnat.com>
6889
6890 * bcache.c (print_percentage): Use floating point to avoid
6891 incorrect results when portion*100 overflows.
6892
6893 2004-03-19 Kevin Buettner <kevinb@redhat.com>
6894
6895 * ppc_tdep.h (ppc_linux_frame_saved_pc)
6896 (ppc_linux_init_extra_frame_info)
6897 (ppc_linux_frameless_function_invocation)
6898 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain)
6899 (rs6000_frame_saved_pc, rs6000_init_extra_frame_info)
6900 (rs6000_frameless_function_invocation, rs6000_frame_init_saved_regs)
6901 (rs6000_frame_chain): Delete declarations.
6902 * ppc-linux-tdep.c (ppc_linux_frame_saved_pc)
6903 (ppc_linux_init_extra_frame_info)
6904 (ppc_linux_frameless_function_invocation)
6905 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain): Delete.
6906 (ppc_linux_init_abi): Remove registration of above deleted functions.
6907 * rs6000-tdep.c (rs6000_init_extra_frame_info)
6908 (rs6000_frame_init_saved_regs, rs6000_init_frame_pc_first)
6909 (rs6000_frame_args_address, rs6000_saved_pc_after_call)
6910 (rs6000_pop_frame, rs6000_frameless_function_invocation)
6911 (rs6000_frame_saved_pc, rs6000_frame_chain): Delete.
6912 (rs6000_gdbarch_init): Remove registration of above deleted functions.
6913 Use rs6000_unwind_pc(), rs6000_frame_sniffer(),
6914 rs6000_unwind_dummy_id(), and rs6000_frame_base_sniffer() for
6915 frame management for all OSABIs.
6916
6917 2004-03-19 Andrew Cagney <cagney@redhat.com>
6918
6919 Committed by Kevin Buettner <kevinb@redhat.com>.
6920
6921 * ppc-linux-tdep.c: Include "trad-frame.h", and "frame-unwind.h".
6922 Update copyright.
6923 (struct ppc_linux_sigtramp_cache, ppc_linux_sigtramp_cache)
6924 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
6925 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
6926 (ppc_linux_init_abi): Add both 32- and 64-bit signal trampoline
6927 unwinders. #ifdef legacy frame code.
6928 * rs6000-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
6929 "frame-base.h".
6930 (rs6000_unwind_pc, rs6000_unwind_dummy_id)
6931 (struct rs6000_frame_cache, rs6000_frame_cache)
6932 (rs6000_frame_this_id, rs6000_frame_prev_register)
6933 (rs6000_frame_sniffer, rs6000_frame_unwind)
6934 (rs6000_frame_base_address, rs6000_frame_base_sniffer)
6935 (rs6000_frame_base): Implement a traditional frame unwinder.
6936 (rs6000_gdbarch_init): When unknown, NetBSD, or GNU/Linux use the
6937 frame unwinder.
6938
6939 2004-03-19 Kevin Buettner <kevinb@redhat.com>
6940
6941 * breakpoint.c (adjust_breakpoint_address): Don't adjust
6942 breakpoint address for watchpoints or the catch eventpoints.
6943 Add new paramter ``bptype''. Adjust all callers.
6944
6945 2004-03-19 Andrew Cagney <cagney@redhat.com>
6946
6947 * config/pa/tm-hppa.h (GDB_TARGET_IS_HPPA): Delete unused macro.
6948
6949 * PROBLEMS: Delete note that ARM does not use frame code, problem
6950 fixed.
6951
6952 2004-03-18 Andrew Cagney <cagney@redhat.com>
6953
6954 * stack.c (return_command): Delete code wrapped in #ifdef
6955 DEPRECATED_CALL_DUMMY_HAS_COMPLETED, macro no longer defined.
6956
6957 * rs6000-tdep.c (skip_prologue): Record only the first LR save.
6958
6959 2004-03-18 Andrew Cagney <cagney@redhat.com>
6960
6961 * config/mips/tm-nbsd.h: Replace IN_SIGTRAMP with
6962 DEPRECATED_IN_SIGTRAMP.
6963 * config/powerpc/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6964 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP) Ditto.
6965 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6966 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6967 * config/ia64/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6968 * config/ia64/tm-aix.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6969 * config/arm/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6970 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6971 * arch-utils.c (legacy_pc_in_sigtramp): Ditto.
6972 * arch-utils.h: Remove reference to IN_SIGTRAMP in comment.
6973
6974 2004-03-18 Andrew Cagney <cagney@redhat.com>
6975
6976 * frame-base.c: Update copyright. Include "gdb_obstack.h".
6977 (struct frame_base_table_entry): Define.
6978 (struct frame_base_table): Re-implement as a linked list.
6979 (frame_base_init): Re-implement.
6980 (frame_base_table): Delete function.
6981 (append_predicate): Delete function.
6982 (frame_base_append_sniffer): Update.
6983 (frame_base_set_default): Update.
6984 (frame_base_find_by_frame): Update.
6985 (_initialize_frame_base): Use gdbarch_data_register_pre_init.
6986 * Makefile.in (frame-base.o): Update dependencies.
6987
6988 2004-03-17 Andrew Cagney <cagney@redhat.com>
6989
6990 * frame.c (legacy_get_prev_frame): Pass correct frame to
6991 frame_unwind_find_by_frame.
6992
6993 2004-03-17 David Carlton <carlton@kealia.com>
6994
6995 * NEWS: Mention C++ nested types and namespaces
6996
6997 2004-03-16 Michael Chastain <mec.gnu@mindspring.com>
6998
6999 * PROBLEMS: Add section headers, "Regressions since gdb 6.0"
7000 and "Regressions since gdb 5.3.". Add known regressions since
7001 gdb 6.0.
7002
7003 2004-03-16 David Carlton <carlton@kealia.com>
7004
7005 * dwarf2read.c (process_structure_scope): Process children even
7006 when we're a declaration.
7007
7008 2004-03-16 Andrew Cagney <cagney@redhat.com>
7009
7010 * symtab.h (find_pc_sect_partial_function): Delete declaration.
7011 * blockframe.c (find_pc_partial_function)
7012 (find_pc_sect_partial_function): Merge into a single
7013 find_pc_partial_function.
7014
7015 2004-03-16 Mark Kettenis <kettenis@gnu.org>
7016
7017 * i386bsd-nat.c: s/regno/regnum/g.
7018 (fetch_inferior_registers): Use I386_ST0_REGNUM instead of
7019 FP0_REGNUM.
7020 (store_inferior_registers): Likewise.
7021
7022 2004-03-16 Mark Kettenis <kettenis@gnu.org>
7023
7024 * i386bsd-nat.c (fill_fpregset): Call i387_collect_fsave instead
7025 of i387_fill_fsave.
7026 (store_inferior_registers): Call i387_collect_fsave and
7027 i387_collect_fxsave instead of i387_fill_fsave and
7028 i387_fill_fxsave.
7029
7030 2004-03-15 Andrew Cagney <cagney@redhat.com>
7031
7032 * Makefile.in (frame-unwind.o): Update dependencies.
7033 * frame-unwind.c: Include "gdb_obstack.h".
7034 (frame_unwind_init): Replace "gdbarch" parameter with an "obstack"
7035 parameter.
7036 (append_predicate): Delete function.
7037 (struct frame_unwind_table_entry): New structure.
7038 (struct frame_unwind_table): Replace "sniffer" with "head" and
7039 "tail".
7040 (frame_unwind_append_sniffer): Update.
7041 (frame_unwind_find_by_frame): Update.
7042 (_initialize_frame_unwind): Registe frame_unwind_init using
7043 gdbarch_data_register_pre_init.
7044
7045 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7046
7047 * i386bsd-nat.c: Update copyright year.
7048 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Undefine and then
7049 define unconditionally.
7050
7051 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7052
7053 * i387-tdep.h (i387_collect_fsave): New prototype.
7054 * i387-tdep.c (i387_collect_fsave): New function containing most
7055 of the code from i387_fill_fsave.
7056 (i387_fill_fsave): Call i387_collect_fsave.
7057
7058 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7059
7060 * i386-linux-tdep.c: Update copyright year.
7061 (i386_linux_svr4_fetch_link_map_offsets): Remove function.
7062 (i386_linux_init_abi): Set solib_svr4_fetch_link_maop_offsets to
7063 svr4_ilp32_link_map_offsets instead of
7064 i386_linux_svr4_fetch_link_map_offsets.
7065
7066 2004-03-15 David Carlton <carlton@kealia.com>
7067
7068 Fix for PR c++/1553:
7069 * dwarf2read.c (read_structure_type): Determine type name by
7070 calling determine_class_name.
7071 (determine_class_name): New.
7072 (determine_prefix): Look at TYPE_TAG_NAME and call
7073 determine_class_name when appropriate.
7074 (determine_prefix_aux, class_name): Delete.
7075 (read_namespace): Set die->type.
7076
7077 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7078
7079 * breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
7080 unused macro definition. The definition in target.h (or perhaps
7081 elsewhere) takes precedence.
7082
7083 2004-03-15 Andrew Cagney <cagney@redhat.com>
7084
7085 * ppc-tdep.h: Update copyright.
7086 (ppc_linux_supply_gregset, ppc_linux_supply_fpregset): Change
7087 function signatures to match "regsets.h".
7088 * ppc-linux-tdep.c: Include "regset.h".
7089 (ELF_GREGSET_SIZE): Delete.
7090 (right_supply_register): New function.
7091 (ppc_linux_supply_fpregset, ppc_linux_supply_gregset): Rewrite
7092 using right_supply_register.
7093 (ppc32_linux_supply_gregset, ppc64_linux_supply_gregset): New
7094 functions.
7095 (ppc64_linux_gregset, ppc32_linux_gregset): Define.
7096 (ppc_linux_init_abi): Register ppc_linux_regset_from_core_section.
7097 (_initialize_ppc_linux_tdep): Do not register
7098 ppc_linux_regset_core_fns.
7099 (ppc_linux_regset_from_core_section): Replace
7100 fetch_core_registers.
7101 (ppc_linux_regset_core_fns): Delete.
7102 * ppc-linux-nat.c: (right_fill_reg): New function.
7103 (supply_gregset): Update call to ppc_linux_supply_gregset.
7104 (fill_gregset): Clear the register set, use right_fill_reg.
7105 (supply_fpregset): Update call to ppc_linux_supply_fpregset.
7106 (fill_fpregset): Use right_fill_reg, correctly compute FP offsets.
7107
7108 * rs6000-tdep.c (rs6000_register_virtual_type): Make registers
7109 unsigned.
7110
7111 2004-03-15 Andrew Cagney <cagney@redhat.com>
7112
7113 * gdbarch.sh (gdbarch_data_pre_init_fytpe)
7114 (gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
7115 (gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
7116 and register_gdbarch_data.
7117 (deprecated_set_gdbarch_data): Rename set_gdbarch_data.
7118 (struct gdbarch_data): Replace "init" by "pre_init" and
7119 "post_init".
7120 * gdbarch.h, gdbarch.c: Re-generate.
7121 * dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
7122 with"obstack", use OBSTACK_ZALLOC.
7123 (dwarf2_frame_ops): Delete.
7124 (dwarf2_frame_set_init_reg): Use gdbarch_data.
7125 (dwarf2_frame_init_reg): Use gdbarch_data.
7126 (_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
7127 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets)
7128 (_initialize_svr4_solib): Update.
7129 * user-regs.c (_initialize_user_regs): Update.
7130 * reggroups.c (_initialize_reggroup): Update.
7131 * regcache.c (_initialize_regcache): Update.
7132 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
7133 * libunwind-frame.c (_initialize_libunwind_frame): Update.
7134 * gnu-v3-abi.c (init_gnuv3_ops): Update.
7135 * frame-unwind.c (_initialize_frame_unwind): Update.
7136 * frame-base.c (_initialize_frame_base): Update.
7137 * user-regs.c (user_reg_add): Update.
7138 * reggroups.c (reggroup_add): Update.
7139 * mips-linux-tdep.c (set_mips_linux_register_addr): Update.
7140 * libunwind-frame.c (libunwind_frame_set_descr): Update.
7141 * frame-unwind.c (frame_unwind_append_sniffer): Update.
7142 * frame-base.c (frame_base_table): Update.
7143 * remote.c (_initialize_remote): Update.
7144 * gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
7145
7146 2004-03-15 Andrew Cagney <cagney@redhat.com>
7147
7148 * cris-tdep.c (bfd_lookup_symbol): Delete unused function.
7149
7150 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7151
7152 * Makefile.in (frv-linux-tdep.o): Add dependencies.
7153 * frv-linux-tdep.c: New file.
7154 * frv-tdep.c (struct gdbarch_tdep): Add new field
7155 ``sigcontext_reg_addr''.
7156 (frv_set_sigcontext_reg_addr, frv_sigtramp,frame_cache)
7157 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
7158 (frv_sigramp_frame_sniffer): New functions.
7159 (frv_sigtramp_frame_unwind): New static global.
7160 (frv_gdbarch_init): Hook in ABI-specific overrides. Hook up frame
7161 sniffers.
7162 * frv-tdep.h (frv_set_sigcontext_reg_addr): New function.
7163 * config/frv/frv.mt (TDEPFILES): Add frv-linux-tdep.o.
7164
7165 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7166
7167 * frv-tdep.c (frv_analyze_prologue): Terminate prologue scan,
7168 but not via a call to error(), when unable to read memory.
7169
7170 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7171
7172 * frv-tdep.c (frv_call_dummy_words): Delete.
7173 (frv_frame_unwind_cache): Delete unused variable, ``prev_sp''.
7174
7175 2004-03-15 Andrew Cagney <cagney@redhat.com>
7176
7177 * infrun.c (handle_step_into_function, step_over_function): Only
7178 update and use STEP_FRAME_ID when the system is using legacy
7179 frames. Update comments.
7180
7181 2004-03-14 Mark Kettenis <kettenis@gnu.org>
7182
7183 * amd64-linux-tdep.h: Remove file.
7184 * amd64-linux-tdep.c: Don't include "inferior.h" and
7185 "amd64-linux-tdep.h". Include "frame.h" and "solib-svr4.h".
7186 (USER_R15, USER_R14, USER_R13, USER_R12, USER_RBP, USER_RBX)
7187 (USER_R11, USER_R10, USER_R9, USER_R8, USER_RAX, USER_RCX)
7188 (USER_RDX, USER_RSI, USER_RDI, USER_RIP, USER_CS, USER_EFLAGS)
7189 (USER_RSP, USER_SS, USER_DS, USER_ES, USER_FS, USER_GS): Remove
7190 macros.
7191 (user_to_gdb_regmap): Remove variable.
7192 (amd64_linux_gregset_reg_offset): New variable.
7193 (amd64_core_fns): Remove variable.
7194 (fetch_core_registers): Remove function.
7195 (amd64_linux_supply_gregset, amd64_linux_fill_gregset): Remove
7196 functions.
7197 (_initialize_amd64_linux_tdep): Don't set add_core_fns.
7198 * amd64-linux-nat.c: Don't include "amd64-linux-tdep.h".
7199 * Makefile.in (amd64_linux_tdep_h): Remove.
7200 (amd64-linux-nat.o): Update dependencies.
7201 (amd64-linux-tdep.o): Update dependencies.
7202
7203 * amd64-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
7204 (fetch_regs, fetch_fpregs, store_regs, store_fpregs): Remove
7205 functions.
7206 (fetch_inferior_registers, store_inferior_registers): Rewrite.
7207
7208 * amd64-tdep.h (amd64_fill_fxsave): Remove prototype.
7209 * amd64-tdep.c (amd64_fill_fxsave): Remove function.
7210
7211 2004-03-14 Daniel Jacobowitz <drow@mvista.com>
7212
7213 * dwarf2read.c (read_structure_type): Rename from
7214 read_structure_scope. Don't create a symbol or call process_die.
7215 Return immediately if die->type is set. Call read_type_die before
7216 dwarf2_add_member_fn.
7217 (process_structure_scope): New function.
7218 (read_enumeration_type, process_enumeration_scope): New functions,
7219 broken out from read_enumeration. Don't create the enumeration
7220 type if it has already been created.
7221 (read_enumeration): Removed.
7222 (process_die): Call read_structure_type, process_structure_scope,
7223 read_enumeration_type, and process_enumeration_scope. Just call
7224 new_symbol for base and subrange types. Add a comment about other
7225 type dies.
7226 (read_type_die): Call read_enumeration_type.
7227 (add_partial_structure, new_symbol): Update comments.
7228
7229 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
7230
7231 * m68hc11-tdep.c (m68hc11_register_name): Get soft reg information.
7232
7233 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
7234
7235 * tui/tui-win.h (tui_get_cmd_list): Declare.
7236 * tui/tui-win.c (tui_command): New function.
7237 (tui_get_cmd_list): New function.
7238 (_initialize_tui_win): Moved initialization of tui command in
7239 tui_get_cmd_list.
7240
7241 * tui/tui-data.c (init_content_element): Setup new data members.
7242 (init_win_info): Likewise.
7243 (free_content_elements): Free it.
7244 * tui/tui-data.h (struct tui_data_element): Store the register
7245 content to print.
7246 (struct tui_data_info): Keep the current register group.
7247
7248 * tui/tui-layout.c (tui_set_layout): Update call to tui_show_registers.
7249
7250 * tui/tui-regs.h (tui_show_registers): Update prototype.
7251 (tui_toggle_float_regs, tui_calculate_regs_column_count): Remove.
7252 (tui_resize_all): No need to calculate anything for register window.
7253 * tui/tui-regs.c (tui_calculate_regs_column_count): Remove.
7254 (tui_set_register_element, tui_set_general_regs_content): Remove.
7255 (tui_set_special_regs_content): Remove.
7256 (tui_set_general_and_special_regs_content): Remove.
7257 (tui_set_float_regs_content): Remove.
7258 (tui_reg_value_has_changed, tui_get_register_raw_value): Remove.
7259 (tui_set_regs_content): Remove.
7260 (tui_toggle_float_regs, _tui_toggle_float_regs_command): Remove.
7261 (tui_v_show_registers_command_support): Remove.
7262 (tui_show_registers): Use a reggroup to specify the registers to show.
7263 (tui_show_register_group): New function.
7264 (tui_display_registers_from): Compute the layout of register window
7265 and refresh with new API; be sure to delete old register windows.
7266 (tui_check_register_values): Update to use tui_get_register and
7267 tui_display_data.
7268 (tui_display_register): Just refresh the register window part.
7269 (tui_register_format): Format registers and save in tui_data_element.
7270 (tui_get_register): New to combine tui_reg_value_has_changed and
7271 tui_get_register_raw_value; fix to use the new gdb API.
7272 (tui_show_float_command): Renamed tui_reg_float_command.
7273 (tui_show_general_command): Renamed tui_reg_general_command.
7274 (tui_show_special_command): Renamed tui_reg_system_command.
7275 (_initialize_tui_regs): Remove unused commands.
7276
7277 2004-03-13 Mark Kettenis <kettenis@gnu.org>
7278
7279 * NEWS (New native configurations): Mention OpenBSD/amd64.
7280
7281 * config/i386/nm-fbsd.h: Include "config/nm-bsd.h".
7282 (PTRACE_ARG3_TYPE, FETCH_INFERIOR_REGISTERS, ATTACH_DETACH):
7283 Remove defines.
7284 * config/i386/nm-fbsd64.h: Likewise.
7285 * config/i386/nm-obsd.h: Likewise.
7286 * config/sparc/nm-fbsd.h: Likewise. Update copyright year.
7287 * config/alpha/nm-fbsd.h: Likewise. Update copyright year.
7288
7289 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7290
7291 * frv-tdep.c (set_variant_scratch_registers): New function.
7292 * frv-tdep.h (scr0_regnum, scr1_regnum, scr2_regnum, scr3_regnum):
7293 New constants.
7294
7295 From Richard Sandiford <rsandifo@redhat.com>:
7296 * frv-tdep.c (frv_gdbarch_init): Add FR450 support.
7297
7298 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7299
7300 * frv-tdep.c, frv-tdep.h (first_gpr_regnum, sp_regnum, fp_regnum)
7301 (struct_return_regnum, last_gpr_regnum, first_fpr_regnum)
7302 (last_fpr_regnum, pc_regnum, first_spr_regnum, psr_regnum, ccr_regnum)
7303 (cccr_regnum, fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum)
7304 (tbr_regnum, brr_regnum, dbar0_regnum, dbar1_regnum, dbar2_regnum)
7305 (dbar3_regnum, lr_regnum, lcr_regnum, iacc0h_regnum, iacc0l_regnum)
7306 (last_spr_regnum, frv_num_regs, first_pseudo_regnum, iacc0_regnum)
7307 (last_pseudo_regnum, frv_num_pseudo_regs): Move constant (enum)
7308 definitions from frv-tdep.c to frv-tdep.h.
7309
7310 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7311
7312 Add shared library support for FR-V FDPIC ABI:
7313 * Makefile.in (solib-frv.o): Add dependencies.
7314 * frv-tdep.c (find_func_descr, frv_convert_from_func_ptr_addr):
7315 New functions.
7316 (frv_push_dummy_call): Add support for FDPIC ABI.
7317 (frv_gdbarch_init): Call set_gdbarch_convert_from_func_ptr_addr()
7318 for FDPIC ABI.
7319 * frv-tdep.h (frv_fdpic_find_global_pointer): Declare.
7320 (frv_fdpic_find_canonical_descriptor): Declare.
7321 * solib-frv.c: New file.
7322 * config/frv/frv.mt (TDEPFILES): Add solib.o and solib-frv.o.
7323 * config/frv/tm-frv.h (solib.h): Include.
7324
7325 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7326
7327 * Makefile.in (elf_frv_h, frv_tdep_h): Define.
7328 (frv-tdep.o): Update dependencies.
7329 * frv-tdep.h: New file.
7330 * frv-tdep.c (elf-bfd.h, elf/frv.h, osabi.h, frv-tdep.h): Include.
7331 (fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum): New
7332 constants.
7333 (struct gdbarch_tdep): Add new member ``frv_abi''.
7334 (frv_abi, frv_fdpic_loadmap_addresses, set_variant_abi_fdpic): New
7335 functions.
7336 (new_variant): Set ``frv_abi'' field.
7337 (gdb_arch_init): Detect FDPIC executables.
7338
7339 2004-03-12 Mark Kettenis <kettenis@gnu.org>
7340
7341 * solib-svr4.h: Change SOLIB_SVR4 wrapper into SOLIB_SVR4_H
7342 wrapper.
7343
7344 2004-03-11 Andrew Cagney <cagney@redhat.com>
7345
7346 * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper.
7347
7348 2004-03-11 Kevin Buettner <kevinb@redhat.com>
7349
7350 * solist.h (master_so_list): New function.
7351 * solib.c (master_so_list): Likewise.
7352 * solib-svr4.c (enable_break): Iterate over so_list entries
7353 obtained from master list instead of entries obtained directly
7354 via svr4_current_sos().
7355
7356 2004-03-10 Ben Elliston <bje@gnu.org>
7357
7358 * MAINTAINERS: Update my mail address.
7359
7360 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com>
7361
7362 * remote-m32r-sdi.c: Support hardware watchpoint.
7363
7364 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7365
7366 * user-regs.c: Update copyright years.
7367 (struct user_regs): Rename to gdb_user_regs.
7368 (append_user_reg, builtin_user_regs, user_regs_init)
7369 (user_reg_add, user_reg_map_name_to_regnum)
7370 (usernum_to_user_reg): Update.
7371
7372 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7373
7374 * dwarf2read.c (skip_leb128, peek_die_abbrev, skip_one_die)
7375 (skip_children): New functions.
7376 (locate_pdi_sibling): Call skip_children.
7377
7378 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7379
7380 * arm-tdep.c (arm_use_struct_convention): Look through typedefs.
7381 * gdbtypes.c (check_typedef): Update comments.
7382
7383 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7384
7385 * dwarf2read.c (struct comp_unit_head): Remove dwarf2_abbrevs array.
7386 (struct dwarf2_cu): Add abbrev_obstack and dwarf2_abbrevs
7387 pointer. Update comment about comp_unit_head.
7388 (struct abbrev_info): Shorten two int flags.
7389 (dwarf_alloc_abbrev): Take a CU argument.
7390 (dwarf2_build_psymtabs_hard): Call dwarf2_free_abbrev_table
7391 each time through the loop. Update cleanup argument.
7392 (psymtab_to_symtab_1): Update cleanup call.
7393 (dwarf2_read_abbrevs, dwarf2_alloc_abbrev): Allocate on the
7394 abbrev_obstack.
7395 (dwarf2_free_abbrev_table): Renamed from dwarf2_empty_abbrev_table.
7396 Just call obstack_free and clear the pointer.
7397
7398 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7399
7400 * infrun.c (handle_inferior_event): Remove short-circuit code for
7401 events in a different thread.
7402
7403 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7404
7405 * target.c (debug_to_xfer_memory): If targetdebug is 1, don't
7406 print the whole transfer.
7407 (initialize_targets): Update description of "set debug target".
7408
7409 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7410
7411 * arm-tdep.c (thumb_get_next_pc): Handle Thumb BLX.
7412
7413 2004-03-08 Nathan J. Williams <nathanw@wasabisystems.com>
7414
7415 * MAINTAINERS (write after approval): Add myself.
7416
7417 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
7418
7419 * sh-tdep.c (sh_print_registers_info): Use for loop.
7420 Don't skip multiple registers when a float register is encountered.
7421
7422 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
7423
7424 Fix PR tdep/1291.
7425 * sh-tdep.c (sh_analyze_prologue): Align PC relative addressing
7426 to official SH documentation.
7427
7428 2004-03-07 Andrew Cagney <cagney@redhat.com>
7429
7430 * ppc-linux-nat.c (ppc_ptrace_cannot_fetch_store_register): Delete
7431 unused function.
7432
7433 2004-03-07 Daniel Jacobowitz <drow@mvista.com>
7434
7435 * arm-tdep.c (thumb_get_next_pc): Handle BX.
7436 (arm_get_next_pc): Handle BX and BLX.
7437
7438 2004-03-07 Andrew Cagney <cagney@redhat.com>
7439
7440 * hppa-tdep.c: Replace DEPRECATED_FP_REGNUM with HPPA_FP_REGNUM,
7441 FP0_REGNUM with HPPA_FP0_REGNUM, and SP_REGNUM with
7442 HPPA_SP_REGNUM.
7443 (hppa_register_raw_size, hppa_register_byte, hppa_read_fp)
7444 (hppa_target_read_fp): Delete.
7445 (hppa_gdbarch_init): Do not set deprecated register_raw_size,
7446 register_virtual_size, max_register_raw_size,
7447 max_register_virtual_size, register_byte, register_size,
7448 target_read_fp, fp_regnum, and register_bytes. Set register_type
7449 instead of register_virtual_type.
7450 (hppa32_register_type, hppa64_register_type): Replace
7451 hppa32_register_virtual_type and hppa64_register_virtual_type.
7452 * config/pa/tm-hppa.h (HPPA_FP0_REGNUM, HPPA_SP_REGNUM)
7453 (HPPA_FP_REGNUM): Define.
7454
7455 * hppa-tdep.c (hppa_gdbarch_init): Add missing "break".
7456
7457 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO)
7458 (pa_do_registers_info): Delete.
7459 * hppa-tdep.c (pa_do_registers_info, pa_do_strcat_registers_info)
7460 (pa_print_registers, pa_print_fp_reg, pa_strcat_registers)
7461 (pa_strcat_fp_reg, pa_register_look_aside): Delete.
7462
7463 * infcall.c (legacy_push_dummy_code): Delete #ifdef
7464 GDB_TARGET_IS_HPPA code.
7465 * config/pa/tm-hppa.h (DEPRECATED_FIX_CALL_DUMMY)
7466 (hppa_fix_call_dummy, DEPRECATED_CALL_DUMMY_HAS_COMPLETED)
7467 (DEPRECATED_DUMMY_WRITE_SP, CALL_DUMMY): Delete.
7468 * config/pa/tm-hppa64.h (CALL_DUMMY): Delete.
7469 * hppa-tdep.c (hppa_frame_chain, hppa_frame_chain_valid)
7470 (hppa_push_dummy_frame, hppa_pop_frame, hppa_push_arguments)
7471 (hppa_fix_call_dummy, hppa64_stack_align, hppa_frame_saved_pc)
7472 (hppa_init_extra_frame_info, hppa_saved_pc_after_call)
7473 (hppa64_call_dummy_breakpoint_offset, hppa_frame_init_saved_regs)
7474 (hppa_frameless_function_invocation, hppa64_store_return_value)
7475 (hppa_store_struct_return, hppa64_extract_return_value)
7476 (hppa64_use_struct_convention, hppa_frame_find_saved_regs)
7477 (hppa32_call_dummy_length, hppa64_call_dummy_length)
7478 (find_dummy_frame_regs, FUNC_LDIL_OFFSET, FUNC_LDO_OFFSET)
7479 (find_proc_framesize, deposit_21, restore_pc_queue)
7480 (find_return_regnum, pc_in_interrupt_handler, deposit_14)
7481 (rp_saved, pc_in_linker_stub): Delete.
7482
7483 Unconditionally enable 64-bit frame and ABI code.
7484 * hppa-tdep.c (hppa_gdbarch_init): Do not set deprecated
7485 call_dummy_breakpoint_offset, call_dummy_length, stack_align,
7486 push_dummy_frame, fix_call_dummy, push_arguments,
7487 call_dummy_location, extract_return_value, use_struct_convention,
7488 store_return_value, store_struct_return, saved_pc_after_call,
7489 init_frame_pc, frame_init_saved_regs, init_extra_frame_info,
7490 frame_chain, frame_chain_valid, frameless_function_invocation,
7491 frame_saved_pc, and pop_frame.
7492
7493 * hppa-tdep.c: Replace PC_REGNUM with PCOQ_HEAD_REGNUM.
7494 (hppa64_return_value, hppa64_push_dummy_call): Rewrite.
7495 (hppa_gdbarch_init): Do not set PC_REGNUM.
7496
7497 2004-03-06 Mark Kettenis <kettenis@gnu.org>
7498
7499 * config/alpha/tm-fbsd.h: Remove file.
7500 * config/alpha/fbsd.mt: Tweak comment.
7501 (TM_FILE): Set to tm-alpha.h.
7502
7503 2004-03-05 Andrew Cagney <cagney@redhat.com>
7504
7505 * infrun.c (step_over_function): When non-legacy code, and no
7506 step_frame_id, use the unwinder to get the caller's frame ID.
7507
7508 2004-03-05 Mark Kettenis <kettenis@gnu.org>
7509
7510 * i386bsd-tdep.c (_initialize_i386bsd_tdep): Register
7511 i386bsd_core_osabi_sniffer for bfd_arch_i386 instead of
7512 bfd_arch_unknown. Adjust comment.
7513
7514 * i386-nat.c: Fix typo in comment. Re-introduce paranoiac.
7515 * i386obsd-tdep.c: Correct spelling in comment.
7516 * i386nbsd-tdep.c: Correct spelling in comment.
7517 * sparc-tdep.c: Correct spelling in comments.
7518
7519 2004-03-05 David Carlton <carlton@kealia.com>
7520
7521 * cp-namespace.c (cp_lookup_transparent_type_loop): Fix recursion
7522 bug.
7523
7524 2004-03-05 Mark Kettenis <kettenis@gnu.org>
7525
7526 * sparc-tdep.c: Fix typo in comment.
7527
7528 2004-03-04 J. Brobecker <brobecker@gnat.com>
7529
7530 * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
7531
7532 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
7533
7534 * dwarf2read.c: Add comment describing memory lifetimes.
7535 (struct dwarf2_pinfo): Update comment.
7536 (dwarf2_add_field, dwarf2_add_member_fn, read_structure_scope)
7537 (read_enumeration, new_symbol): Don't use obsavestring.
7538
7539 2004-03-04 Mark Kettenis <kettenis@gnu.org>
7540
7541 * amd64-linux-nat.c (fill_fpregset): Call amd64_colletc_fxsave
7542 instead of amd64_fill_fxsave.
7543 * amd64bsd-nat.c (store_inferior_registers): Likewise.
7544 * amd64fbsd-nat.c (fill_fpregset): Likewise.
7545
7546 * sparc-tdep.c (sparc_frame_cache): Don't bail out if %fp is zero.
7547 Reorganize code a bit.
7548
7549 2004-03-04 Orjan Friberg <orjanf@axis.com>
7550
7551 * cris-tdep.c (cris_scan_prologue): Save the frame pointer's offset
7552 when the frame pointer is pushed. Don't set the frame pointer's
7553 address on the stack unless it's actually located there.
7554 Set the SRP's address on the stack correctly when the PC is still in
7555 the prologue.
7556 (cris_return_value): New function.
7557 (cris_gdbarch_init): Clear deprecated store_return_value,
7558 extract_return_value.
7559
7560 2004-03-02 Jim Blandy <jimb@redhat.com>
7561
7562 * stabsread.c (reg_value_complaint): The maximum register number
7563 is one less than the number of registers.
7564
7565 2004-03-02 Andrew Cagney <cagney@redhat.com>
7566
7567 * i386-tdep.h (enum i386_regnum): Add I386_DS_REGNUM,
7568 I386_ES_REGNUM, I386_FS_REGNUM, and I386_GS_REGNUM. Remove
7569 trailing comma and redundant assignment of I386_ST0_REGNUM.
7570 * amd64-nat.c (amd64_collect_native_gregset): Zero-extend the
7571 32-bit segment registers.
7572
7573 2004-03-01 Andrew Cagney <cagney@redhat.com>
7574
7575 * rs6000-tdep.c (rs6000_init_frame_pc_first): Fix compiler error,
7576 use frame_relative_level and get_next_frame.
7577
7578 2004-02-29 Andrew Cagney <cagney@redhat.com>
7579
7580 * rs6000-tdep.c (rs6000_init_frame_pc_first): New function.
7581 (rs6000_gdbarch_init): Set deprecated_init_frame_pc_first.
7582 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST):
7583 Delete macro.
7584
7585 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
7586
7587 * inflow.c (terminal_inferior): Don't give up the terminal if we
7588 previously couldn't get the inferior's terminal state.
7589
7590 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
7591
7592 * regcache.c (read_pc_pid): Restore inferior_ptid after reading
7593 PC_REGNUM.
7594
7595 2004-02-28 Andrew Cagney <cagney@redhat.com>
7596
7597 * NEWS: Refer to GDB 6.1.
7598 * README: Refer to GDB 6.1.
7599 * PROBLEMS: Refer to GDB 6.1.
7600
7601 2004-02-28 Daniel Jacobowitz <drow@mvista.com>
7602
7603 * thread-db.c (disable_thread_signals): Remove unused function.
7604
7605 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7606
7607 * amd64-nat.c: Include "gdb_string.h".
7608 (amd64_collect_native_gregset): Zero-extend the 32-bit
7609 general-purpose registers and %eip.
7610
7611 * amd64-tdep.h: (amd64_collect_fxsave): New prototype.
7612 * amd64-tdep.c (amd64_collect_fxsave): New function.
7613 (amd64_fill_fxsave): Simply call amd64_collect_fxsave.
7614
7615 * i387-tdep.h: Update copyright year.
7616 (i387_collect_fxsave): New prototype.
7617 * i387-tdep.c: Update copyright year.
7618 (i387_collect_fxsave): New function containing most of the code
7619 from i387_fill_fxsave.
7620 (i387_fill_fxsave): Call i387_collect_fxsave.
7621
7622 2004-02-28 Andrew Cagney <cagney@redhat.com>
7623
7624 * amd64-linux-nat.c (ps_get_thread_area): When architecture is
7625 i386 use PTRACE_GET_THREAD_AREA. Suggested by Roland McGrath.
7626
7627 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7628
7629 * amd64-tdep.c (amd64_frame_cache): Fix comment.
7630
7631 2004-02-28 Andrew Cagney <cagney@redhat.com>
7632
7633 * utils.c: Use "", instead of <>, to include readline.
7634 tui/tui-win.c, tui/tui.c, tui/tui-hooks.c: Ditto.
7635 * tracepoint.c, top.c, symmisc.c, symfile.c: Ditto.
7636 * source.c, solib.c, exec.c, event-top.c: Ditto.
7637 * corelow.c, completer.c, cli/cli-setshow.c: Ditto.
7638 * cli/cli-dump.c, cli/cli-cmds.c: Ditto.
7639 * Makefile.in: Update all dependencies.
7640 (readline_tilde_h, readline_history_h): Define.
7641 (readline_headers): Delete.
7642
7643 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7644
7645 * config/djgpp/fnchange.lst: Rename "config/i386/nm-linux64.h" to
7646 "config/i386/nm-lx64.h" and "config/i386/tm-linux64.h" to
7647 "config/i386/tm-lx64.h".
7648
7649 * config/djgpp/fnchange.lst: Rename "amd64-linux-tdep.c" to
7650 "amd64-ltdep.c" and "amd64-linux-nat.c" to "amd64-lnat.c". Remove
7651 rules for "x86-64-linux-tdep.c" and "x86-64-linux-nat.c".
7652
7653 2004-02-28 Andrew Cagney <cagney@redhat.com>
7654
7655 * dwarf2-frame.h (struct gdbarch): Add opaque declaration.
7656
7657 * breakpoint.c (_initialize_breakpoint): Use
7658 "add_setshow_auto_boolean_cmd. Better word-wrap help messages.
7659 Add help to show command.
7660
7661 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7662
7663 * i386-nat.c: Reformat to be closer to coding standards.
7664 (i386_handle_nonaligned_watchpoint): Rename local variable `rv' to
7665 `retval'. Make variables `align' and `size' local to while-loop.
7666 (i386_stopped_data_address): Rename local variable `ret' to `addr'.
7667 (_initialize_i386_nat): New prototype.
7668
7669 * tui/tui.c: Include <readline/readline.h> instead of
7670 "readline/readline.h". Include it after <term.h> and
7671 "gdb_curses.h".
7672
7673 2004-02-27 Andrew Cagney <cagney@redhat.com>
7674
7675 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always use
7676 the new frame unwind code.
7677 (hppa_frame_cache): Use PCOQ_HEAD_REGNUM instead of PC_REGNUM.
7678 (hppa_frame_prev_register): Compute PCOQ_TAIL_REGNUM from
7679 PCOQ_HEAD_REGNUM.
7680
7681 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always
7682 "return_value" and "push_dummy_call".
7683 (hppa32_use_struct_convention): Delete unused function.
7684 (hppa32_store_return_value): Delete unused function.
7685 (hppa32_extract_return_value): Delete unused function.
7686 (hppa32_stack_align): Delete function.
7687
7688 2004-02-27 Eli Zaretskii <eliz@elta.co.il>
7689
7690 * coffread.c (enter_linenos): Don't let rawptr reference memory
7691 outside linetab[]'s limits.
7692
7693 2004-02-27 Andrew Cagney <cagney@redhat.com>
7694
7695 * hppa-tdep.c (hppa32_push_dummy_call): Fix code reserving
7696 inferior stack space - the stack needs to grow upwards.
7697 (hppa32_frame_align): New function.
7698 (hppa64_frame_align): Replace hppa_frame_align.
7699 (hppa_gdbarch_init): Update.
7700
7701 2004-02-26 Orjan Friberg <orjanf@axis.com>
7702
7703 * cris-tdep.c (frame_unwind.h, frame-base.h, trad-frame.h)
7704 (dwarf2-frame.h): Include.
7705 (enum cris_regnums): New enum CRIS_FP_REGNUM.
7706 Remove static variables related to ABI setting.
7707 (struct gdbarch_tdep): Remove cris_abi member.
7708 (struct frame_extra_info): Remove.
7709 (cris_unwind_cache, stack_item): New structs.
7710 (cris_frame_unwind, cris_frame_base): New variables.
7711 (push_stack_item, pop_stack_item)
7712 (cris_frame_unwind_cache, cris_frame_this_id)
7713 (cris_frame_prev_register, cris_unwind_dummy_id, cris_frame_align)
7714 (cris_push_dummy_code, cris_push_dummy_call, cris_frame_sniffer)
7715 (cris_frame_base_address, cris_scan_prologue, cris_unwind_pc)
7716 (cris_unwind_sp, cris_store_return_value, cris_extract_return_value)
7717 (cris_reg_struct_has_addr): New functions.
7718 (cris_examine, cris_frame_init_saved_regs, cris_frame_chain)
7719 (cris_frame_saved_pc, cris_saved_pc_after_call,
7720 (cris_store_struct_return, cris_frameless_function_invocation)
7721 (cris_pop_frame, cris_skip_prologue_main)
7722 (cris_abi_original_store_return_value)
7723 (cris_abi_v2_store_return_value)
7724 (cris_abi_original_extract_return_value)
7725 (cris_abi_v2_extract_return_value)
7726 (cris_abi_original_reg_struct_has_addr)
7727 (cris_abi_v2_reg_struct_has_addr)
7728 (cris_abi_original_push_arguments, cris_abi_v2_push_arguments)
7729 (cris_push_return_address, cris_abi_update): Remove.
7730 (_initialize_cris_tdep): Remove ABI command.
7731 (cris_dump_tdep): Ditto.
7732 (cris_gdbarch_init): Remove ABI command.
7733 Set store_return_value, extract_return_value, push_dummy_code,
7734 push_dummy_call, frame_align, unwind_pc, unwind_sp, unwind_dummy_id,
7735 frame_unwind_append_sniffer, frame_base_set_default.
7736 Clear deprecated init_frame_pc, push_arguments, store_return_value,
7737 extract_return_value, fp_regnum, pc_in_call_dummy, call_dummy_words,
7738 sizeof_call_dummy_words, get_saved_register, push_return_address,
7739 pop_frame, store_struct_return, frame_init_saved_regs,
7740 init_extra_frame_info, frameless_function_invocation, frame_chain,
7741 frame_saved_pc, saved_pc_after_call, save_dummy_frame_tos,
7742 dummy_write_sp.
7743
7744 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
7745
7746 * valprint.h (print_hex_chars, print_char_chars): New prototypes.
7747 * valprint.c (print_hex_chars): Change from static to external.
7748 (print_char_chars): New function.
7749 * printcmd.c (print_scalar_formatted): For integer and enum types
7750 that are longer than LONGEST, perform processing via appropriate
7751 print_*_chars routines.
7752
7753 2004-02-26 Andrew Cagney <cagney@redhat.com>
7754
7755 * Makefile.in: Update dependencies.
7756 Changes from Ulrich Weigand,
7757 * s390-tdep.c: Include "dwarf2-frame.h".
7758 (s390_dwarf2_frame_init_reg): New function.
7759 (s390_gdbarch_init): Install dwarf2_frame_sniffer and
7760 dwarf2_frame_base_sniffer. Call dwarf2_frame_set_init_reg.
7761
7762 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
7763
7764 * breakpoint.c (pending_break_support): New setting variable.
7765 (break_command_1): Account for pending_break_support setting
7766 when creating pending breakpoints.
7767 (set_breakpoint_cmd, show_breakpoint_cmd): New functions.
7768 (_initialize_breakpoint): Add "set breakpoint pending" and
7769 "show breakpoint pending" commands.
7770
7771 2004-02-26 Andrew Cagney <cagney@redhat.com>
7772
7773 Fix PR i18n/1570.
7774 * charset.c (backslashable, backslashed, represented): Remove 'e'
7775 from list of escaped characters, not part of ISO-C.
7776
7777 2004-02-25 J. Brobecker <brobecker@gnat.com>
7778
7779 From Peter Schauer <schauer@pdf.de>:
7780 * tui/tui.c: Move system header includes after local includes.
7781 Fixes a build failure on solaris systems.
7782
7783 2004-02-25 J. Brobecker <brobecker@gnat.com>
7784
7785 * configure.in: Refine the previous change.
7786 * configure: Regenerate.
7787
7788 2004-02-25 Mark Kettenis <kettenis@gnu.org>
7789
7790 * amd64-tdep.h: Renamed from x86-64-tdep.h.
7791 * amd64-tdep.c: Renamed from x86-64-tdep.c. Include
7792 "amd64-tdep.h" instead of "x86-64-tdep.h".
7793 * amd64-nat.c: Include "amd64-tdep.h" instead of "x86-64-tdep.h".
7794 * amd64-linux-tdep.h: Renamed from x86-64-linux.h.
7795 * amd64-linux-tdep.c: Renamed from x86-64-linux-tdep.c. Include
7796 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
7797 and "x86-64-tdep.c".
7798 * amd64-linux-nat.c: Renamed from x86-64-linux-nat.c. Include
7799 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
7800 and "x86-64-tdep.c".
7801 * amd64bsd-nat.c: Update copyright year.
7802 Include "amd64-tdep.h" instead of "x86-64-tdep.h".
7803 * amd64fbsd-tdep.c: Include "amd64-tdep.h" instead of
7804 "x86-64-tdep.h".
7805 * amd64fbsd-nat.c: Include "amd64-tdep.h" instead of
7806 "x86-64-tdep.h".
7807 * amd64nbsd-tdep.c: Include "amd64-tdep.h" instead of
7808 "x86-64-tdep.h".
7809 * amd64nbsd-nat.c: Include "amd64-tdep.h" instead of
7810 "x86-64-tdep.h".
7811 * amd64obsd-tdep.c: Include "amd64-tdep.h" instead of
7812 "x86-64-tdep.h".
7813 * amd64obsd-nat.c: Include "amd64-tdep.h" instead of
7814 "x86-64-tdep.h".
7815 * configure.host: (x86_64-*-linux*): Set gdb_target to linux64.
7816 * configure.tgt (x86_64-*-linux*): Set gdb_target to linux64.
7817 * Makefile.in (amd64_linux_tdep_h): Renamed from
7818 x86_64_linux_tdep_h.
7819 (amd64_tdep_h): Renamed from x86_64_tdep_h.
7820 (amd64bsd-nat.o, amd64fbsd-nat.o, amd64fbsd-tdep.o, amd64-nat.o)
7821 (amd64nbsd-nat.o, amd64nbsd-tdep.o, amd64obsd-nat.o)
7822 (amd64obsd-tdep.o): Update dependencies.
7823 (amd64-tdep.o, amd64-linux-nat.o, amd64-linux-tdep.o): New
7824 dependencies.
7825 (x86-64-linux-nat.o, x86-64-linux-tdep.o, x86-64-tdep.o): Remove
7826 dependencies.
7827 (ALLDEPFILES): Add amd64-tdep.c, amd64obsd-nat.c, amd64obsd-nat.c,
7828 amd64-linux-nat.c amd64-linux-tdep.c.
7829 * config/i386/tm-linux64.h: Renamed from tm-x86-64linux.h
7830 * config/i386/nm-linux64.h: Renamed from nm-x86-64linux.h.
7831 * config/i386/linux64.mt: Renamed from x86-64linux.mt.
7832 (TDEPFILES): Replace x86-64-tdep.o and x86-64-linux-tdep.o with
7833 amd64-tdep.o and amd64-linux-tdep.o.
7834 (TM_FILE): Set to tm-linux64.h.
7835 * config/i386/linux64.mh: Renamed from x86-64linux.mh.
7836 (NAT_FILE): Set to nm-linux64.h.
7837 (NATDEPFILES): Replace x86-64-linux-nat.o with amd64-linux-nat.o.
7838 * config/i386/fbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7839 amd64-tdep.o.
7840 * config/i386/nbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7841 amd64-tdep.o.
7842 * config/i386/obsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7843 amd64-tdep.o.
7844
7845 2004-02-25 Roland McGrath <roland@redhat.com>
7846
7847 * remote.c (remote_protocol_qPart_auxv): New variable.
7848 (init_all_packet_configs): Initialize it.
7849 (set_remote_protocol_qPart_auxv_packet_cmd): New function.
7850 (show_remote_protocol_qPart_auxv_packet_cmd): New function.
7851 (show_remote_cmd): Call it.
7852 (_initialize_remote): Initialize commands.
7853 (remote_xfer_partial): If enabled, use qPart:auxv:read:... query to
7854 service TARGET_OBJECT_AUXV requests.
7855
7856 2004-02-25 J. Brobecker <brobecker@gnat.com>
7857
7858 * configure.in: Make sure that the wborder function is available.
7859 Otherwise, search for it in the cur_colr library.
7860 * configure: Regenerate.
7861
7862 2004-02-25 Andrew Cagney <cagney@redhat.com>
7863
7864 * hppa-tdep.c (hppa32_push_dummy_call): Rewrite.
7865
7866 2004-02-25 Mark Kettenis <kettenis@gnu.org>
7867
7868 * config/i386/tm-x86-64linux.h: Tweak comments.
7869
7870 2004-02-25 Richard Sandiford <rsandifo@redhat.com>
7871
7872 * MAINTAINERS: Add self to write-after-approval list.
7873
7874 2004-02-25 Andrew Cagney <cagney@redhat.com>
7875
7876 PR cli/1566. Problem found, and fix suggested by David Allan.
7877 * cli/cli-script.c (execute_control_command): Unconditionally
7878 install a cleanup. Default "ret" to "invalid_control". Use
7879 "break" instead of "return" to escape from the switch.
7880
7881 2004-02-24 J. Brobecker <brobecker@gnat.com>
7882
7883 * tui/tui-disasm.c: %s/lines/asm_lines/g to avoid a collision
7884 with the lines macro defined in term.h on AiX.
7885 * tui/tui-regs.c: %s/label_width/tui_label_width/g, to avoid
7886 a collision with the label_width macro defined in term.h on AiX.
7887
7888 2004-02-23 David Mosberger <davidm@hpl.hp.com>
7889
7890 Committed by Kevin Buettner <kevinb@redhat.com>.
7891
7892 * ia64-tdep.h (ia64_write_pc, ia64_linux_write_pc): Declare.
7893 * ia64-tdep.c (ia64_write_pc): Make it a global function.
7894 (ia64_gdbarch_init): For Linux targets, use ia64_linux_write_pc()
7895 instead of ia64_write_pc().
7896 * ia64-linux-tdep.c (regcache.h): Include.
7897 (ia64_linux_write_pc): New function.
7898
7899 2004-02-23 Roland McGrath <roland@redhat.com>
7900
7901 * auxv.c (info_auxv_command): Fix typos in error messages.
7902
7903 2004-02-23 Mark Kettenis <kettenis@gnu.org>
7904
7905 * x86-64-tdep.h: Tweak comment.
7906 (enum amd64_regnum): New.
7907 (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM)
7908 (X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM)
7909 (X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM)
7910 (X86_64_XMM1_REGNUM): Removed.
7911 (AMD64_NUM_GREGS): Renamed from X86_64_NUM_GREGS.
7912 (amd64_init_abi, amd64_supply_fxsave, amd64_fill_fxsave): Adjust
7913 prototypes for renamed functions.
7914 * x86-64-tdep.c: Fix typo.
7915 (amd64_dwarf_regmap): Use constants from `enum amd64_regnum' for
7916 register numbers.
7917 (amd64_return_value, amd64_push_arguments, amd64_push_dummy_call):
7918 Use constants from `enum amd64_regnum' for register numbers.
7919 (AMD64_NUM_SAVED_REGS): Adjust for renamed macros.
7920 (amd64_analyze_prologue, amd64_frame_cache,
7921 amd64_sigtramp_frame_cache): Use constants from `enum
7922 amd64_regnum' for register numbers.
7923 (amd64_supply_fpregset): Adjust for renamed functions.
7924 (amd64_init_abi): Rename from x86_64_init_abi. Use constants from
7925 `enum amd64_regnum' for register numbers.
7926 (I387_ST0_REGNUM): Use constant from `enum amd64_regnum'.
7927 (amd64_supply_fxsave): Rename from x86_64_supply_fxsave.
7928 (amd64_fill_fxsave): Rename fro x86_64_fill_fxsave.
7929 * x86-64-linux-tdep.c (amd64_linux_supply_gregset)
7930 (amd64_linux_fill_gregset): Adjust for renamed macros.
7931 (fetch_core_registers): Adjust for renamed functions.
7932 (amd64_linux_init_abi): Adjust for renamed functions.
7933 * x86-64-linux-nat.c (supply_gregset, fill_gregset): Adjust for
7934 renamed functions.
7935 * amd64-nat.c: Adjust for renamed macros.
7936 * amd64bsd-nat.c (fetch_inferior_registers)
7937 (store_inferior_registers): Use constants from `enum amd64_regnum'
7938 for register numbers. Adjust for renamed variables.
7939 * amd64fbsd-nat.c (supply_gregset, fill_gregset): Adjust for
7940 renamed variables.
7941 (_initialize_amd64fbsd_nat): Use constants from `enum
7942 amd64_regnum' for register numbers.
7943 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use constants from
7944 `enum amd64_regnum' for register numbers.
7945 (amd64fbsd_init_abi): Adjust for renamed functions.
7946 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Use constants from
7947 `enum amd64_regnum' for register numbers.
7948 (amd64nbsd_init_abi): Adjust for renamed functions.
7949 (_initialize_amd64nbsd_ndep): Adjust for renamed macros.
7950 * amd64obsd-tdep.c (amd64obsd_sigcontext_addr): Use constants from
7951 `enum amd64_regnum' for register numbers.
7952 (amd64obsd_init_abi): Adjust for renamed functions.
7953 (_initialize_amd64obsd_ndep): Adjust for renamed macros.
7954
7955 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7956
7957 * breakpoint.c (print_one_breakpoint): Do not output spaces
7958 after printing <PENDING> for a pending breakpoint.
7959
7960 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7961
7962 * printcmd.c (print_scalar_formatted): Initialize val_long
7963 to remove compiler warning message.
7964
7965 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7966
7967 * defs.h (nquery, yquery): New prototypes.
7968 * breakpoint.c (break_command_1): Use new nquery interface.
7969 * utils.c (defaulted_query, nquery, yquery): New functions.
7970
7971 2004-02-23 Andrew Cagney <cagney@redhat.com>
7972
7973 * hppa-tdep.c (hppa_frame_align): New function.
7974 (hppa32_push_dummy_call): New function.
7975 (hppa64_push_dummy_call): New function.
7976 (hppa_gdbarch_init): Set frame_align and push_dummy_call; keep
7977 disabled.
7978
7979 * infcall.c (legacy_push_dummy_code): Don't call deprecated
7980 FIX_CALL_DUMMY when push_dummy_call is available.
7981 (call_function_by_hand, push_dummy_code): Ditto.
7982
7983 2004-02-22 Andrew Cagney <cagney@redhat.com>
7984
7985 * config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Delete macro.
7986 (DEPRECATED_PC_IN_CALL_DUMMY): Delete macro.
7987 (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete macro.
7988 * hppa-tdep.c (hppa_gdbarch_init): Clear deprecated
7989 use_generic_dummy_frames, set deprecated pc_in_call_dummy, set
7990 call_dummy_location to ON_STACK.
7991
7992 2004-02-22 Mark Kettenis <kettenis@gnu.org>
7993
7994 * x86-64-linux-tdep.c: Tweak comment.
7995 (amd64_linux_supply_gregset): Renamed from
7996 x86_64_linux_supply_gresget.
7997 (amd64_linux_fill_gregset): Renamed from
7998 x86_64_linux_fill_gregset.
7999 (fetch_core_registers): Adjust for renamed functions.
8000 (amd64_core_fns): Renamed from x86_64_core_fns.
8001 (amd64_linux_sigtramp_start): Renamed from
8002 x86_64_linux_sigtramp_start.
8003 (amd64_linux_pc_in_sigtramp): Renamed from
8004 x86_64_linux_pc_in_sigtramp. Adjust for renamed functions.
8005 (AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Renamed from
8006 X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET.
8007 (amd64_linux_sigcontext_addr): Renamed from
8008 x86_64_linux_sigcontext_addr.
8009 (amd64_linux_sc_reg_offset): Renamed from
8010 x86_64_linux_sc_reg_offset.
8011 (amd64_linux_init_abi): Renamed from x86_64_linux_init_abi.
8012 Adjust for renamed functions and variables.
8013 (_initialize_amd64_linux_tdep): Renamed from
8014 _initialize_x86_64_linux_tdep. Adjust for renamed functions and
8015 variables.
8016 * x86-64-linux-tdep.h: Update copyright year. Tweak comment.
8017 Adjust for renamed functions.
8018
8019 * x86-64-linux-nat.c (amd64_linux_gregset64_reg_offset): Rename
8020 from x86_64_linux_gregset64_reg_offset.
8021 (amd64_linux_gregset32_reg_offset): Rename from
8022 x86_64_linux_gregset64_reg_offset.
8023 (amd64_linux_dr_get): Renamed from x86_64_linux_dr_get.
8024 (amd64_linux_dr_set): Renamed from x86_64_linux_dr_set.
8025 (amd64_linux_dr_set_control): Renamed from
8026 x86_64_linux_dr_set_control. Adjust for renamed functions.
8027 (amd64_linux_dr_set_addr): Renamed from x86_64_linux_dr_set_addr.
8028 Adjust for renamed functions.
8029 (amd64_linux_dr_reset_addr): Renamed from
8030 x86_64_linux_dr_reset_addr. Adjust for renamed functions.
8031 (amd64_linux_dr_get_status): Renamed from
8032 x86_64_linux_dr_get_status. Adjust for renamed functions.
8033 (_initialize_amd64_linux_nat): Renamed from
8034 _initialize_x86_64_linux_nat. Adjust for renamed variables and
8035 functions.
8036 * config/i386/nm-x86-64linux.h: Update copyright year.
8037 Adjust for renamed functions.
8038
8039 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_start_addr): Renamed from
8040 amd64fbsd_sigtramp_start.
8041 (amd64fbsd_sigtramp_end_addr): Renamed from
8042 amd64fbsd_sigtramp_end.
8043 (amd64fbsd_init_abi): Adjust for renamed variables.
8044 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Adjust for renamed
8045 variables.
8046 * x86-64-tdep.h (amd64fbsd_sigtramp_start_addr): Renamed from
8047 amd64fbsd_sigtramp_start.
8048 (amd64fbsd_sigtramp_end_addr): Renamed from
8049 amd64fbsd_sigtramp_end.
8050
8051 2004-02-22 Andrew Cagney <cagney@redhat.com>
8052
8053 * hppa-tdep.c (hppa32_return_value): New function.
8054 (hppa64_return_value): New function.
8055 (hppa_gdbarch_init): Set return_value; keep disabled.
8056
8057 * hppa-tdep.c (hppa_gdbarch_init): Re-order separating
8058 struct-return and inferior function call methods.
8059
8060 * hppa-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
8061 "frame-base.h".
8062 (struct hppa_frame_cache): Define.
8063 (hppa_frame_cache, hppa_frame_this_id): New functions.
8064 (hppa_frame_prev_register): New function.
8065 (hppa_frame_unwind, hppa_frame_base): New variables.
8066 (hppa_frame_unwind_sniffer): New function.
8067 (hppa_frame_base_address, hppa_unwind_pc): New function.
8068 (hppa_gdbarch_init): Set unwind_dummy_id, unwind_pc, frame unwind
8069 sniffer, and frame base sniffer; keep disabled.
8070 (hppa_frame_base_sniffer, hppa_unwind_dummy_id): New functions.
8071 * Makefile.in: Update dependencies, fix s/nbsd/obsd/ typo.
8072
8073 * frame-unwind.c (frame_unwind_find_by_frame): Add legacy_frame_p
8074 to predicates for "seriously old code".
8075
8076 * hppa-tdep.c (hppa_gdbarch_init): Convert compile time #if0s into
8077 runtime if(0).
8078
8079 * hppa-tdep.c (hppa_breakpoint_from_pc): Make "breakpoint"
8080 unsigned.
8081 (hppa_frame_find_saved_regs): Fix "std" instruction pattern
8082
8083 * config/pa/tm-hppa.h: Update copyright.
8084 (DEPRECATED_INIT_FRAME_PC): Delete macro.
8085 (deprecated_init_frame_pc_default): Delete declaration.
8086 (hppa_frame_init_saved_regs): Delete declaration.
8087 (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
8088 * hppa-tdep.c: Include "arch-utils.h".
8089 (hppa_gdbarch_init): Set deprecated init_frame_pc
8090 and deprecated frame_init_saved_regs.
8091 (hppa_frame_init_saved_regs): Make static.
8092
8093 2004-02-22 Mark Kettenis <kettenis@gnu.org>
8094
8095 Remove old 386BSD support.
8096 * NEWS (REMOVED configurations and files): Add i[3456]86-*-bsd*.
8097 * configure.host: Remove i[34567]86-*-bsd*.
8098 * configure.tgt: Remove i[34567]86-*-bsd*.
8099 * i386b-nat.c: Removed.
8100 * Makefile.in (ALLDEPFILES): Remove i386b-nat.c.
8101 (i386b-nat.o): Remove dependencies.
8102
8103 * config/i386/i386bsd.mh: Removed.
8104 * config/i386/i386bsd.mt: Removed.
8105 * config/i386/nm-i386bsd.h: Removed.
8106 * config/i386/tm-i386bsd.h: Removed.
8107 * config/i386/xm-i386bsd.h: Removed.
8108
8109 * x86-64-tdep.h (amd64obsd_r_reg_offset): New extern declaration.
8110
8111 * amd64fbsd-tdep.c: Include "solib-svr4.h".
8112 (amd64fbsd_init_abi): Set link map offsets.
8113 * amd64nbsd-tdep.c: Include "slib-svr4.h".
8114 (amd64nbsd_init_abi): Set link map offsets.
8115 * amd64obsd-tdep.c: Include "solib-svr4.h".
8116 (amd64obsd_init_abi): Set link map offsets.
8117 * i386fbsd-tdep.c: Include "solib-svr4.h".
8118 (i386fbsd_init_abi): Set link map offsets.
8119 * i386nbsd-tdep.c: Include "solib-svr4.h".
8120 (i386nbsdelf_init_abi): Set link map offsets.
8121 * Makefile.in (amd64fbsd-tdep.o, amd64nbsd-tdep.o)
8122 (amd64obsd-tdep.o, i386fbsd-tdep.o): Update dependencies.
8123 * config/i386/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o,
8124 solib-legacy.o and core-aout.o. Reformat.
8125 * config/i386/fbsd64.mh (NATDEPFILES): Remove solib.o,
8126 solib-svr4.o, solib-legacy.o. Reformat.
8127 * config/i386/nbsdaout.mh (NATDEPFILES): Add solib.o. Reformat.
8128 * config/i386/nbsdelf.mh: Reformat.
8129 * config/i386/nbsd64.mh (NATDEPFILES): Remove solib.o,
8130 solib-svr4.o, solib-legacy.o and corelow.o.
8131 * config/i386/obsd.mh, config/i386/obsdaout.mh: Reformat.
8132 * config/i386/obsd64.mh (NATDEPFILES): Remove solib.o,
8133 solib-svr4.o, solib-legacy.o and corelow.o. Reformat.
8134 * config/i386/fbsd.mt (TDEPFILES): Add solib.o, solib-svr4.o.
8135 * config/i386/fbsd64.mt (TDEPFILES): Add solib.o, solib-svr4.o.
8136 (TM_FILE): Set to tm-fbsd.h.
8137 * config/i386/nbsd.mt (TDEPFILES): Reformat.
8138 * config/i386/nbsd64.mt (TDEPFILES): Add corelow.o, solib.o and
8139 solib-svr4.o.
8140 * config/i386/obsd.mt (TDEPFILES): Add corelow.o, solib.o and
8141 solib-svr4.o.
8142 (TM_FILE): Set to nm-nbsd.h.
8143 * config/i386/nm-fbsd.h: Update copyright year. Tweak comments.
8144 Simplify shared library support. Don't include "elf/common.h".
8145 (SVR4_SHARED_LIBS): Don't define.
8146 * config/i386/nm-fbsd64.h: Update copyright year. Don't include
8147 "solib.h".
8148 * config/i386/nm-nbsd.h, config/i386/nm-nbsdaout.h,
8149 config/i386/nm-obsd.h: Update copyright year. Tweak comments.
8150 * config/i386/tm-fbsd.h: Update copyright tear. Tweak comments.
8151 Don't include "i386/tm-i386.h". Include "solib.h".
8152 * config/i386/tm-nbsd.h: Update copyright year. Tweak comments.
8153 Don't include "i386/tm-i386.h".
8154 * config/i386/xm-i386.h: Update copyright year. Tweak comments.
8155 * config/i386/xm-nbsd.h: Update copyright year. Tweak comments.
8156 Include "i386/xm-i386.h".
8157 (HOST_LONG_DOUBLE_FORMAT): Remove.
8158
8159 Fix OpenBSD/i386 sigtramp recognition.
8160 * i386-tdep.h: Update copyright year.
8161 (i386bsd_pc_in_sigtramp, i386bsd_sigtramp_start)
8162 (i386bsd_sigtramp_end): New prototypes.
8163 (i386fbsd_sigtramp_start_addr): Renamed from
8164 i386fbsd_sigtramp_start.
8165 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
8166 (i386obsd_sigtramp_start_addr): Renamed from
8167 i386obsd_sigtramp_start.
8168 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
8169 * i386bsd-tdep.c: Update copyright year.
8170 (i386bsd_pc_in_sigtramp): Make public.
8171 * i386fbsd-nat.c: Update copyright year.
8172 (_initialize_i386fbsd_nat): Adjust for renamed variables.
8173 * i386fbsd-tdep.c: Update copyright year.
8174 (i386fbsd_sigtramp_start_addr): Renamed from
8175 i386fbsd_sigtramp_start.
8176 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
8177 (i386fbsdaout_init_abi): Adjust for renamed variables.
8178 * i386obsd-nat.c: Update copyright year.
8179 (_initialize_i386obsd_nat): Adjust for renamed variables.
8180 * i386obsd-tdep.c: Include "target.h".
8181 (i386obsd_page_size): New variable.
8182 (i386obsd_pc_in_sigtramp, i386obsd_sigtramp_start)
8183 (i386obsd_sigtramp_end): New functions.
8184 (i386obsd_sigtramp_start_addr): Renamed from
8185 i386obsd_sigtramp_start.
8186 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
8187 (i386obsd_init_abi): Adjust for renamed variables. Set
8188 pc_in_sigtramp, sigtramp_start and sigtramp_end.
8189 * Makefile.in (i386obsd-tdep.o): Update dependencies.
8190
8191 * amd64obsd-tdep.c (amd64obsd_pc_in_sigtramp): Adjust for signal
8192 trampoline change in OpenBSD kernel.
8193
8194 * amd64-nat.c: Update copyright year.
8195 (amd64_supply_native_gregset, amd64_collect_native_gregset): Use
8196 architecture from REGCACHE.
8197
8198 * x86-64-linux-nat.c (x86_64_linux_gregset32_reg_offset): Use
8199 symbolic constants from <sys/reg.h> instead of hard-coded numbers.
8200
8201 2004-02-21 Mark Kettenis <kettenis@gnu.org>
8202
8203 * configure.host: Add i[34567]86-*-openbsd[0-2].* and
8204 i[34567]86-*-openbsd3.[0-3].
8205 * config/i386/obsdaout.mh: New file.
8206
8207 * config/i386/obsd.mh (MH_FLAGS): Remove.
8208
8209 Fix PR build/1549.
8210 * i386obsd-tdep.c: Update copyright years. Include
8211 "solib-svr4.h".
8212 (i386obsd_init_abi): Don't set regset_from_core_section here.
8213 (i386obsd_aout_init_abi): New function. Set
8214 regset_from_core_section here.
8215 (i386obsd_elf_init_abi): New function.
8216 (_initialize_i386obsd_tdep): Register OS/ABI for OpenBSD ELF.
8217 * Makefile.in (i386obsd-tdep.o): Update dependecies.
8218 * config/i386/obsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
8219 (TM_FILE): Set to tm-nbsd.h.
8220
8221 * config/i386/obsd.mh (NATDEPFILES): Remove solib.o and
8222 solib-sunos.o.
8223
8224 * solib-svr4.h: Update copyright year.
8225 (svr4_ilp32_fetch_link_map_offsets)
8226 (svr4_lp64_fetch_link_map_offsets): New prototype.
8227 * solib-svr4.c: Update copyright year.
8228 (svr4_ilp32_fetch_link_map_offsets)
8229 (svr4_lp64_fetch_link_map_offsets): New function.
8230
8231 2004-02-20 Daniel Jacobowitz <drow@mvista.com>
8232
8233 * dwarf2read.c (add_partial_symbol): Fix typo in adding enumerators
8234 to the partial symbol table.
8235
8236 2004-02-20 J. brobecker <brobecker@gnat.com>
8237
8238 * PROBLEMS: Add description of problem documented under gdb/1560.
8239
8240 2004-02-20 Mark Kettenis <kettenis@gnu.org>
8241
8242 * amd64obsd-tdep.c: Include "regset.h" and "i387-tdep.h". Fix
8243 comments.
8244 (amd64obsd_supply_regset, amd64obsd_regset_from_core_section): New
8245 functions.
8246 (amd64obsd_init_abi): Reorder initializations. Use
8247 amd64obsd_r_reg_offset to initialize the general-purpose register
8248 set details. Set regset_from_core_section.
8249 (_initialize_amd64obsd_tdep): Rename from
8250 _initialize_amd64obsd_ndep. Add OS ABI handler for core dumps.
8251 * Makefile.in (amd64obsd-tdep.o): Update dependencies.
8252 * config/i386/obsd64.mt (TDEPFILES): Add i386-tdep.o.
8253
8254 * NEWS (New native configurations): Mention OpenBSD/alpha.
8255 * configure.tgt: Add alpha*-*-openbsd*.
8256 * configure.host: Add alpha*-*-openbsd*.
8257 * alphanbsd-tdep.c: Update copyright year.
8258 (_initialize_alphanbsd_tdep): Register OS ABI for OpenBSD ELF.
8259
8260 2004-02-20 Andrew Cagney <cagney@redhat.com>
8261
8262 Fix PR tdep/1372.
8263 * configure.tgt: Delete target "none-*-*".
8264 * configure.host: Delete host "none-*-*".
8265 * config/none/none.mh: Delete file.
8266 * config/none/none.mt: Delete file.
8267 * config/none/xm-none.h: Delete file.
8268 * config/none/tm-none.h: Delete file.
8269 * config/none/nm-none.h: Delete file.
8270
8271 2004-02-19 Fred Fish <fnf@redhat.com>
8272
8273 * sh-tdep.c (sh_analyze_prologue): Eliminate useless test of
8274 cache->uses_fp prior to setting it.
8275
8276 2004-02-19 Fred Fish <fnf@redhat.com>
8277
8278 Fix for PR breakpoint/1558.
8279 * sh-tdep.c (IS_JSR): New macro.
8280 (sh_analyze_prologue): Use IS_JSR to terminate prologue scan.
8281
8282 2004-02-19 Jim Blandy <jimb@redhat.com>
8283
8284 * findvar.c (value_from_register): Doc fix.
8285
8286 2004-02-19 Jeff Johnston <jjohnstn@redhat.com>
8287
8288 * printcmd.c (print_scalar_formatted): Do not check for sizeof
8289 type being greater than sizeof of host's LONGEST. Always use
8290 unpack_long() unless format 'f' chosen.
8291
8292 2004-02-19 Joel Brobecker <brobecker@gnat.com>
8293
8294 Committed by Elena Zannoni <ezannoni@redhat.com>
8295
8296 * symtab.c (find_pc_sect_psymtab): Return the psymtab that
8297 contains a symbol wich is the best, non-exact match for the given
8298 pc. Update comments.
8299
8300 2004-02-19 Elena Zannoni <ezannoni@redhat.com>
8301
8302 * event-top.c (async_request_quit): Remove uses of REQUEST_QUIT
8303 macro, which was part of the now removed Mach 3 port.
8304 * utils.c (request_quit): Ditto.
8305
8306 2004-02-18 Mark Kettenis <kettenis@gnu.org>
8307
8308 * config/djgpp/fnchange.lst: Rename "amd64obsd-tdep.c" and
8309 "amd64obsd-nat.c" to "a64ob-tdep.c" and "a64ob-nat.c".
8310
8311 2004-02-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
8312
8313 Committed by Mark Kettenis <kettenis@gnu.org>.
8314
8315 * config/s390/nm-linux.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT):
8316 Define.
8317
8318 2004-02-18 Andrew Cagney <cagney@redhat.com>
8319
8320 * configure.in: Add a TUI target to CONFIG_ALL, CONFIG_CLEAN,
8321 CONFIG_INSTALL and CONFIG_UNINSTALL.
8322 * configure: Re-generate.
8323 * interps.h (INTERP_TUI): Define.
8324 * Makefile.in: Update dependencies.
8325 (TUI): New macro.
8326 (tui-main.o): Specify dependencies.
8327 (install-tui, uninstall-tui, clean-tui, all-tui): New rules.
8328 * tui/tui-main.c: New file.
8329
8330 2004-02-18 Mark Kettenis <kettenis@gnu.org>
8331
8332 * amd64obsd-tdep.c, amd64obsd-nat.c: New files.
8333 * Makefile.in (amd64obsd-nat.o, amd64obsd-tdep.o): New
8334 dependencies.
8335 * configure.host: Add x86_64-*-openbsd*.
8336 * configure.tgt: Add x86_64-*-openbsd*.
8337 * config/i386/obsd64.mt, config/i386/obsd64.mh: New files.
8338
8339 * tui/tui.c: Don't include <malloc.h>.
8340
8341 * Makefile.in (ALLDEPFILES): Add amd64-nat.c, amd64bsd-nat.c,
8342 amdfbsd-nat.c, amd64-fbsd-tdep.c, amd64nbsd-nat.c and
8343 amd64nbsd-tdep.c.
8344
8345 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Make
8346 static. Remove extraneous whitespace.
8347 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Make
8348 static.
8349
8350 2004-02-17 Jim Blandy <jimb@redhat.com>
8351
8352 * findvar.c (value_from_register): Doc fix.
8353
8354 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
8355
8356 Committed by Jim Blandy <jimb@redhat.com>.
8357
8358 * eval.c (evaluate_subexp_standard, case OP_OBJC_MSGCALL): Use
8359 CORE_ADDR as type for selectors. Correct types for GNU run time
8360 message lookup function to use double indirection.
8361 * objc-lang.c (lookup_child_selector): Use CORE_ADDR as return type.
8362 * objc-lang.h (lookup_child_selector): Adapt prototype.
8363
8364 * s390-nat.c (SUBOFF): New macro.
8365 (supply_gregset, fill_gregset): Use it to handle debugging
8366 of 32-bit exectuables running under a 64-bit kernel.
8367 * s390-tdep.c: Include "solib-svr4.h".
8368 (s390_svr4_fetch_link_map_offset): New function.
8369 (s390x_svr_fetch_link_map_offset): Likewise.
8370 (s390_gdbarch_init): Call set_solib_svr4_fetch_link_map_offsets.
8371 * Makefile.in (s390-tdep.o): Update dependencies.
8372
8373 * s390-tdep.c: Include "trad-frame.h", "frame-base.h", and
8374 "frame-unwind.h".
8375 (s390_readinstruction): Reformat. Use read_memory_nobpt.
8376 (GDB_TARGET_IS_ESAME, S390_GPR_SIZE, S390_FPR_SIZE): Remove.
8377 (S390_SYSCALL_OPCODE, S390_SYSCALL_SIZE): Remove.
8378 (S390_SIGCONTEXT_SREGS_OFFSET, S390X_SIGCONTEXT_SREGS_OFFSET,
8379 S390_SIGREGS_FP0_OFFSET, S390X_SIGREGS_FP0_OFFSET,
8380 S390_UC_MCONTEXT_OFFSET, S390X_UC_MCONTEXT_OFFSET,
8381 S390_SIGNAL_FRAMESIZE,
8382 s390_NR_sigreturn, s390_NR_rt_sigreturn): Remove.
8383 (struct frame_extra_info): Remove.
8384 (s390_memset_extra_info): Remove.
8385 (op1_ag, op1_ay, op1_brasl, op1_brc, op1_brcl, op1_lay, op1_lg)
8386 (op1_lmy, op1_ly, op1_sg, op1_stmy, op1_sty, op1_sy, op_a)
8387 (op_agr, op_bas, op_bc, op_bcr, op_sgr, op_sr): New opcodes.
8388 (is_rse): Renamed to ...
8389 (is_rsy): ... this. Support long displacements.
8390 (is_rxe): Renamed to ...
8391 (is_rxy): ... this. Support long displacements.
8392 (compute_x_addr): Support long displacements.
8393 (struct s390_prologue_data): New data type.
8394 (s390_on_stack): Change API to use struct s390_prologue_data.
8395 (s390_store): Reimplement.
8396 (s390_load): New function.
8397 (s390_get_signal_frame_info): Remove.
8398 (s390_get_frame_info): Remove, replace by ...
8399 (s390_analyze_prolog): ... this new function.
8400 (s390_check_function_end): Remove.
8401 (s390_function_start): Remove.
8402 (s390_frameless_function_invokation): Remove.
8403 (s390_is_sigreturn): Remove.
8404 (s390_init_frame_pc_first): Remove.
8405 (s390_init_frame_extra_info): Remove.
8406 (s390_frame_init_saved_regs): Remove.
8407 (s390_frame_saved_pc_nofix): Remove.
8408 (s390_frame_saved_pc): Remove.
8409 (s390_frame_chain): Remove.
8410 (s390_fp_regnum, s390_read_fp): Remove.
8411 (s390_pop_frame_regular, s390_pop_frame): Remove.
8412 (s390_saved_pc_after_call): Remove.
8413 (s390_skip_prologue): Reimplement.
8414 (s390_in_function_epilogue_p): Support long displacements.
8415 (struct s390_unwind_cache): New data structure.
8416 (s390_frame_unwind_cache): New function.
8417 (s390_prologue_frame_unwind_cache): Likewise.
8418 (s390_backchain_frame_unwind_cache): Likewise.
8419 (s390_frame_this_id, s390_frame_prev_register): Likewise.
8420 (s390_frame_unwind): Define.
8421 (s390_frame_sniffer): New function.
8422 (struct s390_pltstub_unwind_cache): New data structure.
8423 (s390_pltstub_frame_unwind_cache): New function.
8424 (s390_pltstub_frame_this_id): Likewise.
8425 (s390_pltstub_frame_prev_register): Likewise.
8426 (s390_pltstub_frame_unwind): Define.
8427 (s390_pltstub_frame_sniffer): New function.
8428 (struct s390_sigtramp_unwind_cache): New data structure.
8429 (s390_sigtramp_frame_unwind_cache): New function.
8430 (s390_sigtramp_frame_this_id): Likewise.
8431 (s390_sigtramp_frame_prev_register): Likewise.
8432 (s390_sigtramp_frame_unwind): Define.
8433 (s390_sigtramp_frame_sniffer): New function.
8434 (s390_frame_base_address, s390_local_base_address): New functions.
8435 (s390_frame_base): Define.
8436 (s390_unwind_pc, s390_unwind_sp): New function.
8437 (s390_push_dummy_call): Use new frame base location.
8438 (s390_unwind_dummy_id): Likewise.
8439 (s390_gdbarch_init): Remove calls to:
8440 set_gdbarch_frameless_function_invocation,
8441 set_gdbarch_deprecated_init_frame_pc,
8442 set_gdbarch_deprecated_frame_chain,
8443 set_gdbarch_deprecated_frame_init_saved_regs,
8444 set_gdbarch_deprecated_pop_frame,
8445 set_gdbarch_deprecated_init_extra_frame_info,
8446 set_gdbarch_deprecated_init_frame_pc_first,
8447 set_gdbarch_deprecated_target_read_fp,
8448 set_gdbarch_deprecated_frame_saved_pc,
8449 set_gdbarch_deprecated_saved_pc_after_call,
8450 set_gdbarch_deprecated_fp_regnum.
8451 Add calls to:
8452 set_gdbarch_in_solib_call_trampoline,
8453 frame_unwind_append_sniffer,
8454 frame_base_set_default,
8455 set_gdbarch_unwind_pc,
8456 set_gdbarch_unwind_sp.
8457 * Makefile.in (s390-tdep.o): Update dependencies.
8458
8459 * s390-tdep.c (struct gdbarch_tdep): Add 'abi' member.
8460 (S390_STACK_FRAME_OVERHEAD): Remove.
8461 (S390_STACK_PARAMETER_ALIGNMENT): Remove.
8462 (S390_NUM_FP_PARAMETER_REGISTERS): Remove.
8463 (s390_promote_integer_argument): Remove.
8464 (s390_cannot_extract_struct_value_address): Remove.
8465 (s390_use_struct_convention, s390_store_struct_return): Remove.
8466 (s390_extract_return_value, s390_store_return_value): Remove.
8467 (s390_return_value_convention, s390_return_value): New functions.
8468 (is_float_singleton): Handle typedefs.
8469 (is_double_or_float, is_double_arg, is_simple_arg, pass_by_copy_ref):
8470 Remove, replace by ...
8471 (s390_function_arg_pass_by_reference, s390_function_arg_float,
8472 s390_function_arg_integer): ... these new functions.
8473 (s390_push_arguments, s390_push_return_address): Remove, replace by ...
8474 (s390_push_dummy_call, s390_unwind_dummy_id): ... these new functions.
8475 (s390_gdbarch_init): Remove s390_call_dummy_words and elf_flags.
8476 Fill in tdep->abi.
8477 Remove calls to:
8478 set_gdbarch_deprecated_store_struct_return,
8479 set_gdbarch_deprecated_extract_return_value,
8480 set_gdbarch_deprecated_store_return_value,
8481 set_gdbarch_use_struct_convention,
8482 set_gdbarch_extract_struct_value_address,
8483 set_gdbarch_deprecated_pc_in_call_dummy,
8484 set_gdbarch_deprecated_push_arguments,
8485 set_gdbarch_deprecated_save_dummy_frame_tos,
8486 set_gdbarch_deprecated_push_return_address,
8487 set_gdbarch_deprecated_sizeof_call_dummy_words,
8488 set_gdbarch_deprecated_call_dummy_words,
8489 set_gdbarch_deprecated_dummy_write_sp.
8490 Add calls to:
8491 set_gdbarch_push_dummy_call,
8492 set_gdbarch_unwind_dummy_id,
8493 set_gdbarch_return_value.
8494
8495 * config/s390/nm-linux.h: Update comments.
8496 (target_insert_watchpoint, target_remove_watchpoint): Redefine.
8497 (STOPPED_BY_WATCHPOINT): Redefine.
8498 (TARGET_CAN_USE_HARDWARE_WATCHPOINT): Redefine to 1.
8499 (s390_insert_watchpoint, s390_remove_watchpoint): Update prototype.
8500 (s390_stopped_by_watchpoint): Likewise.
8501 (watch_area_cnt): Remove.
8502 * s390-nat.c: Update comments.
8503 (watch_area): Remove typedef.
8504 Global replace watch_area by struct watch_area.
8505 (watch_area_cnt, watch_lo_addr, watch_hi_addr): Remove.
8506 (s390_stopped_by_watchpoint): Remove pid argument,
8507 use s390_inferior_tid. Add short-cut for the no watchpoint case.
8508 (s390_fix_watch_points): Remove pid argument,
8509 use s390_inferior_tid. Recompute area spanned by watchpoints.
8510 (s390_insert_watchpoint, s390_remove_watchpoint): Remove pid
8511 argument. Reimplement.
8512
8513 * config/s390/nm-linux.h: Update comments. Do not include "solib.h".
8514 (KERNEL_U_ADDR, REGISTER_U_ADDR, U_REGS_OFFSET): Remove.
8515 (FETCH_INFERIOR_REGISTERS): Define.
8516 * config/s390/s390.mh (NATDEPFILES): Remove core-aout.o and
8517 core-regset.o.
8518 * config/s390/s390x.mt: Remove.
8519 * config/s390/tm-s390.h: Remove.
8520 * config/s390/tm-linux.h: Do not include "s390/tm-s390.h".
8521 (TARGET_ELF64): Remove.
8522 (SKIP_TRAMPOLINE_CODE): Do not undefine.
8523 * configure.tgt [s390-*-*, s390x-*-*]: Merge into single
8524 s390*-*-* case; always set gdb_target to s390.
8525 * regformats/reg-s390.dat: Remove control registers.
8526 * regformats/reg-s390x.dat: Likewise.
8527 * s390-tdep.h: New file.
8528 * s390-nat.c: Do not include <asm/processor.h> or <value.h>.
8529 Include "inferior.h" and "s390-tdep.h".
8530 Remove private definition of offsetof.
8531 (s390_register_u_addr): Remove.
8532 (regmap_gregset, regmap_fpregset): Define.
8533 (supply_gregset, fill_gregset): Reimplement.
8534 (supply_fpregset, fill_fpregset): Likewise.
8535 (s390_inferior_tid): New function.
8536 (fetch_regs, store_regs, fetch_fpregs, store_fpregs): Likewise.
8537 (fetch_inferior_registers, store_inferior_registers): Likewise.
8538 * s390-tdep.c: Do not define S390_TDEP. Include "defs.h" instead
8539 of <defs.h>. Include "reggroups.h", "regset.h", and "s390-tdep.h".
8540 Global replace of S390_GP0_REGNUM by S390_R0_REGNUM.
8541 Global replace of S390_FP0_REGNUM by S390_F0_REGNUM.
8542 (struct gdbarch_tdep): Define.
8543 (struct s390_register_info): Define.
8544 (s390_register_info): New variable.
8545 (s390_register_name): Reimplement.
8546 (s390_register_type): New function.
8547 (s390_register_raw_size, s390x_register_raw_size): Remove.
8548 (s390_cannot_fetch_register): Remove.
8549 (s390_register_byte): Remove.
8550 (s390_register_virtual_type, s390x_register_virtual_type): Remove.
8551 (s390_dwarf_regmap): New variable.
8552 (s390_dwarf_reg_to_regnum): New function.
8553 (s390_stab_reg_to_regnum): Remove.
8554 (s390_pseudo_register_read, s390_pseudo_register_write): New functions.
8555 (s390x_pseudo_register_read, s390x_pseudo_register_write): Likewise.
8556 (s390_convert_register_p): Likewise.
8557 (s390_register_to_value, s390_value_to_register): Likewise.
8558 (s390_register_reggroup_p): Likewise.
8559 (s390_regmap_gregset, s390x_regmap_gregset, s390_regmap_fpregset,
8560 s390_gregset, s390x_gregset, s390_fpregset): New variables.
8561 (s390_supply_regset, s390_regset_from_core_section): New functions.
8562 (GDB_TARGET_IS_ESAME): Move here from tm-s390.h.
8563 (S390_FPR_SIZE): Likewise.
8564 (S390_GPR_SIZE): Likewise. Redefine in terms of GDB_TARGET_IS_ESAME.
8565 Global replace of DEPRECATED_REGISTER_SIZE by S390_GPR_SIZE.
8566 (S390_NUM_GPRS): Move here from tm-s390.h.
8567 (S390_NUM_FPRS): Likewise.
8568 (s390_in_function_epilogue_p): New function.
8569 (s390_is_sigreturn): Replace S390_PSW_ADDR_SIZE by S390_GPR_SIZE.
8570 Replace S390_PC_REGNUM by S390_PSWA_REGNUM.
8571 (s390_gdbarch_init): Allocate and set up gdbarch_tdep structure.
8572 Replace s390_stab_reg_to_regnum by s390_dwarf_reg_to_regnum.
8573 Replace S390_FP_REGNUM by S390_SP_REGNUM.
8574 Remove calls to:
8575 set_gdbarch_deprecated_max_register_raw_size,
8576 set_gdbarch_deprecated_max_register_virtual_size,
8577 set_gdbarch_deprecated_register_byte,
8578 set_gdbarch_cannot_fetch_register,
8579 set_gdbarch_cannot_store_register,
8580 set_gdbarch_deprecated_register_size,
8581 set_gdbarch_deprecated_register_raw_size,
8582 set_gdbarch_deprecated_register_virtual_size,
8583 set_gdbarch_deprecated_register_virtual_type,
8584 set_gdbarch_deprecated_register_bytes.
8585 Add calls to:
8586 set_gdbarch_num_pseudo_regs,
8587 set_gdbarch_register_type,
8588 set_gdbarch_convert_register_p,
8589 set_gdbarch_register_to_value,
8590 set_gdbarch_value_to_register,
8591 set_gdbarch_register_reggroup_p,
8592 set_gdbarch_regset_from_core_section,
8593 set_gdbarch_pseudo_register_read,
8594 set_gdbarch_pseudo_register_write,
8595 set_gdbarch_in_function_epilogue_p.
8596 * Makefile.in (s390-nat.o, s390-tdep.o): Update dependencies.
8597 (s390_tdep_h): New variable.
8598
8599 2004-02-17 Jim Blandy <jimb@redhat.com>
8600
8601 * findvar.c (value_from_register): If the type has no length, just
8602 return an acceptable value --- don't report an internal error.
8603
8604 * stabsread.c (read_type): If we find any type numbers that are
8605 forward references, complain if the references aren't resolved by
8606 the time we're finished reading.
8607 (cleanup_undefined_types): Make error message more appropriate for
8608 a complaint.
8609
8610 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
8611
8612 * Makefile.in (defs_h): Remove dependency on progress_h.
8613 * defs.h (QUIT): Remove use of PROGRESS macro. Remove include of
8614 progress.h.
8615 * main.c (captured_main): Delete use of START_PROGRESS and
8616 END_PROGRESS.
8617
8618 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
8619
8620 * objfiles.c (terminate_minimal_symbol_table): Add back
8621 initialization of MSYMBOL_TYPE.
8622
8623 2004-02-17 David Mosberger <davidm@hpl.hp.com>
8624
8625 Committed by Andrew Cagney.
8626 * Makefile.in (ia64_tdep_h): New macro.
8627 (ia64-linux-tdep.o): Mention $(ia64_tdep_h).
8628 (ia64-tdep.o): Likewise.
8629 * ia64-tdep.h: New file.
8630 * ia64-tdep.c: Update copyright notice. Include "ia64-tdep.h".
8631 (ia64_linux_sigcontext_register_address): Move decl to ia64-tdep.h.
8632 (ia64_aix_sigcontext_register_address): Likewise.
8633 (ia64_linux_getunwind_table): Delete declaration.
8634 * ia64-linux-tdep.c: Likewise.
8635
8636 2004-02-17 Corinna Vinschen <vinschen@redhat.com>
8637
8638 * sh-tdep.c (sh_dsp_register_sim_regno): Use DSP_Rx_BANK_REGNUM.
8639 * sh-tdep.h: Rename R0_BANK_REGNUM and R7_BANK_REGNUM to
8640 DSP_R0_BANK_REGNUM and DSP_R7_BANK_REGNUM.
8641
8642 2004-02-17 Andrew Cagney <cagney@redhat.com>
8643
8644 * symtab.c (skip_prologue_using_sal): New function.
8645 * symtab.h (skip_prologue_using_sal): Declare.
8646 * frv-tdep.c: Include "symtab.h".
8647 (skip_prologue_using_sal): Delete function.
8648 * mips-tdep.c (skip_prologue_using_sal): Delete function.
8649 * rs6000-tdep.c (refine_prologue_limit): Mention
8650 skip_prologue_using_sal.
8651 * ia64-tdep.c (refine_prologue_limit): Ditto.
8652 * Makefile.in: Update dependencies.
8653
8654 2004-02-16 Andrew Cagney <cagney@redhat.com>
8655
8656 * config/alpha/tm-nbsd.h: Update copyright, delete #undef
8657 START_INFERIOR_TRAPS_EXPECTED.
8658 * config/alpha/tm-fbsd.h: Update copyright, delete #undef
8659 START_INFERIOR_TRAPS_EXPECTED.
8660 * config/alpha/tm-alphalinux.h (START_INFERIOR_TRAPS_EXPECTED):
8661 Delete macro.
8662 * config/alpha/tm-alpha.h (START_INFERIOR_TRAPS_EXPECTED): Delete
8663 macro, moved to "nm-osf.h". Update copyright.
8664 * config/alpha/nm-osf.h (START_INFERIOR_TRAPS_EXPECTED): Define,
8665 update copyright.
8666
8667 * gdbarch.sh (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION): Predicate
8668 and function replacing FRAMELESS_FUNCTION_INVOCATION.
8669 * blockframe.c (legacy_frameless_look_for_prologue): Rename
8670 frameless_look_for_prologue.
8671 * frame.h (legacy_frameless_look_for_prologue): Rename
8672 frameless_look_for_prologue.
8673 * gdbarch.h, gdbarch.c: Re-generate.
8674 * sh64-tdep.c (sh64_gdbarch_init): Update.
8675 * sh-tdep.c (sh_gdbarch_init): Update.
8676 * s390-tdep.c (s390_gdbarch_init): Update.
8677 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
8678 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
8679 * m68k-tdep.c (m68k_gdbarch_init): Update.
8680 (delta68_frame_args_address): Update.
8681 * m32r-tdep.c (m32r_gdbarch_init): Update.
8682 * hppa-tdep.c (hppa_gdbarch_init): Update.
8683 * h8300-tdep.c (h8300_gdbarch_init): Update.
8684 * frv-tdep.c (frv_gdbarch_init): Update.
8685 (frv_frameless_function_invocation): Update.
8686 * cris-tdep.c (cris_gdbarch_init): Update.
8687 (cris_frameless_function_invocation): Update.
8688 * avr-tdep.c (avr_gdbarch_init): Update.
8689 * arm-tdep.c (arm_gdbarch_init): Update.
8690 * stack.c (frame_info): Update, call predicate.
8691 * rs6000-tdep.c (rs6000_frame_chain): Update, call predicate..
8692 * frame.c (legacy_get_prev_frame): Update, call predicate..
8693 * arch-utils.c (generic_frameless_function_invocation_not): Delete.
8694 * arch-utils.h (generic_frameless_function_invocation_not): Delete.
8695 * alpha-tdep.c (alpha_gdbarch_init): Do not set frameless function
8696 invocation.
8697 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
8698 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
8699 * vax-tdep.c (vax_gdbarch_init): Ditto.
8700
8701 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): Delete unused
8702 function.
8703
8704 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
8705
8706 * objfiles.c (terminate_minimal_symbol_table): Remove unnecessary
8707 initializations.
8708
8709 2004-02-16 Andrew Cagney <cagney@redhat.com>
8710
8711 * tui/tui-windata.c: Include "gdb_string.h".
8712 * tui/tui-source.c, tui/tui-winsource.c: Ditto.
8713 * tui/tui-layout.c, tui/tui-command.c: Ditto.
8714 * Makefile.in: Update dependencies.
8715
8716 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
8717
8718 * Makefile.in (infrun.o): Add $(gdb_assert_h).
8719 * infrun.c: Include "gdb_assert.h".
8720 (singlestep_ptid, saved_singlestep_ptid)
8721 (stepping_past_singlestep_breakpoint): New variables.
8722 (resume): Set singlestep_ptid. Check for singlestep thread
8723 hop.
8724 (init_wait_for_inferior): Clear stepping_past_singlestep_breakpoint.
8725 (handle_inferior_event): Handle singlestep thread hop.
8726
8727 2004-02-16 Andrew Cagney <cagney@redhat.com>
8728
8729 * dwarf2-frame.c (dwarf2_frame_ops): New function.
8730 (dwarf2_frame_set_init_reg): Use, instead of gdbarch_data.
8731 (dwarf2_frame_init_reg): Ditto.
8732
8733 * printcmd.c (display_command): Check that EXP isn't NULL. Fix
8734 suggested by Joshua Neuheisel
8735
8736 * configure.in: Always check for curses, including pdcurses.
8737 Warn, instead of error, when no curses are found. Enable TUI when
8738 curses is available.
8739 * configure: Re-generate.
8740
8741 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
8742
8743 * sh-tdep.c (sh_register_convert_to_virtual): Rename from
8744 sh_sh4_register_convert_to_virtual.
8745 (sh_register_convert_to_raw): Rename from
8746 sh_sh4_register_convert_to_raw.
8747 (sh_pseudo_register_read): Accomodate above name change.
8748 (sh_pseudo_register_write): Ditto.
8749
8750 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
8751
8752 * sh-tdep.c (sh_generic_register_name): Remove.
8753 (sh_gdbarch_init): Use sh_sh_register_name in default case.
8754
8755 2004-02-15 Andrew Cagney <cagney@redhat.com>
8756
8757 * configure.in (build_warnings): Add -Wunused-function.
8758 * configure: Re-generate.
8759
8760 * config/tm-lynx.h (START_INFERIOR_TRAPS_EXPECTED): Delete macro.
8761 * config/rs6000/tm-rs6000.h (START_INFERIOR_TRAPS_EXPECTED): Ditto.
8762
8763 * procfs.c (procfs_init_inferior): Assume that
8764 START_INFERIOR_TRAPS_EXPECTED is defined.
8765 * config/ns32k/nbsdaout.mt (TM_FILE): Set to tm-ns32k.h.
8766 * config/ns32k/tm-nbsd.h: Delete file,
8767 START_INFERIOR_TRAPS_EXPECTED already defined as 2.
8768
8769 * config/vax/tm-vaxbsd.h: Do not include "tm-vax.h".
8770 * config/vax/tm-vax.h: Delete file.
8771
8772 * config/mips/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8773 * config/i386/tm-i386bsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8774 * config/arm/tm-linux.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8775 * config/vax/tm-vaxbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8776 * vax-tdep.c (vax_sigtramp_saved_pc): Inline only reference.
8777 * config/ns32k/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8778 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): Inline only reference.
8779
8780 2004-02-15 Mark Kettenis <kettenis@gnu.org>
8781
8782 * dwarf2-frame.h (dwarf2_frame_set_init_reg): New prototype.
8783 * dwarf2-frame.c (dwarf2_frame_data): New variable.
8784 (struct dwarf2_frame_ops): New.
8785 (dwarf2_frame_default_init_reg): New function, based on
8786 dwarf2_frame_init_reg.
8787 (dwarf2_frame_init, dwarf2_frame_set_init_reg): New function.
8788 (dwarf2_frame_init_reg): Call architecture-specific function.
8789 (dwarf2_frame_objfile_data): Renamed from dwarf2_frame_data.
8790 (dwarf2_frame_find_fde, add_fde): Use dwarf2_frame_objfile_data
8791 instead of dwarf2_frame_data.
8792 (_initialize_dwarf2_frame): Initailize new dwarf2_frame_data.
8793 Initialize dwarf2_frame_objfile instead of old dwarf2_frame_data.
8794
8795 2004-02-15 Andrew Cagney <cagney@redhat.com>
8796
8797 * gdbarch.sh (deprecated_register_gdbarch_swap): Rename
8798 register_gdbarch_swap.
8799 (DEPRECATED_REGISTER_GDBARCH_SWAP): Rename REGISTER_GDBARCH_SWAP.
8800 * f-lang.c (_initialize_f_language): Update, use
8801 DEPRECATED_REGISTER_GDBARCH_SWAP.
8802 * remote.c (_initialize_remote): Ditto.
8803 * regcache.c (_initialize_regcache): Ditto.
8804 * parse.c (_initialize_parse): Ditto.
8805 * infrun.c (_initialize_infrun): Ditto.
8806 * mi/mi-main.c (_initialize_mi_main): Ditto.
8807 * gdbtypes.c (_initialize_gdbtypes): Ditto.
8808
8809 * solib.c (solib_map_sections): Use bfd_set_cacheable instead of
8810 poking .cacheable directly.
8811 * symfile.c (symfile_bfd_open): Ditto.
8812
8813 * Makefile.in: Update all dependencies.
8814
8815 * Makefile.in: (.SUFFIXES): Add ".l" and ".y".
8816 (.y.c, .l.c): Specify implicit rule. Instead of .tab.c, generate
8817 .c. Update references. Delete unnecessary .tab.c and -lex.c rules.
8818 (ada-exp.o, c-exp.o, f-exp.o): Replace ada-exp.tab.o et.al. rule.
8819 (jv-exp.o, m2-exp.o, objc-exp.o, p-exp.o): Similar.
8820
8821 2004-02-14 Andrew Cagney <cagney@redhat.com>
8822
8823 * arch-utils.c (legacy_convert_register_p): Check
8824 DEPRECATED_REGISTER_CONVERTIBLE_P.
8825 * findvar.c (value_of_register): Ditto.
8826
8827 * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Add predicate.
8828 * gdbarch.h, gdbarch.c: Re-generate.
8829 * arch-utils.c (deprecated_register_convertible_not): Delete.
8830 * arch-utils.h (deprecated_register_convertible_not): Delete.
8831 * mi/mi-main.c (get_register): Update. Update copyright.
8832 * infcmd.c (default_print_registers_info): Update.
8833
8834 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
8835 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Delete.
8836 (DEPRECATED_CALL_DUMMY_ADDRESS): Delete.
8837 * gdbarch.h, gdbarch.c: Re-generate.
8838 * frame.c (deprecated_get_next_frame_hack): Delete function.
8839 * frame.h (deprecated_get_next_frame_hack): Delete declaration.
8840 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
8841 Update.
8842 * infcall.c (call_function_by_hand): Update.
8843
8844 2004-02-14 Elena Zannoni <ezannoni@redhat.com>
8845
8846 * symfile.c (init_entry_point_info, entry_point_address): Move
8847 from here...
8848 * objfiles.c (init_entry_point_info, entry_point_address):..to
8849 here.
8850 * symfile.h (init_entry_point_info, entry_point_address): Remove
8851 prototypes.
8852 * objfiles.h (init_entry_point_info, entry_point_address):Add
8853 prototypes.
8854 * cris-tdep.c: Remove include of symfile.h. Add include of
8855 objfiles.h.
8856 * infcall.c: Ditto.
8857 * mcore-tdep.c: Ditto.
8858 * mn10300-tdep.c: Ditto.
8859 * sh64-tdep.c: Ditto.
8860 * v850-tdep.c: Ditto.
8861 * arm-tdep.c: Remove include of symfile.h.
8862 * blockframe.c: Ditto.
8863 * coffread.c: Ditto.
8864 * dbxread.c: Ditto.
8865 * dwarf2read.c: Ditto.
8866 * dwarfread.c: Ditto.
8867 * frv-tdep.c: Ditto.
8868 * ia64-tdep.c: Ditto.
8869 * mdebugread.c: Ditto.
8870 * mipsread.c: Ditto.
8871 * rs6000-tdep.c: Ditto.
8872 * s390-tdep.c: Ditto.
8873 * sh-tdep.c: Ditto.
8874 * xstormy16-tdep.c: Ditto.
8875 * gdbarch.sh: Remove include of symfile.h.
8876 * gdbarch.c: Regenerate.
8877 * solib-irix.c (enable_break): Use entry_point_address().
8878 Add comment about include file.
8879 * xcoffread.c: Add comment about include file.
8880 * Makefile.in (arm-tdep.o, blockframe.o, coffread.o, cris-tdep.o)
8881 (dbxread.o, dwarf2read.o, dwarfread.o, frv-tdep.o, gdbarch.o)
8882 (ia64-tdep.o, infcall.o, mcore-tdep.o, mdebugread.o, mipsread.o)
8883 (mn10300-tdep.o, rs6000-nat.o, s390-tdep.o, sh64-tdep.o)
8884 (sh-tdep.o, v850-tdep.o, xstormy16-tdep.o): Update dependencies.
8885
8886 2004-02-13 Andrew Cagney <cagney@redhat.com>
8887
8888 * corelow.c (core_xfer_partial): Use "struct bfd_section".
8889 * config/sparc/nm-nbsd.h (struct target_ops): Declare, update
8890 copyright.
8891 * mips-linux-tdep.c: Use "GNU/Linux", update copyright.
8892
8893 2004-02-12 Fred Fish <fnf@redhat.com>
8894
8895 * m68hc11-tdep.c (m68hc11_gdbarch_init): Remove duplicate call to
8896 set_gdbarch_store_return_value.
8897
8898 2004-02-12 Andrew Cagney <cagney@redhat.com>
8899
8900 * remote-rdi.c (arm_rdi_start_remote): Delete unused function.
8901 (arm_rdi_interrupt, arm_rdi_interrupt_twice): Ditto.
8902 (interrupt_query): Ditto.
8903 (ofunc): Delete unused variable.
8904 * cris-tdep.c (cris_abi): Delete unused function.
8905 (reg_pop_op, move_reg_to_mem_index_inc_op): Ditto.
8906 (cris_get_wide_opcode, cris_get_short_size): Ditto.
8907 (cris_get_asr_quick_shift_steps): Ditto.
8908 (cris_skip_prologue_frameless_p): Ditto.
8909 * arm-tdep.c (arm_push_return_address): Delete unused function.
8910 (arm_push_dummy_frame, arm_fix_call_dummy): Ditto.
8911 * rs6000-tdep.c (rs6000_pc_in_call_dummy): Delete unused function.
8912 * s390-tdep.c (s390_function_start): Delete unused function.
8913
8914 2004-02-12 Andrew Cagney <cagney@redhat.com>
8915
8916 * gdbarch.sh (PROLOGUE_FRAMELESS_P): Delete.
8917 gdbarch.h, gdbarch.c: Re-generate.
8918 * cris-tdep.c (cris_gdbarch_init): Do not set prologue_frameless_p
8919 to generic_prologue_frameless_p.
8920 * arch-utils.h (generic_prologue_frameless_p): Delete declaration.
8921 * arch-utils.c (generic_prologue_frameless_p): Delete function.
8922
8923 2004-02-11 Daniel Jacobowitz <drow@mvista.com>
8924
8925 * mips-linux-tdep.c: Include "frame.h".
8926 (mips_linux_in_dynsym_stub, mips_linux_in_dynsym_resolve_code)
8927 (mips_linux_skip_resolver): New functions.
8928 (mips_linux_init_abi): Call set_gdbarch_skip_solib_resolver
8929 and set_gdbarch_in_solib_call_trampoline.
8930 * mips-tdep.c (mips_gdbarch_init): Move gdbarch_init_osabi call
8931 to after set_gdbarch_in_solib_return_trampoline. Only set the
8932 solib hooks to mips16 functions if the OS ABI is unknown.
8933 * config/mips/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Undefine after
8934 including "config/tm-linux.h".
8935 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Define.
8936 * Makefile.in (mips-linux-tdep.o): Update.
8937
8938 2004-02-11 David Carlton <carlton@kealia.com>
8939
8940 * linespec.c (decode_compound): Only look for a class symbol when
8941 considering all but the rightmost component.
8942
8943 2004-02-11 Andrew Cagney <cagney@redhat.com>
8944
8945 * hppa-tdep.c (hppa_gdbarch_init): Re-order so that the frame and
8946 abi code are are separatly grouped.
8947
8948 2004-02-11 Andrew Cagney <cagney@redhat.com>
8949
8950 * gdbarch.sh (FRAME_ARGS_SKIP): Default to 0.
8951 * gdbarch.h, gdbarch.c: Re-generate.
8952 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
8953 * v850-tdep.c (v850_gdbarch_init): Update.
8954 * sh64-tdep.c (sh64_gdbarch_init): Update.
8955 * sh-tdep.c (sh_gdbarch_init): Update.
8956 * s390-tdep.c (s390_gdbarch_init): Update.
8957 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
8958 * mips-tdep.c (mips_gdbarch_init): Update.
8959 * mcore-tdep.c (mcore_gdbarch_init): Update.
8960 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
8961 * m32r-tdep.c (m32r_gdbarch_init): Update.
8962 * ia64-tdep.c (ia64_gdbarch_init): Update.
8963 * hppa-tdep.c (hppa_gdbarch_init): Update.
8964 * h8300-tdep.c (h8300_gdbarch_init): Update.
8965 * frv-tdep.c (frv_gdbarch_init): Update.
8966 * d10v-tdep.c (d10v_gdbarch_init): Update.
8967 * cris-tdep.c (cris_gdbarch_init): Update.
8968 * avr-tdep.c (avr_gdbarch_init): Update.
8969 * arm-tdep.c (arm_gdbarch_init): Update.
8970 * alpha-tdep.c (alpha_gdbarch_init): Update.
8971
8972 2004-02-11 Corinna Vinschen <vinschen@redhat.com>
8973
8974 * sh-tdep.c (sh_sh3_dsp_register_name): Fix formatting. Add missing
8975 comma.
8976 (sh_sh4al_dsp_register_name): Ditto.
8977
8978 2004-02-10 Andrew Cagney <cagney@redhat.com>
8979
8980 * mips-tdep.c (mips_gdbarch_init): Delete deprecated frame code.
8981 (mips_init_frame_pc_first): Delete function.
8982 (mips_frame_saved_pc): Delete function.
8983 (mips_frame_chain): Delete function.
8984 (mips_init_extra_frame_info): Delete function.
8985 (mips_xfer_register): Delete unused variable "reg".
8986 (mips_n32n64_push_dummy_call): Delete unused variable "valbuf".
8987 (mips_n32n64_return_value): Delete unused variable "reg".
8988 (mips_n32n64_return_value): Delete unused variable "pos".
8989 (mips_o32_push_dummy_call): Delete unused variable "valbuf".
8990 (mips_o32_return_value): Delete unused variable "pos".
8991 (mips_o64_push_dummy_call): Delete unused variable "valbuf".
8992 (mips_print_fp_register): Delete unused variable "namelen"
8993 (mips_print_fp_register): Delete unused variable "flt2"
8994 (get_frame_pointer): Delete function.
8995 (cached_proc_desc): Delete static variable.
8996 (mips_pop_frame): Delete function.
8997 (mips_find_saved_regs): Delete function.
8998 (mips_get_saved_register): Delete function.
8999 (mips_saved_pc_after_call): Delete function.
9000 (SIGFRAME_BASE): Delete macro.
9001 (SIGFRAME_FPREGSAVE_OFF): Delete macro.
9002 (SIGFRAME_PC_OFF): Delete macro.
9003 (SIGFRAME_REGSAVE_OFF): Delete macro.
9004 (mips_dump_tdep): Do not print deleted macro definitions.
9005
9006 2004-02-10 Andrew Cagney <cagney@redhat.com>
9007
9008 * Makefile.in (SFILES): Remove explictly listed tui files.
9009 (SUBDIR_GDBTK_SRCS): Fix path to gdbtk-interp.c.
9010
9011 2004-02-10 Jeff Johnston <jjohnstn@redhat.com>
9012
9013 * ia64-tdep.c (ia64_frame_this_id): Fix tracing print statement
9014 to use paddr functions to format ia64 addresses and long values.
9015 (ia64_frame_prev_register, ia64_sigtramp_frame_this_id): Ditto.
9016 (ia64_sigtramp_frame_prev_register, ia64_access_reg): Ditto.
9017 (get_kernel_table, ia64_find_proc_info_x): Ditto.
9018 (ia64_get_dyn_info_list, ia64_libunwind_this_frame_id): Ditto.
9019 (ia64_libunwind_frame_prev_register, ia64_unwind_dummy_id): Ditto.
9020
9021 2004-02-10 Andrew Cagney <cagney@redhat.com>
9022
9023 * defs.h: Do not include "tui.h".
9024 * gdb_curses.h: New file.
9025 * tui/tui-hooks.h: New file.
9026 * tui/tui.h (tui_update_all_exec_infos): Delete declaration.
9027 (tui_install_hooks, tui_remove_hooks): Delete declarations.
9028 (tui_initialize_io): Delete declaration.
9029 (tui_initialize_readline: Delete redundant declaration.
9030 (struct tui_point): Delete definition.
9031 * tui/tui-data.h (struct tui_point): Define.
9032 * cli/cli-decode.c [TUI]: Include "tui/tui.h".
9033 * utils.c: Include "tui/tui.h".
9034 * tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
9035 * printcmd.c [TUI]: Include "tui/tui.h".
9036 * cli/cli-cmds.c [TUI]: Include "tui/tui.h".
9037 * tui/tui-command.c: Include "gdb_curses.h".
9038 * tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
9039 * tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
9040 * tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
9041 * tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
9042 * tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
9043 * Makefile.in: Update all dependencies.
9044 (tui_hooks_h, gdb_curses_h): Define.
9045 (SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
9046
9047 2004-02-10 Elena Zannoni <ezannoni@redhat.com>
9048
9049 * objfiles.h (struct objfile): Remove unused fields auxf1 and
9050 auxf2. Add comments about some other rarely used fields.
9051
9052 2004-02-10 Andrew Cagney <cagney@redhat.com>
9053
9054 * Makefile.in (init.c): Fix script removing duplicates. Problem
9055 reported by Peter Schauer.
9056
9057 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
9058
9059 * bcache.c (bcache_xmalloc): Use obstack_init instead of
9060 obstack_specify_allocation.
9061 * objfiles.c (allocate_objfile): Ditto.
9062 * solib-sunos.c (solib_add_common_symbols)
9063 (allocate_rt_common_objfile): Ditto.
9064 * symfile.c (reread_symbols): Ditto.
9065 * gdb_obstack.h: Add comment.
9066
9067 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
9068
9069 * linespec.c (decode_line_1, locate_first_half)
9070 (decode_compound, lookup_prefix_sym): Update comments. Delete old
9071 commented out code.
9072
9073 2004-02-09 Daniel Jacobowitz <drow@mvista.com>
9074
9075 * cp-namespace.c (check_one_possible_namespace_symbol): Don't use
9076 obstack_free.
9077
9078 2004-02-09 Andrew Cagney <cagney@redhat.com>
9079
9080 * blockframe.c (find_pc_partial_function): If find_pc_overlay
9081 fails, try find_pc_section. Fix PR c++/1267.
9082 * minsyms.c (lookup_minimal_symbol_by_pc): Use find_pc_section
9083 instead of find_pc_mapped_section.
9084 (lookup_minimal_symbol_by_pc_section): If the SECTION is NULL, do
9085 not default to the section containing PC. Fix PR symtab/1519.
9086
9087 2004-02-09 Andrew Cagney <cagney@redhat.com>
9088
9089 * Makefile.in (mips-tdep.o): Update dependencies.
9090 * mips-tdep.c: Include "frame-unwind.h", "frame-base.h" and
9091 "trad-frame.h".
9092 (mips_unwind_pc): Return the pseudo PC register.
9093 (mips_unwind_dummy_id): New function.
9094 (mips16_fetch_instruction): New function.
9095 (mips32_fetch_instruction): New function.
9096 (struct mips_frame_cache): Define.
9097 (mips_mdebug_frame_cache): New function.
9098 (mips_mdebug_frame_this_id): New function.
9099 (mips_mdebug_frame_prev_register): New function.
9100 (mips_mdebug_frame_unwind): Define.
9101 (mips_mdebug_frame_sniffer): New function.
9102 (mips_mdebug_frame_base_address): New function.
9103 (mips_mdebug_frame_base): Define.
9104 (mips_mdebug_frame_base_sniffer): New function.
9105 (mips_gdbarch_init): Append unwind and base sniffers. Set
9106 unwind_dummy_id.
9107
9108 2004-02-08 Andrew Cagney <cagney@redhat.com>
9109
9110 * frame.c: Print both the register number and name.
9111
9112 * Makefile.in (init.c): Eliminate duplicates. Combine two greps
9113 and a sed into a single sed. Make .c and .o patterns more robust.
9114 (OBS): Delete.
9115 (INIT_FILES): Replace OBS with COMMON_OBS.
9116 (COMMON_OBS): Move DEPFILES and YYOBJ to start of definition.
9117
9118 2004-02-08 Mark Kettenis <kettenis@gnu.org>
9119
9120 * sparc-nat.c (sparc_xfer_wcookie): Try to fetch the cookie using
9121 the PT_WCOOKIE request.
9122
9123 2004-02-08 Andrew Cagney <cagney@redhat.com>
9124
9125 * mips-tdep.c (mips_unwind_pc): New function.
9126 (mips_gdbarch_init): Set mips_unwind_pc.
9127
9128 * frame.c (legacy_saved_regs_this_id): Return a null frame ID.
9129 (get_frame_id): Allow the UNKNOWN_FRAME.
9130 (frame_register_unwind, get_frame_type): Ditto.
9131
9132 * frame.c (legacy_frame_p): Check for DEPRECATED_TARGET_READ_FP_P
9133 and DEPRECATED_FP_REGNUM. Don't assume that the lack of
9134 unwind_dummy_id indicates a legacy frame.
9135
9136 * configure.in (CONFIG_LIB_OBS): Replace with CONFIG_OBS.
9137 * configure: Re-generate.
9138
9139 * mips-tdep.c (mips_gdbarch_init): Group deprecated frame unwind
9140 methods.
9141
9142 2004-02-08 Andrew Cagney <cagney@redhat.com>
9143
9144 * configure.in (CONFIG_ALL): Set to Makefile target, and not
9145 makefile macro.
9146 * configure: Re-generate.
9147 (CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Ditto.
9148 * Makefile.in (SUBDIR_CLI_CLEAN): Delete.
9149 (SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): Delete.
9150 (SUBDIR_CLI_ALL, SUBDIR_GDBTK_ALL): Delete.
9151 (SUBDIR_GDBTK_CLEAN, SUBDIR_GDBTK_INSTALL): Delete.
9152 (SUBDIR_GDBTK_UNINSTALL, SUBDIR_MI_ALL): Delete.
9153 (SUBDIR_MI_CLEAN, SUBDIR_MI_INSTALL): Delete.
9154 (SUBDIR_MI_UNINSTALL, SUBDIR_TUI_ALL): Delete.
9155 (SUBDIR_TUI_CLEAN, SUBDIR_TUI_INSTALL): Delete.
9156 (SUBDIR_TUI_UNINSTALL, SUBDIR_CLI_CLEAN): Delete.
9157
9158 2004-02-07 Andrew Cagney <cagney@redhat.com>
9159
9160 * Makefile.in: Update all dependencies.
9161
9162 * configure.in (CONFIG_INITS, CONFIG_LIB_OBS): Delete.
9163 * configure: Re-generate.
9164 * Makefile.in (INIT_FILES): Replace CONFIG_INITS with CONFIG_SRCS.
9165 (CONFIG_LIB_OBS, CONFIG_INITS): Delete.
9166 (COMMON_OBS): Add "main.o" and "annotate.o".
9167 (ANNOTATE_OBS): Delete.
9168 (OBS): Remove ANNOTATE_OBS.
9169 (DEPFILES): Replace CONFIG_LIB_OBS with CONFIG_LIB_OBS, remove
9170 CONFIG_INITS.
9171 (gdb$(EXEEXT), insight$(EXEEXT)): Do not depend on, or link
9172 against CONFIG_OBS and "main.o".
9173 (SUBDIR_CLI_INITS, SUBDIR_MI_INITS): Delete.
9174 (SUBDIR_TUI_INITS, SUBDIR_GDBTK_INITS): Delete.
9175
9176 * tui/tui-command.c: Include "gdb_string.h", delete register
9177 attribute, use ISO-C function signatures.
9178 * tui/tui-disasm.c, tui/tui-file.c, tui/tui-io.c: Ditto.
9179 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
9180 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Ditto.
9181 * tui/tui.c: Ditto.
9182
9183 * tui/tui-command.c: Change variable and function names to lower
9184 case.
9185 * tui/tui-data.c, tui/tui-disasm.c: Ditto.
9186 * tui/tui-hooks.c, tui/tui-io.c, tui/tui-layout.c: Ditto.
9187 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
9188 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9189 * tui/tui-winsource.c, tui/tui.c: Ditto.
9190
9191 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9192
9193 * buildsym.c (free_pending_blocks, finish_block)
9194 (record_pending_block, make_blockvector, end_symtab): Replace
9195 symbol_obstack with objfile_obstack.
9196 * coffread.c (process_coff_symbol, coff_read_struct_type)
9197 (coff_read_enum_type): Ditto.
9198 * cp-namespace.c (initialize_namespace_symtab)
9199 (check_one_possible_namespace_symbol): Ditto.
9200 * dwarf2read.c (new_symbol, dwarf2_const_value, macro_start_file)
9201 (dwarf2_symbol_mark_computed): Ditto.
9202 * dwarfread.c (enum_type, new_symbol, synthesize_typedef): Ditto.
9203 * elfread.c (elf_symtab_read): Ditto.
9204 * hpread.c (hpread_symfile_init, hpread_symfile_init)
9205 (hpread_read_enum_type, hpread_read_function_type)
9206 (hpread_read_doc_function_type, hpread_process_one_debug_symbol):
9207 Ditto.
9208 * jv-lang.c (get_java_class_symtab, add_class_symbol)
9209 (java_link_class_type): Ditto.
9210 * mdebugread.c (parse_symbol, psymtab_to_symtab_1, new_symtab)
9211 (new_symbol): Ditto.
9212 * minsyms.c (install_minimal_symbols): Ditto.
9213 * objfiles.c (allocate_objfile): Remove init of symbol_obstack.
9214 (terminate_minimal_symbol_table): Replace symbol_obstack with
9215 objfile_obstack.
9216 (free_objfile): Remove freeing of symbol_obstack.
9217 * objfiles.h: Remove symbol_obstack field.
9218 * pa64solib.c (add_to_solist): Replace symbol_obstack with
9219 objfile_obstack.
9220 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
9221 symbol_obstack.
9222 (solib_add_common_symbols): Replace symbol_obstack with
9223 objfile_obstack.
9224 * somsolib.c (som_solib_add): Ditto.
9225 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
9226 (common_block_start, common_block_end): Ditto.
9227 * symfile.c (reread_symbols): Remove freeing and init of
9228 symbol_obstack.
9229 (allocate_symtab): Rename symbol_obstack to objfile_obstack.
9230 * symfile.h: Update comment.
9231 * symmisc.c (print_objfile_statistics): Remove symbol_obstack
9232 stats printing.
9233 * symtab.c (symbol_set_names): Replace symbol_obstack with
9234 objfile_obstack.
9235 * symtab.h (struct general_symbol_info, struct minimal_symbol):
9236 Update comments.
9237 * xcoffread.c (read_xcoff_symtab, SYMBOL_DUP, SYMNAME_ALLOC)
9238 (init_stringtab, xcoff_initial_scan): Replace symbol_obstack with
9239 objfile_obstack.
9240
9241 2004-02-07 Andrew Cagney <cagney@redhat.com>
9242
9243 * tui/tui.h: Do not include <stdarg.h>, <string.h>, and
9244 "ansidecl.h". Do not undef "reg" and "chtype". Fix case of
9245 fields and variables.
9246 * tui/tui-wingeneral.h (m_beVisible): Delete macro.
9247 (m_beInvisible): Delete macro.
9248 * tui/tui-data.h: Fix case case fields and variables.
9249 (m_genWinPtrIsNull): Delete macro.
9250 (tui_win_list): Rename winList.
9251 (TUI_SRC_WIN): Rename srcWin.
9252 (TUI_DISASM_WIN): Rename disassemWin.
9253 (TUI_DATA_WIN): Rename dataWin.
9254 (TUI_CMD_WIN): Rename cmdWin.
9255 (m_genWinPtrNotNull): Delete macro.
9256 (m_winPtrIsNull): Delete macro.
9257 (m_winPtrNotNull): Delete macro.
9258 (tui_win_is_source_type): Replace m_winIsSourceType
9259 (tui_win_is_auxillary): Replace m_winIsAuzillary.
9260 (tui_win_has_locator): Replace m_hasLocator.
9261 (tui_set_win_highlight): Replace m_setWinHighlightOn and
9262 m_setWinHighlightOff.
9263 * tui/tui-data.c: Update references.
9264 (tui_win_is_source_type, tui_set_win_highlight): New functions.
9265 (tui_win_has_locator, tui_win_is_auxillary): New functions.
9266 * tui/tui-command.c, tui/tui-disasm.c: Update references.
9267 * tui/tui-io.c, tui/tui-layout.c, tui/tui-regs.c: Ditto.
9268 * tui/tui-regs.h, tui/tui-source.c, tui/tui-stack.c: Ditto.
9269 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9270 * tui/tui-winsource.c, tui/tui.c: Ditto.
9271
9272 2004-02-07 Mark Kettenis <kettenis@gnu.org>
9273
9274 * sparc-tdep.h (sparc_fetch_wcookie): New prototype.
9275 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Handle
9276 StackGhost.
9277
9278 * sparc-tdep.c (sparc32_frame_prev_register): Rename local
9279 variable `i6' to `i7'.
9280 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
9281
9282 2004-02-07 Andrew Cagney <cagney@redhat.com>
9283
9284 * tui/tui.h (Opaque, OpaquePtr OpaqueList): Delete definition.
9285 (TuiPoint, TuiPointPtr): Ditto.
9286 (TuiStatus, TuiStatusPtr): Ditto.
9287 (TuiWinType, TuiWinTypePtr): Ditto.
9288 (struct tui_point): Rename _TuiPoint.
9289 (tui_get_low_disassembly_address): Rename
9290 tuiGetLowDisassemblyAddress.
9291 (tui_update_all_exec_infos): Rename tuiUpdateAllExecInfos.
9292 (tuiFree): Delete declaration.
9293 (OpaqueFuncPtr, TuiOpaqueFuncPtr): Delete definitions.
9294 (TuiVoidFuncPtr, TuiIntFuncPtr): Delete definitions.
9295 * tui/tui.c (tuiFree): Delete function.
9296 * cli/cli-cmds.c (disassemble_command): Update references.
9297 * tui/tui-data.c, tui/tui-data.h, tui/tui-disasm.c: Ditto.
9298 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
9299 * tui/tui-stack.c, tui/tui-win.c, tui/tui-wingeneral.c: Ditto.
9300 * tui/tui-winsource.c: Ditto.
9301
9302 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9303
9304 * dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
9305 coffstab_build_psymtabs, elfstab_build_psymtabs)
9306 (stabsect_build_psymtabs): Replace psymbol_obstack with
9307 objfile_obstack.
9308 * dwarf2-frame.c (decode_frame_entry_1): Ditto.
9309 * dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
9310 Ditto.
9311 * dwarfread.c (scan_compilation_units): Ditto.
9312 * elfread.c (elfstab_offset_sections): Ditto.
9313 * hppa-tdep.c (read_unwind_info): Ditto.
9314 * hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
9315 (hpread_end_psymtab): Ditto.
9316 * mdebugread.c (mdebug_build_psymtabs, add_pending)
9317 (parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
9318 Ditto.
9319 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
9320 * objfiles.c (add_to_objfile_sections)
9321 (build_objfile_section_table): Ditto.
9322 (allocate_objfile): Remove init of psymbol_obstack.
9323 (free_objfile): Remove freeing of psymbol_obstack.
9324 * objfiles.h (struct objfile): Remove field
9325 psymbol_obstack. Update comments.
9326 * pa64solib.c (pa64_solib_add_solib_objfile): Replace
9327 psymbol_obstack with objfile_obstack.
9328 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
9329 psymbol_obstack.
9330 * somread.c (som_symfile_offsets, init_import_symbols)
9331 (init_export_symbols): Replace psymbol_obstack with
9332 objfile_obstack.
9333 * somsolib.c (som_solib_add_solib_objfile): Ditto.
9334 * symfile.c (default_symfile_offsets, syms_from_objfile)
9335 (reread_symbols): Remove freeing and init of psymbol_obstack.
9336 (cashier_psymtab): Update comment.
9337 * symmisc.c (print_objfile_statistics): Don't report stats for
9338 psymbol obstack.
9339 * symtab.h (struct general_symbol_info, struct partial_symtab):
9340 Update comments.
9341 * xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
9342 (xcoff_symfile_offsets): Replace psymbol_obstack with
9343 objfile_obstack.
9344
9345 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9346
9347 * objfiles.h (struct objfile): Add objfile_obstack field.
9348 Remove type_obstack field.
9349
9350 * dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
9351 read_structure_scope read_enumeration, new_symbol): Replace
9352 type_obstack with objfile_obstack.
9353 * dwarfread.c (struct_type, enum_type): Ditto.
9354 * gdbtypes.c (alloc_type, alloc_type_instance, init_type)
9355 (lookup_fundamental_type): Ditto.
9356 * gdbtypes.h (TYPE_ALLOC): Ditto.
9357 * hpread.c (hpread_read_enum_type, hpread_read_function_type)
9358 (hpread_read_doc_function_type, hpread_read_struct_type)
9359 (fix_static_member_physnames, hpread_read_array_type)
9360 (hpread_read_subrange_type, hpread_type_lookup): Ditto.
9361 * jv-lang.c (java_lookup_class, type_from_class, type_from_class)
9362 (java_link_class_type): Ditto.
9363 * mdebugread.c (parse_type): Ditto.
9364 * objfiles.c (allocate_objfile, free_objfile): Ditto.
9365 * solib-sunos.c (solib_add_common_symbols): Ditto.
9366 * stabsread.c (define_symbol, read_type, read_member_functions,
9367 read_cpp_abbrev, read_one_struct_field): Ditto.
9368 * symfile.c (reread_symbols): Ditto.
9369 * symmisc.c (print_objfile_statistics): Ditto.
9370
9371 2004-02-07 Andrew Cagney <cagney@redhat.com>
9372
9373 * tui/tui-data.h (tui_win_element): Rename TuiWinElement.
9374 (tui_exec_info_content): Rename TuiExecInfoContent.
9375 (TuiGenWinInfo, TuiGenWinInfoPtr): Delete definitions.
9376 (TuiWinInfo, TuiWinInfoPtr): Ditto.
9377 (TuiScrollDirection, TuiScrollDirectionPtr): Ditto.
9378 (TuiList, TuiListPtr): Ditto.
9379 (TuiLayoutType, TuiLayoutTypePtr): Ditto.
9380 (TuiDataType, TuiDataTypePtr): Ditto.
9381 (TuiRegisterDisplayType, TuiRegisterDisplayTypePtr): Ditto.
9382 (TuiLineOrAddress, TuiLineOrAddressPtr): Ditto.
9383 (TuiLayoutDef, TuiLayoutDefPtr): Ditto.
9384 (TuiSourceElement, TuiSourceElementPtr): Ditto.
9385 (TuiDataElement, TuiDataElementPtr): Ditto.
9386 (TuiWinElement, TuiWinElementPtr): Ditto.
9387 (TuiDataInfo, TuiDataInfoPtr): Ditto.
9388 (TuiCommandElement, TuiCommandElementPtr): Ditto.
9389 (TuiLocatorElement, TuiLocatorElementPtr): Ditto.
9390 (TuiWhichElement, TuiWhichElementPtr): Ditto.
9391 (TuiSourceInfo, TuiSourceInfoPtr): Ditto.
9392 (TuiCommandInfo, TuiCommandInfoPtr): Ditto.
9393 * tui/tui-command.c, tui/tui-data.c: Update references.
9394 * tui/tui-data.h, tui/tui-disasm.c, tui/tui-layout.c: Ditto.
9395 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
9396 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9397 * tui/tui-winsource.c, tui/tui.c: Ditto.
9398
9399 2004-02-07 Mark Kettenis <kettenis@gnu.org>
9400
9401 * dwarf2-frame.h: Update copyright.
9402 (enum dwarf2_frame_reg_rule): New.
9403 (struct dwarf2_frame_state_reg): New.
9404 (dwarf2_frame_sniffer, dwarf2_frame_base_sniffer): Make extern.
9405 * dwarf2-frame.c: Update copyright.
9406 (enum dwarf2_reg_rule): Remove.
9407 (struct dwarf2_frame_state): Remove defenition of `struct
9408 dwarf2_frame_state_reg'.
9409 (read_reg): Call get_frame_arch to get the architecture instead of
9410 using CURRENT_GDBARCH.
9411 (execute_cfa_program): Prefix old `enum dwarf2_reg_rule' tags with
9412 DWARF2_FRAME_.
9413 (dwarf2_frame_init_reg): New function.
9414 (dwarf2_frame_cache): Call get_frame_arch to get the architecture
9415 instead of using CURRENT_GDBARCH. Call dwarf2_frame_init_reg to
9416 initialize the register state. Prefix old `enum dwarf2_reg_rule'
9417 tags with DWARF2_FRAME_.
9418 (dwarf2_frame_prev_register): Call get_frame_arch to get the
9419 architecture instead of using CURRENT_GDBARCH. Prefix old `enum
9420 dwarf2_reg_rule' tags with DWARF2_FRAME_.
9421
9422 2004-02-06 Andrew Cagney <cagney@redhat.com>
9423
9424 * tui/tui-data.h (struct tui_list): Rename _TuiList.
9425 (enum tui_data_type): Rename _TuiDataType.
9426 (struct tui_layout_def): Rename _TuiLayoutDef.
9427 (struct tui_source_element): Rename _TuiSourceElement.
9428 (struct tui_data_element): Rename _TuiDataElement.
9429 (struct tui_command_element): Rename _TuiCommandElement.
9430 (struct tui_locator_element): Rename _TuiLocatorElement.
9431 (union tui_which_element): Define.
9432 (struct tui_win_element): Rename _TuiWinElement.
9433 (struct tui_data_info): Rename _TuiDataInfo.
9434 (struct tui_source_info): Rename _TuiSourceInfo.
9435 (struct tui_command_info): Rename _TuiCommandInfo.
9436 (tui_initialize_static_data): Rename initializeStaticData.
9437 (tui_alloc_generic_win_info): Rename allocGenericWinInfo.
9438 (tui_alloc_win_info): Rename allocWinInfo.
9439 (tui_init_generic_part): Rename initGenericPart.
9440 (tui_init_win_info): Rename initWinInfo.
9441 (tui_alloc_content): Rename allocContent.
9442 (tui_add_content_elements): Rename addContentElements.
9443 (tui_init_content_element): Rename initContentElement.
9444 (tui_free_window): Rename freeWindow.
9445 (tui_free_win_content): Rename freeWinContent.
9446 (tui_free_data_content): Rename freeDataContent.
9447 (tui_free_all_source_wins_content): Rename
9448 freeAllSourceWinsContent.
9449 (tui_del_window): Rename tuiDelWindow.
9450 (tui_del_data_windows): Rename tuiDelDataWindows.
9451 (tui_partial_win_by_name): Rename partialWinByName.
9452 (tui_win_name): Rename winName.
9453 (tui_current_layout): Rename currentLayout.
9454 (tui_set_current_layout_to): Rename setCurrentLayoutTo.
9455 (tui_term_height): Rename termHeight.
9456 (tui_set_term_height_to): Rename setTermHeightTo.
9457 (tui_term_width): Rename termWidth.
9458 (tui_set_term_width_to): Rename setTermWidthTo.
9459 (tui_set_gen_win_origin): Rename setGenWinOrigin.
9460 (tui_locator_win_info_ptr): Rename locatorWinInfoPtr.
9461 (tui_source_exec_info_win_ptr): Rename tui_gen_win_info.
9462 (tui_disassem_exec_info_win_ptr): Rename disassemExecInfoWinPtr.
9463 (tui_source_windows): Rename sourceWindows.
9464 (tui_clear_source_windows): Rename clearSourceWindows.
9465 (tui_clear_source_windows_detail): Rename
9466 clearSourceWindowsDetail.
9467 (tui_clear_win_detail): Rename clearWinDetail.
9468 (tui_add_to_source_windows): Rename tuiAddToSourceWindows.
9469 (tui_default_tab_len): Rename tuiDefaultTabLen.
9470 (tui_set_default_tab_len): Rename tuiSetDefaultTabLen.
9471 (tui_win_with_focus): Rename tuiWinWithFocus.
9472 (tui_set_win_with_focus): Rename tuiSetWinWithFocus.
9473 (tui_layout_def): Rename tuiLayoutDef.
9474 (tui_win_resized): Rename tuiWinResized.
9475 (tui_set_win_resized_to): Rename tuiSetWinResizedTo.
9476 (tui_next_win): Rename tuiNextWin.
9477 (tui_prev_win): Rename tuiPrevWin.
9478 (tui_add_to_source_windows): Rename addToSourceWindows.
9479 * tui/tui-winsource.c, tui/tui-win.c: Update references.
9480 * tui/tui-layout.c, tui/tui-source.c: Ditto.
9481 * tui/tui-stack.c, tui/tui-io.c: Ditto.
9482 * tui/tui.c, tui/tui-data.c: Ditto.
9483 * tui/tui-interp.c, tui/tui-data.c: Ditto.
9484 * tui/tui-disasm.c, tui/tui-command.c: Ditto.
9485
9486 * tui/tui-source.h: Update copyright. Include "tui-data.h".
9487 (struct symtab): Declare.
9488 (tui_set_source_content): Rename tuiSetSourceContent.
9489 (tui_show_symtab_source): Rename tuiShowSource.
9490 (tui_source_is_displayed): Rename tuiSourceIsDisplayed.
9491 (tui_vertical_source_scroll): Rename tuiVerticalSourceScroll.
9492 * tui/tui-source.c: Update copyright. Update references.
9493 * tui/tui-win.c, tui/tui-winsource.c: Update references.
9494 * tui/tui-stack.c: Update references.
9495
9496 * tui/tui-win.h: Update copyright. Include "tui-data.h".
9497 (struct tui_win_info): Declare.
9498 (tui_scroll_forward): Rename tuiScrollForward.
9499 (tui_scroll_backward): Rename tuiScrollBackward.
9500 (tui_scroll_left): Rename tuiScrollLeft.
9501 (tui_scroll_right): Rename tuiScrollRight.
9502 (tui_set_win_focus_to): Rename tuiSetWinFocusTo.
9503 (tui_resize_all): Rename tuiResizeAll.
9504 (tui_refresh_all_win): Rename tuiRefreshAll.
9505 (tui_sigwinch_handler): Rename tuiSigwinchHandler.
9506 * tui/tui-layout.c, * tui/tui-io.c: Update references.
9507 * tui/tui-wingeneral.h, * tui/tui.c: Update references.
9508 * tui/tui-disasm.c, * tui/tui-command.c: Update references.
9509
9510 * tui/tui-windata.h: Update copyright. Include "tui-data.h".
9511 (tui_erase_data_content): Rename tuiEraseDataContent.
9512 (tui_display_all_data): Rename tuiDisplayAllData.
9513 (tui_check_data_values): Rename tuiCheckDataValues.
9514 (tui_display_data_from_line): Rename tuiDisplayDataFromLine.
9515 (tui_first_data_item_displayed): Rename tuiFirstDataItemDisplayed.
9516 (tui_first_data_element_no_in_line): Rename
9517 tuiFirstDataElementNoInLine.
9518 (tui_delete_data_content_windows): Rename
9519 tuiDeleteDataContentWindows.
9520 (tui_refresh_data_win): Rename tuiRefreshDataWin.
9521 (tui_display_data_from): Rename tuiDisplayDataFrom.
9522 (tui_vertical_data_scroll): Rename tuiVerticalDataScroll.
9523 * tui/tui-windata.c, tui/tui-hooks.c: Update references.
9524 * tui/tui-win.c, tui/tui-regs.c: Update references.
9525 * tui/tui-layout.c, tui/tui.c: Update references.
9526
9527 * tui/tui-wingeneral.h: Update copyright.
9528 (m_allBeVisible): Delete macro.
9529 (m_allBeInvisible): Delete macro.
9530 (struct tui_gen_win_info): Declare.
9531 (struct tui_win_info): Declare.
9532 (tui_unhighlight_win): Rename unhighlightWin.
9533 (tui_make_visible, tui_make_invisible): Replace makeVisible.
9534 (tui_make_all_visible, tui_make_all_invisible): Replace makeAllVisible.
9535 (tui_make_window): Rename makeWindow.
9536 (tui_copy_win): Rename copyWin.
9537 (tui_box_win): Rename boxWin.
9538 (tui_highlight_win): Rename highlightWin.
9539 (tui_check_and_display_highlight_if_needed): Rename
9540 checkAndDisplayHighlightIfNeeded.
9541 (tui_refresh_all): Rename refreshAll.
9542 (tui_delete_win): Rename tuiDelwin.
9543 (tui_refresh_win): Rename tuiRefreshWin.
9544 * tui/tui-wingeneral.c (make_visible): Rename makeVisible.
9545 (tui_make_visible, tui_make_invisible): New functions.
9546 (tui_make_all_visible, tui_make_all_invisible): New functions.
9547 (make_all_visible): Rename makeAllVisible.
9548 * tui/tui-winsource.c, tui/tui-windata.c: Update references.
9549 * tui/tui-data.c, tui/tui-winsource.c: Update references.
9550 * tui/tui-windata.c, tui/tui-win.c: Update references.
9551 * tui/tui-regs.c, tui/tui-layout.c: Update references.
9552 * tui/tui-data.h (struct tui_gen_win_info): Rename _TuiGenWinInfo.
9553
9554 2004-02-06 Mark Kettenis <kettenis@gnu.org>
9555
9556 * proc-api.c (write_with_trace): Initialize local variable to
9557 silence compiler warning.
9558
9559 2004-02-06 Andrew Cagney <cagney@redhat.com>
9560
9561 * tui/tui-source.h: Do not include "defs.h".
9562 (struct tui_win_info): Declare.
9563 (tui_set_source_content_nil): Declare.
9564 * tui/tui-data.h (struct tui_win_info): Rename _TuiWinInfo.
9565 (union tui_line_or_address): Rename _TuiLineOrAddress.
9566 * tui/tui-winsource.h: Update copyright. Include "tui-data.h".
9567 (tui_update_source_window): Rename tuiUpdateSourceWindow.
9568 (tui_update_source_window_as_is): Rename
9569 tuiUpdateSourceWindowAsIs.
9570 (tui_update_source_windows_with_addr): Rename
9571 tuiUpdateSourceWindowsWithAddr.
9572 (tui_update_source_windows_with_line): Rename
9573 tuiUpdateSourceWindowsWithLine.
9574 (tui_clear_source_content): Rename tuiClearSourceContent.
9575 (tui_erase_source_content): Rename tuiEraseSourceContent.
9576 (tui_set_source_content_nil): Rename tuiSetSourceContentNil.
9577 (tui_show_source_content): Rename tuiShowSourceContent.
9578 (tui_horizontal_source_scroll): Rename tuiHorizontalSourceScroll.
9579 (tui_set_exec_info_content): Rename tuiSetExecInfoContent.
9580 (tui_show_exec_info_content): Rename tuiShowExecInfoContent.
9581 (tui_erase_exec_info_content): Rename tuiEraseExecInfoContent.
9582 (tui_clear_exec_info_content): Rename tuiClearExecInfoContent.
9583 (tui_update_exec_info): Rename tuiUpdateExecInfo.
9584 (tui_set_is_exec_point_at): Rename tuiSetIsExecPointAt.
9585 (tui_alloc_source_buffer): Rename tuiAllocSourceBuffer.
9586 (tui_line_is_displayed): Rename tuiLineIsDisplayed.
9587 (tui_addr_is_displayed): Rename tuiAddrIsDisplayed.
9588 (struct tui_win_info): Declare.
9589 * tui/tui-stack.c: Update references.
9590 * tui/tui-layout.c, tui/tui-winsource.c: Ditto.
9591 * tui/tui-win.c, tui/tui-source.c: Ditto.
9592 * tui/tui.c, tui/tui-disasm.c: Ditto.
9593
9594 2004-02-06 Mark Kettenis <kettenis@gnu.org>
9595
9596 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Fix calculation
9597 of UCONTEXT_ADDR. Fixes PR backtrace/1545.
9598
9599 2004-02-05 Mark Kettenis <kettenis@gnu.org>
9600
9601 * infrun.c (handle_inferior_event): Allow for breakpoint
9602 instructions to generate a SIGSEGV in addition to SIGTRAP, SIGILL
9603 and SIGEMT. Update comments.
9604 * NEWS (Revised SPARC target): Mention support for non-executable
9605 stack.
9606
9607 2004-02-04 Mark Kettenis <kettenis@gnu.org>
9608
9609 * target.h (target_object): Add TARGET_OBJECT_WCOOKIE.
9610 * inftarg.c: Update copyright year.
9611 (child_xfer_partial): Add support for TARGET_OBJECT_WCOOKIE.
9612 * sparc-nat.c: Include "target.h" and "gdb_assert.h".
9613 (sparc_xfer_wcookie): New function.
9614 * sparc-tdep.c (sparc_fetch_wcookie): New function.
9615 * Makefile.in (sparc-nat.o): Update dependencies.
9616 * config/sparc/nm-nbsd.h: Include "target.h".
9617 (NATIVE_XFER_WCOOKIE): New define.
9618 (sparc_xfer_wcookie): New prototype.
9619
9620 2004-02-04 Andrew Cagney <cagney@redhat.com>
9621
9622 * m68k-tdep.c (m68k_saved_pc_after_call): Delete #ifdef
9623 SYSCALL_TRAP function.
9624 (m68k_gdbarch_init): Delete #ifdef SYSCALL_TRAP code.
9625
9626 2004-02-04 Andrew Cagney <cagney@redhat.com>
9627 Daniel Jacobowitz <drow@mvista.com>
9628
9629 * objfiles.h: Delete comments refering to inside_entry_func and
9630 DEPRECATED_FRAME_CHAIN_VALID.
9631 * defs.h (inside_entry_func): Update prototype..
9632 * blockframe.c (inside_entry_func): Rename to
9633 legacy_inside_entry_func. Add new inside_entry_func taking a frame.
9634 * frame.c (get_prev_frame): Pass the frame to inside_entry_func.
9635
9636 2004-02-03 Jeff Johnston <jjohnstn@redhat.com>
9637
9638 * breakpoint.c (struct captured_parse_breakpoint_args): Move
9639 outside of #ifdef SOLIB_ADD region.
9640 (do_restore_lang_radix_cleanup): Ditto.
9641 (resolve_pending_breakpoint): Ditto.
9642
9643 2004-02-03 Andrew Cagney <cagney@redhat.com>
9644
9645 * ia64-tdep.c (read_sigcontext_register): Delete unused function.
9646 (process_note_abi_tag_sections): Delete unused function.
9647 (ia64_read_fp): Delete unused function.
9648 (gdbarch_extract_struct_value_address): Delete declaration.
9649
9650 2004-02-02 Andrew Cagney <cagney@redhat.com>
9651
9652 * vax-tdep.c (vax_frame_chain): Delete call to
9653 deprecated_inside_entry_file.
9654 * ns32k-tdep.c (ns32k_frame_chain): Ditto.
9655
9656 2004-02-02 Mark Kettenis <kettenis@gnu.org>
9657
9658 * dwarf2-frame.c (dwarf2_frame_cache): Deal with a return address
9659 column that's "empty" or "same value" when eliminating REG_RA
9660 rules.
9661
9662 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
9663
9664 * NEWS: Add information about new pending breakpoint support.
9665
9666 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
9667
9668 * breakpoint.h (struct breakpoint): Add new flag, from_tty,
9669 and pending fields for pending breakpoint support.
9670 * breakpoint.c (breakpoint_enabled): Add check for not pending.
9671 (condition_command): Only parse condition if not a pending
9672 breakpoint.
9673 (print_one_breakpoint): Add support for pending breakpoints.
9674 (describe_other_breakpoints): Add checks to verify we are not
9675 dealing with pending breakpoints.
9676 (check_duplicates): Don't check pending breakpoints.
9677 (set_raw_breakpoint): Initialize pending flag.
9678 (do_restore_lang_radix_cleanup): New cleanup routine.
9679 (resolve_pending_breakpoint): New function.
9680 (re_enable_breakpoints_in_shlibs): Try and resolve any
9681 pending breakpoints via resolve_pending_breakpoint.
9682 (mention): Add pending breakpoint support.
9683 (parse_breakpoint_sals): Add new parameter to pass to
9684 decode_line_1 to indicate silent errors when files or functions
9685 are not found. Change all callers.
9686 (do_captured_parse_breakpoint): New function.
9687 (break_command_1): Change prototype to return an rc value and to
9688 take an optional pending breakpoint pointer. Support creating
9689 a pending breakpoint if a "not found" form of error occurs when
9690 parsing the breakpoint. Also support resolving an existing pending
9691 breakpoint and be silent if the resolution fails.
9692 (create_breakpoints): Change prototype to take pending breakpoint
9693 pointer. When resolving a pending breakpoint, use the new pointer
9694 to provide a conditional or commands added by the end-user.
9695 (delete_breakpoint): Add appropriate check for pending.
9696 (breakpoint_re_set_one): Ditto.
9697 (do_enable_breakpoint): Ditto.
9698
9699 2004-02-02 David Carlton <carlton@kealia.com>
9700
9701 * valops.c (enum oload_classification): New.
9702 (find_overload_match): Break implementation into separate
9703 functions; delete #if 0'd code; look for symbols within
9704 namespaces.
9705 (find_oload_champ_namespace,find_oload_champ_namespace_loop)
9706 (find_oload_champ,oload_method_static,classify_oload_match): New.
9707 * cp-support.h: Add declaration for cp_func_name; update
9708 declaration for make_symbol_overload_list.
9709 * cp-support.c (cp_func_name): New.
9710 (overload_list_add_symbol): Fix comment, use
9711 SYMBOL_LINKAGE_NAME and SYMBOL_NATURAL_NAME.
9712 (make_symbol_overload_list): Take a function name and a namespace
9713 instead of a symbol; change implementation.
9714 (make_symbol_overload_list_using): New.
9715 (make_symbol_overload_list_qualified, read_in_psymtabs): New.
9716
9717 2004-02-02 Fred Fish <fnf@redhat.com>
9718
9719 * main.c (gdb_stdtarg): Move definition to group with other
9720 gdb_stdtarg definitions and update copyright years.
9721 * remote-sim.c (gdb_os_write_stderr): Write output to
9722 gdb_stdtargerr stream instead of gdb_stdtarg stream.
9723 (gdb_os_flush_stderr): Flush gdb_stdtargerr steam instead of
9724 gdb_stderr stream and update copyright years.
9725
9726 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9727
9728 * Makefile.in (mips-linux-nat.o): Update dependencies.
9729 * mips-linux-nat.c: Include mips-tdep.h.
9730
9731 2004-02-01 Roland McGrath <roland@redhat.com>
9732
9733 * sol-thread.c (sol_thread_xfer_partial): New function.
9734 (init_sol_thread_ops): Use that for to_xfer_partial hook.
9735 (init_sol_core_ops): Likewise.
9736
9737 * procfs.c (procfs_xfer_partial): New function.
9738 (init_procfs_ops): Use that for procfs_ops.to_xfer_partial.
9739 * Makefile.in (procfs.o): Add $(auxv_h) dep.
9740
9741 * config/nm-linux.h (NATIVE_XFER_AUXV): New macro, uses auxv.c's
9742 procfs_xfer_auxv function.
9743
9744 * procfs.c (procfs_make_note_section): If we can read
9745 TARGET_OBJECT_AUXV data, add an NT_AUXV note containing it.
9746 * linux-proc.c (linux_make_note_section): Likewise.
9747
9748 * auxv.h: New file.
9749 * auxv.c: New file.
9750 * Makefile.in (auxv_h): New variable.
9751 (COMMON_OBS): Add auxv.o here.
9752 (auxv.o): New target.
9753
9754 * corelow.c (core_xfer_partial): New function.
9755 (init_core_ops): Use it for core_ops.to_xfer_partial.
9756
9757 * target.h (enum target_object): Add TARGET_OBJECT_AUXV.
9758 * inftarg.c (child_xfer_partial): Support it using NATIVE_XFER_AUXV
9759 macro if that is defined.
9760
9761 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9762
9763 * breakpoint.c (bpstat_stop_status): Take a ptid_t argument,
9764 and check the specified thread for each breakpoint.
9765 * breakpoint.h (bpstat_stop_status): Update prototype.
9766 * infrun.c (handle_inferior_event): Update calls to
9767 bpstat_stop_status.
9768
9769 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9770
9771 * Makefile.in (cli-cmds.o): Add $(readline_h).
9772
9773 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9774
9775 * cli/cli-cmds.c: Include readline.h.
9776 (complete_command): Pass the start of the last word to
9777 complete_line.
9778
9779 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9780
9781 * breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
9782 argument, and change first argument to a CORE_ADDR.
9783 * breakpoint.h (bpstat_stop_status): Update prototype.
9784 * infrun.c (adjust_pc_after_break): Add a new comment.
9785 (handle_inferior_event): Update calls to bpstat_stop_status.
9786
9787 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9788
9789 * breakpoint.h: Update copyright years.
9790
9791 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9792
9793 * breakpoint.c (software_breakpoint_inserted_here_p): New function.
9794 (bpstat_stop_status): Don't decrement PC.
9795 * breakpoint.h (software_breakpoint_inserted_here_p): Add
9796 prototype.
9797 * infrun.c (adjust_pc_after_break): New function.
9798 (handle_inferior_event): Call it, early. Remove later references
9799 to DECR_PC_AFTER_BREAK.
9800 (normal_stop): Add commentary.
9801
9802 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9803
9804 * breakpoint.c (breakpoint_re_set_one): Add missing chunk of
9805 2004-01-27 double-free fix.
9806
9807 2004-01-31 Mark Kettenis <kettenis@gnu.org>
9808
9809 * sparc-tdep.c (sparc_fetch_wcookie): New function.
9810 (sparc32_frame_prev_register): Handle StackGhost.
9811 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
9812
9813 2004-01-29 Roland McGrath <roland@redhat.com>
9814
9815 * configure.in (NEW_PROC_API): Also match solaris2.9 for this test.
9816 * configure: Regenerated.
9817
9818 * procfs.c: Include gdb_string.h for str* decls, otherwise warnings.
9819 * Makefile.in (procfs.o): Add dep.
9820
9821 2004-01-28 Andrew Cagney <cagney@redhat.com>
9822
9823 * tui/tui-stack.h: Update copyright.
9824 (struct frame_info): Add opaque declaration.
9825 (tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
9826 (tui_show_locator_content): Rename tuiShowLocatorContent.
9827 (tui_show_frame_info): Rename tuiShowFrameInfo.
9828 * tui/tui-stack.c: Update copyright. Update references.
9829 * tui/tui-winsource.c: Update references.
9830 * tui/tui-win.c: Update references.
9831 * tui/tui-layout.c: Update references.
9832 * tui/tui-hooks.c: Update copyright, update references.
9833 * tui/tui.c: Update copyright, update references.
9834 * tui/tui-disasm.c: Update references.
9835
9836 2004-01-28 David Carlton <carlton@kealia.com>
9837
9838 * dwarf2read.c (add_partial_structure): Use demangled name if
9839 namespace equals "".
9840
9841 2004-01-27 Jim Blandy <jimb@redhat.com>
9842
9843 Clean up misapplied patch:
9844 * dwarf2read.c (determine_prefix): Change one of the two forward
9845 declarations for 'determine_prefix_aux' to a declaration for this.
9846 (read_func_scope): Use cu->language, not cu_language. Pass 'cu'
9847 argument to 'die_specification'.
9848
9849 * dwarf2read.c (read_func_scope): Re-indent comment.
9850
9851 2004-01-27 Paul N. Hilfinger <hilfinger@gnat.com>
9852
9853 * breakpoint.c (breakpoint_re_set_one): Set b->cond, b->val, and
9854 b->exp to NULL after freeing so that error during re-parsing or
9855 evaluation of expressions associated with breakpoint don't
9856 eventually lead to re-freeing of storage.
9857 Committed by Andrew Cagney.
9858
9859 2004-01-27 Andrew Cagney <cagney@redhat.com>
9860
9861 * source.c (ambiguous_line_spec): Delete undefined declaration.
9862 * m32r-rom.c (m32r_set_board_address): Delete unused function.
9863 (m32r_set_server_address, m32r_set_download_path): Ditto.
9864 * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
9865
9866 2004-01-27 Daniel Jacobowitz <drow@mvista.com>
9867
9868 * dwarf2read.c: Update calls to changed and renamed functions, and
9869 references to moved variables.
9870
9871 (struct dwarf2_cu): Add first_fn, last_fn, cached_fn,
9872 language, language_defn, list_in_scope, and ftypes members.
9873 (cu_first_fn, cu_last_fn, cu_cached_fn, cu_language)
9874 (cu_language_defn, list_in_scope, ftypes, cu_header_offset)
9875 (baseaddr): Remove globals.
9876
9877 (dwarf_attr): Renamed to dwarf2_attr. Add CU argument.
9878 (set_cu_language, die_is_declaration, die_specification)
9879 (determine_prefix, determin_prefix_aux, class_name, namespace_name)
9880 (dwarf2_linkage_name, dwarf2_name, dwarf2_extension)
9881 (dwarf2_get_ref_die_offset, dwarf2_fundamental_type)
9882 (initialize_cu_func_list, add_to_cu_func_list): Add CU argument.
9883
9884 (dwarf2_build_psymtabs_hard): Add local baseaddr. Initialize
9885 cu.list_in_scope. Don't initialize cu_header_offset.
9886 (add_partial_symbol): Add local baseaddr.
9887 (psymtab_to_symtab_1): Add local baseaddr. Use
9888 objfile->section_offsets for consistency. Don't initialize
9889 cu_header_offset; do initialize cu.header.offset and
9890 cu.list_in_scope.
9891 (read_file_scope, read_func_scope, read_lexical_block_scope)
9892 (dwarf_decode_lines, new_symbol): Add local baseaddr.
9893
9894 2004-01-27 Michael Chastain <mec.gnu@mindspring.com>
9895
9896 * PROBLEMS: Add gdb/1516.
9897
9898 2003-12-29 Robert Millan <robertmh@gnu.org>
9899
9900 Patch committed by Andrw Cagney.
9901 * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
9902 * configure.tgt: Match knetbsd*-gnu.
9903
9904 2004-01-26 Andrew Cagney <cagney@redhat.com>
9905
9906 * breakpoint.c (catch_command_1): Delete #ifdef code.
9907 (catch_fork_command_1): Delete #ifdef wrapper.
9908 (catch_exec_command_1): Ditto.
9909 (catch_load_command_1): Ditto.
9910 (catch_unload_command_1): Ditto.
9911
9912 * breakpoint.c (watchpoint_check): Delete #if0ed variable.
9913 (catch_breakpoint): Delete #if0ed function.
9914 (disable_catch_breakpoint): Ditto.
9915 (delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
9916 (disable_catch, enable_catch, delete_catch): Ditto.
9917
9918 2004-01-26 Andrew Cagney <cagney@redhat.com>
9919
9920 * remote.c (echo_check, quit_flag): Delete variables.
9921 (cisco_kernel_mode): Delete variable.
9922 (minitelnet_return, tty_input, escape_count): Delete variables.
9923 (remote_cisco_mode): Delete variable.
9924 (remote_cisco_open, remote_cisco_close): Delete function.
9925 (remote_cisco_mourn, remote_cisco_wait): Delete function.
9926 (init_remote_cisco_ops): Delete function.
9927 (_initialize_remote): Do not install "remote cisco" code.
9928 (read_frame): Delete cisco specific code.
9929 (remote_info_process): Delete function.
9930 (remote_wait): Delete cisco specific code.
9931 (remote_cisco_section_offsets): Delete function.
9932 (remote_cisco_objfile_relocate): Delete function.
9933 (remote_async_wait): Delete cisco specific code.
9934 (minitelnet, readtty, readsocket): Delete function.
9935
9936 2004-01-26 Andrew Cagney <cagney@redhat.com>
9937
9938 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS): Deprecate. Add
9939 comments mentioning extract_returned_value_address.
9940 * infcmd.c (print_return_value): Update. Add comments on
9941 extract_returned_value_address.
9942 * stack.c (return_command): Add comments on
9943 extract_returned_value_address.
9944 * values.c: Update comment.
9945 * m32r-tdep.c: Update comment.
9946 * sparc-tdep.c: Update comment.
9947 * ia64-tdep.c (ia64_use_struct_convention): Update comment.
9948 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
9949 * sh64-tdep.c (sh64_gdbarch_init): Update.
9950 * sh-tdep.c (sh_gdbarch_init): Update.
9951 * s390-tdep.c (s390_gdbarch_init): Update.
9952 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
9953 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
9954 * m68k-tdep.c (m68k_gdbarch_init): Update.
9955 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
9956 * m32r-tdep.c (m32r_gdbarch_init): Update.
9957 * ia64-tdep.c (ia64_gdbarch_init): Update.
9958 * h8300-tdep.c (h8300_gdbarch_init): Update.
9959 * frv-tdep.c (frv_gdbarch_init): Update.
9960 * arm-tdep.c (arm_gdbarch_init): Update.
9961 * alpha-tdep.c (alpha_gdbarch_init): Update.
9962
9963 2004-01-26 Andrew Cagney <cagney@redhat.com>
9964
9965 * dwarf2loc.c (dwarf_expr_frame_base): Use SYMBOL_OPS instead of
9966 SYMBOL_LOCATION_FUNCS
9967 (dwarf2_loclist_funcs, dwarf2_locexpr_funcs): Change type to
9968 "struct symbol_ops".
9969 * dwarf2loc.h (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Change
9970 type to "struct symbol_ops".
9971 * symtab.h (struct symbol_ops): Rename "struct location_funcs".
9972 (struct symbol): Replace ".aux_value.loc.funcs" and
9973 ".aux_value.loc.baton" with ".ops" and ".aux_value.ptr".
9974 (SYMBOL_OBJFILE): Delete macro.
9975 (SYMBOL_LOCATION_FUNCS): Delete macro.
9976 (SYMBOL_LOCATION_BATON): Update.
9977 * dwarf2read.c (dwarf2_symbol_mark_computed): Set SYMBOL_OPS
9978 intead of SYMBOL_LOCATION_FUNCS.
9979 * ax-gdb.c (gen_var_ref): Ditto.
9980 * printcmd.c (address_info): Ditto.
9981 * findvar.c (read_var_value): Ditto.
9982 (symbol_read_needs_frame): Ditto.
9983
9984 2004-01-26 Andrew Cagney <cagney@redhat.com>
9985
9986 * dwarf2read.c (read_func_scope): Document frame-base hack.
9987
9988 2004-01-25 Mark Kettenis <kettenis@gnu.org>
9989
9990 * infcmd.c (print_return_value): Plug memory leak; delete
9991 ui_stream object. Rename argument `structure_return' to
9992 `struct_return'.
9993
9994 2004-01-25 Mark Kettenis <kettenis@gnu.org>
9995
9996 * infcmd.c (print_return_value): Wrap long lines.
9997 (finish_command_continuation, finish_command): Remove unused
9998 variable `funcaddr'. Fix some coding-standards problems.
9999
10000 * sparc-tdep.c (sparc_regset_from_core_section): Check whether
10001 SECT_SIZE is large enough, not whether it's exactly the right size.
10002 (sparc32_gdbarch_init): Initialize TDEP->sizeof_gregset and
10003 TDEP->fpregset to zero.
10004
10005 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Also supply the
10006 floating-point registers for traditional NetBSD core files.
10007 (sparc32nbsd_init_abi): Initialize TDEP->sizeof_gregset and
10008 TDEP->sizeof_fpregset here.
10009
10010 2004-01-25 Mark Kettenis <kettenis@gnu.org>
10011
10012 * sparc-tdep.h (sparc32nbsd_sigcontext_saved_regs): New prototype.
10013 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): New
10014 function with code split out from
10015 sparc32nbsd_sigcontext_frame_cache.
10016 (sparc32nbsd_sigcontext_frame_cache): Use
10017 sparc32nbsd_sigcontext_saved_regs.
10018 (_initialize_sparc32nbsd_tdep): Don't register OS ABI handler for
10019 OpenBSD.
10020 * sparcobsd-tdep.c: New file.
10021 * Makefile.in (ALLDEPFILES): Add sparcobsd-tdep.c.
10022 (sparcobsd-tdep.o): New dependency.
10023 * configure.tgt (sparc-*-openbsd*): Set gdb_target to obsd.
10024 * config/sparc/obsd.mt: New file.
10025
10026 * sparc-tdep.c (sparc32_gdbarch_init): Don't require
10027 TDEP->fpregset to be initialized to enable core file register
10028 sets.
10029
10030 2004-01-24 Mark Kettenis <kettenis@gnu.org>
10031
10032 * sparc64-tdep.h (struct frame_info, struct trad_frame_saved_reg):
10033 Add opaque declarations.
10034 (sparc64nbsd_sigcontext_saved_regs): New prototype.
10035 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): New
10036 function with code split out from
10037 sparc64nbsd_sigcontext_frame_cache.
10038 (sparc64nbsd_sigcontext_frame_cache): Use
10039 sparc64nbsd_sigcontext_saved_regs.
10040 (_initialize_sparc64nbsd_tdep): Don't register OS ABI handler for
10041 OpenBSD.
10042 * sparc64obsd-tdep.c: New file.
10043 * Makefile.in (ALLDEPFILES): Add sparc64obsd-tdep.c.
10044 (sparc64obsd-tdep.o): New dependency.
10045 * configure.tgt (sparc64-*-openbsd*): Set gdb_target to obsd64 and
10046 gdb_osabi to GDB_OSABI_OPENBSD_ELF.
10047 * config/sparc/obsd64.mt: New file.
10048
10049 * sparc-tdep.c (sparc_fetch_instruction): Return zero if we can't
10050 read the instruction at PC.
10051
10052 * sparcnbsd-tdep.c (GDB_OSABI_NETBSD_CORE): Define, based on the
10053 value of GDB_OSABI_DEFAULT.
10054 (sparcnbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_CORE
10055 instead of GDB_OSABI_NETBSD_AOUT.
10056
10057 2004-01-24 Nick Roberts <nick@nick.uklinux.net>
10058
10059 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-cmds.h: Update
10060 copyright.
10061
10062 2004-01-23 Andrew Cagney <cagney@redhat.com>
10063
10064 * printcmd.c (display_command): Replace tui_set_display call with
10065 tui_set_layout_for_display_command.
10066 * tui/tui.h (enum tui_win_type): Define.
10067 (tui_set_layout): Delete declaration.
10068 (tui_set_layout_for_display_command): Rename set_tui_layout.
10069 * tui/tui-data.h (enum tui_layout_type): Define.
10070 * tui/tui-layout.h: Update copyright. Include "tui-data.h" and
10071 "tui.h".
10072 (tui_add_win_to_layout): Rename tuiAddWinToLayout.
10073 (tui_default_win_height): Rename tuiDefaultWinHeight.
10074 (tui_default_win_viewport_height): Rename
10075 tuiDefaultWinViewportHeight.
10076 (tui_set_layout): RenametuiSetLayout.
10077 * tui/tui-layout.c: Update references.
10078 * tui/tui.c: Update references.
10079 * tui/tui-disasm.c: Update references.
10080
10081 2004-01-23 David Carlton <carlton@kealia.com>
10082
10083 Partial workaround for PR c++/1511:
10084 * cp-namespace.c: Include frame.h.
10085 (cp_lookup_transparent_type): New
10086 (cp_lookup_transparent_type_loop): New.
10087 * cp-support.h: Declare cp_lookup_transparent_type.
10088 * symtab.c (basic_lookup_transparent_type): Renamed from
10089 lookup_transparent_type.
10090 (lookup_transparent_type): Replace old body by a call to
10091 current_language->la_lookup_transparent_type.
10092 * symtab.h: Update copyright. Declare
10093 basic_lookup_transparent_type.
10094 * language.h: Update copyright.
10095 (struct language_defn): Add la_lookup_transparent_type.
10096 * language.c: Update copyright.
10097 (unknown_language_defn): Add basic_lookup_transparent_type.
10098 (auto_language_defn): Add basic_lookup_transparent_type.
10099 (local_language_defn): Add basic_lookup_transparent_type.
10100 * ada-lang.c: Update copyright.
10101 (ada_language_defn): Add basic_lookup_transparent_type.
10102 * c-lang.c: Update copyright.
10103 (c_language_defn): Add basic_lookup_transparent_type.
10104 (cplus_language_defn): Add basic_lookup_transparent_type.
10105 (asm_language_defn): Add basic_lookup_transparent_type.
10106 (minimal_language_defn): Add basic_lookup_transparent_type.
10107 * f-lang.c: Update copyright.
10108 (f_language_defn): Add basic_lookup_transparent_type.
10109 * jv-lang.c: Update copyright.
10110 (java_language_defn): Add basic_lookup_transparent_type.
10111 * m2-lang.c: Update copyright.
10112 (m2_language_defn): Add basic_lookup_transparent_type.
10113 * objc-lang.c: Update copyright.
10114 (objc_language_defn): Add basic_lookup_transparent_type.
10115 * p-lang.c: Update copyright.
10116 (p_language_defn): Add basic_lookup_transparent_type.
10117 * scm-lang.c: Update copyright.
10118 (scm_language_defn): Add basic_lookup_transparent_type.
10119 * Makefile.in (cp-namespace.o): Depend on frame.h.
10120
10121 2004-01-23 David Carlton <carlton@kealia.com>
10122
10123 Patch for PR c++/1520:
10124 * dwarf2read.c (read_func_scope): Set processing_current_prefix
10125 properly if we have a specification die.
10126 (determine_prefix_aux): Rename from determine_prefix.
10127 (determine_prefix): Like the old determine_prefix, but never
10128 returns NULL.
10129
10130 2004-01-23 Theodore A. Roth <troth@openavr.org>
10131
10132 * avr-tdep.c: Update copyright.
10133 (avr_iaddr_p): Delete unused function.
10134 (avr_saddr_p): Delete unused function.
10135
10136 2004-01-23 David Carlton <carlton@kealia.com>
10137
10138 * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
10139 Fix for PR symtab/1534.
10140
10141 2004-01-23 Mark Kettenis <kettenis@gnu.org>
10142
10143 * NEWS (New native configurations): Mention OpenBSD/sparc and
10144 OpenBSD/sparc64.
10145 * configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*.
10146 * configure.host: Likewise.
10147 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI
10148 handler for OpenBSD.
10149 * sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
10150
10151 2004-01-22 Mark Kettenis <kettenis@gnu.org>
10152
10153 * sparcnbsd-tdep.c (sparcnbsd_core_osabi_sniffer): New function.
10154 (_initialize_sparnbsd_tdep): Register sparcnbsd_core_osabi_sniffer.
10155
10156 * ser-pipe.c (pipe_open): Use proper null pointer in execl call.
10157 * cli/cli-cmds.c (shell_escape): Likewise.
10158
10159 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Recognize
10160 OpenBSD .note.openbsd.ident sections.
10161
10162 2004-01-22 David Carlton <carlton@kealia.com>
10163
10164 * dwarf2read.c (psymtab_to_symtab_1): Calculate lowpc, highpc via
10165 get_scope_pc_bounds.
10166 (read_file_scope): Ditto.
10167 (get_scope_pc_bounds): New function, produced by extracting code
10168 from the above two functions, consolidating it, and adding support
10169 for DW_TAG_namespace.
10170
10171 2004-01-22 Mark Kettenis <kettenis@gnu.org>
10172
10173 * osabi.c (MAX_NOTESZ): New define.
10174 (check_note): New function.
10175 (generic_elf_osabi_sniff_abi_tag_sections): Reorganize code using
10176 check_note.
10177
10178 2004-01-21 Roland McGrath <roland@redhat.com>
10179
10180 * MAINTAINERS (write after approval): Add myself.
10181
10182 2004-01-21 Eli Zaretskii <eliz@gnu.org>
10183
10184 * utils.c (init_page_info): Move declarations of `rows' and
10185 `cols' before the __GO32__-specific code. Move the closing brace
10186 outside the #ifdef __GO32__..#endif block.
10187 [__GO32__]: Use `rows' and `cols' to avoid compiler warnings.
10188
10189 2004-01-21 Paul Brook <paul@codesourcery.com>
10190
10191 * infrun.c (handle_inferior_event): Check stop_stack_dummy if handling
10192 BPSTAT_WHAT_CHECK_SHLIBS.
10193
10194 2004-01-21 Paul Brook <paul@codesourcery.com>
10195
10196 * MAINTAINERS: Add myself to write-after-approval.
10197
10198 2004-01-20 Andrew Cagney <cagney@redhat.com>
10199
10200 * ax-gdb.c (print_axs_value): Delete unused function.
10201 * jv-lang.c (java_lookup_type): Delete unused function.
10202 * cli/cli-dump.c (dump_filetype): Delete unused function.
10203 * remote-mips.c (remote_mips_insert_hw_breakpoint)
10204 (remote_mips_remove_hw_breakpoint): Delete unused functions.
10205 (mips_getstring): Delete unused function.
10206 (pmon_insert_breakpoint): Delete #if0ed function.
10207 (PMON_MAX_BP): Delete #if0ed MACRO.
10208 (mips_pmon_bp_info): Delete #if0ed variable.
10209 (pmon_remove_breakpoint): Delete #if0ed function.
10210 * monitor.c (monitor_write_even_block): Delete unused function.
10211 (monitor_write_memory_block): Delete #if0ed code.
10212 * dink32-rom.c (dink32_load): Delete unused function.
10213 (_initialize_dink32_rom): Delete #if0ed code.
10214 * d10v-tdep.c (d10v_daddr_p): Delete unused function.
10215
10216 * tui/tui-command.c: Update references.
10217 * tui/tui-io.c: Update references.
10218 * tui/tui-command.h: Update copyright.
10219 (tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.
10220
10221 * source.c (ambiguous_line_spec): Delete never-defined function.
10222 * remote-rdi.c (arm_rdi_mourn, arm_rdi_send): Ditto.
10223 * gdbtypes.c (add_name, add_mangled_type): Ditto.
10224 * cli/cli-cmds.c (validate_comname): Ditto.
10225
10226 * tui/tui-disasm.h: Update copyright. Include "tui.h" and
10227 "tui-data.h".
10228 (tui_set_disassem_content): Rename tuiSetDisassemContent.
10229 (tui_show_disassem): Rename tuiShowDisassem.
10230 (tui_show_disassem_and_update_source): Rename
10231 tuiVerticalDisassemScroll.
10232 (tui_vertical_disassem_scroll): Rename tuiVerticalDisassemScroll.
10233 (tui_get_begin_asm_address): Rename tuiGetBeginAsmAddress.
10234 * tui/tui.h: Update copyright.
10235 (enum tui_status): Define.
10236 * tui/tui-data.h (enum tui_scroll_direction): Define.
10237 * tui/tui-disasm.c: Update copyright. Update references.
10238 * tui/tui-winsource.c: Update copyright. Update references.
10239 * tui/tui-win.c: Update references.
10240 * tui/tui-layout.c: Update references.
10241
10242 2004-01-20 Andrew Cagney <cagney@redhat.com>
10243
10244 * mi/mi-cmd-stack.c (list_args_or_locals): Move declaration of
10245 sym2 to start of block.
10246
10247 2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
10248
10249 * MAINTAINERS: Delete mmalloc.
10250 * Makefile.in: Delete MMALLOC, MMALLOC_CFLAGS, -lmmalloc, mmalloc_h.
10251 * NEWS: Mention removal of --with-malloc.
10252 * acconfig.h: Delete USE_MMALLOC, MMCHECK_FORCE.
10253 * config.in: Regenerate.
10254 * configure: Regenerate.
10255 * configure.in: Delete MMALLOC_CFLAGS, MMALLOC, --with-mmalloc,
10256 USE_MMALLOC, MMCHECK_FORCE.
10257 * gdbinit.in: Remove mmalloc.
10258 * utils.c: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE, malloc_botch.
10259 * config/alpha/alpha-linux.mh: Delete MMALLOC, MMALLOC_CFLAGS.
10260 * config/i386/go32.mh: Likewise.
10261 * config/i386/interix.mh: Likewise.
10262 * config/powerpc/xm-linux.h: Delete MMAP_BASE_ADDRESS, MMAP_INCREMENT.
10263
10264 2004-01-19 Jeff Johnston <jjohnstn@redhat.com>
10265
10266 * linespec.c (decode_variable, symtab_from_filename): Call
10267 error_silent with error message instead of throwing an exception
10268 directly.
10269 * defs.h (error_silent, error_output_message): Add prototypes.
10270 (catch_exceptions_with_msg): Ditto.
10271 * utils.c (error_silent, error_output_message): New functions.
10272 * top.c (catch_exceptions_with_msg): New function.
10273
10274 2004-01-20 Nick Roberts <nick@nick.uklinux.net>
10275
10276 * mi/mi-cmds.h (enum print_values): Add definition.
10277
10278 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Print the name,
10279 type and value for simple data types and just the name and type
10280 for complex ones, if required.
10281
10282 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Print the values of the
10283 children, if required.
10284
10285 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10286
10287 * frv-tdep.c (frv_push_arguments, frv_saved_pc_after_call): Delete
10288 unused declarations.
10289
10290 2004-01-19 Andrew Cagney <cagney@redhat.com>
10291
10292 * top.h (mapped_symbol_files): Delete declaration.
10293 * main.c (captured_main): Delete option "m" and "mapped".
10294 * objfiles.c (mapped_symbol_files): Delete variable.
10295 * symfile.c (symbol_file_command): Delete mmap code.
10296 (symbol_file_add_with_addrs_or_offsets): Ditto.
10297 (add_symbol_file_command, reread_separate_symbols): Ditto.
10298 * objfiles.h (OBJF_MAPPED): Delete.
10299 * objfiles.c (allocate_objfile) [USE_MMALLOC]: Delete.
10300 (free_objfile) [USE_MMALLOC]: Ditto.
10301 (open_existing_mapped_file): Delete function.
10302 (open_mapped_file): Delete function.
10303 (map_to_file): Delete function.
10304
10305 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10306
10307 * infrun.c (step_into_function): Account for possible breakpoint
10308 adjustment when computing ``stop_func_start''.
10309
10310 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10311
10312 * target.c (default_region_size_ok_for_hw_watchpoint): Compare
10313 the region size against the size of a pointer, not the size of
10314 a register as given by DEPRECATED_REGISTER_SIZE.
10315
10316 2004-01-19 Andrew Cagney <cagney@redhat.com>
10317
10318 * tui/tui-regs.h: Include "tui-data.h".
10319 (tuiFirstRegElementNoInLine): Delete declaration.
10320 (tui_display_registers_from): Rename tuiDisplayRegistersFrom.
10321 (tui_last_regs_line_no): Rename tuiLastRegsLineNo.
10322 (tui_line_from_reg_element_no): Rename tuiLineFromRegElementNo.
10323 (tui_calculate_regs_column_count): Rename
10324 tuiCalculateRegsColumnCount.
10325 (tui_check_register_values): Rename tuiCheckRegisterValues.
10326 (tui_show_registers): Rename tuiShowRegisters.
10327 (tui_display_registers_from_line): Rename
10328 tuiDisplayRegistersFromLine.
10329 (tui_first_reg_element_inline): Rename tuiFirstRegElementInLine.
10330 (tui_toggle_float_regs): Rename tuiToggleFloatRegs.
10331 (tui_first_reg_element_no_inline): Rename
10332 tuiFirstRegElementNoInLine.
10333 * tui/tui-data.h: Update copyright.
10334 (enum tui_register_display_type): Rename _TuiRegisterDisplayType.
10335 * tui/tui-windata.c: Update copyright, update references.
10336 * tui/tui-regs.c: Update copyright, update references.
10337 * tui/tui-win.c: Update copyright, update references.
10338 * tui/tui-layout.c: Update copyright, update references.
10339
10340 2004-01-18 Andrew Cagney <cagney@redhat.com>
10341
10342 * tui/tui-io.c: Update copyright.
10343 (key_is_end_sequence, key_is_backspace): New functions.
10344 (key_is_command_char, key_is_start_sequence): New function.
10345 (tui_getc): Update references.
10346 * tui/tui-io.h: Update copyright.
10347 (m_tuiStartNewLine): Delete macro.
10348 (m_isBackspace, m_isDeleteChar): Delete macros.
10349 (m_isDeleteLine, m_isDeleteToEol): Delete macros.
10350 (m_isNextPage, m_isPrevPage): Delete macros.
10351 (m_isLeftArrow, m_isRightArrow): Delete macros.
10352 (m_isXdbStyleCommandChar): Delete macro.
10353 (key_is_start_sequence): Declare, replace m_isStartSequence.
10354 (key_is_end_sequence): Declare, replace m_isEndSequence.
10355 (key_is_backspace): Declare ,replace m_isBackspace.
10356 (key_is_command_char): Declare, replace m_isCommandChar.
10357 * tui/tui-command.c: Update copyright.
10358 (tuiDispatchCtrlChar): Update references.
10359
10360 * config/djgpp/fnchange.lst: Delete tui/tuiSourceWin.c and
10361 tuiSourceWin.h.
10362
10363 * tui/tui-command.c: Rename tui/tuiCommand.c.
10364 * tui/tui-command.h: Rename tui/tuiCommand.h.
10365 * tui/tui-data.c: Rename tui/tuiData.c.
10366 * tui/tui-data.h: Rename tui/tuiData.h.
10367 * tui/tui-disasm.c: Rename tui/tuiDisassem.c.
10368 * tui/tui-disasm.h: Rename tui/tuiDisassem.h.
10369 * tui/tui-io.c: Rename tui/tuiIO.c.
10370 * tui/tui-io.h: Rename tui/tuiIO.h.
10371 * tui/tui-layout.c: Rename tui/tuiLayout.c.
10372 * tui/tui-layout.h: Rename tui/tuiLayout.h.
10373 * tui/tui-regs.c: Rename tui/tuiRegs.c.
10374 * tui/tui-regs.h: Rename tui/tuiRegs.h.
10375 * tui/tui-source.c: Rename tui/tuiSource.c.
10376 * tui/tui-source.h: Rename tui/tuiSource.h.
10377 * tui/tui-stack.c: Rename tui/tuiStack.c.
10378 * tui/tui-stack.h: Rename tui/tuiStack.h.
10379 * tui/tui-win.c: Rename tui/tuiWin.c.
10380 * tui/tui-win.h: Rename tui/tuiWin.h.
10381 * tui/tui-windata.c: Rename tui/tuiDataWin.c.
10382 * tui/tui-windata.h: Rename tui/tuiDataWin.h.
10383 * tui/tui-wingeneral.c: Rename tui/tuiGeneralWin.c.
10384 * tui/tui-wingeneral.h: Rename tui/tuiGeneralWin.h.
10385 * tui/tui-winsource.c: Rename tui/tuiSourceWin.c.
10386 * tui/tui-winsource.h: Rename tui/tuiSourceWin.h.
10387 * tui/tui-file.c: Update includes.
10388 * tui/tui-hooks.c: Update includes.
10389 * tui/tui-interp.c: Update includes.
10390 * tui/tui.c: Update includes.
10391 * Makefile.in: Update all tui/ dependencies.
10392 (SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS): Update file names.
10393
10394 * Makefile.in: Update copyright. Update dependencies.
10395
10396 * tui/tuiSourceWin.c (tui_update_breakpoint_info): Fix compile
10397 problem.
10398
10399 2004-01-18 Andrew Cagney <cagney@redhat.com>
10400
10401 * mn10300-tdep.c (_initialize_mn10300_tdep): Call gdbarch_register
10402 instead of register_gdbarch_init.
10403
10404 * remote-sds.c (tohex): Delete unused function. Update copyright.
10405 * xstormy16-tdep.c (xstormy16_register_virtual_size): Ditto.
10406 * v850-tdep.c (v850_register_virtual_size): Ditto.
10407 * target.c (normal_target_post_startup_inferior): Ditto.
10408 * source.c (ambiguous_line_spec): Ditto.
10409 * remote.c (adapt_remote_get_threadinfo): Ditto.
10410 * mi/mi-out.c (out_field_fmt): Ditto.
10411 * mi/mi-interp.c (mi_interp_read_one_line_hook): Ditto.
10412 (output_control_change_notification): Ditto.
10413 * m68k-tdep.c (m68k_register_byte): Ditto.
10414 (m68k_remote_breakpoint_from_pc): Ditto.
10415 * ui-out.c (init_ui_out_state): Delete unused declaration.
10416 * stabsread.c (search_value): Ditto.
10417 * mi/mi-cmd-env.c (env_cli_command): Ditto.
10418 * maint.c (print_section_table): Ditto.
10419 * infrun.c (set_follow_fork_mode_command): Ditto.
10420
10421 2004-01-18 Mark Kettenis <kettenis@gnu.org>
10422
10423 * dwarf2-frame.c (execute_cfa_program): Move DWA_CFA_nop before
10424 DW_CFA_def_cfa_exporession. Add support for
10425 DW_CFA_offset_extendend_sf, DW_CFA_def_cfa_sf and
10426 DW_CFA_def_cfa_offset_sf. This should fix PR backtrace/1391.
10427
10428 2004-01-18 Andrew Cagney <cagney@redhat.com>
10429
10430 * ocd.c: Update copyright.
10431 (bdm_read_register_command): Delete unused function.
10432 (_initialize_remote_ocd): Delete commented out reference.
10433 (get_quoted_char, reset_packet): Delete #if0ed function.
10434 (output_packet, put_quoted_char): Delete #if0ed function.
10435 (stu_put_packet, stu_get_packet): Delete #if0ed function.
10436 (ocd_start_remote): Delete #if0ed code, remove #if1 wrapper.
10437 (BDM_BREAKPOINT): Delete #if0ed macro.
10438 (remote_timeout): Delete #if0ed variable.
10439
10440 2004-01-18 Mark Kettenis <kettenis@gnu.org>
10441
10442 * Makefile.in (ALLDEPFILES): Remove core-sol2.c.
10443 (core-sol2.o): Remove dependency.
10444 * core-sol2.c: Remove file.
10445
10446 2004-01-17 Andrew Cagney <cagney@redhat.com>
10447
10448 * mdebugread.c (compare_blocks): Make addr_diff a LONGEST.
10449 * block.h: Make GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOOCK
10450 enums.
10451
10452 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10453
10454 * remote.c: Update copyright years.
10455
10456 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10457
10458 * remote.c (remote_vcont_resume): Use xstrprintf instead of sprintf.
10459
10460 2004-01-17 Andrew Cagney <cagney@redhat.com>
10461
10462 * mdebugread.c: Update copyright.
10463 (parse_symbol): Replace DEPRECATED_STREQ with strcmp.
10464 (parse_type, parse_procedure): Ditto.
10465 (parse_partial_symbols, psymtab_to_symtab_1): Ditto.
10466
10467 * cris-tdep.c (cris_store_struct_return): Put back accidently
10468 deleted function.
10469
10470 * gdbarch.sh: Update copyright year.
10471 * gdbarch.h, gdbarch.c: Re-generate.
10472
10473 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10474
10475 Suggested by George Anzinger.
10476 * dwarf2expr.c (execute_stack_op): Fetch the second item from the
10477 correct stack offset. Include unknown opcode numbers in the error
10478 message.
10479
10480 2004-01-17 Andrew Cagney <cagney@redhat.com>
10481
10482 * x86-64-tdep.c (x86_64_init_abi): No need to clear
10483 extract_struct_value_address, i386 does not set it.
10484 * sparc64-tdep.c (sparc64_init_abi): Do not set
10485 extract_struct_value_address, never called.
10486 (sparc64_extract_struct_value_address): Delete function.
10487 * m68hc11-tdep.c: Update copyright.
10488 (m68hc11_gdbarch_init): Delete redundant assignment of
10489 extract_struct_value_address.
10490 * i386-tdep.c: Update copyright.
10491 (i386_gdbarch_init): Do not set extract_struct_value_address,
10492 never called.
10493 (i386_extract_struct_value_address): Delete function.
10494 * sparc-tdep.c (sparc32_gdbarch_init): Do not set
10495 extract_struct_value_address, never called.
10496 (sparc32_extract_struct_value_address): #if 0 function. Add
10497 comments explaining its future.
10498
10499 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10500
10501 * arm-tdep.c (arm_write_pc): New function.
10502 (arm_gdbarch_init): Call set_gdbarch_write_pc.
10503
10504 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10505
10506 * breakpoint.c (must_shift_inst_regs): Delete.
10507 (bpstat_stop_status): Delete references to DECR_PC_AFTER_HW_BREAK
10508 and SHIFT_INST_REGS.
10509 * infcmd.c (step_1, step_1_continuation): Delete references to
10510 SHIFT_INST_REGS.
10511 * infrun.c (keep_going): Likewise.
10512 * target.h (DECR_PC_AFTER_HW_BREAK): Don't define.
10513 * config/i386/nm-i386.h (DECR_PC_AFTER_HW_BREAK): Likewise.
10514
10515 2004-01-17 Andrew Cagney <cagney@redhat.com>
10516
10517 * gdbarch.sh (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
10518 * gdbarch.h, gdbarch.c: Re-generate.
10519 * infcmd.c (print_return_value): Delete reference to
10520 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
10521
10522 * cris-tdep.c (cris_gdbarch_init): Do not set
10523 deprecated_extract_struct_value_address.
10524
10525 * xstormy16-tdep.c: Update copyright.
10526 (xstormy16_extract_struct_value_address): Update to current
10527 extract struct value address interface.
10528 (xstormy16_gdbarch_init): Set extract_struct_value_address.
10529 * sh64-tdep.c (sh64_extract_struct_value_address): Update to
10530 current extract struct value address interface.
10531 (sh64_gdbarch_init): Set extract_struct_value_address.
10532
10533 * cris-tdep.c: Update copyright.
10534 (cris_extract_struct_value_address): Delete function.
10535 (struct_return_address): Delete variable.
10536 (cris_store_struct_return): Do not set struct_return_address.
10537
10538 * mcore-tdep.c: Update copyright.
10539 (mcore_extract_struct_value_address): Delete function. Update
10540 comments.
10541 (mcore_gdbarch_init): Update.
10542 * mn10300-tdep.c: Update copyright.
10543 (mn10300_extract_struct_value_address): Delete function.
10544 (mn10300_gdbarch_init): Update.
10545 * v850-tdep.c: Update copyright.
10546 (v850_extract_struct_value_address): Delete.
10547 (v850_gdbarch_init): Update.
10548 * ns32k-tdep.c: Update copyright.
10549 (ns32k_extract_struct_value_address): Delete.
10550 (ns32k_gdbarch_init): Update.
10551 * hppa-tdep.c (hppa_extract_struct_value_address): Delete.
10552 (hppa_gdbarch_init): Update.
10553 * vax-tdep.c: Update copyright.
10554 (vax_extract_struct_value_address): Delete.
10555 (vax_gdbarch_init): Update.
10556
10557 * gdbarch.sh (DEPRECATED_NPC_REGNUM): Delete.
10558 * gdbarch.h, gdbarch.c: Re-generate.
10559 * procfs.c (procfs_fetch_registers): Delete reference to
10560 DEPRECATED_NPC_REGNUM.
10561 (procfs_store_registers): Ditto.
10562 * regcache.c (generic_target_write_pc): Simplify.
10563 * lynx-nat.c: Delete #ifdef SPARC code. Not used.
10564
10565 * core-sol2.c (fetch_core_registers): Replace
10566 DEPRECATED_NPC_REGNUM with equivalent tdep value.
10567
10568 * hppa-tdep.c: Update copyright year.
10569 (hppa_target_write_pc): Use PCOQ_TAIL_REGNUM instead of
10570 NPC_REGNUM.
10571 (hppa_gdbarch_init): Do not set deprecated_npc_regnum.
10572
10573 * mips-tdep.c (mips_write_pc): New function.
10574 (mips_gdbarch_init): Set "write_pc" to "mips_write_pc".
10575 (mips_read_pc): Use mips_regnum instead of PC_REGNUM.
10576 (mips_find_saved_regs, mips_software_single_step: Ditto.
10577 (mips_frame_saved_pc, mips_frame_saved_pc): Ditto.
10578 mips_init_extra_frame_info, mips_pop_frame): Ditto.
10579
10580 2004-01-17 Andrew Cagney <cagney@redhat.com>
10581
10582 * mips-tdep.c: Re-indent. Group functions by ABI.
10583
10584 2004-01-17 Andrew Cagney <cagney@redhat.com>
10585
10586 * gdbarch.sh (DECR_PC_AFTER_BREAK): Make zero the default.
10587 * gdbarch.c: Re-generate.
10588 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
10589 DECR_PC_AFTER_BREAK to zero.
10590 * vax-tdep.c (vax_gdbarch_init): Ditto.
10591 * v850-tdep.c (v850_gdbarch_init): Ditto.
10592 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
10593 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
10594 * sh-tdep.c (sh_gdbarch_init): Ditto.
10595 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
10596 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
10597 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
10598 * mips-tdep.c (mips_gdbarch_init): Ditto.
10599 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
10600 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10601 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
10602 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
10603 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
10604 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
10605 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
10606 * frv-tdep.c (frv_gdbarch_init): Ditto.
10607 * cris-tdep.c (cris_gdbarch_init): Ditto.
10608 * avr-tdep.c (avr_gdbarch_init): Ditto.
10609 * arm-tdep.c (arm_gdbarch_init): Ditto.
10610 * i386-nto-tdep.c (i386nto_init_abi): Add comment.
10611
10612 2004-01-17 J. Brobecker <brobecker@gnat.com>
10613
10614 * dwarf2read.c (dwarf2_non_const_array_bound_ignored_complaint):
10615 Delete, no longer used.
10616 (read_subrange_type): New function, mostly extracted from
10617 read_array_type().
10618 (read_array_type): Replace extracted code by call to
10619 read_subrange_type().
10620 (dwarf2_get_attr_constant_value): New function.
10621 (scan_partial_symbols): Add handling for DW_TAG_subrange_type.
10622 (add_partial_symbol): Likewise.
10623 (process_die): Likewise.
10624 (new_symbol): Likewise.
10625 (read_type_die): Likewise.
10626
10627 2004-01-16 Andrew Cagney <cagney@redhat.com>
10628
10629 * symfile.c: Update copyright year.
10630 (compare_symbols): Delete unused function.
10631 * stabsread.c: Update copyright year.
10632 (lrs_general_complaint): Delete unused function.
10633 (ref_search_value): Ditto.
10634 (get_substring): Delete declaration.
10635 * sh64-tdep.c: Update copyright year.
10636 (sh64_get_gdb_regnum): Delete unused function.
10637 * dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint):
10638 Delete unused function.
10639
10640 2004-01-17 Mark Kettenis <kettenis@gnu.org>
10641
10642 * defs.h (gdb_osabi): Add GDB_OSABI_OPENBSD_ELF.
10643 * osabi.c (gdb_osabi_names): Add "OpenBSD ELF".
10644
10645 2004-01-16 Andrew Cagney <cagney@redhat.com>
10646
10647 Changes from Peter Schauer.
10648 * rs6000-tdep.c: Update copyright year.
10649 (rs6000_push_dummy_call): Update the stack pointer before
10650 accessing the corresponding stack region.
10651 * rs6000-nat.c: Update copyright year.
10652 (set_host_arch): Set "info.abfd" to "exec_bfd".
10653
10654 2004-01-15 Mark Kettenis <kettenis@gnu.org>
10655
10656 * blockframe.c: Update copyright year.
10657 (inside_entry_func): Don't treat a zero PC specially.
10658
10659 2004-01-14 Elena Zannoni <ezannoni@redhat.com>
10660
10661 * gcore.c (gcore_copy_callback): Use paddr_d to print size
10662 variable.
10663 (gcore_create_callback): Ditto. Skip any memory segment that has
10664 no permissions set.
10665
10666 2004-01-14 David Carlton <carlton@kealia.com>
10667
10668 Change symbols for C++ nested types to contain the fully qualified
10669 name, if possible. (At least in the DWARF-2 case.) Partial fix
10670 for PR's c++/57, c++/488, c++/539, c++/573, c++/609, c++/832,
10671 c++/895.
10672 * c-exp.y (qualified_type): Handle types nested within classes.
10673 * cp-namespace.c: Update comments.
10674 (cp_set_block_scope): Delete #if 0.
10675 (cp_lookup_nested_type): Handle types nested within classes.
10676 * dwarf2read.c: (scan_partial_symbols): Call add_partial_structure
10677 when appropriate.
10678 (add_partial_symbol): Add the name of the enclosing namespace to
10679 types.
10680 (pdi_needs_namespace): New.
10681 (add_partial_namespace): Tweak comment.
10682 (add_partial_structure): New.
10683 (psymtab_to_symtab_1): Initialize processing_current_prefix
10684 here...
10685 (process_die): instead of here.
10686 (read_structure_scope): Try to figure out the name of the class or
10687 namespace that the structure might be defined within.
10688 (read_enumeration): Generate fully-qualified names, if possible.
10689 (read_namespace): Don't set name to NULL.
10690 (die_specification): New.
10691 (new_symbol): Generate fully-qualified names for types.
10692 (read_type_die): Determine appropriate prefix.
10693 (determine_prefix): New.
10694 (typename_concat): New.
10695 (class_name): New.
10696 * valops.c (value_aggregate_elt): Pass NOSIDE to
10697 value_struct_elt_for_reference.
10698 (value_struct_elt_for_reference): Make static, add NOSIDE
10699 parameter, call value_maybe_namespace_elt as a last resort.
10700 (value_namespace_elt): Break out code into
10701 value_maybe_namespace_elt.
10702 (value_maybe_namespace_elt): New.
10703
10704 2004-01-12 Andrew Cagney <cagney@redhat.com>
10705
10706 * mips-tdep.c (mips_convert_register_p): Handle both raw and
10707 cooked floating-point registers.
10708 (mips_gdbarch_init): Set convert_register_p, register_to_value,
10709 and value_to_register.
10710
10711 2004-01-13 Andrew Cagney <cagney@redhat.com>
10712
10713 * gdbarch.sh (FUNCTION_START_OFFSET): Make zero the default.
10714 * gdbarch.c: Re-generate.
10715 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
10716 FUNCTION_START_OFFSET.
10717 * v850-tdep.c (v850_gdbarch_init): Ditto.
10718 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
10719 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
10720 * sh-tdep.c (sh_gdbarch_init): Ditto.
10721 * s390-tdep.c (s390_gdbarch_init): Ditto.
10722 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
10723 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
10724 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
10725 * mips-tdep.c (mips_gdbarch_init): Ditto.
10726 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
10727 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
10728 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10729 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
10730 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
10731 * i386-tdep.c (i386_gdbarch_init): Ditto.
10732 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
10733 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
10734 * frv-tdep.c (frv_gdbarch_init): Ditto.
10735 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
10736 * cris-tdep.c (cris_gdbarch_init): Ditto.
10737 * avr-tdep.c (avr_gdbarch_init): Ditto.
10738 * arm-tdep.c (arm_gdbarch_init): Ditto.
10739 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
10740
10741 2004-01-13 Daniel Jacobowitz <drow@mvista.com>
10742
10743 * infrun.c (follow_fork_mode_ask): Remove.
10744 (follow_fork_mode_kind_names): Remove follow_fork_mode_ask.
10745 (follow_fork): Simplify and remove internal error for
10746 follow_fork_mode_ask.
10747 (_initialize_infrun): Update "set follow-fork-mode" help text.
10748
10749 2004-01-13 Andrew Cagney <cagney@redhat.com>
10750
10751 * configure.in: Update copyright year.
10752 (build_warnings): Add -Wunused-label.
10753 * configure: Re-generate.
10754
10755 2004-01-12 Andrew Cagney <cagney@redhat.com>
10756
10757 * exec.h (exec_ops): Make "extern".
10758
10759 * mips-tdep.c (mips_pseudo_register_read): Don't return a value,
10760 the function is void.
10761 (mips_pseudo_register_write): Ditto.
10762
10763 2004-01-12 Andrew Cagney <cagney@redhat.com>
10764
10765 * stack.c (frame_info): Delete DEPRECATED_PRINT_EXTRA_FRAME_INFO
10766 call. Never defined.
10767 * sparc-tdep.h (struct frame_info): Add opaque declaration.
10768 * sparc64-tdep.h (struct gdbarch): Add opaque declaration.
10769 (struct sparc_gregset, struct regcache): Ditto.
10770 * sparc-nat.c: Update copyright. Specify "GNU/Linux".
10771
10772 2004-01-12 Andrew Cagney <cagney@redhat.com>
10773
10774 * mi/ChangeLog: Delete file. Renamed to ...
10775 * mi/ChangeLog-1999-2003: New file.
10776 * tui/ChangeLog: Delete file. Renamed to ...
10777 * tui/ChangeLog-1998-2003: New file.
10778
10779 2004-01-11 Mark Kettenis <kettenis@gnu.org>
10780
10781 * sparc64nbsd-tdep.c: Include "regset.h".
10782 (sparc64nbsd_sizeof_struct_reg, sparc64nbsd_sizeof_struct_fpreg):
10783 Remove variables.
10784 (fetch_core_registers): Remove function.
10785 (sparc64nbsd_core_fns): Remove variable.
10786 (sparc64nbsd_supply_gregset, sparc64nbsd_supply_fpregset): New
10787 functions.
10788 (sparc64nbsd_init_abi): Initialize TDEP->gregset,
10789 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
10790 (_initialize_sparc64nbsd_tdep): Remove call to add_core_fns.
10791
10792 * sparc-tdep.c (sparc32_extract_struct_value_address): Rename from
10793 sparc_extract_struct_value_address.
10794 (sparc32_gdbarch_init): Set extract_struct_value_address.
10795 * sparc64-tdep.c (sparc64_extract_struct_value_address): New
10796 function.
10797 (sparc64_init_abi): Set extract_struct_value_address. Don't set
10798 return_value_on_stack.
10799
10800 * NEWS: Mention that %cs and %ss have been added to the AMD64
10801 configurations
10802
10803 * frame.c: Update copyright year.
10804 (get_prev_frame): Improve comment.
10805
10806 * sparc64fbsd-tdep.c: Include "regset.h".
10807 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
10808 Remove variables.
10809 (fetch_core_registers): Remove function.
10810 (sparc64fbsd_core_fns): Remove variable.
10811 (sparc64fbsd_supply_gregset, sparc64fbsd_supply_fpregset): New
10812 functions.
10813 (sparc64fbsd_init_abi): Initialize TDEP->gregset,
10814 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
10815 (_initialize_sparc64fbsd_tdep): Remove call to add_core_fns.
10816
10817 * sparcnbsd-tdep.c: Include "regset.h".
10818 (fetch_core_registers): Remove function.
10819 (sparcnbsd_core_fns, sparcnbsd_elfcore_fns): Remove varaibles.
10820 (sparc32nbsd_supply_gregset, sparc32nbsd_supply_fpregset): New
10821 functions.
10822 (sparc32nbsd_init_abi): Initialize TDEP->gregset and
10823 TDEP->fpregset.
10824 (_initialize_sparcnbsd_tdep): Remove calls to add_core_fns.
10825
10826 * sparc-tdep.h (struct regset): Provide opaque declaration.
10827 (struct gdbarch_tdep): Add gregset, sizeof_gregset,
10828 fpregset and sizeof_fpregset members.
10829 * sparc-tdep.c (struct regset): Provide opaque declaration.
10830 (sparc_regset_from_core_section): New function.
10831 (sparc32_gdbarch_init): Initialize TDEP->gregset,
10832 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_fpregset.
10833 Set regset_from_core_section when appropriate.
10834
10835 2004-01-10 Mark Kettenis <kettenis@gnu.org>
10836
10837 * x86-64-tdep.c (amd64_non_pod_p): New function.
10838 (amd64_classify_aggregate): Return class memory for non-POD
10839 C++ structure types.
10840
10841 * x86-64-tdep.c (amd64_push_arguments): Add struct_return
10842 argument. Use it to reserve a register if necessary.
10843 (amd64_push_dummy_call): Pass STRUCT_RETURN in call to
10844 amd64_push_arguments.
10845
10846 * x86-64-tdep.c (amd64_classify_aggregate): Ignore static fields.
10847
10848 * x86-64-tdep.c (amd64_register_info): Add %cs and %ss. Adjust
10849 register numbers in comments.
10850 * x86-64-tdep.h: Update copyright year.
10851 (X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM, X86_64_XMM1_REGNUM):
10852 Adjust for addition of %cs and %ss.
10853 * amd64fbsd-nat.c: Update copyright year.
10854 (reg_offset): Add register offsets for %cs and %ss.
10855 * amd64fbsd-tdep.c: Update copyright year.
10856 (amd64fbsd_r_reg_offset): Add register offsets for %cs and %ss.
10857 (amd64fbsd_sc_reg_offset): Likewise.
10858 * x86-64-linux-nat.c: Update copyright year.
10859 (x86_64_linux_gregset64_reg_offset): Add register offsets for %cs
10860 and %ss.
10861 * amd64nbsd-nat.c: Update copyright year.
10862 (amd64nbsd32_r_reg_offset): Add register offsets for %cs and %ss.
10863 * amd64nbsd-tdep.c: Update copyright year.
10864 (amd64nbsd_r_reg_offset): Add register offsets for %cs and %ss.
10865 * x86-64-linux-tdep.c: Update copyright year.
10866 (user_to_gdb_regmap): Add mapping for %cs and %ss.
10867 (x86_64_linux_sc_reg_offset): Adjust for addition of %cs and %ss.
10868 * regformats/reg-x86-64.dat: Add %cs and %ss.
10869
10870 * blockframe.c (inside_entry_func): Reformat. Introduce new local
10871 variables to prevent long lines. Update comments to reflect
10872 reality.
10873
10874 2004-01-09 David Carlton <carlton@kealia.com>
10875
10876 Checked in by Elena Zannoni <ezannoni@redhat.com>.
10877 * dwarf2read.c (read_namespace): Pull out name-generating code
10878 into namespace_name. Rename previous_namespace to previous_prefix
10879 and processing_current_namespace to processing_current_prefix..
10880 (namespace_name): New function.
10881 (add_partial_symbol): Substitute uses of pdi->name with
10882 actual_name.
10883 * cp-support.h: Rename processing_current_namespace to
10884 processing_current_prefix.
10885 Update copyright year.
10886 * cp-namespace.c: Rename processing_current_namespace to
10887 processing_current_prefix.
10888 Update copyright year.
10889
10890 2004-01-09 Andrew Cagney <cagney@redhat.com>
10891
10892 * jv-valprint.c, ser-unix.c: Add missing copyright years.
10893
10894 2004-01-09 Mark Kettenis <kettenis@gnu.org>
10895
10896 * dbxread.c (read_dbx_symtab): Ignore N_PATCH stabs instead of
10897 complaining.
10898 (process_one_symbol): Deal with N_PATCH stabs.
10899
10900 2004-01-09 Elena Zannoni <ezannoni@redhat.com>
10901
10902 * dwarf2read.c (read_array_type): Discard FORTRAN_HACK macro and
10903 ifdeffed code.
10904 Update copyright year.
10905
10906 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
10907
10908 * config/pa/tm-hppa.h: Update extern declarations for
10909 hppa32_hpux_frame_saved_pc_in_sigtramp,
10910 hppa32_hpux_frame_base_before_sigtramp, and
10911 hppa32_hpux_frame_find_saved_regs_in_sigtramp.
10912
10913 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
10914
10915 * config/pa/tm-hppah.h: Update copyright years.
10916
10917 2004-01-08 Andrew Cagney <cagney@redhat.com>
10918
10919 * mips-tdep.c (mips_n32n64_reg_struct_has_addr): Delete function.
10920 (mips_o32_reg_struct_has_addr): Delete function.
10921 (mips_gdbarch_init): Update.
10922 (mips_extract_struct_value_address): Delete function.
10923
10924 2004-01-08 David Mosberger <davidm@hpl.hp.com>
10925
10926 * ia64-linux-tdep.c: Update GATE_AREA_END value to reflect
10927 reality.
10928
10929 2004-01-07 Andrew Cagney <cagney@redhat.com>
10930
10931 * mips-tdep.c (mips_gdbarch_init): Set elf_flags to the previous
10932 architecture's elf flags (when available).
10933
10934 * mips-tdep.c (mips_gdbarch_init): Move code determining the MIPS
10935 FPU to the start, check the MIPS FPU when looking for an old
10936 architecture.
10937 (set_mipsfpu_single_command): Update the architecture.
10938 (set_mipsfpu_double_command, set_mipsfpu_none_command): Ditto.
10939
10940 * mips-tdep.c (MIPS_DEFAULT_MASK_ADDRESS_P): Delete macro.
10941 (mips_mask_address_p): Add "tdep" parameter.
10942 (show_mask_address, mips_addr_bits_remove): Update.
10943 (mips_dump_tdep): Update.
10944 (MIPS_DEFAULT_STACK_ARGSIZE): Delete macro.
10945 (MIPS_STACK_ARGSIZE): Delete macro.
10946 (mips_stack_argsize, mips_eabi_push_dummy_call): Update.
10947 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call): Update.
10948 (mips_o64_push_dummy_call, mips_o32_return_value): Update.
10949 (mips_dump_tdep): Update.
10950 (MIPS_SAVED_REGSIZE): Delete macro.
10951 (MIPS_DEFAULT_SAVED_REGSIZE): Delete macro.
10952 (mips_saved_regsize, mips_eabi_use_struct_convention): Update.
10953 (mips_eabi_reg_struct_has_addr, mips_find_saved_regs): Update.
10954 (mips_frame_saved_pc, mips16_heuristic_proc_desc): Update.
10955 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call): Update.
10956 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update.
10957 (mips_pop_frame, return_value_location): Update.
10958 (mips_n32n64_return_value, mips_dump_tdep): Update.
10959
10960 * mips-tdep.c (mips_gdbarch_init): Clean up code selecting the
10961 MIPS ABI.
10962
10963 * mips-tdep.c: Update copyright.
10964 (mips_gdbarch_init): Merge two code blocks handling the register
10965 name and number layout.
10966
10967 2004-01-02 Pawel Ostrowski <pasza@zodiac.mimuw.edu.pl>
10968
10969 * tracepoint.c (validate_actionline): Fix segv at EOF
10970
10971 2004-01-07 Michael Chastain <mec.gnu@mindspring.com>
10972
10973 * hpread.c (hpread_read_struct_type): Call SET_FIELD_PHYSNAME
10974 properly for static fields.
10975
10976 2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
10977 Jason Molenda <jmolenda@apple.com>
10978
10979 * disasm.c: Update copyright to include 2004.
10980 (do_mixed_source_and_assembly): For uiout asm list
10981 and tuple cleanups, initialize to null_cleanup instead of
10982 NULL and do so prior to loop. Only reset when we close off
10983 the tuple/list. Move check for whether to close off the
10984 asm tuple/list to after dump_insns call where it will be run
10985 on each loop iteration.
10986
10987 2004-01-05 Andrew Cagney <cagney@redhat.com>
10988
10989 * ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
10990 should be a switch case and not a label.
10991 * mips-tdep.c (mips32_next_pc): Delete unused labels
10992 "greater_equal_branch" and "less_zero_branch".
10993 * jv-valprint.c (java_print_value_fields): Delete unused label
10994 "flush_it".
10995
10996 * target.c (unpush_target): Only close a target that is in the
10997 target stack.
10998
10999 2004-01-05 Mark Kettenis <kettenis@gnu.org>
11000
11001 * sparc-tdep.c (sparc_extract_struct_value_address): Get the
11002 address from [sp + 64] instead of %o2.
11003
11004 * frame.c (get_prev_frame): Don't try to unwind the PC. This
11005 fixes PR backtrace/1476.
11006
11007 2004-01-05 Andrew Cagney <cagney@redhat.com>
11008
11009 * libunwind-frame.h (struct frame_id): Add opaque declaration,
11010 move to start of file.
11011 * i386-tdep.h (struct regcache): Add opaque declaration.
11012 * config/ia64/nm-linux.h (struct target_ops): Add opaque
11013 declaration.
11014 * ia64-tdep.c (ia64_find_proc_info_x): Do not use __FUNCTION__.
11015 (ia64_gdbarch_init): Use "GNU/Linux" in comment.
11016 * win32-nat.c (fake_create_process): Use ISO C style definition.
11017 * stabsread.c (define_symbol): Delete #ifndef
11018 DEPRECATED_USE_REGISTER_NOT_ARG wrapper around
11019 stabs_argument_has_addr call, macro never defined.
11020
11021 2004-01-04 Michael Chastain <mec.gnu@mindspring.com>
11022
11023 * op50-rom.c: Delete.
11024 * w89k-rom.c: Delete.
11025 * Makefile.in: Remove references.
11026
11027 2004-01-04 Mark Kettenis <kettenis@gnu.org>
11028
11029 * x86-64-tdep.c: Update copyright year.
11030 (struct amd64_register_info): Rename from x86_64_register_info.
11031 (amd64_register_info): Rename from x86_64_register_info.
11032 (AMD64_NUM_REGS): Rename from X86_64_NUM_REGS.
11033 (amd64_register_name): Rename from x86_64_register_name.
11034 (amd64_register_type): Rename from x86_64_register_type.
11035 (amd64_dwarf_regmap): Rename from x86_64_dwarf_regmap.
11036 (amd64_dwarf_regmap_len): Rename from x86_64_dwarf_regmap_len.
11037 (amd64_dwarf_reg_to_regnum): Rename from
11038 x86_64_dwarf_reg_to_regnum.
11039 (amd64_convert_register_p): Rename from x86_64_convert_register_p.
11040 (amd64_push_dummy_call): Rename from x86_64_push_dummy_call.
11041 (AMD64_NUM_SAVED_REGS): Rename from X86_64_NUM_SAVED_REGS.
11042 (struct amd64_frame_cache): Renamed from x86_64_frame_cache.
11043 (amd64_alloc_frame_cache): Renamed from x86_64_alloc_frame_cache.
11044 (amd64_analyze_prologue): Rename from x86_64_analyze_prologue.
11045 (amd64_skip_prologue): Rename from x86_64_skip_prologue.
11046 (amd64_frame_cache): Rename from x86_64_frame_cache.
11047 (amd64_frame_this_id): Rename from x86_64_frame_this_id.
11048 (amd64_frame_prev_register): Rename from
11049 x86_64_frame_prev_register.
11050 (amd64_frame_unwind): Rename from x86_64_frame_unwind.
11051 (amd64_frame_sniffer): Rename from x86_64_frame_sniffer.
11052 (amd64_sigtramp_frame_cache): Rename from
11053 x86_64_sigtramp_frame_cache.
11054 (amd64_sigtramp_frame_prev_register): Rename from
11055 x86_64_sigtramp_frame_prev_register.
11056 (amd64_sigtramp_frame_unwind): Rename from
11057 x86_64_sigtramp_frame_unwind.
11058 (amd64_sigtramp_frame_sniffer): Rename from
11059 x86_64_sigtramp_frame_sniffer.
11060 (amd64_frame_base_address): Rename from x86_64_frame_base_address.
11061 (amd64_frame_base): Rename from x86_64_frame_base.
11062 (amd64_unwind_dummy_id): Rename from x86_64_unwind_dummy_id.
11063 (amd64_frame_align): Rename from x86_64_frame_align.
11064 (amd64_supply_fpregset): Rename from x86_64_supply_fpregset.
11065 (amd64_regset_from_core_section): Rename from
11066 x86_64_regset_from_core_section.
11067 (x86_64_init_abi): Update comments.
11068
11069 2004-01-04 Nick Roberts <nick@nick.uklinux.net>
11070
11071 * MAINTAINERS (write after approval): Add myself.
11072
11073 2004-01-04 Mark Kettenis <kettenis@gnu.org>
11074
11075 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
11076 `float' arguments.
11077
11078 2004-01-04 Mark Kettenis <kettenis@gnu.org>
11079
11080 * sparc64-tdep.c (sparc64_store_floating_fields): Update comment
11081 such that it mentions a specific version of GCC that exhibits this
11082 bug.
11083
11084 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11085
11086 * sparc64-tdep.c (sparc64_store_floating_fields): If TYPE is a
11087 structure that has a single `float' member, store it in %f1 in
11088 addition to %f0.
11089
11090 * sparc-sol2-nat.c: Add missing '\'.
11091
11092 * sparc-tdep.c (sparc32_return_value): New function.
11093 (sparc32_use_struct_convention, sparc32_return_value_on_stack):
11094 Remove functions.
11095 (sparc32_gdbarch_init): Set return_value, don't set
11096 extract_return_value, store_return_value, use_struct_convention
11097 and return_value_on_stack.
11098
11099 * sparc-sol2-nat.c: Add missing ')'.
11100
11101 2004-01-03 J. Brobecker <brobecker@gnat.com>
11102
11103 * infrun.c (handle_step_into_function): New function.
11104 (handle_inferior_event): Extract out some code into the new
11105 function above.
11106
11107 2004-01-03 J. Brobecker <brobecker@gnat.com>
11108
11109 * infrun.c (handle_inferior_event): Move the declaration of
11110 real_stop_pc inside the if blocks where it is used.
11111
11112 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11113
11114 * sparc64-tdep.c (sparc64_16_byte_align_p)
11115 (sparc64_store_floating_fields, sparc64_store_floating_fields):
11116 Use check_typedef to get subtypes of structures and unions.
11117 (sparc64_store_return_value): Fix calculation of the appropriate
11118 offset into VALBUF when storing a structure or union.
11119 (sparc64_return_value): New function.
11120 (sparc64_use_struct_convention): Remove function.
11121 (sparc64_init_abi): Set return_value, don't set
11122 extract_return_value, store_return_value and
11123 use_struct_convention.
11124
11125 2004-01-03 Eli Zaretskii <eliz@elta.co.il>
11126
11127 * config/djgpp/fnchange.lst: Add lines for COPYING.LIBGLOSS,
11128 bfd/doc/ChangeLog-9103, bfd/elf32-m68hc1x.c,
11129 gdb/config/alpha/xm-alphaosf.h,
11130 gdb/config/powerpc/tm-ppcle-eabi.h,
11131 gdb/config/rs6000/tm-rs6000-aix4.h, gdb/gdbtk/ChangeLog-2001,
11132 gdb/gdbtk/ChangeLog-2002, gdb/gdbtk/ChangeLog-2003,
11133 gdb/gdbtk/plugins/intel-pentium/intel-pentium.tcl.in,
11134 gdb/gdbtk/plugins/rhabout/rhabout.tcl.in, gdb/i386-linux-nat.c,
11135 gdb/ia64-aix-nat.c, gdb/ia64-aix-tdep.c, gdb/ia64-linux-nat.c,
11136 gdb/ia64-linux-nat.c, gdb/ppc-linux-tdep.c, gdb/ppc-linux-nat.c,
11137 gdb/sparc64nbsd-nat.c, gdb/sparc64nbsd-tdep.c,
11138 gdb/sparc64-linux-nat.c, gdb/sparc64-linux-tdep.c,
11139 gdb/sparc64-nat.c, gdb/sparc64-tdep.c, gdb/sparc64-sol2-tdep.c,
11140 gdb/sparc-sol2-nat.c, gdb/sparc-sol2-tdep.c,
11141 gdb/testsuite/gdb.gdbtk/, gdb/testsuite/gdb.mi/mi-var-child.exp,
11142 nclude/ChangeLog-9103, include/coff/ChangeLog-9103,
11143 include/elf/ChangeLog-9103, include/opcode/ChangeLog-9103,
11144 opcodes/ChangeLog-0001, opcodes/ChangeLog-0203,
11145 opcodes/openrisc-dis.c, opcodes/openrisc-desc.h,
11146 sim/frv/profile-fr550.c, sim/frv/profile-fr550.h,
11147 sim/sh64/sem-compact-switch.c, sim/sh64/sem-media-switch.c,
11148 sim/testsuite/sim/sh64/compact/ldsl-mach.cgs,
11149 sim/testsuite/sim/sh64/compact/ldsl-macl.cgs,
11150 sim/testsuite/sim/sh64/compact/stsl-mach.cgs, and
11151 sim/testsuite/sim/sh64/compact/stsl-macl.cgs.
11152 Remove lines for .cvsignore files.
11153
11154 2004-01-03 J. Brobecker <brobecker@gnat.com>
11155
11156 * infrun.c: Back out the previous change.
11157
11158 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11159
11160 * NEWS: Mention revised SPARC target. Add sparc-*-lynxos* and
11161 sparc-*-sunos4* to the list of REMOVED configurations.
11162
11163 * configure.tgt: Add back sparc-*-vxworks*.
11164 * remote-vxsparc.c: Remove all includes except for "defs.h",
11165 "regcache.h", "vx-share/ptrace.h" and "vx-share/regPacket.h".
11166 Include "sparc-tdep.h".
11167 (SPARC_R_G1): New define.
11168 (vxsparc_gregset): New variable.
11169 (ext_format_sparc): Remove extern declaration.
11170 (vx_read_register): Rewrite to use sparc32_supply_gregset and
11171 sparc32_supply_fpregset.
11172 (vx_write_register): Rewrite to use sparc32_collect_gregset,
11173 sparc_collect_rwindow and sparc32_collect_fpregset.
11174 * config/sparc/tm-vxworks.h: New file, based on recently removed
11175 tm-vxsparc.h.
11176 * config/sparc/vxworks.mt: New file, based on recently removed
11177 vxworks.mt.
11178
11179 2004-01-03 J. Brobecker <brobecker@gnat.com>
11180
11181 * infrun.c (handle_step_into_function): New function.
11182 (handle_inferior_event): Extract out some code into the new
11183 function above.
11184
11185 2004-01-02 Mark Kettenis <kettenis@gnu.org>
11186
11187 * Makefile.in (ALLDEPFILES): Remove sparc-linux-nat.c and
11188 sparcl-tdep.c. Add sparc-linux-tdep.c, sparc-sol2-nat.c,
11189 sparc-sol2-tdep.c, sparc-sol2-nat.c, sparc-sol2-tdep.c,
11190 sparc64-linux-nat.c, sparc64-linux-tdep.c, sparc64-nat.c,
11191 sparc64-sol2-tdep.c, sparc64-tdep.c, sparc64fbsd-nat.c,
11192 sparc64fbsd-tdep.c, sparcnbsd-nat.c, sparcnbsd-tdep.c.
11193 (sparc_nat_h): New variable.
11194 (sparcbsd_nat_h, sparcnbsd_tdep_h): Remove variables.
11195 (tm-sun4os4.h): Remove dependency.
11196 (sparcbsd-nat.o, sparc-linux-nat.o): Remove dependencies.
11197 (sparc64fbsd-nat.o, sparc64fbsd-tdep.o, sparc64nbsd-nat.o,
11198 sparc64-tdep.o, sparc-nat.o, sparcnbsd-nat.o, sparcnbsd-tdep.o,
11199 sparc-tdep.o): Update dependencies.
11200 (sparc-linux-tdep.o, sparc-sol2-nat.o, sparc-sol2-tdep.o,
11201 sparc64-linux-nat.o, sparc64-linux-tdep.o, sparc64-nat.o,
11202 sparc64-sol2-tdep.o, sparc64-tdep.o, sparc64nbsd-tdep.o): New
11203 dependencies.
11204 * configure.host: Remove existing sparc-*-lynxos*,
11205 sparc-*-solaris*, sparc-*-sunos4*, sparc-*-sunos5*, sparc-*-*,
11206 ultrasparc-*-freebsd, sparcv9-*-freebsd, sparc64-*-linux*,
11207 sparcv9-*-* and sparc64-*-* triplets. Add new sparc64-*-linux*,
11208 sparc-*-solaris2*, sparcv9-*-solaris2* and sparc64-*-solaris2*
11209 triplets.
11210 * configure.tgt: Remove exitsing sparc-*-aout*, sparc-*-coff*,
11211 sparc-*-elf*, sparc*-lynxos*, sparc-*-solars2*, sparc-*-sunos4*,
11212 sparc-*-sunos5*, sparc-*-vxworks*, sparc64-*linux*, sparc64-*-*,
11213 sparcv9-*-* and commented out sparc64-*-solars2* triplets. Add
11214 new sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*,
11215 sparc64-*-linux, sparc-*-solaris2*, sparcv9-*-solaris*,
11216 sparc64-*-solaris2* and sparc64-*-* triplets.
11217 * sparc64-tdep.c: Update copyright year. Include "inferior.h",
11218 "symtab.h" and "objfiles.h".
11219 (BIAS): Remove define.
11220 (X_OP, X_RD, X_A, X_COND, X_OP2, X_IMM22, X_OP3, X_I, X_DISP22)
11221 (X_DISP19): Remove macros.
11222 (sparc_fetch_instruction): Remove function.
11223 (struct gdbarch_tdep): Remove definition.
11224 (SPARC64_NUM_REGS, SPARC64_NUM_PSEUDO_REGS): Use ARRAY_SIZE.
11225 (sparc_breakpoint_from_pc): Remove function.
11226 (struct sparc64_frame_cache): Remove definition.
11227 (sparc64_alloc_frame_cache, sparc64_analyze_prologue,
11228 sparc64_unwind_pc): Remove functions.
11229 (sparc64_skip_prologue): Use `struct sparc_frame_cache' instead of
11230 `struct sparc64_frame_cache. Call sparc_analyze_prologue instead
11231 of sparc64_analyze_prologue. Mark constant as ULL instead of UL.
11232 (sparc64_frame_cache): Change return type to `struct
11233 sparc_frame_cache *'. Simply call sparc_frame_cache.
11234 (sparc64_frame_this_id, sparc64_frame_prev_register,
11235 sparc64_frame_base_address): Use `struct sparc_frame_cache'
11236 instead of `struct sparc64_frame_cache.
11237 (sparc_unwind_dummy_id, sparc_extract_struct_value_address,
11238 sparc_analyze_control_transfer, sparc_software_single_step,
11239 sparc64_gdbarch_init, sparc_supply_rwindow, sparc_fill_rwindow,
11240 _initialize_sparc64_tdep): Remove functions.
11241 (TSTATE_CWP, TSTATE_ICC, TSTATE_XCC): New macros.
11242 (PSR_S, PSR_ICC, PSR_VERS, PSR_IMPL, PSR_V8PLUS, PSR_XCC): New
11243 macros.
11244 (sparc64_supply_gregset, sparc64_collect_gregset,
11245 sparc64_supply_fpregset, sparc64_collect_fpregset): New functions.
11246 (sparc64_init_abi): New function.
11247 * sparc64-tdep.h: Update copyright year. Fix typo in multiple
11248 inclusion guard. Include "sparc-tdep.h".
11249 (BIAS): Define.
11250 (r_tstate_offset, r_fprs_offset): New defines.
11251 (enum sparc_regnum): Remove defenition.
11252 (enum sparc64_regnum): Reformat.
11253 (sparc_supply_rwindow, sparc_fill_rwindow): Remove prototypes.
11254 (sparc64_init_abi, sparc64_supply_gregset,
11255 sparc64_collect_gregset, sparc64_supply_fpregset,
11256 sparc64_collect_fpregset): New prototypes.
11257 (sparc64_sol2_gregset, sparc64nbsd_gregset, sparc64fbsd_gregset):
11258 Add extern declarations.
11259 (sparc64_sol2_init_abi): New prototype.
11260 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
11261 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
11262 prototypes.
11263 * sparc64fbsd-nat.c: Include "sparc-nat.h", don't include
11264 "sparnbsd-nat.h".
11265 (sparc64fbsd_reg_supplies_p, sparc64fbsd_fpreg_supplies_p): Remove
11266 functions.
11267 (_initialize_sparc64fbsd_nat): Remove initialization of
11268 sparcbsd_supply_reg, sparcbsd_fill_reg, sparcbsd_supply_fpreg,
11269 sparcbsd_fill_fpreg, sparcbsd_reg_supplies_p,
11270 sparcbsd_fpreg_supplies_p. Initialize sparc_gregset.
11271 * sparc64fbsd-tdep.c: Update copyright year. Include "frame.h",
11272 "frame-unwind.h", "trad-frame.h" and "gdb_assert.h".
11273 (sparc64fbsd_r_global_offset, sparc64fbsd_r_out_offset)
11274 (sparc64fbsd_r_fprs_offset, sparc64fbsd_r_tnpc_offset)
11275 (sparc64fbsd_r_tpc_offset, sparc64fbsd_r_tstate_offset)
11276 (sparc64fbsd_r_y_offset): Remove variables.
11277 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
11278 Make static and const.
11279 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
11280 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
11281 functions.
11282 (sparc64fbsd_gregset): New variable.
11283 (fetch_core_registers): Replace calls to sparc64fbsd_supply_reg
11284 and sparc64fbsd_supply_fpreg with calls to sparc64_supply_gregset
11285 and sparc64_supply_fpregset.
11286 (sparc64fbsd_pc_in_sigtramp, sparc64fbsd_sigtramp_frame_cache)
11287 (sparc64fbsd_sigtramp_frame_this_id)
11288 (sparc64fbsd_sigtramp_frame_prev_register): New functions.
11289 (sparc64fbsd_sigtramp_frame_unwind): New variable.
11290 (sparc64fbsd_sigtramp_frame_sniffer): New function.
11291 (sparc64fbsd_init_abi): Set pc_in_sigtramp, append
11292 sparc64fbsd_sigtramp_frame_sniffer. Call sparc64_init_abi.
11293 * sparcnbsd-tdep.c: Update copyright year. Include
11294 "floatformat.h", "frame.h", "frame-unwind.h", "symtab.h",
11295 "trad-frame.h" and "gdb_assert.h", don't include "target.h",
11296 "value.h" and "sparcnbsd-tdep.h".
11297 (REG32_OFFSET_PSR, REG32_OFFSET_PC, REG32_OFFSET_NPC)
11298 (REG32_OFFSET_Y, REG32_OFFSET_GLOBAL, REG32_OFFSET_OUT)
11299 (REG64_OFFSET_TSTATE, REG64_OFFSET_PC, REG64_OFFSET_NPC)
11300 (REG64_OFFSET_Y, REG64_OFFSET_GLOBAL, REG64_OFFSET_OUT): Remove
11301 defines.
11302 (sparcnbsd_gregset): New variable.
11303 (sparcnbsd_supply_reg32, sparcnbsd_supply_reg64)
11304 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64)
11305 (sparcnbsd_supply_fpreg32, sparcnbsd_supply_fpreg64)
11306 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64): Remove functions.
11307 (sparc32nbsd_sigtramp_start, sparc32nbsd_sigtramp_end): New
11308 variables.
11309 (sparc32nbsd_pc_in_sigtramp, sparc32nbsd_sigcontext_frame_cache)
11310 (sparc32nbsd_sigcontext_frame_this_id)
11311 (sparc32nbsd_sigcontext_frame_prev_register): New functions.
11312 (sparc32nbsd_sigcontext_frame_unwind): New variable.
11313 (sparc32nbsd_sigtramp_frame_sniffer): New function.
11314 (sparcnbsd_get_longjmp_target_32,
11315 sparcnbsd_get_longjmp_target_64): Remove functions.
11316 (sparcnbsd_aout_in_solib_call_trampoline): Rewrite.
11317 (sparcnbsd_init_abi_common, sparcnbsd_init_aout,
11318 sparcnbsd_init_elf): Remove.
11319 (sparcnbsd_init_abi, sparcnbsd_aout_init_abi)
11320 (sparcnbsd_elf_init_abi): New functions.
11321 (_initialize_sparcnbsd_tdep): New prototype.
11322 (_initialize_sparnbsd_tdep): Update.
11323 * config/sparc/fbsd.mh (NATDEPFILES): Remove sparcbsd-nat.o and
11324 corelow.o. Add sparc64-nat.o and sparc-nat.o.
11325 * config/sparc/fbsd.mt (TDEPFILES): Add sparc-tdep.o and corelow.o.
11326 * config/sparc/linux.mh: Update comment.
11327 (XM_FILE, HOST_IPC): Remove variables.
11328 (NATDEPFILES): Add sparc-sol2-nat.o and core-regset.o. Remove
11329 sparc-linux-nat.o.
11330 * config/sparc/linux.mt: Update comment.
11331 (TDEPFILES): Add sparc-sol2-tdep.o and sparc-linux-tdep.o.
11332 * config/sparc/nbsd.mt: Reformat.
11333 * config/sparc/nbsd64.mh: Update comment.
11334 (NATDEPFILES): Add sparc-nat.o.
11335 * config/sparc/nbsd64.mt: Update comment.
11336 (TDEPFILES): Add sparc64-tdep.o and sparc64nbsd-tdep.o.
11337 (TM_FILE): Set to tm-nbsd.h.
11338 * config/sparc/nbsdelf.mh: Update comment.
11339 (NATDEPFILES): Add sparc-nat.o.
11340 (XM_FILE): Delete.
11341 * config/sparc/nbsdaout.mh: Update comment.
11342 (NATDEPFILES): Add sparc-nat.o
11343 (XM_FILE): Delete.
11344 * config/sparc/nm-linux.h: Update copyright year. Don't include
11345 "config/nm-svr4.h" and "solib.h". Add protection against multiple
11346 inclusion.
11347 (KERNEL_U_SIZE): Remove define.
11348 (kernel_u_size): Remove prototype.
11349 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define.
11350 * config/sparc/nm-nbsd.h: Update copyright. Don't include
11351 "regcache.h".
11352 (CHILD_PREPARE_TO_STORE): Remove define.
11353 * config/sparc/nm-nbsdaout.h: Tweak some comments.
11354 * sparc-nat.c, sparc-tdep.c, sparc-tdep.h, sparc64nbsd-nat.c,
11355 sparcnbsd-nat.c: Rewrite files.
11356 * config/sparc/tm-linux.h, config/sparc/tm-nbsd.h: Rewrite files.
11357 * sparc-linux-nat.c, sparcbsd-nat.c, sparcbsd-nat.h,
11358 sparcnbsd-tdep.h: Remove files.
11359 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4os4.h,
11360 config/sparc/nm-sun4sol2.h, config/sparc/sp64.mt,
11361 config/sparc/sp64linux.mt, config/sparc/sp64sol2.mt,
11362 config/sparc/sparc-em.mt, config/sparc/sparclynx.mh,
11363 config/sparc/sparclynx.mt, config/sparc/sun4os4.mh,
11364 config/sparc/sun4os4.mt, config/sparc/sun4sol2.mh,
11365 config/sparc/sun4sol2.mt, config/sparc/tm-sp64.h,
11366 config/sparc/tm-sp64linux.h, config/sparc/tm-sparc.h,
11367 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
11368 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
11369 config/sparc/tm-vxsparc.h, config/sparc/vxsparc.mt,
11370 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h: Remove files.
11371 * sparc-linux-tdep.c, sparc-nat.h, sparc-sol2-nat.c,
11372 sparc-sol2-tdep.c, sparc64-linux-nat.c, sparc64-linux-t dep.c,
11373 sparc64-nat.c, sparc64-sol2-tdep.c, sparc64nbsd-tdep.c: New files.
11374 * config/sparc/linux64.mh, config/sparc/linux64.mt,
11375 config/sparc/nm-sol2.h, config/sparc/sol2-64.mt,
11376 config/sparc/sol2.mh, config/sparc/sol2.mt, config/sparc/sparc.mt,
11377 config/sparc/sparc64.mt, config/sparc/tm-sol2.h: New files.
11378
11379 2004-01-02 Andrew Cagney <cagney@redhat.com>
11380
11381 From 2003-12-18 Kazuhiro Inaoka:
11382 * configure.host: Add m32r-linux target.
11383
11384 2004-01-02 Michael Chastain <mec.gnu@mindspring.com>
11385
11386 * top.c (print_gdb_version): Update year to 2004.
11387
11388 2004-01-02 Mark Mitchell <mark@codesourcery.com>
11389
11390 * MAINTAINERS: Add myself to the write-after-approval category.
11391
11392 2004-01-02 Daniel Jacobowitz <drow@mvista.com>
11393
11394 From Bernardo Innocenti <bernie@develer.com>:
11395 * configure.tgt: Add uClinux target.
11396
11397 2004-01-02 Andrew Cagney <cagney@redhat.com>
11398
11399 * utils.c (do_my_cleanups): Make static, add forward declaration.
11400 * defs.h (do_my_cleanups): Delete declaration.
11401
11402 2004-01-02 Eli Zaretskii <eliz@elta.co.il>
11403
11404 * config/djgpp/fnchange.lst: Add lines for gdb/ChangeLog-2003 and
11405 bfd/ChangeLog-0203.
11406
11407 2004-01-02 Mark Kettenis <kettenis@gnu.org>
11408
11409 * configure.in: Check for <machine/reg.h>. Check for `struct reg'
11410 in <machine/reg.h>.
11411 * configure, config.in: Regenerate.
11412
11413 For older changes see ChangeLog-2003, mi/ChangeLog-1999-2003, and
11414 tui/ChangeLog-1998-2003.
11415 \f
11416 Local Variables:
11417 mode: change-log
11418 left-margin: 8
11419 fill-column: 74
11420 version-control: never
11421 End:
This page took 0.264894 seconds and 5 git commands to generate.