67281603af5a501ecd5cf06c3483a10e2154545a
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2004-09-02 Andrew Cagney <cagney@gnu.org>
2
3 * gdbarch.sh: Delete check for consistency between GDB_MULTI_ARCH
4 and GDB_TM_FILE. Check for GDB_TM_FILE instead of
5 GDB_MULTI_ARCH_PARTIAL.
6 * gdbarch.h: Re-generate.
7
8 * config/sparc/tm-vxworks.h (GDB_MULTI_ARCH): Delete.
9 * config/sparc/tm-sol2.h (GDB_MULTI_ARCH): Delete.
10 * config/sparc/tm-nbsd.h (GDB_MULTI_ARCH): Delete.
11 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Delete.
12 * config/sparc/tm-fbsd.h (GDB_MULTI_ARCH): Delete.
13 * config/sh/tm-sh.h (GDB_MULTI_ARCH): Delete.
14 * config/rs6000/tm-rs6000.h (GDB_MULTI_ARCH): Delete.
15 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): Delete.
16 * config/mips/tm-mips.h (GDB_MULTI_ARCH): Delete.
17 * config/ia64/tm-ia64.h (GDB_MULTI_ARCH): Delete.
18 * config/cris/tm-cris.h (GDB_MULTI_ARCH): Delete.
19 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Delete.
20
21 2004-09-01 Andrew Cagney <cagney@gnu.org>
22
23 * objfiles.h (struct entry_info): Delete fields main_func_lowpc
24 and main_func_highpc.
25 (INVALID_ENTRY_LOWPC, INVALID_ENTRY_HIGHPC): Delete macros.
26 * objfiles.c (init_entry_point_info, objfile_relocate): Update
27 * nlmread.c (nlm_symfile_read): Update.
28
29 2004-09-01 Joel Brobecker <brobecker@gnat.com>
30
31 * mips-tdep.c (linked_proc_desc_table): Delete, not used.
32 (mips_insn32_frame_cache): Inline call to find_proc_desc.
33 (find_proc_desc): Remove dead code.
34
35 2004-09-01 Joel Brobecker <brobecker@gnat.com>
36
37 * mips-tdep.c (mips_mdebug_frame_cache): Minor reformatting.
38
39 2004-09-01 Jeff Johnston <jjohnstn@redhat.com>
40
41 * observer.sh: Add struct so_list declaration.
42 * Makefile.in: Add dependencies on observer.h for solib.c and
43 breakpoint.c.
44 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): New
45 function.
46 (_initialize_breakpoint): Register
47 disable_breakpoints_in_unloaded_shlib as an observer of the
48 "solib unloaded" observation event.
49 (re_enable_breakpoints_in_shlibs): For bp_shlib_disabled breakpoints,
50 call decode_line_1 so unfound breakpoint errors are silent.
51 * solib.c (update_solib_list): When a solib is discovered to have
52 been unloaded by the program, notify all observers of the
53 "solib unloaded" observation event.
54
55 2004-09-01 Andrew Cagney <cagney@gnu.org>
56
57 * frame.c: Include "objfiles.h".
58 (inside_main_func): New function.
59 (get_prev_frame): Use new inside_main_func.
60 * Makefile.in (frame.o): Update dependencies.
61 * defs.h (inside_main_func): Delete declaration.
62 * blockframe.c (inside_main_func): Delete function.
63
64 2004-08-31 Jim Blandy <jimb@redhat.com>
65
66 * dwarf2read.c (is_vtable_name): New function, based on logic from
67 read_structure_type, but passing the correct length to strncmp,
68 and using 'sizeof' instead of 'strlen'.
69 (read_structure_type): Call it.
70
71 2004-08-31 Joel Brobecker <brobecker@gnat.com>
72
73 * config/powerpc/aix.mh: Add comment.
74
75 2004-08-31 Paul GIlliam <pgilliam@us.ibm.com>
76
77 * MAINTAINERS: Add self to Write-After-Approval.
78
79 2004-08-30 Manoj Iyer <manjo@austin.ibm.com>
80
81 * MAINTAINERS: Add self to Write-After-Approval.
82
83 2004-08-30 Andrew Cagney <cagney@gnu.org>
84
85 Fix PR breakpoints/1757.
86 * infrun.c (struct execution_control_state): Replace
87 remove_breakpoints_on_following_step with
88 step_after_step_resume_breakpoint.
89 (init_execution_control_state): Update.
90 (handle_inferior_event): For signals, when stepping off a
91 breakpoint, set step_after_step_resume_breakpoint. When
92 BPSTAT_WHAT_STEP_RESUME, do a single-step off the breakpoint.
93 (keep_going): Delete code handling
94 remove_breakpoints_on_following_step.
95
96 2004-08-29 David Lecomber <david@streamline-computing.com>
97
98 Fix PR gdb/648
99 * language.h (enum array_ordering): New enum.
100 * language.h (struct language_defn): New la_array_ordering
101 attribute.
102 * language.c (unknown_language_defn, auto_language_defn)
103 (local_language_defn): Ditto.
104 * ada-lang.c (ada_language_defn): Ditto.
105 * c-lang.c (c_language_defn, cplus_language_defn)
106 (asm_language_defn, minimal_language_defn): Ditto.
107 * f-lang.c (f_language_defn): Ditto.
108 * jv-lang.c (java_language_defn): Ditto.
109 * m2-lang.c (f_language_defn): Ditto.
110 * objc-lang.c (objc_language_defn): Ditto.
111 * p-lang.c (pascal_language_defn): Ditto.
112 * scm-lang.c (scm_language_defn): Ditto.
113 * eval.c (evaluate_subexp_standard): Assume Fortran arrays are
114 oriented large to small in type structure.
115 * dwarf2read.c (read_array_order): New function.
116 (read_array_type): Use read_array_order to check row/column
117 major ordering.
118
119 2004-08-27 Nathan J. Williams <nathanw@wasabisystems.com>
120
121 * target.c (target_resize_to_sections): Check
122 current_target.to_sections for an old value when updating.
123
124 2004-08-27 Joel Brobecker <brobecker@gnat.com>
125
126 * procfs.c (dbx_link_bpt_addr): New static global variable.
127 (dbx_link_shadow_contents): New static global variable.
128 (procfs_wait, case <PR_SYSEXIT>): Handle syssgi events.
129 (procfs_wait, case <FLTBPT>): Remove the __dbx_link brekapoint
130 if we just hit it.
131 (procfs_init_inferior): Enable syssgi() syscall trace if appropriate.
132 Reset dbx_link_bpt_addr as the address of __dbx_link() may change
133 from run to run.
134 (procfs_create_inferior): Remove syssgi syscall-exit notifications
135 after the inferior has been forked.
136 (remove_dbx_link_breakpoint): New function.
137 (dbx_link_addr): New function.
138 (insert_dbx_link_bpt_in_file): New function.
139 (insert_dbx_link_bpt_in_region): New function.
140 (insert_dbx_link_breakpoint): New function.
141 (proc_trace_syscalls_1): New function, extracted from
142 proc_trace_syscalls.
143 (proc_trace_syscalls): Replace extract code by call to
144 proc_trace_syscalls_1.
145 * solib-irix.c (disable_break): Remove stop_pc assertion, as it
146 is no longer valid.
147
148 2004-08-25 Jim Blandy <jimb@redhat.com>
149
150 * gdbtypes.h (TYPE_CODE_ARRAY): Doc fix.
151
152 2004-08-25 Andrew Cagney <cagney@gnu.org>
153
154 * infrun.c (struct execution_control_state): Delete field
155 "stepping_through_sigtramp".
156 (init_execution_control_state): Do not set same.
157 (context_switch): Do not pass same to save_infrun_state and
158 load_infrun_state.
159 * gdbthread.h (struct thread_info): Delete field
160 stepping_through_sigtramp.
161 (save_infrun_state, load_infrun_state): Delete parameter
162 stepping_through_sigtramp.
163 * thread.c (load_infrun_state, save_infrun_state): Update.
164
165 * infrun.c: Re-indent. Move expression operators to the beginning
166 of the line. Remove long disabled #if 0 code.
167
168 2004-08-24 Andrew Cagney <cagney@gnu.org>
169
170 * doublest.h (floatformat_ieee_quad): Rename
171 floatformat_ia64_quad.
172 * doublest.c (floatformat_ieee_quad): Rename
173 floatformat_ia64_quad.
174 (_initialize_doublest): Update.
175
176 2004-08-24 Jim Blandy <jimb@redhat.com>
177
178 * dwarf2expr.h (struct dwarf_expr_context): New members
179 'num_pieces' and 'pieces', for returning the result of an
180 expression that uses DW_OP_piece.
181 (struct dwarf_expr_piece): New struct type.
182 * dwarf2expr.c (new_dwarf_expr_context): Initialize num_pieces and
183 pieces.
184 (free_dwarf_expr_context): Free pieces, if any.
185 (add_piece): New function.
186 (execute_stack_op): Implement DW_OP_piece.
187 * dwarf2loc.c (dwarf2_evaluate_loc_desc): If the result of the
188 expression is a list of pieces, print an error message.
189 (dwarf2_loc_desc_needs_frame): If the expression yields
190 pieces, and any piece is in a register, then we need a frame.
191
192 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Wait to fetch the top of
193 the stack until we've decided what sort of result the evaluation
194 has produced. Use separate variables, with more specific names.
195
196 2004-08-23 Richard Earnshaw <rearnsha@arm.com>
197
198 * armnbsd-tdep.c (arm_nbsd_arm_be_breakpoint): Define.
199 (arm_nbsd_thumb_[lb]e_breakpoint): Define.
200 (arm_netbsd_init_abi_common): Register them.
201
202 2004-08-22 Mark Kettenis <kettenis@gnu.org>
203
204 * config/vax/vax.mh (NATDEPFILES): Add vax-nat.c.
205
206 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Use
207 safe_frame_unwind_memory instead of target_read_memory.
208
209 * infptrace.c: Remove #ifdef'ed out inclusion of gdb_stat.h.
210 Reorder includes.
211 (fetch_register, store_register): Remove prototypes.
212 (child_resume): Reorganize code and comments such that it is
213 grouped a bit more logically.
214 (attach): Explicitly compare errno against 0.
215 (detach): Likewise. Use perror_with_name instead of
216 print_sys_errmsg.
217 * Makefile.in (infptrace.o): Update dependencies.
218
219 * ia64-linux-nat.c: Update copyright year.
220 (fetch_debug_register, store_debug_register)
221 (ia64_linux_stopped_by_watchpoint): Replace PTRACE_ARG3_TYPE with
222 PTRACE_TYPE_ARG3.
223 * config/ia64/nm-linux.h: Update copyright year.
224 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove defines.
225
226 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Change argument
227 from CORE_ADDR to struct frame_info *. Use
228 safe_frame_unwind_memory instead of deprecated_read_memory_nobpt.
229 (amd64_linux_sigtramp_p): Adjust for changed signature of
230 and64_linux_sigtramp_start
231
232 * gdb_ptrace.h: GNU/Linux.
233
234 * config/alpha/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
235 Remove defines.
236
237 * infptrace.c: Include "gdb_assert.h".
238 (PTRACE_XFER_TYPE): Remove define.
239 (offsetof): Only define if U_REGS_OFFSET isn't defined.
240 (fetch_register, store_register): Rewrite to use PTRACE_TYPE_RET.
241 Tweak comment.
242 (fetch_inferior_registers, store_inferior_registers): Remove
243 redundant culry braces. Tweak comment. s/regno/regnum.
244 * Makefile.in (infptrace.o): Update dependencies.
245
246 * configure.in: Change test for return type of ptrace to default
247 to `long' instead of `int'.
248 * configure: Regenerate.
249
250 2004-08-21 Mark Kettenis <kettenis@gnu.org>
251
252 * config/alpha/alpha-linux.mh (LOADLIBES): New variable.
253
254 * configure.in: Check for ttrace function.
255 * configure, config.in: Regenerate.
256
257 * gdb_ptrace.h: New file.
258 * infptrace.c: Include "gdb_ptrace.h" instead of <ptrace.h> or
259 <sys/ptrace.h>.
260 (PT_READ_I, PT_READ_D, PT_READ_U, PT_WRITE_I, PT_WRITE_D)
261 (PT_WRITE_U, PT_CONTINUE, PT_STEP, PT_KILL): Remove defines.
262 (attach): Don't define PT_ATTACH.
263 (detach): Don't define PT_DETACH.
264 * Makefile.in (gdb_ptrace_h): New variable.
265 (infptrace.o): Update dependencies.
266
267 2004-08-16 Mark Kettenis <kettenis@gnu.org>
268
269 * inferior.h (PTRACE_ARG3_TYPE): Define as PTRACE_TYPE_ARG3
270 instead of `int' if not already defined.
271 (call_ptrace): Revert change that replaced PTRACE_ARG3_TYPE with
272 PTRACE_TYPE_ARG3.
273 * infptrace.c (call_ptrace): Revert change that replaced
274 PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
275
276 2004-08-15 Mark Kettenis <kettenis@gnu.org>
277
278 * config/i386/nm-linux64.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
279 Remove defines.
280
281 * linux-nat.c (kill_inferior): Add missing third and fourth
282 arguments to ptrace call. Don't use PTRACE_ARG3_TYPE.
283
284 * infptrace.c (child_xfer_memory): Replace PTRACE_XFER_TYPE with
285 PTRACE_TYPE_RET.
286
287 * proc-why.c (proc_prettyfprint_why): Fix format string.
288
289 * solib-osf.c (osf_current_sos): Remove unsused label.
290
291 * configure.in: Add <ncurses/ncurses.h> to the list of possible
292 curses headers.
293 * configure, config.in: Regenerate.
294 * gdb_curses.h [HAVE_NCURSES_NCURSES_H]: Include
295 <ncurses/ncurses.h>.
296
297 * config/nm-bsd.h (PTRACE_ARG3_TYPE): Remove define.
298 * config/nm-nbsd.h: Update copyright year.
299 (PTRACE_ARG3_TYPE): Remove define.
300
301 * sparc-nat.c (fetch_inferior_registers)
302 (store_inferior_registers, sparc_xfer_wcookie):
303 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
304
305 * alphabsd-nat.c (fetch_inferior_registers):
306 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
307 PTRACE_TYPE_ARG3.
308 * amd64bsd-nat.c (fetch_inferior_registers)
309 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
310 PTRACE_TYPE_ARG3.
311 * armnbsd-nat.c: Update copyright year.
312 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs)
313 (store_register, store_regs, store_fp_register, store_fp_regs):
314 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
315 * hppabsd-nat.c (fetch_inferior_registers)
316 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
317 PTRACE_TYPE_ARG3.
318 * i386bsd-nat.c (fetch_inferior_registers)
319 (store_inferior_registers, i386bsd_dr_set, i386bsd_dr_get_status):
320 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
321 * m68kbsd-nat.c (fetch_inferior_registers)
322 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
323 PTRACE_TYPE_ARG3.
324 * m88kbsd-nat.c (fetch_inferior_registers)
325 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
326 PTRACE_TYPE_ARG3.
327 * mipsnbsd-nat.c: Update copyright year.
328 (fetch_inferior_registers, store_inferior_registers):
329 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
330 * ns32knbsd-nat.c: Update copyright year.
331 (fetch_inferior_registers, store_inferior_registers):
332 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
333 * ppcnbsd-nat.c (fetch_inferior_registers):
334 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
335 PTRACE_TYPE_ARG3.
336 * ppcobsd-nat.c (fetch_inferior_registers):
337 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
338 PTRACE_TYPE_ARG3.
339 * shnbsd-nat.c: Update copyright year.
340 (fetch_inferior_registers, store_inferior_registers):
341 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
342 * vaxbsd-nat.c (fetch_inferior_registers)
343 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
344 PTRACE_TYPE_ARG3.
345
346 * inferior.h (call_ptrace): Replace PTRACE_ARG3_TYPE with
347 PTRACE_TYPE_ARG3.
348 * infptrace.c (call_ptrace, child_resume, attach, detach)
349 (U_REGS_OFFSET, fetch_register, store_register, child_xfer_memory)
350 (udot_info): Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
351 * inftarg.c (ptrace_me): Replace PTRACE_ARG3_TYPE with
352 PTRACE_TYPE_ARG3.
353
354 2004-08-14 Mark Kettenis <kettenis@gnu.org>
355
356 * defs.h: Remove out-of-date comment.
357 [!FCLOSE_PROVIDED] (fclose): Remove prototype.
358 [!GETENV_PROVIDED] (getenv): Remove prototype.
359
360 * standalone.c: Remove file.
361 * Makefile.in (standalone.o): Remove dependency.
362
363 * i386-linux-nat.c (dummy_sse_values): Remove function and
364 prototype.
365 (i386_linux_dr_get): Fix typo in comment.
366 (LINUX_SYSCALL_REGNUM): Define as I386_EAX_REGNUM.
367
368 * config/i386/obsd64.mt (TDEPFILES): Add i386obsd-tdep.o.
369
370 * defs.h (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
371 from declaration.
372 * top.c (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
373 from definition.
374
375 2004-08-13 Mark Kettenis <kettenis@gnu.org>
376
377 * configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
378 parenthesis in definition.
379 * configure: Regenerated.
380
381 2004-08-12 Michael Chastain <mec.gnu@mindspring.com>
382
383 * PROBLEMS: Mention build/1411.
384
385 2004-08-09 Robert Millan <robertmh@gnu.org>
386
387 Committed by Nathanael Nerode.
388 * configure.host: Match kfreebsd*-gnu and knetbsd*-gnu.
389 * configure.tgt: Match kfreebsd*-gnu and knetbsd*-gnu.
390
391 2004-08-12 Andrew Cagney <cagney@gnu.org>
392
393 * NEWS: Mention fixes in GDB 6.2.1.
394 * PROBLEMS: Remove mention of mips-irix.
395
396 2004-08-11 Joel Brobecker <brobecker@gnat.com>
397
398 * config/powerpc/xm-aix.h: Delete.
399 * config/powerpc/aix.mh (MH_FILE): Remove.
400 * config/powerpc/aix432.mh (MH_FILE): Remove.
401
402 2004-08-11 Joel Brobecker <brobecker@gnat.com>
403
404 * config/powerpc/aix.mh: Remove obsolete comment.
405 * config/powerpc/aix432.mh: Likewise.
406
407 2004-08-11 Joel Brobecker <brobecker@gnat.com>
408
409 * config/powerpc/xm-aix.h (UINT_MAX): Remove undef.
410
411 2004-08-11 Joel Brobecker <brobecker@gnat.com>
412
413 * config/rs6000/xm-aix4.h: Remove "config/xm-aix4.h" include,
414 this file is now empty.
415 * config/xm-aix4.h: Remove, this file is no longer included
416 anywhere.
417
418 2004-08-11 Joel Brobecker <brobecker@gnat.com>
419
420 * config/powerpc/xm-aix.h: Remove "config/xm-aix4.h" include,
421 that file is now empty.
422 (termdef): Remove prototype, function no longer used.
423
424 2004-08-11 Joel Brobecker <brobecker@gnat.com>
425
426 * doc/gdbint.texinfo (Host Definition): Remove documentation
427 for USE_O_NOCTTY, no longer used.
428 * config/xm-aix4.h (USE_O_NOCTTY): Remove, no longer used.
429 * config/rs6000/xm-rs6000.h (USE_O_NOCTTY): Likewise.
430
431 2004-08-11 Joel Brobecker <brobecker@gnat.com>
432
433 * config/xm-aix4.h (FIVE_ARG_PTRACE): Remove, no longer used.
434 * config/pa/nm-hppah.h (FIVE_ARG_PTRACE): Likewise.
435 * config/rs6000/xm-rs6000.h (FIVE_ARG_PTRACE): Likewise.
436
437 2004-08-11 Mark Kettenis <kettenis@gnu.org>
438
439 * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5
440 instead of FIVE_ARG_PTRACE.
441
442 * inflow.c (O_NOCTTY): Define to zero if not already defined.
443 (new_tty): Use O_NOCTTY unconditionally.
444
445 2004-08-10 Mark Kettenis <kettenis@gnu.org>
446
447 * procfs.c (procfs_detach): Cleanup. Print process ID, not LWP
448 ID. Use comma in output. Use gdb_flush on gdb_stdout instead of
449 fflush on stdout.
450
451 2004-08-10 Joel Brobecker <brobecker@gnat.com>
452
453 * xcoff_symfile_finish: Replace last call to xmfree by call
454 to xfree.
455
456 2004-08-10 Andrew Cagney <cagney@gnu.org>
457
458 * main.c (captured_main): Delete call to init_malloc.
459 * defs.h (init_malloc): Delete declaration.
460 * utils.c (mmalloc, mrealloc, mcalloc, mfree)
461 (init_malloc): Delete functions.
462
463 * defs.h (xmfree): Delete.
464 * utils.c (xmfree): Delete function.
465 (xfree): Inline calls to xmfree and mfree.
466 * symmisc.c (free_symtab_block, free_symtab): Use xfree.
467 * symfile.c (reread_symbols, init_psymbol_list): Ditto.
468 * source.c (forget_cached_source_info, find_and_open_source): Ditto.
469 * somread.c (som_symfile_finish): Ditto.
470 * objfiles.c (allocate_objfile, free_objfile):
471 * nlmread.c (nlm_symfile_finish): Ditto.
472 * hpread.c (hpread_symfile_finish): Ditto.
473 * elfread.c (free_elfinfo, elf_symfile_finish): Ditto.
474 * dbxread.c (dbx_symfile_finish, free_bincl_list): Ditto.
475 * coffread.c (coff_symfile_finish): Ditto.
476
477 * defs.h (xmcalloc): Delete declaration.
478 * utils.c (xmcalloc): Delete.
479 (xcalloc): Inline calls to xmcalloc and mcalloc.
480 * ada-lang.c (_initialize_ada_language): Use htab_create_alloc,
481 xcalloc and xfree.
482 * symtab.c (create_demangled_names_hash): Ditto.
483
484 * defs.h (xmrealloc): Delete.
485 * utils.c (xmrealloc): Delete.
486 (xrealloc): Inline calls to xmrealloc, mmalloc and mrealloc.
487 * symmisc.c (extend_psymbol_list): Use xrealloc.
488 * source.c (find_source_lines): Ditto.
489 * hpread.c (hpread_lookup_type): Ditto.
490 * dbxread.c (add_bincl_to_list): Ditto.
491
492 * utils.c (xmmalloc): Delete.
493 (xmalloc): Inline xmmalloc and mmalloc calls.
494 (msavestring): Use xmalloc.
495 * defs.h (xmmalloc): Delete declaration.
496 * xcoffread.c (xcoff_symfile_init): Use xmalloc instead of
497 xmmalloc.
498 * symmisc.c (extend_psymbol_list): Ditto.
499 * symfile.c (init_psymbol_list): Ditto.
500 * source.c (find_source_lines): Ditto.
501 * hpread.c (hpread_symfile_init, hpread_lookup_type): Ditto.
502 * elfread.c (elf_symtab_read): Ditto.
503 * dbxread.c (dbx_symfile_init, init_bincl_list): Ditto.
504 * coffread.c (coff_symfile_init): Ditto.
505
506 2004-08-10 David Carlton <carlton@bactrian.org>
507
508 * MAINTAINERS: Remove David Carlton from c++ testsuite
509 maintainers.
510
511 2004-08-10 Jerome Guitton <guitton@gnat.com>
512
513 * symfile.c (symbol_file_add_with_addrs_or_offsets): Make sure to
514 print a line feed before the prompt.
515
516 2004-08-10 Mark Kettenis <kettenis@gnu.org>
517
518 * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP.
519
520 2004-08-09 Joel Brobecker <brobecker@gnat.com>
521
522 General cleanup of the AIX xm include file:
523 * config/xm-aix4.h (fd_set): Remove undefine.
524 Remove include of <sys/select.h>.
525 (HAVE_TERMIO): Remove define.
526 (USG): Likewise.
527 (NULL): Remove redefine.
528 (alloca): Remove #pragma.
529 (vfork): Remove define.
530 (termdef): Remove.
531 (SIGWINCH_HANDLER): Remove.
532 (SIGWINCH_HANDLER_BODY): Remove.
533
534 2004-08-09 Mark Kettenis <kettenis@gnu.org>
535
536 * configure.tgt (x86_64-*-openbsd*): Set gdb_osabi to
537 GDB_OSABI_OPENBSD_ELF.
538
539 2004-08-07 Robert Millan <robertmh@gnu.org>
540
541 * bsd-kvm.c: Check for nlist.h before including it.
542
543 2004-08-09 Mark Kettenis <kettenis@gnu.org>
544
545 * i386bsd-nat.c (_initialize_i386bsd_nat): Remove `struct
546 sigcontext' offset consistency checks for ancient BSD.
547
548 * gdb_curses.h [HAVE_CURSESX_H]: Include <cursesX.h>
549
550 * configure.in: Check for <sys/types.h>. Check return and
551 argument types of ptrace.
552 * configure, config.in: Regenerate.
553
554 2004-08-09 Jim Blandy <jimb@redhat.com>
555
556 * rs6000-tdep.c (set_sim_regno, init_sim_regno_table,
557 rs6000_register_sim_regno): Doc fixes.
558
559 2004-08-08 Joel Brobecker <brobecker@gnat.com>
560
561 * mips-tdep.c: Include "floatformat.h".
562 (n32n64_floatformat_always_valid): New function.
563 (floatformat_n32n64_long_double_big): New constant.
564 (mips_gdbarch_init): Set size and format of long double
565 for N32 and N64 ABIs.
566 * Makefile.in (mips-tdep.o): Update dependencies.
567
568 2004-08-08 Andrew Cagney <cagney@gnu.org>
569
570 * gdbarch.sh: Delete "fmt" and "attrib" fields. Always use %s to
571 print. Improve script's error messages.
572 * gdbarch.h: Re-generate.
573
574 * gdbarch.sh (pformat): New function.
575 (float_format, double_format, long_double_format): List with bit
576 members. Use pformat when printing.
577 * gdbarch.c, gdbarch.h: Re-generate.
578
579 2004-08-08 Nathan J. Williams <nathanw@wasabisystems.com>
580
581 * ppcnbsd-nat.c: Include <machine/frame.h>, <machine/pcb.h>,
582 "gdbcore.h", "regcache.h", and "bsd-kvm.h".
583 (ppcnbsd_supply_pcb): New function.
584 (_initialize_ppcnbsd_nat): New prototype and function.
585 * config/powerpc/nbsd.mh (NATDEPFILES): Add bsd-kvm.o.
586 (LOADLIBES): New variable.
587 * Makefile.in (ppcnbsd-nat.o): Update dependencies.
588
589 2004-08-08 Andrew Cagney <cagney@gnu.org>
590
591 * gdbtypes.c (builtin_type_arm_ext, builtin_type_ieee_single)
592 (builtin_type_ieee_double, builtin_type_ia64_quad)
593 (builtin_type_ia64_spill, _initialize_gdbtypes): Add tables of
594 BE/LE floating-point types.
595 * gdbtypes.h (builtin_type_arm_ext, builtin_type_ieee_single)
596 (builtin_type_ieee_double, builtin_type_ia64_quad)
597 (builtin_type_ia64_spill): Declare.
598 * doublest.c (_initialize_doublest, floatformat_ieee_single)
599 (floatformat_ieee_double, floatformat_arm_ext)
600 (floatformat_ia64_spill, floatformat_ia64_quad): Add tables
601 of LE/BE floatformats.
602 * doublest.h: (struct floatformat, floatformat_ieee_single)
603 (floatformat_ieee_double, floatformat_arm_ext)
604 (floatformat_ia64_spill, floatformat_ia64_quad): Declare.
605
606 2004-08-08 Mark Kettenis <kettenis@gnu.org>
607
608 * i386gnu-nat.c (gnu_store_registers): Fix typo.
609
610 * i386gnu-nat.c (gnu_store_registers): Use regcache_raw_collect
611 instead of regcache_raw_supply when storing the registers.
612
613 * i386gnu-nat.c: Update copyright year.
614 (gnu_store_registers): Don't use deprecated_registers and
615 deprecated_registers_valid. Use regcache_valid_p and
616 regcache_raw_supply instead.
617
618 * vax-tdep.c (vax_frame_this_id): Use frame_func_unwind instead of
619 frame_pc_unwind.
620
621 * procfs.c (procfs_pid_to_str): Remove redundant and unused
622 variables. Incapitalized "process".
623
624 * configure.in: Add cursesX to the list of possible curses libs.
625 Add cursesX.h to the list of possible curses headers.
626 * configure, config.in: Regenerate.
627
628 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
629
630 * configure.in: Test for struct lwp in <sys/lwp.h>.
631 * bsd-kvm.c (bsd_kvm_proc_cmd): If HAVE_STRUCT_LWP is defined, use
632 the offset of l_addr in struct lwp.
633
634 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
635
636 * bsd-kvm.c: Include "gdbcore.h"
637 (bsd_kvm_open): Use get_exec_file() to set 'execfile'.
638
639 2004-08-07 Andrew Cagney <cagney@gnu.org>
640
641 * gdbtypes.c (build_flt, build_complex): New functions.
642 (gdbtypes_post_init): Use.
643
644 * doublest.c (floatformat_from_length): Fix tipo, "*" not "&".
645
646 * gdbtypes.c (_initialize_gdbtypes): Do not swap builtin_type_int8
647 through to builtin_type_uint128.
648
649 * c-exp.y: Use builtin_type function to obtain builtin types.
650
651 * gdbtypes.h (struct builtin_type): Delete builtin_int0 through to
652 builtin_uint128.
653 * gdbtypes.c (gdbtypes_post_init): Update.
654 (build_gdbtypes): Move initialization of builtin_type_int0
655 through to builtin_type_uint128 from here ...
656 (_initialize_gdbtypes): ... to here.
657 * d10v-tdep.c (d10v_register_type): Update.
658
659 * doublest.c: Update copyright.
660 (floatformat_from_length): Call error when floatformat is NULL.
661 (extract_floating_by_length): Remove NULL fmt check.
662 (store_floating_by_length): Ditto.
663
664 2004-08-07 Andrew Cagney <cagney@gnu.org>
665
666 * regcache.c (regcache_raw_read): For the moment, #ifdef assert
667 that the register is valid.
668
669 2004-08-05 Mark Kettenis <kettenis@chello.nl>
670
671 * i386-linux-tdep.c (i386_linux_sigtramp_start)
672 (i386_linux_rt_sigtramp_start): Change argument from CORE_ADDR to
673 struct frame_info *. Use safe_frame_unwind_memory instead of
674 deprecated_read_memory_nobpt.
675 (i386_linux_sigtramp_p, i386_linux_sigcontext_addr): Adjust for
676 changed signature of i386_linux_sigtramp_start and
677 i386_linux_rt_sigtramp_start.
678
679 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Change argument from
680 CORE_ADDR to struct frame_info *. Use safe_frame_unwind_memory
681 instead of deprecated_read_memory_nobpt.
682 (i386nbsd_sigtramp_p): Adjust for changed signature of
683 i386nbsd_sigtramp_offset.
684
685 * i386obsd-tdep.c (i386obsd_sigtramp_p): Use
686 safe_frame_unwind_memory instead of target_read_memory.
687
688 * infptrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
689 !NO_SYS_FILE.
690 [KERNEL_U_ADDR_BSD]: Don't include <a.out.h>.
691 [KERNEL_U_ADDR_BSD] (kernel_u_addr): Remove variable.
692 (_initialize_kernel_u_addr): Remove prototype and function.
693 * infttrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
694 !NO_SYS_FILE.
695 * xcoffread.c: Likewise.
696
697 2004-08-06 Mark Kettenis <kettenis@gnu.org>
698
699 * vax-nat.c: New file.
700 * vaxbsd-nat.c: Tweak comment.
701 * Makefile.in (ALLDEPFILES): Add vax-nat.c, vaxbsd-nat.c and
702 vaxnbsd-tdep.c.
703 (vax-nat.o): New dependency.
704 * configure.host (vax-*-bsd*, vax-*-ultrix*): Set gdb_host to vax.
705 (vax-*-ultrix2*): Remove.
706 * config/vax/vax.mh: New file.
707 * config/vax/nm-vax.h (vax_kernel_u_addr): New extern declaration.
708 (KERNEL_U_ADDR): Define as vax_kernel_u_addr.
709 (vax_register_u_addr): New prototype.
710 (REGISTER_U_ADDR): Define using vax_register_u_addr.
711 * config/vax/vaxult2.mh: Remove file.
712 * config/vax/vaxult.mh: Remove file.
713 * config/vax/vaxbsd.mh: Remove file.
714 * config/vax/vax.mt (TM_FILE): Remove.
715 * config/vax/tm-vaxbsd.h: Remove file.
716
717 2004-08-06 Joel Brobecker <brobecker@gnat.com>
718
719 * aix-thread.c (get_signaled_thread): New function.
720 (iter_trap): Delete, no longer used.
721 (iter_tid): New function.
722 (pd_update): Find the thread that received the SIGTRAP signal
723 by first locating the kernel thread, and then finding its
724 associated thread.
725
726 2004-08-06 Ulrich Weigand <uweigand@de.ibm.com>
727
728 * lin-lwp.c (child_wait): Continue inferior after processing
729 PTRACE_EVENT_CLONE event.
730
731 2004-08-05 Nathanael Nerode <neroden@gcc.gnu.org>
732
733 * MAINTAINERS: Add self to Write-After-Approval.
734
735 2004-08-05 Jeff Johnston <jjohnstn@redhat.com>
736
737 * libunwind-frame.c (LIBUNWIND_SO): Change to be of form:
738 libunwind-xxxx.so" where xxxx is UNW_TARGET.
739
740 2004-08-05 Andrew Cagney <cagney@gnu.org>
741
742 * config/xm-sysv4.h: Delete file.
743 * config/mips/xm-irix5.h: Delete file.
744 * config/mips/irix6.mh (XM_FILE, XM_CLIBS): Delete.
745 * config/mips/irix5.mh (XM_FILE, XM_CLIBS): Delete.
746 * config/ia64/xm-aix.h: Delete file.
747 * config/ia64/aix.mh (XM_FILE): Delete.
748 * config/pa/xm-hppah.h: Delete file.
749 * config/pa/hpux11w.mh (XM_FILE): Delete.
750 * config/pa/hpux11.mh (XM_FILE): Delete.
751 * config/pa/hpux1020.mh (XM_FILE): Delete.
752 * config/pa/hppahpux.mh (XM_FILE): Delete.
753
754 * config/alpha/xm-alphalinux.h: Delete file.
755 * config/djgpp/fnchange.lst: Do not fix xm-alphalinux.h.
756 * config/alpha/alpha-linux.mh (XM_FILE, LOADLIBES): Delete.
757 * config/alpha/xm-alphaosf.h: Delete file.
758 * config/djgpp/fnchange.lst: Do not fix xm-alphaosf.h.
759 * config/alpha/alpha-osf3.mh (XM_FILE): Delete.
760 * config/alpha/alpha-osf2.mh (XM_FILE): Delete.
761 * config/alpha/alpha-osf1.mh (XM_FILE): Delete.
762
763 * config/i386/xm-i386v.h: Delete file.
764 * config/i386/i386v.mh (XM_FILE, XM_CLIBS): Delete.
765 * config/i386/i386sco5.mh (XM_FILE, XM_CLIBS): Delete.
766 * config/i386/xm-i386sco.h: Delete file.
767 * config/i386/i386sco4.mh (XM_FILE, XM_CLIBS, MH_CFLAGS): Delete.
768 * config/i386/i386sco.mh (XM_FILE, XM_CLIBS, CC): Delete.
769 * config/i386/xm-i386v4.h: Delete file.
770 * config/djgpp/fnchange.lst: Do not fix xm-i386v4.h.
771 * config/i386/ncr3000.mh (CC, CFLAGS, XM_FILE): Delete.
772 * config/i386/i386v42mp.mh (XM_FILE, XM_CLIBS): Delete.
773 * config/i386/i386v4.mh (XM_FILE, XM_CLIBS): Delete.
774
775 * config/vax/xm-vax.h: Delete file.
776 * Makefile.in (xm-vaxult.h, xm-vaxbsd.h): Delete.
777 * config/vax/xm-vaxult2.h: Delete file.
778 * config/djgpp/fnchange.lst: Do not fix xm-vaxult2.h.
779 * config/vax/vaxult2.mh (XM_FILE): Delete.
780 * config/vax/xm-vaxult.h: Delete file.
781 * config/vax/vaxult.mh (XM_FILE): Delete.
782 * config/vax/xm-vaxbsd.h: Delete file.
783 * config/vax/vaxbsd.mh (XM_FILE): Delete.
784
785 * gdbarch.sh (deprecated_frame_saved_pc): Delete.
786 * gdbarch.h, gdbarch.c: Re-generate.
787 * regcache.c (deprecated_read_fp, deprecated_write_sp): Delete.
788 * inferior.h (deprecated_read_fp, deprecated_write_sp): Delete.
789 * frame.h: Delete deprecated_read_fp from comments.
790 * arch-utils.c (deprecated_init_frame_pc_default): Delete.
791 * arch-utils.h (deprecated_init_frame_pc_default): Delete.
792
793 2004-08-04 Mark Kettenis <kettenis@gnu.org>
794
795 * i386obsd-tdep.c (i386obsd_sigtramp_p): Adjust for changed signal
796 trampoline in OpenBSD 3.5-current.
797
798 * i387-tdep.c (i387_supply_fsave): Provide summy values for the
799 SSE registers.
800
801 * Makefile.in: Remove embedded page breaks.
802
803 2004-08-04 Jim Blandy <jimb@redhat.com>
804
805 * regcache.c (regcache_raw_read): Assert that, after calling
806 target_fetch_registers, the register we're reading is cached.
807
808 * ppc-linux-nat.c (fetch_register): Replace 'gdb_assert (0)' with
809 a call to 'internal_error', with a more helpful error message.
810 * rs6000-tdep.c (e500_pseudo_register_read,
811 e500_pseudo_register_write, rs6000_store_return_value): Same.
812
813 2004-08-04 Andrew Cagney <cagney@gnu.org>
814
815 * Makefile.in: Update dependencies.
816
817 2004-08-04 Jim Blandy <jimb@redhat.com>
818
819 Change the layout of the PowerPC E500 raw register cache to allow
820 the lower 32-bit halves of the GPRS to be their own raw registers,
821 not pseudoregisters.
822 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_gprs_pseudo_p flag;
823 add ppc_ev0_upper_regnum flag.
824 * rs6000-tdep.c: #include "reggroups.h".
825 (spe_register_p): Recognize the ev upper half registers as SPE
826 registers.
827 (init_sim_regno_table): Build gdb->sim mappings for the upper-half
828 registers.
829 (e500_move_ev_register): New function.
830 (e500_pseudo_register_read, e500_pseudo_register_write): The 'ev'
831 vector registers are the pseudo-registers now, formed by splicing
832 together the gprs and the upper-half registers.
833 (e500_register_reggroup_p): New function.
834 (P): Macro deleted.
835 (P8, A4): New macro.
836 (PPC_EV_REGS, PPC_GPRS_PSEUDO_REGS): Macros deleted.
837 (PPC_SPE_GP_REGS, PPC_SPE_UPPER_GP_REGS, PPC_EV_PSEUDO_REGS): New
838 macros.
839 (registers_e500): Rearrange register set so that the raw register
840 set contains 32-bit GPRs and upper-half registers, and the SPE
841 vector registers become pseudo-registers.
842 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gprs_pseudo_p;
843 it has been deleted. Initialize ppc_ev0_upper_regnum. Many other
844 register numbers are now the same for the E500 as they are for
845 other PowerPC variants. Register e500_register_reggroup_p as the
846 register group function for the E500.
847 * Makefile.in (rs6000-tdep.o): Update dependencies.
848
849 Adapt PPC E500 native support to the new raw regcache layout.
850 * ppc-linux-nat.c (struct gdb_evrregset_t): Doc fixes.
851 (read_spliced_spe_reg, write_spliced_spe_reg): Deleted.
852 (fetch_spe_register, store_spe_register): Handle fetching/storing
853 all the SPE registers at once, if regno == -1. These now take
854 over the job of fetch_spe_registers and store_spe_registers.
855 (fetch_spe_registers, store_spe_registers): Deleted.
856 (fetch_ppc_registers, store_ppc_registers): Fetch/store gprs
857 unconditionally; they're always raw. Fetch/store SPE upper half
858 registers, if present, instead of ev registers.
859 (fetch_register, store_register): Remove sanity checks: gprs are
860 never pseudo-registers now, so we never need to even mention any
861 registers that are ever pseudoregisters.
862
863 Use a fixed register numbering when communicating with the PowerPC
864 simulator.
865 * ppc-tdep.h (struct gdbarch_tdep): New member: 'sim_regno'.
866 * rs6000-tdep.c: #include "sim-regno.h" and "gdb/sim-ppc.h".
867 (set_sim_regno, init_sim_regno_table, rs6000_register_sim_regno):
868 New functions.
869 (rs6000_gdbarch_init): Register rs6000_register_sim_regno. Call
870 init_sim_regno_table.
871 * Makefile.in (gdb_sim_ppc_h): New variable.
872 (rs6000-tdep.o): Update dependencies.
873
874 2004-08-02 Andrew Cagney <cagney@gnu.org>
875
876 * cris-tdep.c (cris_register_size): Restore function, still used
877 locally.
878
879 * gdbarch.sh (deprecated_target_read_fp)
880 (deprecated_frame_locals_address, deprecated_frame_args_address)
881 (deprecated_frame_chain_valid, deprecated_frame_chain)
882 (deprecated_init_extra_frame_info, deprecated_pop_frame)
883 (deprecated_frame_init_saved_regs, deprecated_get_saved_register)
884 (deprecated_do_registers_info, deprecated_init_frame_pc): Delete.
885 * gdbarch.h, gdbarch.c: Re-generate.
886 * regcache.c (deprecated_read_fp): Do not call
887 DEPRECATED_TARGET_READ_FP_P.
888 * infcmd.c (default_print_registers_info): Do not call
889 DEPRECATED_DO_REGISTERS_INFO.
890 * frame-base.c (default_frame_locals_address): Do not call
891 DEPRECATED_FRAME_LOCALS_ADDRESS.
892 (default_frame_args_address): Do not call
893 DEPRECATED_FRAME_ARGS_ADDRESS.
894
895 * gdbarch.sh (deprecated_register_raw_size)
896 (deprecated_register_virtual_size:int): Delete.
897 * gdbarch.h, gdbarch.c: Re-generate.
898 * cris-tdep.c (cris_register_size): Delete.
899 (cris_gdbarch_init): Update.
900 * alpha-tdep.c (alpha_register_raw_size)
901 (alpha_register_virtual_size): Delete.
902 (alpha_gdbarch_init): Update.
903
904 * gdbarch.sh (deprecated_register_virtual_type)
905 (deprecated_save_dummy_frame_tos, deprecated_push_return_address)
906 (deprecated_dummy_write_sp): Delete.
907 * gdbarch.h, gdbarch.c: Re-generate.
908
909 * gdbarch.sh (deprecated_register_bytes): Delete.
910 * gdbarch.h, gdbarch.c: Re-generate.
911 * regcache.c (deprecated_register_bytes): New function.
912 * regcache.h (deprecated_register_bytes): Declare.
913 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
914 * v850-tdep.c (v850_gdbarch_init): Update.
915 * sh64-tdep.c (sh64_gdbarch_init): Update.
916 * ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
917 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
918 * mcore-tdep.c (mcore_gdbarch_init): Update.
919 * cris-tdep.c (cris_gdbarch_init): Update.
920 * arm-tdep.c (arm_gdbarch_init): Update.
921 * remote.c (init_remote_state): Update.
922 * remote-vx.c (vx_prepare_to_store): Update.
923 * remote-sds.c (sds_fetch_registers, sds_prepare_to_store): Update.
924 * irix5-nat.c (fetch_core_registers): Update.
925 * cris-tdep.c (cris_register_bytes_ok): Update.
926 * config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
927
928 * mips-tdep.c (mips_gdbarch_init, mips_insn16_frame_cache)
929 (mips_insn16_frame_this_id, mips_insn16_frame_prev_register)
930 (mips_insn16_frame_unwind, mips_insn16_frame_sniffer)
931 (mips_insn16_frame_base_address, mips_insn16_frame_base)
932 (mips_insn16_frame_base_sniffer, mips_insn32_frame_cache)
933 (mips_insn32_frame_this_id, mips_insn32_frame_prev_register)
934 (mips_insn32_frame_unwind, mips_insn32_frame_sniffer)
935 (mips_insn32_frame_base_address, mips_insn32_frame_base)
936 (mips_insn32_frame_base_sniffer): Replace mips16 / mips32 prefix
937 with mips_insn16 and mips_insn32.
938
939 Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
940 * rs6000-tdep.c (rs6000_push_dummy_call)
941 (rs6000_extract_return_value): Use register_size.
942 * xstormy16-tdep.c (xstormy16_get_saved_register)
943 (xstormy16_extract_return_value): Ditto.
944 * valops.c (value_assign): Ditto.
945 * v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
946 * v850-tdep.c (v850_extract_return_value): Ditto.
947 * tracepoint.c (collect_symbol): Ditto.
948 * target.c (debug_print_register): Ditto.
949 * stack.c (frame_info): Ditto.
950 * rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
951 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
952 * remote.c (struct packet_reg, remote_wait, remote_async_wait)
953 (store_register_using_P): Ditto.
954 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
955 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
956 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
957 * remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
958 * regcache.c (deprecated_read_register_bytes)
959 (deprecated_write_register_bytes, read_register)
960 (write_register): Ditto.
961 * ppc-linux-nat.c (fetch_altivec_register, fetch_register)
962 (supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
963 * monitor.c (monitor_supply_register, monitor_fetch_register)
964 (monitor_store_register): Ditto.
965 * mn10300-tdep.c (mn10300_pop_frame_regular)
966 (mn10300_print_register): Ditto.
967 * mipsv4-nat.c (fill_fpregset): Ditto.
968 * mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
969 (mips64_fill_fpregset): Ditto.
970 * mi/mi-main.c (register_changed_p, get_register)
971 (mi_cmd_data_write_register_values): Ditto.
972 * lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
973 * irix5-nat.c (fill_gregset, fetch_core_registers):
974 * infrun.c (write_inferior_status_register): Ditto.
975 * infptrace.c (fetch_register, store_register): Ditto.
976 * infcmd.c (default_print_registers_info): Ditto.
977 * ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
978 * ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
979 * i386gnu-nat.c (gnu_store_registers, fill): Ditto.
980 * hpux-thread.c (hpux_thread_fetch_registers)
981 (hpux_thread_store_registers): Ditto.
982 * hppah-nat.c (store_inferior_registers, fetch_register):
983 * findvar.c (value_from_register): Ditto.
984 * dve3900-rom.c (fetch_bitmapped_register):
985 * cris-tdep.c (cris_gdbarch_init): Ditto.
986 * alpha-tdep.h: Ditto.
987 * aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
988
989 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_SIZE and
990 DEPRECATED_REGISTER_RAW_SIZE from comments.
991 * regcache.c (init_regcache_descr, regcache_dump): Do not check or
992 use DEPRECATED_REGISTER_VIRTUAL_SIZE and
993 DEPRECATED_REGISTER_RAW_SIZE.
994 * findvar.c (value_of_register): Simplify by assuming that the
995 registers raw and virtual sizes are identical.
996 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_TYPE in
997 comment.
998 * arch-utils.c (generic_register_size): Simplify by assuming
999 register_type.
1000
1001 * regcache.c (legacy_read_register_gen, real_register)
1002 (legacy_write_register_gen): Delete, not used.
1003
1004 * regcache.c (struct regcache_descr): Delete legacy_p.
1005 (init_legacy_regcache_descr): Delete function.
1006 (init_regcache_descr): Delete call to init_legacy_regcache_descr.
1007 Do not use deprecated register functions.
1008 (regcache_raw_read, deprecated_write_register_gen):
1009 (deprecated_read_register_gen, regcache_raw_write): Delete code
1010 predicated on legacy_p.
1011 (register_size): Delete check against register raw size.
1012
1013 * cris-tdep.c (cris_register_type): Replace
1014 cris_register_virtual_type.
1015 (cris_gdbarch_init): Update, set register_type.
1016
1017 * gdbarch.sh (deprecated_frameless_function_invocation): Delete.
1018 * gdbarch.h, gdbarch.c: Re-generate.
1019 * arm-tdep.c (arm_frameless_function_invocation): Delete.
1020 (arm_gdbarch_init) Do not set frameless function invocation.
1021 * frame.h (legacy_frameless_look_for_prologue): Delete declaration.
1022 * blockframe.c (legacy_frameless_look_for_prologue): Delete function.
1023 * frv-tdep.c (frv_frameless_function_invocation): Delete.
1024 (frv_gdbarch_init): Do not set frameless function invocation.
1025 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
1026 * sh-tdep.c (sh_gdbarch_init): Ditto.
1027 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
1028 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1029 * avr-tdep.c (avr_gdbarch_init): Ditto.
1030
1031 * blockframe.c (legacy_frame_chain_valid): Delete function.
1032
1033 * dummy-frame.c (struct dummy_frame): Delete call_lo, call_hi, top
1034 and pc. Update comments.
1035 (pc_in_dummy_frame): Delete function.
1036 (deprecated_pc_in_call_dummy): Inline old pc_in_dummy_frame code,
1037 use the "id".
1038 (dummy_frame_push, dummy_frame_sniffer): Instead of call_lo,
1039 call_hi, top and pc, use the id.
1040 (fprint_dummy_frames): Do not print call_lo, call_hi, top and pc.
1041
1042 * dummy-frame.c: Include "gdb_string.h".
1043 (generic_save_call_dummy_addr, generic_push_dummy_frame)
1044 (generic_save_dummy_frame_tos): Delete.
1045 (dummy_frame_push): New function, replaces above.
1046 * dummy-frame.h: Update copyright.
1047 (dummy_frame_push): Declare.
1048 * frame.h (generic_save_dummy_frame_tos, generic_push_dummy_frame)
1049 (generic_save_call_dummy_addr): Delete declarations.
1050 * infcall.c: Include "dummy-frame.h".
1051 (call_function_by_hand): Add locals caller_regcache,
1052 caller_regcache_cleanup and dummy_id. Replace push_dummy_frame
1053 with call to frame_save_as_regcache plus cleanup. Delete calls to
1054 generic_save_call_dummy_addr and generic_save_dummy_frame_tos.
1055 Move clear_proceed_status to just before the resume, add call to
1056 dummy_frame_push (discard cleanup).
1057 * Makefile.in (infcall.o): Add $(dummy_frame_h).
1058 (dummy-frame.o): Add $(gdb_string_h).
1059
1060 2004-08-01 Andrew Cagney <cagney@gnu.org>
1061
1062 * dummy-frame.h (dummy_frame_unwind): Replace dummy_frame_sniffer.
1063 * frame-unwind.c (frame_unwind_init): Use dummy_frame_unwind.
1064 * dummy-frame.c (find_dummy_frame): Delete.
1065 (struct dummy_frame_cache, dummy_frame_sniffer)
1066 (dummy_frame_prev_register, dummy_frame_this_id)
1067 (dummy_frame_unwinder, dummy_frame_unwind): Re-implement dummy
1068 frame unwinder using a dummy_frame_cache.
1069
1070 2004-08-01 Andrew Cagney <cagney@gnu.org>
1071
1072 * frame.h (frame_save_as_regcache): Declare.
1073 * frame.c (frame_save_as_regcache): New function.
1074 (do_frame_read_register): Replace do_frame_unwind_register.
1075 (frame_pop): Use frame_save_as_regcache.
1076 * dummy-frame.c (generic_push_dummy_frame): Use
1077 frame_save_as_regcache.
1078
1079 2004-08-01 Joel Brobecker <brobecker@gnat.com>
1080
1081 * dwarf2read.c (dwarf_decode_lines): Do not consider the current
1082 file as included until we record the first line in the linetable.
1083
1084 2004-08-01 Andrew Cagney <cagney@gnu.org>
1085
1086 * frame.h (deprecated_pop_dummy_frame)
1087 (deprecated_read_register_dummy)
1088 (deprecated_generic_find_dummy_frame): Delete.
1089 * dummy-frame.c (deprecated_generic_find_dummy_frame)
1090 (deprecated_read_register_dummy)
1091 (deprecated_find_dummy_frame_regcache)
1092 (discard_innermost_dummy)
1093 (deprecated_pop_dummy_frame): Delete.
1094 (dummy_frame_this_id): Simplify.
1095 (struct dummy_frame): Delete "fp" and "sp".
1096 (find_dummy_frame): Simplify.
1097 (generic_push_dummy_frame): Do not set "fp" or "sp".
1098 (fprint_dummy_frames): Do not print "fp" and "sp"
1099
1100 2004-08-01 Mark Kettenis <kettenis@gnu.org>
1101
1102 * i386-tdep.c (I386_MAX_INSN_LEN): New define.
1103 (struct i386_insn): New structure.
1104 (i386_match_insn): New function.
1105 (i386_frame_setup_skip_insns): New variable.
1106 (i386_analyze_frame_setup): Change to use i386_match_insn and the
1107 array i386_frame_setup_insns of instructions that should be
1108 skipped inside the frame setup sequence.
1109
1110 2004-08-01 Andrew Cagney <cagney@gnu.org>
1111
1112 * frame.h (deprecated_frame_xmalloc_with_cleanup)
1113 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
1114 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
1115 * stack.c (frame_info): Delete references to
1116 DEPRECATED_FRAME_INIT_SAVED_REGS and
1117 deprecated_get_frame_saved_regs.
1118 * frame.c (struct frame_info): Delete saved_regs and extra_info.
1119 (frame_pc_unwind): Do not use DEPRECATED_FRAME_SAVED_PC.
1120 (frame_register): Do not use DEPRECATED_GET_SAVED_REGISTER.
1121 (frame_unwind_register_signed)
1122 (frame_unwind_register_unsigned)
1123 (frame_unwind_unsigned_register): Use register_size.
1124 (create_new_frame): Do not use DEPRECATED_INIT_EXTRA_FRAME_INFO.
1125 (deprecated_frame_xmalloc_with_cleanup)
1126 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
1127 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
1128
1129 * sh-tdep.c (sh_gdbarch_init): Disable call to sh64_gdbarch_init.
1130 * config/sh/nbsd.mt (TDEPFILES): Remove sh64-tdep.o.
1131 * config/sh/linux.mt (TDEPFILES): Remove sh64-tdep.o.
1132 * config/sh/embed.mt (TDEPFILES): Remove sh64-tdep.o.
1133
1134 * infcall.c (call_function_by_hand): Do not use
1135 DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP,
1136 DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_TARGET_READ_FP,
1137 DEPRECATED_FP_REGNUM, DEPRECATED_STORE_STRUCT_RETURN, and
1138 DEPRECATED_STACK_ALIGN.
1139
1140 2004-07-30 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
1141
1142 Committed by Andrew Cagney.
1143 * arm-tdep.c: Remove references to add_setshow_cmd_full for apcs32 .
1144
1145 2004-08-01 Andrew Cagney <cagney@gnu.org>
1146
1147 * mips-tdep.c (mips16_frame_cache)
1148 (mips16_frame_this_id, mips16_frame_prev_register)
1149 (mips16_frame_unwind, mips16_frame_sniffer)
1150 (mips16_frame_base_address, mips16_frame_base)
1151 (mips16_frame_base_sniffer, mips32_frame_cache)
1152 (mips32_frame_this_id, mips32_frame_prev_register)
1153 (mips32_frame_unwind, mips32_frame_sniffer)
1154 (mips32_frame_base_address, mips32_frame_base)
1155 (mips32_frame_base_sniffer): Clone the mdebug unwinder into
1156 separate heuristic mips16 and mips32 unwinders.
1157 (mips_stub_frame_cache, mips_stub_frame_this_id)
1158 (mips_stub_frame_prev_register)
1159 (mips_stub_frame_unwind, mips_stub_frame_sniffer)
1160 (mips_stub_frame_base_address, mips_stub_frame_base)
1161 (mips_stub_frame_base_sniffer): Add a simple stub unwinder.
1162 (mips_mdebug_frame_base_sniffer, mips_mdebug_frame_sniffer): Only
1163 match true mdebug frames.
1164 (non_heuristic_proc_desc): Add forward declaration.
1165
1166 2004-08-01 Andrew Cagney <cagney@gnu.org>
1167
1168 * config/mips/tm-irix6.h: Delete file.
1169 * config/mips/tm-irix5.h: Delete file.
1170 * config/mips/irix5.mt (TM_FILE): Set to tm-mips.h
1171 * config/mips/irix6.mt (TM_FILE): Set to tm-mips.h
1172
1173 * config/ia64/tm-linux.h (IA64_GNULINUX_TARGET): Delete.
1174 * config/alpha/nm-osf2.h (PROCFS_SIGPEND_OFFSET): Delete.
1175 * config/nm-gnu.h (NO_CORE_OPS): Delete.
1176 * config/pa/nm-hppah.h (MAY_SWITCH_FROM_INFERIOR_PID): Delete.
1177 * config/i386/nm-i386v4.h (LOSING_POLL): Delete.
1178 * config/alpha/nm-osf2.h (LOSING_POLL): Delete.
1179 * config/tm-nto.h (RAW_SIGNAL_LO, RAW_SIGNAL_HI): Delete.
1180 * config/m68k/tm-vx68.h (VX_SIZE_FPREGS): Delete.
1181 * config/nm-linux.h (USE_THREAD_STEP_NEEDED): Delete.
1182 * config/pa/nm-hppah.h (USE_THREAD_STEP_NEEDED): Delete.
1183 * config/tm-nto.h (TARGET_SIGNAL_RAW_TABLE) Delete.
1184 (TARGET_SIGNAL_RAW_VALUES): Delete.
1185 * config/pa/nm-hppah.h (TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT):
1186 Delete.
1187 * config/frv/tm-frv.h (TARGET_HW_BREAK_LIMIT)
1188 (TARGET_HW_WATCH_LIMIT): Delete.
1189 * Makefile.in (minimon_h, HFILES_NO_SRCDIR): Remove minimon.h.
1190 * minimon.h: Delete file.
1191
1192 * trad-frame.c (trad_frame_get_this_base)
1193 (trad_frame_set_this_base, trad_frame_set_reg_realreg): New
1194 functions.
1195 * trad-frame.h (trad_frame_set_this_base)
1196 (trad_frame_get_this_base, trad_frame_set_reg_realreg): Declare.
1197
1198 2004-07-31 Andrew Cagney <cagney@gnu.org>
1199
1200 * trad-frame.c (trad_frame_get_prev_register): Rename
1201 trad_frame_get_prev_register.
1202 * vax-tdep.c (vax_frame_prev_register): Update.
1203 * trad-frame.h: Update.
1204 * trad-frame.c (trad_frame_get_register): Update.
1205 * sparcobsd-tdep.c (sparc32obsd_frame_prev_register): Update.
1206 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_prev_register):
1207 Update.
1208 * sparc64obsd-tdep.c (sparc64obsd_frame_prev_register): Update.
1209 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_prev_register):
1210 Update.
1211 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_prev_register):
1212 Update.
1213 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_prev_register):
1214 Update.
1215 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_prev_register):
1216 Update.
1217 * sparc-linux-tdep.c (sparc32_linux_sigtramp_frame_prev_register):
1218 Update.
1219 * s390-tdep.c (s390_frame_prev_register)
1220 (s390_stub_frame_prev_register)
1221 (s390_sigtramp_frame_prev_register): Update.
1222 * rs6000-tdep.c (rs6000_frame_prev_register): Update.
1223 * ppc-linux-tdep.c (ppc_linux_sigtramp_prev_register): Update.
1224 * mips-tdep.c (mips_mdebug_frame_prev_register): Update.
1225 * m88k-tdep.c (m88k_frame_prev_register)
1226 * m68hc11-tdep.c (m68hc11_frame_prev_register)
1227 * m32r-tdep.c (m32r_frame_prev_register): Update.
1228 * hppa-tdep.c (hppa_frame_prev_register_helper)
1229 * frv-tdep.c (frv_frame_prev_register): Update.
1230 * d10v-tdep.c (d10v_frame_prev_register): Update.
1231 * cris-tdep.c (cris_frame_prev_register): Update.
1232 * avr-tdep.c (avr_frame_prev_register): Update.
1233 * arm-tdep.c (arm_prologue_prev_register)
1234 (arm_sigtramp_prev_register): Update.
1235
1236 2004-07-31 Andrew Cagney <cagney@gnu.org>
1237
1238 * frame.h (legacy_saved_regs_unwind)
1239 (legacy_frame_chain_valid, legacy_frame_p)
1240 (enum frame_type): Delete UNKNOWN_FRAME.
1241 * dummy-frame.c (dummy_frame_this_id): Simplify.
1242 * frame-unwind.c (frame_unwind_find_by_frame): Simplify.
1243 * frame.c (struct frame_info): Delete the field "type".
1244 (legacy_saved_regs_prev_register, legacy_get_prev_frame)
1245 (legacy_saved_regs_this_id, legacy_saved_regs_unwinder)
1246 (legacy_saved_regs_unwind, legacy_frame_p)
1247 (frame_type_from_pc): Delete.
1248 (get_frame_id, frame_pop, frame_register_unwind, get_prev_frame_1)
1249 (fprint_frame, create_new_frame, fprint_frame_type): Simplify.
1250
1251 2004-07-31 Mark Kettenis <kettenis@gnu.org>
1252
1253 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Fix
1254 indentation.
1255
1256 * mips-nat.c: Remove file.
1257 * Makefile.in (ALLDEPFILES): Remove mips-nat.c
1258 (mips-nat.o): Remove dependency.
1259
1260 * infptrace.c: Update copyright year.
1261 (fetch_register): Pass NULL in regcache_raw_supply call instead of
1262 explicitly setting the buffer to all zeroes.
1263
1264 * sparc64obsd-tdep.c (sparc64obsd_sigreturn_offset): New variable.
1265 (sparc64obsd_pc_in_sigtramp): Reorganize to avoid goto.
1266
1267 2004-07-30 Andrew Cagney <cagney@gnu.org>
1268
1269 * GDB 6.2 released from gdb_6_2-branch.
1270
1271 2004-07-30 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
1272
1273 * defs.h (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH): New macros.
1274
1275 * exec.c (exec_file_attach):
1276 * nto-tdep.c (nto_find_and_open_solib):
1277 * pa64solib.c (pa64_solib_sizeof_symbol_table):
1278 * solib.c (solib_open):
1279 * somsolib.c (som_solib_sizeof_symbol_table):
1280 * source.c (is_regular_file, openp, open_source_file):
1281 * symfile.c (symfile_bfd_open):
1282 * wince.c (upload_to_device): Differentiate between the search for
1283 binary and source files.
1284
1285 2004-07-30 Andrew Cagney <cagney@gnu.org>
1286
1287 * complaints.c (_initialize_complaints): Pass NULL to
1288 add_setshow_zinteger_cmd for help_doc.
1289 * cli/cli-decode.c (add_setshow_cmd_full): Handle a NULL help_doc.
1290
1291 2004-07-30 Andrew Cagney <cagney@gnu.org>
1292
1293 Fix PR i18n/761.
1294 * Makefile.in (.SUFFIXES): Add po .gmo, and .pox.
1295 (.PHONY): Add all-po install-po, uninstall-po, clean-po,
1296 $(PACKAGE).pot and update-po.
1297 (all-po, .po.gmo, .po.pox, install-po, $(PACKAGE).pot)
1298 (po/$(PACKAGE).pot, clean-po, uninstall-po, install-po)
1299 (update-po): New rules.
1300 (localedir): Define using autoconf.
1301 (diststuff): Add $(PACKAGE).pot and $(CATALOGS)
1302 (GDB_CFLAGS): Define LOCALEDIR using $(localedir).
1303 (XGETTEXT, GMSGFMT, MSGMERGE, PACKAGE, CATALOGS): Define.
1304 * configure.in: Generate CATALOGS and LINGUAS from contents of
1305 src/gdb/po/ directory. Set @localedir@ in Makefile.in.
1306 * configure: Re-generate.
1307 * po/gdbtext: New file
1308
1309 2004-07-30 Jerome Guitton <guitton@gnat.com>
1310
1311 * MAINTAINERS: Reorder Write After Approval list in alphabetical
1312 order.
1313
1314 2004-07-30 David Lecomber <dsl@sources.redhat.com>
1315
1316 * dwarf2read.c (read_file_scope): Set producer if attribute
1317 present.
1318 (struct dwarf2_cu): Added new member producer.
1319
1320 2004-07-30 Jerome Guitton <guitton@gnat.com>
1321
1322 * inflow.c (kill_command): release file handles in BFD.
1323 * exec.c (exec_file_attach): Ditto.
1324 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
1325
1326 2004-07-29 Andrew Cagney <cagney@gnu.org>
1327
1328 * PROBLEMS (mips-irix): Note that it is broken.
1329
1330 2004-07-29 Andrew Cagney <cagney@gnu.org>
1331
1332 * config/mips/xm-irix5.h (REGISTER_U_ADDR): Move from here ...
1333 * config/mips/nm-irix5.h (REGISTER_U_ADDR): ... to here.
1334
1335 * config/xm-nbsd.h: Delete file.
1336 * config/arm/xm-nbsd.h: Delete file.
1337 * config/i386/xm-nbsd.h: Delete file.
1338 * config/ns32k/xm-nbsd.h: Delete file.
1339 * config/ns32k/nbsdaout.mh (XM_FILE): Delete.
1340 * config/i386/nbsdelf.mh (XM_FILE): Delete.
1341 * config/i386/nbsdaout.mh (XM_FILE): Delete.
1342 * config/arm/nbsdelf.mh (XM_FILE): Delete.
1343 * config/arm/nbsdaout.mh (XM_FILE): Delete.
1344
1345 * config/i386/xm-i386v.h (KERNEL_U_ADDR): Move from here ...
1346 * config/i386/nm-i386v42mp.h (KERNEL_U_ADDR): ... to here, ...
1347 * config/i386/nm-i386v4.h (KERNEL_U_ADDR): ... here, ...
1348 * config/i386/nm-i386v.h (KERNEL_U_ADDR): ... and here.
1349 * config/vax/xm-vax.h (KERNEL_U_ADDR): Move from here ...
1350 * config/vax/nm-vax.h (KERNEL_U_ADDR): ... to here.
1351
1352 * config/powerpc/xm-linux.h: Delete empty file.
1353 * config/powerpc/ppc64-linux.mh (XM_FILE): Delete.
1354 * config/powerpc/linux.mh (XM_FILE): Delete.
1355 * config/m68k/xm-linux.h: Delete empty file.
1356 * config/m68k/linux.mh (XM_FILE): Delete.
1357 * config/ia64/xm-linux.h: Delete empty file.
1358 * config/ia64/linux.mh (XM_FILE): Delete.
1359 * config/arm/xm-linux.h: Delete empty file.
1360 * config/arm/linux.mh (XM_FILE): Delete.
1361
1362 * config/powerpc/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1363 * config/powerpc/nm-linux.h (KERNEL_U_ADDR): ... to here.
1364 * config/m68k/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1365 * config/m68k/nm-linux.h (KERNEL_U_ADDR): ... to here.
1366 * config/ia64/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1367 * config/ia64/nm-linux.h (KERNEL_U_ADDR): ... to here.
1368 * config/arm/xm-linux.h (KERNEL_U_ADDR): Move from here ...
1369 * config/arm/nm-linux.h (KERNEL_U_ADDR): ... to here.
1370
1371 * config/m68k/xm-m68k.h: Delete file.
1372 * config/m68k/xm-linux.h: Do not include "m68k/xm-m68k.h". Update
1373 copyright.
1374 (HOST_LONG_DOUBLE_FORMAT): Delete macro.
1375 * config/pa/xm-linux.h: Delete empty file.
1376 * config/pa/linux.mh (XM_FILE): Delete.
1377 * config/i386/xm-i386.h: Delete empty file.
1378 * config/i386/xm-nbsd.h, config/i386/xm-go32.h: Do not include
1379 "i386/xm-i386.h".
1380 * config/i386/obsdaout.mh (XM_FILE): Delete.
1381 * config/i386/obsd64.mh (XM_FILE): Delete.
1382 * config/i386/fbsd64.mh (XM_FILE): Delete.
1383 * config/i386/nto.mh (XM_FILE): Delete.
1384 * config/i386/obsd.mh (XM_FILE): Delete.
1385 * config/i386/linux64.mh (XM_FILE): Delete.
1386 * config/i386/linux.mh (XM_FILE): Delete.
1387 * config/i386/i386sol2.mh (XM_FILE): Delete.
1388 * config/i386/i386gnu.mh (XM_FILE): Delete.
1389 * config/i386/fbsd.mh (XM_FILE): Delete.
1390 * config/i386/nbsd64.mh (XM_FILE): Delete.
1391
1392 2004-07-29 Andrew Cagney <cagney@gnu.org>
1393
1394 * config/pa/xm-linux.h: Do not include "floatformat.h".
1395 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1396 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
1397 * config/i386/xm-i386.h: Do not include "floatformat.h".
1398 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1399 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
1400 * doublest.c (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
1401 (HOST_LONG_DOUBLE_FORMAT): Delete macros. Use
1402 GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT and
1403 GDB_HOST_LONG_DOUBLE_FORMAT instead.
1404 * configure.in (GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT)
1405 (GDB_HOST_LONG_DOUBLE_FORMAT): Define.
1406 * configure, config.in: Regenerate.
1407 * configure.host (gdb_host_float_format, gdb_host_double_format)
1408 (gdb_host_long_double_format): Set according to the host.
1409
1410 2004-07-29 Andrew Cagney <cagney@gnu.org>
1411
1412 * Makefile.in (CONFIG_CLEAN): Delete duplicate definition.
1413
1414 2004-07-28 Andrew Cagney <cagney@gnu.org>
1415
1416 * PROBLEMS: Mention threads/1650.
1417 * NEWS: Mention the NPTL fix.
1418
1419 2004-07-28 Andrew Cagney <cagney@gnu.org>
1420
1421 * cli/cli-decode.c (add_setshow_cmd): Delete function.
1422 (add_setshow_cmd_full): Make static.
1423 * command.h (add_setshow_cmd, add_setshow_cmd_full): Delete.
1424 (add_setshow_filename_cmd, add_setshow_string_cmd): Declare.
1425 * cli/cli-decode.c (add_setshow_filename_cmd)
1426 (add_setshow_string_cmd): New functions.
1427 * nto-tdep.c (_initialize_nto_tdep): Update. Fix parameters.
1428 * mips-tdep.c (_initialize_mips_tdep): Update.
1429 * m32r-rom.c (_initialize_m32r_rom): Update. Update copyright.
1430 * cli/cli-logging.c (_initialize_cli_logging): Update.
1431 * complaints.c (_initialize_complaints): Update.
1432 * remote.c (_initialize_remote): Update.
1433
1434 2004-07-28 Andrew Cagney <cagney@gnu.org>
1435
1436 * cli/cli-decode.c (add_setshow_zinteger_cmd)
1437 (add_setshow_cmd, add_setshow_auto_boolean_cmd)
1438 (add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
1439 print parameters. Make string parameters constant.
1440 * command.h: Update. Update copyright.
1441 * remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
1442 * observer.c (_initialize_observer): Ditto.
1443 * frame.c (_initialize_frame): Ditto.
1444 * complaints.c (_initialize_complaints): Ditto.
1445 * maint.c (_initialize_maint_cmds): Ditto.
1446 * target.c (initialize_targets): Ditto.
1447 * cli/cli-logging.c (_initialize_cli_logging): Ditto.
1448 * infcall.c (_initialize_infcall): Ditto.
1449 * arm-tdep.c (_initialize_arm_tdep): Ditto.
1450 * m32r-rom.c (_initialize_m32r_rom): Ditto.
1451 * remote-rdi.c (_initialize_remote_rdi): Ditto.
1452 * d10v-tdep.c (_initialize_d10v_tdep): Ditto.
1453 * mips-tdep.c (_initialize_mips_tdep): Ditto.
1454
1455 2004-07-28 Andrew Cagney <cagney@gnu.org>
1456
1457 * gdbtypes.c (lookup_primitive_typename): Delete function.
1458 * gdbtypes.h (lookup_primitive_typename): Delete declaration.
1459 * ada-lex.l: Use language_lookup_primitive_type_by_name.
1460 * gdbtypes.c (lookup_typename): Ditto.
1461 * f-exp.y (yylex): Ditto.
1462 * c-exp.y (yylex): Ditto, eliminate assignment in "if".
1463
1464 * scm-lang.c (c_builtin_types): Delete extern declaration.
1465 (scm_language_defn): Replace
1466 string_char_type and primitive_type_vector with
1467 la_language_arch_info.
1468 * jv-lang.c (java_language_defn): Replace
1469 string_char_type and primitive_type_vector with
1470 la_language_arch_info.
1471 * config/i386/i386sco4.mh (NATDEPFILES): Remove reference to
1472 c_builtin_types in comment.
1473 * c-lang.h (struct language_arch_info): Declare opaque.
1474 (c_language_arch_info): Declare.
1475 (c_builtin_types): Delete declaration.
1476 * c-lang.c (c_language_arch_info): Set string_char_type to
1477 builtin_char, not builtin_true_char. Make global.
1478 (c_builtin_types): Delete array.
1479 (asm_language_defn, minimal_language_defn): Replace
1480 string_char_type and primitive_type_vector with
1481 la_language_arch_info.
1482
1483 2004-07-28 Andrew Cagney <cagney@gnu.org>
1484
1485 * gdbtypes.h (struct builtin_type): Rename true_char to
1486 builtin_true_char.
1487 * gdbtypes.c (gdbtypes_post_init): Update.
1488 * c-lang.c (arch_info): New function.
1489 (enum c_primitive_types): New enum.
1490 (c_language_defn): Instead of string_char_type and
1491 primitive_type_vector set la_language_arch_info.
1492
1493 2004-07-28 Andrew Cagney <cagney@gnu.org>
1494
1495 * language.h (struct language_arch_info): Fix typo
1496 s/primative/primitive/.
1497 * gdbtypes.c (lookup_primitive_typename): Ditto.
1498 * language.c (language_lookup_primitive_type_by_name)
1499 (unknown_language_arch_info): Ditto.
1500
1501 2004-07-27 Andrew Cagney <cagney@gnu.org>
1502
1503 * defs.h (enum language): Add nr_languages.
1504 * language.h (struct language_arch_info): Define.
1505 (struct language_defn): Add la_language_arch_info.
1506 (language_lookup_primative_type_by_name): Declare.
1507 (language_string_char_type): Declare.
1508 * language.c (_initialize_language, language_gdbarch_post_init)
1509 (struct language_gdbarch, language_gdbarch_data): Implement
1510 per-architecture language information.
1511 (unknown_language_arch_info, language_string_char_type)
1512 (language_lookup_primative_type_by_name): New functions.
1513 (unknown_language_defn, auto_language_defn)
1514 (local_language_defn): Set la_language_arch_info to
1515 unknown_language_arch_info.
1516 (unknown_builtin_types): Delete.
1517 * gdbtypes.c (lookup_primitive_typename): Use
1518 language_lookup_primative_type_by_name.
1519 (create_string_type): Use language_string_char_type.
1520 * values.c (value_from_string): Use language_string_char_type.
1521 * scm-lang.c (scm_language_defn): Add NULL la_language_arch_info.
1522 * p-lang.c (pascal_language_defn): Ditto.
1523 * m2-lang.c (m2_language_defn): Ditto.
1524 * jv-lang.c (java_language_defn): Ditto.
1525 * objc-lang.c (objc_language_defn): Ditto.
1526 * f-lang.c (f_language_defn): Ditto.
1527 * c-lang.c (c_language_defn, cplus_language_defn)
1528 (asm_language_defn, minimal_language_defn): Ditto.
1529
1530 2004-07-27 Andrew Cagney <cagney@gnu.org>
1531
1532 * gdbtypes.h (struct builtin_type): Declare.
1533 (builtin_type): Declare.
1534 * d10v-tdep.c (d10v_register_type): Use builtin_type.
1535 * gdbtypes.c (_initialize_gdbtypes): Register gdbtypes_post_init.
1536 (gdbtypes_post_init): New function.
1537 (builtin_type): New function.
1538
1539 2004-07-27 Kei Sakamoto <sakamoto.kei@renesas.com>
1540
1541 * remote-m32r-sdi.c: Fix breakpoint bug.
1542 (send_cmd, send_one_arg_cmd, send_two_arg_cmd, send_three_arg_cmd,
1543 recv_char_data, recv_long_data): New functions to replace communication
1544 sequences.
1545
1546 2004-07-26 Michael Chastain <mec.gnu@mindspring.com>
1547
1548 Document PR threads/1650.
1549 * PROBLEMS (Threads): Document problem with many threads
1550
1551 2004-07-26 Andrew Cagney <cagney@gnu.org>
1552
1553 * gdb-mi.el: Move from here ...
1554 * mi/gdb-mi.el: ... to here.
1555
1556 2004-07-26 Andrew Cagney <cagney@gnu.org>
1557
1558 Problem reported by Ashley Pittman <ashley@quadrics.com>.
1559 * main.c (captured_main): When in batch mode always detach.
1560
1561 2004-07-26 Andrew Cagney <cagney@gnu.org>
1562
1563 * MAINTAINERS: Mark the xstormy16, sh64, ns32k, mn10300, mcore,
1564 and h8300 as broken.
1565 * NEWS: END-OF-LIFE frame compatibility module.
1566 * PROBLEMS: For "Stack backtraces", remove powerpc, hppa and mips
1567 specific comments.
1568
1569 2004-07-26 Andrew Cagney <cagney@gnu.org>
1570
1571 * cli/cli-decode.c (deprecated_add_show_from_set): Deprecate.
1572 * xcoffsolib.c (_initialize_xcoffsolib): Update.
1573 * wince.c (_initialize_wince): Update.
1574 * win32-nat.c (_initialize_win32_nat): Update.
1575 * varobj.c (_initialize_varobj): Update.
1576 * valops.c (_initialize_valops): Update.
1577 * utils.c (initialize_utils, initialize_utils): Update.
1578 * tui/tui-win.c (_initialize_tui_win): Update.
1579 * top.c (init_main): Update.
1580 * symfile.c (_initialize_symfile): Update.
1581 * source.c (_initialize_source): Update.
1582 * somsolib.c (_initialize_som_solib): Update.
1583 * solib.c (_initialize_solib): Update.
1584 * solib-frv.c (_initialize_frv_solib): Update.
1585 * serial.c (_initialize_serial): Update.
1586 * ser-go32.c (_initialize_ser_dos, _initialize_ser_dos): Update.
1587 * remote.c (_initialize_remote, _initialize_remote): Update.
1588 * remote-vx.c (_initialize_vx): Update.
1589 * remote-utils.c (_initialize_sr_support): Update.
1590 * remote-sds.c (_initialize_remote_sds): Update.
1591 * remote-mips.c (_initialize_remote_mips): Update.
1592 * remote-e7000.c (_initialize_remote_e7000): Update.
1593 * proc-api.c (_initialize_proc_api): Update.
1594 * printcmd.c: Update.
1595 * parse.c (_initialize_parse): Update.
1596 * pa64solib.c (_initialize_pa64_solib): Update.
1597 * p-valprint.c (_initialize_pascal_valprint): Update.
1598 * monitor.c (_initialize_remote_monitors): Update.
1599 * mips-tdep.c (_initialize_mips_tdep): Update.
1600 * mcore-tdep.c (_initialize_mcore_tdep): Update.
1601 * maint.c (_initialize_maint_cmds): Update.
1602 * lin-lwp.c (_initialize_lin_lwp): Update.
1603 * language.c (_initialize_language): Update.
1604 * kod.c (_initialize_kod): Update.
1605 * infrun.c (set_schedlock_func, _initialize_infrun): Update.
1606 * i386-tdep.c (_initialize_i386_tdep): Update.
1607 * gdbtypes.c (build_gdbtypes, _initialize_gdbtypes): Update.
1608 * gdbarch.sh: Update.
1609 * gdbarch.c: Re-generate.
1610 * gdb-events.sh: Update.
1611 * gdb-events.c: Re-generate.
1612 * frame.c (_initialize_frame): Update.
1613 * exec.c: Update.
1614 * demangle.c (_initialize_demangler): Update.
1615 * dcache.c (_initialize_dcache): Update.
1616 * cris-tdep.c (_initialize_cris_tdep, cris_version_update): Update.
1617 * cp-valprint.c (_initialize_cp_valprint): Update.
1618 * corefile.c (_initialize_core): Update.
1619 * command.h: Update.
1620 * cli/cli-decode.h: Update.
1621 * cli/cli-cmds.c (init_cli_cmds): Update.
1622 * charset.c (_initialize_charset): Update.
1623 * breakpoint.c (_initialize_breakpoint): Update.
1624 * arm-tdep.c (_initialize_arm_tdep_initialize_arm_tdep): Update.
1625 * alpha-tdep.c (_initialize_alpha_tdep): Update.
1626 * aix-thread.c (_initialize_aix_thread): Update.
1627
1628 2004-07-24 Mark Kettenis <kettenis@gnu.org>
1629
1630 Partial fix for PR backtrace/1718.
1631 * i386-tdep.c (i386_analyze_frame_setup): Handle more instructions
1632 that GCC migrates into the prolugue. Don't handle any
1633 instructions that clobber %ebx.
1634
1635 2004-07-23 Andrew Cagney <cagney@gnu.org>
1636
1637 Use regcache_raw_collect instead of regcache_collect.
1638 * regcache.h (regcache_collect): Delete declaration.
1639 * regcache.c (regcache_colect): Delete function.
1640 * win32-nat.c (do_child_store_inferior_registers): Update.
1641 * sol-thread.c (sol_thread_store_registers): Update.
1642 * shnbsd-tdep.c (shnbsd_fill_reg): Update.
1643 * rs6000-nat.c (store_register): Update.
1644 * remote.c (store_register_using_P, remote_store_registers): Update.
1645 * ppcnbsd-tdep.c (ppcnbsd_fill_reg): Update.
1646 * ppc-linux-nat.c (store_altivec_register, store_spe_register)
1647 (fill_vrregset, store_spe_registers, fill_gregset)
1648 (fill_gregset): Update.
1649 * nto-procfs.c (procfs_store_registers): Update.
1650 * mipsnbsd-tdep.c (mipsnbsd_fill_reg): Update.
1651 * mips-linux-tdep.c (fill_gregset, mips64_fill_gregset): Update.
1652 * m68klinux-nat.c (store_register, fill_gregset): Update.
1653 * m68k-tdep.c (fill_gregset): Update.
1654 * infptrace.c (store_register): Update.
1655 * i386-nto-tdep.c (i386nto_regset_fill): Update.
1656 * i386-linux-nat.c (store_register, fill_gregset): Update.
1657 * hppa-linux-nat.c (fill_gregset): Update.
1658 * go32-nat.c (store_register): Update.
1659 * armnbsd-nat.c (store_register, store_regs, store_fp_register)
1660 (store_fp_regs): Update.
1661 * arm-linux-nat.c (store_nwfpe_single, store_nwfpe_double)
1662 (store_nwfpe_extended, store_fpregister, store_fpregs)
1663 (store_register, store_regs, fill_gregset, fill_fpregset): Update.
1664 * alpha-tdep.c (alpha_fill_int_regs, alpha_fill_fp_regs): Update.
1665 * aix-thread.c (fill_gprs64, fill_fprs, fill_sprs64, fill_sprs32)
1666 (store_regs_user_thread, store_regs_kernel_thread): Update.
1667
1668 2004-07-24 Mark Kettenis <kettenis@gnu.org>
1669
1670 * dwarf2-frame.c (struct dwarf2_cie): Delete `addr_size' member.
1671 (decode_frame_entry_1): Use DW_EH_PE_absptr as default for CIE
1672 encoding.
1673 (dwarf2_build_frame_info): Adjust for removal of `addr_size'
1674 member of `struct comp_unit'.
1675
1676 2004-07-23 Andrew Cagney <cagney@gnu.org>
1677
1678 * infrun.c (handle_inferior_event): Separate the STEP_OVER_ALL and
1679 DEPRECATED_IGNORE_HELPER_CALL cases, only #ifdef the latter.
1680
1681 2004-07-23 Martin Hunt <hunt@redhat.com>
1682 Kevin Buettner <kevinb@redhat.com>
1683
1684 * dwarf2-frame.c (execute_cfa_program): Fix typo in which the
1685 alignment was being added to the offset instead of multiplied.
1686
1687 2004-07-23 Mark Kettenis <kettenis@gnu.org>
1688
1689 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Adjust for
1690 changed signal trampoline in OpenBSD 3.5-current.
1691
1692 * sparc64nbsd-nat.c: Include "regcache.h", <sys/types.h>,
1693 <machine/pcb.h> and "bsd-kvm.h".
1694 (sparc64nbsd_supply_pcb): New function.
1695 (_initialize_sparc64nbsd_nat): Renamed from
1696 _initialize_sparcnbsd_nat. Enable libkvm interface.
1697 * Makefile.in (sparc64nbsd-nat.o): Update dependencies.
1698 * config/sparc/nbsd64.mh (NATDEPFILES): Add bsd-kvm.o
1699 (LOADLIBES): New variable.
1700
1701 * config/sparc/obsd64.mt (TDEPFILES): Add sparcobsd-tdep.o.
1702
1703 * sparcnbsd-nat.c (sparc32nbsd_supply_pcb): Fix typo in comment.
1704
1705 2004-07-21 Andrew Cagney <cagney@gnu.org>
1706
1707 Use regcache_raw_supply instead of supply_register.
1708 * regcache.h (supply_register): Delete declaration.
1709 * regcache.c (supply_register): Delete function.
1710 * wince.c (do_child_fetch_inferior_registers): Update.
1711 * win32-nat.c (do_child_fetch_inferior_registers)
1712 (fetch_elf_core_registers): Update.
1713 * v850ice.c (v850ice_fetch_registers): Update.
1714 * thread-db.c (thread_db_store_registers): Update.
1715 * sol-thread.c (sol_thread_store_registers): Update.
1716 * shnbsd-tdep.c (shnbsd_supply_reg): Update.
1717 * rs6000-nat.c (fetch_register): Update.
1718 * rom68k-rom.c (rom68k_supply_one_register): Update.
1719 * remote.c (remote_wait, remote_async_wait): Update.
1720 * remote-st.c (get_hex_regs): Update.
1721 * remote-sim.c (gdbsim_fetch_register): Update.
1722 * remote-sds.c (sds_fetch_registers): Update.
1723 * remote-rdp.c (remote_rdp_fetch_register): Update.
1724 * remote-rdi.c (arm_rdi_fetch_registers): Update.
1725 * remote-mips.c (mips_wait, mips_fetch_registers): Update.
1726 * remote-m32r-sdi.c (m32r_fetch_register): Update.
1727 * remote-hms.c (init_hms_cmds): Update.
1728 * remote-est.c (init_est_cmds): Update.
1729 * remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
1730 (e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
1731 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
1732 * ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
1733 (fetch_register, supply_vrregset, supply_vrregset)
1734 (fetch_spe_registers): Update.
1735 * ppc-bdm.c (bdm_ppc_fetch_registers): Update.
1736 * monitor.c (monitor_supply_register): Update.
1737 * mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
1738 * mipsnbsd-tdep.c (mipsnbsd_supply_reg)
1739 (mipsnbsd_supply_fpreg): Update.
1740 * mips-nat.c (fetch_inferior_registers)
1741 (fetch_core_registers): Update.
1742 * mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
1743 (supply_fpregset, mips64_supply_gregset)
1744 (mips64_supply_fpregset): Update.
1745 * m68klinux-nat.c (fetch_register, supply_gregset)
1746 (supply_fpregset): Update.
1747 * m68k-tdep.c (supply_gregset, supply_fpregset): Update.
1748 * m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
1749 * lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
1750 * irix5-nat.c (supply_gregset, supply_fpregset): Update.
1751 * infptrace.c (fetch_register): Update.
1752 * ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
1753 * ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
1754 * i386gnu-nat.c (fetch_fpregs, supply_gregset)
1755 (gnu_fetch_registers, gnu_store_registers): Update.
1756 * i386-nto-tdep.c (i386nto_supply_gregset): Update.
1757 * i386-linux-nat.c (fetch_register, supply_gregset)
1758 (dummy_sse_values): Update.
1759 * hpux-thread.c (hpux_thread_fetch_registers): Update.
1760 * hppah-nat.c (fetch_register): Update.
1761 * hppa-linux-nat.c (fetch_register, supply_gregset)
1762 (supply_fpregset): Update.
1763 * go32-nat.c (fetch_register): Update.
1764 * dve3900-rom.c (fetch_bitmapped_register)
1765 (_initialize_r3900_rom): Update.
1766 * cris-tdep.c (supply_gregset): Update.
1767 * abug-rom.c (init_abug_cmds): Update.
1768 * core-aout.c (fetch_core_registers): Update.
1769 * armnbsd-nat.c (supply_gregset, supply_fparegset)
1770 (fetch_register, fetch_fp_register): Update.
1771 * arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
1772 (fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
1773 (fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
1774 * alphanbsd-tdep.c (fetch_core_registers): Update.
1775 * alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
1776 * alpha-nat.c (fetch_osf_core_registers)
1777 (fetch_osf_core_registers, fetch_osf_core_registers): Update.
1778 * aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
1779 (supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
1780
1781 2004-07-21 Andrew Cagney <cagney@gnu.org>
1782
1783 * PROBLEMS: Mention breakpoints/1702.
1784 * NEWS: For signal trampolines, cite s390 GNU/Linux as a system
1785 that is known to work.
1786
1787 2004-07-21 Andrew Cagney <cagney@gnu.org>
1788
1789 * config/mips/tm-mips.h (DEPRECATED_IGNORE_HELPER_CALL): Deprecate.
1790 * mips-tdep.c (mips_dump_tdep, mips_ignore_helper): Update.
1791 * infrun.c (DEPRECATED_IGNORE_HELPER_CALL): Delete macro.
1792 (handle_inferior_event): Wrap call to deprecated
1793 IGNORE_HELPER_CALL in #ifdef.
1794 * config/mips/tm-nbsd.h: Update.
1795
1796 2004-07-20 Jim Blandy <jimb@redhat.com>
1797
1798 * rs6000-tdep.c (rs6000_gdbarch_init): The register set used for
1799 bfd_mach_ppc has no segment registers.
1800
1801 Include PowerPC SPR numbers for special-purpose registers.
1802 * rs6000-tdep.c (struct reg): Add new member, 'spr_num'.
1803 (R, R4, R8, R16, F, P, R32, R64, R0): Include value for
1804 new member in initializer.
1805 (S, S4, SN4, S64): New macros for defining special-purpose
1806 registers.
1807 (PPC_UISA_SPRS, PPC_UISA_NOFP_SPRS, PPC_OEA_SPRS, registers_power,
1808 registers_403, registers_403GC, registers_505, registers_860,
1809 registers_601, registers_602, registers_603, registers_604,
1810 registers_750, registers_e500): Use them.
1811
1812 * rs6000-tdep.c (rs6000_gdbarch_init): Delete variable 'power';
1813 replace references with expression used to initialize variable.
1814
1815 2004-07-20 Andrew Cagney <cagney@gnu.org>
1816
1817 * breakpoint.c (deprecated_read_memory_nobpt): Rename
1818 read_memory_nobpt.
1819 * sparc-linux-tdep.c (sparc_linux_sigtramp_start): Update.
1820 * s390-tdep.c (s390_readinstruction, s390_in_function_epilogue_p)
1821 (s390_sigtramp_frame_sniffer): Update.
1822 * mn10300-tdep.c (mn10300_analyze_prologue): Update.
1823 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Update.
1824 * mips-tdep.c (mips_fetch_instruction, mips16_fetch_instruction)
1825 (mips32_fetch_instruction): Update.
1826 * mcore-tdep.c (get_insn): Update.
1827 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Update.
1828 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Update.
1829 * i386ly-tdep.c (i386lynx_saved_pc_after_call): Update.
1830 * i386-linux-tdep.c (i386_linux_sigtramp_start)
1831 (i386_linux_rt_sigtramp_start): Update.
1832 * i386-linux-nat.c (child_resume): Update.
1833 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Update.
1834 * hppa-linux-tdep.c (insns_match_pattern): Update.
1835 * gdbcore.h: Update.
1836 * frv-tdep.c (frv_gdbarch_adjust_breakpoint_address): Update.
1837 * frame.c (safe_frame_unwind_memory): Update.
1838 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Update.
1839 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Update.
1840 * alpha-tdep.c (alpha_read_insn): Update.
1841
1842 2004-07-20 Andrew Cagney <cagney@gnu.org>
1843
1844 * tramp-frame.h (struct tramp_frame): Change "insn" to a struct
1845 containing both bytes and mask. Add "frame_type".
1846 * tramp-frame.c (tramp_frame_start): Update.
1847 (tramp_frame_prepend_unwinder): Update.
1848 * mips-linux-tdep.c (mips_linux_o32_sigframe)
1849 (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
1850 (mips_linux_n64_rt_sigframe): Update. Make "static const".
1851 * ppcnbsd-tdep.c (tramp_frame ppcnbsd_sigtramp): Update.
1852
1853 2004-07-19 Eli Zaretskii <eliz@gnu.org>
1854
1855 * config/djgpp/fnchange.lst: Add remapping for bfd/elf32-cr*.c,
1856 bfd/elf32-sh-symbian.c, bfd/elf32-sh64-com.c,
1857 sim/testsuite/sim/mips/hilo-hazard-[123].s, and
1858 sim/testsuite/sim/mips/fpu64-ps-sb1.s.
1859
1860 2004-07-17 Andrew Cagney <cagney@gnu.org>
1861
1862 * NEWS, PROBLEMS: Update for 6.2.
1863
1864 * README: Update to 6.2.
1865
1866 * utils.c (xvasprintf): Call xstrvprintf.
1867
1868 * parse.c: Update copyright.
1869 (null_post_parser): Eliminate ARGSUSED.
1870
1871 * ppc-linux-nat.c (store_spe_registers): Eliminate K&R C.
1872 * tui/tui-win.c (tui_get_cmd_list): Ditto.
1873 * symfile-mem.c (_initialize_symfile_mem): Ditto.
1874
1875 * ppc-linux-tdep.c (ppc_linux_init_abi): Add [sic] to Linux.
1876 * ppc-linux-nat.c: Use "Linux kernel".
1877 * hppa-linux-tdep.c: Use GNU/Linux.
1878 * hppa-linux-nat.c: Use GNU/Linux.
1879 * dwarfread.c: Add [sic] to use of Linux.
1880
1881 * hppa-linux-nat.c: Do not include <string.h>.
1882 (supply_fpregset): Remove "register" attribute.
1883
1884 * solib-frv.c (fetch_loadmap): Use xfree, not free.
1885
1886 2004-07-17 Mark Kettenis <kettenis@gnu.org>
1887
1888 * configure.in: Define _MSE_INT_H on Solaris 9 too.
1889 * configure, config.in: Regenerated.
1890
1891 * vaxbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
1892 "bsd-kvm.h".
1893 (vaxbsd_supply_pcb): New function.
1894 (_initialize_vaxbsd_nat): New prototype and function.
1895 * config/vax/nbsdaout.mh (NATDEPFILES): Add bsd-kvm.o, solib.o and
1896 solib-sunos.o.
1897 (LOADLIBES): New variable.
1898 * config/vax/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
1899 (LOADLIBES): New variable.
1900 * config/vax/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
1901 (LOADLIBES): New variable.
1902 * Makefile.in (vaxbsd-nat.o): Update dependencies.
1903
1904 2004-07-16 Andrew Cagney <cagney@gnu.org>
1905
1906 * defs.h (event_loop_p): Replace variable declaration with macro,
1907 always 1.
1908 * main.c (captured_main): Delete options "-async" and "-noasync".
1909 (event_loop_p): Delete variable.
1910 * NEWS: Mention that "-async" and "-noasync" were removed.
1911
1912 2004-07-16 Andrew Cagney <cagney@gnu.org>
1913
1914 * remote-m32r-sdi.c: Re-indent.
1915
1916 2004-07-16 Jim Blandy <jimb@redhat.com>
1917
1918 * ppc-tdep.h (ppc_spr_asr): Add missing OEA SPR.
1919 (ppc_spr_mi_dbcam, ppc_spr_mi_dbram0, ppc_spr_mi_dbram1)
1920 (ppc_spr_md_cam, ppc_spr_md_ram0, ppc_spr_md_ram1): Add
1921 missing MPC823 SPRs.
1922 (ppc_spr_m_twb): Renamed from ppc_spr_md_twb; the old name was
1923 incorrect. (This was corrected in GDB's register name tables on
1924 2004-07-14.)
1925
1926 * rs6000-tdep.c (registers_602): Correct register name: "esassr"
1927 should be "esasrr" ("ESA Save and Restore Register").
1928
1929 2004-07-16 Andrew Cagney <cagney@gnu.org>
1930
1931 * infrun.c (insert_step_resume_breakpoint): Delete gdb_assert
1932 calls, no longer applicable. Update comments and rename parameter
1933 "step_frame" to "return_frame".
1934
1935 2004-07-16 Andrew Cagney <cagney@gnu.org>
1936
1937 * frame.c (fprint_field): New function.
1938 (fprint_frame_id): Use fprint_field.
1939
1940 2004-07-15 Joel Brobecker <brobecker@gnat.com>
1941
1942 * ada-lang.c (ada_language_defn): Remove commented out code.
1943
1944 2004-07-15 Jim Blandy <jimb@redhat.com>
1945
1946 * ppc-tdep.h (struct gdbarch_tdep): New member: ppc_sr0_regnum.
1947 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it.
1948
1949 2004-07-14 Jim Blandy <jimb@redhat.com>
1950
1951 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): Delete; unused.
1952
1953 * ppc-tdep.h (ppc_num_vrs): New enum constant.
1954
1955 * ppc-tdep.h (ppc_num_srs): New enum constant.
1956
1957 * ppc-tdep.h (ppc_spr_mq, ppc_spr_xer, ppc_spr_rtcu, ppc_spr_rtcl)
1958 (ppc_spr_lr, ppc_spr_ctr, ppc_spr_cnt, ppc_spr_dsisr, ppc_spr_dar)
1959 (ppc_spr_dec, ppc_spr_sdr1, ppc_spr_srr0, ppc_spr_srr1)
1960 (ppc_spr_eie, ppc_spr_eid, ppc_spr_nri, ppc_spr_sp, ppc_spr_cmpa)
1961 (ppc_spr_cmpb, ppc_spr_cmpc, ppc_spr_cmpd, ppc_spr_icr)
1962 (ppc_spr_der, ppc_spr_counta, ppc_spr_countb, ppc_spr_cmpe)
1963 (ppc_spr_cmpf, ppc_spr_cmpg, ppc_spr_cmph, ppc_spr_lctrl1)
1964 (ppc_spr_lctrl2, ppc_spr_ictrl, ppc_spr_bar, ppc_spr_vrsave)
1965 (ppc_spr_sprg0, ppc_spr_sprg1, ppc_spr_sprg2, ppc_spr_sprg3)
1966 (ppc_spr_ear, ppc_spr_tbl, ppc_spr_tbu, ppc_spr_pvr)
1967 (ppc_spr_spefscr, ppc_spr_ibat0u, ppc_spr_ibat0l, ppc_spr_ibat1u)
1968 (ppc_spr_ibat1l, ppc_spr_ibat2u, ppc_spr_ibat2l, ppc_spr_ibat3u)
1969 (ppc_spr_ibat3l, ppc_spr_dbat0u, ppc_spr_dbat0l, ppc_spr_dbat1u)
1970 (ppc_spr_dbat1l, ppc_spr_dbat2u, ppc_spr_dbat2l, ppc_spr_dbat3u)
1971 (ppc_spr_dbat3l, ppc_spr_ic_cst, ppc_spr_ic_adr, ppc_spr_ic_dat)
1972 (ppc_spr_dc_cst, ppc_spr_dc_adr, ppc_spr_dc_dat, ppc_spr_dpdr)
1973 (ppc_spr_dpir, ppc_spr_immr, ppc_spr_mi_ctr, ppc_spr_mi_ap)
1974 (ppc_spr_mi_epn, ppc_spr_mi_twc, ppc_spr_mi_rpn, ppc_spr_mi_cam)
1975 (ppc_spr_mi_ram0, ppc_spr_mi_ram1, ppc_spr_md_ctr, ppc_spr_m_casid)
1976 (ppc_spr_md_ap, ppc_spr_md_epn, ppc_spr_md_twb, ppc_spr_md_twc)
1977 (ppc_spr_md_rpn, ppc_spr_m_tw, ppc_spr_md_dbcam, ppc_spr_md_dbram0)
1978 (ppc_spr_md_dbram1, ppc_spr_ummcr0, ppc_spr_upmc1, ppc_spr_upmc2)
1979 (ppc_spr_usia, ppc_spr_ummcr1, ppc_spr_upmc3, ppc_spr_upmc4)
1980 (ppc_spr_zpr, ppc_spr_pid, ppc_spr_mmcr0, ppc_spr_pmc1)
1981 (ppc_spr_sgr, ppc_spr_pmc2, ppc_spr_dcwr, ppc_spr_sia)
1982 (ppc_spr_mmcr1, ppc_spr_pmc3, ppc_spr_pmc4, ppc_spr_sda)
1983 (ppc_spr_tbhu, ppc_spr_tblu, ppc_spr_dmiss, ppc_spr_dcmp)
1984 (ppc_spr_hash1, ppc_spr_hash2, ppc_spr_icdbdr, ppc_spr_imiss)
1985 (ppc_spr_esr, ppc_spr_icmp, ppc_spr_dear, ppc_spr_rpa)
1986 (ppc_spr_evpr, ppc_spr_cdbcr, ppc_spr_tsr, ppc_spr_602_tcr)
1987 (ppc_spr_403_tcr, ppc_spr_ibr, ppc_spr_pit, ppc_spr_esasrr)
1988 (ppc_spr_tbhi, ppc_spr_tblo, ppc_spr_srr2, ppc_spr_sebr)
1989 (ppc_spr_srr3, ppc_spr_ser, ppc_spr_hid0, ppc_spr_dbsr)
1990 (ppc_spr_hid1, ppc_spr_iabr, ppc_spr_dbcr, ppc_spr_iac1)
1991 (ppc_spr_dabr, ppc_spr_iac2, ppc_spr_dac1, ppc_spr_dac2)
1992 (ppc_spr_l2cr, ppc_spr_dccr, ppc_spr_ictc, ppc_spr_iccr)
1993 (ppc_spr_thrm1, ppc_spr_pbl1, ppc_spr_thrm2, ppc_spr_pbu1)
1994 (ppc_spr_thrm3, ppc_spr_pbl2, ppc_spr_fpecr, ppc_spr_lt)
1995 (ppc_spr_pir, ppc_spr_pbu2): New enum constants for PowerPC
1996 special-purpose register numbers.
1997
1998 * rs6000-tdep.c (registers_860): Correct register name. (No PPC
1999 manual mentions 'md_twb', but many mention 'm_twb', and at that
2000 point in the register list.)
2001
2002 2004-07-14 Andrew Cagney <cagney@gnu.org>
2003
2004 * utils.c (internal_warning_problem): Fix typo, "internal-warning"
2005 instead of "internal-error".
2006
2007 2004-07-10 Joel Brobecker <brobecker@gnat.com>
2008
2009 * hppa-hpux-tdep.c: Fix a compilation failure due to a comment
2010 that was inserted inside a comment.
2011
2012 2004-07-10 Randolph Chung <tausq@debian.org>
2013
2014 * hppa-hpux-tdep.c (hppa_hpux_som_find_global_pointer): New
2015 function.
2016 (hppa_hpux_push_dummy_code): New function.
2017 (hppa_hpux_init_abi): Set push_dummy_code and call_dummy_location.
2018 Set find_global_pointer method.
2019
2020 2004-07-10 Mark Kettenis <kettenis@gnu.org>
2021
2022 * NEWS: Mention BSD libkvm interface.
2023
2024 2004-07-10 Michael Snyder <msnyder@redhat.com>
2025
2026 * symfile.c (generic_load): Comment typo.
2027 * stack.c (get_selected_block): Ditto.
2028 * regcache.c (regcache_cooked_read): Ditto.
2029 * monitor.c (monitor_debug): Ditto.
2030 * mips-tdep.c (mips_read_pc): Ditto.
2031 * i386-linux-nat.c (ps_get_thread_area): Ditto.
2032 * gdb_mbuild.sh: Ditto.
2033 * gdbarch.sh: Ditto.
2034 * gdbarch.h: Ditto.
2035
2036 2004-07-09 Paul N. Hilfinger <Hilfinger@gnat.com>
2037
2038 * ada-tasks.c: Remove file.
2039
2040 Remove ARI problems:
2041
2042 * ada-exp.y (write_var_from_sym): Reformat to put operator at
2043 beginning of line.
2044
2045 * ada-lang.c (MAX_OF_SIZE): Rename max_of_size.
2046 Add comment.
2047 Add comment concerning MAX_OF_TYPE and MIN_OF_TYPE.
2048 (MIN_OF_SIZE): Rename min_of_size. Add comment.
2049 (UMAX_OF_SIZE): Renmae umax_of_size. Add comment.
2050 (UMIN_OF_SIZE): Remove.
2051 (max_of_type): New function to replace orphan macro in gdbtypes.h
2052 (min_of_type): Ditto.
2053 (discrete_type_high_bound): Use max_of_type.
2054 (discrete_type_low_bound): Use min_of_type.
2055 (possible_user_operator_p): Move operator to beginning of line.
2056 (ada_is_variant_part): Ditto.
2057 (ensure_lval): Rewrite to avoid deprecated operations.
2058 (ada_finish_decode_line_1): Use gdbarch_convert_from_func_ptr_addr
2059 rather than adding DEPRECATED_FUNCTION_START_OFFSET.
2060 (ada_enum_name): Remove assignments in 'if' statements.
2061 (build_ada_types): Add gdbarch parameter.
2062 (_initialize_ada_language): Replace deprecated_register_gdbarch_swap
2063 with gdbarch_data_register_post_init.
2064 Use add_setshow_uinteger_cmd rather than add_set_cmd and
2065 add_show_from_set.
2066
2067 * ada-valprint.c (inspect_it): Remove declaration.
2068 (repeat_count_threshold): Remove declaration.
2069 (ada_print_floating): Remove assignments in 'if' statements.
2070 (print_str): Move operator to beginning of line.
2071
2072 2004-07-08 Jim Blandy <jimb@redhat.com>
2073
2074 * rs6000-tdep.c (registers_powerpc_nofp): Unused; deleted.
2075
2076 2004-07-08 Bob Rossi <bob@brasko.net>
2077
2078 * symtab.c (lookup_symtab): check return value of symtab_to_fullname
2079
2080 2004-07-06 Jeff Johnston <jjohnstn@redhat.com>
2081
2082 * language.h (struct_language_defn): Add new function pointer:
2083 la_class_name_from_physname. Also add new prototype for
2084 language_class_name_from_physname.
2085 * language.c (language_class_name_from_physname): New function.
2086 (unk_lang_class_name): Ditto.
2087 (unknown_language_defn, auto_language_defn): Change
2088 to add unk_lang_class_name function pointer for
2089 la_class_name_from_physname.
2090 (local_language_defn): Ditto.
2091 * dwarf2read.c (guess_structure_name): Change to call
2092 language_class_name_from_physname.
2093 (determine_class_name): Ditto.
2094 * cp-support.c (class_name_from_physname): Renamed.
2095 (cp_class_name_from_physname): New name of function.
2096 * cp-support.h: Ditto.
2097 * c-lang.c (c_language_defn): Change to add NULL
2098 for class_name_from_physname function pointer.
2099 (cplus_language_defn): Change to add cp_class_name_from_physname.
2100 * jv-lang.c (java_class_name_physname): New function.
2101 (java_find_last_component): New static routine.
2102 (java_language_defn): Add java_class_name_from_physname pointer.
2103 * ada-lang.c (ada_language_defn): Change to add NULL
2104 for class_name_from_physname function pointer.
2105 * f-lang.c (f_language_defn): Ditto.
2106 * m2-lang.c (m2_language_defn): Ditto.
2107 * objc-lang.c (objc_language_defn): Ditto.
2108 * p-lang.c (pascal_language_defn): Ditto.
2109 * scm-lang.c (scm_language_defn): Ditto.
2110
2111 2004-07-06 Andrew Cagney <cagney@gnu.org>
2112
2113 Patch from Bart Robinson.
2114 * corelow.c (core_open): Add variable "flags", or in O_LARGEFILE.
2115 (O_LARGEFILE): Define to 0, if not defined.
2116
2117 2004-07-03 Mark Kettenis <kettenis@gnu.org>
2118
2119 * m68kbsd-nat.c: Include "gdbcore.h", <sys/types.h>,
2120 <machine/pcb.h> and "bsd-kvm.h".
2121 (PCB_REGS_FP, PCB_REGS_SP): Define if not already defined.
2122 (m68kbsd_supply_pcb): New function.
2123 (_initialize_m68kbsd_nat): New prototype and function.
2124 * Makefile.in (m68kbsd-nat.o): Update dependencies.
2125 * config/m68k/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
2126 (LOADLIBES): New variable.
2127 * config/m68k/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
2128 (LOADLIBES): New variable.
2129
2130 * bsd-kvm.c (bsd_kvm_cmdlist): Remove unecessary initialization.
2131
2132 2004-07-03 Mark Kettenis <kettenis@gnu.org>
2133
2134 * bsd-kvm.c: Include "cli/cli-cmds.h", "command.h", "value.h" and
2135 <sys/proc.h>.
2136 (bsd_kvm_cmdlist): New variable.
2137 (bsd_kvm_cmd, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd): New functions.
2138 (bsd_kvm_add_target): Register "kvm" command prefix, "kvm pcb"
2139 command and "kvm proc" command.
2140 * Makefile.in (bsd-kvm.o): Update dependencies.
2141
2142 2004-07-02 Mark Kettenis <kettenis@gnu.org>
2143
2144 * osabi.c: Update copyright year.
2145 (generic_elf_osabi_sniffer): Tweak comment. Look for OS-specific
2146 notes if EI_OSABI is set to ELFOSABI_HPUX.
2147
2148 2004-07-01 Michael Snyder <msnyder@redhat.com>
2149
2150 * win32-nat.c (core_dll_symbols_add): Re-indent a small section
2151 that seems to have gotten whacked out of line.
2152
2153 2004-07-01 Mark Kettenis <kettenis@gnu.org>
2154
2155 * dbxread.c (process_one_symbol) [PCC_SOL_BROKEN]: Remove dead
2156 code.
2157
2158 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
2159
2160 * ada-lang.c (decode_packed_array): Minor change to comment.
2161 (ada_value_slice_ptr): New function.
2162 (ada_value_slice): New function.
2163 (ada_evaluate_subexp): Remove XVS-suffix code from subscripting
2164 test. Don't know why it is there.
2165 Change slice code to use ada_value_slice_ptr and ada_value_slice, and
2166 to avoid dereferencing huge arrays from which one is slicing.
2167 (empty_array): Correct to return an array rather than
2168 a subrange value.
2169 * ada-valprint.c (print_optional_low_bound): Don't print lower bound
2170 on empty arrays (let'em use 'FIRST instead).
2171
2172 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
2173
2174 Address complaints from gdb_ari.sh:
2175
2176 * ada-exp.y: Include gdb_string.h rather than string.h.
2177 (convert_char_literal): Reformat declaration.
2178 * ada-lang.h: Include opaque struct declaration for struct frame_info.
2179 * ada-lex.l: Change use of free to xfree (the macro would do so
2180 anyway, but this is harmless).
2181 Include gdb_string.h rather than string.h.
2182 * ada-valprint.c (ada_val_print_stub): Change PTR => void*.
2183
2184 * ada-lang.c (parse): Remove K&Rism in parameter list.
2185 (is_name_suffix): Correct Linux => GNU/Linux in comment.
2186
2187 2004-06-30 Mark Kettenis <kettenis@gnu.org>
2188
2189 * dbxread.c (process_one_symbol) [SUN_FIXED_LBRAC_BUG]: Remove
2190 dead code.
2191
2192 2004-06-30 Mark Kettenis <kettenis@gnu.org>
2193
2194 * alphabsd-nat.c: Update copyright year.
2195 (getregs_supplies): Use ALPHA_PC_REGNUM instead of PC_REGNUM.
2196
2197 2004-06-29 Joel Brobecker <brobecker@gnat.com>
2198
2199 * i386-cygwin-tdep.c (i386_cygwin_skip_trampoline_code): New function.
2200 (i386_cygwin_in_solib_call_trampoline): New function.
2201 (i386_cygwin_init_abi): Initialize the in_solib_call_trampoline
2202 and skip_trampoline_code gdbarch methods.
2203
2204 2004-06-29 Jim Blandy <jimb@redhat.com>
2205
2206 * Makefile.in (gdb_callback_h): Renamed from callback_h to the
2207 name actually used in the dependency lists.
2208
2209 2004-06-29 Randolph Chung <tausq@debian.org>
2210
2211 * NEWS (New native configurations): Mention GNU/Linux/hppa.
2212
2213 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
2214
2215 * win32-nat.c (child_pid_to_exec_file): New function.
2216 (init_child_ops): Add child_pid_to_exec_file as to_pid_to_exec_file
2217 functionality.
2218
2219 2004-06-28 Andrew Cagney <cagney@gnu.org>
2220
2221 * defs.h (xstrvprintf): Declare.
2222 * utils.c (xstrvprintf): New function.
2223 (internal_vproblem, xstrprintf, xasprintf)
2224 (vfprintf_maybe_filtered, vfprintf_unfiltered): Use xstrvprintf.
2225 * serial.c (serial_printf): Ditto.
2226 * complaints.c (vcomplaint): Ditto.
2227
2228 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
2229
2230 * infcmd.c (attach_command): Move call to target_terminal_inferior
2231 behind loading symbol table.
2232
2233 2004-06-28 Andrew Cagney <cagney@gnu.org>
2234
2235 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Revert 2004-06-24
2236 change - add back extern deprecated_ui_loop_hook declaration.
2237
2238 2004-06-28 Andrew Cagney <cagney@gnu.org>
2239
2240 * xcoffsolib.c (xcoff_solib_address): Replace xasprintf with
2241 xstrprintf.
2242 * varobj.c (varobj_gen_name, create_child, c_name_of_child)
2243 (c_value_of_variable): Ditto.
2244 * utils.c (internal_vproblem): Ditto.
2245 * solib-aix5.c (build_so_list_from_mapfile): Ditto.
2246 * remote.c (add_packet_config_cmd): Ditto.
2247 * remote-rdp.c (rdp_set_command_line): Ditto.
2248 * regcache.c (regcache_dump): Ditto.
2249 * frv-tdep.c (new_variant, new_variant): Ditto.
2250 * fbsd-proc.c (child_pid_to_exec_file): Ditto.
2251 (fbsd_find_memory_regions): Ditto.
2252 * breakpoint.c (create_thread_event_breakpoint)
2253 (create_breakpoints): Ditto.
2254 * aix-thread.c (aix_thread_pid_to_str): Ditto.
2255 * ada-lang.c (is_package_name): Ditto. Also delete xmalloc call.
2256
2257 2004-06-28 Joel Brobecker <brobecker@gnat.com>
2258
2259 * ada-lang.c: Re-indent file, with some massaging to help indent
2260 a bit when the result is otherwise really too ugly.
2261
2262 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
2263
2264 * frame.h (struct frame_id): Change bit field type of stack_addr_p,
2265 code_addr_p and special_addr_p to 'unsigned int'.
2266
2267 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2268
2269 * i386v4-nat.c: Update copyright year and tweak comment.
2270 (regmap): Remove trailing comma.
2271 (supply_gregset): Rename local variable i to regnum. Call
2272 regcache_raw_supply instead of supply_register.
2273 (fill_gregset): Rename argument regno to regnum. Call
2274 regcache_raw_collect instead of regcache_collect.
2275
2276 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
2277
2278 * frame.h (struct frame_id): New fields stack_addr_p, code_addr_p
2279 and special_addr_p.
2280 (frame_id_build, frame_id_build_special): Update comments.
2281 (frame_id_build_wild): New prototype.
2282 * frame.c (frame_id_build, frame_id_build_special): Fill in new
2283 struct frame_id fields.
2284 (frame_id_build_wild): New function.
2285 (frame_id_eq, frame_id_inner): Use new struct frame_id fields.
2286
2287 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2288
2289 * config/djgpp/fnchange.lst: Add entries for hppabsd-nat.c and
2290 hppabsd-tdep.c.
2291
2292 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2293
2294 * ada-lang.c: Minor reformatting to conform to GNU coding standards.
2295
2296 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2297
2298 * ada-lang.c: Re-indent file.
2299
2300 2004-06-27 Joel Brobecker <brobecker@gnat.com>
2301
2302 * ada-lang.c (symtab_symbol_info): Remove unused declaration.
2303 (no_symtab_msg): Likewise.
2304
2305 2004-06-27 Andreas Schwab <schwab@suse.de>
2306
2307 * source.c: Fix whitespace.
2308
2309 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2310
2311 * configure.in: Include <sys/param.h> for td_pcb test.
2312 * configure: Regenerated.
2313
2314 * i386nbsd-nat.c: New file.
2315 * Makefile.in (ALLDEPFILES): Add i386nbsd-nat.c, i386nbsd-tdep.c,
2316 i386obsd-nat.c and i386obsd-tdep.c.
2317 (i386nbsd-nat.o): New dependency.
2318 * config/i386/obsd.mh (NATDEPFILES): Add i386nbsd-nat.o and
2319 bsd-kvm.o.
2320 (LOADLIBES): New variable.
2321 * config/i386/nbsdelf.mh (NATDEPFILES): Add i386nbsd-nat.o and
2322 bsd-kvm.o.
2323 (LOADLIBES): New variable.
2324
2325 * config/i386/fbsd64.mh (NATDEPFILES): Add bsd-kvm.o.
2326 (LOADLIBES): New variable.
2327
2328 * bsd-kvm.c (bsd_kvm_fetch_registers): Directly return after
2329 fetching from BSD_KVM_PADDR. Correctly lookup address for
2330 "_thread0".
2331
2332 * amd64fbsd-nat.c: Include <sys/types.h, <machine/pcb.h> and
2333 "bsd-kvm.h".
2334 (amd64fbsd_supply_pcb): New funcion.
2335 (_initialize_amd64fbsd_nat): Enable libkvm interface.
2336
2337 2004-06-27 <david@streamline-computing.com>
2338
2339 Partial fix for PR cli/1056.
2340 * valarith.c: Check for zero in division and remainder
2341 evaluation.
2342
2343 2004-06-27 Mark Kettenis <kettenis@gnu.org>
2344
2345 * i387-tdep.c: Remove excessive whitespace.
2346
2347 2004-06-26 Andrew Cagney <cagney@gnu.org>
2348
2349 * gdb-events.sh (deprecated_set_gdb_event_hooks): Deprecated.
2350 * gdb-events.h, gdb-events.c: Re-generate.
2351 * tui/tui-hooks.c (tui_install_hooks): Update.
2352 (tui_remove_hooks): Update.
2353 * mi/mi-cmd-break.c (mi_cmd_break_insert): Update.
2354
2355 2004-06-26 Mark Kettenis <kettenis@gnu.org>
2356
2357 * amd64fbsd-nat.c: Don't include <sys/procfs.h> and "gregset.h".
2358 (gregset_t, fpregset_t): Remove typedefs.
2359 (REG_OFFSET): Rename argument.
2360 (amd64bsd_r_reg_offset): Rename from reg_offset.
2361 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
2362 Remove functions.
2363 (_initialize_amd64fbsd_nat): Use amd64fbsd64_r_reg_offset instead
2364 of reg_offset.
2365 * Makefile.in (amd64fbsd-nat.o): Update dependencies.
2366
2367 * amd64-nat.c (amd64_supply_native_gregset): Fix comment.
2368
2369 * vax-tdep.c: Tweak comment.
2370
2371 Add OpenBSD/hppa support.
2372 * NEWS (New native configurations): Mention OpenBSD/hppa.
2373 * hppabsd-nat.c, hppabsd-tdep.c, config/pa/obsd.mh,
2374 config/pa/obsd.mt, config/pa/nm-obsd.h, config/pa/tm-bsd.h: New
2375 files.
2376 * Makefile.in (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
2377 (hppabsd-nat.o, hppabsd-tdep.c): New dependencies.
2378 * configure.host: Add hppa*-*-openbsd*.
2379 * configure.tgt: Add hppa*-*-openbsd*.
2380
2381 2004-06-25 Andrew Cagney <cagney@gnu.org>
2382
2383 * defs.h (deprecated_ui_loop_hook): Deprecated.
2384 * wince.c (child_wait): Update.
2385 * win32-nat.c (child_wait): Update.
2386 * v850ice.c (v850ice_wait): Update.
2387 * top.c (deprecated_ui_loop_hook): Update.
2388 * serial.h: Update.
2389 * ser-unix.c (do_hardwire_readchar, do_hardwire_readchar)
2390 (do_unix_readchar): Update.
2391 * ser-tcp.c (net_open): Update.
2392 * remote-sim.c (gdb_os_poll_quit): Update.
2393 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Update.
2394
2395 2004-06-24 Andrew Cagney <cagney@gnu.org>
2396
2397 * defs.h (deprecated_pre_add_symbol_hook)
2398 (deprecated_post_add_symbol_hook): Deprecated.
2399 * symfile.c (symbol_file_add_with_addrs_or_offsets)
2400 (symbol_file_add_with_addrs_or_offsets): Update references.
2401
2402 2004-06-24 Andrew Cagney <cagney@gnu.org>
2403
2404 * defs.h (post_add_symbol_hook, pre_add_symbol_hook)
2405 (ui_loop_hook, selected_frame_level_changed_hook): Declare.
2406 * wince.c (ui_loop_hook): Delete extern declaration.
2407 * win32-nat.c (ui_loop_hook): Delete extern declaration..
2408 * v850ice.c (ui_loop_hook): Delete extern declaration..
2409 * ser-unix.c (ui_loop_hook): Delete extern declaration..
2410 * ser-tcp.c (ui_loop_hook): Delete extern declaration..
2411 * remote-sim.c (ui_loop_hook): Delete extern declaration..
2412 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Delete extern.
2413 ui_loop_hook declaration.
2414
2415 2004-06-24 Andrew Cagney <cagney@gnu.org>
2416
2417 * objfiles.h (struct entry_info): Delete entry_func_lowpc and
2418 entry_func_highpc fields.
2419 * objfiles.c (init_entry_point_info): Do not clear
2420 entry_func_lowpc and entry_func_highpc.
2421 (objfile_relocate): Do not relocate entry_func_lowpc and
2422 entry_func_highpc.
2423 * dwarfread.c (read_func_scope): Do not set entry_func_lowpc and
2424 entry_func_highpc.
2425 * dwarf2read.c (read_func_scope): Do not set entry_func_lowpc and
2426 entry_func_highpc.
2427 * blockframe.c (legacy_frame_chain_valid): Replace tests against
2428 entry_func_lowpc and entry_func_highpc with call to
2429 inside_entry_func.
2430
2431 2004-06-24 Mark Kettenis <kettenis@gnu.org>
2432
2433 * sparc64-tdep.c (sparc64_store_arguments): Fix passing
2434 quad-precision floating point arguments in registers.
2435
2436 2004-06-24 Mark Kettenis <kettenis@gnu.org>
2437
2438 From Michael Mueller <m.mueller99@kay-mueller.de>:
2439 * sparc64-tdep.c (sparc64_frame_base_address): Take BIAS into
2440 account.
2441
2442 2004-06-22 Jeff Johnston <jjohnstn@redhat.com>
2443
2444 * infrun.c (handle_inferior_event): Initialize stopped_by_watchpoint
2445 to -1.
2446 * breakpoint.c (bpstat_stop_status): Move check for ignoring
2447 untriggered watchpoints to a separate if clause. Update function
2448 comment regarding STOPPED_BY_WATCHPOINT argument.
2449
2450 2004-06-22 Jim Blandy <jimb@redhat.com>
2451
2452 * gdbarch.sh: Doc fix.
2453
2454 2004-06-21 Martin Hunt <hunt@redhat.com>
2455 Kevin Buettner <kevinb@redhat.com>
2456
2457 * config/mips/tm-mips.h (SP_REGNUM): Delete define.
2458 * mips-tdep.h (MIPS_SP_REGNUM): Define.
2459 * mips-tdep.c (mips_gdbarch_init): Set SP_REGNUM via call
2460 to set_gdbarch_sp_regnum(). Use cooked register number.
2461 (SP_REGNUM): Replace all occurrences with MIPS_SP_REGNUM.
2462
2463 2004-06-21 Andrew Cagney <cagney@gnu.org>
2464
2465 * gdbarch.sh: When the macro field is empty, do not generate a
2466 macro definition. When the macro field is "=", generate the macro
2467 name from the upper-case function name.
2468 (NUM_REGS, NUM_PSEUDO_REGS, SP_REGNUM, PC_REGNUM, PS_REGNUM)
2469 (FP0_REGNUM, STAB_REG_TO_REGNUM, ECOFF_REG_TO_REGNUM)
2470 (DWARF_REG_TO_REGNUM, SDB_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM)
2471 (REGISTER_NAME, DEPRECATED_REGISTER_VIRTUAL_TYPE)
2472 (DEPRECATED_REGISTER_BYTES, DEPRECATED_REGISTER_BYTE)
2473 (DEPRECATED_REGISTER_RAW_SIZE, DEPRECATED_REGISTER_VIRTUAL_SIZE)
2474 (DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_FP_REGNUM)
2475 (DEPRECATED_TARGET_READ_FP, DEPRECATED_PUSH_ARGUMENTS)
2476 (DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP)
2477 (DEPRECATED_REGISTER_SIZE, CALL_DUMMY_LOCATION)
2478 (DEPRECATED_DO_REGISTERS_INFO, REGISTER_SIM_REGNO)
2479 (REGISTER_BYTES_OK, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER)
2480 (GET_LONGJMP_TARGET, DEPRECATED_INIT_FRAME_PC)
2481 (BELIEVE_PCC_PROMOTION, DEPRECATED_GET_SAVED_REGISTER)
2482 (CONVERT_REGISTER_P, REGISTER_TO_VALUE, VALUE_TO_REGISTER)
2483 (POINTER_TO_ADDRESS, ADDRESS_TO_POINTER, INTEGER_TO_ADDRESS)
2484 (DEPRECATED_POP_FRAME, DEPRECATED_STORE_STRUCT_RETURN)
2485 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE)
2486 (DEPRECATED_EXTRACT_RETURN_VALUE, DEPRECATED_STORE_RETURN_VALUE)
2487 (DEPRECATED_USE_STRUCT_CONVENTION)
2488 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
2489 (DEPRECATED_FRAME_INIT_SAVED_REGS)
2490 (DEPRECATED_INIT_EXTRA_FRAME_INFO, SKIP_PROLOGUE, INNER_THAN)
2491 (BREAKPOINT_FROM_PC, MEMORY_INSERT_BREAKPOINT)
2492 (MEMORY_REMOVE_BREAKPOINT, DECR_PC_AFTER_BREAK)
2493 (DEPRECATED_FUNCTION_START_OFFSET, FRAME_ARGS_SKIP)
2494 (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION, DEPRECATED_FRAME_CHAIN)
2495 (DEPRECATED_FRAME_CHAIN_VALID, DEPRECATED_FRAME_SAVED_PC)
2496 (DEPRECATED_FRAME_ARGS_ADDRESS, DEPRECATED_FRAME_LOCALS_ADDRESS)
2497 (DEPRECATED_SAVED_PC_AFTER_CALL, FRAME_NUM_ARGS)
2498 (DEPRECATED_STACK_ALIGN, DEPRECATED_REG_STRUCT_HAS_ADDR)
2499 (FRAME_RED_ZONE_SIZE, ADDR_BITS_REMOVE, SMASH_TEXT_ADDRESS)
2500 (SOFTWARE_SINGLE_STEP, SKIP_TRAMPOLINE_CODE)
2501 (IN_SOLIB_CALL_TRAMPOLINE, IN_SOLIB_RETURN_TRAMPOLINE)
2502 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL)
2503 (NAME_OF_MALLOC, CANNOT_STEP_BREAKPOINT)
2504 (HAVE_NONSTEPPABLE_WATCHPOINT, ADDRESS_CLASS_TYPE_FLAGS)
2505 (FETCH_POINTER_ARGUMENT): Replace the macro name with "=".
2506
2507 2004-06-21 Andrew Cagney <cagney@gnu.org>
2508
2509 * gdbarch.sh: For gdbarch_dump, print the "function" rather than
2510 macro name, and the function rather than macro value. Only wrap
2511 macro print statements in #ifdef. Move format logic to where it
2512 is needed.
2513 * gdbarch.c: Re-generate.
2514
2515 * gdbarch.sh (read): Delete "print_p" and "description", add
2516 "garbage_at_eol". Check for non-empty garbage at end-of-line.
2517 Delete references to print_p.
2518 (TARGET_ARCHITECTURE): Delete print predicate.
2519 * gdbarch.c: Re-generate.
2520
2521 * gdbarch.sh: Check that multi-arch methods do not provide a
2522 macro.
2523 (register_type, unwind_dummy_id, push_dummy_call, push_dummy_code)
2524 (print_registers_info, print_float_info, print_vector_info)
2525 (adjust_breakpoint_address, remote_translate_xfer_address)
2526 (construct_inferior_arguments, skip_solib_resolver, unwind_pc)
2527 (address_class_type_flags_to_name, unwind_sp): Remove the macro
2528 name from the multi-arch definition.
2529
2530 2004-06-20 Andrew Cagney <cagney@gnu.org>
2531
2532 * gdbarch.sh: Sort by the function, instead of macro name.
2533 * gdbarch.c: Re-generate.
2534
2535 2004-06-20 Andrew Cagney <cagney@gnu.org>
2536
2537 * gdbarch.sh: Use the function, instead of macro name in
2538 errors and the log file.
2539 (return_value): Remove stray ":" in spec.
2540
2541 * gdbarch.sh (RETURN_VALUE): Default to legacy_return_value.
2542 * gdbarch.h, gdbarch.c: Re-generate.
2543 * Makefile.in (arch-utils.o): Update dependencies.
2544 * values.c (using_struct_return): Move code calling
2545 USE_STRUCT_CONVENTION to legacy_return_value, simplify.
2546 * stack.c (return_command): Move code calling STORE_RETURN_VALUE
2547 to legacy_return_value, simplify.
2548 * infcmd.c (print_return_value): Move code calling
2549 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_RETURN_VALUE
2550 to legacy_return_value, simplify.
2551 * infcall.c (call_function_by_hand): Move code calling
2552 EXTRACT_RETURN_VALUE to legacy_return_value, simplify.
2553 * arch-utils.c: Update copyright. Include "gdbcore.h".
2554 (legacy_return_value): New function.
2555 * arch-utils.h: Update copyright.
2556 (legacy_return_value): Declare.
2557
2558 2004-06-20 Andrew Cagney <cagney@gnu.org>
2559
2560 * gdbarch.sh (DEPRECATED_USE_STRUCT_CONVENTION): Deprecated.
2561 * gdbarch.h, gdbarch.c: Re-generate.
2562 * values.c (using_struct_return): Update call.
2563 * mcore-tdep.c: Update comment.
2564 * infcall.c (call_function_by_hand): Update comment.
2565 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2566 * arch-utils.h (always_use_struct_convention): Update.
2567 * v850-tdep.c (v850_gdbarch_init): Update.
2568 * sh64-tdep.c (sh64_gdbarch_init): Update.
2569 * sh-tdep.c (sh_gdbarch_init): Update.
2570 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2571 * mips-tdep.c (mips_gdbarch_init): Update.
2572 * mcore-tdep.c (mcore_gdbarch_init): Update.
2573 * m32r-tdep.c (m32r_gdbarch_init): Update.
2574 * ia64-tdep.c (ia64_gdbarch_init): Update.
2575 * h8300-tdep.c (h8300_gdbarch_init): Update.
2576 * frv-tdep.c (frv_gdbarch_init): Update.
2577 * cris-tdep.c (cris_gdbarch_init): Update.
2578 * arm-tdep.c (arm_gdbarch_init): Update.
2579 * alpha-tdep.c (alpha_gdbarch_init): Update.
2580
2581 2004-06-18 Michael Chastain <mec.gnu@mindspring.com>
2582
2583 * PROBLEMS: Add more specific information, and a work-around,
2584 for PR gdb/1458.
2585
2586 2004-06-18 Andrew Cagney <cagney@gnu.org>
2587
2588 * gdbarch.sh (DEPRECATED_FUNCTION_START_OFFSET): Deprecated.
2589 * gdbarch.h, gdbarch.c: Re-generate.
2590 * ada-lang.c (ada_finish_decode_line_1): Update.
2591 * infrun.c (handle_inferior_event): Update.
2592 * infcall.c (find_function_addr): Update.
2593 * linespec.c (minsym_found): Update.
2594 * symtab.c (find_function_start_sal, skip_prologue_using_sal):
2595 Update.
2596 * blockframe.c (legacy_frameless_look_for_prologue): Update.
2597 * cli/cli-cmds.c (disassemble_command): Update.
2598 * vax-tdep.c (vax_gdbarch_init): Update.
2599
2600 2004-06-18 Mark Kettenis <kettenis@gnu.org>
2601
2602 * i386-tdep.c (i386_collect_fpregset): Fix comment.
2603
2604 2004-06-17 Andrew Cagney <cagney@gnu.org>
2605
2606 GDB 6.1.1 released from the GDB 6.1 branch.
2607 * NEWS: Merge in 6.1.1 NEWS from 6.1 branch.
2608 * PROBLEMS: Ditto.
2609
2610 2004-06-16 Daniel Jacobowitz <dan@debian.org>
2611
2612 PR gdb/1658
2613 * dwarf2read.c (dwarf_decode_lines): Read the length of the extended
2614 operation as a uleb128. Found by Michael Coulter.
2615
2616 2004-06-16 Paul N. Hilfinger <Hilfinger@gnat.com>
2617
2618 * ada-tasks.c: Rename build_task_list to ada_build_task_list, and
2619 make it non-static.
2620 * ada-lang.h (task_control_block): declaration moved from ada-task.c
2621 to ada-lang.h; this is needed to be able to implement the kill command
2622 in multi-task mode.
2623 (task_ptid): Ditto.
2624 (task_entry): Ditto.
2625 (task_list): Ditto.
2626 (ada_build_task_list): Ditto.
2627
2628 * ada-lang.c: Conditionalize routines and data structures related
2629 to breakpoints, exceptions, completion, and symbol caching on
2630 GNAT_GDB, since these are not yet used in the submitted public sources.
2631 (ada_main_name): Editorial: Move definition out of exception-related
2632 code.
2633
2634 2004-06-15 Andrew Cagney <cagney@gnu.org>
2635
2636 * mips-tdep.c (non_heuristic_proc_desc): Delete call to
2637 deprecated_pc_in_call_dummy.
2638
2639 2004-06-15 Alan Modra <amodra@bigpond.net.au>
2640
2641 * dsrec.c (load_srec, make_srec): Use bfd_get_section_size instead of
2642 bfd_get_section_size_before_reloc or _raw_size.
2643 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
2644 * dwarf2read.c (dwarf2_locate_sections): Likewise.
2645 (dwarf2_read_section): Likewise.
2646 * elfread.c (elf_locate_sections): Likewise.
2647 * gcore.c (derive_heap_segment): Likewise.
2648 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
2649 * remote-e7000.c (e7000_load): Likewise.
2650 * remote-m32r-sdi.c (m32r_load): Likewise.
2651 * remote-mips.c (mips_load_srec): Likewise.
2652 (pmon_load_fast): Likewise.
2653 * remote.c (compare_sections_command): Likewise.
2654 * symfile.c (add_section_size_callback): Likewise.
2655 (load_section_callback): Likewise.
2656 (pc_in_unmapped_range): Likewise.
2657 (pc_in_mapped_range): Likewise.
2658 (sections_overlap): Likewise.
2659 (list_overlays_command): Likewise.
2660 (simple_overlay_update_1): Likewise.
2661 (simple_overlay_update): Likewise.
2662 * tracepoint.c (remote_set_transparent_ranges): Likewise.
2663 * win32-nat.c (core_section_load_dll_symbols): Likewise.
2664
2665 2004-06-14 Randolph Chung <tausq@debian.org>
2666
2667 * Makefile.in (hppa-hpux-tdep.o): Update dependency.
2668 * hppa-hpux-tdep.c (hp_cxx_exception_support_initialized): Make
2669 static.
2670 (hppa_hpux_inferior_created): New function.
2671 (hppa_hpux_init_abi): Register observer.
2672 * symfile.c (hp_cxx_exception_support_initialized)
2673 (RESET_HP_UX_GLOBALS): Remove HPUXHPPA specific hacks.
2674 (symbol_file_add_main_1, symbol_file_clear): Likewise.
2675
2676 2004-06-14 Randolph Chung <tausq@debian.org>
2677
2678 * MAINTAINERS (Write After Approval): Alphabetize my entry
2679 correctly.
2680
2681 2004-06-14 Andrew Cagney <cagney@gnu.org>
2682
2683 * MAINTAINERS (testsuite): List Michael Chastain as the lead
2684 testsuite maintainer.
2685
2686 2004-06-13 Andrew Cagney <cagney@gnu.org>
2687
2688 * infcmd.c (print_return_value): Fix logic, allow
2689 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS when struct_return.
2690
2691 * gdbarch.sh: For predicates, do not check GDB_MULTI_ARCH when
2692 defining any macros.
2693 * gdbarch.h: Re-generate.
2694
2695 * gdbarch.sh: Delete "level" attribute. Only check for a macro
2696 redefinition when multi-arch greater than GDB_MULTI_ARCH_PARTIAL.
2697 * gdbarch.h: Re-generate.
2698
2699 * values.c (generic_use_struct_convention): Don't check gcc_p.
2700
2701 * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE)
2702 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Delete.
2703 * gdbarch.h, gdbarch.c: Regenerate.
2704 * ns32k-tdep.h (NS32K_MAX_REGISTER_RAW_SIZE)
2705 (NS32K_MAX_REGISTER_VIRTUAL_SIZE): Delete macros.
2706 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
2707 deprecated_max_register_raw_size and
2708 deprecated_max_register_virtual_size.
2709 * v850-tdep.c (v850_gdbarch_init): Ditto.
2710 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
2711 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2712 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
2713 * cris-tdep.c (cris_gdbarch_init): Ditto.
2714
2715 * gdbarch.sh (RETURN_VALUE_ON_STACK): Delete method.
2716 * gdbarch.h, gdbarch.c: Re-generate.
2717 * m68hc11-tdep.c (m68hc11_return_value_on_stack): Delete function.
2718 (m68hc11_use_struct_convention): Delete function.
2719 (m68hc11_extract_struct_value_address): Delete function.
2720 (m68hc11_return_value): New function.
2721 (m68hc11_gdbarch_init): Instead of store_return_value,
2722 extract_return_value, return_value_on_stack,
2723 deprecated_extract_struct_value_address and use_struct_convention,
2724 set return_value.
2725 * values.c (using_struct_return): Do not call
2726 RETURN_VALUE_ON_STACK.
2727 * arch-utils.h (generic_return_value_on_stack_not): Delete
2728 declaration.
2729 * arch-utils.c (generic_return_value_on_stack_not): Delete
2730 function.
2731
2732 2004-06-12 Andrew Cagney <cagney@gnu.org>
2733
2734 * values.c (register_value_being_returned): Delete function.
2735 * infcmd.c (legacy_return_value): Delete function.
2736 * infcall.c (call_function_by_hand): Inline
2737 "register_value_being_returned", simplify.
2738 * values.c (using_struct_return): Update comment, refer to
2739 print_return_value instead of register_value_being_returned.
2740 * infcmd.c (print_return_value): Inline calls to
2741 register_value_being_returned and legacy_return_value. Simplify.
2742
2743 2004-06-11 Randolph Chung <tausq@debian.org>
2744
2745 * somread.c (som_symtab_read): Exclude gcc local symbols.
2746
2747 2004-06-11 Randolph Chung <tausq@debian.org>
2748
2749 * infrun.c (handle_inferior_event): Handle the case when a
2750 trampoline ends up in the runtime resolver, and if the trampoline
2751 has no name. Rearrange the code so that all the trampoline
2752 processing happens before other step-out-of-range handling.
2753
2754 2004-06-11 Martin Hunt <hunt@redhat.com>
2755
2756 * mips-tdep.c (mips_gdbarch_init): Recognize vr4120
2757 has no fpu.
2758
2759 2004-06-10 Andrew Cagney <cagney@gnu.org>
2760
2761 * blockframe.c (legacy_inside_entry_func): Delete.
2762 (legacy_frame_chain_valid): Inline call to
2763 legacy_inside_entry_func, simplify.
2764
2765 2004-06-10 Bob Rossi <bob@brasko.net>
2766
2767 * dbxread.c (read_dbx_symtab): Set pst->dirname when known.
2768 * dwarf2read.c (partial_die_info): Add dirname field.
2769 (dwarf2_build_psymtabs_hard): Set pst->dirname when known.
2770 (read_partial_die): Save away DW_AT_comp_dir.
2771 * defs.h (symtab_to_filename): Removed.
2772 * source.c (find_and_open_source): Added.
2773 (open_source_file): Just calls find_and_open_source.
2774 (symtab_to_filename): Removed.
2775 (symtab_to_fullname, psymtab_to_fullname): Added.
2776 * source.h (psymtab_to_fullname,symtab_to_fullname): Added.
2777 * symtab.c (lookup_symtab): Call symtab_to_fullname instead of
2778 symtab_to_filename.
2779 * symtab.h (partial_symtab): Add dirname field.
2780 * mi/mi-cmd-file.c (FILENAME,FULLNAME): Added.
2781 (mi_cmd_file_list_exec_source_file): Call new function
2782 symtab_to_fullname to find fullname.
2783 (mi_cmd_file_list_exec_source_files): Added.
2784 * mi/mi-cmds.c (mi_cmd_mi_cmds): Add -file-list-exec-source-files.
2785 * mi/mi-cmds.h (mi_cmd_file_list_exec_source_files): Added.
2786
2787 2004-06-10 Andrew Cagney <cagney@gnu.org>
2788
2789 * avr-tdep.c (avr_gdbarch_init): Do not set use_struct_convention
2790 to generic_use_struct_convention, the default value.
2791
2792 * mn10300-tdep.c (mn10300_type_align): Call internal_error instead
2793 of abort.
2794
2795 * ns32k-tdep.c (ns32k_push_arguments): New function.
2796 (ns32k_gdbarch_init): Set deprecated_push_arguments.
2797 * infcall.c (call_function_by_hand): Call error instead of
2798 legacy_push_arguments.
2799 * value.h (legacy_push_arguments): Delete declaration.
2800 * valops.c (legacy_push_arguments): Delete function.
2801 (value_push): Delete function.
2802
2803 2004-06-10 Brian Ford <ford@vss.fsi.com>
2804
2805 * coffread.c (coff_symfile_read): Prevent mixed debugging formats
2806 from corrupting/reinitializing the psymtab. Support DWARF 2 frame
2807 info.
2808 * dbxread.c (elfstab_build_psymtabs): Remove bogus comment.
2809
2810 2004-06-10 Andrew Cagney <cagney@gnu.org>
2811
2812 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Delete.
2813 * gdbarch.h, gdbarch.c: Re-generate.
2814 * frame.h (deprecated_pc_in_call_dummy): Delete "sp" and "fp"
2815 parameters.
2816 * dummy-frame.c (deprecated_pc_in_call_dummy): Update.
2817 * arm-tdep.c (arm_pc_is_thumb_dummy): Call
2818 deprecated_pc_in_call_dummy instead of
2819 DEPRECATED_PC_IN_CALL_DUMMY.
2820 (arm_skip_prologue): Ditto.
2821 * xstormy16-tdep.c (xstormy16_pop_frame, xstormy16_scan_prologue)
2822 (xstormy16_frame_saved_pc, xstormy16_frame_chain): Ditto.
2823 * v850-tdep.c (v850_find_callers_reg, v850_frame_chain)
2824 (v850_pop_frame, v850_frame_saved_pc, v850_frame_init_saved_regs):
2825 Ditto.
2826 * sh64-tdep.c (sh64_frame_chain, sh64_get_saved_pr)
2827 (sh64_init_extra_frame_info, sh64_get_saved_register)
2828 (sh64_pop_frame): Ditto.
2829 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
2830 * mcore-tdep.c (mcore_find_callers_reg, mcore_frame_saved_pc)
2831 (mcore_pop_frame, mcore_init_extra_frame_info): Ditto.
2832 * h8300-tdep.c (h8300_frame_chain, h8300_frame_saved_pc)
2833 (h8300_pop_frame): Ditto.
2834 * blockframe.c (legacy_inside_entry_func)
2835 (legacy_frame_chain_valid): Ditto.
2836 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update call
2837 to deprecated_pc_in_call_dummy.
2838
2839 2004-06-09 Andrew Cagney <cagney@gnu.org>
2840
2841 * gdbarch.sh (REGISTER_TO_VALUE, VALUE_TO_REGISTER): Do not
2842 provide a default value.
2843 (CONVERT_REGISTER_P): Default to generic_convert_register_p.
2844 * gdbarch.h, gdbarch.c: Re-generate.
2845 * arch-utils.c (generic_convert_register_p): Rename
2846 legacy_convert_register_p
2847 (legacy_register_to_value, legacy_value_to_register): Delete
2848 functions.
2849 * arch-utils.h (generic_convert_register_p): Rename
2850 legacy_convert_register_p.
2851 (legacy_register_to_value, legacy_value_to_register): Delete
2852 declarations.
2853
2854 * gdbarch.sh (DEPRECATED_REGISTER_CONVERT_TO_RAW)
2855 (DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL)
2856 (DEPRECATED_REGISTER_CONVERTIBLE): Delete.
2857 * gdbarch.h, gdbarch.c: Re-generate.
2858 * infcmd.c (default_print_registers_info): Simplify.
2859 * findvar.c (value_of_register): Simplify.
2860 * mi/mi-main.c (get_register): Simplify.
2861 * arch-utils.c (legacy_convert_register_p): Always return 0.
2862 (legacy_register_to_value, legacy_value_to_register): Always call
2863 internal_error.
2864
2865 * infptrace.c (child_xfer_memory) [CLEAR_INSN_CACHE]: Delete
2866 #ifdef CLEAR_INSN_CACHE code.
2867 * target.c (generic_mourn_inferior) [CLEAR_DEFERRED_STORES]:
2868 Delete #ifdef CLEAR_DEFERRED_STORES code.
2869
2870 * solib-svr4.c [HANDLE_SVR4_EXEC_EMULATORS]: Delete #ifdef code.
2871
2872 * config/ia64/tm-linux.h (TARGET_ELF64): Delete macro, Update
2873 copyright.
2874 * config/ia64/tm-aix.h (TARGET_ELF64): Ditto.
2875
2876 * config/mips/mipsv4.mh: Delete file.
2877
2878 * config/pa/tm-hppa64.h (HPREAD_ADJUST_STACK_ADDRESS): Delete
2879 unreferenced macro.
2880 (hpread_adjust_stack_address): Delete declaration.
2881
2882 2004-06-08 Andrew Cagney <cagney@gnu.org>
2883
2884 * infptrace.c [ATTACH_DETACH]: Remove #ifdef wrappers.
2885 (attach, detach): When neither PT_ATTACH / PT_DETACH nor
2886 PTRACE_ATTACH / PTRACE_DETACH available call error.
2887 (PT_ATTACH, PT_DETACH): Move definition to attach / detach.
2888 * infttrace.c (update_thread_state_after_attach, attach, detach):
2889 Remove #ifdef wrappers.
2890 * inftarg.c (child_attach, child_detach): Remove #ifdef wrappers.
2891 * gnu-nat.c [ATTACH_DETACH]: Remove #ifdef wrappers.
2892 * config/nm-bsd.h (ATTACH_DETACH): Delete.
2893 * config/nm-sysv4.h (ATTACH_DETACH): Delete.
2894 * config/nm-nbsd.h (ATTACH_DETACH): Delete.
2895 * config/nm-linux.h (ATTACH_DETACH): Delete.
2896 * config/rs6000/nm-rs6000.h (ATTACH_DETACH): Delete.
2897 * config/pa/nm-hppah.h (ATTACH_DETACH): Delete.
2898 * config/i386/nm-i386sco5.h (ATTACH_DETACH): Delete.
2899 * config/i386/nm-i386sco4.h (ATTACH_DETACH): Delete.
2900 * config/i386/nm-i386gnu.h (ATTACH_DETACH): Delete.
2901
2902 2004-06-08 Corinna Vinschen <vinschen@redhat.com>
2903
2904 * configure.in: Set $configdir to the right OS specific value.
2905 Use value when setting $tcldir and $tkdir.
2906 * configure: Regenerate.
2907
2908 2004-06-06 Paul Brook <paul@codesourcery.com>
2909
2910 * gdb/dwarf2-frame.c (decode_frame_entry_1): Decode version 3 CIE
2911 records.
2912
2913 2004-06-08 Paul N. Hilfinger <Hilfinger@gnat.com>
2914
2915 * ada-lang.c (lookup_symbol_in_language): New function to allow
2916 re-use of another language's symbol lookup code. (Placed here
2917 temporarily while Ada support is being integrated into the public
2918 tree).
2919 (restore_language): New auxiliary function for
2920 lookup_symbol_in_language.
2921 * ada-lang.h (lookup_symbol_in_language): Declare (Placed here
2922 temporarily while Ada support is being integrated into the public
2923 tree).
2924
2925 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
2926
2927 * Makefile.in (check//%): New.
2928
2929 * mn10300-tdep.c (mn10300_extract_return_value): Rewrite.
2930 (mn10300_store_return_value): Rewrite.
2931 (mn10300_type_align): New.
2932 (mn10300_use_struct_convention): Rewrite.
2933 (mn10300_return_value): New, using all of the above.
2934 (mn10300_pop_frame_regular): Add saved_regs_size.
2935 (mn10300_gdbarch_init): Remove deprecated rewritten entry points.
2936
2937 * mn10300-tdep.c (mn10300_analyze_prologue): Don't compute saved
2938 regs if PC is on movm.
2939
2940 2004-06-07 Jim Blandy <jimb@redhat.com>
2941
2942 Add native Linux support for the PowerPC E500.
2943 * ppc-tdep.h (struct gdbarch_tdep): New member: 'ppc_gprs_pseudo_p'.
2944 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it to false on
2945 all architectures except the E500.
2946 * ppc-linux-nat.c: (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): New
2947 #definitions.
2948 (struct gdb_evrregset_t): New type.
2949 (have_ptrace_getsetevrregs): New variable.
2950 (get_spe_registers, read_spliced_spe_reg, fetch_spe_register,
2951 fetch_spe_registers): New functions.
2952 (fetch_register): Call fetch_spe_register as appropriate.
2953 Assert that we're only passed raw register numbers.
2954 (fetch_ppc_registers): Call fetch_spe_registers as appropriate.
2955 Don't fetch gprs if they're pseudoregisters.
2956 (set_spe_registers, write_spliced_spe_reg, store_spe_register,
2957 store_spe_registers): New functions.
2958 (store_register): Call store_spe_register as appropriate.
2959 Assert that we're only passed raw register numbers.
2960 (store_ppc_registers): Call store_spe_registers as appropriate.
2961 Don't store gprs if they're pseudoregisters.
2962
2963 2004-06-07 Jeff Johnston <jjohnstn@redhat.com>
2964
2965 * thread-db.c (thread_get_info_callback): Fill in the thread_info
2966 struct if one exists, even if we are dealing with a zombie thread.
2967
2968 2004-06-07 Andrew Cagney <cagney@gnu.org>
2969
2970 * target.h (PC_REQUIRES_RUN_BEFORE_USE): Delete definition.
2971 * config/pa/tm-hppa.h (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE):
2972 Rename PC_REQUIRES_RUN_BEFORE_USE.
2973 * breakpoint.c (breakpoint_sals_to_pc): Update. Wrap reference in
2974 #ifdef.
2975
2976 2004-06-07 Randolph Chung <tausq@debian.org>
2977
2978 * hppa-tdep.c (hppa_frame_cache): Handle the cases when we start
2979 unwinding after sp has been saved to the stack but before the end
2980 of the prologue, and after the fp has been modified but before it has
2981 been saved to the stack.
2982 (hppa_frame_base_address, hppa_frame_base, hppa_frame_base_sniffer):
2983 Remove superfluous definitions.
2984 (hppa_gdbarch_init): Remove superfluous frame base sniffer.
2985
2986 2004-06-07 Guy Martin <gmsoft@gentoo.org>
2987
2988 Committed by Randolph Chung.
2989 * hppa-linux-nat.c: Include the correct version of the header file
2990 depending on the kernel version.
2991
2992 2004-06-06 Randolph Chung <tausq@debian.org>
2993
2994 * infrun.c (trap_expected_after_continue): Remove HP_OS_BUG workaround.
2995 (proceed, init_wait_for_inferior, handle_inferior_event): Likewise.
2996
2997 2004-06-06 Randolph Chung <tausq@debian.org>
2998
2999 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
3000 (hppa_hpux_skip_trampoline_code): Don't cache symbol values.
3001 * hppa-linux-tdep.c (hppa_linux_in_dyncall): Likewise.
3002 * hppa-tdep.c (hppa_symbol_address): New function definition.
3003 * hppa-tdep.h (hppa_symbol_address): New function declaration.
3004
3005 2004-06-06 Randolph Chung <tausq@debian.org>
3006
3007 * hppa-tdep.h (struct value): Forward declaration.
3008 (gdbarch_tdep): Define tdep find_global_pointer method.
3009 * hppa-tdep.c (hppa32_push_dummy_call): Find the global pointer
3010 associated with the function we are trying to call, and write it
3011 to the gp register.
3012 (hppa32_convert_from_funct_ptr_addr): New function.
3013 (hppa_find_global_pointer): New function.
3014 (hppa_gdbarch_init): Set default find_global_pointer method; set
3015 convert_from_func_ptr_addr method.
3016 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): New function.
3017 (hppa_linux_init_abi): Set find_global_pointer method.
3018 * Makefile.in (hppa-linux-tdep.o): Add value.h dependency.
3019
3020 2004-06-06 Randolph Chung <tausq@debian.org>
3021
3022 * gdbarch.sh (PUSH_DUMMY_CALL): Change CORE_ADDR func_addr argument
3023 to struct value *function.
3024 * gdbarch.c: Regenerate.
3025 * gdbarch.h: Likewise.
3026 * infcall.c (call_function_by_hand): Pass entire function value
3027 to push_dummy_call.
3028
3029 * Makefile.in (alpha-tdep.o, frv-tdep.o, ia64-tdep.o, mips-tdep.o)
3030 (ppc-sysv-tdep.o, rs6000-tdep.o): Update dependencies.
3031 * alpha-tdep.c (alpha_push_dummy_call): Update call signature.
3032 * amd64-tdep.c (amd64_push_dummy_call): Likewise.
3033 * arm-tdep.c (arm_push_dummy_call): Likewise.
3034 * avr-tdep.c (avr_push_dummy_call): Likewise.
3035 * cris-tdep.c (cris_push_dummy_call): Likewise.
3036 * d10v-tdep.c (d10v_push_dummy_call): Likewise.
3037 * frv-tdep.c (frv_push_dummy_call): Likewise.
3038 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
3039 * hppa-tdep.c (hppa32_push_dummy_call)
3040 (hppa64_push_dummy_call): Likewise.
3041 * i386-tdep.c (i386_push_dummy_call): Likewise.
3042 * ia64-tdep.c (ia64_push_dummy_call): Likewise.
3043 * m32r-tdep.c (m32r_push_dummy_call): Likewise.
3044 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
3045 * m68k-tdep.c (m68k_push_dummy_call): Likewise.
3046 * m88k-tdep.c (m88k_push_dummy_call): Likewise.
3047 * mips-tdep.c (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
3048 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Likewise.
3049 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
3050 (ppc64_sysv_abi_push_dummy_call): Likewise.
3051 * ppc-tdep.h (ppc_sysv_abi_push_dummy_call)
3052 (ppc64_sysv_abi_push_dummy_call): Likewise.
3053 * rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
3054 * s390-tdep.c (s390_push_dummy_call): Likewise.
3055 * sh-tdep.c (sh_push_dummy_call_fpu)
3056 (sh_push_dummy_call_nofpu): Likewise.
3057 * sparc-tdep.c (sparc32_push_dummy_call): Likewise.
3058 * sparc64-tdep.c (sparc64_push_dummy_call): Likewise.
3059 * vax-tdep.c (vax_push_dummy_call): Likewise.
3060
3061 2004-06-04 Jim Blandy <jimb@redhat.com>
3062
3063 * ppc-linux-nat.c (fetch_register): Don't forget to pass the
3064 gdbarch argument to register_size.
3065
3066 * rs6000-tdep.c (rs6000_store_return_value): Use
3067 regcache_cooked_write_part instead of
3068 deprecated_write_register_bytes.
3069 (rs6000_gdbarch_init): Register it for gdbarch_store_return_value,
3070 not gdbarch_deprecated_store_return_value.
3071
3072 * ppc-linux-nat.c (store_register, fetch_register): Remove
3073 incorrect assertions. Simplify and generalize handling of
3074 transfers whose sizes are not multiples of, or less than, sizeof
3075 (PTRACE_XFER_TYPE).
3076
3077 2004-06-04 Jeff Johnston <jjohnstn@redhat.com>
3078
3079 * infrun.c (handle_inferior_event): Don't treat an invalid ptid
3080 as a new thread event.
3081 * thread-db.c (thread_get_info_callback): If the thread is a
3082 zombie, return TD_THR_ZOMBIE.
3083 (thread_from_lwp): If thread_get_info_callback returns
3084 TD_THR_ZOMBIE, check if the thread is still on the thread list
3085 and return a -1 ptid if not found.
3086 (thread_db_wait): If thread_from_lwp returns a -1 ptid, then
3087 change the status to TARGET_WAITKIND_SPURIOUS.
3088
3089 2004-06-03 Corinna Vinschen <vinschen@redhat.com>
3090
3091 * sh-tdep.c (sh3e_sh4_store_return_value): Correctly store
3092 double values in little endian mode.
3093
3094 2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>
3095
3096 Committed by Andrew Cagney.
3097 * gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
3098 after last enum constant to avoid error from IBM C
3099 compiler.
3100
3101 2004-06-02 Jim Blandy <jimb@redhat.com>
3102
3103 * ppc-linux-nat.c (store_register, fetch_register): Rename 'mess'
3104 to 'message', and make it local to the lone block that uses it.
3105
3106 * ppc-linux-nat.c (store_register): Remove unused local 'offset'.
3107
3108 2004-06-02 Paul N. Hilfinger <hilfinger@gnat.com>
3109
3110 * ada-exp.y: Update copyright notice.
3111 Include block.h.
3112
3113 Replace REGNAME, LAST, INTERNAL_VARIABLE with
3114 SPECIAL_VARIABLE and unify the treatment of these cases.
3115
3116 (write_attribute_call0): Remove.
3117 (write_attribute_call1): Remove.
3118 (write_attribute_calln): Remove.
3119 (save_qualifier): Add missing semicolon.
3120
3121 (simple_exp,exp): Decomment (i.e., reactivate) code that was
3122 temporarily disabled to allow compilation with FSF head version.
3123
3124 (simple_exp syntax): Remove use of OP_ADA_ATTRIBUTE and
3125 use individual operators (OP_*) for all attributes.
3126 (exp syntax): Use write_int.
3127 Handle STRING literals with OP_STRING.
3128 (variable syntax): Add limit parameter to calls to
3129 write_object_renaming.
3130
3131 (temp_parse_space): New definition to hold entities that need
3132 only live until the next call to ada_parse.
3133 (string_to_operator): Rename fields of ada_opname_table entries.
3134
3135 (write_var_from_sym): Record block.
3136 (write_var_from_name): Minor reformatting.
3137 Make sure saved name is properly encoded in the case of multiple
3138 matches, and set its language to Ada.
3139 Update comment.
3140 Modify to indicate unresolved name as symbol in the UNRESOLVED
3141 namespace, allocated in temp_parse_space.
3142 (write_int): New function.
3143
3144 (write_object_renaming): Add max_depth parameter to limit
3145 chains of object renamings.
3146 Handle case where root of renaming expression is itself a renaming.
3147 Use temp_parse_space for temporary name buffer.
3148 Handle renamings to dereferenced pointers (___XEXA suffices).
3149
3150 (ada_parse, yyerror, string_to_operator,
3151 write_var_from_sym, write_var_from_name, write_attribute_call0,
3152 write_attribute_call1, write_attribute_calln,
3153 write_object_renaming): Protoize.
3154
3155 (_initialize_ada_exp): New function.
3156
3157 * ada-lang.c: Update copyright notice.
3158 General terminology change to conform to GNAT compiler usage:
3159 mangle => encode, demangle => decode
3160 Include gdb_obstack.h.
3161 Include gdb_regex.h
3162 Include frame.h
3163 Include hashtab.h
3164 Include completer.h
3165 Include gdb_stat.h
3166 Include block.h
3167 Include infcall.h
3168
3169 (ADA_RETAIN_DOTS): Make sure this is defined.
3170 (TRUNCATION_TOWARDS_ZERO): Define.
3171 (struct string_vector): Define.
3172 (unresolved_names): Remove definition.
3173 (xnew_string_vector): New function.
3174 (string_vector_append): New function.
3175 (extract_string): Make static.
3176 (ada_unqualified_name): New function.
3177 (add_angle_brackets): New function.
3178 (function_name_from_pc): New function.
3179 (place_on_stack): Rename to ensure_lval.
3180
3181 (ensure_lval): Renamed from place_on_stack.
3182 Make identity on lvals.
3183 Update comment.
3184 (is_nonfunction): New interface.
3185 Only symbols in LOC_CONST class can be enumerals.
3186 (fill_in_ada_prototype): Remove; now independent of language.
3187 (add_defn_to_vec): Add obstack and symtab arguments.
3188 Use obstack to hold collected definitions.
3189 (num_defns_collected): New function.
3190 (defns_collected): New function.
3191 (ada_resolve_subexp): Rename to resolve_subexp.
3192 (resolve_subexp): Renamed from ada_resolve_subexp.
3193 (ada_op_name): Return non-const result.
3194 (ada_decoded_op_name): Renamed from ada_op_name, now used for
3195 other purposes.
3196
3197 (to_fixed_array_type): Add declaration.
3198 (coerce_unspec_val_to_type): Remove offset parameter.
3199 (find_sal_from_funcs_and_line): New interface.
3200 (find_line_in_linetable): Ditto.
3201
3202 (all_sals_for_line): Rename to ada_sals_for_line and make
3203 global.
3204 Add new parameter. When set, do not ask the user to choose the
3205 instance, but use the first one found instead.
3206 Use given line number in returned sals.
3207 Fix comment.
3208 Skip the prologue if funfirstline is set.
3209 Correct for memory leak when 0 lines found.
3210
3211 (value_pos_atr): Use pos_atr.
3212 (pos_atr): New function.
3213 (standard_lookup): Add block parameter.
3214
3215 (makeTimeStart): Remove declaration and uses.
3216 (makeTimeStop): Remove declaration and uses.
3217
3218 (ada_completer_word_break_characters): Allow for VMS.
3219 (ADA_MAIN_PROGRAM_SYMBOL_NAME): Make into constant.
3220 (raise_sym_name): New constant.
3221 (raise_unhandled_sym_name): New constant.
3222 (raise_assert_sym_name): New constant.
3223 (process_raise_exception_name): New constant.
3224 (longest_exception_template): New constant.
3225 (warning_limit): New variable to limit warnings during expression
3226 evaluation.
3227 (warnings_issued): New variable to keep track of warnings issued.
3228 (known_runtime_file_name_patterns): New constant.
3229 (known_auxiliary_function_name_patterns): New constant.
3230 (symbol_list_obstack): New variable.
3231
3232 (field_name_match,is_suffix,is_suppressed_name,ada_encode,
3233 ada_decode,ada_match_name,encoded_ordered_before,equiv_types,
3234 lesseq_defined_than,is_nondebugging_type,is_name_suffix,wild_match,
3235 find_sal_from_funcs_and_line, ada_breakpoint_rewrite,
3236 ada_is_tagged_type, ada_is_parent_field, ada_is_wrapper_field,
3237 ada_variant_discrim_name, field_alignment, dynamic_template_type,
3238 ada_is_character_type, ada_is_aligner_type, ada_is_vax_floating_type):
3239 Replace use of deprecated STREQ and STREQN macros by calls to strncmp
3240 and strcmp.
3241
3242 (ada_get_field_index): New function.
3243 (lim_warning): New function.
3244 (ada_translate_error_message): New function.
3245 (MAX_OF_SIZE): New function.
3246 (MIN_OF_SIZE): New function.
3247 (UMAX_OF_SIZE): New function.
3248 (UMIN_OF_SIZE): New function.
3249 (discrete_type_high_bound): New function.
3250 (discrete_type_low_bound): New function.
3251 (base_type): New function.
3252 (do_command): Remove.
3253
3254 (ada_update_initial_language): Use language_ada, not language_unknown.
3255 (ada_encode): Renamed from ada_mangle.
3256 Obey ADA_RETAIN_DOTS.
3257 (ada_decode): Renamed from ada_demangle.
3258 Update coding conventions.
3259 (decoded_names_store): New hash table.
3260 (ada_decode_symbol): New function.
3261 (ada_la_decode): New function.
3262
3263 (modify_general_field): Correct computations of offset and bit
3264 position.
3265 (desc_base_type): Handle ref types, too.
3266 (ada_is_direct_array_type): New function.
3267
3268 (ada_is_simple_array): Rename to ada_is_simple_array_type.
3269 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
3270 (ada_is_bogus_array_descriptor,ada_type_of_array,
3271 ada_coerce_to_simple_array_ptr,ada_coerce_to_simple_array,
3272 ada_type_match,convert_actual,ada_evaluate_subexp): Use renamed
3273 ada_is_array_descriptor_type.
3274
3275 (ada_coerce_to_simple_array_type): Fix incorrect value freeing.
3276 (ada_is_packed_array_type): Handle pointers or
3277 references to packed arrays as well.
3278 (packed_array_type): Uncomment use of TYPE_FLAG_FIXED_INSTANCE.
3279 (decode_packed_array_type): Search for the packed array type
3280 symbol in the currently selected block and associated
3281 superblocks too.
3282 Use lookup_symbol again.
3283
3284 (decode_packed_array): Handle pointers and references.
3285 Update call to coerce_unspec_val_to_type.
3286 (decode_packed_array_type,value_subscript_packed): Limit warnings.
3287 (ada_value_primitive_packed_val): Improve comment.
3288
3289 (ada_index_type): Substitute int type for "undefined".
3290 (ada_index_type,ada_array_bound_from_type,ada_array_bound,
3291 ada_array_langth, ada_is_string_type): Use renamed
3292 ada_is_simple_array_type.
3293 (empty_array): New function.
3294
3295 (ada_resolve): Rename to resolve.
3296 (resolve): Make static.
3297 Call renamed resolve_subexp.
3298 Update comment.
3299 (ada_resolve_subexp): Rename to resolve_subexp.
3300 (resolve_subexp): Update comment.
3301 Decomment disabled code.
3302 Add LOC_COMPUTED* cases.
3303 Modify to use temporary struct symbols (marked as being in
3304 UNDEF_NAMESPACE) to indicate unresolved names, instead of
3305 OP_UNRESOLVED_VALUE.
3306 Remove OP_ATTRIBUTE; use individual opcodes for attributes.
3307 Add OP_STRING case.
3308 Remove OP_ARRAY.
3309 Use SYMBOL_PRINT_NAME instead of ada_demangle.
3310 Use new ada_lookup_symbol_list interface.
3311 Use new ada_resolve_function interface.
3312 Remove OP_TYPE case.
3313
3314 (ada_args_match): Idiot proof against null actuals.
3315 Use intermediate variables to clarify.
3316 (ada_resolve_function): Update comment and interface.
3317 (mangled_ordered_before): Rename to encoded_ordered_before and
3318 update comment.
3319 (sort_choices): Update comment and interface.
3320 Use SYMBOL_LINKAGE_NAME in place of SYMBOL_NAME.
3321 (user_select_syms): New interface.
3322 Use new sort_choices interface.
3323 Use SYMBOL_PRINT_NAME rather than SYMBOL_SOURCE_NAME.
3324 (possible_user_operator_p): Idiot-proof against null values.
3325 (ada_simple_renamed_entity): Don't make cleanup; rely on
3326 caller to free result string.
3327 Remove const from return type.
3328 (make_array_descriptor): Rename uses of place_on_stack to
3329 ensure_lval.
3330 Make sure that arrays are on stack.
3331
3332 (HASH_SIZE): Define.
3333 (struct cache_entry): Define.
3334 (cache_space): Define.
3335 (cache): Define.
3336 (clear_ada_sym_cache): New function.
3337 (find_entry): New function.
3338 (lookup_cached_symbol): New function.
3339 (defn_vector_size): Define.
3340 (cache_symbol): New function.
3341 (defn_symbols): Remove.
3342
3343 (standard_lookup): Use lookup_symbol_in_language to get effect of
3344 C lookup.
3345 Cache results.
3346
3347 (symbol_completion_match): New function.
3348 (symbol_completion_add): New function.
3349 (ada_make_symbol_completion_list): New function.
3350
3351 (ada_lookup_partial_symbol,ada_lookup_simple_minsym,
3352 add_symbols_from_enclosing_procs,remove_extra_symbols): Replace
3353 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
3354 (symtab_for_sym): Handle LOC_COMPUTED, LOC_COMPUTED_ARG.
3355
3356 (ada_lookup_simple_minsym): New function.
3357 (ada_lookup_minimal_symbol): Use ada_lookup_simple_minsym.
3358
3359 (add_symbols_from_enclosing_procs): New interface.
3360 Conditionalize more helpfully.
3361 Don't bother if program isn't running.
3362 Use new interface to get_frame_block.
3363 Limit number of levels searched with MAX_LEXICAL_LEVELS, just in case.
3364
3365 (remove_extra_symbols): New interface.
3366 (xget_renaming_scope): New function.
3367 (is_package_name): New function.
3368 (renaming_is_visible): New function.
3369 (remove_out_of_scope_renamings): New function.
3370
3371 (ada_lookup_symbol_list): New interface.
3372 Properly reinitialize the symbol list obstack.
3373 Don't call add_symbols_from_enclosing_procs if we start from a
3374 static or global block.
3375 Use new interfaces to ada_add_block_symbols, add_defn_to_vec,
3376 add_symbols_from_enclosing_procs.
3377 Add symtab data to cached entries.
3378 Handle symbols prefixed with
3379 "standard__" specially; strip prefix and don't look in local symbols.
3380 Do not include out of scope renaming symbols in list of
3381 symbols returned.
3382 Add const to block parameter.
3383 Move check for non-local, non-global symbols earlier.
3384 Remove timing stuff.
3385 (ada_lookup_symbol): New interface.
3386 Find symtab as well.
3387 (ada_lookup_symbol_nonlocal): New function.
3388
3389 (is_name_suffix): Enhance suffix detection to recognize
3390 an optional "__[:digit:]+" before any "\.[:digit:]+" suffix.
3391 (is_dot_digits_suffix): New function.
3392 (wild_match): Ignore ".[:digit:]*" suffixes during matches.
3393
3394 (ada_add_block_symbols): New interface. Use obstack to return results
3395 in a vector of struct ada_symbol_infos. Add symtab argument.
3396 Use new interface to add_defn_to_vec.
3397 Remove calls to fill_in_ada_prototype.
3398 Use BLOCK_BUCKETS, BLOCK_BUCKET.
3399
3400 (ada_finish_decode_line_1): Add const qualification to local to fix
3401 warning.
3402 Start looking in static block for functions to avoid attempts
3403 to search frame chain for up-level variables.
3404 Adapt to new ada_sals_for_line interface.
3405 Use new interfaces to ada_lookup_symbol_list and user_select_syms.
3406 Handle quoting of the function name inside the spec string.
3407 Skip prologue when funfirstline is set and update the
3408 function documentation to that effect.
3409
3410 (debug_print_lines, debug_print_block, debug_print_blocks,
3411 debug_print_symtab): Remove.
3412
3413 (ada_main_name): New function.
3414 (ada_exception_breakpoint_type): New function.
3415 (is_known_support_routine): New function.
3416 (ada_find_printable_frame): Renamed from find_printable_frame and made
3417 global.
3418 Remove level parameter.
3419 Use new interface to select_frame.
3420
3421 (begin_command): Remove.
3422 (ada_adjust_exception_stop): New function.
3423 (ada_print_exception_stop): New function.
3424 (exception_name_from_cond): New function.
3425 (ada_report_exception_break): Replace disabled code with
3426 conditionalization on GNAT_GDB.
3427 Get the exception name from the condition string.
3428 Remove and move functionality into new functions
3429 ada_print_exception_breakpoint_task and
3430 ada_print_exception_breakpoint_nontask.
3431 (error_breakpoint_runtime_sym_not_found): New function.
3432 (is_runtime_sym_defined): New function.
3433 (ada_breakpoint_rewrite): Uncomment suppressed code.
3434 Use symbolic error-message and runtime-symbol names.
3435 Surround runtime symbol names in quotes.
3436 Allow non-specific breakpoints on exceptions and assertions before
3437 program starts.
3438
3439 (ada_is_tagged_type): Add parameter.
3440 (ada_is_tag_type): New function.
3441 (ada_tag_type): Use new ada_lookup_struct_elt_type interface.
3442 (ada_variant_discrim_type): Ditto.
3443 (value_tag_from_contents_and_address): New function.
3444 (type_from_tag): New function.
3445 (struct tag_args): New structure used to communicate with
3446 ada_tag_name_1.
3447 (ada_tag_name_1): New function.
3448 (ada_tag_name): New function.
3449
3450 (ada_scan_number): Update comment.
3451 (find_struct_field): New function.
3452 (ada_search_struct_field): Make static.
3453 (ada_value_struct_elt): New version that returns references when
3454 given pointers or references to structs.
3455 (ada_lookup_struct_elt_type): Add 'refok' parameter.
3456 (ada_which_variant_applies): Use new ada_lookup_struct_elt_type
3457 interface.
3458 (ada_value_ind): Use new ada_to_fixed_value interface.
3459 (ada_coerce_ref): Ditto.
3460 (field_offset): Remove.
3461
3462 (ada_find_any_symbol): New function, extracted from ada_find_any_type.
3463 (ada_find_renaming_symbol): New function.
3464 (ada_prefer_type): Prefer named types over unnamed ones.
3465 (variant_field_index): New function.
3466 (contains_variant_part): Removed: subsumed by variant_field_index.
3467 (ada_template_to_fixed_record_type): New function, mostly from
3468 template_to_fixed_record_type.
3469 (template_to_fixed_record_type):
3470 Do not scan the type fields beyond the last one; prevents a
3471 potential SEGV.
3472 Handle case where variant field is listed BEFORE discriminant it
3473 depends on.
3474 Fix calculation of record length when bit length is
3475 not evenly divisible by char length.
3476 Move code to ada_template_to_fixed_record_type and call it.
3477
3478 (template_to_static_fixed_type): Revise comment.
3479 Modify to work on ordinary record types as well as templates,
3480 so as to handle fields that use ___XVE or ___XVU encodings.
3481 (to_record_with_fixed_variant_part): Fill out comment.
3482 Initialize C++ stuff in right type.
3483 Allow case where DVAL is null.
3484 Handle case where variant field is not last.
3485 Fix typo concerning record length.
3486 (to_fixed_record_type): Decomment disabled code.
3487 (to_fixed_record_type): Use variant_field_index instead of
3488 contains_variant_part.
3489 (to_fixed_variant_branch_type): Ditto.
3490 (to_fixed_array_type): Decomment disabled code.
3491 (ada_to_fixed_type): Convert tagged types to the specific type.
3492 Deactivate the size-check for array types in order to avoid
3493 some false size alarms.
3494 (to_static_fixed_type): Decomment disabled code.
3495 Modify to call template_to_static_fixed_type
3496 on ordinary structs, not just ___XVE- and ___XVU-encoded fields.
3497 (ada_to_fixed_value_create): Renamed version of old ada_to_fixed_value.
3498 Remove valaddr argument, as it is never really used.
3499 (ada_to_fixed_value): Change interface to act on single struct value*
3500 operand.
3501 (adjust_pc_past_prologue): New function.
3502 (ada_attribute_name): Modify to take enum exp_opcode argument.
3503
3504 (ada_enum_name): Recognize new homonym-distinguishing convention.
3505 Adjust local variable's type to remove compiler warning.
3506 Fix a small problem in the part that unqualifies the enumeration name.
3507 (ada_value_binop): New function.
3508 (ada_value_equal): New function.
3509
3510 (ada_evaluate_subexp): Use new ada_lookup_struct_elt_type interface.
3511 Don't give error message when not doing normal evaluation
3512 and a tagged type doesn't seem to contain a structure member.
3513 Give error message for packed arrays.
3514 For indexing arrays, handle pointers to packed arrays correctly.
3515 Handle case of 'first and 'last attributes of bare integral type
3516 without encoded subtype info.
3517 Remove some unnecessary casts.
3518 Fix uninitialized value of type in computing 'first, 'last, or 'length
3519 of array object.
3520 Add BINOP_EQUAL and BINOP_NOTEQUAL cases.
3521 Remove binop_user_defined_p tests and value_x_binop and value_x_unop
3522 calls.
3523 Attributes are now exp_opcode values.
3524 Correct treatment of 'modulus.
3525 Better error message for taking 'length of wrong kind of type;
3526 improve comment.
3527 Change EVAL_NORMAL to noside for consistency.
3528 Use ada_value_binop for DIV, MOD, REM.
3529 Make special case out of array of length 0, since an argument
3530 of 0 upsets some platforms' malloc.
3531 Use OP_STRING instead of OP_ARRAY.
3532 For slice, add check that we have an array type before extracting
3533 a slice out of it. Avoids a SEGV.
3534 When evaluating an array slice, if the array type is a reference to
3535 an aligner type, then replace the aligner type by the actual type.
3536 Decomment disabled code.
3537 Remove some dead code.
3538 Use temporary struct symbols (marked as being in UNDEF_NAMESPACE)
3539 to indicate unresolved names, instead of OP_UNRESOLVED_VALUE.
3540 Rename BINOP_MBR to BINOP_IN_BOUNDS, TERNOP_MBR to TERNOP_IN_RANGE,
3541 and UNOP_MBR to UNOP_IN_RANGE.
3542 If an array type has a parallel ___XVE type, then use it.
3543 Turn arrays into pointers for lvalue arrays.
3544 Change TERNOP_SLICE code to work even when bounds are unknown, ignoring
3545 bounds error and handle 0-length slices.
3546 Use lim_warning.
3547 When selecting fields, apply ada_to_fixed_value (because the fields
3548 might have ___XVU or ___XVE encodings even if not dynamic.)
3549 Use ada_to_fixed_value_create and new ada_to_fixed_value interface.
3550 (ada_is_system_address_type): New function.
3551
3552 (get_var_value): Use new interface to ada_lookup_symbol_list.
3553 (get_int_var_value): New interface.
3554 (to_fixed_range_type): Allow unknown bound, with warning.
3555 (ada_is_modular_type): Decomment disabled code.
3556 (ADA_OPERATORS): New definition.
3557 (ada_operator_length): New function.
3558 (ada_expr_op_name): New function.
3559 (ada_forward_operator_length): New function.
3560 (ada_dump_subexp_body): New function.
3561 (ada_print_subexp): New function.
3562 (ada_exp_descriptor): New constant.
3563 (ada_op_print_tab): Add 'size. Remove FIXMEs.
3564 (ada_language_defn): Add ada_exp_descriptor entry.
3565 Change ada_parse => parse.
3566 Add post-parser entry.
3567 Use ada-specific non-local symbol lookup.
3568 Don't use C-style arrays.
3569 String lower-bound is 1.
3570 Decomment disabled code.
3571 (parse): New function.
3572 New fields ada_translate_error_message, ada_lookup_symbol,
3573 ada_lookup_minimal_symbol.
3574
3575 * ada-lang.h: Update copyright dates.
3576 Replace the mangle/demangle terminology throughout by the
3577 more appropriate encode/decode one.
3578 Include breakpoint.h.
3579 Forward declare struct partial_symbol, struct block.
3580 (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Define.
3581 (EXTRACT_ADDRESS): Remove.
3582 (EXTRACT_INT): Remove.
3583 (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Define.
3584 (MAX_ENCLOSING_FRAME_LEVELS): Define.
3585 (MAX_RENAMING_CHAIN_LENGTH): Define.
3586 (struct ada_opname_map): mangled => decoded, demangled=>encoded.
3587
3588 (enum task_states): Remove.
3589 ada_task_states: Remove.
3590 (fat_string): Remove.
3591 (struct entry_call): Remove.
3592 (struct task_fields): Remove.
3593 (struct task_entry): Remove.
3594
3595 (struct ada_symbol_info): Define.
3596 (enum ada_attribute): Remove.
3597 (enum ada_operator): Define.
3598
3599 (ada_get_field_index): Declare.
3600 (ada_coerce_to_simple_array): Rename to ada_coerce_to_simple_array_ptr.
3601 (ada_is_simple_array): Rename to ada_is_simple_array_type.
3602 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
3603 (ada_lookup_symbol_list): New interface.
3604 (ada_decode_symbol): Declare.
3605 (ada_decode): Declare.
3606 (ada_lookup_symbol): New interface.
3607 (ada_update_initial_language): Declare.
3608 (ada_lookup_simple_minsym): Declare.
3609 (user_select_syms): New interface.
3610 (ada_sals_for_line): Declare.
3611 (ada_is_tagged_type): New interface.
3612 (ada_tag_name): Declare.
3613 (ada_lookup_struct_elt_type): Remove declaration.
3614 (ada_search_struct_field): Remove declaration.
3615 (ada_attribute_name): New interface.
3616 (ada_is_system_address_type): Declare.
3617 (ada_to_fixed_value): Remove declaration.
3618 (ada_template_to_fixed_record_type_1): Declare.
3619 (get_int_var_value): New interface.
3620 (ada_find_any_symbol): Declare.
3621 (ada_find_renaming_symbol): Declare.
3622 (ada_mangle): Rename to ada_encode.
3623 (ada_simple_renamed_entity): Remove const.
3624 (ada_main_name): Declare.
3625 (get_current_task): Rename to ada_get_current_task.
3626 (get_entry_number): Remove declaration.
3627 (ada_report_exception_break): Remove declaration.
3628 (ada_print_exception_breakpoint_nontask): Declare.
3629 (ada_print_exception_breakpoint_task): Declare.
3630 (ada_find_printable_frame): Declare.
3631
3632 * ada-lex.l: Update copyright notices.
3633 Use xmalloc and xfree instead of malloc and free.
3634 Use new interface to name_lookup.
3635 Use new interface to
3636 ada_mangle=>ada_encode.
3637 Redo handling of '$...' variable to parallel current treatment
3638 in c-exp.y.
3639 (resize_tempbuf, canonicalizeNumeral, is_digit_in_base,
3640 digit_to_int, strtoulst, processInt, processReal, processId,
3641 block_lookup, name_lookup, find_dot_all, subseqMatch, processAttribute,
3642 yywrap): Protoize.
3643
3644 (processInt): Use cast to remove harmless warning.
3645 (processReal): Modify to get rid of compiler warning on scan formats.
3646
3647 (processId): Replace xmalloc with obstack_alloc for name and remove
3648 call to ada_name_string_cleanup.
3649 Remove obsolete disabled code.
3650 (name_lookup): Ditto.
3651 New interface.
3652 Use obsavestring on temp_parse_space instead of savestring
3653 on name, and remove call to ada_name_string_cleanup.
3654 Free string returned from ada_simple_renamed_entity.
3655 Use new interface to ada_lookup_symbol_list.
3656 Decomment disabled code.
3657 Treat LOC_COMPUTED and LOC_COMPUTED_ARG symbols as variables,
3658 not types.
3659 When a type name lookup succeeds as a result of
3660 lookup_primitive_typename, check for regular type entry that has not
3661 yet been read in.
3662 Limit length of chain of renamed symbols we are willing to follow.
3663 Do not break names beginning with "standard__" into segments.
3664 (block_lookup): Use new interface to ada_lookup_symbol_list.
3665
3666 * ada-typeprint.c: Update copyright notice.
3667 (demangled_type_name): Rename to decoded_type_name.
3668 (ada_typedef_print): Use SYMBOL_PRINT_NAME.
3669 (print_range_bound): Correct handling of negative
3670 bounds that make the index type looked unsigned under STABS.
3671 (print_dynamic_range_bound): Use new interface to get_int_var_value.
3672 (print_range_type_named): Use the builtin int type if no type
3673 corresponding to the given type name could be found.
3674 (print_array_type): ada_is_simple_array => ada_is_simple_array_type.
3675 Add some bullet-proofing.
3676 (print_variant_clauses): Allow for variant branches with ___XVU
3677 encodings that are not dynamic fields.
3678 Use new interface to ada_is_tagged_type.
3679 (print_record_type): Allow for fields with ___XVE encodings that
3680 are not dynamic fields.
3681 Use new interface to ada_is_tagged_type.
3682 (ada_print_type): ada_is_array_descriptor =>
3683 ada_is_array_descriptor_type.
3684
3685 * ada-valprint.c: Update copyright notice.
3686 Include gdb_string.h
3687 Include infcall.h
3688 (ui_memcpy): New function.
3689 (ada_print_floating): New function.
3690 (ada_print_str): Order arguments correctly.
3691 Correct handling of empty arrays and arrays of 0-length items.
3692 ada_is_array_descriptor => ada_is_array_descriptor_type
3693 Print values of type System.Address in hexadecimal format.
3694 Use ada_print_floating to print floating-point numbers in Ada format.
3695 Print class tag values with type names.
3696 No longer print the address of reference values. Avoids
3697 a potential confusion.
3698 (ada_value_print): Stop printing the object type for reference
3699 values, but preserve that behavior for access types. Avoids
3700 a potential confusion.
3701 Simplify one conditional expression, as the first part is now
3702 necessarily true.
3703 ada_is_array_descriptor => ada_is_array_descriptor_type
3704 Add check for arrays for null records, and print them by hand.
3705
3706 2004-06-01 Jim Blandy <jimb@redhat.com>
3707
3708 * ppc-tdep.h: Delete unused 'regoff' member.
3709 * rs6000-tdep.c (rs6000_gdbarch_init): Don't initialize it.
3710
3711 2004-06-01 Michael Chastain <mec.gnu@mindspring.com>
3712
3713 Fix PR symtab/1661.
3714 * hpread.c (hpread_pxdb_needed): Call memset after alloca.
3715 (hpread_read_struct_type): Likewise.
3716
3717 2004-06-01 Andrew Cagney <cagney@gnu.org>
3718
3719 * mi/mi-cmd-env.c (env_execute_cli_command): Use xstrprintf
3720 instead of xasprintf.
3721 * mi/mi-main.c (mi_error_last_message, mi_cmd_exec_interrupt)
3722 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
3723 (mi_cmd_data_list_register_names)
3724 (mi_cmd_data_list_changed_registers)
3725 (mi_cmd_data_list_register_values)
3726 (get_register, mi_cmd_data_write_register_values)
3727 (mi_cmd_data_write_register_values)
3728 (mi_cmd_data_assign, mi_cmd_data_evaluate_expression)
3729 (mi_cmd_target_download, mi_cmd_target_select)
3730 (mi_cmd_data_read_memory, mi_cmd_data_write_memory)
3731 (mi_execute_cli_command, mi_execute_async_cli_command)
3732 (mi_execute_async_cli_command): Ditto.
3733 * mi/mi-interp.c (mi_cmd_interpreter_exec) Ditto.
3734 * mi/mi-cmd-var.c (mi_cmd_var_create): Ditto.
3735
3736 * mi/mi-cmds.h (mi_error_last_message): Delete declaration.
3737 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call
3738 error_last_message instead of mi_error_last_message.
3739 * mi/mi-main.c (mi_error_last_message): Delete function.
3740
3741 * mi/mi-main.c (mi_cmd_data_read_memory): Add missing return for
3742 "invalid number of columns" error. Delete redundant "out of
3743 memory" check.
3744
3745 2004-05-31 Mark Kettenis <kettenis@gnu.org>
3746
3747 * i386bsd-nat.c: Don't include <sys/procfs.h>.
3748 (gregset_t, fpregset_t): Remove typedefs.
3749 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Remove macros.
3750 (REG_OFFSET): Rename argument.
3751 (i386bsd_r_reg_offset): Rename from reg_offset.
3752 (REG_ADDR): Remove macro.
3753 (cannot_fetch_register, supply_gregset, fill_gregset): Remove
3754 functions.
3755 (i386bsd_supply_gregset, i386bsd_collect_gregset): New functions.
3756 (fetch_inferior_registers): Use `struct reg' and `struct fpreg'
3757 instead of gregset_t and fpregset_t. Use i386bsd_supply_gregset
3758 instead of supply_gregset.
3759 (store_inferior_registers): Use `struct reg' and `struct fpreg'
3760 instead of gregset_t and fpregset_t. Use i386bsd_collect_gregset
3761 instead of fill_gregset.
3762 (register_u_addr): Use i386_r_reg_offset instead of REG_ADDR.
3763
3764 * i386bsd-nat.c: Don't include "gregset.h".
3765 (supply_gregset, fill_gregset): Make static.
3766 (supply_fpregset, fill_fpregset): Remove.
3767 * Makefile.in (i386bsd-nat.o): Update dependencies.
3768
3769 2004-05-30 Mark Kettenis <kettenis@gnu.org>
3770
3771 * fbsd-proc.c: Include "regcache.h", "regset.h" and
3772 "gdb_assert.h". Con't include "gregset.h".
3773 (fbsd_make_corefile_notes): Use regset-based core file support
3774 instead off fill_gregset and fill_fpregset.
3775 * Makefile.in (fbsd-proc.o): Update dependencies.
3776
3777 * m88k-tdep.c (m88k_analyze_prologue): Fix handling of branch
3778 instructions.
3779 (m88k_frame_prev_register): Simplify code a bit.
3780
3781 * amd64-tdep.c (amd64_supply_fpregset): Adjust comment.
3782 (amd64_collect_fpregset): New function.
3783 (amd64_regset_from_core_section): Use amd64_collect_fpregset.
3784
3785 * hppa-tdep.h (hppa_regnum): Add HPPA_R31_REGNUM.
3786
3787 * i386-tdep.c (i386_supply_gregset): Adjust comment.
3788 (i386_collect_gregset): New function.
3789 (i386_supply_fpregset): Adjust comment.
3790 (i386_collect_fpregset): New function.
3791 (i386_regset_from_core_section): Use i386_collect_gregset and
3792 i386_collect_fpregset.
3793
3794 * hppa-tdep.c (hppa_frame_prev_register_helper): Reimplement to
3795 handle VALUEP being null.
3796
3797 * regset.h (collect_regset_ftype): Unconstify fourth argument.
3798
3799 2004-05-29 Mark Kettenis <kettenis@gnu.org>
3800
3801 * MAINTAINERS: Undelete m88k. Add myself as maintainer.
3802
3803 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Adjust for new
3804 assembler in OpenBSD 3.5-current.
3805 (amd64obsd_sigcontext_addr): Likewise.
3806
3807 2004-05-28 Jim Blandy <jimb@redhat.com>
3808
3809 * rs6000-tdep.c: Use the modern gdbarch methods for handling the
3810 register set, so our regcache isn't declared "legacy" and our E500
3811 pseudoregister read and write functions aren't ignored.
3812 (rs6000_register_byte, rs6000_register_raw_size,
3813 rs6000_register_virtual_type, rs6000_register_convertible,
3814 rs6000_register_convert_to_virtual,
3815 rs6000_register_convert_to_raw): Deleted.
3816 (rs6000_register_type, rs6000_convert_register_p,
3817 rs6000_register_to_value, rs6000_value_to_register): New
3818 functions.
3819 (rs6000_gdbarch_init): Don't register
3820 gdbarch_deprecated_register_size,
3821 gdbarch_deprecated_register_bytes,
3822 gdbarch_deprecated_register_byte,
3823 gdbarch_deprecated_register_raw_size,
3824 gdbarch_deprecated_register_virtual_type,
3825 gdbarch_deprecated_register_convertible,
3826 gdbarch_deprecated_register_convert_to_virtual, or
3827 gdbarch_deprecated_register_convert_to_raw methods. Instead,
3828 register gdbarch_register_type, gdbarch_convert_register_p,
3829 gdbarch_register_to_value, and gdbarch_value_to_register methods.
3830
3831 2004-05-26 Jim Blandy <jimb@redhat.com>
3832
3833 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): Deleted.
3834 (rs6000_stab_reg_to_regnum, rs6000_dwarf2_reg_to_regnum): New
3835 functions, updated to match the register numberings used in GCC.
3836 (rs6000_gdbarch_init): Register rs6000_stab_reg_to_regnum and
3837 rs6000_dwarf2_reg_to_regnum as register number conversions
3838 functions for STABS and Dwarf2.
3839
3840 2004-05-26 Randolph Chung <tausq@debian.org>
3841
3842 * infttrace.h (target_waitkind): Forward declare type instead of pulling
3843 in header file.
3844
3845 2004-05-25 Joel Brobecker <brobecker@gnat.com>
3846
3847 * NEWS: Document new "start" command.
3848
3849 2004-05-25 Randolph Chung <tausq@debian.org>
3850
3851 * hppa-linux-tdep.c (hppa_linux_init_abi): sizeof(long double) == 8 on
3852 hppa-linux.
3853
3854 2004-05-25 Randolph Chung <tausq@debian.org>
3855
3856 * hppa-hpux-tdep.c (offsetof): Define.
3857 (hppa_hpux_pc_in_sigtramp, hppa32_hpux_frame_saved_pc_in_sigtramp)
3858 (hppa32_hpux_frame_base_before_sigtramp)
3859 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
3860 (hppa64_hpux_frame_saved_pc_in_sigtramp)
3861 (hppa64_hpux_frame_base_before_sigtramp)
3862 (hppa64_hpux_frame_find_saved_regs_in_sigtramp): Remove unused
3863 functions.
3864 (struct hppa_hpux_sigtramp_unwind_cache, hppa_hpux_tramp_reg)
3865 (hppa_hpux_sigtramp_frame_unwind_cache)
3866 (hppa_hpux_sigtramp_frame_this_id)
3867 (hppa_hpux_sigtramp_frame_prev_register)
3868 (hppa_hpux_sigtramp_frame_unwind)
3869 (hppa_hpux_sigtramp_unwind_sniffer): New signal trampoline unwinder.
3870 (hppa_hpux_init_abi): Register sigtramp unwinder.
3871 * Makefile.in (hppa-hpux-tdep.o): Update dependencies.
3872
3873 2004-05-25 Randolph Chung <tausq@debian.org>
3874
3875 * hppa-tdep.c (hppa_fallback_frame_cache): Handle stack adjustment,
3876 and multiple stack unwinds.
3877 (hppa_stub_unwind_sniffer): Handle unwind from pc == 0.
3878
3879 2004-05-25 Andrew Cagney <cagney@gnu.org>
3880
3881 * symfile.h (symbol_file_add_from_memory): Delete declaration.
3882 * symfile-mem.h: Delete file.
3883 * symfile-mem.c: Do not include "symfile-mem.h".
3884 (symbol_file_add_from_memory): Make static. Use "struct bfd" and
3885 "struct bfd_section". When an error do not bother returning NULL.
3886 (add_symbol_file_from_memory_command): Use "struct bfd" and
3887 "struct bfd_section".
3888 * Makefile.in (symfile_mem_h): Delete.
3889 (symfile-mem.o): Update dependencies.
3890
3891 2004-05-25 Nick Roberts <nickrob@gnu.org>
3892
3893 * gdb-mi.el: New file.
3894
3895 2004-05-25 Andrew Cagney <cagney@gnu.org>
3896
3897 * inftarg.c: Include "observer.h".
3898 (child_attach, child_create_inferior): Notify inferior_created.
3899 * corelow.c: Include "observer.h".
3900 (core_open): Notify inferior_created.
3901 * Makefile.in (inftarg.o, corelow.o): Update dependencies.
3902
3903 2004-05-25 Andrew Cagney <cagney@gnu.org>
3904
3905 * target.h (struct target_ops): Add from_tty to
3906 to_create_inferior.
3907 (target_create_inferior, find_default_create_inferior): Update.
3908 * infcmd.c (run_command): Update.
3909 * wince.c (child_create_inferior): Update.
3910 * win32-nat.c (child_create_inferior): Update.
3911 * uw-thread.c (uw_thread_create_inferior): Update.
3912 * thread-db.c (thread_db_create_inferior): Update.
3913 * target.c (debug_to_create_inferior)
3914 (find_default_create_inferior): Update.
3915 (maybe_kill_then_create_inferior): Update.
3916 * sol-thread.c (sol_thread_create_inferior): Update.
3917 * remote.c (extended_remote_async_create_inferior)
3918 (extended_remote_create_inferior): Update.
3919 * remote-vx.c (vx_create_inferior): Update.
3920 * remote-st.c (st2000_create_inferior): Update.
3921 * remote-sim.c (gdbsim_create_inferior): Update.
3922 * remote-sds.c (sds_create_inferior): Update.
3923 * remote-rdp.c (remote_rdp_create_inferior): Update.
3924 * remote-rdi.c (arm_rdi_create_inferior): Update.
3925 * remote-m32r-sdi.c (m32r_create_inferior): Update.
3926 * remote-e7000.c (e7000_create_inferior): Update.
3927 * procfs.c (procfs_create_inferior): Update.
3928 * ocd.c (ocd_create_inferior): Update.
3929 * ocd.h (ocd_create_inferior): Update.
3930 * nto-procfs.c (procfs_create_inferior): Update.
3931 * monitor.c (monitor_create_inferior): Update.
3932 * lin-lwp.c (lin_lwp_create_inferior): Update.
3933 * inftarg.c (child_create_inferior): Update.
3934 * hpux-thread.c (hpux_thread_create_inferior): Update.
3935 * gnu-nat.c (gnu_create_inferior): Update.
3936
3937 2004-05-25 Andrew Cagney <cagney@gnu.com>
3938
3939 * MAINTAINERS: Update e-mail address.
3940
3941 2004-05-24 Randolph Chung <tausq@debian.org>
3942
3943 * thread.c (info_threads_command, thread_apply_all_command)
3944 (thread_apply_command, thread_command, do_captured_thread_select):
3945 Remove HPUXHPPA-specific code.
3946
3947 2004-05-24 Randolph Chung <tausq@debian.org>
3948
3949 * hppa-tdep.c (SR4EXPORT_LDIL_OFFSET, SR4EXPORT_LDO_OFFSET): Remove
3950 unused symbols.
3951 * hppa-tdep.h (HPPA_INSTRUCTION_SIZE): Remove, since there are no more
3952 references.
3953
3954 2004-05-24 Joel Brobecker <brobecker@gnat.com>
3955
3956 * infcmd.c (kill_if_already_running): New function, extracted
3957 from run_command().
3958 (run_command): Replace extracted code by call to
3959 kill_if_already_running().
3960 (start_command): New function.
3961 (_initialize_infcmd): Add "start" command.
3962
3963 2004-05-24 Mark Kettenis <kettenis@gnu.org>
3964
3965 Add OpenBSD/m88k support.
3966 * NEWS (New native configurations): Mention OpenBSD/m88k.
3967 * m88k-tdep.c, m88k-tdep.h, m88kbsd-nat.c, config/m88k/nm-obsd.h,
3968 config/m88k/obsd.mh, config/m88k/obsd.mt: New files.
3969 * Makefile.in (m88k_tdep_h): New variable.
3970 (ALLDEPFILES): Add m88k-tdep.c and m88kbsd-nat.c.
3971 (m88kbsd-nat.o, m88k-tdep.o): New dependencies.
3972 * configure.host: Add m88*-*-openbsd*.
3973 * configure.tgt: Add m88*-*-openbsd*.
3974
3975 2004-05-24 Jim Blandy <jimb@redhat.com>
3976
3977 * MAINTAINERS (tracing bytecode stuff): Allow global maintainers
3978 to approve changes.
3979
3980 2004-05-24 Kevin Buettner <kevinb@redhat.com>
3981
3982 * symtab.c (fixup_section): Search section table when lookup by
3983 name fails.
3984
3985 2004-05-24 Randolph Chung <tausq@debian.org>
3986
3987 * hppa-tdep.c: Fix handling of 8-byte structures; they should not
3988 be "small_struct".
3989
3990 2004-05-24 Mark Kettenis <kettenis@gnu.org>
3991
3992 * m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct
3993 register number in regcache_raw_collect call.
3994 (m68kbsd_collect_fpregset): Likewise.
3995 * vaxbsd-nat.c (vaxbsd_collect_gregset): Likewise.
3996
3997 * regset.h (struct regset): Add back `regset' member.
3998
3999 2004-05-23 Mark Kettenis <kettenis@gnu.org>
4000
4001 * configure.in: Check for td_pcb in `struct thread'.
4002 * configure, config.in: Regenerated.
4003
4004 * dpx2-nat.c: Remove file.
4005 * Makefile.in (ALLDEPFILES): Remove dpx2-nat.c.
4006 (dpx2-nat.o): Remove dependencies.
4007
4008 * amd64obsd-nat.c: Include "gdbcore.h", "regcache.h",
4009 <sys/types.h>, <machine/frame.h>, <machine/pcb.h> and "bsd-kvm.h".
4010 (amd64obsd_supply_pcb): New function.
4011 (_initialize_amd64obsd_nat): Enable libkvm interface.
4012 * Makefile.in (amd64obsd-nat.o): Update dependencies.
4013 * config/i386/obsd64.mh (NATDEPFILES): Add bsd-kvm.o
4014 (LOADLIBES): New variable.
4015
4016 * sparcnbsd-nat.c: Include "gdbcore.h", "regcache.h",
4017 <sys/types.h>, <machine/pcb.h> and "bsd-kvm.h".
4018 (sparc32nbsd_supply_pcb): New function.
4019 (_initialize_sparcnbsd_nat): Enable libkvm interface.
4020 * Makefile.in (sparcnbsd-nat.o): Update dependencies.
4021 * config/sparc/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
4022 (LOADLIBES): New variable.
4023
4024 2004-05-22 Mark Kettenis <kettenis@gnu.org>
4025
4026 * bsd-kvm.c, bsd-kvm.h: New files.
4027 * i386fbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
4028 "bsd-kvm.h".
4029 (i386fbsd_supply_pcb): New function.
4030 * Makefile.in (ALLDEPFILES): Add bsd-kvm.c.
4031 (i386fbsd-nat.o): Update dependencies.
4032 (bsd_kvm_h): New variable.
4033 (bsd-kvm.o): New dependency.
4034 * config/i386/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
4035 (LOADLIBES): New variable.
4036
4037 * regset.c: Tweak comment.
4038 (regset_alloc): Remove descr argument. Use GDBARCH_OBSTACK_ZALLOC
4039 macro.
4040 * regset.h: Update copyright year.
4041 (struct regset): Remove `descr' member, add `gdbarch' member.
4042 (regset_alloc): Adjust prototype and comment.
4043 * i386-tdep.c (i386_supply_gregset): Get TDEP from REGSET->arch.
4044 (i386_supply_fpregset): Likewise.
4045 (i386_regset_from_core_section): Update call to regset_alloc.
4046 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Get TDEP from
4047 REGSET->arch.
4048 (i386obsd_aout_regset_from_core_section): Update call to
4049 regset_alloc.
4050 * i386nbsd-tdep.c (i386nbsd_aout_supply_regset): Get TDEP from
4051 REGSET->arch.
4052 (i386nbsd_aout_regset_from_core_section): Update call to
4053 regset_alloc.
4054 * amd64-tdep.c (amd64_supply_fpregset): Get TDEP from
4055 REGSET->arch.
4056 (amd64_regset_from_core_section): Update call to regset_alloc.
4057 * amd64obsd-tdep.c (amd64obsd_supply_regset): Get TDEP from
4058 REGSET->arch.
4059 (amd64obsd_regset_from_core_section): Update call to regset_alloc.
4060 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Directly pass
4061 &sparc32nbsd_gregset in sparc32_supply_gregset call.
4062 (sparc32nbsd_init_abi): Update call to regset_alloc.
4063 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Directly pass
4064 &sparc64obsd_core_gregset in sparc64_supply_gregset call.
4065 (sparc64obsd_init_abi): Update call to regset_alloc.
4066 * sparc64nbsd-tdep.c (sparc64nbsd_supply_gregset): Directly pass
4067 &sparc64nbsd_gregset in sparc64_supply_gregset call.
4068 (sparc64nbsd_init_abi): Update call to regset_alloc.
4069 * sparc64fbsd-tdep.c (sparc64fbsd_supply_gregset): Directly pass
4070 &sparc64fbsd_gregset in sparc64_supply_gregset call.
4071 (sparc64fbsd_init_abi): Update call to regset_alloc.
4072
4073 2004-05-22 Jim Blandy <jimb@redhat.com>
4074
4075 * ppc-tdep.h (spe_register_p): New declaration.
4076 (struct gdbarch_tdep): New members: ppc_acc_regnum and
4077 ppc_spefscr_regnum.
4078 * rs6000-tdep.c (spe_register_p): New function.
4079 (rs6000_dwarf2_stab_reg_to_regnum): Recognize numbers for acc and
4080 spefscr.
4081 (rs6000_gdbarch_init): Initialize the new members of the tdep
4082 structure.
4083
4084 2004-05-21 Jim Blandy <jimb@redhat.com>
4085
4086 * ppc-linux-nat.c (fetch_register): Move code back to be next
4087 to the comment that describes it. (Moved code, instead of
4088 comment, for symmetry with store_register.)
4089
4090 Allocate regset structures in the gdbarch's obstack, not using
4091 xmalloc.
4092 * regset.c (regset_alloc): Renamed from regset_xmalloc.
4093 Add 'arch' argument. Allocate the regset on arch's obstack, not
4094 using xmalloc.
4095 * regset.h (regset_alloc): Update declaration.
4096 * am64-tdep.c (amd64_regset_from_core_section): Update call; pass
4097 gdbarch argument.
4098 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
4099 * i386-tdep.c (i386_regset_from_core_section): Same.
4100 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
4101 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
4102 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
4103 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
4104 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
4105 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
4106
4107 2004-05-21 Joel Brobecker <brobecker@gnat.com>
4108
4109 * config/djgpp/fnchange.lst: Undo previous change, was useless.
4110
4111 2004-05-21 Jim Blandy <jimb@redhat.com>
4112
4113 * dwarf2expr.c (execute_stack_op): Add 'break' statements after
4114 cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
4115
4116 2004-05-20 Jim Blandy <jimb@redhat.com>
4117
4118 * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
4119
4120 2004-05-20 Mark Kettenis <kettenis@gnu.org>
4121
4122 * regset.h: Make prototype const-correct.
4123 * regset.c (regset_xmalloc): Make const-correct.
4124
4125 2004-05-20 Paul N. Hilfinger <hilfinger@gnat.com>
4126
4127 * symtab.h (SYMBOL_SEARCH_NAME): New definition.
4128 (SYMBOL_MATCHES_SEARCH_NAME): New definition.
4129 (symbol_search_name): Declare.
4130
4131 * dictionary.c (iter_name_first_hashed): Match on SYMBOL_SEARCH_NAME.
4132 (iter_name_next_hashed): Ditto.
4133 (iter_name_next_linear): Ditto.
4134 (insert_symbol_hashed): Hash on SYMBOL_SEARCH_NAME.
4135
4136 * symtab.c (lookup_partial_symbol): Assume symbols ordered by
4137 search name, using SYMBOL_SEARCH_NAME and SYMBOL_MATCHES_SEARCH_NAME.
4138 (symbol_search_name): New function.
4139
4140 * symfile.c (compare_psymbols): Order by SYMBOL_SEARCH_NAME.
4141
4142 * minsyms.c (build_minimal_symbol_hash_tables): Change
4143 test for adding to demangled hash table to check for difference
4144 between SYMBOL_SEARCH_NAME and SYMBOL_LINKAGE_NAME.
4145
4146 2004-05-19 Jim Blandy <jimb@redhat.com>
4147
4148 Use a constructor function to create regset structures.
4149 * regset.h (supply_regset_ftype, collect_regset_ftype): New typedefs.
4150 (struct regset): Use supply_regset_ftype. Add new
4151 'collect_regset' member.
4152 (regset_xmalloc): New declaration.
4153 * regset.c: New file.
4154 * am64-tdep.c (amd64_regset_from_core_section): Use
4155 regset_xmalloc to construct regset structures.
4156 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
4157 * i386-tdep.c (i386_regset_from_core_section): Same.
4158 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
4159 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
4160 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
4161 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
4162 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
4163 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
4164 * Makefile.in (COMMON_OBS): Add regset.o.
4165 (regset.o): New rule.
4166
4167 2004-05-19 Joel Brobecker <brobecker@gnat.com>
4168
4169 * config/djgpp/fnchange.lst: Add entries for pthread_cond_wait.exp
4170 and pthread_cond_wait.c.
4171
4172 2004-05-18 Jim Blandy <jimb@redhat.com>
4173
4174 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize tdep fields
4175 before the mach-specific switch, and then let the individual cases
4176 override the defaults, rather than leaving them uninitialized
4177 until the switch and then setting them in each case.
4178
4179 2004-05-18 Randolph Chung <tausq@debian.org>
4180
4181 * hppa-tdep.c (hppa_frame_cache): Check for validity of r31 for
4182 millicode functions.
4183
4184 2004-05-18 Randolph Chung <tausq@debian.org>
4185
4186 * somsolib.c (som_solib_remove_inferior_hook): Make all the size
4187 references to dld_flags_buffer consistent.
4188
4189 2004-05-18 Randolph Chung <tausq@debian.org>
4190
4191 * hppa-tdep.c (hppa_frame_cache): If a frame pointer is available, use
4192 it for unwinding the stack.
4193
4194 2004-05-18 Randolph Chung <tausq@debian.org>
4195
4196 * config/pa/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE)
4197 Undefine these so we can overide them using gdbarch.
4198
4199 2004-05-18 Randolph Chung <tausq@debian.org>
4200
4201 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't do export stub
4202 handling for 64-bit HPUX (elf).
4203
4204 2004-05-18 Daniel Jacobowitz <dan@debian.org>
4205
4206 * alpha-tdep.c (alpha_gdbarch_init): Use LL suffix for large
4207 constants.
4208 * amd64-tdep.c (amd64_skip_prologue): Likewise.
4209 * ia64-tdep.c (examine_prologue): Likewise.
4210 * ns32k-tdep.c (ns32k_fix_call_dummy): Remove unused function.
4211 * v850-tdep.c (v850_fix_call_dummy): Likewise.
4212
4213 2004-05-18 Mark Kettenis <kettenis@gnu.org>
4214
4215 * vax-tdep.c (vax_return_value): Implement
4216 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4217
4218 2004-05-17 Mark Kettenis <kettenis@gnu.org>
4219
4220 * vax-tdep.c (vax_return_value): Fix typo.
4221
4222 2004-05-17 Andrew Cagney <cagney@redhat.com>
4223
4224 * MAINTAINERS: Mark Salter was also responsible for
4225 testsuite/config/
4226
4227 * NEWS: Mention signal fixes.
4228
4229 2004-05-17 Randolph Chung <tausq@debian.org>
4230
4231 * hppa-tdep.c (hppa_stub_frame_unwind_cache): For HPUX stub unwinding,
4232 check to see if we are unwinding an export stub. Export stubs clobber
4233 the %rp in the call path and stores the original rp in a stack slot.
4234
4235 2004-05-17 Jim Blandy <jimb@redhat.com>
4236
4237 * MAINTAINERS: Update address for J.T. Conklin.
4238
4239 2004-05-17 Randolph Chung <tausq@debian.org>
4240
4241 * hppa-tdep.c: Remove superfluous #include's.
4242 * Makefile.in (hppa-tdep.o): Update dependencies.
4243
4244 2004-05-17 Randolph Chung <tausq@debian.org>
4245
4246 * hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
4247 (THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
4248 (unwind_command, hppa_alignof, prologue_inst_adjust_sp)
4249 (is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
4250 (read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
4251 Remove static function declarations.
4252
4253 2004-05-17 Mark Kettenis <kettenis@gnu.org>
4254
4255 * alphabsd-nat.c: Update copyright year.
4256 (getregs_supplies): Replace PC_REGNUM with ALPHA_PC_REGNUM.
4257
4258 * m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM
4259 and M68K_A2_REGNUM.
4260
4261 * m68k-tdep.c (m68k_svr4_return_value): Implement
4262 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4263
4264 2004-05-16 Mark Kettenis <kettenis@gnu.org>
4265
4266 * sol-thread.c Update copyright year. Fix various coding
4267 standards violations. Tweak a few comments.
4268 (td_err_string, td_state_string, thread_to_lwp, lwp_to_thread):
4269 Delete prototypes.
4270
4271 2004-05-15 Randolph Chung <tausq@debian.org>
4272
4273 * hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs
4274 as pointer instead of array reference since HPUX compiler does
4275 not accept unsized array arguments.
4276 * somsolib.c (dld_flags_buffer): Use constant array size.
4277
4278 2004-05-15 Mark Kettenis <kettenis@gnu.org>
4279
4280 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimal
4281 offset with decimal offset.
4282 (amd64obsd_sigcontext_addr): Return correct address for entire
4283 signal trampoline.
4284
4285 * vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
4286 instead of get_frame_base.
4287
4288 * i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.
4289 (fill_gregset): Use regcache_raw_collect.
4290
4291 * config/djgpp/fnchange.lst: Add entries for ppcobsd-nat.c and
4292 ppcobsd-tdep.c.
4293
4294 * config/sparc/tm-nbsd64.h: Remove file.
4295 * config/tm-sunos.h: Remove file.
4296
4297 2004-05-15 Joel Brobecker <brobecker@gnat.com>
4298
4299 * rs6000-tdep.c (store_param_on_stack_p): New function,
4300 an improved version of some code extracted from skip_prologue().
4301 (skip_prologue): Use store_param_on_stack_p() to detect
4302 instructions saving a parameter on the stack. Detect when r0
4303 is used to save a parameter.
4304 Do not mark "li rx, SIMM" instructions as part of the prologue,
4305 unless the following instruction is also part of the prologue.
4306
4307 2004-05-14 Andrew Cagney <cagney@redhat.com>
4308
4309 * infrun.c (handle_inferior_event): Simplify
4310 STEP_OVER_UNDEBUGGABLE.
4311
4312 * infrun.c (handle_step_into_function): Delete function.
4313 (handle_inferior_event): Inline calls to
4314 handle_step_into_function.
4315
4316 2004-05-14 Jerome Guitton <guitton@gnat.com>
4317
4318 * rs6000-nat.c: Fix a comment.
4319
4320 2004-05-12 David Anderson <davea@sgi.com>
4321
4322 Committed by Jim Blandy <jimb@redhat.com>:
4323 * regcache.c (struct regcache_descr): fix comment spelling.
4324
4325 2004-05-13 J. Brobecker <brobecker@gnat.com>
4326
4327 * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
4328 Fixes a link link failure.
4329
4330 2004-05-13 J. Brobecker <brobecker@gnat.com>
4331
4332 * aix-thread.c (store_regs_kernel_thread): Fix a little obvious
4333 error that was causing the build to fail.
4334
4335 2004-05-13 J. Brobecker <brobecker@gnat.com>
4336
4337 * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.
4338 * Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
4339
4340 2004-05-13 Andrew Cagney <cagney@redhat.com>
4341
4342 * infrun.c (handle_inferior_event): Check for
4343 STEP_OVER_UNDEBUGGABLE after signal trampolines and function
4344 calls. Update comments.
4345
4346 2004-05-13 Jim Blandy <jimb@redhat.com>
4347
4348 * aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)
4349 (fetch_regs_user_thread, fetch_regs_kernel_thread)
4350 (store_regs_user_thread, store_regs_kernel_thread): Use
4351 ppc_num_gprs and ppc_num_fprs instead of '32' and '31'.
4352 * ppc-linux-nat.c (fill_gregset): Same.
4353 * ppc-linux-tdep.c (ppc_linux_supply_gregset)
4354 (ppc_linux_sigtramp_cache): Same.
4355 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg)
4356 (ppcnbsd_sigtramp_cache_init): Same.
4357 * rs6000-nat.c (fetch_core_registers): Same.
4358 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset)
4359 (rs6000_frame_cache): Same.
4360
4361 * aix-thread.c (supply_gprs64, fetch_regs_user_thread)
4362 (store_regs_user_thread): Use tdep->ppc_gp0_regnum, instead
4363 of assuming that the gprs are numbered starting with zero.
4364 * ppc-linux-nat.c (fill_gregset): Same.
4365 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Same.
4366 * ppcnbsd-nat.c (getregs_supplies): Same.
4367 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg): Same.
4368 * rs6000-nat.c (fetch_core_registers): Same.
4369 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset): Same.
4370
4371 2004-05-07 Michael Snyder <msnyder@redhat.com>
4372
4373 * tracepoint.c (scope_info): Add handling for LOC_COMPUTED,
4374 LOC_COMPUTED_ARG, and LOC_INDIRECT.
4375
4376 2004-05-13 Andrew Cagney <cagney@redhat.com>
4377
4378 * infrun.c (handle_inferior_event): Use frame_unwind_id.
4379
4380 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
4381
4382 * dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust
4383 base_address for shared libraries.
4384
4385 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
4386
4387 * MAINTAINERS (write after approval): Add myself.
4388
4389 2004-05-13 Ulrich Weigand <uweigand@de.ibm.com>
4390
4391 * breakpoint.c (bpstat_stop_status): Add new argument
4392 STOPPED_BY_WATCHPOINT. Use it instead of testing
4393 target_stopped_data_address agaist 0 to check whether
4394 or not we stopped due to a hardware watchpoint.
4395 * breakpoint.h (bpstat_stop_status): Adapt prototype.
4396 * infrun.c (handle_inferior_event): Call bpstat_stop_status
4397 with new argument.
4398
4399 2004-05-12 Jim Blandy <jimb@redhat.com>
4400
4401 * configure.in: When checking whether we should use the -bbigtoc
4402 option, don't forget to restore the original value of LDFLAGS.
4403 * configure: Regenerated.
4404
4405 2004-05-12 Andrew Cagney <cagney@redhat.com>
4406
4407 * thread.c (load_infrun_state): Delete step_sp.
4408 * infrun.c (context_switch): Ditto.
4409 * inferior.h (step_sp): Ditto.
4410 * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto.
4411 * gdbthread.h (struct thread_info, save_infrun_state)
4412 (restore_infrun_state): Ditto.
4413
4414 2004-05-12 Ulrich Weigand <uweigand@de.ibm.com>
4415
4416 * MAINTAINERS (write after approval): Add myself.
4417
4418 2004-05-12 Andrew Cagney <cagney@redhat.com>
4419
4420 * infrun.c (adjust_pc_after_break): Rewrite decr logic,
4421 eliminate reference to step_sp.
4422 (struct execution_control_state, init_execution_control_state)
4423 (handle_inferior_event, keep_going): Delete update_step_sp and
4424 step_sp.
4425 * infcmd.c (step_sp): Note that variable is unused.
4426
4427 2004-05-11 Andrew Cagney <cagney@redhat.com>
4428
4429 * infrun.c (step_over_function): Delete function.
4430 (handle_step_into_function): Use insert_step_resume_breakpoint.
4431 (insert_step_resume_breakpoint): Fix assertion.
4432
4433 2004-05-11 Nick Roberts <nickrob@gnu.org>
4434
4435 * utils.c (defaulted_query): Just use the normal query input type
4436 when printing the annotations.
4437
4438 2004-05-11 Andrew Cagney <cagney@redhat.com>
4439
4440 * infrun.c (handle_inferior_event): Simplify code handling
4441 step-into or return-from a signal trampoline.
4442
4443 2004-05-11 Andrew Cagney <cagney@redhat.com>
4444
4445 * ppcnbsd-tdep.c: Include "gdb_assert.h".
4446 * Makefile.in (ppcnbsd-tdep.o): Update dependencies.
4447
4448 2004-05-10 Jim Blandy <jimb@redhat.com>
4449
4450 * ppc-bdm.c (bdm_ppc_fetch_registers): Replace utterly broken code
4451 with a call to internal_error.
4452
4453 * ppc-tdep.h (struct gdbarch_tdep): Change definition of
4454 ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
4455 processor variant lacks those registers.
4456 (ppc_floating_point_unit_p): Change description to make it clear
4457 that this returns info about the ISA, not the ABI.
4458 * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
4459 return true or false by checking tdep->ppc_fp0_regnum and
4460 tdep->ppc_fpscr_regnum. The original code replicated the BFD
4461 arch/mach switching done in rs6000_gdbarch_init; it's better to
4462 keep that logic there, and just check the results here.
4463 (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
4464 tdep->ppc_fpscr_regnum to -1 to indicate that we have no
4465 floating-point registers.
4466 (ppc_supply_fpregset, ppc_collect_fpregset)
4467 (rs6000_push_dummy_call, rs6000_extract_return_value)
4468 (rs6000_store_return_value): Assert that we have floating-point
4469 registers.
4470 (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
4471 (rs6000_frame_cache): Don't note the locations at which
4472 floating-point registers were saved if we have no fprs.
4473 * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
4474 registers.
4475 (fetch_regs_user_thread, fetch_regs_kernel_thread)
4476 (store_regs_user_thread, store_regs_kernel_thread): Only call
4477 supply_fprs / fill_fprs if we actually have floating-point
4478 registers.
4479 (special_register_p): Check ppc_fpscr_regnum before matching
4480 against it.
4481 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
4482 supply / collect fpscr if we don't have it.
4483 * ppc-bdm.c: #include "gdb_assert.h".
4484 (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
4485 have floating-point registers, since I can't test this code on
4486 FP-free systems to adapt it.
4487 * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
4488 fpscr and floating point register numbers if they don't exist.
4489 (fetch_register): Assert that we have floating-point registers
4490 before we reach the code that handles them.
4491 (store_register): Same. And use tdep instead of calling
4492 gdbarch_tdep again.
4493 (fill_fpregset): Don't try to collect FP registers and fpscr if we
4494 don't have them.
4495 (ppc_linux_sigtramp_cache): Don't record the saved locations of
4496 fprs and fpscr if we don't have them.
4497 (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
4498 don't have them.
4499 * ppcnbsd-nat.c: #include "gdb_assert.h".
4500 (getfpregs_supplies): Assert that we have floating-point registers.
4501 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
4502 * ppcobsd-tdep.c: #include "gdb_assert.h".
4503 (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
4504 have floating-point registers.
4505 * rs6000-nat.c (regmap): Don't match against the fpscr and
4506 floating point register numbers if they don't exist.
4507 (fetch_inferior_registers, store_inferior_registers,
4508 fetch_core_registers): Only fetch / store / supply the
4509 floating-point registers and the fpscr if we have them.
4510 * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
4511 (ppcobsd-tdep.o): Update dependencies.
4512
4513 2004-05-10 Andrew Cagney <cagney@redhat.com>
4514
4515 * infrun.c (through_sigtramp_breakpoint): Delete variable.
4516 (context_switch): Do not switch through_sigtramp_breakpoint.
4517 * gdbthread.h (save_infrun_state, load_infrun_state)
4518 (struct thread_info): Delete through_sigtramp_breakpoint parameter
4519 and structure member.
4520 * thread.c (load_infrun_state, save_infrun_state): Update.
4521
4522 2004-05-10 Mark Kettenis <kettenis@gnu.org>
4523
4524 * m68kbsd-tdep.c (m68kbsd_elf_init_abi): Call m68k_svr4_init_abi.
4525
4526 2004-05-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
4527
4528 * acinclude.m4: Quote macro names being defined by AC_DEFUN
4529 throughout.
4530 * aclocal.m4: Regenerate.
4531
4532 2004-05-10 Nathan J. Williams <nathanw@wasabisystems.com>
4533
4534 * alphanbsd-tdep.c: Fix include of "gdb_string.h".
4535
4536 2004-05-10 Andrew Cagney <cagney@redhat.com>
4537
4538 * infrun.c (check_sigtramp2): Delete function.
4539 (handle_inferior_event): When single stepping, and taking a
4540 signal, set a breakpoint at the signal return address. Delete
4541 redundant calls to check_sigtramp2.
4542 (insert_step_resume_breakpoint): New function.
4543 (through_sigtramp_breakpoint, handle_inferior_event)
4544 (follow_exec, wait_for_inferior, fetch_inferior_event)
4545 (currently_stepping, keep_going): Delete most uses of
4546 through_sigtramp_breakpoint, not that it should be deleted.
4547 (delete_breakpoint_current_contents): Delete function.
4548
4549 2004-05-10 Randolph Chung <tausq@debian.org>
4550
4551 * config/pa/linux.mt (TM_FILE): Use new tm-linux.h for hppa-linux
4552 target.
4553 * config/pa/tm-linux.h: New file.
4554
4555 2004-05-10 Daniel Jacobowitz <drow@mvista.com>
4556
4557 * cli/cli-setshow.c (cmd_show_list): Check for "show" in the middle
4558 of prefixes. Don't print the prefix twice in the CLI.
4559
4560 2004-05-10 Jim Blandy <jimb@redhat.com>
4561
4562 * rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do
4563 collect all the gprs.
4564
4565 * rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error in
4566 loop collecting gprs.
4567
4568 2004-05-09 Andrew Cagney <cagney@redhat.com>
4569
4570 * remote-vx.c (net_step): Delete step-range code.
4571 * remote.c (remote_resume, init_all_packet_configs)
4572 (set_remote_protocol_E_packet_cmd)
4573 (show_remote_protocol_E_packet_cmd)
4574 (remote_protocol_E, show_remote_cmd, _initialize_remote)
4575 (remote_protocol_e, set_remote_protocol_e_packet_cmd)
4576 (show_remote_protocol_e_packet_cmd): Ditto.
4577
4578 2004-05-09 Mark Kettenis <kettenis@gnu.org>
4579
4580 * hppa-tdep.h (enum hppa_regnum): Name enum, add HPPA_R1_REGNUM.
4581
4582 * hppa-tdep.h: Update copyright year.
4583 (struct trad_frame_saved_reg): Add opaque declaration.
4584
4585 * amd64-tdep.c (amd64_return_value): Implement
4586 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4587
4588 * m68k-tdep.c (m68k_convert_register_p, m68k_register_to_value)
4589 (m68k_value_to_register): New functions.
4590 (m68k_gdbarch_init): Set convert_register_p, register_to_value and
4591 value_to_register.
4592
4593 * defs.h (enum return_value_convention): Add
4594 RETURN_VALUE_ABI_RETURNS_ADDRESS and
4595 RETURN_VALUE_ABI_PRESERVES_ADDRESS.
4596 * infcmd.c (legacy_return_value): New function.
4597 (print_return_value): Rwerite to implement
4598 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4599 * values.c (using_struct_return): Check for inequality to
4600 RETURN_VALUE_REGISTER_CONVENTION instead of equality to
4601 RETURN_VALUE_STRUCT_CONVENTION.
4602 * i386-tdep.c (i386_return_value): Implement
4603 RETURN_VALUE_ABI_RETURNS_ADDRESS.
4604
4605 * vax-tdep.c: Tweak comments. Reorder include files. Don't
4606 include "symtab.h", "opcode/vax.h" and "inferior.h".
4607 (vax_skip_prologue): Replace calls to read_memory_integer by calls
4608 to read_memory_unsigned_integer.
4609 (vax_gdbarch_init): Reorder.
4610 (_initialize_vax_tdep): Spell out prototype.
4611 * Makefile.in (vax-tdep.o): Update dependencies.
4612
4613 2004-05-08 Andrew Cagney <cagney@redhat.com>
4614
4615 * infrun.c (resume): Delete call to DO_DEFERRED_STORES.
4616 * target.c (target_detach, target_disconnect): Ditto.
4617
4618 * infcall.c (call_function_by_hand): When no
4619 DEPRECATED_SAVE_DUMMY_FRAME_TOS call generic_save_dummy_frame_tos.
4620 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set
4621 DEPRECATED_SAVE_DUMMY_FRAME_TOS.
4622 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4623 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4624
4625 * gdbarch.sh (DEPRECATED_FIX_CALL_DUMMY): Delete.
4626 * gdbarch.h, gdbarch.c: Re-generate.
4627 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4628 deprecated_fix_call_dummy.
4629 * v850-tdep.c (v850_gdbarch_init): Ditto.
4630 * infcall.c (call_function_by_hand): Do not call
4631 DEPRECATED_FIX_CALL_DUMMY.
4632
4633 * gdbarch.sh (DEPRECATED_CALL_DUMMY_WORDS)
4634 (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Delete.
4635 * gdbarch.h, gdbarch.c: Re-generate.
4636 * arm-linux-tdep.c (arm_linux_call_dummy_words)
4637 (arm_linux_init_abi): Do not set deprecated_call_dummy_words or
4638 deprecated_sizeof_call_dummy_words.
4639 * arm-tdep.c (arm_call_dummy_words, arm_gdbarch_init): Ditto.
4640 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
4641 * v850-tdep.c (v850_gdbarch_init): Ditto.
4642 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
4643 * ns32k-tdep.c (ns32k_call_dummy_words, ns32k_gdbarch_init): Ditto.
4644 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4645 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4646 * arch-utils.h (legacy_call_dummy_words)
4647 (legacy_sizeof_call_dummy_words): Delete declarations.
4648 * arch-utils.c (legacy_call_dummy_words)
4649 (legacy_sizeof_call_dummy_words): Delete variables.
4650
4651 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Delete.
4652 * gdbarch.h, gdbarch.c: Re-generate.
4653 * inferior.h (PUSH_DUMMY_FRAME): Delete macro.
4654 * infcall.c (call_function_by_hand): Eliminate call to
4655 DEPRECATED_PUSH_DUMMY_FRAME.
4656 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
4657 push_dummy_frame.
4658 (ns32k_push_dummy_frame): Delete function.
4659
4660 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4661 deprecated_call_dummy_breakpoint_offset or
4662 deprecated_call_dummy_start_offset.
4663 * dummy-frame.c, arm-tdep.c: Update comments.
4664 * gdbarch.sh (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET)
4665 (DEPRECATED_CALL_DUMMY_START_OFFSET): Delete.
4666 * gdbarch.h, gdbarch.c: Re-generate.
4667
4668 * infcall.c (legacy_push_dummy_code): Delete function.
4669 (push_dummy_code): Delete call.
4670
4671 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete.
4672 * gdbarch.h, gdbarch.c: Re-generate.
4673 * blockframe.c (legacy_frame_chain_valid): Simplify by eliminating
4674 DEPRECATED_USE_GENERIC_DUMMY_FRAMES.
4675 * infcall.c (legacy_push_dummy_code, call_function_by_hand): Ditto.
4676 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Ditto.
4677
4678 * breakpoint.h (deprecated_frame_in_dummy): Delete declaration.
4679 (struct frame_info): Delete opaque declaration.
4680 * breakpoint.c (deprecated_frame_in_dummy): Delete function.
4681 * frame.c (get_frame_type): Delete call.
4682
4683 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
4684 pc_in_call_dummy.
4685 * inferior.h (deprecated_pc_in_call_dummy_on_stack): Delete.
4686 * blockframe.c (deprecated_pc_in_call_dummy_on_stack): Delete.
4687
4688 2004-05-08 Mark Kettenis <kettenis@gnu.org>
4689
4690 * alphanbsd-tdep.c: Include "gdb_string.h".
4691 * armnbsd-tdep.c: Update copyright year.
4692 Include "gdb_string.h".
4693 * Makefile.in (alphanbsd-tdep.o, armnbsd-tdep.o): Update
4694 dependencies.
4695
4696 * delta68-nat.c: Remove file.
4697 * m68k-tdep.c (delta68_in_sigtramp, delta68_frame_args_address)
4698 (delta68_frame_saved_pc, delta68_frame_num_args): Remove functions.
4699 * Makefile.in (ALLDEPFILES): Remove delta68-nat.c.
4700 (delta68-nat.o): Remove dependency.
4701
4702 * m68k-tdep.c (m68k_frameless_function_invocation): Remove
4703 function.
4704 (m68k_gdbarch_init): Don't set
4705 deprecated_frameless_function_invocation.
4706
4707 2004-05-07 Randolph Chung <tausq@debian.org>
4708
4709 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
4710 read_memory_nobpt for code reading when doing frame unwinding.
4711 * hppa-linux-tdep.c (insns_match_pattern): Likewise.
4712
4713 2004-05-07 Randolph Chung <tausq@debian.org>
4714
4715 * hppa-linux-tdep.c (hppa_linux_sigtramp_find_sigcontext): Pass in pc
4716 instead of sp, handle sigaltstack case.
4717 (hppa_linux_sigtramp_frame_unwind_cache): Adjust calls to
4718 hppa_linux_sigtramp_find_sigcontext, and set base to the frame of the
4719 signal handler and not that of the caller.
4720 (hppa_linux_sigtramp_unwind_sniffer): Adjust calls to
4721 hppa_linux_sigtramp_find_sigcontext.
4722
4723 2004-05-07 Randolph Chung <tausq@debian.org>
4724
4725 * Makefile.in (ALLDEPFILES): Add hppa-linux-tdep.c and
4726 hppa-linux-nat.c.
4727 (hppa-linux-tdep.o, hppa-linux-nat.o): Define rules.
4728 * hppa-linux-nat.c (fetch_register, store_register): Define.
4729 (fetch_inferior_registers, store_inferior_registers): Define.
4730 (supply_gregset): Add comment and clean up some unneeded code.
4731 (fill_gregset): Add comment and fix so that it saves registers in
4732 the right place in the gregset.
4733 (fill_fpregset): Fix buffer overrun problem.
4734 * config/pa/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
4735
4736 2004-05-07 Randolph Chung <tausq@debian.org>
4737
4738 * hppa-tdep.c (hppa_frame_prev_register_helper): New function to
4739 do common handling of the pcoqt register.
4740 (hppa_frame_prev_register, hppa_stub_frame_prev_register): Convert
4741 to use helper function.
4742 (hppa_frame_unwind_sniffer): Only use if unwind entry is present.
4743 (hppa_fallback_frame_cache, hppa_fallback_frame_this_id)
4744 (hppa_fallback_frame_prev_register, hppa_fallback_frame_unwind): New
4745 generic fallback unwinder when all else fails.
4746 (hppa_gdbarch_init): Add fallback sniffer.
4747 * hppa-tdep.h (hppa_frame_prev_register_helper): Prototype.
4748 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register): Convert
4749 to use helper function.
4750
4751 2004-05-08 Joel Brobecker <brobecker@gnat.com>
4752
4753 * config/djgpp/fnchange.lst: Add translation rules for
4754 gdb.arch/powerpc-aix-prologue.c and gdb.arch/powerpc-aix-prologue.exp.
4755
4756 2004-05-08 Mark Kettenis <kettenis@gnu.org>
4757
4758 * frame.c (get_prev_frame_1): Work around GCC bug.
4759 * frame.h: Add comment about GCC bug.
4760
4761 2004-05-07 Andrew Cagney <cagney@redhat.com>
4762
4763 * observer.c: Include "commands.h" and "gdbcmd.h".
4764 (observer_debug, _initialize_observer): Add the
4765 command "set/show debug observer".
4766 * observer.sh: When observer debugging, log notify calls.
4767 * Makefile.in (observer.o): Update dependencies.
4768
4769 2004-05-07 Jason Molenda (jmolenda@apple.com)
4770
4771 * cli/cli-decode.c: Fix "SHOW_DOR" comment typeos.
4772
4773 2004-05-07 Jim Blandy <jimb@redhat.com>
4774
4775 * aix-thread.c (fetch_regs_kernel_thread, fill_gprs64,
4776 fill_gprs32, store_regs_kernel_thread): Use tdep->ppc_gp0_regnum
4777 to recognize gpr regnums, instead of assuming that
4778 tdep->ppc_fp0_regnum marks the end of the general-purpose
4779 registers.
4780
4781 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Assert that
4782 the given architecture has floating-point registers.
4783
4784 2004-05-07 Andrew Cagney <cagney@redhat.com>
4785
4786 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Replace with
4787 macro defined to 1.
4788 * gdbarch.h, gdbarch.c: Re-generate.
4789 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
4790 deprecated_use_generic_dummy_frames.
4791
4792 2004-05-07 Brian Ford <ford@vss.fsi.com>
4793
4794 * NEWS: Mention Cygwin DWARF 2 support.
4795
4796 2004-05-07 Andrew Cagney <cagney@redhat.com>
4797
4798 * objfiles.h (struct entry_info): Delete unused fields
4799 deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
4800 * objfiles.c (init_entry_point_info, objfile_relocate): Update.
4801 * mipsread.c (mipscoff_symfile_read): Update.
4802 * mdebugread.c (parse_partial_symbols): Update.
4803 * dwarfread.c (read_file_scope): Update.
4804 * dwarf2read.c (read_file_scope): Update.
4805 * dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
4806 * coffread.c (complete_symtab): Update.
4807
4808 2004-05-07 Mark Kettenis <kettenis@gnu.org>
4809
4810 * infcall.c (_initialize_infcall): Fix typo.
4811
4812 2004-05-07 Andrew Cagney <cagney@redhat.com>
4813
4814 * cli/cli-decode.c (add_setshow_zinteger_cmd): New function.
4815 * command.h (add_setshow_zinteger_cmd): Declare.
4816
4817 2004-05-06 Randolph Chung <tausq@debian.org>
4818
4819 * config/pa/tm-hppa.h (RO_REGNUM, FLAGS_REGNUM, RP_REGNUM)
4820 (HPPA_FP_REGNUM, HPPA_SP_REGNUM, SAR_REGNUM, IPSW_REGNUM)
4821 (PCOQ_HEAD_REGNUM, PCSQ_HEAD_REGNUM, PCOQ_TAIL_REGNUM, PCSQ_TAIL_REGNUM)
4822 (EIEM_REGNUM, IIR_REGNUM, ISR_REGNUM, IOR_REGNUM, SR4_REGNUM)
4823 (RCR_REGNUM, PID0_REGNUM, PID1_REGNUM, PID2_REGNUM, PID3_REGNUM)
4824 (CCR_REGNUM, TR0_REGNUM, CR27_REGNUM, HPPA_FP0_REGNUM, FP4_REGNUM)
4825 (ARG0_REGNUM, ARG1_REGNUM, ARG2_REGNUM, ARG3_REGNUM): Move *_REGNUM
4826 definitions ...
4827 * hppa-tdep.h: ... to here, with HPPA_ prefix.
4828 * Makefile.in (hppah-nat.o): Add $(hppa_tdep_h)
4829 * hppa-hpux-tdep.c (hppa32_hpux_frame_find_saved_regs_in_sig)
4830 (hppa64_hpux_frame_find_saved_regs_in_sig)
4831 (child_get_current_exception_event): Add HPPA_ prefix to *_REGNUM usage.
4832 * hppa-linux-nat.c (GR_REGNUM, TR_REGNUM, greg_map): Likewise.
4833 * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum)
4834 (hppa_linux_target_write_pc, hppa_linux_sigtramp_frame_unwind_cache)
4835 (hppa_linux_sigtramp_frame_prev_register): Likewise.
4836 * hppa-tdep.c (hppa32_return_value, hppa64_return_value)
4837 (hppa32_push_dummy_call, hppa64_push_dummy_call, hppa64_frame_align)
4838 (hppa_target_read_pc, hppa_target_write_pc, hppa_frame_cache)
4839 (hppa_frame_prev_register, hppa_stub_frame_unwind_cache)
4840 (hppa_stub_frame_prev_register, hppa_unwind_dummy_id)
4841 (hppa_skip_permanent_breakpoint, hppa_instruction_nullified)
4842 (hppa32_register_type, hppa_cannot_store_register)
4843 (hppa_fetch_pointer_argument, hppa_pseudo_register_read): Likewise.
4844 * hppah-nat.c (store_inferior_registers, fetch_register): Likewise.
4845 * hpread.c (hpread_process_one_debug_symbol): Likewise.
4846 * pa64solib.c (pa64_solib_have_load_event)
4847 (pa64_solib_have_unload_event, pa64_solib_loaded_library_pathname)
4848 (pa64_solib_unloaded_library_pathname): Likewise.
4849 * somsolib.c (som_solib_have_load_event, som_solib_have_unload_event)
4850 (som_solib_library_pathname): Likewise.
4851
4852 2004-05-05 Jim Ingham <jingham@apple.com>
4853
4854 * breakpoint.c (create_breakpoints): Copy the ignore count and
4855 thread id over from the pended breakpoint to the actual
4856 breakpoint.
4857
4858 2004-05-05 Andrew Cagney <cagney@redhat.com>
4859
4860 * gdbarch.sh (PARM_BOUNDARY): Delete.
4861 gdbarch.h, gdbarch.c: Re-generate.
4862 * valops.c (PARM_BOUNDARY): Delete macro.
4863 (value_push): Delete PARM_BOUNDARY code.
4864 * m68k-tdep.c (m68k_gdbarch_init): Do not set parm_boundary.
4865
4866 2004-05-04 Jim Blandy <jimb@redhat.com>
4867
4868 * ppc-linux-nat.c (fetch_ppc_registers, store_ppc_registers):
4869 Don't assume that the gprs, fprs, and UISA sprs are
4870 contiguous, start at register number zero, and end with fpscr.
4871 Instead, use the numbers from the tdep structure.
4872
4873 * config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
4874 should no longer be used in code specific to the RS6000 and its
4875 derivatives.
4876 * ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
4877 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize
4878 tdep->ppc_fp0_regnum.
4879 (ppc_supply_fpregset, ppc_collect_fpregset)
4880 (rs6000_push_dummy_call, rs6000_extract_return_value)
4881 (rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
4882 (rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
4883 FP0_REGNUM.
4884 * aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
4885 (fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
4886 Same.
4887 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
4888 bdm_ppc_store_registers): Same.
4889 * ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
4890 (store_register, fill_fpregset): Same.
4891 * ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
4892 (ppc_linux_supply_fpregset): Same.
4893 * ppcnbsd-nat.c (getfpregs_supplies): Same.
4894 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
4895 Same.
4896 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call,
4897 do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call,
4898 ppc64_sysv_abi_return_value): Same.
4899 * rs6000-nat.c (regmap, fetch_inferior_registers)
4900 (store_inferior_registers, fetch_core_registers): Same.
4901
4902 2004-05-01 Mark Kettenis <kettenis@gnu.org>
4903
4904 * m68knbsd-nat.c: Remove file.
4905 * m68knbsd-tdep.c: Remove file.
4906 * Makefile.in: (m68knbsd-nat.o, m68knbsd-tdep.o): Remove
4907 dependencies.
4908 * configure.host: Add m68k-*-netbsdelf*.
4909 * configure.tgt (m68k-*-netbsd*): Set gdb_target to nbsd.
4910 * config/m68k/nbsdaout.mh (NATDEPFILES): Add m68kbsd-nat.o,
4911 solib.o and solib-sunos.o. Remove m68knbsd-nat.o, corelow.o.
4912 (XM_FILE): Remove.
4913 * config/m68k/nbsdelf.mh: New file.
4914 * config/m68k/nbsd.mt: New file.
4915 * config/m68k/nbsdaout.mt: Remove file.
4916 * config/m68k/tm-nbsd.h: Don't include <sys/param.h>,
4917 <machine/vmparam.h> and "m68k/tm-m68k.h". Include "solib.h".
4918 (BPT_VECTOR, STACK_END_ADDR): Remove defines.
4919 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Likewise.
4920 (use_struct_convention): Remove prototype.
4921 (USE_STRUCT_CONVENTION): Remove define.
4922 * config/m68k/xm-nbsd.h: Remove file.
4923
4924 2004-05-04 Michael Snyder <msnyder@redhat.com>
4925
4926 * m68k-tdep.c (m68k_gdbarch_init): Default to using
4927 reg_struct_return method (as gcc usually does for cross targets).
4928
4929 2004-05-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4930
4931 Committed by Andrew Cagney.
4932 * s390-tdep.c (s390_sigtramp_frame_unwind_cache): Account for
4933 alignment padding when accessing ucontext struct members.
4934
4935 2004-05-04 Jim Blandy <jimb@redhat.com>
4936
4937 * config/ppc-tdep.h (struct gdbarch_tdep): Delete
4938 'ppc_gplast_regnum' member.
4939 (ppc_num_gprs): New enum constant.
4940 * ppc-linux-nat.c (ppc_register_u_addr): Use tdep->ppc_gp0_regnum
4941 and ppc_num_gprs instead of tdep->ppc_gplast_regnum.
4942 * rs6000-nat.c (regmap, fetch_inferior_registers,
4943 store_inferior_registers): Same.
4944 * rs6000-tdep.c (e500_pseudo_register_read)
4945 (e500_pseudo_register_write): Same.
4946 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gplast_regnum.
4947
4948 * config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
4949 * ppc-tdep.h (ppc_num_fprs): New enum constant.
4950 * aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
4951 store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
4952 FPLAST_REGNUM.
4953 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
4954 Same.
4955 * ppc-linux-nat.c (ppc_register_u_addr): Same.
4956 * rs6000-nat.c (regmap, fetch_inferior_registers)
4957 (store_inferior_registers): Same.
4958
4959 * aix-thread.c (fill_fprs): Fix off-by-one error comparing regno
4960 with FPLAST_REGNUM.
4961
4962 2004-05-03 Joel Brobecker <brobecker@gnat.com>
4963
4964 * dwarf2read.c (dwarf2_create_include_psymtab): Fix build
4965 failure detected by recent versions of GCC.
4966 (psymtab_to_symtab_1): No longer use the PST_PRIVATE macro
4967 to be consistent with the usage in dwarf2_create_include_psymtab.
4968
4969 2004-05-03 Michael Snyder <msnyder@redhat.com>
4970
4971 * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
4972 (heuristic_proc_start): Whitespace cleanup.
4973
4974 2004-05-04 Mark Kettenis <kettenis@gnu.org>
4975
4976 * sun3-nat.c: Remove file.
4977 * Makefile.in (tm-sun3.h tm-altos.h tm-sun2.h tm-3b1.h): Remove
4978 dependencies.
4979 (ALLDEPFILES): Remove sun3-nat.c.
4980 (sun3-nat.o): Remove dependencies.
4981
4982 * i386-interix-nat.c, i386-interix-tdep.c,
4983 config/i386/nm-interix.h, config/i386/interix.mh,
4984 config/i386/interix.mt: Remove files.
4985 * Makefile.in (i386-interix-nat.o, i386-interix-tdep.o): Remove
4986 dependencies.
4987
4988 2004-05-03 Mark Kettenis <kettenis@gnu.org>
4989
4990 * m68k-tdep.h (struct gdbarch_tdep): Add member
4991 struct_value_regnum.
4992 (m68k_svr4_init_abi): New prototype.
4993 * m68k-tdep.c: Include "floatformat.h". Add comment about all the
4994 different calling conventions.
4995 (m68k_extract_return_value): Remove code dealing with single-field
4996 structs.
4997 (m68k_store_return_value): Remove code dealing with single-field
4998 structs. Correctly store return values of 5, 6, 7 or 8 bytes.
4999 (m68k_extract_struct_value_address): Remove function.
5000 (m68k_svr4_extract_return_value,m68k_svr4_store_return_value)
5001 (m68k_reg_struct_return_p, m68k_return_value)
5002 (m68k_svr4_return_value): New functions.
5003 (m68k_use_struct_convention): Remove function.
5004 (m68k_push_dummy_call): Use new struct_value_regnum member of
5005 `struct gdbarch_tdep' instead of hardcoded register number to
5006 store STRUCT_ADDR.
5007 (m68k_svr4_init_abi): New function.
5008 (m68k_gdbarch_init): Don't set extract_return_value,
5009 store_return_values, deprecated_extract_struct_value_address and
5010 use_struct_convention. Set return_value instead. Initialize new
5011 struct_value_regnum member of `struct gdbarch_tdep'.
5012 * m68klinux-tdep.c: Update copyright year.
5013 (m68k_linux_extract_return_value, m68k_linux_store_return_value)
5014 (m68k_linux_extract_struct_value_address): Remove function.
5015 (m68k_linux_init_abi): Don't set extract_return_value,
5016 store_return_values, deprecated_extract_struct_value_address and
5017 use_struct_convention. Call m68k_svr4_init_abi but override the
5018 new struct_value_regnum member of `struct gdbarch_tdep'.
5019 * Makefile.in (m68k-tdep.o): Update dependencies.
5020
5021 2004-05-03 J. Brobecker <brobecker@gnat.com>
5022
5023 * dwarf2read.c (line_header): Add new included_p field in
5024 field file_names.
5025 (partial_die_info): New field has_stmt_list. New field line_offset.
5026 (dwarf2_create_include_psymtab): New function.
5027 (dwarf2_build_include_psymtabs): New function.
5028 (add_file_name): Add forward declaration. Initialize new field.
5029 (dwarf_decode_lines): Add new parameter. Enhance this procedure
5030 to be able to determine the list of files included by the
5031 given unit, and build their associated psymtabs.
5032 (dwarf2_build_psymtabs_hard): Build the psymtabs for the included
5033 files as well.
5034 (psymtab_to_symtab_1): Build the symtabs of all dependencies as well.
5035 (read_file_scope): Update call to dwarf_decode_lines.
5036 (read_partial_die): Handle DW_AT_stmt_list attributes.
5037
5038 2004-05-02 Michael Chastain <mec.gnu@mindspring.com>
5039
5040 Unfix PR gdb/1626.
5041 * configure.in: Revert special case for osf5.*.
5042 * configure: Regenerate.
5043
5044 2004-05-02 Jim Blandy <jimb@redhat.com>
5045
5046 Move the symbol-file-from-memory functions into their own file.
5047 * symfile-mem.c, symfile-mem.h: New files.
5048 * symfile.c (symbol_file_add_from_bfd): New function.
5049 (symbol_file_add): Call symbol_file_add_from_bfd.
5050 (symbol_file_add_from_memory, add_symbol_file_from_memory_command):
5051 Moved to symfile-mem.c.
5052 (_initialize_symfile): Move definition of
5053 add-symbol-file-from-memory command to symfile-mem.c.
5054 * symfile.h (symbol_file_add_from_bfd): New declaration.
5055 * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
5056 * config/powerpc/linux.mt (TDEPFILES): Same.
5057 * Makefile.in (SFILES): Add symfile-mem.c.
5058 (symfile_mem_h): New variable.
5059 (HFILES_NO_SRCDIR): Add symfile-mem.h.
5060 (symfile-mem.o): New rule.
5061
5062 2004-05-01 Andrew Cagney <cagney@redhat.com>
5063
5064 * breakpoint.c (insert_bp_location): Use get_frame_id, and
5065 frame_find_by_id instead of frame_relative_level.
5066 (do_enable_breakpoint): Ditto.
5067 * thread.c: Update copyright.
5068 (info_threads_command): Ditto, simplify.
5069
5070 * frame.c (deprecated_generic_get_saved_register): Delete
5071 function, moved to "xstormy16-tdep.c".
5072 * xstormy16-tdep.c (xstormy16_get_saved_register): Inline
5073 deprecated_generic_get_saved_register from "frame.c".
5074 (xstormy16_frame_saved_register): Call
5075 xstormy16_get_saved_register.
5076 * dummy-frame.c (deprecated_find_dummy_frame_regcache): Make
5077 static.
5078 * dummy-frame.h (deprecated_find_dummy_frame_regcache): Delete.
5079 * frame.h (deprecated_generic_get_saved_register): Delete.
5080
5081 2004-05-01 Michael Chastain <mec.gnu@mindspring.com>
5082
5083 * dwarfread.c: Update documentation on the state of dwarf-1.
5084
5085 2004-05-01 Andrew Cagney <cagney@redhat.com>
5086
5087 * stack.c (select_frame_command): Delete call to
5088 frame_relative_level.
5089 (print_frame, set_backtrace_limit_command, backtrace_limit_info):
5090 Delete #if0 code.
5091 (frame_info): Do not print FRAMELESS.
5092 (print_block_frame_labels): Replace DEPRECATED_STREQ.
5093 (catch_info): Delete #if0 code.
5094
5095 * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
5096 * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
5097 of frame_relative_level.
5098 * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
5099 to SENTINEL_FRAME.
5100 * frame.h (enum frame_type): Add SENTINEL_FRAME.
5101 * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
5102 frame_relative_level.
5103
5104 * frame.h (deprecated_set_frame_type): Delete declaration.
5105 * frame.c (deprecated_set_frame_type): Delete function, update
5106 comments.
5107
5108 * gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
5109 * gdbarch.h, gdbarch.c: Re-generate.
5110 * shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
5111 (shnbsd_pc_in_sigtramp): Delete.
5112 * i386-interix-tdep.c (i386_interix_init_abi): Do not set
5113 pc_in_sigtramp.
5114 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
5115 pc_in_sigtramp.
5116 * frame.h: Update comments.
5117 * ppc-linux-tdep.c: Update comments.
5118 * breakpoint.c (bpstat_what): Update comments.
5119
5120 * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix
5121 m68klinux-tdep.o's dependencies, were previously added to
5122 m68klinux-nat.o.
5123
5124 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Use pc_in_sigtramp.
5125 * alpha-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp.
5126 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
5127 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
5128 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
5129
5130 * Makefile.in (m68klinux-nat.o): Update dependencies.
5131 * m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
5132 (m68k_linux_sigtramp_frame_cache)
5133 (m68k_linux_sigtramp_frame_this_id)
5134 (m68k_linux_sigtramp_frame_prev_register)
5135 (m68k_linux_sigtramp_frame_unwind)
5136 (m68k_linux_sigtramp_frame_sniffer)
5137 (struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
5138 m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
5139 names, use trad-frame.h.
5140 * m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
5141 (struct m68k_sigtramp_info): Delete.
5142 * m68k-tdep.c (m68k_sigtramp_frame_cache)
5143 (m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
5144 (m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
5145 (m68k_gdbarch_init): Delete all the sigtramp code, moved to
5146 "m68klinux-tdep.c".
5147
5148 * infrun.c (check_sigtramp2): Delete check for
5149 DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.
5150
5151 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5152
5153 * m68k-tdep.h (m68kbsd_fpreg_offset): New prototype.
5154
5155 2004-05-01 Andrew Cagney <cagney@redhat.com>
5156
5157 * frv-linux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
5158 (frv_linux_sigtramp_frame_cache)
5159 (frv_linux_sigtramp_frame_this_id)
5160 (frv_linux_sigtramp_frame_prev_register)
5161 (frv_linux_sigtramp_frame_unwind)
5162 (frv_linux_sigtramp_frame_sniffer): Copied from frv-tdep.c,
5163 include "linux" in function and variable names, directly call
5164 frv_linux_pc_in_sigtramp and frv_linux_sigcontext_reg_addr, use
5165 the latest trad-frame code.
5166 (frv_linux_init_abi): Append frv_linux_sigtramp_frame_sniffer, do
5167 not set frv_sigcontext_reg_addr or deprecated_pc_in_sigtramp
5168 * Makefile.in (frv-linux-tdep.o): Update dependencies.
5169 * frv-tdep.h (frv_set_sigcontext_reg_addr): Delete declaration.
5170 * frv-tdep.c (frv_sigtramp_frame_cache)
5171 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
5172 (frv_sigtramp_frame_unwind, frv_sigtramp_frame_sniffer): Moved to
5173 frv-linux-tdep.c.
5174 (frv_gdbarch_init): Do not append a sigtramp sniffer.
5175 (struct gdbarch_tdep): Delete sigcontext_reg_addr.
5176 (frv_set_sigcontext_reg_addr): Delete function.
5177
5178 * gdbarch.sh (DEPRECATED_SIGTRAMP_START)
5179 (DEPRECATED_SIGTRAMP_END): Delete.
5180 * gdbarch.h, gdbarch.c: Re-generate.
5181 * arch-utils.c (legacy_pc_in_sigtramp): Simplify.
5182 * config/vax/tm-vaxbsd.h: Update copyright.
5183 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
5184 (DEPRECATED_IN_SIGTRAMP): Define.
5185 * config/m68k/tm-nbsd.h: Update copyright.
5186 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
5187 (DEPRECATED_IN_SIGTRAMP): Define.
5188
5189 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5190
5191 * dwarf2-frame.c (read_encoded_value): Handle DW_EH_PE_funcrel
5192 encondings. Fixes PR gdb/1628.
5193
5194 * dwarf2-frame.c (execute_cfa_program): Complain if we encounter a
5195 DW_CFA_restore state without a matching DW_CFA_remember_state
5196 instead of aborting. Fixes PR backtrace/1589.
5197
5198 2004-04-30 Joel Brobecker <brobecker@gnat.com>
5199
5200 * MAINTAINERS: Add self as AIX maintainer.
5201 Update my e-mail address in write-after-approval section.
5202
5203 2004-04-30 Andrew Cagney <cagney@redhat.com>
5204
5205 * frame.c (frame_type_from_pc): Delete call to PC_IN_SIGTRAMP.
5206 (legacy_get_prev_frame): Ditto.
5207
5208 * mips-tdep.c (mips_pc_in_sigtramp): Delete.
5209 (mips_gdbarch_init): Do not set pc_in_sigtramp.
5210 * mipsread.c (sigtramp_address): Delete extern variable.
5211 (mipscoff_new_init): Delete reference.
5212 * mdebugread.c (sigtramp_address, sigtramp_end): Delete variables.
5213 (fixup_sigtramp): Delete function.
5214 * config/mips/tm-mips.h (sigtramp_address, sigtramp_end)
5215 (fixup_sigtramp): Delete declarations.
5216
5217 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Do not set
5218 deprecated_pc_in_sigtramp.
5219 (ppcnbsd_pc_in_sigtramp): Delete function.
5220
5221 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5222
5223 * config/m68k/nm-nbsd.h: Tweak comments.
5224 * config/m68k/nm-nbsdaout.h: Likewise.
5225
5226 2004-04-30 Andrew Cagney <cagney@redhat.com>
5227
5228 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Call
5229 legacy_pc_in_sigtramp.
5230 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Ditto.
5231
5232 2004-05-01 Mark Kettenis <kettenis@gnu.org>
5233
5234 Add OpenBSD/m68k support.
5235 * NEWS (New native configurations): Mention OpenBSD/m68k.
5236 * m68kbsd-tdep.c: New file.
5237 * m68kbsd-nat.c: New file.
5238 * Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
5239 (m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
5240 * configure.host: Add m68k-*-openbsd.
5241 * configure.tgt: Add m68k-*-openbsd.
5242 * config/m68k/tm-obsd.h: New file.
5243 * config/m68k/obsd.mt: New file.
5244 * config/m68k/obsd.mh: New file.
5245 * config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
5246 m68kbsd-tdep.c.
5247
5248 2004-04-30 Andrew Cagney <cagney@redhat.com>
5249
5250 * mipsnbsd-tdep.c (mipsnbsd_pc_in_sigtramp): Delete function.
5251 (mipsnbsd_init_abi): Do not set pc_in_sigtramp.
5252
5253 2004-04-30 Mark Kettenis <kettenis@gnu.org>
5254
5255 * m68k-tdep.c (REMOTE_BPT_VECTOR): Remove define.
5256 * config/m68k/tm-nbsd.h (REMOTE_BPT_VECTOR): Remove define.
5257
5258 2004-04-30 Brian Ford <ford@vss.fsi.com>
5259
5260 Revert 2004-04-16 change.
5261 * i386-tdep.c (i386_gdbarch_init): Fix comment typos.
5262 (i386_coff_init_abi): Remove.
5263 * i386-tdep.h (i386_coff_init_abi): Remove.
5264 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Remove call to above.
5265
5266 2004-04-30 Andrew Cagney <cagney@redhat.com>
5267
5268 * blockframe.c (find_pc_partial_function): Delete use of
5269 DEPRECATED_PC_IN_SIGTRAMP, DEPRECATED_SIGTRAMP_START and
5270 DEPRECATED_SIGTRAMP_END.
5271
5272 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
5273 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
5274 * config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
5275 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
5276 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
5277
5278 * defs.h (deprecated_inside_entry_file): Delete declaration.
5279 * blockframe.c (deprecated_inside_entry_file): Delete function.
5280 (legacy_frame_chain_valid): Delete call.
5281 * sh64-tdep.c (sh64_frame_chain): Delete call.
5282 * objfiles.h: Update comments.
5283 * i386-interix-tdep.c (i386_interix_frame_chain_valid): Delete
5284 call.
5285 * frame.c (get_prev_frame): Delete call, update comments.
5286
5287 2004-04-30 Brian Ford <ford@vss.fsi.com>
5288
5289 * MAINTAINERS (Write After Approval): Add myself.
5290
5291 2004-04-30 Andrew Cagney <cagney@redhat.com>
5292
5293 * gdbarch.sh (BELIEVE_PCC_PROMOTION_TYPE): Delete.
5294 * gdbarch.h, gdbarch.c: Re-generate.
5295 * stabsread.c (define_symbol): Delete BELIEVE_PCC_PROMOTION_TYPE
5296 code.
5297
5298 2004-04-30 Andrew Cagney <cagney@redhat.com>
5299
5300 * gdb-events.sh (selected_thread_changed)
5301 (selected_frame_level_changed, target_changed): Delete.
5302 * gdb-events.h, gdb-events.c: Re-generate.
5303 * valops.c (value_assign): Update.
5304 * stack.c (select_frame_command, up_silently_base)
5305 (down_silently_base): Update.
5306
5307 2004-04-29 Andrew Cagney <cagney@redhat.com>
5308
5309 * mips-tdep.c (mips_register_type): Re-write, handle 32-bit ABI
5310 registers correctly.
5311 (print_gp_register_row, mips32_heuristic_proc_desc)
5312 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
5313 (mips_o64_push_dummy_call, mips_eabi_push_dummy_call): Eliminate
5314 references to mips_isa_regsize.
5315
5316 2004-04-29 Andrew Cagney <cagney@redhat.com>
5317
5318 * mips-tdep.c (struct gdbarch_tdep): Delete
5319 mips_fp_register_double.
5320 (FP_REGISTER_DOUBLE): Delete macro, replace with test for
5321 mips_abi_regsize.
5322 (mips_gdbarch_init): Do not set mips_fp_register_double.
5323 (mips_dump_tdep): Do not print FP_REGISTER_DOUBLE.
5324
5325 2004-04-29 Joel Brobecker <brobecker@gnat.com>
5326
5327 Committed by Andrew Cagney.
5328 * infrun.c (handle_inferior_event): Rely on frame IDs to detect
5329 function calls.
5330
5331 2004-04-29 Andrew Cagney <cagney@redhat.com>
5332
5333 * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with
5334 gdbarch, use mips_abi, update callers.
5335 (mips_stack_argsize): Replace tdep parameter with gdbarch, use
5336 mips_abi_regsize, update callers.
5337 (struct gdbarch_tdep): Delete mips_default_stack_argsize and
5338 mips_default_abi_regsize.
5339 (mips_gdbarch_init): Do not set mips_default_stack_argsize and
5340 mips_default_abi_regsize.
5341
5342 2004-04-29 Andrew Cagney <cagney@redhat.com>
5343
5344 * mips-tdep.c (mips_abi_regsize): Rename mips_saved_regsize.
5345 (mips_abi_regsize_string): Rename mips_saved_regsize_string.
5346 (struct gdbarch_tdep): Rename mips_default_saved_regsize to
5347 mips_default_abi_regsize.
5348 (mips_isa_regsize): Rename mips_regisze.
5349 * mipsnbsd-tdep.c: Update.
5350 * mips-linux-tdep.c: Update.
5351 * irix5-nat.c: Update.
5352 * mips-tdep.h (mips_isa_regsize): Update.
5353
5354 * gdb-events.sh (WITH_GDB_EVENTS): Delete macro and references.
5355 Delete all disabled code.
5356 * gdb-events.h, gdb-events.c: Re-generate.
5357
5358 2004-04-19 Jerome Guitton <guitton@gnat.com>
5359 Mark Kettenis <kettenis@gnu.org>
5360
5361 * i386-tdep.c (i386_skip_prologue): follow the last jump only if
5362 the function begins with a branch instruction.
5363
5364 2004-04-29 Mark Kettenis <kettenis@gnu.org>
5365
5366 * i386-tdep.c: Fix spelling mistakes.
5367
5368 2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5369 Andrew Cagney <cagney@redhat.com>
5370
5371 * configure.in (mips-sgi-irix5*): Define _KMEMUSER for
5372 <sys/proc.h>.
5373 * acconfig.h: Provide default _KMEMUSER value.
5374 * config.in, configure: Re-generate.
5375 * NEWS: Mention fix.
5376
5377 2004-04-24 Randolph Chung <tausq@debian.org>
5378
5379 * configure.host (hppa*-*-linux*): New target.
5380 * configure.tgt (hppa*-*-linux*): Likewise.
5381 * hppa-tdep.c (hppa_gdbarch_init): Set cannot_fetch_register, move
5382 gdbarch_init_osabi() call earlier so that osabi-specific frame
5383 unwinders can be registered first.
5384 * config/djgpp/fnchange.lst: Add entries for hppa-linux-tdep.c and
5385 hppa-linux-nat.c.
5386 * config/pa/tm-hppa.h (ISR_REGNUM, PID0_REGNUM, PID1_REGNUM)
5387 (PID2_REGNUM, PID3_REGNUM): Add definitions of some register numbers.
5388 * config/pa/linux.mh: New file.
5389 * config/pa/linux.mt: New file.
5390 * config/pa/nm-linux.h: New file.
5391 * config/pa/xm-linux.h: New file.
5392 * hppa-linux-nat.c: New file.
5393 * hppa-linux-tdep.c: New file.
5394
5395 2004-04-28 Randolph Chung <tausq@debian.org>
5396
5397 * hppa-tdep.c (hppa32_return_value): Handle both 4- and 8-byte fp
5398 return values.
5399 (hppa32_push_dummy_call): Fix small struct and floating point argument
5400 passing, and make sure the stack frame is properly aligned.
5401
5402 2004-04-28 Andrew Cagney <cagney@redhat.com>
5403
5404 * stack.c (print_stack_frame): Fix description.
5405
5406 * NEWS: Mention gdb/gdbserver/configure execute permission
5407 changed. PR server/519.
5408
5409 2004-04-28 Andrew Cagney <cagney@redhat.com>
5410
5411 * stack.c (print_stack_frame_stub): Delete declaration.
5412 (struct print_stack_frame_args, print_stack_frame)
5413 (print_frame_info, print_frame): Replace "source" with print what.
5414 Replace "print" with "print_level". Replace "args" with
5415 "print_args".
5416 * frame.h (show_and_print_stack_frame, print_stack_frame)
5417 (print_frame_info): Update declarations.
5418 * stack.c (select_and_print_frame, frame_command)
5419 (current_frame_command, up_command, down_command): Update calls -
5420 use get_selected_frame, pass "enum print_what" for source, do not
5421 call frame_relative_level.
5422 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
5423 * remote-rdp.c (remote_rdp_open): Ditto.
5424 * remote-mips.c (common_open): Ditto.
5425 * remote-e7000.c (e7000_start_remote): Ditto.
5426 * ocd.c (ocd_start_remote): Ditto.
5427 * mi/mi-main.c (mi_cmd_exec_return): Ditto.
5428 * infrun.c (normal_stop): Ditto.
5429 * inflow.c (kill_command): Ditto.
5430 * infcmd.c (finish_command): Ditto.
5431 * corelow.c (core_open): Ditto.
5432 * tracepoint.c (finish_tfind_command): Ditto.
5433 * thread.c (info_threads_command, info_threads_command)
5434 (restore_current_thread, do_captured_thread_select): Ditto.
5435 * ada-tasks.c (task_command): Ditto.
5436
5437 2004-04-26 Orjan Friberg <orjanf@axis.com>
5438
5439 * frame.c: Include "observer.h".
5440 (frame_observer_target_changed): New function.
5441 (_initialize_frame): Attach target_changed observer.
5442 * regcache.c: Include "observer.h".
5443 (regcache_observer_target_changed): New function.
5444 (_initialize_regcache): Attach target_changed observer.
5445 * valops.c: Include "observer.h".
5446 (value_assign): Notify target_changed event when modifying register.
5447 * Makefile.in (frame.o, regcache.o, valops.o): Add $(observer_h).
5448
5449 2004-04-26 Orjan Friberg <orjanf@axis.com>
5450
5451 From Paul Koning <pkoning@equallogic.com>:
5452 * breakpoint.c (free_valchain): New function.
5453 (insert_bp_location, delete_breakpoint): Use free_valchain.
5454 (remove_breakpoint): Do not remove the valchain.
5455 (bpstat_stop_status): If not stopped by watchpoint, skip
5456 watchpoints when generating stop status list.
5457 * infrun.c (handle_inferior_event): Make
5458 stepped_after_stopped_by_watchpoint a global variable.
5459 * remote.c (remote_stopped_data_address): Return watch data
5460 address rather than zero if stepped_after_stopped_by_watchpoint is
5461 set.
5462
5463 2004-04-25 Michael Chastain <mec.gnu@mindspring.com>
5464
5465 Fix PR gdb/1626.
5466 * configure.in: Check for curses after termcap.
5467 On osf5.*, do not check for ncurses.
5468 * configure: Regenerate.
5469
5470 2004-04-25 Mark Kettenis <kettenis@gnu.org>
5471
5472 * ppcobsd-nat.c: Include "ppc-tdep.h".
5473 * Makefile.in (ppcobsd-nat.o): Update dependencies.
5474
5475 * stack.c (return_command): Use CHECK_TYPEDEF on the return type.
5476 Fixes PR tdep/1623 and PR tdep/1624.
5477
5478 2004-04-24 Michael Chastain <mec.gnu@mindspring.com>
5479
5480 * xmodem.h, xmodem.c: Remove files.
5481 * Makefile.in: Remove references to xmodem.h, xmodem.c.
5482
5483 2004-04-23 Randolph Chung <tausq@debian.org>
5484
5485 * hppa-tdep.c (hppa_stub_unwind_cache, hppa_stub_frame_unwind_cache)
5486 (hppa_stub_frame_this_id, hppa_stub_frame_prev_register)
5487 (hppa_stub_frame_unwind, hppa_stub_unwind_sniffer): New stub unwinder
5488 for handling stackless frames.
5489 (hppa_gdbarch_init): Link in hppa_stub_unwind_sniffer.
5490
5491 2004-04-23 Randolph Chung <tausq@debian.org>
5492
5493 * hppa-tdep.c (hppa_frame_cache): Handle the case when frame unwind
5494 starts at a pc before the frame is created.
5495
5496 2004-04-23 Joel Brobecker <brobecker@gnat.com>
5497
5498 * ChangeLog-2002: Fix year in one of the ChangeLog entries.
5499
5500 2004-04-23 Jerome Guitton <guitton@gnat.com>
5501
5502 * rs6000-tdep.c (rs6000_extract_return_value): When extracting a float,
5503 use convert_typed_floating to get the appropriate format.
5504
5505 2004-04-22 Randolph Chung <tausq@debian.org>
5506
5507 * hppa-tdep.h (find_unwind_entry, hppa_get_field, hppa_extract_5_load)
5508 (hppa_extract_5R_store, hppa_extract_5r_store, hppa_extract_17)
5509 (hppa_extract_21, hppa_extract_14, hppa_low_sign_extend)
5510 (hppa_sign_extend): Add prototype.
5511 * hppa-tdep.c (get_field, extract_5_load, extract_5R_store)
5512 (extract_5r_store, extract_17, extract_21, extract_14, low_sign_extend)
5513 (sign_extend): Rename with hppa_ prefix and make non-static. Other
5514 hppa targets will also use these functions.
5515 (find_unwind_entry): Remove prototype (moved to hppa-tdep.h).
5516 (hppa_in_solib_call_trampoline, hppa_in_solib_return_trampoline)
5517 (hppa_skip_trampoline_code): Move to hppa-hpux-tdep.c
5518 (hppa_gdbarch_init): Remove gdbarch setting of
5519 skip_trampoline_code, in_solib_call_trampoline and
5520 in_solib_return_trampoline.
5521 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
5522 (hppa64_hpux_in_solib_call_trampoline): New functions, split from
5523 hppa_in_solib_call_trampoline.
5524 (hppa_hpux_in_solib_return_trampoline, hppa_hpux_skip_trampoline_code):
5525 Moved from hppa-tdep.c.
5526 (hppa_hpux_init_abi): Set gdbarch for skip_trampoline_code,
5527 in_solib_call_trampoline and in_solib_return_trampoline.
5528
5529 2004-04-22 Randolph Chung <tausq@debian.org>
5530
5531 * hppa-tdep.c (hppa_debug): New variable.
5532 (find_unwind_entry, hppa_frame_cache): Add debug output.
5533 (_initialize_hppa_tdep): Add command to set debug flag.
5534
5535 2004-04-22 Andrew Cagney <cagney@redhat.com>
5536
5537 * ppcnbsd-tdep.c: Update copyright. Include "tramp-frame.h" and
5538 "trad-frame.h".
5539 (ppcnbsd_sigtramp_cache_init, ppcnbsd_sigtramp): Implement a NetBSD
5540 signal trampoline unwinder.
5541 (ppcnbsd_init_abi): Register ppcnbsd_sigtramp.
5542
5543 2004-04-22 Mark Kettenis <kettenis@gnu.org>
5544
5545 Add OpenBSD/powerpc support.
5546 * NEWS (New native configurations): Mention OpenBSD/powerpc.
5547 * ppc-tdep.h (struct ppc_reg_offsets): New structure.
5548 (ppc_supply_gregset, ppc_supply_fpregset, ppc_collect_gregset)
5549 (ppc_collect_fpregset): New prototypes.
5550 * ppcobsd-nat.c: New file.
5551 * ppcobsd-tdep.c: New file.
5552 * ppcobsd-tdep.h: New file.
5553 * rs6000-tdep.c: Include "regset.h".
5554 (ppc_supply_reg, ppc_collect_reg, ppc_supply_gregset)
5555 (ppc_supply_fpregset, ppc_collect_gregset, ppc_collect_fpregset):
5556 New functions.
5557 * Makefile.in (ALLDEPFILES): Add pccobsd-nat.c and ppcobsd-tdep.c.
5558 (ppcobsd-nat.o, ppcobsd-tdep.o): New dependencies.
5559 (rs6000-tdep.o): Update dependencies.
5560 * configure.host: Add powerpc-*-openbsd.
5561 * configure.tgt: Add powerpc-*-openbsd.
5562 * config/powerpc/obsd.mh: New file.
5563 * config/powerpc/nm-obsd.h: New file.
5564 * config/powerpc/obsd.mt: New file.
5565
5566 2004-04-22 Andrew Cagney <cagney@redhat.com>
5567
5568 * frame.h (show_frame_info): Delete declaration.
5569
5570 * arm-tdep.c (arm_prologue_this_id): Delete redundant cycle test.
5571 * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
5572 * m32r-tdep.c (m32r_frame_this_id): Ditto.
5573 * frv-tdep.c (frv_frame_this_id): Ditto.
5574 * avr-tdep.c (avr_frame_this_id): Ditto.
5575
5576 2004-04-22 Elena Zannoni <ezannoni@redhat.com>
5577
5578 * MAINTAINERS: Drop maintenance of gdb.stabs, and linespec.c.
5579
5580 2004-04-22 Jim Blandy <jimb@redhat.com>
5581
5582 * ppc-linux-nat.c (ppc_register_u_addr): Don't assume that r0 is
5583 register number zero.
5584
5585 2004-04-21 Michael Snyder <msnyder@redhat.com>
5586
5587 * mips-tdep.c (heuristic_proc_start):
5588 Warning() already prefixes "Warning: ".
5589
5590 2004-04-21 Andrew Cagney <cagney@redhat.com>
5591
5592 * annotate.h (deprecated_annotate_starting_hook)
5593 (deprecated_annotate_stopped_hook)
5594 (deprecated_annotate_exited_hook)
5595 (deprecated_annotate_signal_hook)
5596 (deprecated_annotate_signalled_hook): Deprecate.
5597 * tracepoint.h (deprecated_create_tracepoint_hook)
5598 (deprecated_delete_tracepoint_hook)
5599 (deprecated_modify_tracepoint_hook)
5600 (deprecated_trace_find_hook)
5601 (deprecated_trace_start_stop_hook): Deprecate.
5602 * target.h (deprecated_target_new_objfile_hook): Deprecate.
5603 * remote.h (deprecated_target_resume_hook)
5604 (deprecated_target_wait_loop_hook): Deprecate.
5605 * gdbcore.h (deprecated_exec_file_display_hook)
5606 (deprecated_file_changed_hook): Deprecate.
5607 * frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
5608 * defs.h (deprecated_modify_breakpoint_hook)
5609 (deprecated_command_loop_hook, deprecated_show_load_progress)
5610 (deprecated_print_frame_info_listing_hook)
5611 (deprecated_query_hook, deprecated_warning_hook)
5612 (deprecated_flush_hook, deprecated_create_breakpoint_hook)
5613 (deprecated_delete_breakpoint_hook)
5614 (deprecated_interactive_hook, deprecated_registers_changed_hook)
5615 (deprecated_readline_begin_hook, deprecated_readline_hook)
5616 (deprecated_readline_end_hook, deprecated_register_changed_hook)
5617 (deprecated_memory_changed_hook, deprecated_init_ui_hook)
5618 (deprecated_context_hook, deprecated_target_wait_hook)
5619 (deprecated_attach_hook, deprecated_detach_hook)
5620 (deprecated_call_command_hook, deprecated_set_hook)
5621 (deprecated_error_hook, deprecated_error_begin_hook)
5622 (deprecated_ui_load_progress_hook): Deprecate.
5623 * valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
5624 * tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
5625 * target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
5626 * remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
5627 * main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
5628 * exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
5629 * cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
5630 * annotate.c, aix-thread.c: Update.
5631
5632 2004-04-21 Andrew Cagney <cagney@redhat.com>
5633
5634 * Makefile.in (vaxnbsd-tdep.o): Update dependencies.
5635 * vaxnbsd-tdep.c: Include "gdb_string.h".
5636
5637 * symfile.c (symbol_file_add_from_memory): #if 0 function.
5638 (add_symbol_file_from_memory_command): #if 0 function body, call
5639 error instead.
5640
5641 2004-04-21 Andrew Cagney <cagney@redhat.com>
5642
5643 * gdbcore.h: Update copyright.
5644 (deprecated_add_core_fns): Rename add_core_fns.
5645 * win32-nat.c (_initialize_core_win32): Update.
5646 * sun3-nat.c (_initialize_core_sun3): Update.
5647 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Update.
5648 * rs6000-nat.c (_initialize_core_rs6000): Update.
5649 * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Update.
5650 * nto-tdep.c (_initialize_nto_tdep): Update.
5651 * ns32knbsd-nat.c (_initialize_ns32knbsd_nat): Update.
5652 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Update.
5653 * mips-nat.c (_initialize_core_mips): Update.
5654 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
5655 * m68knbsd-nat.c (_initialize_m68knbsd_nat): Update.
5656 * m68klinux-nat.c (_initialize_m68k_linux_nat): Update.
5657 * lynx-nat.c (_initialize_core_lynx): Update.
5658 * irix5-nat.c (_initialize_core_irix5): Update.
5659 * i386-interix-nat.c (_initialize_core_interix): Update.
5660 * cris-tdep.c (_initialize_cris_tdep): Update.
5661 * corelow.c (deprecated_add_core_fns): Update.
5662 * core-regset.c (_initialize_core_regset): Update.
5663 * core-aout.c (_initialize_core_aout): Update.
5664 * armnbsd-nat.c (_initialize_arm_netbsd_nat): Update.
5665 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Update.
5666 * alpha-nat.c (_initialize_core_alpha): Update.
5667
5668 2004-04-21 Jim Blandy <jimb@redhat.com>
5669
5670 * rs6000-tdep.c (registers_e500, registers_7400): Doc fixes.
5671
5672 2004-04-19 Daniel Jacobowitz <drow@mvista.com>
5673
5674 * dwarf2read.c (dwarf2_tmp_obstack, dwarf2_free_tmp_obstack):
5675 Delete.
5676 (dwarf_alloc_block): Take a CU argument. Use the comp_unit_obstack.
5677 (read_attribute_value): Update calls to dwarf_alloc_block.
5678 (dwarf2_build_psymtabs_hard): Don't initialize or clean up
5679 dwarf2_tmp_obstack.
5680 (psymtab_to_symtab_1): Likewise. Clean up using
5681 free_stack_comp_unit.
5682 (add_to_cu_func_list): Use the comp_unit_obstack.
5683
5684 2004-04-19 Joel Brobecker <brobecker@gnat.com>
5685
5686 * dwarf2read.c (dwarf2_flag_true_p): New function.
5687 (die_is_declaration): Use the function above. Add some comments.
5688
5689 2004-04-19 Mark Kettenis <kettenis@gnu.org>
5690
5691 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Specify
5692 architecture when registering sparcnbsd_core_osabi_sniffer.
5693 Adjust comment.
5694
5695 2004-04-18 Mark Kettenis <kettenis@gnu.org>
5696
5697 * infcall.c (find_function_addr): Add FUNCTION_START_OFFSET to
5698 return value.
5699
5700 Based on a patch from Brian Ford <ford@vss.fsi.com>:
5701 * i386-tdep.c: Correct register numbering scheme comments
5702 throughout.
5703 (i386_stab_reg_to_regnum): Rename to i386_dbx_reg_to_regnum.
5704 (i386_dwarf_reg_to_regnum): Rename to i386_svr4_reg_to_regnum.
5705 (i386_coff_init_abi, i386_elf_init_abi): Accomodate renames above.
5706 (i386_gdb_arch_init): Likewise.
5707
5708 * Makefile.in (ALLDEPFILES): List ppc-sysv-tdep.c, ppcnbsd-nat.c
5709 and ppcnbsd-tdep.c instead of ppc-sysv-tdep.o, ppcnbsd-nat.o and
5710 ppcnbsd-tdep.o.
5711
5712 * m68k-tdep.h: Tweak comments.
5713 * m68k-tdep.c: Tweak comment.
5714
5715 2004-04-17 Randolph Chung <tausq@debian.org>
5716
5717 * Makefile.in (hppa-hpux-tdep.o): Add $(hppa_tdep_h).
5718 * hppa-hpux-tdep.c (hppa-tdep.h): Include.
5719 (hppa_hpux_som_init_abi): Set is_elf to 0.
5720 (hppa_hpux_elf_init_abi): Set is_elf to 1.
5721 * hppa-tdep.c (low_text_segment_address): Remove global.
5722 (record_text_segment_lowaddr): Pass in low address as parameter. Use
5723 section offset to calculate segment address.
5724 (internalize_unwinds): Define low_text_segment_address as local and
5725 pass to record_text_segment_lowaddr for ELF targets.
5726 (hppa_gdbarch_init): Zero fill tdep structure.
5727 (hppa_dump_tdep): Print tdep structure.
5728 * hppa-tdep.h (gdbarch_tdep): Add is_elf member to tdep structure.
5729
5730 2004-04-17 Randolph Chung <tausq@debian.org>
5731
5732 * hppa-tdep.c (hppa_pseudo_register_read): Define.
5733 (hppa_gdbarch_init): Set pseudo_register_read.
5734 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Remove.
5735 * regcache.c (supply_register): Remove check for
5736 DEPRECATED_CLEAN_UP_REGISTER_VALUE since we've removed the last user.
5737
5738 2004-04-17 Randolph Chung <tausq@debian.org>
5739
5740 * Makefile.in (hpread.o, pa64solib.o, somsolib.o): Add $(hppa_tdep_h)
5741 * hppa-tdep.h (INSTRUCTION_SIZE): Move from tm-hppa.h.
5742 (hpread_adjust_stack_address): Move to hpread.c.
5743 * hppa-tdep.h (unwind_table_entry, unwind_stub_types, obj_unwind_info,
5744 obj_private_struct): Move from tm-hppa.h.
5745 * hpread.c (hppa-tdep.h): Include.
5746 (hpread_adjust_stack_address): Move from hppa-tdep.c.
5747 (hpread_read_function_type, hpread_read_doc_function_type)
5748 (hpread_process_one_debug_symbol): Call hpread_adjust_stack_address
5749 directly.
5750 * pa64solib.c (hppa-tdep.h): Include.
5751 * somsolib.c (hppa-tdep.h): Include.
5752 * config/pa/tm-hppa.h (frame_info, frame_saved_regs, value, type,
5753 inferior_status): Remove unused forward declarations.
5754 (INSTRUCTION_SIZE): Move to hppa-tdep.c.
5755 (unwind_table_entry, unwind_stub_types, obj_unwind_info,
5756 obj_private_struct): Move to hppa-tdep.h.
5757 (HPREAD_ADJUST_STACK_ADDRESS): Remove.
5758
5759 2004-04-17 Randolph Chung <tausq@debian.org>
5760
5761 * hppa-tdep.c (hppa_reg_struct_has_addr, hppa_skip_prologue)
5762 (hppa_skip_trampoline_code, hppa_in_solib_call_trampoline)
5763 (hppa_in_solib_return_trampoline, hppa_cannot_store_register)
5764 (hppa_smash_text_address, hppa_target_read_pc, hppa_target_write_pc):
5765 Remove forward declaration and make static.
5766 (hppa_reg_struct_has_addr): Remove.
5767
5768 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5769
5770 * observer.sh: Move comments in sed command to first column.
5771
5772 2004-04-16 Jason Molenda (jmolenda@apple.com)
5773
5774 * frame.c: Minor typeo corrections in comments.
5775
5776 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5777
5778 * observer.c (observer_test_first_notification_function): Update
5779 function profile.
5780 (observer_test_second_notification_function): Likewise.
5781 (observer_test_third_notification_function): Likewise.
5782
5783 2004-04-16 Mark Kettenis <kettenis@gnu.org>
5784
5785 From Brian Ford <ford@vss.fsi.com>:
5786 * i386-tdep.c (i386_coff_init_abi): New function.
5787 * i386-tdep.h (i386_coff_init_abi): New prototype.
5788 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Call it. Use correct
5789 register number translation functions for DWARF and DWARF 2.
5790
5791 2004-04-16 Joel Brobecker <brobecker@gnat.com>
5792
5793 * dwarf2read.c: Back out my previous change, it was incorrect.
5794
5795 2004-04-16 Daniel Jacobowitz <drow@mvista.com>
5796
5797 * dwarf2read.c: Include "hashtab.h".
5798 (struct dwarf2_cu): Add partial_dies, comp_unit_obstack,
5799 has_namespace_info.
5800 (struct partial_die_info): Add comments. Use bitfields to reduce
5801 memory footprint. Add scope, scope_set, has_specification,
5802 spec_offset, die_parent, die_child, and die_sibling.
5803 (peek_die_abbrev): Add prototype.
5804 (partial_read_comp_unit_head): New function, broken out from
5805 dwarf2_build_psymtabs_hard.
5806 (dwarf2_build_psymtabs_hard): Remove unused variable abbrev_ptr.
5807 Use partial_read_comp_unit_head. Initialize the CU and
5808 comp_unit_obstack. Update calls to read_partial_die and
5809 scan_partial_symbols. Use free_stack_comp_unit and
5810 load_partial_dies.
5811 (scan_partial_symbols): Change PDI to a pointer. Use the child and
5812 sibling pointers to walk partial DIEs. Call fixup_partial_die.
5813 Update calls to helper functions. Remove NAMESPACE argument.
5814 Update comments.
5815 (partial_die_parent_scope, partial_die_full_name): New functions.
5816 (add_partial_symbol): Remove namespace argument. Update call to
5817 pdi_needs_namespace. Use partial_die_full_name. Handle
5818 DW_TAG_namespace. Check has_namespace_info flag.
5819 (pdi_needs_namespace): Remove NAMESPACE argument. Just check the
5820 tag. Handle namespaces.
5821 (add_partial_namespace, add_partial_enumeration): Simplify.
5822 (guess_structure_name): New function, derived from
5823 add_partial_structure.
5824 (add_partial_structure): Remove.
5825 (determine_class_name): Update comment.
5826 (dwarf2_read_abbrevs): Set has_namespace_info flag.
5827 (is_type_tag_for_partial, load_partial_dies): New functions.
5828 (read_partial_die): Pass abbrev and abbrev_len as arguments.
5829 Record specifications instead of following them immediately.
5830 (find_partial_die_in_comp_unit, find_partial_die)
5831 (fixup_partial_die, free_stack_comp_unit)
5832 (hashtab_obstack_allocate, dummy_obstack_deallocate)
5833 (partial_die_hash, partial_die_eq): New functions.
5834 * Makefile.in (hashtab_h): Define.
5835 (dwarf2read.o): Update dependencies.
5836 (observer_inc, observer_h): Move to the correct section.
5837
5838 2004-04-15 Joel Brobecker <brobecker@gnat.com>
5839
5840 * dwarf2read.c (dwarf2_attribute_true_p): New function.
5841 (die_is_declaration): Use the function above. Add comment.
5842
5843 2004-04-15 Joel Brobecker <brobecker@gnat.com>
5844
5845 * dwarf2read.c (read_structure_scope): Identify stub types
5846 using die_is_declaration() only.
5847
5848 2004-04-15 Roland McGrath <roland@redhat.com>
5849
5850 * symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as
5851 argument instead of NAME.
5852 (symbol_file_add, reread_separate_symbols): Call symfile_bfd_open
5853 in call to symbol_file_add_with_addrs_or_offsets.
5854 (build_addr_info): New function, helper for ...
5855 (symbol_file_add_from_memory): New function.
5856 (add_symbol_file_from_memory_command): New function using that.
5857 (_initialize_symfile): Register it for add-symbol-file-from-memory.
5858 (pre_add_symbol_hook): Add const to argument type.
5859 * symfile.h (symbol_file_add_from_memory): Declare it.
5860
5861 2004-04-15 Mark Kettenis <kettenis@gnu.org>
5862
5863 * NEWS (New native configurations): Mention OpenBSD/vax.
5864 * configure.host: Add vax-*-openbsd*.
5865 * config/vax/obsd.mh: New file.
5866 * config/vax/nm-obsd.h: New file.
5867
5868 * vax-tdep.c: Include "regset.h".
5869 (vax_supply_gregset): New function.
5870 (vax_gregset): New variable.
5871 (vax_regset_from_core_section): New function.
5872 (vax_gdbarch_init): Set regset_from_core_section.
5873 * Makefile.in (vax-tdep.o): Update dependencies.
5874
5875 2004-04-15 Andrew Cagney <cagney@redhat.com>
5876
5877 * observer.c (normal_stop_subject, observer_notify_normal_stop)
5878 (observer_normal_stop_notification_stub)
5879 (observer_attach_normal_stop, observer_detach_normal_stop):
5880 Delete, replaced by #include "observer.inc".
5881 * infrun.c (normal_stop): Pass "stop_bpstat" to
5882 observer_notify_normal_stop.
5883 * Makefile.in (observer_inc): Define.
5884 (observer.o): Update dependencies.
5885 (observer.h, observer.inc): New rules.
5886 * observer.h: Delete file.
5887 * observer.sh: New file.
5888
5889 2004-04-15 Mark Kettenis <kettenis@gnu.org>
5890
5891 * vax-tdep.c (vax_frame_cache): Fix typo.
5892
5893 2004-04-14 Mark Kettenis <kettenis@gnu.org>
5894
5895 * NEWS (New native configurations): Mention NetBSD/vax.
5896 * configure.host: Add vax-*-netbsdelf* and vax-*-netbsd*.
5897 * config/vax/nbsdelf.mh: New file.
5898 * config/vax/nbsdaout.mh: New file.
5899 * config/vax/nm-nbsd.h: New file.
5900 * config/vax/nm-nbsdaout.h: New file.
5901
5902 * vaxnbsd-tdep.c: New file.
5903 * Makefile.in (vaxnbsd-tdep.o): New dependency.
5904 * configure.tgt: Add vax-*-netbsd* and vax-*-openbsd*.
5905 * config/vax/nbsd.mt: New file.
5906 * config/vax/tm-nbsd.h: New file.
5907
5908 * Makefile.in (vaxbsd-nat.o): New dependency.
5909
5910 * vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
5911 * vax-tdep.c (vax_store_arguments): Remove struct_return and
5912 struct_addr arguments. Don't push return value address.
5913 (vax_push_dummy_call): Don't pass STRUCT_RETURN and STRUCT_ADDR as
5914 arguments to vax_store_arguments. Store return value address in
5915 R1.
5916 (vax_store_struct_return, vax_extract_return_value)
5917 (vax_store_return_value): Remove functions.
5918 (vax_return_value): New function.
5919 (vax_gdbarch_init): Set return value. Don't set
5920 deprecated_store_struct_return, deprecated_extract_struct_return
5921 and deprecated_store_return_value.
5922
5923 2004-04-14 Andreas Schwab <schwab@suse.de>
5924
5925 * ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
5926 value buffer.
5927 * libunwind-frame.c (libunwind_frame_prev_register): Likewise.
5928
5929 2004-04-14 Mark Kettenis <kettenis@gnu.org>
5930
5931 * vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
5932 (vax_unwind_dummy_id): New functions.
5933 (vax_push_dummy_frame, vax_pop_frame): Remove functions.
5934 (vax_call_dummy_words, sizeof_vax_call_dummy_words): Remove
5935 variables.
5936 (vax_fix_call_dummy): Remove function.
5937 (vax_gdbarch_init): Set push_dummy_call and unwind_dummy_id.
5938 Don't set deprecated_push_dummy_frame, deprecated_pop_frame,
5939 call_dummy_location, deprecated_call_dummy_words,
5940 deprecated_sizeof_call_dummy_words,
5941 deprecated_call_dummy_breakpoint_offset,
5942 deprecated_use_generic_dummy_frames, deprecated_pc_in_call_dummy,
5943 and deprecated_dummy_write_sp.
5944
5945 2004-04-13 David Carlton <carlton@kealia.com>
5946
5947 * MAINTAINERS: Move myself to "paper trail" section.
5948
5949 2004-04-12 Mark Kettenis <kettenis@gnu.org>
5950
5951 * vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
5952 "trad-frame.h".
5953 (vax_frame_init_saved_regs): Remove function.
5954 (vax_sigtramp_saved_pc): Remove function.
5955 (vax_frame_saved_pc): Remove function.
5956 (vax_frame_args_address): Remove function.
5957 (vax_frame_num_args): Rewrite.
5958 (vax_frame_chain): Remove function.
5959 (vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
5960 VAX_FP_REGNUM.
5961 (vax_pop_frame): Likewise.
5962 (vax_saved_pc_after_call): Remove function.
5963 (struct vax_frame_cache): New structure.
5964 (vax_frame_cache): New function.
5965 (vax_frame_this_id): New function.
5966 (vax_frame_prev_register): New function.
5967 (vax_frame_unwind): New variable.
5968 (vax_frame_sniffer): New function.
5969 (vax_frame_base_address): New function.
5970 (vax_frame_args_address): New function.
5971 (vax_frame_base): New variable.
5972 (vax_unwind_pc): New function.
5973 (vax_gdbarch_init): Don't set deprecated_init_frame_pc,
5974 deprecated_fp_regnum, deprecated_saved_pc_after_call,
5975 deprecated_frame_chain, deprecated_frame_saved_pc,
5976 deprecated_frame_args_address and
5977 deprecated_frame_init_saved_regs.
5978 * Makefile.in (vax-tdep.o): Update dependencies.
5979
5980 * vaxbsd-nat.c: New file.
5981
5982 * vax-tdep.h: Update copyright year. Adjust comments.
5983 (VAX_REGISTER_SIZE, VAX_REGISTER_BYTES, VAX_MAX_REGISTER_RAW_SIZE,
5984 VAX_MAX_REGISTER_VIRTUAL_SIZE): Remove macros.
5985 (vax_regnum): New enum. Replacing...
5986 (VAX_AP_REGNUM, VAX_FP_REGNUM, VAX_SP_REGNUM, VAX_PC_REGNUM)
5987 (VAX_PS_REGNUM): ... these removed macros.
5988 * vax-tdep.c (vax_register_name): Remove prototype.
5989 (vax_register_name): Reorganize somewhat. Use ARRAY_SIZE.
5990 (vax_register_byte, vax_register_raw_size,
5991 vax_register_virtual_size, vax_register_virtual_type): Remove
5992 functions.
5993 (vax_register_type): New function.
5994 (vax_breakpoint_from_pc): Reorganize.
5995 (vax_gdbarch_init): Set register_type. Don't set
5996 deprecated_register_size, deprecated_register_bytes,
5997 deprecated_register_byte, deprecated_register_raw_size,
5998 deprecated_max_register_raw_size,
5999 deprecated_register_virtual_size,
6000 deprecated_max_register_virtual_size and
6001 deprecated_register_virtual_type. Add comment on stack direction.
6002
6003 2004-04-11 Mark Kettenis <kettenis@gnu.org>
6004
6005 * amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
6006 AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
6007 AMD64_FS_REGNUM and AMD64_GS_REGNUM.
6008
6009 2004-04-10 Randolph Chung <tausq@debian.org>
6010
6011 * MAINTAINERS (write after approval): Add myself.
6012
6013 2004-04-07 Randolph Chung <tausq@debian.org>
6014
6015 * hppa-tdep.c (hppa_inner_than): Remove.
6016 (is_pa_2): Remove unused static variable.
6017 (hppa_gdbarch_init): Use core_addr_greaterthan instead of own version.
6018
6019 2004-03-10 Paul N. Hilfinger <Hilfinger@gnat.com>
6020
6021 * language.h (language_defn): Add new la_post_parser field.
6022 * parser-defs.h (null_post_parser): New declaration (default for
6023 la_post_parser).
6024
6025 * parse.c (parse_exp_1): Move code to parse_exp_in_context and
6026 insert call to that function.
6027 (parse_exp_in_context): New function, including code formerly in
6028 parse_exp_1. Calls language-dependent post-parser after
6029 prefixification.
6030 (parse_expression_in_context): New exported function.
6031 (null_post_parser): New definition.
6032 * expression.h (parse_expression_in_context): Add declaration.
6033
6034 * p-lang.c (pascal_language_defn): Add trivial post-parser.
6035 * c-lang.c (c_language_defn): Ditto.
6036 (cplus_language_defn): Ditto.
6037 (asm_language_defn): Ditto.
6038 (minimal_language_defn): Ditto.
6039 * f-lang.c (f_language_defn): Ditto.
6040 * jv-lang.c (java_language_defn): Ditto.
6041 * language.c (unknown_language_defn): Ditto.
6042 (auto_language_defn): Ditto.
6043 (local_language_defn): Ditto.
6044 * m2-lang.c (m2_language_defn): Ditto.
6045 * scm-lang.c (scm_language_defn): Ditto.
6046 * obj-lang.c (objc_language_defn): Ditto.
6047
6048 2004-04-10 Mark Kettenis <kettenis@gnu.org>
6049
6050 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Remove function.
6051 (amd64nbsd_mcontext_addr): New function.
6052 (amd64nbsd_init_abi): Initialize TDEP->sigcontext_addr as
6053 amd64nbsd_mcontext_addr. Directly initialize TDEP->sc_reg_offset
6054 with amd64nbsd_r_reg_offset, instead of building it on the fly.
6055
6056 * corelow.c (core_xfer_partial): Fix coding standards violation.
6057 Add support for TARGET_OBJECT_WCOOKIE.
6058
6059 * sparc-linux-tdep.c (sparc32_linux_init_abi): Don't set
6060 deprecated_pc_in_sigtramp.
6061 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Likewise.
6062 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Likewise.
6063 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Likewise.
6064 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Likewise.
6065 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Likewise.
6066 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Likewise.
6067 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
6068
6069 * amd64-linux-tdep.c, amd64nbsd-tdep.c, amd64obsd-tdep.c,
6070 i386-linux-tdep.c, i386-tdep.c, i386nbsd-tdep.c, i386obsd-tdep.c:
6071 Fix typo.
6072
6073 * amd64-tdep.c (amd64_supply_fxsave): Only fiddle with
6074 I387_FISEG_REGNUM and I387_FOSEG_REGNUM in 64-bit mode.
6075 (amd64_collect_fxsave): Likewise.
6076
6077 * i386-sol2-tdep.c: Include "gdb_string.h".
6078 (i386_sol2_sigtramp_p): Recognize signal trampoline based on its
6079 name.
6080 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
6081
6082 2004-04-10 Mark Kettenis <kettenis@gnu.org>
6083
6084 * i386-sol2-tdep.c: Include "solib-svr4.h".
6085 (i386_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6086 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
6087 * config/i386/tm-i386sol2.h: Include :solib.h".
6088 * config/i386/i386sol2.mh (NATDEPFILES): Remove solib.o,
6089 solib-svr4.o and solib-legacy.o.
6090 * config/i386/i386sol2.mt (TDEPFILES): Add solib.o and
6091 solib-svr4.o.
6092
6093 2004-04-09 Mark Kettenis <kettenis@gnu.org>
6094
6095 * amd64-linux-nat.c (fetch_inferior_registers): Correctly check
6096 whether a register is supplied by PTRACE_GETFPREGS.
6097 (store_inferior_registers): Likewise.
6098 * amd64bsd-nat.c (fetch_inferior_registers): Correctly check
6099 whether a register is supplied by PT_GETFPREGS.
6100 (store_inferior_registers): Likewise.
6101
6102 * config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
6103 * config/i386/linux64.mt (TDEPFILES): Likewise.
6104
6105 * i386-linux-nat.c: Update copyrigth year. Tweak comment.
6106
6107 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
6108 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
6109 the program counter is in the range specified by `struct
6110 gdbarch_tdep'.
6111 * amd64-linux-tdep.c: Include "symtab.h".
6112 (amd64_linux_pc_in_sigtramp): Remove function.
6113 (amd64_linux_sigtramp_p): New function.
6114 (amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
6115 deprecated_pc_in_sigtramp.
6116 * amd64nbsd-tdep.c: Include "symtab.h".
6117 (amd64nbsd_sigtramp_p): New function.
6118 (amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
6119 deprecated_pc_in_sigtramp.
6120 * amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
6121 few comments.
6122 (amd64obsd_pc_in_sigtramp): Remove function.
6123 (amd64obsd_sigtramp_p): New function.
6124 (amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
6125 deprecated_pc_in_sigtramp.
6126 * i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
6127 (i386bsd_pc_ins_sigtramp): Remove prototype.
6128 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
6129 * i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
6130 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
6131 the program counter is in the range specified by `struct
6132 gdbarch_tdep'.
6133 (i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
6134 (i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
6135 (i386_go32_pc_in_sigtramp): Remove function.
6136 (i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
6137 Initialize TDEP->sigtramp_p.
6138 (i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
6139 (i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
6140 deprecated_pc_in_sigtramp.
6141 * i386-linux-tdep.c: Adjust comments.
6142 (i386_linux_pc_in_sigtramp): Remove function.
6143 (i386_linux_sigtramp_p): New function.
6144 (i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
6145 deprecated_pc_in_sigtramp.
6146 * i386-nto-tdep.c: Update copyright year.
6147 (i386nto_pc_in_sigtramp): Remove function.
6148 (i386nto_sigtramp_p): New function.
6149 (i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
6150 SP_REGNUM.
6151 (i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
6152 deprecated_pc_in_sigtramp.
6153 * i386-sol2-tdep.c: Update copyright year.
6154 (i386_sol2_pc_in_sigtramp): Remove function.
6155 (i386_sol2_sigtramp_p): New function.
6156 (i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
6157 deprecated_pc_in_sigtramp.
6158 * i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
6159 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
6160 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6161 deprecated_sigtramp_start and deprecated_sigtramp_end.
6162 * i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
6163 (i386nbsd_pc_in_sigtramp): Remove function.
6164 (i386nbsd_sigtramp_p): New function.
6165 (i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6166 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
6167 TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
6168 * i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
6169 (i386obsd_pc_in_sigtramp): Remove function.
6170 (i386obsd_sigtramp_p): New function.
6171 (i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
6172 functions.
6173 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
6174 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
6175 TDEP->sigtramp_p.
6176 * Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
6177 amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
6178 dependencies.
6179
6180 * config/i386/i386aout.mt: Remove file.
6181
6182 * configure.tgt: Remove i[34567]86-*-go32*,
6183 i[34567]86-*-msdosdjgpp*, i[34567]86-*-sco*, i[34567]86-*-sysv*
6184 and i[34567]86-*-isc*. Set gdb_target to i386 for
6185 i[34567]86-*-netware* and i[34567]86-*-*.
6186 * config/i386/i386.mt: New file.
6187 * config/i386/embed.mt: Remove file.
6188 * config/i386/go32.mt: Remove file.
6189 * config/i386/i386nw.mt: Remove file.
6190 * config/i386/i386v.mt: Remove file.
6191 * config/i386/tm-go32.h: Remove file.
6192
6193 * tui/tui-hooks.c: Include "readline/readline.h" after
6194 "gdb_curses.h" instead of before.
6195 * tui/tui-io.c: Likewise.
6196
6197 * tui/tui.c: Fix typo in comment.
6198
6199 * sparc64-tdep.c (sparc_address_from_register): Remove function.
6200
6201 2004-04-08 Andrew Cagney <cagney@redhat.com>
6202
6203 * breakpoint.h (deprecated_exception_catchpoints_are_fragile)
6204 (deprecated_exception_support_initialized): Declare.
6205 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support)
6206 (initialize_hp_cxx_exception_support)
6207 (child_enable_exception_callback): Update.
6208 * breakpoint.c (deprecated_exception_catchpoints_are_fragile)
6209 (deprecated_exception_support_initialized): Rename
6210 deprecated_exception_catchpoints_are_fragile and
6211 deprecated_exception_support_initialized.
6212 (breakpoint_init_inferior, breakpoint_init_inferior): Update.
6213
6214 * symtab.c (deprecated_hp_som_som_object_present): Rename
6215 hp_som_som_object_present.
6216 * symtab.h (deprecated_hp_som_som_object_present): Declare.
6217 * symfile.c (hp_som_som_object_present, RESET_HP_UX_GLOBALS):
6218 Update. Delete extern declaration.
6219 * valops.c (hp_som_som_object_present): Ditto.
6220 * parse.c (deprecated_hp_som_som_object_present)
6221 (parse_nested_classes_for_hpacc): Ditto.
6222 * hpread.c (hp_som_som_object_present, hpread_expand_symtab): Ditto.
6223 * hppa-hpux-tdep.c (hp_som_som_object_present)
6224 (initialize_hp_cxx_exception_support): Ditto.
6225 * eval.c (hp_som_som_object_present, evaluate_subexp_standard): Ditto.
6226 * cp-valprint.c (hp_som_som_object_present)
6227 (cp_print_class_method): Ditto.
6228 * c-typeprint.c (hp_som_som_object_present):
6229 (c_type_print_base): Ditto.
6230 * c-exp.y (hp_som_som_object_present): Ditto.
6231
6232 2004-04-08 Andrew Cagney <cagney@redhat.com>
6233
6234 * frame-unwind.c (struct frame_unwind_table, frame_unwind_init)
6235 (frame_unwind_prepend_unwinder, frame_unwind_append_sniffer)
6236 (frame_unwind_find_by_frame): Re-implement the unwind code so
6237 that it can both prepend and append sniffers. Replace
6238 frame_unwind_register_unwinder with frame_unwind_prepend_unwinder.
6239 * tramp-frame.c (tramp_frame_append): Use
6240 frame_unwind_prepend_unwinder.
6241 * frame-unwind.h (frame_unwind_prepend_unwinder): Replace
6242 frame_unwind_register_unwinder.
6243 * tramp-frame.h (tramp_frame_prepend_unwinder): Rename
6244 tramp_frame_append.
6245 * tramp-frame.c (tramp_frame_prepend_unwinder): Update.
6246 * mips-linux-tdep.c (mips_linux_init_abi, mips_linux_init_abi)
6247 (mips_linux_init_abi): Update.
6248
6249 2004-04-08 Kevin Buettner <kevinb@redhat.com>
6250
6251 * ppc-linux-tdep.c (ELF_NREG, ELF_NFPREG, ELF_NVRREG)
6252 (ELF_FPREGSET_SIZE): Delete constants formerly used in core
6253 file support.
6254
6255 2004-04-07 Kevin Buettner <kevinb@redhat.com>
6256
6257 * ia64-tdep.c (elf.h): Don't include.
6258 (elf/ia64.h) [HAVE_LIBUNWIND_IA64_H]: Include.
6259
6260 2004-04-07 Jason Molenda (jmolenda@apple.com)
6261
6262 * frame.h: Typeo corrections in comments.
6263
6264 2004-04-07 Jim Blandy <jimb@redhat.com>
6265
6266 * i386-tdep.c (i386_stab_reg_to_regnum): Correct numbering for
6267 %esp and %ebp
6268
6269 2004-04-07 Mark Kettenis <kettenis@gnu.org>
6270
6271 * config/sparc/linux.mt (TDEPFILES): Remove solib-legacy.o.
6272 * config/sparc/linux64.mt (TDEPFILES): Likewise.
6273 * config/sparc/sol2.mt (TDEPFILES): Add solib.o and solib-svr4.o.
6274 * config/sparc/sol2.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
6275 and solib-legacy.o.
6276 * config/sparc/sol2-64.mt (TDEPFILES): Add solib.o and
6277 solib-svr4.o.
6278 * config/sparc/tm-sol2.h: Update copyright year. Include
6279 "solib.h".
6280
6281 * sparc-sol2-tdep.c: Update copyright year. Include
6282 "solib-svr4.h".
6283 (sparc32_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6284 * sparc64-sol2-tdep.c: Include "solib-svr4.h".
6285 (sparc64_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
6286 * Makefile.in (sparc-sol2-tdep.o, sparc64-sol2-tdep.o): Update
6287 dependencies.
6288
6289 2004-04-06 Andrew Cagney <cagney@redhat.com>
6290
6291 * infttrace.c: Include "infttrace.h".
6292 * infttrace.h: Include "target.h".
6293 * Makefile.in (infttrace_h): Update.
6294 (infttrace.o): Update.
6295
6296 2004-04-06 Andrew Cagney <cagney@redhat.com>
6297
6298 * hppah-nat.c (hpux_has_forked, hpux_has_vforked)
6299 (hpux_has_execd, hpux_has_syscall_event): Include "infttrace.h",
6300 move extern declarations from here ...
6301 * infttrace.h: ... to here.
6302 * Makefile.in (hppah-nat.o): Update dependencies.
6303
6304 * hppa-tdep.c (hppa_breakpoint_from_pc): Make static.
6305 (hppa_gdbarch_init): Set gdbarch_breakpoint_from_pc
6306 * config/pa/tm-hppa.h (BREAKPOINT_FROM_PC, BREAKPOINT32):
6307 (hppa_breakpoint_from_pc): Delete.
6308
6309 * MAINTAINERS: Mark hppa-elf as buildable with -Werror.
6310
6311 2004-04-05 Andrew Cagney <cagney@redhat.com>
6312
6313 * hppa-tdep.c: Do not include <sys/types.h>, <sys/param.h>,
6314 <signal.h>, <sys/ptrace.h>, #include "a.out.encap.h",
6315 <sys/file.h>.
6316
6317 2004-04-06 Randolph Chung <tausq@debian.org>
6318
6319 Committed by Andrew Cagney (mechanical change).
6320 * hppa-tdep.c: (args_for_find_stub, hp_som_som_object_present,
6321 exception_catchpoints_are_fragile, find_stub_with_shl_get,
6322 cover_find_stub_with_shl_get, initialize_hp_cxx_exception_support,
6323 child_enable_exception_callback, current_ex_event,
6324 null_symtab_and_line, child_get_current_exception_event,
6325 HP_ACC_EH_notify_hook, HP_ACC_EH_set_hook_value,
6326 HP_ACC_EH_notify_callback, HP_ACC_EH_break, HP_ACC_EH_catch_throw,
6327 HP_ACC_EH_catch_catch, __eh_notification, hp_cxx_exception_support,
6328 hp_cxx_exception_support_initialized, eh_notify_hook_addr,
6329 eh_notify_callback_addr, eh_break_addr, eh_catch_catch_addr,
6330 eh_catch_throw_addr, break_callback_sal, setup_d_pid_in_inferior):
6331 Move hpux-specific definitions ...
6332 * hppa-hpux-tdep.c: ... to here.
6333
6334 2004-04-05 Andrew Cagney <cagney@redhat.com>
6335
6336 * hppa-tdep.c (hppa_frame_cache): Pass the frame's func to
6337 skip_prologue_using_sal.
6338
6339 2004-04-05 Andrew Cagney <cagney@redhat.com>
6340
6341 * config/i386/tm-i386.h: Delete file.
6342 * config/i386/tm-vxworks.h: Update copyright, do not include
6343 "tm-i386.h".
6344 * config/i386/tm-nto.h, config/i386/tm-linux.h: Ditto.
6345 * config/i386/tm-i386sol2.h, config/i386/tm-i386lynx.h: Ditto.
6346 * config/i386/tm-go32.h, config/i386/tm-cygwin.h: Ditto.
6347 * config/i386/ncr3000.mt (TM_FILE): Delete.
6348 * config/i386/interix.mt (TM_FILE): Delete.
6349 * config/i386/i386v.mt (TM_FILE): Delete.
6350 * config/i386/i386nw.mt (TM_FILE): Delete.
6351 * config/i386/i386gnu.mt (TM_FILE): Delete.
6352 * config/i386/i386aout.mt (TM_FILE): Delete.
6353 * config/i386/embed.mt (TM_FILE): Delete.
6354
6355 2004-04-05 Kevin Buettner <kevinb@redhat.com>
6356
6357 * frv-tdep.h (fsr0_regnum, acc0_regnum, acc7_regnum, accg0123_regnum)
6358 (accg4567_regnum, msr0_regnum, msr1_regnum, gner0_regnum)
6359 (gner1_regnum, fner0_regnum, fner1_regnum, accg0_regnum)
6360 (accg7_regnum): New constants.
6361 (last_spr_regnum, last_pseudo_regnum): Update.
6362 * frv-tdep.c (new_variant): Initialize names for fsr0, acc0-acc7,
6363 accg0-accg7, msr0, msr1, gner0, gner1, fner0, and fner1.
6364 (frv_pseudo_register_read, frv_pseudo_register_write): Add support
6365 for accg registers.
6366 (frv_register_sim_regno): Update spr_map[].
6367
6368 2004-04-04 Andrew Cagney <cagney@redhat.com>
6369
6370 * config/mips/xm-riscos.h: Delete.
6371 * config/mips/xm-mipsv4.h, config/mips/xm-mips.h: Delete.
6372 * config/mips/tm-mipsv4.h, config/mips/riscos.mh: Delete.
6373 * config/mips/nm-riscos.h, config/mips/nm-news-mips.h: Delete.
6374 * config/mips/nm-mips.h, config/mips/news-mips.mh: Delete.
6375 * config/mips/news-mips.mh, config/m68k/tm-m68kv4.h: Delete.
6376 * config/mips/decstation.mh, config/mips/littlemips.mh: Delete.
6377 * config/mips/mipsv4.mt, config/m68k/tm-sun3.h: Delete.
6378 * config/m68k/xm-sun3os4.h, config/m68k/xm-sun3.h: Delete.
6379 * config/m68k/xm-sun2.h, config/m68k/xm-m68kv4.h: Delete.
6380 * config/m68k/xm-dpx2.h, config/m68k/xm-delta68.h: Delete.
6381 * config/m68k/xm-3b1.h, config/m68k/tm-sun3os4.h: Delete.
6382 * config/m68k/tm-m68klynx.h, config/m68k/tm-dpx2.h: Delete.
6383 * config/m68k/tm-delta68.h, config/m68k/tm-3b1.h: Delete.
6384 * config/m68k/sun3os4.mt, config/m68k/nm-sysv4.h: Delete.
6385 * config/m68k/nm-sun3.h, config/m68k/sun3os4.mh: Delete.
6386 * config/m68k/sun2os3.mh, config/m68k/nm-sun2.h: Delete.
6387 * config/m68k/nm-m68klynx.h, config/m68k/sun3os3.mt: Delete.
6388 * config/m68k/nm-dpx2.h, config/m68k/sun2os3.mt: Delete.
6389 * config/m68k/dpx2.mh, config/m68k/sun3os3.mh: Delete.
6390 * config/m68k/sun2os4.mh, config/m68k/nm-delta68.h: Delete.
6391 * config/m68k/m68kv4.mt, config/m68k/m68klynx.mt: Delete.
6392 * config/m68k/3b1.mt, config/m68k/m68klynx.mh: Delete.
6393 * config/m68k/m68kv4.mh, config/m68k/sun2os4.mt: Delete.
6394 * config/m68k/tm-sun2os4.h, config/m68k/3b1.mh: Delete.
6395 * config/m68k/dpx2.mt, config/m68k/delta68.mt: Delete.
6396 * config/m68k/tm-sun2.h, config/m68k/delta68.mh: Delete.
6397
6398 * configure.tgt: Remove m68000-*-sunos3*, m68000-*-sunos4*,
6399 m68*-bull-sysv*, m68*-att-*, m68*-motorola-*, m68*-*-lynxos*,
6400 m68*-*-sunos3*, m68*-*-sunos4*, m68*-*-sysv4*, mips*-*-sysv4*.
6401 * configure.host: Remove m680[01]0-sun-sunos3*,
6402 m680[01]0-sun-sunos4*, m68*-att-*, m68*-bull*-sysv*,
6403 m68*-*-lynxos*, m68*-*-sysv4*, m68*-motorola-*, m68*-sun-sunos3*,
6404 m68*-sun-sunos4*, m68*-sun-*, mips-dec-*, mips-little-*,
6405 mips-sony-*, mips-*-mach3*, mips-*-sysv4*, mips-*-sysv*,
6406 mips-*-riscos*.
6407 * NEWS: Mention removed systems.
6408
6409 2004-04-04 Andrew Cagney <cagney@redhat.com>
6410
6411 GDB 6.1 release created from 6.1 branch.
6412
6413 2004-04-04 Andrew Cagney <cagney@redhat.com>
6414
6415 * gnu-nat.c (gnu_wait): Use memcpy instead of bcopy.
6416 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
6417 * remote-vx68.c (vx_read_register, vx_write_register): Ditto.
6418
6419 * config/vax/xm-vax.h (FAULT_CODE_ORIGIN, INIT_STACK): Delete.
6420 * config/alpha/xm-alphaosf.h (NO_SIGINTERRUPT): Delete.
6421 * config/alpha/xm-alphalinux.h (NO_SIGINTERRUPT): Delete.
6422
6423 2004-04-03 Jim Blandy <jimb@redhat.com>
6424
6425 * MAINTAINERS: Chris Faylor has changed employers; add him to
6426 "paper trail" section, and update his E-mail address.
6427
6428 2004-04-03 Andrew Cagney <cagney@redhat.com>
6429
6430 * frame-unwind.c (frame_unwind_find_by_frame): Delete check for
6431 generic dummy frames.
6432 * dummy-frame.c: Update copyright.
6433 (dummy_frame_sniffer): Delete check for generic dummy frames.
6434
6435 * config/pa/tm-hppa.h (REG_PARM_STACK_SPACE): Delete.
6436 * config/pa/tm-hppa64.h (PA20W_CALLING_CONVENTIONS)
6437 (REG_PARM_STACK_SPACE): Delete.
6438 * hppa-tdep.c (hppa64_push_dummy_call, hppa32_push_dummy_call):
6439 Inline reference to REG_PARM_STACK_SPACE.
6440
6441 * config/pa/tm-hppah.h (FRAME_SAVED_PC_IN_SIGTRAMP)
6442 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
6443 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
6444 (FRAME_BASE_BEFORE_SIGTRAMP)
6445 (hppa32_hpux_frame_base_before_sigtramp)
6446 (hppa32_hpux_frame_saved_pc_in_sigtramp): Delete.
6447 * config/pa/tm-hppa64.h (hppa64_hpux_frame_saved_pc_in_sigtramp)
6448 (hppa64_hpux_frame_find_saved_regs_in_sigtramp)
6449 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
6450 (FRAME_BASE_BEFORE_SIGTRAMP)
6451 (hppa64_hpux_frame_base_before_sigtramp)
6452 (FRAME_SAVED_PC_IN_SIGTRAMP): Delete.
6453
6454 2004-04-03 Andrew Cagney <cagney@redhat.com>
6455
6456 * PROBLEMS: Mention that GDB doesn't build on HP/UX 11.00.
6457
6458 2004-04-02 Andrew Cagney <cagney@redhat.com>
6459
6460 * sh64-tdep.c (sh64_init_extra_frame_info): Replace
6461 DEPRECATED_CALL_DUMMY_LENGTH with 0, simplify.
6462 * dummy-frame.h: Delete out-of-date comments.
6463 * gdbarch.sh (DEPRECATED_CALL_DUMMY_LENGTH): Delete.
6464 * gdbarch.h, gdbarch.c: Re-generate.
6465
6466 2004-04-02 Joel Brobecker <brobecker@gnat.com>
6467
6468 Committed by Andrew Cagney <cagney@redhat.com>.
6469 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Do not take
6470 into account an instruction saving a register if we have already
6471 seen an earlier instruction saving that same register.
6472
6473 2004-04-02 Andrew Cagney <cagney@redhat.com>
6474
6475 * gdbarch.sh (DEPRECATED_INIT_FRAME_PC_FIRST): Delete.
6476 * gdbarch.h, gdbarch.c: Re-generate.
6477 * frame.c (legacy_get_prev_frame): Delete references to
6478 DEPRECATED_INIT_FRAME_PC_FIRST.
6479
6480 * infrun.c (pc_in_sigtramp): Delete function.
6481 (check_sigtramp2): Inline call to pc_in_sigtramp, use
6482 get_frame_type.
6483
6484 2004-04-02 Andrew Cagney <cagney@redhat.com>
6485
6486 * infrun.c (handle_step_into_function): Delete code conditional on
6487 legacy_frame_p.
6488 (handle_inferior_event, step_over_function): Ditto.
6489
6490 2004-04-02 Andrew Cagney <cagney@redhat.com>
6491
6492 * frame.c (get_prev_frame_1): Exclude signal trampolines from the
6493 "previous frame inner to this frame" test.
6494
6495 2004-04-02 Andrew Cagney <cagney@redhat.com>
6496
6497 * frame.c (safe_frame_unwind_memory): New function.
6498 * frame.h (safe_frame_unwind_memory): Declare. Update description
6499 of /safe_/ methods.
6500 * tramp-frame.c (tramp_frame_start): Re-order parmeters, add
6501 "next_frame". Use safe_frame_unwind_memory.
6502 (tramp_frame_sniffer): Update call to tramp_frame_start.
6503
6504 2004-04-01 Daniel Jacobowitz <drow@mvista.com>
6505
6506 * dwarf2read.c (dwarf2_objfile_data_key): New.
6507 (struct dwarf2_per_objfile, dwarf2_per_objfile): New.
6508 (dwarf_info_size, dwarf_abbrev_size, dwarf_line_size)
6509 (dwarf_pubnames_size, dwarf_aranges_size, dwarf_loc_size)
6510 (dwarf_macinfo_size, dwarf_str_size, dwarf_ranges_size)
6511 (dwarf_frame_size, dwarf_eh_frame_size, dwarf_info_buffer)
6512 (dwarf_abbrev_buffer, dwarf_line_buffer, dwarf_str_buffer)
6513 (dwarf_macinfo_buffer, dwarf_ranges_buffer, dwarf_loc_buffer):
6514 Remove variables.
6515 (struct dwarf2_pinfo): Remove per-objfile members. Update comments.
6516 (DWARF_ABBREV_SIZE, DWARF_LINE_SIZE)
6517 (DWARF_LOC_SIZE, DWARF_MACINFO_SIZE, DWARF_STR_SIZE)
6518 (DWARF_RANGES_SIZE, DWARF_INFO_BUFFER)
6519 (DWARF_ABBREV_BUFFER, DWARF_LINE_BUFFER, DWARF_STR_BUFFER)
6520 (DWARF_MACINFO_BUFFER, DWARF_RANGES_BUFFER, DWARF_LOC_BUFFER):
6521 Remove macros.
6522 (dwarf2_has_info): Take an objfile argument. Allocate per-objfile
6523 data.
6524 (dwarf2_locate_sections, dwarf2_build_psymtabs)
6525 (dwarf2_build_psymtabs_easy, dwarf2_build_psymtabs_hard)
6526 (skip_one_die, dwarf2_get_pc_bounds, dwarf2_read_abbrevs)
6527 (read_partial_die, read_full_die, read_indirect_string)
6528 (dwarf_decode_line_header, dwarf_decode_macros)
6529 (dwarf2_symbol_mark_computed): Remove use of removed macros.
6530 Update uses of removed variables.
6531 (psymtab_to_symtab_1): Restore per-objfile data pointer. Remove use
6532 of removed macros.
6533 (_initialize_dwarf2_read): New function.
6534 * symfile.h (dwarf2_has_info): Update prototype.
6535 * coffread.c (coff_symfile_read): Update call to dwarf2_has_info.
6536 * elfread.c (elf_symfile_read): Likewise.
6537
6538 2004-04-01 Jim Blandy <jimb@redhat.com>
6539
6540 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): New, unified
6541 function for register numbers on all the rs6000-derived targets.
6542 (rs6000_gdbarch_init): Don't register a separate
6543 gdbarch_dwarf2_reg_to_regnum function for the E500. Use
6544 rs6000_dwarf2_stab_reg_to_regnum for both Dwarf 2 and stabs on all
6545 variants.
6546
6547 * i386-tdep.c: Add FIXME regarding STABS vs. Dwarf 2 register
6548 numbering.
6549
6550 2004-04-01 Paul N. Hilfinger <Hilfinger@gnat.com>
6551
6552 * valarith.c: Update copyright notice.
6553 (value_add): Handle range types.
6554 (value_sub): Ditto.
6555 (value_equal): Ditto.
6556 (value_less): Ditto.
6557 (value_neg): Ditto.
6558 (value_complement): Ditto.
6559 (value_binop): Simplify slightly by using is_integral_type and
6560 eliminiating unnecessary COERCE_ENUMs.
6561
6562 2004-03-31 Andrew Cagney <cagney@redhat.com>
6563
6564 * frame.h (frame_unwind_id): Declare.
6565 * frame.c (frame_unwind_id): New function.
6566 (get_prev_frame_1): New function.
6567 (frame_debug_got_null_frame): New function.
6568 (get_prev_frame): Use frame_debug_got_null_frame. Move unwind
6569 code proper to prev_frame, update description.
6570 * infrun.c (step_over_function): Use frame_unwind_id.
6571
6572 2004-04-31 J. Brobecker <brobecker@gnat.com>
6573
6574 * hppa-tdep.c (hppa32_push_dummy_call): Set the Stack Pointer.
6575 (hppa64_push_dummy_call): Likewise.
6576
6577 2004-03-30 Jim Blandy <jimb@redhat.com>
6578
6579 From Ulrich Weigand:
6580 * utils.c (query): Do not use a va_list variable multiple times.
6581
6582 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
6583
6584 * Makefile.in (linux_nat_h): Update dependencies.
6585 * configure.in: Check for <gnu/libc-version.h>.
6586 * configure: Regenerate.
6587 * config.in: Regenerate.
6588 * linux-nat.h: Include "target.h". Add waitstatus field to
6589 struct lwp_info.
6590 * lin-lwp.c (add_lwp): Initialize waitstatus.kind.
6591 (lin_lwp_attach_lwp): Don't attach to LWPs we have already attached
6592 to.
6593 (lin_lwp_handle_extended): New function. Handle clone events.
6594 (wait_lwp): Use lin_lwp_handle_extended. Update comment about
6595 thread exit events.
6596 (child_wait): Handle clone events.
6597 (lin_lwp_wait: Use lin_lwp_handle_extended and handle clone events.
6598 * linux-nat.c (linux_enable_event_reporting): Turn on
6599 PTRACE_O_TRACECLONE.
6600 (linux_handle_extended_wait): Handle clone events.
6601 * thread-db.c: Include <gnu/libc-version.h>.
6602 (struct private_thread_info): Add dying flag.
6603 (enable_thread_event_reporting): Enable TD_DEATH for glibc 2.2 and
6604 higher.
6605 (attach_thread): Update comments. Handle dying threads.
6606 (detach_thread): Set the dying flag.
6607 (check_event): Always call attach_thread.
6608
6609 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
6610
6611 * mips-tdep.c (mips_pdr_data): New.
6612 (non_heuristic_proc_desc): Use objfile_data and set_objfile_data.
6613 (_initialize_mips_tdep): Initialize mips_pdr_data.
6614
6615 2004-03-29 Corinna Vinschen <vinschen@redhat.com>
6616
6617 * minsyms.c (install_minimal_symbols): Move dropping leading
6618 char from linkage name from here...
6619 (prim_record_minimal_symbol_and_info): ...to here. Simplify
6620 test for "__gnu_compiled*" symbols.
6621
6622 2004-03-28 Jim Blandy <jimb@redhat.com>
6623
6624 * rs6000-tdep.c (skip_prologue): Recognize moves from argument
6625 registers to temp register r0 and byte stores as prologue
6626 instructions.
6627
6628 2004-03-28 Andrew Cagney <cagney@redhat.com>
6629
6630 * PROBLEMS (Stack backtraces): Rewrite. Remove reference to
6631 arm*-*-*.
6632
6633 2004-03-28 Stephane Carrez <stcarrez@nerim.fr>
6634
6635 * tui/tui-regs.c (tui_show_registers): Make sure the TUI is active
6636 and switch the layout to force a display of register window.
6637
6638 2004-02-26 J. Brobecker <brobecker@gnat.com>
6639
6640 * amd64-tdep.c (amd64_classify): make RANGE_TYPE objects be part
6641 of the INTEGER class.
6642
6643 2004-03-26 Jim Blandy <jimb@redhat.com>
6644
6645 * ppc-linux-tdep.c (ppc_linux_init_abi): Long doubles are eight
6646 bytes long on PPC GNU/Linux.
6647
6648 2004-03-26 David Carlton <carlton@kealia.com>
6649
6650 * PROBLEMS: Refer to gdb/1588 instead of gdb/826.
6651
6652 2004-03-25 Andrew Cagney <cagney@redhat.com>
6653
6654 * PROBLEMS: Add general section titles, remove references to
6655 specific releases.
6656
6657 2004-03-25 Daniel Jacobowitz <drow@mvista.com>
6658
6659 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE): Define to
6660 INT_REGISTER_SIZE.
6661 (arm_linux_push_arguments): Use TARGET_DOUBLE_BIT instead of
6662 FP_REGISTER_VIRTUAL_SIZE.
6663 * arm-tdep.c (arm_make_sigtramp_cache): Use register_size instead
6664 of DEPRECATED_REGISTER_RAW_SIZE.
6665 (arm_register_type): Add gdbarch argument.
6666 (arm_register_raw_size, arm_register_virtual_size): Delete.
6667 (arm_register_byte, arm_extract_return_value)
6668 (arm_store_return_value, arm_get_longjmp_target): Update references
6669 to INT_REGISTER_RAW_SIZE and FP_REGISTER_RAW_SIZE.
6670 (arm_gdbarch_init): Likewise. Don't set
6671 deprecated_register_raw_size, deprecated_register_virtual_size,
6672 deprecated_max_register_raw_size,
6673 deprecated_max_register_virtual_size, or
6674 deprecated_max_register_virtual_type. Do set register_type.
6675 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE)
6676 (ARM_MAX_REGISTER_VIRTUAL_SIZE, INT_REGISTER_VIRTUAL_SIZE)
6677 (FP_REGISTER_VIRTUAL_SIZE): Delete.
6678 (INT_REGISTER_RAW_SIZE): Rename to INT_REGISTER_SIZE.
6679 (FP_REGISTER_RAW_SIZE): Rename to FP_REGISTER_SIZE.
6680 * arm-linux-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Define to
6681 INT_REGISTER_SIZE.
6682 * remote-rdp.c (remote_rdp_fetch_register): Use MAX_REGISTER_SIZE.
6683 (remote_rdp_store_register): Likewise.
6684
6685 2004-03-24 Daniel Jacobowitz <drow@mvista.com>
6686
6687 * Makefile.in (mips-linux-tdep.o): Update dependencies.
6688 * mips-tdep.c (mips_gdbarch_init): Move frame predicates
6689 to after osabi initialization.
6690 * mips-linux-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
6691 (mips_linux_o32_sigframe_init, mips_linux_n32n64_sigframe_init): New
6692 functions.
6693 (mips_linux_o32_sigframe, mips_linux_o32_rt_sigframe)
6694 (mips_linux_n32_rt_sigframe, mips_linux_n64_rt_sigframe): New
6695 variables.
6696 (mips_linux_init_abi): Append signal trampoline unwinders.
6697
6698 2004-03-24 Andrew Cagney <cagney@redhat.com>
6699
6700 * tramp-frame.h (TRAMP_SENTINEL_INSN): Define, document.
6701 * tramp-frame.c: Include "gdb_assert.h".
6702 (tramp_frame_start): Use TRAMP_SENTINEL_INSN. Use ULONGEST and
6703 correct sizeof.
6704 (tramp_frame_append): Validate the tramp frame's instructions.
6705 * Makefile.in (tramp-frame.o): Update dependencies.
6706
6707 2004-03-23 Andrew Cagney <cagney@redhat.com>
6708
6709 * trad-frame.h (trad_frame_set_reg_addr): Declare.
6710
6711 2004-03-23 Andrew Cagney <cagney@redhat.com>
6712
6713 * MAINTAINERS (Past Maintainers): Add Mark Salter and Fernando
6714 Nasser as past testsuite/lib/ (and other) maintainers.
6715
6716 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
6717
6718 * infcmd.c (attach_command): Reread symbols if we already have
6719 an exec file.
6720
6721 2004-03-23 Andrew Cagney <cagney@redhat.com>
6722
6723 * rs6000-tdep.c (frame_get_saved_regs): Delete unused function.
6724
6725 2004-03-23 Andrew Cagney <cagney@redhat.com>
6726
6727 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): Deprecate.
6728 * gdbarch.h, gdbarch.c: Re-generate.
6729 * i386obsd-tdep.c (i386obsd_init_abi): Update.
6730 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
6731 * i386bsd-tdep.c (i386bsd_init_abi): Update.
6732 * config/vax/tm-vaxbsd.h (DEPRECATED_SIGTRAMP_END)
6733 (DEPRECATED_SIGTRAMP_START): Update.
6734 * config/m68k/tm-nbsd.h (DEPRECATED_SIGTRAMP_END)
6735 (DEPRECATED_SIGTRAMP_START): Update.
6736 * blockframe.c (find_pc_sect_partial_function): Update.
6737 * arch-utils.c (legacy_pc_in_sigtramp): Update.
6738
6739 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
6740
6741 * remote.c (remote_open_1): Reopen the exec file and reread symbols
6742 if necessary.
6743
6744 2004-03-23 Andrew Cagney <cagney@redhat.com>
6745
6746 * gdbarch.sh (PC_IN_SIGTRAMP): Change to a function with
6747 predicate, deprecate.
6748 * gdbarch.h, gdbarch.c: Re-generate.
6749 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
6750 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
6751 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Update.
6752 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
6753 * alphanbsd-tdep.c (alphanbsd_init_abi): Update.
6754 * amd64-linux-tdep.c (amd64_linux_init_abi): Update.
6755 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Update.
6756 * amd64nbsd-tdep.c (amd64nbsd_init_abi): Update.
6757 * amd64obsd-tdep.c (amd64obsd_init_abi): Update.
6758 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Update.
6759 * blockframe.c (find_pc_partial_function): Update.
6760 * breakpoint.c (bpstat_what): Update.
6761 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update.
6762 * frv-linux-tdep.c (frv_linux_init_abi): Update.
6763 * frv-tdep.c (frv_sigtramp_frame_sniffer): Update.
6764 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Update.
6765 * i386-interix-tdep.c (i386_interix_init_abi): Update.
6766 * i386-linux-tdep.c (i386_linux_init_abi): Update.
6767 * i386-nto-tdep.c (i386nto_init_abi): Update.
6768 * i386-sol2-tdep.c (i386_sol2_init_abi): Update.
6769 * i386-tdep.c (i386_sigtramp_frame_sniffer)
6770 (i386_svr4_init_abi, i386_go32_init_abi, i386_gdbarch_init): Update.
6771 * i386bsd-tdep.c (i386bsd_init_abi): Update.
6772 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
6773 * i386obsd-tdep.c (i386obsd_init_abi): Update.
6774 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Update.
6775 * infrun.c (pc_in_sigtramp): Update.
6776 * m68k-tdep.c (m68k_sigtramp_frame_sniffer): Update.
6777 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
6778 * mips-tdep.c (mips_gdbarch_init): Update.
6779 * mipsnbsd-tdep.c (mipsnbsd_init_abi): Update.
6780 * ppc-linux-tdep.c: Update comment.
6781 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Update.
6782 * shnbsd-tdep.c (shnbsd_init_abi): Update.
6783 * sparc-linux-tdep.c (sparc32_linux_init_abi): Update.
6784 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Update.
6785 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Update.
6786 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Update.
6787 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Update.
6788 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Update.
6789 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Update.
6790 * sparcobsd-tdep.c (sparc32obsd_init_abi): Update.
6791
6792 2004-03-23 Andrew Cagney <cagney@redhat.com>
6793
6794 * tramp-frame.h, tramp-frame.h: New files.
6795 * Makefile.in (SFILES, tramp_frame_h, COMMON_OBS, tramp-frame.o):
6796 Update rules to include "tramp-frame.h" and "tramp-frame.c".
6797
6798 * Makefile.in: Update all dependencies.
6799
6800 2004-03-23 Andrew Cagney <cagney@redhat.com>
6801
6802 * Makefile.in (trad_frame_h): Add $(frame_h).
6803 * trad-frame.h: Update copyright. Include "frame.h".
6804 (struct trad_frame_cache, trad_frame_cache_zalloc): Declare.
6805 (trad_frame_set_id, trad_frame_get_id): Declare.
6806 (trad_frame_set_reg_addr, trad_frame_get_register): Declare.
6807 * trad-frame.c: Update copyright.
6808 (struct trad_frame_cache): Define.
6809 (trad_frame_cache_zalloc): New function.
6810 (trad_frame_set_id, trad_frame_get_id): New functions.
6811 (trad_frame_set_reg_addr, trad_frame_get_register): New functions.
6812
6813 2004-03-22 Andrew Cagney <cagney@redhat.com>
6814
6815 * s390-tdep.c (struct s390_stub_unwind_cache): Rename
6816 s390_pltstub_unwind_cache.
6817 (s390_stub_frame_unwind_cache): Rename
6818 s390_pltstub_frame_unwind_cache.
6819 (s390_stub_frame_this_id): Rename s390_pltstub_frame_this_id.
6820 (s390_stub_frame_prev_register): Rename
6821 s390_pltstub_frame_prev_register.
6822 (s390_stub_frame_unwind): Rename s390_pltstub_frame_unwind.
6823 (s390_stub_frame_sniffer): Rename s390_stub_frame_sniffer.
6824
6825 From Ulrich Weigand:
6826 * s390-tdep.c (s390_pltstub_frame_sniffer): Handle invalid function
6827 pointer calls like PLT calls.
6828
6829 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
6830
6831 * mips-tdep.c (non_heuristic_proc_desc): Search using the specified
6832 PC rather than the partial function start address. Use the start
6833 address to sanity check the found PDR.
6834
6835 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
6836
6837 * lin-lwp.c (lin_lwp_wait): Pass the LWP ID to
6838 linux_handle_extended_wait.
6839
6840 2004-03-22 Andrew Cagney <cagney@redhat.com>
6841
6842 * rs6000-tdep.c (frame_initial_stack_address): Delete unused
6843 function.
6844
6845 * frame.h (generic_pop_current_frame): Delete declaration.
6846 (deprecate_pop_dummy_frame): Deprecate
6847 generic_pop_dummy_frame.
6848 * dummy-frame.c (deprecated_pop_dummy_frame): Update.
6849 (generic_pop_current_frame): Delete function.
6850 * mn10300-tdep.c (mn10300_pop_frame): Eliminate call to
6851 generic_pop_current_frame.
6852 * v850-tdep.c (v850_pop_frame): Update.
6853 * mcore-tdep.c (mcore_pop_frame): Update.
6854 * sh64-tdep.c (sh64_pop_frame): Update.
6855 * h8300-tdep.c (h8300_pop_frame): Update.
6856
6857 2004-03-22 Andrew Cagney <cagney@redhat.com>
6858
6859 * frame.h (deprecated_pc_in_call_dummy): Rename
6860 generic_pc_in_call_dummy.
6861 * dummy-frame.h (pc_in_dummy_frame): Delete declaration.
6862 * dummy-frame.c (deprecated_pc_in_call_dummy): Rename
6863 generic_pc_in_call_dummy.
6864 (pc_in_dummy_frame): Make static.
6865 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Update.
6866 * gdbarch.h, gdbarch.c: Re-generate.
6867 * dummy-frame.c (dummy_frame_sniffer): Simplify.
6868 * frame.c (frame_type_from_pc): Call deprecated_pc_in_call_dummy.
6869 (legacy_get_prev_frame): Ditto.
6870 * inferior.h: Delete reference to generic_pc_in_call_dummy in
6871 comment.
6872
6873 2004-03-21 Andrew Cagney <cagney@redhat.com>
6874
6875 * inferior.h (deprecated_pc_in_call_dummy_at_entry_point): Delete
6876 declaration and out-of-date comment.
6877 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
6878 Delete function.
6879 * mn10300-tdep.c (mn10300_gdbarch_init): Do not set
6880 deprecated_pc_in_call_dummy.
6881
6882 * infrun.c (handle_inferior_event): For non legacy frames, use the
6883 frame ID and frame type to identify a signal trampoline. Update
6884 comments.
6885
6886 2004-03-21 Nathan J. Williams <nathanw@wasabisystems.com>
6887
6888 * mipsnbsd-tdep.c: Update copyright. Include "mips-tdep.h".
6889 * Makefile.in (mipsnbsd-tdep.o): Update dependencies.
6890
6891 2004-03-21 Andrew Cagney <cagney@redhat.com>
6892
6893 * frame-unwind.h: Update copyright.
6894 (struct frame_data): Add opaque declaration.
6895 (frame_sniffer_ftype): Declare.
6896 (struct frame_unwind): Add "unwind_data" and "sniffer".
6897 (frame_unwind_register_unwinder): Declare.
6898 (frame_unwind_find_by_frame): Add parameter "this_cache".
6899 * frame.c (get_frame_id, create_new_frame, legacy_get_prev_frame)
6900 (legacy_get_prev_frame, legacy_get_prev_frame)
6901 (get_frame_type): Pass the prologue_cache to
6902 frame_unwind_find_by_frame.
6903 * frame-unwind.c (struct frame_unwind_table_entry): Add field
6904 "unwinder".
6905 (frame_unwind_register_unwinder): New function.
6906 (frame_unwind_find_by_frame): Handle an unwind sniffer.
6907
6908 2004-03-20 Paul Hilfinger <hilfingr@nile.gnat.com>
6909
6910 * bcache.c (print_percentage): Use floating point to avoid
6911 incorrect results when portion*100 overflows.
6912
6913 2004-03-19 Kevin Buettner <kevinb@redhat.com>
6914
6915 * ppc_tdep.h (ppc_linux_frame_saved_pc)
6916 (ppc_linux_init_extra_frame_info)
6917 (ppc_linux_frameless_function_invocation)
6918 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain)
6919 (rs6000_frame_saved_pc, rs6000_init_extra_frame_info)
6920 (rs6000_frameless_function_invocation, rs6000_frame_init_saved_regs)
6921 (rs6000_frame_chain): Delete declarations.
6922 * ppc-linux-tdep.c (ppc_linux_frame_saved_pc)
6923 (ppc_linux_init_extra_frame_info)
6924 (ppc_linux_frameless_function_invocation)
6925 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain): Delete.
6926 (ppc_linux_init_abi): Remove registration of above deleted functions.
6927 * rs6000-tdep.c (rs6000_init_extra_frame_info)
6928 (rs6000_frame_init_saved_regs, rs6000_init_frame_pc_first)
6929 (rs6000_frame_args_address, rs6000_saved_pc_after_call)
6930 (rs6000_pop_frame, rs6000_frameless_function_invocation)
6931 (rs6000_frame_saved_pc, rs6000_frame_chain): Delete.
6932 (rs6000_gdbarch_init): Remove registration of above deleted functions.
6933 Use rs6000_unwind_pc(), rs6000_frame_sniffer(),
6934 rs6000_unwind_dummy_id(), and rs6000_frame_base_sniffer() for
6935 frame management for all OSABIs.
6936
6937 2004-03-19 Andrew Cagney <cagney@redhat.com>
6938
6939 Committed by Kevin Buettner <kevinb@redhat.com>.
6940
6941 * ppc-linux-tdep.c: Include "trad-frame.h", and "frame-unwind.h".
6942 Update copyright.
6943 (struct ppc_linux_sigtramp_cache, ppc_linux_sigtramp_cache)
6944 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
6945 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
6946 (ppc_linux_init_abi): Add both 32- and 64-bit signal trampoline
6947 unwinders. #ifdef legacy frame code.
6948 * rs6000-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
6949 "frame-base.h".
6950 (rs6000_unwind_pc, rs6000_unwind_dummy_id)
6951 (struct rs6000_frame_cache, rs6000_frame_cache)
6952 (rs6000_frame_this_id, rs6000_frame_prev_register)
6953 (rs6000_frame_sniffer, rs6000_frame_unwind)
6954 (rs6000_frame_base_address, rs6000_frame_base_sniffer)
6955 (rs6000_frame_base): Implement a traditional frame unwinder.
6956 (rs6000_gdbarch_init): When unknown, NetBSD, or GNU/Linux use the
6957 frame unwinder.
6958
6959 2004-03-19 Kevin Buettner <kevinb@redhat.com>
6960
6961 * breakpoint.c (adjust_breakpoint_address): Don't adjust
6962 breakpoint address for watchpoints or the catch eventpoints.
6963 Add new paramter ``bptype''. Adjust all callers.
6964
6965 2004-03-19 Andrew Cagney <cagney@redhat.com>
6966
6967 * config/pa/tm-hppa.h (GDB_TARGET_IS_HPPA): Delete unused macro.
6968
6969 * PROBLEMS: Delete note that ARM does not use frame code, problem
6970 fixed.
6971
6972 2004-03-18 Andrew Cagney <cagney@redhat.com>
6973
6974 * stack.c (return_command): Delete code wrapped in #ifdef
6975 DEPRECATED_CALL_DUMMY_HAS_COMPLETED, macro no longer defined.
6976
6977 * rs6000-tdep.c (skip_prologue): Record only the first LR save.
6978
6979 2004-03-18 Andrew Cagney <cagney@redhat.com>
6980
6981 * config/mips/tm-nbsd.h: Replace IN_SIGTRAMP with
6982 DEPRECATED_IN_SIGTRAMP.
6983 * config/powerpc/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6984 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP) Ditto.
6985 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6986 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6987 * config/ia64/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6988 * config/ia64/tm-aix.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6989 * config/arm/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6990 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Ditto.
6991 * arch-utils.c (legacy_pc_in_sigtramp): Ditto.
6992 * arch-utils.h: Remove reference to IN_SIGTRAMP in comment.
6993
6994 2004-03-18 Andrew Cagney <cagney@redhat.com>
6995
6996 * frame-base.c: Update copyright. Include "gdb_obstack.h".
6997 (struct frame_base_table_entry): Define.
6998 (struct frame_base_table): Re-implement as a linked list.
6999 (frame_base_init): Re-implement.
7000 (frame_base_table): Delete function.
7001 (append_predicate): Delete function.
7002 (frame_base_append_sniffer): Update.
7003 (frame_base_set_default): Update.
7004 (frame_base_find_by_frame): Update.
7005 (_initialize_frame_base): Use gdbarch_data_register_pre_init.
7006 * Makefile.in (frame-base.o): Update dependencies.
7007
7008 2004-03-17 Andrew Cagney <cagney@redhat.com>
7009
7010 * frame.c (legacy_get_prev_frame): Pass correct frame to
7011 frame_unwind_find_by_frame.
7012
7013 2004-03-17 David Carlton <carlton@kealia.com>
7014
7015 * NEWS: Mention C++ nested types and namespaces
7016
7017 2004-03-16 Michael Chastain <mec.gnu@mindspring.com>
7018
7019 * PROBLEMS: Add section headers, "Regressions since gdb 6.0"
7020 and "Regressions since gdb 5.3.". Add known regressions since
7021 gdb 6.0.
7022
7023 2004-03-16 David Carlton <carlton@kealia.com>
7024
7025 * dwarf2read.c (process_structure_scope): Process children even
7026 when we're a declaration.
7027
7028 2004-03-16 Andrew Cagney <cagney@redhat.com>
7029
7030 * symtab.h (find_pc_sect_partial_function): Delete declaration.
7031 * blockframe.c (find_pc_partial_function)
7032 (find_pc_sect_partial_function): Merge into a single
7033 find_pc_partial_function.
7034
7035 2004-03-16 Mark Kettenis <kettenis@gnu.org>
7036
7037 * i386bsd-nat.c: s/regno/regnum/g.
7038 (fetch_inferior_registers): Use I386_ST0_REGNUM instead of
7039 FP0_REGNUM.
7040 (store_inferior_registers): Likewise.
7041
7042 2004-03-16 Mark Kettenis <kettenis@gnu.org>
7043
7044 * i386bsd-nat.c (fill_fpregset): Call i387_collect_fsave instead
7045 of i387_fill_fsave.
7046 (store_inferior_registers): Call i387_collect_fsave and
7047 i387_collect_fxsave instead of i387_fill_fsave and
7048 i387_fill_fxsave.
7049
7050 2004-03-15 Andrew Cagney <cagney@redhat.com>
7051
7052 * Makefile.in (frame-unwind.o): Update dependencies.
7053 * frame-unwind.c: Include "gdb_obstack.h".
7054 (frame_unwind_init): Replace "gdbarch" parameter with an "obstack"
7055 parameter.
7056 (append_predicate): Delete function.
7057 (struct frame_unwind_table_entry): New structure.
7058 (struct frame_unwind_table): Replace "sniffer" with "head" and
7059 "tail".
7060 (frame_unwind_append_sniffer): Update.
7061 (frame_unwind_find_by_frame): Update.
7062 (_initialize_frame_unwind): Registe frame_unwind_init using
7063 gdbarch_data_register_pre_init.
7064
7065 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7066
7067 * i386bsd-nat.c: Update copyright year.
7068 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Undefine and then
7069 define unconditionally.
7070
7071 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7072
7073 * i387-tdep.h (i387_collect_fsave): New prototype.
7074 * i387-tdep.c (i387_collect_fsave): New function containing most
7075 of the code from i387_fill_fsave.
7076 (i387_fill_fsave): Call i387_collect_fsave.
7077
7078 2004-03-15 Mark Kettenis <kettenis@gnu.org>
7079
7080 * i386-linux-tdep.c: Update copyright year.
7081 (i386_linux_svr4_fetch_link_map_offsets): Remove function.
7082 (i386_linux_init_abi): Set solib_svr4_fetch_link_maop_offsets to
7083 svr4_ilp32_link_map_offsets instead of
7084 i386_linux_svr4_fetch_link_map_offsets.
7085
7086 2004-03-15 David Carlton <carlton@kealia.com>
7087
7088 Fix for PR c++/1553:
7089 * dwarf2read.c (read_structure_type): Determine type name by
7090 calling determine_class_name.
7091 (determine_class_name): New.
7092 (determine_prefix): Look at TYPE_TAG_NAME and call
7093 determine_class_name when appropriate.
7094 (determine_prefix_aux, class_name): Delete.
7095 (read_namespace): Set die->type.
7096
7097 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7098
7099 * breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
7100 unused macro definition. The definition in target.h (or perhaps
7101 elsewhere) takes precedence.
7102
7103 2004-03-15 Andrew Cagney <cagney@redhat.com>
7104
7105 * ppc-tdep.h: Update copyright.
7106 (ppc_linux_supply_gregset, ppc_linux_supply_fpregset): Change
7107 function signatures to match "regsets.h".
7108 * ppc-linux-tdep.c: Include "regset.h".
7109 (ELF_GREGSET_SIZE): Delete.
7110 (right_supply_register): New function.
7111 (ppc_linux_supply_fpregset, ppc_linux_supply_gregset): Rewrite
7112 using right_supply_register.
7113 (ppc32_linux_supply_gregset, ppc64_linux_supply_gregset): New
7114 functions.
7115 (ppc64_linux_gregset, ppc32_linux_gregset): Define.
7116 (ppc_linux_init_abi): Register ppc_linux_regset_from_core_section.
7117 (_initialize_ppc_linux_tdep): Do not register
7118 ppc_linux_regset_core_fns.
7119 (ppc_linux_regset_from_core_section): Replace
7120 fetch_core_registers.
7121 (ppc_linux_regset_core_fns): Delete.
7122 * ppc-linux-nat.c: (right_fill_reg): New function.
7123 (supply_gregset): Update call to ppc_linux_supply_gregset.
7124 (fill_gregset): Clear the register set, use right_fill_reg.
7125 (supply_fpregset): Update call to ppc_linux_supply_fpregset.
7126 (fill_fpregset): Use right_fill_reg, correctly compute FP offsets.
7127
7128 * rs6000-tdep.c (rs6000_register_virtual_type): Make registers
7129 unsigned.
7130
7131 2004-03-15 Andrew Cagney <cagney@redhat.com>
7132
7133 * gdbarch.sh (gdbarch_data_pre_init_fytpe)
7134 (gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
7135 (gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
7136 and register_gdbarch_data.
7137 (deprecated_set_gdbarch_data): Rename set_gdbarch_data.
7138 (struct gdbarch_data): Replace "init" by "pre_init" and
7139 "post_init".
7140 * gdbarch.h, gdbarch.c: Re-generate.
7141 * dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
7142 with"obstack", use OBSTACK_ZALLOC.
7143 (dwarf2_frame_ops): Delete.
7144 (dwarf2_frame_set_init_reg): Use gdbarch_data.
7145 (dwarf2_frame_init_reg): Use gdbarch_data.
7146 (_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
7147 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets)
7148 (_initialize_svr4_solib): Update.
7149 * user-regs.c (_initialize_user_regs): Update.
7150 * reggroups.c (_initialize_reggroup): Update.
7151 * regcache.c (_initialize_regcache): Update.
7152 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
7153 * libunwind-frame.c (_initialize_libunwind_frame): Update.
7154 * gnu-v3-abi.c (init_gnuv3_ops): Update.
7155 * frame-unwind.c (_initialize_frame_unwind): Update.
7156 * frame-base.c (_initialize_frame_base): Update.
7157 * user-regs.c (user_reg_add): Update.
7158 * reggroups.c (reggroup_add): Update.
7159 * mips-linux-tdep.c (set_mips_linux_register_addr): Update.
7160 * libunwind-frame.c (libunwind_frame_set_descr): Update.
7161 * frame-unwind.c (frame_unwind_append_sniffer): Update.
7162 * frame-base.c (frame_base_table): Update.
7163 * remote.c (_initialize_remote): Update.
7164 * gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
7165
7166 2004-03-15 Andrew Cagney <cagney@redhat.com>
7167
7168 * cris-tdep.c (bfd_lookup_symbol): Delete unused function.
7169
7170 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7171
7172 * Makefile.in (frv-linux-tdep.o): Add dependencies.
7173 * frv-linux-tdep.c: New file.
7174 * frv-tdep.c (struct gdbarch_tdep): Add new field
7175 ``sigcontext_reg_addr''.
7176 (frv_set_sigcontext_reg_addr, frv_sigtramp,frame_cache)
7177 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
7178 (frv_sigramp_frame_sniffer): New functions.
7179 (frv_sigtramp_frame_unwind): New static global.
7180 (frv_gdbarch_init): Hook in ABI-specific overrides. Hook up frame
7181 sniffers.
7182 * frv-tdep.h (frv_set_sigcontext_reg_addr): New function.
7183 * config/frv/frv.mt (TDEPFILES): Add frv-linux-tdep.o.
7184
7185 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7186
7187 * frv-tdep.c (frv_analyze_prologue): Terminate prologue scan,
7188 but not via a call to error(), when unable to read memory.
7189
7190 2004-03-15 Kevin Buettner <kevinb@redhat.com>
7191
7192 * frv-tdep.c (frv_call_dummy_words): Delete.
7193 (frv_frame_unwind_cache): Delete unused variable, ``prev_sp''.
7194
7195 2004-03-15 Andrew Cagney <cagney@redhat.com>
7196
7197 * infrun.c (handle_step_into_function, step_over_function): Only
7198 update and use STEP_FRAME_ID when the system is using legacy
7199 frames. Update comments.
7200
7201 2004-03-14 Mark Kettenis <kettenis@gnu.org>
7202
7203 * amd64-linux-tdep.h: Remove file.
7204 * amd64-linux-tdep.c: Don't include "inferior.h" and
7205 "amd64-linux-tdep.h". Include "frame.h" and "solib-svr4.h".
7206 (USER_R15, USER_R14, USER_R13, USER_R12, USER_RBP, USER_RBX)
7207 (USER_R11, USER_R10, USER_R9, USER_R8, USER_RAX, USER_RCX)
7208 (USER_RDX, USER_RSI, USER_RDI, USER_RIP, USER_CS, USER_EFLAGS)
7209 (USER_RSP, USER_SS, USER_DS, USER_ES, USER_FS, USER_GS): Remove
7210 macros.
7211 (user_to_gdb_regmap): Remove variable.
7212 (amd64_linux_gregset_reg_offset): New variable.
7213 (amd64_core_fns): Remove variable.
7214 (fetch_core_registers): Remove function.
7215 (amd64_linux_supply_gregset, amd64_linux_fill_gregset): Remove
7216 functions.
7217 (_initialize_amd64_linux_tdep): Don't set add_core_fns.
7218 * amd64-linux-nat.c: Don't include "amd64-linux-tdep.h".
7219 * Makefile.in (amd64_linux_tdep_h): Remove.
7220 (amd64-linux-nat.o): Update dependencies.
7221 (amd64-linux-tdep.o): Update dependencies.
7222
7223 * amd64-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
7224 (fetch_regs, fetch_fpregs, store_regs, store_fpregs): Remove
7225 functions.
7226 (fetch_inferior_registers, store_inferior_registers): Rewrite.
7227
7228 * amd64-tdep.h (amd64_fill_fxsave): Remove prototype.
7229 * amd64-tdep.c (amd64_fill_fxsave): Remove function.
7230
7231 2004-03-14 Daniel Jacobowitz <drow@mvista.com>
7232
7233 * dwarf2read.c (read_structure_type): Rename from
7234 read_structure_scope. Don't create a symbol or call process_die.
7235 Return immediately if die->type is set. Call read_type_die before
7236 dwarf2_add_member_fn.
7237 (process_structure_scope): New function.
7238 (read_enumeration_type, process_enumeration_scope): New functions,
7239 broken out from read_enumeration. Don't create the enumeration
7240 type if it has already been created.
7241 (read_enumeration): Removed.
7242 (process_die): Call read_structure_type, process_structure_scope,
7243 read_enumeration_type, and process_enumeration_scope. Just call
7244 new_symbol for base and subrange types. Add a comment about other
7245 type dies.
7246 (read_type_die): Call read_enumeration_type.
7247 (add_partial_structure, new_symbol): Update comments.
7248
7249 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
7250
7251 * m68hc11-tdep.c (m68hc11_register_name): Get soft reg information.
7252
7253 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
7254
7255 * tui/tui-win.h (tui_get_cmd_list): Declare.
7256 * tui/tui-win.c (tui_command): New function.
7257 (tui_get_cmd_list): New function.
7258 (_initialize_tui_win): Moved initialization of tui command in
7259 tui_get_cmd_list.
7260
7261 * tui/tui-data.c (init_content_element): Setup new data members.
7262 (init_win_info): Likewise.
7263 (free_content_elements): Free it.
7264 * tui/tui-data.h (struct tui_data_element): Store the register
7265 content to print.
7266 (struct tui_data_info): Keep the current register group.
7267
7268 * tui/tui-layout.c (tui_set_layout): Update call to tui_show_registers.
7269
7270 * tui/tui-regs.h (tui_show_registers): Update prototype.
7271 (tui_toggle_float_regs, tui_calculate_regs_column_count): Remove.
7272 (tui_resize_all): No need to calculate anything for register window.
7273 * tui/tui-regs.c (tui_calculate_regs_column_count): Remove.
7274 (tui_set_register_element, tui_set_general_regs_content): Remove.
7275 (tui_set_special_regs_content): Remove.
7276 (tui_set_general_and_special_regs_content): Remove.
7277 (tui_set_float_regs_content): Remove.
7278 (tui_reg_value_has_changed, tui_get_register_raw_value): Remove.
7279 (tui_set_regs_content): Remove.
7280 (tui_toggle_float_regs, _tui_toggle_float_regs_command): Remove.
7281 (tui_v_show_registers_command_support): Remove.
7282 (tui_show_registers): Use a reggroup to specify the registers to show.
7283 (tui_show_register_group): New function.
7284 (tui_display_registers_from): Compute the layout of register window
7285 and refresh with new API; be sure to delete old register windows.
7286 (tui_check_register_values): Update to use tui_get_register and
7287 tui_display_data.
7288 (tui_display_register): Just refresh the register window part.
7289 (tui_register_format): Format registers and save in tui_data_element.
7290 (tui_get_register): New to combine tui_reg_value_has_changed and
7291 tui_get_register_raw_value; fix to use the new gdb API.
7292 (tui_show_float_command): Renamed tui_reg_float_command.
7293 (tui_show_general_command): Renamed tui_reg_general_command.
7294 (tui_show_special_command): Renamed tui_reg_system_command.
7295 (_initialize_tui_regs): Remove unused commands.
7296
7297 2004-03-13 Mark Kettenis <kettenis@gnu.org>
7298
7299 * NEWS (New native configurations): Mention OpenBSD/amd64.
7300
7301 * config/i386/nm-fbsd.h: Include "config/nm-bsd.h".
7302 (PTRACE_ARG3_TYPE, FETCH_INFERIOR_REGISTERS, ATTACH_DETACH):
7303 Remove defines.
7304 * config/i386/nm-fbsd64.h: Likewise.
7305 * config/i386/nm-obsd.h: Likewise.
7306 * config/sparc/nm-fbsd.h: Likewise. Update copyright year.
7307 * config/alpha/nm-fbsd.h: Likewise. Update copyright year.
7308
7309 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7310
7311 * frv-tdep.c (set_variant_scratch_registers): New function.
7312 * frv-tdep.h (scr0_regnum, scr1_regnum, scr2_regnum, scr3_regnum):
7313 New constants.
7314
7315 From Richard Sandiford <rsandifo@redhat.com>:
7316 * frv-tdep.c (frv_gdbarch_init): Add FR450 support.
7317
7318 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7319
7320 * frv-tdep.c, frv-tdep.h (first_gpr_regnum, sp_regnum, fp_regnum)
7321 (struct_return_regnum, last_gpr_regnum, first_fpr_regnum)
7322 (last_fpr_regnum, pc_regnum, first_spr_regnum, psr_regnum, ccr_regnum)
7323 (cccr_regnum, fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum)
7324 (tbr_regnum, brr_regnum, dbar0_regnum, dbar1_regnum, dbar2_regnum)
7325 (dbar3_regnum, lr_regnum, lcr_regnum, iacc0h_regnum, iacc0l_regnum)
7326 (last_spr_regnum, frv_num_regs, first_pseudo_regnum, iacc0_regnum)
7327 (last_pseudo_regnum, frv_num_pseudo_regs): Move constant (enum)
7328 definitions from frv-tdep.c to frv-tdep.h.
7329
7330 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7331
7332 Add shared library support for FR-V FDPIC ABI:
7333 * Makefile.in (solib-frv.o): Add dependencies.
7334 * frv-tdep.c (find_func_descr, frv_convert_from_func_ptr_addr):
7335 New functions.
7336 (frv_push_dummy_call): Add support for FDPIC ABI.
7337 (frv_gdbarch_init): Call set_gdbarch_convert_from_func_ptr_addr()
7338 for FDPIC ABI.
7339 * frv-tdep.h (frv_fdpic_find_global_pointer): Declare.
7340 (frv_fdpic_find_canonical_descriptor): Declare.
7341 * solib-frv.c: New file.
7342 * config/frv/frv.mt (TDEPFILES): Add solib.o and solib-frv.o.
7343 * config/frv/tm-frv.h (solib.h): Include.
7344
7345 2004-03-12 Kevin Buettner <kevinb@redhat.com>
7346
7347 * Makefile.in (elf_frv_h, frv_tdep_h): Define.
7348 (frv-tdep.o): Update dependencies.
7349 * frv-tdep.h: New file.
7350 * frv-tdep.c (elf-bfd.h, elf/frv.h, osabi.h, frv-tdep.h): Include.
7351 (fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum): New
7352 constants.
7353 (struct gdbarch_tdep): Add new member ``frv_abi''.
7354 (frv_abi, frv_fdpic_loadmap_addresses, set_variant_abi_fdpic): New
7355 functions.
7356 (new_variant): Set ``frv_abi'' field.
7357 (gdb_arch_init): Detect FDPIC executables.
7358
7359 2004-03-12 Mark Kettenis <kettenis@gnu.org>
7360
7361 * solib-svr4.h: Change SOLIB_SVR4 wrapper into SOLIB_SVR4_H
7362 wrapper.
7363
7364 2004-03-11 Andrew Cagney <cagney@redhat.com>
7365
7366 * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper.
7367
7368 2004-03-11 Kevin Buettner <kevinb@redhat.com>
7369
7370 * solist.h (master_so_list): New function.
7371 * solib.c (master_so_list): Likewise.
7372 * solib-svr4.c (enable_break): Iterate over so_list entries
7373 obtained from master list instead of entries obtained directly
7374 via svr4_current_sos().
7375
7376 2004-03-10 Ben Elliston <bje@gnu.org>
7377
7378 * MAINTAINERS: Update my mail address.
7379
7380 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com>
7381
7382 * remote-m32r-sdi.c: Support hardware watchpoint.
7383
7384 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7385
7386 * user-regs.c: Update copyright years.
7387 (struct user_regs): Rename to gdb_user_regs.
7388 (append_user_reg, builtin_user_regs, user_regs_init)
7389 (user_reg_add, user_reg_map_name_to_regnum)
7390 (usernum_to_user_reg): Update.
7391
7392 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7393
7394 * dwarf2read.c (skip_leb128, peek_die_abbrev, skip_one_die)
7395 (skip_children): New functions.
7396 (locate_pdi_sibling): Call skip_children.
7397
7398 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7399
7400 * arm-tdep.c (arm_use_struct_convention): Look through typedefs.
7401 * gdbtypes.c (check_typedef): Update comments.
7402
7403 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7404
7405 * dwarf2read.c (struct comp_unit_head): Remove dwarf2_abbrevs array.
7406 (struct dwarf2_cu): Add abbrev_obstack and dwarf2_abbrevs
7407 pointer. Update comment about comp_unit_head.
7408 (struct abbrev_info): Shorten two int flags.
7409 (dwarf_alloc_abbrev): Take a CU argument.
7410 (dwarf2_build_psymtabs_hard): Call dwarf2_free_abbrev_table
7411 each time through the loop. Update cleanup argument.
7412 (psymtab_to_symtab_1): Update cleanup call.
7413 (dwarf2_read_abbrevs, dwarf2_alloc_abbrev): Allocate on the
7414 abbrev_obstack.
7415 (dwarf2_free_abbrev_table): Renamed from dwarf2_empty_abbrev_table.
7416 Just call obstack_free and clear the pointer.
7417
7418 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7419
7420 * infrun.c (handle_inferior_event): Remove short-circuit code for
7421 events in a different thread.
7422
7423 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7424
7425 * target.c (debug_to_xfer_memory): If targetdebug is 1, don't
7426 print the whole transfer.
7427 (initialize_targets): Update description of "set debug target".
7428
7429 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
7430
7431 * arm-tdep.c (thumb_get_next_pc): Handle Thumb BLX.
7432
7433 2004-03-08 Nathan J. Williams <nathanw@wasabisystems.com>
7434
7435 * MAINTAINERS (write after approval): Add myself.
7436
7437 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
7438
7439 * sh-tdep.c (sh_print_registers_info): Use for loop.
7440 Don't skip multiple registers when a float register is encountered.
7441
7442 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
7443
7444 Fix PR tdep/1291.
7445 * sh-tdep.c (sh_analyze_prologue): Align PC relative addressing
7446 to official SH documentation.
7447
7448 2004-03-07 Andrew Cagney <cagney@redhat.com>
7449
7450 * ppc-linux-nat.c (ppc_ptrace_cannot_fetch_store_register): Delete
7451 unused function.
7452
7453 2004-03-07 Daniel Jacobowitz <drow@mvista.com>
7454
7455 * arm-tdep.c (thumb_get_next_pc): Handle BX.
7456 (arm_get_next_pc): Handle BX and BLX.
7457
7458 2004-03-07 Andrew Cagney <cagney@redhat.com>
7459
7460 * hppa-tdep.c: Replace DEPRECATED_FP_REGNUM with HPPA_FP_REGNUM,
7461 FP0_REGNUM with HPPA_FP0_REGNUM, and SP_REGNUM with
7462 HPPA_SP_REGNUM.
7463 (hppa_register_raw_size, hppa_register_byte, hppa_read_fp)
7464 (hppa_target_read_fp): Delete.
7465 (hppa_gdbarch_init): Do not set deprecated register_raw_size,
7466 register_virtual_size, max_register_raw_size,
7467 max_register_virtual_size, register_byte, register_size,
7468 target_read_fp, fp_regnum, and register_bytes. Set register_type
7469 instead of register_virtual_type.
7470 (hppa32_register_type, hppa64_register_type): Replace
7471 hppa32_register_virtual_type and hppa64_register_virtual_type.
7472 * config/pa/tm-hppa.h (HPPA_FP0_REGNUM, HPPA_SP_REGNUM)
7473 (HPPA_FP_REGNUM): Define.
7474
7475 * hppa-tdep.c (hppa_gdbarch_init): Add missing "break".
7476
7477 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO)
7478 (pa_do_registers_info): Delete.
7479 * hppa-tdep.c (pa_do_registers_info, pa_do_strcat_registers_info)
7480 (pa_print_registers, pa_print_fp_reg, pa_strcat_registers)
7481 (pa_strcat_fp_reg, pa_register_look_aside): Delete.
7482
7483 * infcall.c (legacy_push_dummy_code): Delete #ifdef
7484 GDB_TARGET_IS_HPPA code.
7485 * config/pa/tm-hppa.h (DEPRECATED_FIX_CALL_DUMMY)
7486 (hppa_fix_call_dummy, DEPRECATED_CALL_DUMMY_HAS_COMPLETED)
7487 (DEPRECATED_DUMMY_WRITE_SP, CALL_DUMMY): Delete.
7488 * config/pa/tm-hppa64.h (CALL_DUMMY): Delete.
7489 * hppa-tdep.c (hppa_frame_chain, hppa_frame_chain_valid)
7490 (hppa_push_dummy_frame, hppa_pop_frame, hppa_push_arguments)
7491 (hppa_fix_call_dummy, hppa64_stack_align, hppa_frame_saved_pc)
7492 (hppa_init_extra_frame_info, hppa_saved_pc_after_call)
7493 (hppa64_call_dummy_breakpoint_offset, hppa_frame_init_saved_regs)
7494 (hppa_frameless_function_invocation, hppa64_store_return_value)
7495 (hppa_store_struct_return, hppa64_extract_return_value)
7496 (hppa64_use_struct_convention, hppa_frame_find_saved_regs)
7497 (hppa32_call_dummy_length, hppa64_call_dummy_length)
7498 (find_dummy_frame_regs, FUNC_LDIL_OFFSET, FUNC_LDO_OFFSET)
7499 (find_proc_framesize, deposit_21, restore_pc_queue)
7500 (find_return_regnum, pc_in_interrupt_handler, deposit_14)
7501 (rp_saved, pc_in_linker_stub): Delete.
7502
7503 Unconditionally enable 64-bit frame and ABI code.
7504 * hppa-tdep.c (hppa_gdbarch_init): Do not set deprecated
7505 call_dummy_breakpoint_offset, call_dummy_length, stack_align,
7506 push_dummy_frame, fix_call_dummy, push_arguments,
7507 call_dummy_location, extract_return_value, use_struct_convention,
7508 store_return_value, store_struct_return, saved_pc_after_call,
7509 init_frame_pc, frame_init_saved_regs, init_extra_frame_info,
7510 frame_chain, frame_chain_valid, frameless_function_invocation,
7511 frame_saved_pc, and pop_frame.
7512
7513 * hppa-tdep.c: Replace PC_REGNUM with PCOQ_HEAD_REGNUM.
7514 (hppa64_return_value, hppa64_push_dummy_call): Rewrite.
7515 (hppa_gdbarch_init): Do not set PC_REGNUM.
7516
7517 2004-03-06 Mark Kettenis <kettenis@gnu.org>
7518
7519 * config/alpha/tm-fbsd.h: Remove file.
7520 * config/alpha/fbsd.mt: Tweak comment.
7521 (TM_FILE): Set to tm-alpha.h.
7522
7523 2004-03-05 Andrew Cagney <cagney@redhat.com>
7524
7525 * infrun.c (step_over_function): When non-legacy code, and no
7526 step_frame_id, use the unwinder to get the caller's frame ID.
7527
7528 2004-03-05 Mark Kettenis <kettenis@gnu.org>
7529
7530 * i386bsd-tdep.c (_initialize_i386bsd_tdep): Register
7531 i386bsd_core_osabi_sniffer for bfd_arch_i386 instead of
7532 bfd_arch_unknown. Adjust comment.
7533
7534 * i386-nat.c: Fix typo in comment. Re-introduce paranoiac.
7535 * i386obsd-tdep.c: Correct spelling in comment.
7536 * i386nbsd-tdep.c: Correct spelling in comment.
7537 * sparc-tdep.c: Correct spelling in comments.
7538
7539 2004-03-05 David Carlton <carlton@kealia.com>
7540
7541 * cp-namespace.c (cp_lookup_transparent_type_loop): Fix recursion
7542 bug.
7543
7544 2004-03-05 Mark Kettenis <kettenis@gnu.org>
7545
7546 * sparc-tdep.c: Fix typo in comment.
7547
7548 2004-03-04 J. Brobecker <brobecker@gnat.com>
7549
7550 * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
7551
7552 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
7553
7554 * dwarf2read.c: Add comment describing memory lifetimes.
7555 (struct dwarf2_pinfo): Update comment.
7556 (dwarf2_add_field, dwarf2_add_member_fn, read_structure_scope)
7557 (read_enumeration, new_symbol): Don't use obsavestring.
7558
7559 2004-03-04 Mark Kettenis <kettenis@gnu.org>
7560
7561 * amd64-linux-nat.c (fill_fpregset): Call amd64_colletc_fxsave
7562 instead of amd64_fill_fxsave.
7563 * amd64bsd-nat.c (store_inferior_registers): Likewise.
7564 * amd64fbsd-nat.c (fill_fpregset): Likewise.
7565
7566 * sparc-tdep.c (sparc_frame_cache): Don't bail out if %fp is zero.
7567 Reorganize code a bit.
7568
7569 2004-03-04 Orjan Friberg <orjanf@axis.com>
7570
7571 * cris-tdep.c (cris_scan_prologue): Save the frame pointer's offset
7572 when the frame pointer is pushed. Don't set the frame pointer's
7573 address on the stack unless it's actually located there.
7574 Set the SRP's address on the stack correctly when the PC is still in
7575 the prologue.
7576 (cris_return_value): New function.
7577 (cris_gdbarch_init): Clear deprecated store_return_value,
7578 extract_return_value.
7579
7580 2004-03-02 Jim Blandy <jimb@redhat.com>
7581
7582 * stabsread.c (reg_value_complaint): The maximum register number
7583 is one less than the number of registers.
7584
7585 2004-03-02 Andrew Cagney <cagney@redhat.com>
7586
7587 * i386-tdep.h (enum i386_regnum): Add I386_DS_REGNUM,
7588 I386_ES_REGNUM, I386_FS_REGNUM, and I386_GS_REGNUM. Remove
7589 trailing comma and redundant assignment of I386_ST0_REGNUM.
7590 * amd64-nat.c (amd64_collect_native_gregset): Zero-extend the
7591 32-bit segment registers.
7592
7593 2004-03-01 Andrew Cagney <cagney@redhat.com>
7594
7595 * rs6000-tdep.c (rs6000_init_frame_pc_first): Fix compiler error,
7596 use frame_relative_level and get_next_frame.
7597
7598 2004-02-29 Andrew Cagney <cagney@redhat.com>
7599
7600 * rs6000-tdep.c (rs6000_init_frame_pc_first): New function.
7601 (rs6000_gdbarch_init): Set deprecated_init_frame_pc_first.
7602 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST):
7603 Delete macro.
7604
7605 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
7606
7607 * inflow.c (terminal_inferior): Don't give up the terminal if we
7608 previously couldn't get the inferior's terminal state.
7609
7610 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
7611
7612 * regcache.c (read_pc_pid): Restore inferior_ptid after reading
7613 PC_REGNUM.
7614
7615 2004-02-28 Andrew Cagney <cagney@redhat.com>
7616
7617 * NEWS: Refer to GDB 6.1.
7618 * README: Refer to GDB 6.1.
7619 * PROBLEMS: Refer to GDB 6.1.
7620
7621 2004-02-28 Daniel Jacobowitz <drow@mvista.com>
7622
7623 * thread-db.c (disable_thread_signals): Remove unused function.
7624
7625 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7626
7627 * amd64-nat.c: Include "gdb_string.h".
7628 (amd64_collect_native_gregset): Zero-extend the 32-bit
7629 general-purpose registers and %eip.
7630
7631 * amd64-tdep.h: (amd64_collect_fxsave): New prototype.
7632 * amd64-tdep.c (amd64_collect_fxsave): New function.
7633 (amd64_fill_fxsave): Simply call amd64_collect_fxsave.
7634
7635 * i387-tdep.h: Update copyright year.
7636 (i387_collect_fxsave): New prototype.
7637 * i387-tdep.c: Update copyright year.
7638 (i387_collect_fxsave): New function containing most of the code
7639 from i387_fill_fxsave.
7640 (i387_fill_fxsave): Call i387_collect_fxsave.
7641
7642 2004-02-28 Andrew Cagney <cagney@redhat.com>
7643
7644 * amd64-linux-nat.c (ps_get_thread_area): When architecture is
7645 i386 use PTRACE_GET_THREAD_AREA. Suggested by Roland McGrath.
7646
7647 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7648
7649 * amd64-tdep.c (amd64_frame_cache): Fix comment.
7650
7651 2004-02-28 Andrew Cagney <cagney@redhat.com>
7652
7653 * utils.c: Use "", instead of <>, to include readline.
7654 tui/tui-win.c, tui/tui.c, tui/tui-hooks.c: Ditto.
7655 * tracepoint.c, top.c, symmisc.c, symfile.c: Ditto.
7656 * source.c, solib.c, exec.c, event-top.c: Ditto.
7657 * corelow.c, completer.c, cli/cli-setshow.c: Ditto.
7658 * cli/cli-dump.c, cli/cli-cmds.c: Ditto.
7659 * Makefile.in: Update all dependencies.
7660 (readline_tilde_h, readline_history_h): Define.
7661 (readline_headers): Delete.
7662
7663 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7664
7665 * config/djgpp/fnchange.lst: Rename "config/i386/nm-linux64.h" to
7666 "config/i386/nm-lx64.h" and "config/i386/tm-linux64.h" to
7667 "config/i386/tm-lx64.h".
7668
7669 * config/djgpp/fnchange.lst: Rename "amd64-linux-tdep.c" to
7670 "amd64-ltdep.c" and "amd64-linux-nat.c" to "amd64-lnat.c". Remove
7671 rules for "x86-64-linux-tdep.c" and "x86-64-linux-nat.c".
7672
7673 2004-02-28 Andrew Cagney <cagney@redhat.com>
7674
7675 * dwarf2-frame.h (struct gdbarch): Add opaque declaration.
7676
7677 * breakpoint.c (_initialize_breakpoint): Use
7678 "add_setshow_auto_boolean_cmd. Better word-wrap help messages.
7679 Add help to show command.
7680
7681 2004-02-28 Mark Kettenis <kettenis@gnu.org>
7682
7683 * i386-nat.c: Reformat to be closer to coding standards.
7684 (i386_handle_nonaligned_watchpoint): Rename local variable `rv' to
7685 `retval'. Make variables `align' and `size' local to while-loop.
7686 (i386_stopped_data_address): Rename local variable `ret' to `addr'.
7687 (_initialize_i386_nat): New prototype.
7688
7689 * tui/tui.c: Include <readline/readline.h> instead of
7690 "readline/readline.h". Include it after <term.h> and
7691 "gdb_curses.h".
7692
7693 2004-02-27 Andrew Cagney <cagney@redhat.com>
7694
7695 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always use
7696 the new frame unwind code.
7697 (hppa_frame_cache): Use PCOQ_HEAD_REGNUM instead of PC_REGNUM.
7698 (hppa_frame_prev_register): Compute PCOQ_TAIL_REGNUM from
7699 PCOQ_HEAD_REGNUM.
7700
7701 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always
7702 "return_value" and "push_dummy_call".
7703 (hppa32_use_struct_convention): Delete unused function.
7704 (hppa32_store_return_value): Delete unused function.
7705 (hppa32_extract_return_value): Delete unused function.
7706 (hppa32_stack_align): Delete function.
7707
7708 2004-02-27 Eli Zaretskii <eliz@elta.co.il>
7709
7710 * coffread.c (enter_linenos): Don't let rawptr reference memory
7711 outside linetab[]'s limits.
7712
7713 2004-02-27 Andrew Cagney <cagney@redhat.com>
7714
7715 * hppa-tdep.c (hppa32_push_dummy_call): Fix code reserving
7716 inferior stack space - the stack needs to grow upwards.
7717 (hppa32_frame_align): New function.
7718 (hppa64_frame_align): Replace hppa_frame_align.
7719 (hppa_gdbarch_init): Update.
7720
7721 2004-02-26 Orjan Friberg <orjanf@axis.com>
7722
7723 * cris-tdep.c (frame_unwind.h, frame-base.h, trad-frame.h)
7724 (dwarf2-frame.h): Include.
7725 (enum cris_regnums): New enum CRIS_FP_REGNUM.
7726 Remove static variables related to ABI setting.
7727 (struct gdbarch_tdep): Remove cris_abi member.
7728 (struct frame_extra_info): Remove.
7729 (cris_unwind_cache, stack_item): New structs.
7730 (cris_frame_unwind, cris_frame_base): New variables.
7731 (push_stack_item, pop_stack_item)
7732 (cris_frame_unwind_cache, cris_frame_this_id)
7733 (cris_frame_prev_register, cris_unwind_dummy_id, cris_frame_align)
7734 (cris_push_dummy_code, cris_push_dummy_call, cris_frame_sniffer)
7735 (cris_frame_base_address, cris_scan_prologue, cris_unwind_pc)
7736 (cris_unwind_sp, cris_store_return_value, cris_extract_return_value)
7737 (cris_reg_struct_has_addr): New functions.
7738 (cris_examine, cris_frame_init_saved_regs, cris_frame_chain)
7739 (cris_frame_saved_pc, cris_saved_pc_after_call,
7740 (cris_store_struct_return, cris_frameless_function_invocation)
7741 (cris_pop_frame, cris_skip_prologue_main)
7742 (cris_abi_original_store_return_value)
7743 (cris_abi_v2_store_return_value)
7744 (cris_abi_original_extract_return_value)
7745 (cris_abi_v2_extract_return_value)
7746 (cris_abi_original_reg_struct_has_addr)
7747 (cris_abi_v2_reg_struct_has_addr)
7748 (cris_abi_original_push_arguments, cris_abi_v2_push_arguments)
7749 (cris_push_return_address, cris_abi_update): Remove.
7750 (_initialize_cris_tdep): Remove ABI command.
7751 (cris_dump_tdep): Ditto.
7752 (cris_gdbarch_init): Remove ABI command.
7753 Set store_return_value, extract_return_value, push_dummy_code,
7754 push_dummy_call, frame_align, unwind_pc, unwind_sp, unwind_dummy_id,
7755 frame_unwind_append_sniffer, frame_base_set_default.
7756 Clear deprecated init_frame_pc, push_arguments, store_return_value,
7757 extract_return_value, fp_regnum, pc_in_call_dummy, call_dummy_words,
7758 sizeof_call_dummy_words, get_saved_register, push_return_address,
7759 pop_frame, store_struct_return, frame_init_saved_regs,
7760 init_extra_frame_info, frameless_function_invocation, frame_chain,
7761 frame_saved_pc, saved_pc_after_call, save_dummy_frame_tos,
7762 dummy_write_sp.
7763
7764 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
7765
7766 * valprint.h (print_hex_chars, print_char_chars): New prototypes.
7767 * valprint.c (print_hex_chars): Change from static to external.
7768 (print_char_chars): New function.
7769 * printcmd.c (print_scalar_formatted): For integer and enum types
7770 that are longer than LONGEST, perform processing via appropriate
7771 print_*_chars routines.
7772
7773 2004-02-26 Andrew Cagney <cagney@redhat.com>
7774
7775 * Makefile.in: Update dependencies.
7776 Changes from Ulrich Weigand,
7777 * s390-tdep.c: Include "dwarf2-frame.h".
7778 (s390_dwarf2_frame_init_reg): New function.
7779 (s390_gdbarch_init): Install dwarf2_frame_sniffer and
7780 dwarf2_frame_base_sniffer. Call dwarf2_frame_set_init_reg.
7781
7782 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
7783
7784 * breakpoint.c (pending_break_support): New setting variable.
7785 (break_command_1): Account for pending_break_support setting
7786 when creating pending breakpoints.
7787 (set_breakpoint_cmd, show_breakpoint_cmd): New functions.
7788 (_initialize_breakpoint): Add "set breakpoint pending" and
7789 "show breakpoint pending" commands.
7790
7791 2004-02-26 Andrew Cagney <cagney@redhat.com>
7792
7793 Fix PR i18n/1570.
7794 * charset.c (backslashable, backslashed, represented): Remove 'e'
7795 from list of escaped characters, not part of ISO-C.
7796
7797 2004-02-25 J. Brobecker <brobecker@gnat.com>
7798
7799 From Peter Schauer <schauer@pdf.de>:
7800 * tui/tui.c: Move system header includes after local includes.
7801 Fixes a build failure on solaris systems.
7802
7803 2004-02-25 J. Brobecker <brobecker@gnat.com>
7804
7805 * configure.in: Refine the previous change.
7806 * configure: Regenerate.
7807
7808 2004-02-25 Mark Kettenis <kettenis@gnu.org>
7809
7810 * amd64-tdep.h: Renamed from x86-64-tdep.h.
7811 * amd64-tdep.c: Renamed from x86-64-tdep.c. Include
7812 "amd64-tdep.h" instead of "x86-64-tdep.h".
7813 * amd64-nat.c: Include "amd64-tdep.h" instead of "x86-64-tdep.h".
7814 * amd64-linux-tdep.h: Renamed from x86-64-linux.h.
7815 * amd64-linux-tdep.c: Renamed from x86-64-linux-tdep.c. Include
7816 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
7817 and "x86-64-tdep.c".
7818 * amd64-linux-nat.c: Renamed from x86-64-linux-nat.c. Include
7819 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
7820 and "x86-64-tdep.c".
7821 * amd64bsd-nat.c: Update copyright year.
7822 Include "amd64-tdep.h" instead of "x86-64-tdep.h".
7823 * amd64fbsd-tdep.c: Include "amd64-tdep.h" instead of
7824 "x86-64-tdep.h".
7825 * amd64fbsd-nat.c: Include "amd64-tdep.h" instead of
7826 "x86-64-tdep.h".
7827 * amd64nbsd-tdep.c: Include "amd64-tdep.h" instead of
7828 "x86-64-tdep.h".
7829 * amd64nbsd-nat.c: Include "amd64-tdep.h" instead of
7830 "x86-64-tdep.h".
7831 * amd64obsd-tdep.c: Include "amd64-tdep.h" instead of
7832 "x86-64-tdep.h".
7833 * amd64obsd-nat.c: Include "amd64-tdep.h" instead of
7834 "x86-64-tdep.h".
7835 * configure.host: (x86_64-*-linux*): Set gdb_target to linux64.
7836 * configure.tgt (x86_64-*-linux*): Set gdb_target to linux64.
7837 * Makefile.in (amd64_linux_tdep_h): Renamed from
7838 x86_64_linux_tdep_h.
7839 (amd64_tdep_h): Renamed from x86_64_tdep_h.
7840 (amd64bsd-nat.o, amd64fbsd-nat.o, amd64fbsd-tdep.o, amd64-nat.o)
7841 (amd64nbsd-nat.o, amd64nbsd-tdep.o, amd64obsd-nat.o)
7842 (amd64obsd-tdep.o): Update dependencies.
7843 (amd64-tdep.o, amd64-linux-nat.o, amd64-linux-tdep.o): New
7844 dependencies.
7845 (x86-64-linux-nat.o, x86-64-linux-tdep.o, x86-64-tdep.o): Remove
7846 dependencies.
7847 (ALLDEPFILES): Add amd64-tdep.c, amd64obsd-nat.c, amd64obsd-nat.c,
7848 amd64-linux-nat.c amd64-linux-tdep.c.
7849 * config/i386/tm-linux64.h: Renamed from tm-x86-64linux.h
7850 * config/i386/nm-linux64.h: Renamed from nm-x86-64linux.h.
7851 * config/i386/linux64.mt: Renamed from x86-64linux.mt.
7852 (TDEPFILES): Replace x86-64-tdep.o and x86-64-linux-tdep.o with
7853 amd64-tdep.o and amd64-linux-tdep.o.
7854 (TM_FILE): Set to tm-linux64.h.
7855 * config/i386/linux64.mh: Renamed from x86-64linux.mh.
7856 (NAT_FILE): Set to nm-linux64.h.
7857 (NATDEPFILES): Replace x86-64-linux-nat.o with amd64-linux-nat.o.
7858 * config/i386/fbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7859 amd64-tdep.o.
7860 * config/i386/nbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7861 amd64-tdep.o.
7862 * config/i386/obsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
7863 amd64-tdep.o.
7864
7865 2004-02-25 Roland McGrath <roland@redhat.com>
7866
7867 * remote.c (remote_protocol_qPart_auxv): New variable.
7868 (init_all_packet_configs): Initialize it.
7869 (set_remote_protocol_qPart_auxv_packet_cmd): New function.
7870 (show_remote_protocol_qPart_auxv_packet_cmd): New function.
7871 (show_remote_cmd): Call it.
7872 (_initialize_remote): Initialize commands.
7873 (remote_xfer_partial): If enabled, use qPart:auxv:read:... query to
7874 service TARGET_OBJECT_AUXV requests.
7875
7876 2004-02-25 J. Brobecker <brobecker@gnat.com>
7877
7878 * configure.in: Make sure that the wborder function is available.
7879 Otherwise, search for it in the cur_colr library.
7880 * configure: Regenerate.
7881
7882 2004-02-25 Andrew Cagney <cagney@redhat.com>
7883
7884 * hppa-tdep.c (hppa32_push_dummy_call): Rewrite.
7885
7886 2004-02-25 Mark Kettenis <kettenis@gnu.org>
7887
7888 * config/i386/tm-x86-64linux.h: Tweak comments.
7889
7890 2004-02-25 Richard Sandiford <rsandifo@redhat.com>
7891
7892 * MAINTAINERS: Add self to write-after-approval list.
7893
7894 2004-02-25 Andrew Cagney <cagney@redhat.com>
7895
7896 PR cli/1566. Problem found, and fix suggested by David Allan.
7897 * cli/cli-script.c (execute_control_command): Unconditionally
7898 install a cleanup. Default "ret" to "invalid_control". Use
7899 "break" instead of "return" to escape from the switch.
7900
7901 2004-02-24 J. Brobecker <brobecker@gnat.com>
7902
7903 * tui/tui-disasm.c: %s/lines/asm_lines/g to avoid a collision
7904 with the lines macro defined in term.h on AiX.
7905 * tui/tui-regs.c: %s/label_width/tui_label_width/g, to avoid
7906 a collision with the label_width macro defined in term.h on AiX.
7907
7908 2004-02-23 David Mosberger <davidm@hpl.hp.com>
7909
7910 Committed by Kevin Buettner <kevinb@redhat.com>.
7911
7912 * ia64-tdep.h (ia64_write_pc, ia64_linux_write_pc): Declare.
7913 * ia64-tdep.c (ia64_write_pc): Make it a global function.
7914 (ia64_gdbarch_init): For Linux targets, use ia64_linux_write_pc()
7915 instead of ia64_write_pc().
7916 * ia64-linux-tdep.c (regcache.h): Include.
7917 (ia64_linux_write_pc): New function.
7918
7919 2004-02-23 Roland McGrath <roland@redhat.com>
7920
7921 * auxv.c (info_auxv_command): Fix typos in error messages.
7922
7923 2004-02-23 Mark Kettenis <kettenis@gnu.org>
7924
7925 * x86-64-tdep.h: Tweak comment.
7926 (enum amd64_regnum): New.
7927 (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM)
7928 (X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM)
7929 (X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM)
7930 (X86_64_XMM1_REGNUM): Removed.
7931 (AMD64_NUM_GREGS): Renamed from X86_64_NUM_GREGS.
7932 (amd64_init_abi, amd64_supply_fxsave, amd64_fill_fxsave): Adjust
7933 prototypes for renamed functions.
7934 * x86-64-tdep.c: Fix typo.
7935 (amd64_dwarf_regmap): Use constants from `enum amd64_regnum' for
7936 register numbers.
7937 (amd64_return_value, amd64_push_arguments, amd64_push_dummy_call):
7938 Use constants from `enum amd64_regnum' for register numbers.
7939 (AMD64_NUM_SAVED_REGS): Adjust for renamed macros.
7940 (amd64_analyze_prologue, amd64_frame_cache,
7941 amd64_sigtramp_frame_cache): Use constants from `enum
7942 amd64_regnum' for register numbers.
7943 (amd64_supply_fpregset): Adjust for renamed functions.
7944 (amd64_init_abi): Rename from x86_64_init_abi. Use constants from
7945 `enum amd64_regnum' for register numbers.
7946 (I387_ST0_REGNUM): Use constant from `enum amd64_regnum'.
7947 (amd64_supply_fxsave): Rename from x86_64_supply_fxsave.
7948 (amd64_fill_fxsave): Rename fro x86_64_fill_fxsave.
7949 * x86-64-linux-tdep.c (amd64_linux_supply_gregset)
7950 (amd64_linux_fill_gregset): Adjust for renamed macros.
7951 (fetch_core_registers): Adjust for renamed functions.
7952 (amd64_linux_init_abi): Adjust for renamed functions.
7953 * x86-64-linux-nat.c (supply_gregset, fill_gregset): Adjust for
7954 renamed functions.
7955 * amd64-nat.c: Adjust for renamed macros.
7956 * amd64bsd-nat.c (fetch_inferior_registers)
7957 (store_inferior_registers): Use constants from `enum amd64_regnum'
7958 for register numbers. Adjust for renamed variables.
7959 * amd64fbsd-nat.c (supply_gregset, fill_gregset): Adjust for
7960 renamed variables.
7961 (_initialize_amd64fbsd_nat): Use constants from `enum
7962 amd64_regnum' for register numbers.
7963 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use constants from
7964 `enum amd64_regnum' for register numbers.
7965 (amd64fbsd_init_abi): Adjust for renamed functions.
7966 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Use constants from
7967 `enum amd64_regnum' for register numbers.
7968 (amd64nbsd_init_abi): Adjust for renamed functions.
7969 (_initialize_amd64nbsd_ndep): Adjust for renamed macros.
7970 * amd64obsd-tdep.c (amd64obsd_sigcontext_addr): Use constants from
7971 `enum amd64_regnum' for register numbers.
7972 (amd64obsd_init_abi): Adjust for renamed functions.
7973 (_initialize_amd64obsd_ndep): Adjust for renamed macros.
7974
7975 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7976
7977 * breakpoint.c (print_one_breakpoint): Do not output spaces
7978 after printing <PENDING> for a pending breakpoint.
7979
7980 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7981
7982 * printcmd.c (print_scalar_formatted): Initialize val_long
7983 to remove compiler warning message.
7984
7985 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
7986
7987 * defs.h (nquery, yquery): New prototypes.
7988 * breakpoint.c (break_command_1): Use new nquery interface.
7989 * utils.c (defaulted_query, nquery, yquery): New functions.
7990
7991 2004-02-23 Andrew Cagney <cagney@redhat.com>
7992
7993 * hppa-tdep.c (hppa_frame_align): New function.
7994 (hppa32_push_dummy_call): New function.
7995 (hppa64_push_dummy_call): New function.
7996 (hppa_gdbarch_init): Set frame_align and push_dummy_call; keep
7997 disabled.
7998
7999 * infcall.c (legacy_push_dummy_code): Don't call deprecated
8000 FIX_CALL_DUMMY when push_dummy_call is available.
8001 (call_function_by_hand, push_dummy_code): Ditto.
8002
8003 2004-02-22 Andrew Cagney <cagney@redhat.com>
8004
8005 * config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Delete macro.
8006 (DEPRECATED_PC_IN_CALL_DUMMY): Delete macro.
8007 (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete macro.
8008 * hppa-tdep.c (hppa_gdbarch_init): Clear deprecated
8009 use_generic_dummy_frames, set deprecated pc_in_call_dummy, set
8010 call_dummy_location to ON_STACK.
8011
8012 2004-02-22 Mark Kettenis <kettenis@gnu.org>
8013
8014 * x86-64-linux-tdep.c: Tweak comment.
8015 (amd64_linux_supply_gregset): Renamed from
8016 x86_64_linux_supply_gresget.
8017 (amd64_linux_fill_gregset): Renamed from
8018 x86_64_linux_fill_gregset.
8019 (fetch_core_registers): Adjust for renamed functions.
8020 (amd64_core_fns): Renamed from x86_64_core_fns.
8021 (amd64_linux_sigtramp_start): Renamed from
8022 x86_64_linux_sigtramp_start.
8023 (amd64_linux_pc_in_sigtramp): Renamed from
8024 x86_64_linux_pc_in_sigtramp. Adjust for renamed functions.
8025 (AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Renamed from
8026 X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET.
8027 (amd64_linux_sigcontext_addr): Renamed from
8028 x86_64_linux_sigcontext_addr.
8029 (amd64_linux_sc_reg_offset): Renamed from
8030 x86_64_linux_sc_reg_offset.
8031 (amd64_linux_init_abi): Renamed from x86_64_linux_init_abi.
8032 Adjust for renamed functions and variables.
8033 (_initialize_amd64_linux_tdep): Renamed from
8034 _initialize_x86_64_linux_tdep. Adjust for renamed functions and
8035 variables.
8036 * x86-64-linux-tdep.h: Update copyright year. Tweak comment.
8037 Adjust for renamed functions.
8038
8039 * x86-64-linux-nat.c (amd64_linux_gregset64_reg_offset): Rename
8040 from x86_64_linux_gregset64_reg_offset.
8041 (amd64_linux_gregset32_reg_offset): Rename from
8042 x86_64_linux_gregset64_reg_offset.
8043 (amd64_linux_dr_get): Renamed from x86_64_linux_dr_get.
8044 (amd64_linux_dr_set): Renamed from x86_64_linux_dr_set.
8045 (amd64_linux_dr_set_control): Renamed from
8046 x86_64_linux_dr_set_control. Adjust for renamed functions.
8047 (amd64_linux_dr_set_addr): Renamed from x86_64_linux_dr_set_addr.
8048 Adjust for renamed functions.
8049 (amd64_linux_dr_reset_addr): Renamed from
8050 x86_64_linux_dr_reset_addr. Adjust for renamed functions.
8051 (amd64_linux_dr_get_status): Renamed from
8052 x86_64_linux_dr_get_status. Adjust for renamed functions.
8053 (_initialize_amd64_linux_nat): Renamed from
8054 _initialize_x86_64_linux_nat. Adjust for renamed variables and
8055 functions.
8056 * config/i386/nm-x86-64linux.h: Update copyright year.
8057 Adjust for renamed functions.
8058
8059 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_start_addr): Renamed from
8060 amd64fbsd_sigtramp_start.
8061 (amd64fbsd_sigtramp_end_addr): Renamed from
8062 amd64fbsd_sigtramp_end.
8063 (amd64fbsd_init_abi): Adjust for renamed variables.
8064 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Adjust for renamed
8065 variables.
8066 * x86-64-tdep.h (amd64fbsd_sigtramp_start_addr): Renamed from
8067 amd64fbsd_sigtramp_start.
8068 (amd64fbsd_sigtramp_end_addr): Renamed from
8069 amd64fbsd_sigtramp_end.
8070
8071 2004-02-22 Andrew Cagney <cagney@redhat.com>
8072
8073 * hppa-tdep.c (hppa32_return_value): New function.
8074 (hppa64_return_value): New function.
8075 (hppa_gdbarch_init): Set return_value; keep disabled.
8076
8077 * hppa-tdep.c (hppa_gdbarch_init): Re-order separating
8078 struct-return and inferior function call methods.
8079
8080 * hppa-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
8081 "frame-base.h".
8082 (struct hppa_frame_cache): Define.
8083 (hppa_frame_cache, hppa_frame_this_id): New functions.
8084 (hppa_frame_prev_register): New function.
8085 (hppa_frame_unwind, hppa_frame_base): New variables.
8086 (hppa_frame_unwind_sniffer): New function.
8087 (hppa_frame_base_address, hppa_unwind_pc): New function.
8088 (hppa_gdbarch_init): Set unwind_dummy_id, unwind_pc, frame unwind
8089 sniffer, and frame base sniffer; keep disabled.
8090 (hppa_frame_base_sniffer, hppa_unwind_dummy_id): New functions.
8091 * Makefile.in: Update dependencies, fix s/nbsd/obsd/ typo.
8092
8093 * frame-unwind.c (frame_unwind_find_by_frame): Add legacy_frame_p
8094 to predicates for "seriously old code".
8095
8096 * hppa-tdep.c (hppa_gdbarch_init): Convert compile time #if0s into
8097 runtime if(0).
8098
8099 * hppa-tdep.c (hppa_breakpoint_from_pc): Make "breakpoint"
8100 unsigned.
8101 (hppa_frame_find_saved_regs): Fix "std" instruction pattern
8102
8103 * config/pa/tm-hppa.h: Update copyright.
8104 (DEPRECATED_INIT_FRAME_PC): Delete macro.
8105 (deprecated_init_frame_pc_default): Delete declaration.
8106 (hppa_frame_init_saved_regs): Delete declaration.
8107 (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
8108 * hppa-tdep.c: Include "arch-utils.h".
8109 (hppa_gdbarch_init): Set deprecated init_frame_pc
8110 and deprecated frame_init_saved_regs.
8111 (hppa_frame_init_saved_regs): Make static.
8112
8113 2004-02-22 Mark Kettenis <kettenis@gnu.org>
8114
8115 Remove old 386BSD support.
8116 * NEWS (REMOVED configurations and files): Add i[3456]86-*-bsd*.
8117 * configure.host: Remove i[34567]86-*-bsd*.
8118 * configure.tgt: Remove i[34567]86-*-bsd*.
8119 * i386b-nat.c: Removed.
8120 * Makefile.in (ALLDEPFILES): Remove i386b-nat.c.
8121 (i386b-nat.o): Remove dependencies.
8122
8123 * config/i386/i386bsd.mh: Removed.
8124 * config/i386/i386bsd.mt: Removed.
8125 * config/i386/nm-i386bsd.h: Removed.
8126 * config/i386/tm-i386bsd.h: Removed.
8127 * config/i386/xm-i386bsd.h: Removed.
8128
8129 * x86-64-tdep.h (amd64obsd_r_reg_offset): New extern declaration.
8130
8131 * amd64fbsd-tdep.c: Include "solib-svr4.h".
8132 (amd64fbsd_init_abi): Set link map offsets.
8133 * amd64nbsd-tdep.c: Include "slib-svr4.h".
8134 (amd64nbsd_init_abi): Set link map offsets.
8135 * amd64obsd-tdep.c: Include "solib-svr4.h".
8136 (amd64obsd_init_abi): Set link map offsets.
8137 * i386fbsd-tdep.c: Include "solib-svr4.h".
8138 (i386fbsd_init_abi): Set link map offsets.
8139 * i386nbsd-tdep.c: Include "solib-svr4.h".
8140 (i386nbsdelf_init_abi): Set link map offsets.
8141 * Makefile.in (amd64fbsd-tdep.o, amd64nbsd-tdep.o)
8142 (amd64obsd-tdep.o, i386fbsd-tdep.o): Update dependencies.
8143 * config/i386/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o,
8144 solib-legacy.o and core-aout.o. Reformat.
8145 * config/i386/fbsd64.mh (NATDEPFILES): Remove solib.o,
8146 solib-svr4.o, solib-legacy.o. Reformat.
8147 * config/i386/nbsdaout.mh (NATDEPFILES): Add solib.o. Reformat.
8148 * config/i386/nbsdelf.mh: Reformat.
8149 * config/i386/nbsd64.mh (NATDEPFILES): Remove solib.o,
8150 solib-svr4.o, solib-legacy.o and corelow.o.
8151 * config/i386/obsd.mh, config/i386/obsdaout.mh: Reformat.
8152 * config/i386/obsd64.mh (NATDEPFILES): Remove solib.o,
8153 solib-svr4.o, solib-legacy.o and corelow.o. Reformat.
8154 * config/i386/fbsd.mt (TDEPFILES): Add solib.o, solib-svr4.o.
8155 * config/i386/fbsd64.mt (TDEPFILES): Add solib.o, solib-svr4.o.
8156 (TM_FILE): Set to tm-fbsd.h.
8157 * config/i386/nbsd.mt (TDEPFILES): Reformat.
8158 * config/i386/nbsd64.mt (TDEPFILES): Add corelow.o, solib.o and
8159 solib-svr4.o.
8160 * config/i386/obsd.mt (TDEPFILES): Add corelow.o, solib.o and
8161 solib-svr4.o.
8162 (TM_FILE): Set to nm-nbsd.h.
8163 * config/i386/nm-fbsd.h: Update copyright year. Tweak comments.
8164 Simplify shared library support. Don't include "elf/common.h".
8165 (SVR4_SHARED_LIBS): Don't define.
8166 * config/i386/nm-fbsd64.h: Update copyright year. Don't include
8167 "solib.h".
8168 * config/i386/nm-nbsd.h, config/i386/nm-nbsdaout.h,
8169 config/i386/nm-obsd.h: Update copyright year. Tweak comments.
8170 * config/i386/tm-fbsd.h: Update copyright tear. Tweak comments.
8171 Don't include "i386/tm-i386.h". Include "solib.h".
8172 * config/i386/tm-nbsd.h: Update copyright year. Tweak comments.
8173 Don't include "i386/tm-i386.h".
8174 * config/i386/xm-i386.h: Update copyright year. Tweak comments.
8175 * config/i386/xm-nbsd.h: Update copyright year. Tweak comments.
8176 Include "i386/xm-i386.h".
8177 (HOST_LONG_DOUBLE_FORMAT): Remove.
8178
8179 Fix OpenBSD/i386 sigtramp recognition.
8180 * i386-tdep.h: Update copyright year.
8181 (i386bsd_pc_in_sigtramp, i386bsd_sigtramp_start)
8182 (i386bsd_sigtramp_end): New prototypes.
8183 (i386fbsd_sigtramp_start_addr): Renamed from
8184 i386fbsd_sigtramp_start.
8185 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
8186 (i386obsd_sigtramp_start_addr): Renamed from
8187 i386obsd_sigtramp_start.
8188 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
8189 * i386bsd-tdep.c: Update copyright year.
8190 (i386bsd_pc_in_sigtramp): Make public.
8191 * i386fbsd-nat.c: Update copyright year.
8192 (_initialize_i386fbsd_nat): Adjust for renamed variables.
8193 * i386fbsd-tdep.c: Update copyright year.
8194 (i386fbsd_sigtramp_start_addr): Renamed from
8195 i386fbsd_sigtramp_start.
8196 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
8197 (i386fbsdaout_init_abi): Adjust for renamed variables.
8198 * i386obsd-nat.c: Update copyright year.
8199 (_initialize_i386obsd_nat): Adjust for renamed variables.
8200 * i386obsd-tdep.c: Include "target.h".
8201 (i386obsd_page_size): New variable.
8202 (i386obsd_pc_in_sigtramp, i386obsd_sigtramp_start)
8203 (i386obsd_sigtramp_end): New functions.
8204 (i386obsd_sigtramp_start_addr): Renamed from
8205 i386obsd_sigtramp_start.
8206 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
8207 (i386obsd_init_abi): Adjust for renamed variables. Set
8208 pc_in_sigtramp, sigtramp_start and sigtramp_end.
8209 * Makefile.in (i386obsd-tdep.o): Update dependencies.
8210
8211 * amd64obsd-tdep.c (amd64obsd_pc_in_sigtramp): Adjust for signal
8212 trampoline change in OpenBSD kernel.
8213
8214 * amd64-nat.c: Update copyright year.
8215 (amd64_supply_native_gregset, amd64_collect_native_gregset): Use
8216 architecture from REGCACHE.
8217
8218 * x86-64-linux-nat.c (x86_64_linux_gregset32_reg_offset): Use
8219 symbolic constants from <sys/reg.h> instead of hard-coded numbers.
8220
8221 2004-02-21 Mark Kettenis <kettenis@gnu.org>
8222
8223 * configure.host: Add i[34567]86-*-openbsd[0-2].* and
8224 i[34567]86-*-openbsd3.[0-3].
8225 * config/i386/obsdaout.mh: New file.
8226
8227 * config/i386/obsd.mh (MH_FLAGS): Remove.
8228
8229 Fix PR build/1549.
8230 * i386obsd-tdep.c: Update copyright years. Include
8231 "solib-svr4.h".
8232 (i386obsd_init_abi): Don't set regset_from_core_section here.
8233 (i386obsd_aout_init_abi): New function. Set
8234 regset_from_core_section here.
8235 (i386obsd_elf_init_abi): New function.
8236 (_initialize_i386obsd_tdep): Register OS/ABI for OpenBSD ELF.
8237 * Makefile.in (i386obsd-tdep.o): Update dependecies.
8238 * config/i386/obsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
8239 (TM_FILE): Set to tm-nbsd.h.
8240
8241 * config/i386/obsd.mh (NATDEPFILES): Remove solib.o and
8242 solib-sunos.o.
8243
8244 * solib-svr4.h: Update copyright year.
8245 (svr4_ilp32_fetch_link_map_offsets)
8246 (svr4_lp64_fetch_link_map_offsets): New prototype.
8247 * solib-svr4.c: Update copyright year.
8248 (svr4_ilp32_fetch_link_map_offsets)
8249 (svr4_lp64_fetch_link_map_offsets): New function.
8250
8251 2004-02-20 Daniel Jacobowitz <drow@mvista.com>
8252
8253 * dwarf2read.c (add_partial_symbol): Fix typo in adding enumerators
8254 to the partial symbol table.
8255
8256 2004-02-20 J. brobecker <brobecker@gnat.com>
8257
8258 * PROBLEMS: Add description of problem documented under gdb/1560.
8259
8260 2004-02-20 Mark Kettenis <kettenis@gnu.org>
8261
8262 * amd64obsd-tdep.c: Include "regset.h" and "i387-tdep.h". Fix
8263 comments.
8264 (amd64obsd_supply_regset, amd64obsd_regset_from_core_section): New
8265 functions.
8266 (amd64obsd_init_abi): Reorder initializations. Use
8267 amd64obsd_r_reg_offset to initialize the general-purpose register
8268 set details. Set regset_from_core_section.
8269 (_initialize_amd64obsd_tdep): Rename from
8270 _initialize_amd64obsd_ndep. Add OS ABI handler for core dumps.
8271 * Makefile.in (amd64obsd-tdep.o): Update dependencies.
8272 * config/i386/obsd64.mt (TDEPFILES): Add i386-tdep.o.
8273
8274 * NEWS (New native configurations): Mention OpenBSD/alpha.
8275 * configure.tgt: Add alpha*-*-openbsd*.
8276 * configure.host: Add alpha*-*-openbsd*.
8277 * alphanbsd-tdep.c: Update copyright year.
8278 (_initialize_alphanbsd_tdep): Register OS ABI for OpenBSD ELF.
8279
8280 2004-02-20 Andrew Cagney <cagney@redhat.com>
8281
8282 Fix PR tdep/1372.
8283 * configure.tgt: Delete target "none-*-*".
8284 * configure.host: Delete host "none-*-*".
8285 * config/none/none.mh: Delete file.
8286 * config/none/none.mt: Delete file.
8287 * config/none/xm-none.h: Delete file.
8288 * config/none/tm-none.h: Delete file.
8289 * config/none/nm-none.h: Delete file.
8290
8291 2004-02-19 Fred Fish <fnf@redhat.com>
8292
8293 * sh-tdep.c (sh_analyze_prologue): Eliminate useless test of
8294 cache->uses_fp prior to setting it.
8295
8296 2004-02-19 Fred Fish <fnf@redhat.com>
8297
8298 Fix for PR breakpoint/1558.
8299 * sh-tdep.c (IS_JSR): New macro.
8300 (sh_analyze_prologue): Use IS_JSR to terminate prologue scan.
8301
8302 2004-02-19 Jim Blandy <jimb@redhat.com>
8303
8304 * findvar.c (value_from_register): Doc fix.
8305
8306 2004-02-19 Jeff Johnston <jjohnstn@redhat.com>
8307
8308 * printcmd.c (print_scalar_formatted): Do not check for sizeof
8309 type being greater than sizeof of host's LONGEST. Always use
8310 unpack_long() unless format 'f' chosen.
8311
8312 2004-02-19 Joel Brobecker <brobecker@gnat.com>
8313
8314 Committed by Elena Zannoni <ezannoni@redhat.com>
8315
8316 * symtab.c (find_pc_sect_psymtab): Return the psymtab that
8317 contains a symbol wich is the best, non-exact match for the given
8318 pc. Update comments.
8319
8320 2004-02-19 Elena Zannoni <ezannoni@redhat.com>
8321
8322 * event-top.c (async_request_quit): Remove uses of REQUEST_QUIT
8323 macro, which was part of the now removed Mach 3 port.
8324 * utils.c (request_quit): Ditto.
8325
8326 2004-02-18 Mark Kettenis <kettenis@gnu.org>
8327
8328 * config/djgpp/fnchange.lst: Rename "amd64obsd-tdep.c" and
8329 "amd64obsd-nat.c" to "a64ob-tdep.c" and "a64ob-nat.c".
8330
8331 2004-02-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
8332
8333 Committed by Mark Kettenis <kettenis@gnu.org>.
8334
8335 * config/s390/nm-linux.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT):
8336 Define.
8337
8338 2004-02-18 Andrew Cagney <cagney@redhat.com>
8339
8340 * configure.in: Add a TUI target to CONFIG_ALL, CONFIG_CLEAN,
8341 CONFIG_INSTALL and CONFIG_UNINSTALL.
8342 * configure: Re-generate.
8343 * interps.h (INTERP_TUI): Define.
8344 * Makefile.in: Update dependencies.
8345 (TUI): New macro.
8346 (tui-main.o): Specify dependencies.
8347 (install-tui, uninstall-tui, clean-tui, all-tui): New rules.
8348 * tui/tui-main.c: New file.
8349
8350 2004-02-18 Mark Kettenis <kettenis@gnu.org>
8351
8352 * amd64obsd-tdep.c, amd64obsd-nat.c: New files.
8353 * Makefile.in (amd64obsd-nat.o, amd64obsd-tdep.o): New
8354 dependencies.
8355 * configure.host: Add x86_64-*-openbsd*.
8356 * configure.tgt: Add x86_64-*-openbsd*.
8357 * config/i386/obsd64.mt, config/i386/obsd64.mh: New files.
8358
8359 * tui/tui.c: Don't include <malloc.h>.
8360
8361 * Makefile.in (ALLDEPFILES): Add amd64-nat.c, amd64bsd-nat.c,
8362 amdfbsd-nat.c, amd64-fbsd-tdep.c, amd64nbsd-nat.c and
8363 amd64nbsd-tdep.c.
8364
8365 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Make
8366 static. Remove extraneous whitespace.
8367 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Make
8368 static.
8369
8370 2004-02-17 Jim Blandy <jimb@redhat.com>
8371
8372 * findvar.c (value_from_register): Doc fix.
8373
8374 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
8375
8376 Committed by Jim Blandy <jimb@redhat.com>.
8377
8378 * eval.c (evaluate_subexp_standard, case OP_OBJC_MSGCALL): Use
8379 CORE_ADDR as type for selectors. Correct types for GNU run time
8380 message lookup function to use double indirection.
8381 * objc-lang.c (lookup_child_selector): Use CORE_ADDR as return type.
8382 * objc-lang.h (lookup_child_selector): Adapt prototype.
8383
8384 * s390-nat.c (SUBOFF): New macro.
8385 (supply_gregset, fill_gregset): Use it to handle debugging
8386 of 32-bit exectuables running under a 64-bit kernel.
8387 * s390-tdep.c: Include "solib-svr4.h".
8388 (s390_svr4_fetch_link_map_offset): New function.
8389 (s390x_svr_fetch_link_map_offset): Likewise.
8390 (s390_gdbarch_init): Call set_solib_svr4_fetch_link_map_offsets.
8391 * Makefile.in (s390-tdep.o): Update dependencies.
8392
8393 * s390-tdep.c: Include "trad-frame.h", "frame-base.h", and
8394 "frame-unwind.h".
8395 (s390_readinstruction): Reformat. Use read_memory_nobpt.
8396 (GDB_TARGET_IS_ESAME, S390_GPR_SIZE, S390_FPR_SIZE): Remove.
8397 (S390_SYSCALL_OPCODE, S390_SYSCALL_SIZE): Remove.
8398 (S390_SIGCONTEXT_SREGS_OFFSET, S390X_SIGCONTEXT_SREGS_OFFSET,
8399 S390_SIGREGS_FP0_OFFSET, S390X_SIGREGS_FP0_OFFSET,
8400 S390_UC_MCONTEXT_OFFSET, S390X_UC_MCONTEXT_OFFSET,
8401 S390_SIGNAL_FRAMESIZE,
8402 s390_NR_sigreturn, s390_NR_rt_sigreturn): Remove.
8403 (struct frame_extra_info): Remove.
8404 (s390_memset_extra_info): Remove.
8405 (op1_ag, op1_ay, op1_brasl, op1_brc, op1_brcl, op1_lay, op1_lg)
8406 (op1_lmy, op1_ly, op1_sg, op1_stmy, op1_sty, op1_sy, op_a)
8407 (op_agr, op_bas, op_bc, op_bcr, op_sgr, op_sr): New opcodes.
8408 (is_rse): Renamed to ...
8409 (is_rsy): ... this. Support long displacements.
8410 (is_rxe): Renamed to ...
8411 (is_rxy): ... this. Support long displacements.
8412 (compute_x_addr): Support long displacements.
8413 (struct s390_prologue_data): New data type.
8414 (s390_on_stack): Change API to use struct s390_prologue_data.
8415 (s390_store): Reimplement.
8416 (s390_load): New function.
8417 (s390_get_signal_frame_info): Remove.
8418 (s390_get_frame_info): Remove, replace by ...
8419 (s390_analyze_prolog): ... this new function.
8420 (s390_check_function_end): Remove.
8421 (s390_function_start): Remove.
8422 (s390_frameless_function_invokation): Remove.
8423 (s390_is_sigreturn): Remove.
8424 (s390_init_frame_pc_first): Remove.
8425 (s390_init_frame_extra_info): Remove.
8426 (s390_frame_init_saved_regs): Remove.
8427 (s390_frame_saved_pc_nofix): Remove.
8428 (s390_frame_saved_pc): Remove.
8429 (s390_frame_chain): Remove.
8430 (s390_fp_regnum, s390_read_fp): Remove.
8431 (s390_pop_frame_regular, s390_pop_frame): Remove.
8432 (s390_saved_pc_after_call): Remove.
8433 (s390_skip_prologue): Reimplement.
8434 (s390_in_function_epilogue_p): Support long displacements.
8435 (struct s390_unwind_cache): New data structure.
8436 (s390_frame_unwind_cache): New function.
8437 (s390_prologue_frame_unwind_cache): Likewise.
8438 (s390_backchain_frame_unwind_cache): Likewise.
8439 (s390_frame_this_id, s390_frame_prev_register): Likewise.
8440 (s390_frame_unwind): Define.
8441 (s390_frame_sniffer): New function.
8442 (struct s390_pltstub_unwind_cache): New data structure.
8443 (s390_pltstub_frame_unwind_cache): New function.
8444 (s390_pltstub_frame_this_id): Likewise.
8445 (s390_pltstub_frame_prev_register): Likewise.
8446 (s390_pltstub_frame_unwind): Define.
8447 (s390_pltstub_frame_sniffer): New function.
8448 (struct s390_sigtramp_unwind_cache): New data structure.
8449 (s390_sigtramp_frame_unwind_cache): New function.
8450 (s390_sigtramp_frame_this_id): Likewise.
8451 (s390_sigtramp_frame_prev_register): Likewise.
8452 (s390_sigtramp_frame_unwind): Define.
8453 (s390_sigtramp_frame_sniffer): New function.
8454 (s390_frame_base_address, s390_local_base_address): New functions.
8455 (s390_frame_base): Define.
8456 (s390_unwind_pc, s390_unwind_sp): New function.
8457 (s390_push_dummy_call): Use new frame base location.
8458 (s390_unwind_dummy_id): Likewise.
8459 (s390_gdbarch_init): Remove calls to:
8460 set_gdbarch_frameless_function_invocation,
8461 set_gdbarch_deprecated_init_frame_pc,
8462 set_gdbarch_deprecated_frame_chain,
8463 set_gdbarch_deprecated_frame_init_saved_regs,
8464 set_gdbarch_deprecated_pop_frame,
8465 set_gdbarch_deprecated_init_extra_frame_info,
8466 set_gdbarch_deprecated_init_frame_pc_first,
8467 set_gdbarch_deprecated_target_read_fp,
8468 set_gdbarch_deprecated_frame_saved_pc,
8469 set_gdbarch_deprecated_saved_pc_after_call,
8470 set_gdbarch_deprecated_fp_regnum.
8471 Add calls to:
8472 set_gdbarch_in_solib_call_trampoline,
8473 frame_unwind_append_sniffer,
8474 frame_base_set_default,
8475 set_gdbarch_unwind_pc,
8476 set_gdbarch_unwind_sp.
8477 * Makefile.in (s390-tdep.o): Update dependencies.
8478
8479 * s390-tdep.c (struct gdbarch_tdep): Add 'abi' member.
8480 (S390_STACK_FRAME_OVERHEAD): Remove.
8481 (S390_STACK_PARAMETER_ALIGNMENT): Remove.
8482 (S390_NUM_FP_PARAMETER_REGISTERS): Remove.
8483 (s390_promote_integer_argument): Remove.
8484 (s390_cannot_extract_struct_value_address): Remove.
8485 (s390_use_struct_convention, s390_store_struct_return): Remove.
8486 (s390_extract_return_value, s390_store_return_value): Remove.
8487 (s390_return_value_convention, s390_return_value): New functions.
8488 (is_float_singleton): Handle typedefs.
8489 (is_double_or_float, is_double_arg, is_simple_arg, pass_by_copy_ref):
8490 Remove, replace by ...
8491 (s390_function_arg_pass_by_reference, s390_function_arg_float,
8492 s390_function_arg_integer): ... these new functions.
8493 (s390_push_arguments, s390_push_return_address): Remove, replace by ...
8494 (s390_push_dummy_call, s390_unwind_dummy_id): ... these new functions.
8495 (s390_gdbarch_init): Remove s390_call_dummy_words and elf_flags.
8496 Fill in tdep->abi.
8497 Remove calls to:
8498 set_gdbarch_deprecated_store_struct_return,
8499 set_gdbarch_deprecated_extract_return_value,
8500 set_gdbarch_deprecated_store_return_value,
8501 set_gdbarch_use_struct_convention,
8502 set_gdbarch_extract_struct_value_address,
8503 set_gdbarch_deprecated_pc_in_call_dummy,
8504 set_gdbarch_deprecated_push_arguments,
8505 set_gdbarch_deprecated_save_dummy_frame_tos,
8506 set_gdbarch_deprecated_push_return_address,
8507 set_gdbarch_deprecated_sizeof_call_dummy_words,
8508 set_gdbarch_deprecated_call_dummy_words,
8509 set_gdbarch_deprecated_dummy_write_sp.
8510 Add calls to:
8511 set_gdbarch_push_dummy_call,
8512 set_gdbarch_unwind_dummy_id,
8513 set_gdbarch_return_value.
8514
8515 * config/s390/nm-linux.h: Update comments.
8516 (target_insert_watchpoint, target_remove_watchpoint): Redefine.
8517 (STOPPED_BY_WATCHPOINT): Redefine.
8518 (TARGET_CAN_USE_HARDWARE_WATCHPOINT): Redefine to 1.
8519 (s390_insert_watchpoint, s390_remove_watchpoint): Update prototype.
8520 (s390_stopped_by_watchpoint): Likewise.
8521 (watch_area_cnt): Remove.
8522 * s390-nat.c: Update comments.
8523 (watch_area): Remove typedef.
8524 Global replace watch_area by struct watch_area.
8525 (watch_area_cnt, watch_lo_addr, watch_hi_addr): Remove.
8526 (s390_stopped_by_watchpoint): Remove pid argument,
8527 use s390_inferior_tid. Add short-cut for the no watchpoint case.
8528 (s390_fix_watch_points): Remove pid argument,
8529 use s390_inferior_tid. Recompute area spanned by watchpoints.
8530 (s390_insert_watchpoint, s390_remove_watchpoint): Remove pid
8531 argument. Reimplement.
8532
8533 * config/s390/nm-linux.h: Update comments. Do not include "solib.h".
8534 (KERNEL_U_ADDR, REGISTER_U_ADDR, U_REGS_OFFSET): Remove.
8535 (FETCH_INFERIOR_REGISTERS): Define.
8536 * config/s390/s390.mh (NATDEPFILES): Remove core-aout.o and
8537 core-regset.o.
8538 * config/s390/s390x.mt: Remove.
8539 * config/s390/tm-s390.h: Remove.
8540 * config/s390/tm-linux.h: Do not include "s390/tm-s390.h".
8541 (TARGET_ELF64): Remove.
8542 (SKIP_TRAMPOLINE_CODE): Do not undefine.
8543 * configure.tgt [s390-*-*, s390x-*-*]: Merge into single
8544 s390*-*-* case; always set gdb_target to s390.
8545 * regformats/reg-s390.dat: Remove control registers.
8546 * regformats/reg-s390x.dat: Likewise.
8547 * s390-tdep.h: New file.
8548 * s390-nat.c: Do not include <asm/processor.h> or <value.h>.
8549 Include "inferior.h" and "s390-tdep.h".
8550 Remove private definition of offsetof.
8551 (s390_register_u_addr): Remove.
8552 (regmap_gregset, regmap_fpregset): Define.
8553 (supply_gregset, fill_gregset): Reimplement.
8554 (supply_fpregset, fill_fpregset): Likewise.
8555 (s390_inferior_tid): New function.
8556 (fetch_regs, store_regs, fetch_fpregs, store_fpregs): Likewise.
8557 (fetch_inferior_registers, store_inferior_registers): Likewise.
8558 * s390-tdep.c: Do not define S390_TDEP. Include "defs.h" instead
8559 of <defs.h>. Include "reggroups.h", "regset.h", and "s390-tdep.h".
8560 Global replace of S390_GP0_REGNUM by S390_R0_REGNUM.
8561 Global replace of S390_FP0_REGNUM by S390_F0_REGNUM.
8562 (struct gdbarch_tdep): Define.
8563 (struct s390_register_info): Define.
8564 (s390_register_info): New variable.
8565 (s390_register_name): Reimplement.
8566 (s390_register_type): New function.
8567 (s390_register_raw_size, s390x_register_raw_size): Remove.
8568 (s390_cannot_fetch_register): Remove.
8569 (s390_register_byte): Remove.
8570 (s390_register_virtual_type, s390x_register_virtual_type): Remove.
8571 (s390_dwarf_regmap): New variable.
8572 (s390_dwarf_reg_to_regnum): New function.
8573 (s390_stab_reg_to_regnum): Remove.
8574 (s390_pseudo_register_read, s390_pseudo_register_write): New functions.
8575 (s390x_pseudo_register_read, s390x_pseudo_register_write): Likewise.
8576 (s390_convert_register_p): Likewise.
8577 (s390_register_to_value, s390_value_to_register): Likewise.
8578 (s390_register_reggroup_p): Likewise.
8579 (s390_regmap_gregset, s390x_regmap_gregset, s390_regmap_fpregset,
8580 s390_gregset, s390x_gregset, s390_fpregset): New variables.
8581 (s390_supply_regset, s390_regset_from_core_section): New functions.
8582 (GDB_TARGET_IS_ESAME): Move here from tm-s390.h.
8583 (S390_FPR_SIZE): Likewise.
8584 (S390_GPR_SIZE): Likewise. Redefine in terms of GDB_TARGET_IS_ESAME.
8585 Global replace of DEPRECATED_REGISTER_SIZE by S390_GPR_SIZE.
8586 (S390_NUM_GPRS): Move here from tm-s390.h.
8587 (S390_NUM_FPRS): Likewise.
8588 (s390_in_function_epilogue_p): New function.
8589 (s390_is_sigreturn): Replace S390_PSW_ADDR_SIZE by S390_GPR_SIZE.
8590 Replace S390_PC_REGNUM by S390_PSWA_REGNUM.
8591 (s390_gdbarch_init): Allocate and set up gdbarch_tdep structure.
8592 Replace s390_stab_reg_to_regnum by s390_dwarf_reg_to_regnum.
8593 Replace S390_FP_REGNUM by S390_SP_REGNUM.
8594 Remove calls to:
8595 set_gdbarch_deprecated_max_register_raw_size,
8596 set_gdbarch_deprecated_max_register_virtual_size,
8597 set_gdbarch_deprecated_register_byte,
8598 set_gdbarch_cannot_fetch_register,
8599 set_gdbarch_cannot_store_register,
8600 set_gdbarch_deprecated_register_size,
8601 set_gdbarch_deprecated_register_raw_size,
8602 set_gdbarch_deprecated_register_virtual_size,
8603 set_gdbarch_deprecated_register_virtual_type,
8604 set_gdbarch_deprecated_register_bytes.
8605 Add calls to:
8606 set_gdbarch_num_pseudo_regs,
8607 set_gdbarch_register_type,
8608 set_gdbarch_convert_register_p,
8609 set_gdbarch_register_to_value,
8610 set_gdbarch_value_to_register,
8611 set_gdbarch_register_reggroup_p,
8612 set_gdbarch_regset_from_core_section,
8613 set_gdbarch_pseudo_register_read,
8614 set_gdbarch_pseudo_register_write,
8615 set_gdbarch_in_function_epilogue_p.
8616 * Makefile.in (s390-nat.o, s390-tdep.o): Update dependencies.
8617 (s390_tdep_h): New variable.
8618
8619 2004-02-17 Jim Blandy <jimb@redhat.com>
8620
8621 * findvar.c (value_from_register): If the type has no length, just
8622 return an acceptable value --- don't report an internal error.
8623
8624 * stabsread.c (read_type): If we find any type numbers that are
8625 forward references, complain if the references aren't resolved by
8626 the time we're finished reading.
8627 (cleanup_undefined_types): Make error message more appropriate for
8628 a complaint.
8629
8630 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
8631
8632 * Makefile.in (defs_h): Remove dependency on progress_h.
8633 * defs.h (QUIT): Remove use of PROGRESS macro. Remove include of
8634 progress.h.
8635 * main.c (captured_main): Delete use of START_PROGRESS and
8636 END_PROGRESS.
8637
8638 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
8639
8640 * objfiles.c (terminate_minimal_symbol_table): Add back
8641 initialization of MSYMBOL_TYPE.
8642
8643 2004-02-17 David Mosberger <davidm@hpl.hp.com>
8644
8645 Committed by Andrew Cagney.
8646 * Makefile.in (ia64_tdep_h): New macro.
8647 (ia64-linux-tdep.o): Mention $(ia64_tdep_h).
8648 (ia64-tdep.o): Likewise.
8649 * ia64-tdep.h: New file.
8650 * ia64-tdep.c: Update copyright notice. Include "ia64-tdep.h".
8651 (ia64_linux_sigcontext_register_address): Move decl to ia64-tdep.h.
8652 (ia64_aix_sigcontext_register_address): Likewise.
8653 (ia64_linux_getunwind_table): Delete declaration.
8654 * ia64-linux-tdep.c: Likewise.
8655
8656 2004-02-17 Corinna Vinschen <vinschen@redhat.com>
8657
8658 * sh-tdep.c (sh_dsp_register_sim_regno): Use DSP_Rx_BANK_REGNUM.
8659 * sh-tdep.h: Rename R0_BANK_REGNUM and R7_BANK_REGNUM to
8660 DSP_R0_BANK_REGNUM and DSP_R7_BANK_REGNUM.
8661
8662 2004-02-17 Andrew Cagney <cagney@redhat.com>
8663
8664 * symtab.c (skip_prologue_using_sal): New function.
8665 * symtab.h (skip_prologue_using_sal): Declare.
8666 * frv-tdep.c: Include "symtab.h".
8667 (skip_prologue_using_sal): Delete function.
8668 * mips-tdep.c (skip_prologue_using_sal): Delete function.
8669 * rs6000-tdep.c (refine_prologue_limit): Mention
8670 skip_prologue_using_sal.
8671 * ia64-tdep.c (refine_prologue_limit): Ditto.
8672 * Makefile.in: Update dependencies.
8673
8674 2004-02-16 Andrew Cagney <cagney@redhat.com>
8675
8676 * config/alpha/tm-nbsd.h: Update copyright, delete #undef
8677 START_INFERIOR_TRAPS_EXPECTED.
8678 * config/alpha/tm-fbsd.h: Update copyright, delete #undef
8679 START_INFERIOR_TRAPS_EXPECTED.
8680 * config/alpha/tm-alphalinux.h (START_INFERIOR_TRAPS_EXPECTED):
8681 Delete macro.
8682 * config/alpha/tm-alpha.h (START_INFERIOR_TRAPS_EXPECTED): Delete
8683 macro, moved to "nm-osf.h". Update copyright.
8684 * config/alpha/nm-osf.h (START_INFERIOR_TRAPS_EXPECTED): Define,
8685 update copyright.
8686
8687 * gdbarch.sh (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION): Predicate
8688 and function replacing FRAMELESS_FUNCTION_INVOCATION.
8689 * blockframe.c (legacy_frameless_look_for_prologue): Rename
8690 frameless_look_for_prologue.
8691 * frame.h (legacy_frameless_look_for_prologue): Rename
8692 frameless_look_for_prologue.
8693 * gdbarch.h, gdbarch.c: Re-generate.
8694 * sh64-tdep.c (sh64_gdbarch_init): Update.
8695 * sh-tdep.c (sh_gdbarch_init): Update.
8696 * s390-tdep.c (s390_gdbarch_init): Update.
8697 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
8698 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
8699 * m68k-tdep.c (m68k_gdbarch_init): Update.
8700 (delta68_frame_args_address): Update.
8701 * m32r-tdep.c (m32r_gdbarch_init): Update.
8702 * hppa-tdep.c (hppa_gdbarch_init): Update.
8703 * h8300-tdep.c (h8300_gdbarch_init): Update.
8704 * frv-tdep.c (frv_gdbarch_init): Update.
8705 (frv_frameless_function_invocation): Update.
8706 * cris-tdep.c (cris_gdbarch_init): Update.
8707 (cris_frameless_function_invocation): Update.
8708 * avr-tdep.c (avr_gdbarch_init): Update.
8709 * arm-tdep.c (arm_gdbarch_init): Update.
8710 * stack.c (frame_info): Update, call predicate.
8711 * rs6000-tdep.c (rs6000_frame_chain): Update, call predicate..
8712 * frame.c (legacy_get_prev_frame): Update, call predicate..
8713 * arch-utils.c (generic_frameless_function_invocation_not): Delete.
8714 * arch-utils.h (generic_frameless_function_invocation_not): Delete.
8715 * alpha-tdep.c (alpha_gdbarch_init): Do not set frameless function
8716 invocation.
8717 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
8718 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
8719 * vax-tdep.c (vax_gdbarch_init): Ditto.
8720
8721 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): Delete unused
8722 function.
8723
8724 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
8725
8726 * objfiles.c (terminate_minimal_symbol_table): Remove unnecessary
8727 initializations.
8728
8729 2004-02-16 Andrew Cagney <cagney@redhat.com>
8730
8731 * tui/tui-windata.c: Include "gdb_string.h".
8732 * tui/tui-source.c, tui/tui-winsource.c: Ditto.
8733 * tui/tui-layout.c, tui/tui-command.c: Ditto.
8734 * Makefile.in: Update dependencies.
8735
8736 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
8737
8738 * Makefile.in (infrun.o): Add $(gdb_assert_h).
8739 * infrun.c: Include "gdb_assert.h".
8740 (singlestep_ptid, saved_singlestep_ptid)
8741 (stepping_past_singlestep_breakpoint): New variables.
8742 (resume): Set singlestep_ptid. Check for singlestep thread
8743 hop.
8744 (init_wait_for_inferior): Clear stepping_past_singlestep_breakpoint.
8745 (handle_inferior_event): Handle singlestep thread hop.
8746
8747 2004-02-16 Andrew Cagney <cagney@redhat.com>
8748
8749 * dwarf2-frame.c (dwarf2_frame_ops): New function.
8750 (dwarf2_frame_set_init_reg): Use, instead of gdbarch_data.
8751 (dwarf2_frame_init_reg): Ditto.
8752
8753 * printcmd.c (display_command): Check that EXP isn't NULL. Fix
8754 suggested by Joshua Neuheisel
8755
8756 * configure.in: Always check for curses, including pdcurses.
8757 Warn, instead of error, when no curses are found. Enable TUI when
8758 curses is available.
8759 * configure: Re-generate.
8760
8761 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
8762
8763 * sh-tdep.c (sh_register_convert_to_virtual): Rename from
8764 sh_sh4_register_convert_to_virtual.
8765 (sh_register_convert_to_raw): Rename from
8766 sh_sh4_register_convert_to_raw.
8767 (sh_pseudo_register_read): Accomodate above name change.
8768 (sh_pseudo_register_write): Ditto.
8769
8770 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
8771
8772 * sh-tdep.c (sh_generic_register_name): Remove.
8773 (sh_gdbarch_init): Use sh_sh_register_name in default case.
8774
8775 2004-02-15 Andrew Cagney <cagney@redhat.com>
8776
8777 * configure.in (build_warnings): Add -Wunused-function.
8778 * configure: Re-generate.
8779
8780 * config/tm-lynx.h (START_INFERIOR_TRAPS_EXPECTED): Delete macro.
8781 * config/rs6000/tm-rs6000.h (START_INFERIOR_TRAPS_EXPECTED): Ditto.
8782
8783 * procfs.c (procfs_init_inferior): Assume that
8784 START_INFERIOR_TRAPS_EXPECTED is defined.
8785 * config/ns32k/nbsdaout.mt (TM_FILE): Set to tm-ns32k.h.
8786 * config/ns32k/tm-nbsd.h: Delete file,
8787 START_INFERIOR_TRAPS_EXPECTED already defined as 2.
8788
8789 * config/vax/tm-vaxbsd.h: Do not include "tm-vax.h".
8790 * config/vax/tm-vax.h: Delete file.
8791
8792 * config/mips/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8793 * config/i386/tm-i386bsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8794 * config/arm/tm-linux.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8795 * config/vax/tm-vaxbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8796 * vax-tdep.c (vax_sigtramp_saved_pc): Inline only reference.
8797 * config/ns32k/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
8798 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): Inline only reference.
8799
8800 2004-02-15 Mark Kettenis <kettenis@gnu.org>
8801
8802 * dwarf2-frame.h (dwarf2_frame_set_init_reg): New prototype.
8803 * dwarf2-frame.c (dwarf2_frame_data): New variable.
8804 (struct dwarf2_frame_ops): New.
8805 (dwarf2_frame_default_init_reg): New function, based on
8806 dwarf2_frame_init_reg.
8807 (dwarf2_frame_init, dwarf2_frame_set_init_reg): New function.
8808 (dwarf2_frame_init_reg): Call architecture-specific function.
8809 (dwarf2_frame_objfile_data): Renamed from dwarf2_frame_data.
8810 (dwarf2_frame_find_fde, add_fde): Use dwarf2_frame_objfile_data
8811 instead of dwarf2_frame_data.
8812 (_initialize_dwarf2_frame): Initailize new dwarf2_frame_data.
8813 Initialize dwarf2_frame_objfile instead of old dwarf2_frame_data.
8814
8815 2004-02-15 Andrew Cagney <cagney@redhat.com>
8816
8817 * gdbarch.sh (deprecated_register_gdbarch_swap): Rename
8818 register_gdbarch_swap.
8819 (DEPRECATED_REGISTER_GDBARCH_SWAP): Rename REGISTER_GDBARCH_SWAP.
8820 * f-lang.c (_initialize_f_language): Update, use
8821 DEPRECATED_REGISTER_GDBARCH_SWAP.
8822 * remote.c (_initialize_remote): Ditto.
8823 * regcache.c (_initialize_regcache): Ditto.
8824 * parse.c (_initialize_parse): Ditto.
8825 * infrun.c (_initialize_infrun): Ditto.
8826 * mi/mi-main.c (_initialize_mi_main): Ditto.
8827 * gdbtypes.c (_initialize_gdbtypes): Ditto.
8828
8829 * solib.c (solib_map_sections): Use bfd_set_cacheable instead of
8830 poking .cacheable directly.
8831 * symfile.c (symfile_bfd_open): Ditto.
8832
8833 * Makefile.in: Update all dependencies.
8834
8835 * Makefile.in: (.SUFFIXES): Add ".l" and ".y".
8836 (.y.c, .l.c): Specify implicit rule. Instead of .tab.c, generate
8837 .c. Update references. Delete unnecessary .tab.c and -lex.c rules.
8838 (ada-exp.o, c-exp.o, f-exp.o): Replace ada-exp.tab.o et.al. rule.
8839 (jv-exp.o, m2-exp.o, objc-exp.o, p-exp.o): Similar.
8840
8841 2004-02-14 Andrew Cagney <cagney@redhat.com>
8842
8843 * arch-utils.c (legacy_convert_register_p): Check
8844 DEPRECATED_REGISTER_CONVERTIBLE_P.
8845 * findvar.c (value_of_register): Ditto.
8846
8847 * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Add predicate.
8848 * gdbarch.h, gdbarch.c: Re-generate.
8849 * arch-utils.c (deprecated_register_convertible_not): Delete.
8850 * arch-utils.h (deprecated_register_convertible_not): Delete.
8851 * mi/mi-main.c (get_register): Update. Update copyright.
8852 * infcmd.c (default_print_registers_info): Update.
8853
8854 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
8855 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Delete.
8856 (DEPRECATED_CALL_DUMMY_ADDRESS): Delete.
8857 * gdbarch.h, gdbarch.c: Re-generate.
8858 * frame.c (deprecated_get_next_frame_hack): Delete function.
8859 * frame.h (deprecated_get_next_frame_hack): Delete declaration.
8860 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
8861 Update.
8862 * infcall.c (call_function_by_hand): Update.
8863
8864 2004-02-14 Elena Zannoni <ezannoni@redhat.com>
8865
8866 * symfile.c (init_entry_point_info, entry_point_address): Move
8867 from here...
8868 * objfiles.c (init_entry_point_info, entry_point_address):..to
8869 here.
8870 * symfile.h (init_entry_point_info, entry_point_address): Remove
8871 prototypes.
8872 * objfiles.h (init_entry_point_info, entry_point_address):Add
8873 prototypes.
8874 * cris-tdep.c: Remove include of symfile.h. Add include of
8875 objfiles.h.
8876 * infcall.c: Ditto.
8877 * mcore-tdep.c: Ditto.
8878 * mn10300-tdep.c: Ditto.
8879 * sh64-tdep.c: Ditto.
8880 * v850-tdep.c: Ditto.
8881 * arm-tdep.c: Remove include of symfile.h.
8882 * blockframe.c: Ditto.
8883 * coffread.c: Ditto.
8884 * dbxread.c: Ditto.
8885 * dwarf2read.c: Ditto.
8886 * dwarfread.c: Ditto.
8887 * frv-tdep.c: Ditto.
8888 * ia64-tdep.c: Ditto.
8889 * mdebugread.c: Ditto.
8890 * mipsread.c: Ditto.
8891 * rs6000-tdep.c: Ditto.
8892 * s390-tdep.c: Ditto.
8893 * sh-tdep.c: Ditto.
8894 * xstormy16-tdep.c: Ditto.
8895 * gdbarch.sh: Remove include of symfile.h.
8896 * gdbarch.c: Regenerate.
8897 * solib-irix.c (enable_break): Use entry_point_address().
8898 Add comment about include file.
8899 * xcoffread.c: Add comment about include file.
8900 * Makefile.in (arm-tdep.o, blockframe.o, coffread.o, cris-tdep.o)
8901 (dbxread.o, dwarf2read.o, dwarfread.o, frv-tdep.o, gdbarch.o)
8902 (ia64-tdep.o, infcall.o, mcore-tdep.o, mdebugread.o, mipsread.o)
8903 (mn10300-tdep.o, rs6000-nat.o, s390-tdep.o, sh64-tdep.o)
8904 (sh-tdep.o, v850-tdep.o, xstormy16-tdep.o): Update dependencies.
8905
8906 2004-02-13 Andrew Cagney <cagney@redhat.com>
8907
8908 * corelow.c (core_xfer_partial): Use "struct bfd_section".
8909 * config/sparc/nm-nbsd.h (struct target_ops): Declare, update
8910 copyright.
8911 * mips-linux-tdep.c: Use "GNU/Linux", update copyright.
8912
8913 2004-02-12 Fred Fish <fnf@redhat.com>
8914
8915 * m68hc11-tdep.c (m68hc11_gdbarch_init): Remove duplicate call to
8916 set_gdbarch_store_return_value.
8917
8918 2004-02-12 Andrew Cagney <cagney@redhat.com>
8919
8920 * remote-rdi.c (arm_rdi_start_remote): Delete unused function.
8921 (arm_rdi_interrupt, arm_rdi_interrupt_twice): Ditto.
8922 (interrupt_query): Ditto.
8923 (ofunc): Delete unused variable.
8924 * cris-tdep.c (cris_abi): Delete unused function.
8925 (reg_pop_op, move_reg_to_mem_index_inc_op): Ditto.
8926 (cris_get_wide_opcode, cris_get_short_size): Ditto.
8927 (cris_get_asr_quick_shift_steps): Ditto.
8928 (cris_skip_prologue_frameless_p): Ditto.
8929 * arm-tdep.c (arm_push_return_address): Delete unused function.
8930 (arm_push_dummy_frame, arm_fix_call_dummy): Ditto.
8931 * rs6000-tdep.c (rs6000_pc_in_call_dummy): Delete unused function.
8932 * s390-tdep.c (s390_function_start): Delete unused function.
8933
8934 2004-02-12 Andrew Cagney <cagney@redhat.com>
8935
8936 * gdbarch.sh (PROLOGUE_FRAMELESS_P): Delete.
8937 gdbarch.h, gdbarch.c: Re-generate.
8938 * cris-tdep.c (cris_gdbarch_init): Do not set prologue_frameless_p
8939 to generic_prologue_frameless_p.
8940 * arch-utils.h (generic_prologue_frameless_p): Delete declaration.
8941 * arch-utils.c (generic_prologue_frameless_p): Delete function.
8942
8943 2004-02-11 Daniel Jacobowitz <drow@mvista.com>
8944
8945 * mips-linux-tdep.c: Include "frame.h".
8946 (mips_linux_in_dynsym_stub, mips_linux_in_dynsym_resolve_code)
8947 (mips_linux_skip_resolver): New functions.
8948 (mips_linux_init_abi): Call set_gdbarch_skip_solib_resolver
8949 and set_gdbarch_in_solib_call_trampoline.
8950 * mips-tdep.c (mips_gdbarch_init): Move gdbarch_init_osabi call
8951 to after set_gdbarch_in_solib_return_trampoline. Only set the
8952 solib hooks to mips16 functions if the OS ABI is unknown.
8953 * config/mips/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Undefine after
8954 including "config/tm-linux.h".
8955 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Define.
8956 * Makefile.in (mips-linux-tdep.o): Update.
8957
8958 2004-02-11 David Carlton <carlton@kealia.com>
8959
8960 * linespec.c (decode_compound): Only look for a class symbol when
8961 considering all but the rightmost component.
8962
8963 2004-02-11 Andrew Cagney <cagney@redhat.com>
8964
8965 * hppa-tdep.c (hppa_gdbarch_init): Re-order so that the frame and
8966 abi code are are separatly grouped.
8967
8968 2004-02-11 Andrew Cagney <cagney@redhat.com>
8969
8970 * gdbarch.sh (FRAME_ARGS_SKIP): Default to 0.
8971 * gdbarch.h, gdbarch.c: Re-generate.
8972 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
8973 * v850-tdep.c (v850_gdbarch_init): Update.
8974 * sh64-tdep.c (sh64_gdbarch_init): Update.
8975 * sh-tdep.c (sh_gdbarch_init): Update.
8976 * s390-tdep.c (s390_gdbarch_init): Update.
8977 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
8978 * mips-tdep.c (mips_gdbarch_init): Update.
8979 * mcore-tdep.c (mcore_gdbarch_init): Update.
8980 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
8981 * m32r-tdep.c (m32r_gdbarch_init): Update.
8982 * ia64-tdep.c (ia64_gdbarch_init): Update.
8983 * hppa-tdep.c (hppa_gdbarch_init): Update.
8984 * h8300-tdep.c (h8300_gdbarch_init): Update.
8985 * frv-tdep.c (frv_gdbarch_init): Update.
8986 * d10v-tdep.c (d10v_gdbarch_init): Update.
8987 * cris-tdep.c (cris_gdbarch_init): Update.
8988 * avr-tdep.c (avr_gdbarch_init): Update.
8989 * arm-tdep.c (arm_gdbarch_init): Update.
8990 * alpha-tdep.c (alpha_gdbarch_init): Update.
8991
8992 2004-02-11 Corinna Vinschen <vinschen@redhat.com>
8993
8994 * sh-tdep.c (sh_sh3_dsp_register_name): Fix formatting. Add missing
8995 comma.
8996 (sh_sh4al_dsp_register_name): Ditto.
8997
8998 2004-02-10 Andrew Cagney <cagney@redhat.com>
8999
9000 * mips-tdep.c (mips_gdbarch_init): Delete deprecated frame code.
9001 (mips_init_frame_pc_first): Delete function.
9002 (mips_frame_saved_pc): Delete function.
9003 (mips_frame_chain): Delete function.
9004 (mips_init_extra_frame_info): Delete function.
9005 (mips_xfer_register): Delete unused variable "reg".
9006 (mips_n32n64_push_dummy_call): Delete unused variable "valbuf".
9007 (mips_n32n64_return_value): Delete unused variable "reg".
9008 (mips_n32n64_return_value): Delete unused variable "pos".
9009 (mips_o32_push_dummy_call): Delete unused variable "valbuf".
9010 (mips_o32_return_value): Delete unused variable "pos".
9011 (mips_o64_push_dummy_call): Delete unused variable "valbuf".
9012 (mips_print_fp_register): Delete unused variable "namelen"
9013 (mips_print_fp_register): Delete unused variable "flt2"
9014 (get_frame_pointer): Delete function.
9015 (cached_proc_desc): Delete static variable.
9016 (mips_pop_frame): Delete function.
9017 (mips_find_saved_regs): Delete function.
9018 (mips_get_saved_register): Delete function.
9019 (mips_saved_pc_after_call): Delete function.
9020 (SIGFRAME_BASE): Delete macro.
9021 (SIGFRAME_FPREGSAVE_OFF): Delete macro.
9022 (SIGFRAME_PC_OFF): Delete macro.
9023 (SIGFRAME_REGSAVE_OFF): Delete macro.
9024 (mips_dump_tdep): Do not print deleted macro definitions.
9025
9026 2004-02-10 Andrew Cagney <cagney@redhat.com>
9027
9028 * Makefile.in (SFILES): Remove explictly listed tui files.
9029 (SUBDIR_GDBTK_SRCS): Fix path to gdbtk-interp.c.
9030
9031 2004-02-10 Jeff Johnston <jjohnstn@redhat.com>
9032
9033 * ia64-tdep.c (ia64_frame_this_id): Fix tracing print statement
9034 to use paddr functions to format ia64 addresses and long values.
9035 (ia64_frame_prev_register, ia64_sigtramp_frame_this_id): Ditto.
9036 (ia64_sigtramp_frame_prev_register, ia64_access_reg): Ditto.
9037 (get_kernel_table, ia64_find_proc_info_x): Ditto.
9038 (ia64_get_dyn_info_list, ia64_libunwind_this_frame_id): Ditto.
9039 (ia64_libunwind_frame_prev_register, ia64_unwind_dummy_id): Ditto.
9040
9041 2004-02-10 Andrew Cagney <cagney@redhat.com>
9042
9043 * defs.h: Do not include "tui.h".
9044 * gdb_curses.h: New file.
9045 * tui/tui-hooks.h: New file.
9046 * tui/tui.h (tui_update_all_exec_infos): Delete declaration.
9047 (tui_install_hooks, tui_remove_hooks): Delete declarations.
9048 (tui_initialize_io): Delete declaration.
9049 (tui_initialize_readline: Delete redundant declaration.
9050 (struct tui_point): Delete definition.
9051 * tui/tui-data.h (struct tui_point): Define.
9052 * cli/cli-decode.c [TUI]: Include "tui/tui.h".
9053 * utils.c: Include "tui/tui.h".
9054 * tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
9055 * printcmd.c [TUI]: Include "tui/tui.h".
9056 * cli/cli-cmds.c [TUI]: Include "tui/tui.h".
9057 * tui/tui-command.c: Include "gdb_curses.h".
9058 * tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
9059 * tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
9060 * tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
9061 * tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
9062 * tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
9063 * Makefile.in: Update all dependencies.
9064 (tui_hooks_h, gdb_curses_h): Define.
9065 (SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
9066
9067 2004-02-10 Elena Zannoni <ezannoni@redhat.com>
9068
9069 * objfiles.h (struct objfile): Remove unused fields auxf1 and
9070 auxf2. Add comments about some other rarely used fields.
9071
9072 2004-02-10 Andrew Cagney <cagney@redhat.com>
9073
9074 * Makefile.in (init.c): Fix script removing duplicates. Problem
9075 reported by Peter Schauer.
9076
9077 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
9078
9079 * bcache.c (bcache_xmalloc): Use obstack_init instead of
9080 obstack_specify_allocation.
9081 * objfiles.c (allocate_objfile): Ditto.
9082 * solib-sunos.c (solib_add_common_symbols)
9083 (allocate_rt_common_objfile): Ditto.
9084 * symfile.c (reread_symbols): Ditto.
9085 * gdb_obstack.h: Add comment.
9086
9087 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
9088
9089 * linespec.c (decode_line_1, locate_first_half)
9090 (decode_compound, lookup_prefix_sym): Update comments. Delete old
9091 commented out code.
9092
9093 2004-02-09 Daniel Jacobowitz <drow@mvista.com>
9094
9095 * cp-namespace.c (check_one_possible_namespace_symbol): Don't use
9096 obstack_free.
9097
9098 2004-02-09 Andrew Cagney <cagney@redhat.com>
9099
9100 * blockframe.c (find_pc_partial_function): If find_pc_overlay
9101 fails, try find_pc_section. Fix PR c++/1267.
9102 * minsyms.c (lookup_minimal_symbol_by_pc): Use find_pc_section
9103 instead of find_pc_mapped_section.
9104 (lookup_minimal_symbol_by_pc_section): If the SECTION is NULL, do
9105 not default to the section containing PC. Fix PR symtab/1519.
9106
9107 2004-02-09 Andrew Cagney <cagney@redhat.com>
9108
9109 * Makefile.in (mips-tdep.o): Update dependencies.
9110 * mips-tdep.c: Include "frame-unwind.h", "frame-base.h" and
9111 "trad-frame.h".
9112 (mips_unwind_pc): Return the pseudo PC register.
9113 (mips_unwind_dummy_id): New function.
9114 (mips16_fetch_instruction): New function.
9115 (mips32_fetch_instruction): New function.
9116 (struct mips_frame_cache): Define.
9117 (mips_mdebug_frame_cache): New function.
9118 (mips_mdebug_frame_this_id): New function.
9119 (mips_mdebug_frame_prev_register): New function.
9120 (mips_mdebug_frame_unwind): Define.
9121 (mips_mdebug_frame_sniffer): New function.
9122 (mips_mdebug_frame_base_address): New function.
9123 (mips_mdebug_frame_base): Define.
9124 (mips_mdebug_frame_base_sniffer): New function.
9125 (mips_gdbarch_init): Append unwind and base sniffers. Set
9126 unwind_dummy_id.
9127
9128 2004-02-08 Andrew Cagney <cagney@redhat.com>
9129
9130 * frame.c: Print both the register number and name.
9131
9132 * Makefile.in (init.c): Eliminate duplicates. Combine two greps
9133 and a sed into a single sed. Make .c and .o patterns more robust.
9134 (OBS): Delete.
9135 (INIT_FILES): Replace OBS with COMMON_OBS.
9136 (COMMON_OBS): Move DEPFILES and YYOBJ to start of definition.
9137
9138 2004-02-08 Mark Kettenis <kettenis@gnu.org>
9139
9140 * sparc-nat.c (sparc_xfer_wcookie): Try to fetch the cookie using
9141 the PT_WCOOKIE request.
9142
9143 2004-02-08 Andrew Cagney <cagney@redhat.com>
9144
9145 * mips-tdep.c (mips_unwind_pc): New function.
9146 (mips_gdbarch_init): Set mips_unwind_pc.
9147
9148 * frame.c (legacy_saved_regs_this_id): Return a null frame ID.
9149 (get_frame_id): Allow the UNKNOWN_FRAME.
9150 (frame_register_unwind, get_frame_type): Ditto.
9151
9152 * frame.c (legacy_frame_p): Check for DEPRECATED_TARGET_READ_FP_P
9153 and DEPRECATED_FP_REGNUM. Don't assume that the lack of
9154 unwind_dummy_id indicates a legacy frame.
9155
9156 * configure.in (CONFIG_LIB_OBS): Replace with CONFIG_OBS.
9157 * configure: Re-generate.
9158
9159 * mips-tdep.c (mips_gdbarch_init): Group deprecated frame unwind
9160 methods.
9161
9162 2004-02-08 Andrew Cagney <cagney@redhat.com>
9163
9164 * configure.in (CONFIG_ALL): Set to Makefile target, and not
9165 makefile macro.
9166 * configure: Re-generate.
9167 (CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Ditto.
9168 * Makefile.in (SUBDIR_CLI_CLEAN): Delete.
9169 (SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): Delete.
9170 (SUBDIR_CLI_ALL, SUBDIR_GDBTK_ALL): Delete.
9171 (SUBDIR_GDBTK_CLEAN, SUBDIR_GDBTK_INSTALL): Delete.
9172 (SUBDIR_GDBTK_UNINSTALL, SUBDIR_MI_ALL): Delete.
9173 (SUBDIR_MI_CLEAN, SUBDIR_MI_INSTALL): Delete.
9174 (SUBDIR_MI_UNINSTALL, SUBDIR_TUI_ALL): Delete.
9175 (SUBDIR_TUI_CLEAN, SUBDIR_TUI_INSTALL): Delete.
9176 (SUBDIR_TUI_UNINSTALL, SUBDIR_CLI_CLEAN): Delete.
9177
9178 2004-02-07 Andrew Cagney <cagney@redhat.com>
9179
9180 * Makefile.in: Update all dependencies.
9181
9182 * configure.in (CONFIG_INITS, CONFIG_LIB_OBS): Delete.
9183 * configure: Re-generate.
9184 * Makefile.in (INIT_FILES): Replace CONFIG_INITS with CONFIG_SRCS.
9185 (CONFIG_LIB_OBS, CONFIG_INITS): Delete.
9186 (COMMON_OBS): Add "main.o" and "annotate.o".
9187 (ANNOTATE_OBS): Delete.
9188 (OBS): Remove ANNOTATE_OBS.
9189 (DEPFILES): Replace CONFIG_LIB_OBS with CONFIG_LIB_OBS, remove
9190 CONFIG_INITS.
9191 (gdb$(EXEEXT), insight$(EXEEXT)): Do not depend on, or link
9192 against CONFIG_OBS and "main.o".
9193 (SUBDIR_CLI_INITS, SUBDIR_MI_INITS): Delete.
9194 (SUBDIR_TUI_INITS, SUBDIR_GDBTK_INITS): Delete.
9195
9196 * tui/tui-command.c: Include "gdb_string.h", delete register
9197 attribute, use ISO-C function signatures.
9198 * tui/tui-disasm.c, tui/tui-file.c, tui/tui-io.c: Ditto.
9199 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
9200 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Ditto.
9201 * tui/tui.c: Ditto.
9202
9203 * tui/tui-command.c: Change variable and function names to lower
9204 case.
9205 * tui/tui-data.c, tui/tui-disasm.c: Ditto.
9206 * tui/tui-hooks.c, tui/tui-io.c, tui/tui-layout.c: Ditto.
9207 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
9208 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9209 * tui/tui-winsource.c, tui/tui.c: Ditto.
9210
9211 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9212
9213 * buildsym.c (free_pending_blocks, finish_block)
9214 (record_pending_block, make_blockvector, end_symtab): Replace
9215 symbol_obstack with objfile_obstack.
9216 * coffread.c (process_coff_symbol, coff_read_struct_type)
9217 (coff_read_enum_type): Ditto.
9218 * cp-namespace.c (initialize_namespace_symtab)
9219 (check_one_possible_namespace_symbol): Ditto.
9220 * dwarf2read.c (new_symbol, dwarf2_const_value, macro_start_file)
9221 (dwarf2_symbol_mark_computed): Ditto.
9222 * dwarfread.c (enum_type, new_symbol, synthesize_typedef): Ditto.
9223 * elfread.c (elf_symtab_read): Ditto.
9224 * hpread.c (hpread_symfile_init, hpread_symfile_init)
9225 (hpread_read_enum_type, hpread_read_function_type)
9226 (hpread_read_doc_function_type, hpread_process_one_debug_symbol):
9227 Ditto.
9228 * jv-lang.c (get_java_class_symtab, add_class_symbol)
9229 (java_link_class_type): Ditto.
9230 * mdebugread.c (parse_symbol, psymtab_to_symtab_1, new_symtab)
9231 (new_symbol): Ditto.
9232 * minsyms.c (install_minimal_symbols): Ditto.
9233 * objfiles.c (allocate_objfile): Remove init of symbol_obstack.
9234 (terminate_minimal_symbol_table): Replace symbol_obstack with
9235 objfile_obstack.
9236 (free_objfile): Remove freeing of symbol_obstack.
9237 * objfiles.h: Remove symbol_obstack field.
9238 * pa64solib.c (add_to_solist): Replace symbol_obstack with
9239 objfile_obstack.
9240 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
9241 symbol_obstack.
9242 (solib_add_common_symbols): Replace symbol_obstack with
9243 objfile_obstack.
9244 * somsolib.c (som_solib_add): Ditto.
9245 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
9246 (common_block_start, common_block_end): Ditto.
9247 * symfile.c (reread_symbols): Remove freeing and init of
9248 symbol_obstack.
9249 (allocate_symtab): Rename symbol_obstack to objfile_obstack.
9250 * symfile.h: Update comment.
9251 * symmisc.c (print_objfile_statistics): Remove symbol_obstack
9252 stats printing.
9253 * symtab.c (symbol_set_names): Replace symbol_obstack with
9254 objfile_obstack.
9255 * symtab.h (struct general_symbol_info, struct minimal_symbol):
9256 Update comments.
9257 * xcoffread.c (read_xcoff_symtab, SYMBOL_DUP, SYMNAME_ALLOC)
9258 (init_stringtab, xcoff_initial_scan): Replace symbol_obstack with
9259 objfile_obstack.
9260
9261 2004-02-07 Andrew Cagney <cagney@redhat.com>
9262
9263 * tui/tui.h: Do not include <stdarg.h>, <string.h>, and
9264 "ansidecl.h". Do not undef "reg" and "chtype". Fix case of
9265 fields and variables.
9266 * tui/tui-wingeneral.h (m_beVisible): Delete macro.
9267 (m_beInvisible): Delete macro.
9268 * tui/tui-data.h: Fix case case fields and variables.
9269 (m_genWinPtrIsNull): Delete macro.
9270 (tui_win_list): Rename winList.
9271 (TUI_SRC_WIN): Rename srcWin.
9272 (TUI_DISASM_WIN): Rename disassemWin.
9273 (TUI_DATA_WIN): Rename dataWin.
9274 (TUI_CMD_WIN): Rename cmdWin.
9275 (m_genWinPtrNotNull): Delete macro.
9276 (m_winPtrIsNull): Delete macro.
9277 (m_winPtrNotNull): Delete macro.
9278 (tui_win_is_source_type): Replace m_winIsSourceType
9279 (tui_win_is_auxillary): Replace m_winIsAuzillary.
9280 (tui_win_has_locator): Replace m_hasLocator.
9281 (tui_set_win_highlight): Replace m_setWinHighlightOn and
9282 m_setWinHighlightOff.
9283 * tui/tui-data.c: Update references.
9284 (tui_win_is_source_type, tui_set_win_highlight): New functions.
9285 (tui_win_has_locator, tui_win_is_auxillary): New functions.
9286 * tui/tui-command.c, tui/tui-disasm.c: Update references.
9287 * tui/tui-io.c, tui/tui-layout.c, tui/tui-regs.c: Ditto.
9288 * tui/tui-regs.h, tui/tui-source.c, tui/tui-stack.c: Ditto.
9289 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9290 * tui/tui-winsource.c, tui/tui.c: Ditto.
9291
9292 2004-02-07 Mark Kettenis <kettenis@gnu.org>
9293
9294 * sparc-tdep.h (sparc_fetch_wcookie): New prototype.
9295 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Handle
9296 StackGhost.
9297
9298 * sparc-tdep.c (sparc32_frame_prev_register): Rename local
9299 variable `i6' to `i7'.
9300 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
9301
9302 2004-02-07 Andrew Cagney <cagney@redhat.com>
9303
9304 * tui/tui.h (Opaque, OpaquePtr OpaqueList): Delete definition.
9305 (TuiPoint, TuiPointPtr): Ditto.
9306 (TuiStatus, TuiStatusPtr): Ditto.
9307 (TuiWinType, TuiWinTypePtr): Ditto.
9308 (struct tui_point): Rename _TuiPoint.
9309 (tui_get_low_disassembly_address): Rename
9310 tuiGetLowDisassemblyAddress.
9311 (tui_update_all_exec_infos): Rename tuiUpdateAllExecInfos.
9312 (tuiFree): Delete declaration.
9313 (OpaqueFuncPtr, TuiOpaqueFuncPtr): Delete definitions.
9314 (TuiVoidFuncPtr, TuiIntFuncPtr): Delete definitions.
9315 * tui/tui.c (tuiFree): Delete function.
9316 * cli/cli-cmds.c (disassemble_command): Update references.
9317 * tui/tui-data.c, tui/tui-data.h, tui/tui-disasm.c: Ditto.
9318 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
9319 * tui/tui-stack.c, tui/tui-win.c, tui/tui-wingeneral.c: Ditto.
9320 * tui/tui-winsource.c: Ditto.
9321
9322 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9323
9324 * dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
9325 coffstab_build_psymtabs, elfstab_build_psymtabs)
9326 (stabsect_build_psymtabs): Replace psymbol_obstack with
9327 objfile_obstack.
9328 * dwarf2-frame.c (decode_frame_entry_1): Ditto.
9329 * dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
9330 Ditto.
9331 * dwarfread.c (scan_compilation_units): Ditto.
9332 * elfread.c (elfstab_offset_sections): Ditto.
9333 * hppa-tdep.c (read_unwind_info): Ditto.
9334 * hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
9335 (hpread_end_psymtab): Ditto.
9336 * mdebugread.c (mdebug_build_psymtabs, add_pending)
9337 (parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
9338 Ditto.
9339 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
9340 * objfiles.c (add_to_objfile_sections)
9341 (build_objfile_section_table): Ditto.
9342 (allocate_objfile): Remove init of psymbol_obstack.
9343 (free_objfile): Remove freeing of psymbol_obstack.
9344 * objfiles.h (struct objfile): Remove field
9345 psymbol_obstack. Update comments.
9346 * pa64solib.c (pa64_solib_add_solib_objfile): Replace
9347 psymbol_obstack with objfile_obstack.
9348 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
9349 psymbol_obstack.
9350 * somread.c (som_symfile_offsets, init_import_symbols)
9351 (init_export_symbols): Replace psymbol_obstack with
9352 objfile_obstack.
9353 * somsolib.c (som_solib_add_solib_objfile): Ditto.
9354 * symfile.c (default_symfile_offsets, syms_from_objfile)
9355 (reread_symbols): Remove freeing and init of psymbol_obstack.
9356 (cashier_psymtab): Update comment.
9357 * symmisc.c (print_objfile_statistics): Don't report stats for
9358 psymbol obstack.
9359 * symtab.h (struct general_symbol_info, struct partial_symtab):
9360 Update comments.
9361 * xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
9362 (xcoff_symfile_offsets): Replace psymbol_obstack with
9363 objfile_obstack.
9364
9365 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
9366
9367 * objfiles.h (struct objfile): Add objfile_obstack field.
9368 Remove type_obstack field.
9369
9370 * dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
9371 read_structure_scope read_enumeration, new_symbol): Replace
9372 type_obstack with objfile_obstack.
9373 * dwarfread.c (struct_type, enum_type): Ditto.
9374 * gdbtypes.c (alloc_type, alloc_type_instance, init_type)
9375 (lookup_fundamental_type): Ditto.
9376 * gdbtypes.h (TYPE_ALLOC): Ditto.
9377 * hpread.c (hpread_read_enum_type, hpread_read_function_type)
9378 (hpread_read_doc_function_type, hpread_read_struct_type)
9379 (fix_static_member_physnames, hpread_read_array_type)
9380 (hpread_read_subrange_type, hpread_type_lookup): Ditto.
9381 * jv-lang.c (java_lookup_class, type_from_class, type_from_class)
9382 (java_link_class_type): Ditto.
9383 * mdebugread.c (parse_type): Ditto.
9384 * objfiles.c (allocate_objfile, free_objfile): Ditto.
9385 * solib-sunos.c (solib_add_common_symbols): Ditto.
9386 * stabsread.c (define_symbol, read_type, read_member_functions,
9387 read_cpp_abbrev, read_one_struct_field): Ditto.
9388 * symfile.c (reread_symbols): Ditto.
9389 * symmisc.c (print_objfile_statistics): Ditto.
9390
9391 2004-02-07 Andrew Cagney <cagney@redhat.com>
9392
9393 * tui/tui-data.h (tui_win_element): Rename TuiWinElement.
9394 (tui_exec_info_content): Rename TuiExecInfoContent.
9395 (TuiGenWinInfo, TuiGenWinInfoPtr): Delete definitions.
9396 (TuiWinInfo, TuiWinInfoPtr): Ditto.
9397 (TuiScrollDirection, TuiScrollDirectionPtr): Ditto.
9398 (TuiList, TuiListPtr): Ditto.
9399 (TuiLayoutType, TuiLayoutTypePtr): Ditto.
9400 (TuiDataType, TuiDataTypePtr): Ditto.
9401 (TuiRegisterDisplayType, TuiRegisterDisplayTypePtr): Ditto.
9402 (TuiLineOrAddress, TuiLineOrAddressPtr): Ditto.
9403 (TuiLayoutDef, TuiLayoutDefPtr): Ditto.
9404 (TuiSourceElement, TuiSourceElementPtr): Ditto.
9405 (TuiDataElement, TuiDataElementPtr): Ditto.
9406 (TuiWinElement, TuiWinElementPtr): Ditto.
9407 (TuiDataInfo, TuiDataInfoPtr): Ditto.
9408 (TuiCommandElement, TuiCommandElementPtr): Ditto.
9409 (TuiLocatorElement, TuiLocatorElementPtr): Ditto.
9410 (TuiWhichElement, TuiWhichElementPtr): Ditto.
9411 (TuiSourceInfo, TuiSourceInfoPtr): Ditto.
9412 (TuiCommandInfo, TuiCommandInfoPtr): Ditto.
9413 * tui/tui-command.c, tui/tui-data.c: Update references.
9414 * tui/tui-data.h, tui/tui-disasm.c, tui/tui-layout.c: Ditto.
9415 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
9416 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
9417 * tui/tui-winsource.c, tui/tui.c: Ditto.
9418
9419 2004-02-07 Mark Kettenis <kettenis@gnu.org>
9420
9421 * dwarf2-frame.h: Update copyright.
9422 (enum dwarf2_frame_reg_rule): New.
9423 (struct dwarf2_frame_state_reg): New.
9424 (dwarf2_frame_sniffer, dwarf2_frame_base_sniffer): Make extern.
9425 * dwarf2-frame.c: Update copyright.
9426 (enum dwarf2_reg_rule): Remove.
9427 (struct dwarf2_frame_state): Remove defenition of `struct
9428 dwarf2_frame_state_reg'.
9429 (read_reg): Call get_frame_arch to get the architecture instead of
9430 using CURRENT_GDBARCH.
9431 (execute_cfa_program): Prefix old `enum dwarf2_reg_rule' tags with
9432 DWARF2_FRAME_.
9433 (dwarf2_frame_init_reg): New function.
9434 (dwarf2_frame_cache): Call get_frame_arch to get the architecture
9435 instead of using CURRENT_GDBARCH. Call dwarf2_frame_init_reg to
9436 initialize the register state. Prefix old `enum dwarf2_reg_rule'
9437 tags with DWARF2_FRAME_.
9438 (dwarf2_frame_prev_register): Call get_frame_arch to get the
9439 architecture instead of using CURRENT_GDBARCH. Prefix old `enum
9440 dwarf2_reg_rule' tags with DWARF2_FRAME_.
9441
9442 2004-02-06 Andrew Cagney <cagney@redhat.com>
9443
9444 * tui/tui-data.h (struct tui_list): Rename _TuiList.
9445 (enum tui_data_type): Rename _TuiDataType.
9446 (struct tui_layout_def): Rename _TuiLayoutDef.
9447 (struct tui_source_element): Rename _TuiSourceElement.
9448 (struct tui_data_element): Rename _TuiDataElement.
9449 (struct tui_command_element): Rename _TuiCommandElement.
9450 (struct tui_locator_element): Rename _TuiLocatorElement.
9451 (union tui_which_element): Define.
9452 (struct tui_win_element): Rename _TuiWinElement.
9453 (struct tui_data_info): Rename _TuiDataInfo.
9454 (struct tui_source_info): Rename _TuiSourceInfo.
9455 (struct tui_command_info): Rename _TuiCommandInfo.
9456 (tui_initialize_static_data): Rename initializeStaticData.
9457 (tui_alloc_generic_win_info): Rename allocGenericWinInfo.
9458 (tui_alloc_win_info): Rename allocWinInfo.
9459 (tui_init_generic_part): Rename initGenericPart.
9460 (tui_init_win_info): Rename initWinInfo.
9461 (tui_alloc_content): Rename allocContent.
9462 (tui_add_content_elements): Rename addContentElements.
9463 (tui_init_content_element): Rename initContentElement.
9464 (tui_free_window): Rename freeWindow.
9465 (tui_free_win_content): Rename freeWinContent.
9466 (tui_free_data_content): Rename freeDataContent.
9467 (tui_free_all_source_wins_content): Rename
9468 freeAllSourceWinsContent.
9469 (tui_del_window): Rename tuiDelWindow.
9470 (tui_del_data_windows): Rename tuiDelDataWindows.
9471 (tui_partial_win_by_name): Rename partialWinByName.
9472 (tui_win_name): Rename winName.
9473 (tui_current_layout): Rename currentLayout.
9474 (tui_set_current_layout_to): Rename setCurrentLayoutTo.
9475 (tui_term_height): Rename termHeight.
9476 (tui_set_term_height_to): Rename setTermHeightTo.
9477 (tui_term_width): Rename termWidth.
9478 (tui_set_term_width_to): Rename setTermWidthTo.
9479 (tui_set_gen_win_origin): Rename setGenWinOrigin.
9480 (tui_locator_win_info_ptr): Rename locatorWinInfoPtr.
9481 (tui_source_exec_info_win_ptr): Rename tui_gen_win_info.
9482 (tui_disassem_exec_info_win_ptr): Rename disassemExecInfoWinPtr.
9483 (tui_source_windows): Rename sourceWindows.
9484 (tui_clear_source_windows): Rename clearSourceWindows.
9485 (tui_clear_source_windows_detail): Rename
9486 clearSourceWindowsDetail.
9487 (tui_clear_win_detail): Rename clearWinDetail.
9488 (tui_add_to_source_windows): Rename tuiAddToSourceWindows.
9489 (tui_default_tab_len): Rename tuiDefaultTabLen.
9490 (tui_set_default_tab_len): Rename tuiSetDefaultTabLen.
9491 (tui_win_with_focus): Rename tuiWinWithFocus.
9492 (tui_set_win_with_focus): Rename tuiSetWinWithFocus.
9493 (tui_layout_def): Rename tuiLayoutDef.
9494 (tui_win_resized): Rename tuiWinResized.
9495 (tui_set_win_resized_to): Rename tuiSetWinResizedTo.
9496 (tui_next_win): Rename tuiNextWin.
9497 (tui_prev_win): Rename tuiPrevWin.
9498 (tui_add_to_source_windows): Rename addToSourceWindows.
9499 * tui/tui-winsource.c, tui/tui-win.c: Update references.
9500 * tui/tui-layout.c, tui/tui-source.c: Ditto.
9501 * tui/tui-stack.c, tui/tui-io.c: Ditto.
9502 * tui/tui.c, tui/tui-data.c: Ditto.
9503 * tui/tui-interp.c, tui/tui-data.c: Ditto.
9504 * tui/tui-disasm.c, tui/tui-command.c: Ditto.
9505
9506 * tui/tui-source.h: Update copyright. Include "tui-data.h".
9507 (struct symtab): Declare.
9508 (tui_set_source_content): Rename tuiSetSourceContent.
9509 (tui_show_symtab_source): Rename tuiShowSource.
9510 (tui_source_is_displayed): Rename tuiSourceIsDisplayed.
9511 (tui_vertical_source_scroll): Rename tuiVerticalSourceScroll.
9512 * tui/tui-source.c: Update copyright. Update references.
9513 * tui/tui-win.c, tui/tui-winsource.c: Update references.
9514 * tui/tui-stack.c: Update references.
9515
9516 * tui/tui-win.h: Update copyright. Include "tui-data.h".
9517 (struct tui_win_info): Declare.
9518 (tui_scroll_forward): Rename tuiScrollForward.
9519 (tui_scroll_backward): Rename tuiScrollBackward.
9520 (tui_scroll_left): Rename tuiScrollLeft.
9521 (tui_scroll_right): Rename tuiScrollRight.
9522 (tui_set_win_focus_to): Rename tuiSetWinFocusTo.
9523 (tui_resize_all): Rename tuiResizeAll.
9524 (tui_refresh_all_win): Rename tuiRefreshAll.
9525 (tui_sigwinch_handler): Rename tuiSigwinchHandler.
9526 * tui/tui-layout.c, * tui/tui-io.c: Update references.
9527 * tui/tui-wingeneral.h, * tui/tui.c: Update references.
9528 * tui/tui-disasm.c, * tui/tui-command.c: Update references.
9529
9530 * tui/tui-windata.h: Update copyright. Include "tui-data.h".
9531 (tui_erase_data_content): Rename tuiEraseDataContent.
9532 (tui_display_all_data): Rename tuiDisplayAllData.
9533 (tui_check_data_values): Rename tuiCheckDataValues.
9534 (tui_display_data_from_line): Rename tuiDisplayDataFromLine.
9535 (tui_first_data_item_displayed): Rename tuiFirstDataItemDisplayed.
9536 (tui_first_data_element_no_in_line): Rename
9537 tuiFirstDataElementNoInLine.
9538 (tui_delete_data_content_windows): Rename
9539 tuiDeleteDataContentWindows.
9540 (tui_refresh_data_win): Rename tuiRefreshDataWin.
9541 (tui_display_data_from): Rename tuiDisplayDataFrom.
9542 (tui_vertical_data_scroll): Rename tuiVerticalDataScroll.
9543 * tui/tui-windata.c, tui/tui-hooks.c: Update references.
9544 * tui/tui-win.c, tui/tui-regs.c: Update references.
9545 * tui/tui-layout.c, tui/tui.c: Update references.
9546
9547 * tui/tui-wingeneral.h: Update copyright.
9548 (m_allBeVisible): Delete macro.
9549 (m_allBeInvisible): Delete macro.
9550 (struct tui_gen_win_info): Declare.
9551 (struct tui_win_info): Declare.
9552 (tui_unhighlight_win): Rename unhighlightWin.
9553 (tui_make_visible, tui_make_invisible): Replace makeVisible.
9554 (tui_make_all_visible, tui_make_all_invisible): Replace makeAllVisible.
9555 (tui_make_window): Rename makeWindow.
9556 (tui_copy_win): Rename copyWin.
9557 (tui_box_win): Rename boxWin.
9558 (tui_highlight_win): Rename highlightWin.
9559 (tui_check_and_display_highlight_if_needed): Rename
9560 checkAndDisplayHighlightIfNeeded.
9561 (tui_refresh_all): Rename refreshAll.
9562 (tui_delete_win): Rename tuiDelwin.
9563 (tui_refresh_win): Rename tuiRefreshWin.
9564 * tui/tui-wingeneral.c (make_visible): Rename makeVisible.
9565 (tui_make_visible, tui_make_invisible): New functions.
9566 (tui_make_all_visible, tui_make_all_invisible): New functions.
9567 (make_all_visible): Rename makeAllVisible.
9568 * tui/tui-winsource.c, tui/tui-windata.c: Update references.
9569 * tui/tui-data.c, tui/tui-winsource.c: Update references.
9570 * tui/tui-windata.c, tui/tui-win.c: Update references.
9571 * tui/tui-regs.c, tui/tui-layout.c: Update references.
9572 * tui/tui-data.h (struct tui_gen_win_info): Rename _TuiGenWinInfo.
9573
9574 2004-02-06 Mark Kettenis <kettenis@gnu.org>
9575
9576 * proc-api.c (write_with_trace): Initialize local variable to
9577 silence compiler warning.
9578
9579 2004-02-06 Andrew Cagney <cagney@redhat.com>
9580
9581 * tui/tui-source.h: Do not include "defs.h".
9582 (struct tui_win_info): Declare.
9583 (tui_set_source_content_nil): Declare.
9584 * tui/tui-data.h (struct tui_win_info): Rename _TuiWinInfo.
9585 (union tui_line_or_address): Rename _TuiLineOrAddress.
9586 * tui/tui-winsource.h: Update copyright. Include "tui-data.h".
9587 (tui_update_source_window): Rename tuiUpdateSourceWindow.
9588 (tui_update_source_window_as_is): Rename
9589 tuiUpdateSourceWindowAsIs.
9590 (tui_update_source_windows_with_addr): Rename
9591 tuiUpdateSourceWindowsWithAddr.
9592 (tui_update_source_windows_with_line): Rename
9593 tuiUpdateSourceWindowsWithLine.
9594 (tui_clear_source_content): Rename tuiClearSourceContent.
9595 (tui_erase_source_content): Rename tuiEraseSourceContent.
9596 (tui_set_source_content_nil): Rename tuiSetSourceContentNil.
9597 (tui_show_source_content): Rename tuiShowSourceContent.
9598 (tui_horizontal_source_scroll): Rename tuiHorizontalSourceScroll.
9599 (tui_set_exec_info_content): Rename tuiSetExecInfoContent.
9600 (tui_show_exec_info_content): Rename tuiShowExecInfoContent.
9601 (tui_erase_exec_info_content): Rename tuiEraseExecInfoContent.
9602 (tui_clear_exec_info_content): Rename tuiClearExecInfoContent.
9603 (tui_update_exec_info): Rename tuiUpdateExecInfo.
9604 (tui_set_is_exec_point_at): Rename tuiSetIsExecPointAt.
9605 (tui_alloc_source_buffer): Rename tuiAllocSourceBuffer.
9606 (tui_line_is_displayed): Rename tuiLineIsDisplayed.
9607 (tui_addr_is_displayed): Rename tuiAddrIsDisplayed.
9608 (struct tui_win_info): Declare.
9609 * tui/tui-stack.c: Update references.
9610 * tui/tui-layout.c, tui/tui-winsource.c: Ditto.
9611 * tui/tui-win.c, tui/tui-source.c: Ditto.
9612 * tui/tui.c, tui/tui-disasm.c: Ditto.
9613
9614 2004-02-06 Mark Kettenis <kettenis@gnu.org>
9615
9616 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Fix calculation
9617 of UCONTEXT_ADDR. Fixes PR backtrace/1545.
9618
9619 2004-02-05 Mark Kettenis <kettenis@gnu.org>
9620
9621 * infrun.c (handle_inferior_event): Allow for breakpoint
9622 instructions to generate a SIGSEGV in addition to SIGTRAP, SIGILL
9623 and SIGEMT. Update comments.
9624 * NEWS (Revised SPARC target): Mention support for non-executable
9625 stack.
9626
9627 2004-02-04 Mark Kettenis <kettenis@gnu.org>
9628
9629 * target.h (target_object): Add TARGET_OBJECT_WCOOKIE.
9630 * inftarg.c: Update copyright year.
9631 (child_xfer_partial): Add support for TARGET_OBJECT_WCOOKIE.
9632 * sparc-nat.c: Include "target.h" and "gdb_assert.h".
9633 (sparc_xfer_wcookie): New function.
9634 * sparc-tdep.c (sparc_fetch_wcookie): New function.
9635 * Makefile.in (sparc-nat.o): Update dependencies.
9636 * config/sparc/nm-nbsd.h: Include "target.h".
9637 (NATIVE_XFER_WCOOKIE): New define.
9638 (sparc_xfer_wcookie): New prototype.
9639
9640 2004-02-04 Andrew Cagney <cagney@redhat.com>
9641
9642 * m68k-tdep.c (m68k_saved_pc_after_call): Delete #ifdef
9643 SYSCALL_TRAP function.
9644 (m68k_gdbarch_init): Delete #ifdef SYSCALL_TRAP code.
9645
9646 2004-02-04 Andrew Cagney <cagney@redhat.com>
9647 Daniel Jacobowitz <drow@mvista.com>
9648
9649 * objfiles.h: Delete comments refering to inside_entry_func and
9650 DEPRECATED_FRAME_CHAIN_VALID.
9651 * defs.h (inside_entry_func): Update prototype..
9652 * blockframe.c (inside_entry_func): Rename to
9653 legacy_inside_entry_func. Add new inside_entry_func taking a frame.
9654 * frame.c (get_prev_frame): Pass the frame to inside_entry_func.
9655
9656 2004-02-03 Jeff Johnston <jjohnstn@redhat.com>
9657
9658 * breakpoint.c (struct captured_parse_breakpoint_args): Move
9659 outside of #ifdef SOLIB_ADD region.
9660 (do_restore_lang_radix_cleanup): Ditto.
9661 (resolve_pending_breakpoint): Ditto.
9662
9663 2004-02-03 Andrew Cagney <cagney@redhat.com>
9664
9665 * ia64-tdep.c (read_sigcontext_register): Delete unused function.
9666 (process_note_abi_tag_sections): Delete unused function.
9667 (ia64_read_fp): Delete unused function.
9668 (gdbarch_extract_struct_value_address): Delete declaration.
9669
9670 2004-02-02 Andrew Cagney <cagney@redhat.com>
9671
9672 * vax-tdep.c (vax_frame_chain): Delete call to
9673 deprecated_inside_entry_file.
9674 * ns32k-tdep.c (ns32k_frame_chain): Ditto.
9675
9676 2004-02-02 Mark Kettenis <kettenis@gnu.org>
9677
9678 * dwarf2-frame.c (dwarf2_frame_cache): Deal with a return address
9679 column that's "empty" or "same value" when eliminating REG_RA
9680 rules.
9681
9682 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
9683
9684 * NEWS: Add information about new pending breakpoint support.
9685
9686 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
9687
9688 * breakpoint.h (struct breakpoint): Add new flag, from_tty,
9689 and pending fields for pending breakpoint support.
9690 * breakpoint.c (breakpoint_enabled): Add check for not pending.
9691 (condition_command): Only parse condition if not a pending
9692 breakpoint.
9693 (print_one_breakpoint): Add support for pending breakpoints.
9694 (describe_other_breakpoints): Add checks to verify we are not
9695 dealing with pending breakpoints.
9696 (check_duplicates): Don't check pending breakpoints.
9697 (set_raw_breakpoint): Initialize pending flag.
9698 (do_restore_lang_radix_cleanup): New cleanup routine.
9699 (resolve_pending_breakpoint): New function.
9700 (re_enable_breakpoints_in_shlibs): Try and resolve any
9701 pending breakpoints via resolve_pending_breakpoint.
9702 (mention): Add pending breakpoint support.
9703 (parse_breakpoint_sals): Add new parameter to pass to
9704 decode_line_1 to indicate silent errors when files or functions
9705 are not found. Change all callers.
9706 (do_captured_parse_breakpoint): New function.
9707 (break_command_1): Change prototype to return an rc value and to
9708 take an optional pending breakpoint pointer. Support creating
9709 a pending breakpoint if a "not found" form of error occurs when
9710 parsing the breakpoint. Also support resolving an existing pending
9711 breakpoint and be silent if the resolution fails.
9712 (create_breakpoints): Change prototype to take pending breakpoint
9713 pointer. When resolving a pending breakpoint, use the new pointer
9714 to provide a conditional or commands added by the end-user.
9715 (delete_breakpoint): Add appropriate check for pending.
9716 (breakpoint_re_set_one): Ditto.
9717 (do_enable_breakpoint): Ditto.
9718
9719 2004-02-02 David Carlton <carlton@kealia.com>
9720
9721 * valops.c (enum oload_classification): New.
9722 (find_overload_match): Break implementation into separate
9723 functions; delete #if 0'd code; look for symbols within
9724 namespaces.
9725 (find_oload_champ_namespace,find_oload_champ_namespace_loop)
9726 (find_oload_champ,oload_method_static,classify_oload_match): New.
9727 * cp-support.h: Add declaration for cp_func_name; update
9728 declaration for make_symbol_overload_list.
9729 * cp-support.c (cp_func_name): New.
9730 (overload_list_add_symbol): Fix comment, use
9731 SYMBOL_LINKAGE_NAME and SYMBOL_NATURAL_NAME.
9732 (make_symbol_overload_list): Take a function name and a namespace
9733 instead of a symbol; change implementation.
9734 (make_symbol_overload_list_using): New.
9735 (make_symbol_overload_list_qualified, read_in_psymtabs): New.
9736
9737 2004-02-02 Fred Fish <fnf@redhat.com>
9738
9739 * main.c (gdb_stdtarg): Move definition to group with other
9740 gdb_stdtarg definitions and update copyright years.
9741 * remote-sim.c (gdb_os_write_stderr): Write output to
9742 gdb_stdtargerr stream instead of gdb_stdtarg stream.
9743 (gdb_os_flush_stderr): Flush gdb_stdtargerr steam instead of
9744 gdb_stderr stream and update copyright years.
9745
9746 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9747
9748 * Makefile.in (mips-linux-nat.o): Update dependencies.
9749 * mips-linux-nat.c: Include mips-tdep.h.
9750
9751 2004-02-01 Roland McGrath <roland@redhat.com>
9752
9753 * sol-thread.c (sol_thread_xfer_partial): New function.
9754 (init_sol_thread_ops): Use that for to_xfer_partial hook.
9755 (init_sol_core_ops): Likewise.
9756
9757 * procfs.c (procfs_xfer_partial): New function.
9758 (init_procfs_ops): Use that for procfs_ops.to_xfer_partial.
9759 * Makefile.in (procfs.o): Add $(auxv_h) dep.
9760
9761 * config/nm-linux.h (NATIVE_XFER_AUXV): New macro, uses auxv.c's
9762 procfs_xfer_auxv function.
9763
9764 * procfs.c (procfs_make_note_section): If we can read
9765 TARGET_OBJECT_AUXV data, add an NT_AUXV note containing it.
9766 * linux-proc.c (linux_make_note_section): Likewise.
9767
9768 * auxv.h: New file.
9769 * auxv.c: New file.
9770 * Makefile.in (auxv_h): New variable.
9771 (COMMON_OBS): Add auxv.o here.
9772 (auxv.o): New target.
9773
9774 * corelow.c (core_xfer_partial): New function.
9775 (init_core_ops): Use it for core_ops.to_xfer_partial.
9776
9777 * target.h (enum target_object): Add TARGET_OBJECT_AUXV.
9778 * inftarg.c (child_xfer_partial): Support it using NATIVE_XFER_AUXV
9779 macro if that is defined.
9780
9781 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9782
9783 * breakpoint.c (bpstat_stop_status): Take a ptid_t argument,
9784 and check the specified thread for each breakpoint.
9785 * breakpoint.h (bpstat_stop_status): Update prototype.
9786 * infrun.c (handle_inferior_event): Update calls to
9787 bpstat_stop_status.
9788
9789 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9790
9791 * Makefile.in (cli-cmds.o): Add $(readline_h).
9792
9793 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
9794
9795 * cli/cli-cmds.c: Include readline.h.
9796 (complete_command): Pass the start of the last word to
9797 complete_line.
9798
9799 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9800
9801 * breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
9802 argument, and change first argument to a CORE_ADDR.
9803 * breakpoint.h (bpstat_stop_status): Update prototype.
9804 * infrun.c (adjust_pc_after_break): Add a new comment.
9805 (handle_inferior_event): Update calls to bpstat_stop_status.
9806
9807 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9808
9809 * breakpoint.h: Update copyright years.
9810
9811 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9812
9813 * breakpoint.c (software_breakpoint_inserted_here_p): New function.
9814 (bpstat_stop_status): Don't decrement PC.
9815 * breakpoint.h (software_breakpoint_inserted_here_p): Add
9816 prototype.
9817 * infrun.c (adjust_pc_after_break): New function.
9818 (handle_inferior_event): Call it, early. Remove later references
9819 to DECR_PC_AFTER_BREAK.
9820 (normal_stop): Add commentary.
9821
9822 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
9823
9824 * breakpoint.c (breakpoint_re_set_one): Add missing chunk of
9825 2004-01-27 double-free fix.
9826
9827 2004-01-31 Mark Kettenis <kettenis@gnu.org>
9828
9829 * sparc-tdep.c (sparc_fetch_wcookie): New function.
9830 (sparc32_frame_prev_register): Handle StackGhost.
9831 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
9832
9833 2004-01-29 Roland McGrath <roland@redhat.com>
9834
9835 * configure.in (NEW_PROC_API): Also match solaris2.9 for this test.
9836 * configure: Regenerated.
9837
9838 * procfs.c: Include gdb_string.h for str* decls, otherwise warnings.
9839 * Makefile.in (procfs.o): Add dep.
9840
9841 2004-01-28 Andrew Cagney <cagney@redhat.com>
9842
9843 * tui/tui-stack.h: Update copyright.
9844 (struct frame_info): Add opaque declaration.
9845 (tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
9846 (tui_show_locator_content): Rename tuiShowLocatorContent.
9847 (tui_show_frame_info): Rename tuiShowFrameInfo.
9848 * tui/tui-stack.c: Update copyright. Update references.
9849 * tui/tui-winsource.c: Update references.
9850 * tui/tui-win.c: Update references.
9851 * tui/tui-layout.c: Update references.
9852 * tui/tui-hooks.c: Update copyright, update references.
9853 * tui/tui.c: Update copyright, update references.
9854 * tui/tui-disasm.c: Update references.
9855
9856 2004-01-28 David Carlton <carlton@kealia.com>
9857
9858 * dwarf2read.c (add_partial_structure): Use demangled name if
9859 namespace equals "".
9860
9861 2004-01-27 Jim Blandy <jimb@redhat.com>
9862
9863 Clean up misapplied patch:
9864 * dwarf2read.c (determine_prefix): Change one of the two forward
9865 declarations for 'determine_prefix_aux' to a declaration for this.
9866 (read_func_scope): Use cu->language, not cu_language. Pass 'cu'
9867 argument to 'die_specification'.
9868
9869 * dwarf2read.c (read_func_scope): Re-indent comment.
9870
9871 2004-01-27 Paul N. Hilfinger <hilfinger@gnat.com>
9872
9873 * breakpoint.c (breakpoint_re_set_one): Set b->cond, b->val, and
9874 b->exp to NULL after freeing so that error during re-parsing or
9875 evaluation of expressions associated with breakpoint don't
9876 eventually lead to re-freeing of storage.
9877 Committed by Andrew Cagney.
9878
9879 2004-01-27 Andrew Cagney <cagney@redhat.com>
9880
9881 * source.c (ambiguous_line_spec): Delete undefined declaration.
9882 * m32r-rom.c (m32r_set_board_address): Delete unused function.
9883 (m32r_set_server_address, m32r_set_download_path): Ditto.
9884 * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
9885
9886 2004-01-27 Daniel Jacobowitz <drow@mvista.com>
9887
9888 * dwarf2read.c: Update calls to changed and renamed functions, and
9889 references to moved variables.
9890
9891 (struct dwarf2_cu): Add first_fn, last_fn, cached_fn,
9892 language, language_defn, list_in_scope, and ftypes members.
9893 (cu_first_fn, cu_last_fn, cu_cached_fn, cu_language)
9894 (cu_language_defn, list_in_scope, ftypes, cu_header_offset)
9895 (baseaddr): Remove globals.
9896
9897 (dwarf_attr): Renamed to dwarf2_attr. Add CU argument.
9898 (set_cu_language, die_is_declaration, die_specification)
9899 (determine_prefix, determin_prefix_aux, class_name, namespace_name)
9900 (dwarf2_linkage_name, dwarf2_name, dwarf2_extension)
9901 (dwarf2_get_ref_die_offset, dwarf2_fundamental_type)
9902 (initialize_cu_func_list, add_to_cu_func_list): Add CU argument.
9903
9904 (dwarf2_build_psymtabs_hard): Add local baseaddr. Initialize
9905 cu.list_in_scope. Don't initialize cu_header_offset.
9906 (add_partial_symbol): Add local baseaddr.
9907 (psymtab_to_symtab_1): Add local baseaddr. Use
9908 objfile->section_offsets for consistency. Don't initialize
9909 cu_header_offset; do initialize cu.header.offset and
9910 cu.list_in_scope.
9911 (read_file_scope, read_func_scope, read_lexical_block_scope)
9912 (dwarf_decode_lines, new_symbol): Add local baseaddr.
9913
9914 2004-01-27 Michael Chastain <mec.gnu@mindspring.com>
9915
9916 * PROBLEMS: Add gdb/1516.
9917
9918 2003-12-29 Robert Millan <robertmh@gnu.org>
9919
9920 Patch committed by Andrw Cagney.
9921 * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
9922 * configure.tgt: Match knetbsd*-gnu.
9923
9924 2004-01-26 Andrew Cagney <cagney@redhat.com>
9925
9926 * breakpoint.c (catch_command_1): Delete #ifdef code.
9927 (catch_fork_command_1): Delete #ifdef wrapper.
9928 (catch_exec_command_1): Ditto.
9929 (catch_load_command_1): Ditto.
9930 (catch_unload_command_1): Ditto.
9931
9932 * breakpoint.c (watchpoint_check): Delete #if0ed variable.
9933 (catch_breakpoint): Delete #if0ed function.
9934 (disable_catch_breakpoint): Ditto.
9935 (delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
9936 (disable_catch, enable_catch, delete_catch): Ditto.
9937
9938 2004-01-26 Andrew Cagney <cagney@redhat.com>
9939
9940 * remote.c (echo_check, quit_flag): Delete variables.
9941 (cisco_kernel_mode): Delete variable.
9942 (minitelnet_return, tty_input, escape_count): Delete variables.
9943 (remote_cisco_mode): Delete variable.
9944 (remote_cisco_open, remote_cisco_close): Delete function.
9945 (remote_cisco_mourn, remote_cisco_wait): Delete function.
9946 (init_remote_cisco_ops): Delete function.
9947 (_initialize_remote): Do not install "remote cisco" code.
9948 (read_frame): Delete cisco specific code.
9949 (remote_info_process): Delete function.
9950 (remote_wait): Delete cisco specific code.
9951 (remote_cisco_section_offsets): Delete function.
9952 (remote_cisco_objfile_relocate): Delete function.
9953 (remote_async_wait): Delete cisco specific code.
9954 (minitelnet, readtty, readsocket): Delete function.
9955
9956 2004-01-26 Andrew Cagney <cagney@redhat.com>
9957
9958 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS): Deprecate. Add
9959 comments mentioning extract_returned_value_address.
9960 * infcmd.c (print_return_value): Update. Add comments on
9961 extract_returned_value_address.
9962 * stack.c (return_command): Add comments on
9963 extract_returned_value_address.
9964 * values.c: Update comment.
9965 * m32r-tdep.c: Update comment.
9966 * sparc-tdep.c: Update comment.
9967 * ia64-tdep.c (ia64_use_struct_convention): Update comment.
9968 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
9969 * sh64-tdep.c (sh64_gdbarch_init): Update.
9970 * sh-tdep.c (sh_gdbarch_init): Update.
9971 * s390-tdep.c (s390_gdbarch_init): Update.
9972 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
9973 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
9974 * m68k-tdep.c (m68k_gdbarch_init): Update.
9975 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
9976 * m32r-tdep.c (m32r_gdbarch_init): Update.
9977 * ia64-tdep.c (ia64_gdbarch_init): Update.
9978 * h8300-tdep.c (h8300_gdbarch_init): Update.
9979 * frv-tdep.c (frv_gdbarch_init): Update.
9980 * arm-tdep.c (arm_gdbarch_init): Update.
9981 * alpha-tdep.c (alpha_gdbarch_init): Update.
9982
9983 2004-01-26 Andrew Cagney <cagney@redhat.com>
9984
9985 * dwarf2loc.c (dwarf_expr_frame_base): Use SYMBOL_OPS instead of
9986 SYMBOL_LOCATION_FUNCS
9987 (dwarf2_loclist_funcs, dwarf2_locexpr_funcs): Change type to
9988 "struct symbol_ops".
9989 * dwarf2loc.h (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Change
9990 type to "struct symbol_ops".
9991 * symtab.h (struct symbol_ops): Rename "struct location_funcs".
9992 (struct symbol): Replace ".aux_value.loc.funcs" and
9993 ".aux_value.loc.baton" with ".ops" and ".aux_value.ptr".
9994 (SYMBOL_OBJFILE): Delete macro.
9995 (SYMBOL_LOCATION_FUNCS): Delete macro.
9996 (SYMBOL_LOCATION_BATON): Update.
9997 * dwarf2read.c (dwarf2_symbol_mark_computed): Set SYMBOL_OPS
9998 intead of SYMBOL_LOCATION_FUNCS.
9999 * ax-gdb.c (gen_var_ref): Ditto.
10000 * printcmd.c (address_info): Ditto.
10001 * findvar.c (read_var_value): Ditto.
10002 (symbol_read_needs_frame): Ditto.
10003
10004 2004-01-26 Andrew Cagney <cagney@redhat.com>
10005
10006 * dwarf2read.c (read_func_scope): Document frame-base hack.
10007
10008 2004-01-25 Mark Kettenis <kettenis@gnu.org>
10009
10010 * infcmd.c (print_return_value): Plug memory leak; delete
10011 ui_stream object. Rename argument `structure_return' to
10012 `struct_return'.
10013
10014 2004-01-25 Mark Kettenis <kettenis@gnu.org>
10015
10016 * infcmd.c (print_return_value): Wrap long lines.
10017 (finish_command_continuation, finish_command): Remove unused
10018 variable `funcaddr'. Fix some coding-standards problems.
10019
10020 * sparc-tdep.c (sparc_regset_from_core_section): Check whether
10021 SECT_SIZE is large enough, not whether it's exactly the right size.
10022 (sparc32_gdbarch_init): Initialize TDEP->sizeof_gregset and
10023 TDEP->fpregset to zero.
10024
10025 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Also supply the
10026 floating-point registers for traditional NetBSD core files.
10027 (sparc32nbsd_init_abi): Initialize TDEP->sizeof_gregset and
10028 TDEP->sizeof_fpregset here.
10029
10030 2004-01-25 Mark Kettenis <kettenis@gnu.org>
10031
10032 * sparc-tdep.h (sparc32nbsd_sigcontext_saved_regs): New prototype.
10033 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): New
10034 function with code split out from
10035 sparc32nbsd_sigcontext_frame_cache.
10036 (sparc32nbsd_sigcontext_frame_cache): Use
10037 sparc32nbsd_sigcontext_saved_regs.
10038 (_initialize_sparc32nbsd_tdep): Don't register OS ABI handler for
10039 OpenBSD.
10040 * sparcobsd-tdep.c: New file.
10041 * Makefile.in (ALLDEPFILES): Add sparcobsd-tdep.c.
10042 (sparcobsd-tdep.o): New dependency.
10043 * configure.tgt (sparc-*-openbsd*): Set gdb_target to obsd.
10044 * config/sparc/obsd.mt: New file.
10045
10046 * sparc-tdep.c (sparc32_gdbarch_init): Don't require
10047 TDEP->fpregset to be initialized to enable core file register
10048 sets.
10049
10050 2004-01-24 Mark Kettenis <kettenis@gnu.org>
10051
10052 * sparc64-tdep.h (struct frame_info, struct trad_frame_saved_reg):
10053 Add opaque declarations.
10054 (sparc64nbsd_sigcontext_saved_regs): New prototype.
10055 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): New
10056 function with code split out from
10057 sparc64nbsd_sigcontext_frame_cache.
10058 (sparc64nbsd_sigcontext_frame_cache): Use
10059 sparc64nbsd_sigcontext_saved_regs.
10060 (_initialize_sparc64nbsd_tdep): Don't register OS ABI handler for
10061 OpenBSD.
10062 * sparc64obsd-tdep.c: New file.
10063 * Makefile.in (ALLDEPFILES): Add sparc64obsd-tdep.c.
10064 (sparc64obsd-tdep.o): New dependency.
10065 * configure.tgt (sparc64-*-openbsd*): Set gdb_target to obsd64 and
10066 gdb_osabi to GDB_OSABI_OPENBSD_ELF.
10067 * config/sparc/obsd64.mt: New file.
10068
10069 * sparc-tdep.c (sparc_fetch_instruction): Return zero if we can't
10070 read the instruction at PC.
10071
10072 * sparcnbsd-tdep.c (GDB_OSABI_NETBSD_CORE): Define, based on the
10073 value of GDB_OSABI_DEFAULT.
10074 (sparcnbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_CORE
10075 instead of GDB_OSABI_NETBSD_AOUT.
10076
10077 2004-01-24 Nick Roberts <nick@nick.uklinux.net>
10078
10079 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-cmds.h: Update
10080 copyright.
10081
10082 2004-01-23 Andrew Cagney <cagney@redhat.com>
10083
10084 * printcmd.c (display_command): Replace tui_set_display call with
10085 tui_set_layout_for_display_command.
10086 * tui/tui.h (enum tui_win_type): Define.
10087 (tui_set_layout): Delete declaration.
10088 (tui_set_layout_for_display_command): Rename set_tui_layout.
10089 * tui/tui-data.h (enum tui_layout_type): Define.
10090 * tui/tui-layout.h: Update copyright. Include "tui-data.h" and
10091 "tui.h".
10092 (tui_add_win_to_layout): Rename tuiAddWinToLayout.
10093 (tui_default_win_height): Rename tuiDefaultWinHeight.
10094 (tui_default_win_viewport_height): Rename
10095 tuiDefaultWinViewportHeight.
10096 (tui_set_layout): RenametuiSetLayout.
10097 * tui/tui-layout.c: Update references.
10098 * tui/tui.c: Update references.
10099 * tui/tui-disasm.c: Update references.
10100
10101 2004-01-23 David Carlton <carlton@kealia.com>
10102
10103 Partial workaround for PR c++/1511:
10104 * cp-namespace.c: Include frame.h.
10105 (cp_lookup_transparent_type): New
10106 (cp_lookup_transparent_type_loop): New.
10107 * cp-support.h: Declare cp_lookup_transparent_type.
10108 * symtab.c (basic_lookup_transparent_type): Renamed from
10109 lookup_transparent_type.
10110 (lookup_transparent_type): Replace old body by a call to
10111 current_language->la_lookup_transparent_type.
10112 * symtab.h: Update copyright. Declare
10113 basic_lookup_transparent_type.
10114 * language.h: Update copyright.
10115 (struct language_defn): Add la_lookup_transparent_type.
10116 * language.c: Update copyright.
10117 (unknown_language_defn): Add basic_lookup_transparent_type.
10118 (auto_language_defn): Add basic_lookup_transparent_type.
10119 (local_language_defn): Add basic_lookup_transparent_type.
10120 * ada-lang.c: Update copyright.
10121 (ada_language_defn): Add basic_lookup_transparent_type.
10122 * c-lang.c: Update copyright.
10123 (c_language_defn): Add basic_lookup_transparent_type.
10124 (cplus_language_defn): Add basic_lookup_transparent_type.
10125 (asm_language_defn): Add basic_lookup_transparent_type.
10126 (minimal_language_defn): Add basic_lookup_transparent_type.
10127 * f-lang.c: Update copyright.
10128 (f_language_defn): Add basic_lookup_transparent_type.
10129 * jv-lang.c: Update copyright.
10130 (java_language_defn): Add basic_lookup_transparent_type.
10131 * m2-lang.c: Update copyright.
10132 (m2_language_defn): Add basic_lookup_transparent_type.
10133 * objc-lang.c: Update copyright.
10134 (objc_language_defn): Add basic_lookup_transparent_type.
10135 * p-lang.c: Update copyright.
10136 (p_language_defn): Add basic_lookup_transparent_type.
10137 * scm-lang.c: Update copyright.
10138 (scm_language_defn): Add basic_lookup_transparent_type.
10139 * Makefile.in (cp-namespace.o): Depend on frame.h.
10140
10141 2004-01-23 David Carlton <carlton@kealia.com>
10142
10143 Patch for PR c++/1520:
10144 * dwarf2read.c (read_func_scope): Set processing_current_prefix
10145 properly if we have a specification die.
10146 (determine_prefix_aux): Rename from determine_prefix.
10147 (determine_prefix): Like the old determine_prefix, but never
10148 returns NULL.
10149
10150 2004-01-23 Theodore A. Roth <troth@openavr.org>
10151
10152 * avr-tdep.c: Update copyright.
10153 (avr_iaddr_p): Delete unused function.
10154 (avr_saddr_p): Delete unused function.
10155
10156 2004-01-23 David Carlton <carlton@kealia.com>
10157
10158 * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
10159 Fix for PR symtab/1534.
10160
10161 2004-01-23 Mark Kettenis <kettenis@gnu.org>
10162
10163 * NEWS (New native configurations): Mention OpenBSD/sparc and
10164 OpenBSD/sparc64.
10165 * configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*.
10166 * configure.host: Likewise.
10167 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI
10168 handler for OpenBSD.
10169 * sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
10170
10171 2004-01-22 Mark Kettenis <kettenis@gnu.org>
10172
10173 * sparcnbsd-tdep.c (sparcnbsd_core_osabi_sniffer): New function.
10174 (_initialize_sparnbsd_tdep): Register sparcnbsd_core_osabi_sniffer.
10175
10176 * ser-pipe.c (pipe_open): Use proper null pointer in execl call.
10177 * cli/cli-cmds.c (shell_escape): Likewise.
10178
10179 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Recognize
10180 OpenBSD .note.openbsd.ident sections.
10181
10182 2004-01-22 David Carlton <carlton@kealia.com>
10183
10184 * dwarf2read.c (psymtab_to_symtab_1): Calculate lowpc, highpc via
10185 get_scope_pc_bounds.
10186 (read_file_scope): Ditto.
10187 (get_scope_pc_bounds): New function, produced by extracting code
10188 from the above two functions, consolidating it, and adding support
10189 for DW_TAG_namespace.
10190
10191 2004-01-22 Mark Kettenis <kettenis@gnu.org>
10192
10193 * osabi.c (MAX_NOTESZ): New define.
10194 (check_note): New function.
10195 (generic_elf_osabi_sniff_abi_tag_sections): Reorganize code using
10196 check_note.
10197
10198 2004-01-21 Roland McGrath <roland@redhat.com>
10199
10200 * MAINTAINERS (write after approval): Add myself.
10201
10202 2004-01-21 Eli Zaretskii <eliz@gnu.org>
10203
10204 * utils.c (init_page_info): Move declarations of `rows' and
10205 `cols' before the __GO32__-specific code. Move the closing brace
10206 outside the #ifdef __GO32__..#endif block.
10207 [__GO32__]: Use `rows' and `cols' to avoid compiler warnings.
10208
10209 2004-01-21 Paul Brook <paul@codesourcery.com>
10210
10211 * infrun.c (handle_inferior_event): Check stop_stack_dummy if handling
10212 BPSTAT_WHAT_CHECK_SHLIBS.
10213
10214 2004-01-21 Paul Brook <paul@codesourcery.com>
10215
10216 * MAINTAINERS: Add myself to write-after-approval.
10217
10218 2004-01-20 Andrew Cagney <cagney@redhat.com>
10219
10220 * ax-gdb.c (print_axs_value): Delete unused function.
10221 * jv-lang.c (java_lookup_type): Delete unused function.
10222 * cli/cli-dump.c (dump_filetype): Delete unused function.
10223 * remote-mips.c (remote_mips_insert_hw_breakpoint)
10224 (remote_mips_remove_hw_breakpoint): Delete unused functions.
10225 (mips_getstring): Delete unused function.
10226 (pmon_insert_breakpoint): Delete #if0ed function.
10227 (PMON_MAX_BP): Delete #if0ed MACRO.
10228 (mips_pmon_bp_info): Delete #if0ed variable.
10229 (pmon_remove_breakpoint): Delete #if0ed function.
10230 * monitor.c (monitor_write_even_block): Delete unused function.
10231 (monitor_write_memory_block): Delete #if0ed code.
10232 * dink32-rom.c (dink32_load): Delete unused function.
10233 (_initialize_dink32_rom): Delete #if0ed code.
10234 * d10v-tdep.c (d10v_daddr_p): Delete unused function.
10235
10236 * tui/tui-command.c: Update references.
10237 * tui/tui-io.c: Update references.
10238 * tui/tui-command.h: Update copyright.
10239 (tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.
10240
10241 * source.c (ambiguous_line_spec): Delete never-defined function.
10242 * remote-rdi.c (arm_rdi_mourn, arm_rdi_send): Ditto.
10243 * gdbtypes.c (add_name, add_mangled_type): Ditto.
10244 * cli/cli-cmds.c (validate_comname): Ditto.
10245
10246 * tui/tui-disasm.h: Update copyright. Include "tui.h" and
10247 "tui-data.h".
10248 (tui_set_disassem_content): Rename tuiSetDisassemContent.
10249 (tui_show_disassem): Rename tuiShowDisassem.
10250 (tui_show_disassem_and_update_source): Rename
10251 tuiVerticalDisassemScroll.
10252 (tui_vertical_disassem_scroll): Rename tuiVerticalDisassemScroll.
10253 (tui_get_begin_asm_address): Rename tuiGetBeginAsmAddress.
10254 * tui/tui.h: Update copyright.
10255 (enum tui_status): Define.
10256 * tui/tui-data.h (enum tui_scroll_direction): Define.
10257 * tui/tui-disasm.c: Update copyright. Update references.
10258 * tui/tui-winsource.c: Update copyright. Update references.
10259 * tui/tui-win.c: Update references.
10260 * tui/tui-layout.c: Update references.
10261
10262 2004-01-20 Andrew Cagney <cagney@redhat.com>
10263
10264 * mi/mi-cmd-stack.c (list_args_or_locals): Move declaration of
10265 sym2 to start of block.
10266
10267 2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
10268
10269 * MAINTAINERS: Delete mmalloc.
10270 * Makefile.in: Delete MMALLOC, MMALLOC_CFLAGS, -lmmalloc, mmalloc_h.
10271 * NEWS: Mention removal of --with-malloc.
10272 * acconfig.h: Delete USE_MMALLOC, MMCHECK_FORCE.
10273 * config.in: Regenerate.
10274 * configure: Regenerate.
10275 * configure.in: Delete MMALLOC_CFLAGS, MMALLOC, --with-mmalloc,
10276 USE_MMALLOC, MMCHECK_FORCE.
10277 * gdbinit.in: Remove mmalloc.
10278 * utils.c: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE, malloc_botch.
10279 * config/alpha/alpha-linux.mh: Delete MMALLOC, MMALLOC_CFLAGS.
10280 * config/i386/go32.mh: Likewise.
10281 * config/i386/interix.mh: Likewise.
10282 * config/powerpc/xm-linux.h: Delete MMAP_BASE_ADDRESS, MMAP_INCREMENT.
10283
10284 2004-01-19 Jeff Johnston <jjohnstn@redhat.com>
10285
10286 * linespec.c (decode_variable, symtab_from_filename): Call
10287 error_silent with error message instead of throwing an exception
10288 directly.
10289 * defs.h (error_silent, error_output_message): Add prototypes.
10290 (catch_exceptions_with_msg): Ditto.
10291 * utils.c (error_silent, error_output_message): New functions.
10292 * top.c (catch_exceptions_with_msg): New function.
10293
10294 2004-01-20 Nick Roberts <nick@nick.uklinux.net>
10295
10296 * mi/mi-cmds.h (enum print_values): Add definition.
10297
10298 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Print the name,
10299 type and value for simple data types and just the name and type
10300 for complex ones, if required.
10301
10302 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Print the values of the
10303 children, if required.
10304
10305 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10306
10307 * frv-tdep.c (frv_push_arguments, frv_saved_pc_after_call): Delete
10308 unused declarations.
10309
10310 2004-01-19 Andrew Cagney <cagney@redhat.com>
10311
10312 * top.h (mapped_symbol_files): Delete declaration.
10313 * main.c (captured_main): Delete option "m" and "mapped".
10314 * objfiles.c (mapped_symbol_files): Delete variable.
10315 * symfile.c (symbol_file_command): Delete mmap code.
10316 (symbol_file_add_with_addrs_or_offsets): Ditto.
10317 (add_symbol_file_command, reread_separate_symbols): Ditto.
10318 * objfiles.h (OBJF_MAPPED): Delete.
10319 * objfiles.c (allocate_objfile) [USE_MMALLOC]: Delete.
10320 (free_objfile) [USE_MMALLOC]: Ditto.
10321 (open_existing_mapped_file): Delete function.
10322 (open_mapped_file): Delete function.
10323 (map_to_file): Delete function.
10324
10325 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10326
10327 * infrun.c (step_into_function): Account for possible breakpoint
10328 adjustment when computing ``stop_func_start''.
10329
10330 2004-01-19 Kevin Buettner <kevinb@redhat.com>
10331
10332 * target.c (default_region_size_ok_for_hw_watchpoint): Compare
10333 the region size against the size of a pointer, not the size of
10334 a register as given by DEPRECATED_REGISTER_SIZE.
10335
10336 2004-01-19 Andrew Cagney <cagney@redhat.com>
10337
10338 * tui/tui-regs.h: Include "tui-data.h".
10339 (tuiFirstRegElementNoInLine): Delete declaration.
10340 (tui_display_registers_from): Rename tuiDisplayRegistersFrom.
10341 (tui_last_regs_line_no): Rename tuiLastRegsLineNo.
10342 (tui_line_from_reg_element_no): Rename tuiLineFromRegElementNo.
10343 (tui_calculate_regs_column_count): Rename
10344 tuiCalculateRegsColumnCount.
10345 (tui_check_register_values): Rename tuiCheckRegisterValues.
10346 (tui_show_registers): Rename tuiShowRegisters.
10347 (tui_display_registers_from_line): Rename
10348 tuiDisplayRegistersFromLine.
10349 (tui_first_reg_element_inline): Rename tuiFirstRegElementInLine.
10350 (tui_toggle_float_regs): Rename tuiToggleFloatRegs.
10351 (tui_first_reg_element_no_inline): Rename
10352 tuiFirstRegElementNoInLine.
10353 * tui/tui-data.h: Update copyright.
10354 (enum tui_register_display_type): Rename _TuiRegisterDisplayType.
10355 * tui/tui-windata.c: Update copyright, update references.
10356 * tui/tui-regs.c: Update copyright, update references.
10357 * tui/tui-win.c: Update copyright, update references.
10358 * tui/tui-layout.c: Update copyright, update references.
10359
10360 2004-01-18 Andrew Cagney <cagney@redhat.com>
10361
10362 * tui/tui-io.c: Update copyright.
10363 (key_is_end_sequence, key_is_backspace): New functions.
10364 (key_is_command_char, key_is_start_sequence): New function.
10365 (tui_getc): Update references.
10366 * tui/tui-io.h: Update copyright.
10367 (m_tuiStartNewLine): Delete macro.
10368 (m_isBackspace, m_isDeleteChar): Delete macros.
10369 (m_isDeleteLine, m_isDeleteToEol): Delete macros.
10370 (m_isNextPage, m_isPrevPage): Delete macros.
10371 (m_isLeftArrow, m_isRightArrow): Delete macros.
10372 (m_isXdbStyleCommandChar): Delete macro.
10373 (key_is_start_sequence): Declare, replace m_isStartSequence.
10374 (key_is_end_sequence): Declare, replace m_isEndSequence.
10375 (key_is_backspace): Declare ,replace m_isBackspace.
10376 (key_is_command_char): Declare, replace m_isCommandChar.
10377 * tui/tui-command.c: Update copyright.
10378 (tuiDispatchCtrlChar): Update references.
10379
10380 * config/djgpp/fnchange.lst: Delete tui/tuiSourceWin.c and
10381 tuiSourceWin.h.
10382
10383 * tui/tui-command.c: Rename tui/tuiCommand.c.
10384 * tui/tui-command.h: Rename tui/tuiCommand.h.
10385 * tui/tui-data.c: Rename tui/tuiData.c.
10386 * tui/tui-data.h: Rename tui/tuiData.h.
10387 * tui/tui-disasm.c: Rename tui/tuiDisassem.c.
10388 * tui/tui-disasm.h: Rename tui/tuiDisassem.h.
10389 * tui/tui-io.c: Rename tui/tuiIO.c.
10390 * tui/tui-io.h: Rename tui/tuiIO.h.
10391 * tui/tui-layout.c: Rename tui/tuiLayout.c.
10392 * tui/tui-layout.h: Rename tui/tuiLayout.h.
10393 * tui/tui-regs.c: Rename tui/tuiRegs.c.
10394 * tui/tui-regs.h: Rename tui/tuiRegs.h.
10395 * tui/tui-source.c: Rename tui/tuiSource.c.
10396 * tui/tui-source.h: Rename tui/tuiSource.h.
10397 * tui/tui-stack.c: Rename tui/tuiStack.c.
10398 * tui/tui-stack.h: Rename tui/tuiStack.h.
10399 * tui/tui-win.c: Rename tui/tuiWin.c.
10400 * tui/tui-win.h: Rename tui/tuiWin.h.
10401 * tui/tui-windata.c: Rename tui/tuiDataWin.c.
10402 * tui/tui-windata.h: Rename tui/tuiDataWin.h.
10403 * tui/tui-wingeneral.c: Rename tui/tuiGeneralWin.c.
10404 * tui/tui-wingeneral.h: Rename tui/tuiGeneralWin.h.
10405 * tui/tui-winsource.c: Rename tui/tuiSourceWin.c.
10406 * tui/tui-winsource.h: Rename tui/tuiSourceWin.h.
10407 * tui/tui-file.c: Update includes.
10408 * tui/tui-hooks.c: Update includes.
10409 * tui/tui-interp.c: Update includes.
10410 * tui/tui.c: Update includes.
10411 * Makefile.in: Update all tui/ dependencies.
10412 (SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS): Update file names.
10413
10414 * Makefile.in: Update copyright. Update dependencies.
10415
10416 * tui/tuiSourceWin.c (tui_update_breakpoint_info): Fix compile
10417 problem.
10418
10419 2004-01-18 Andrew Cagney <cagney@redhat.com>
10420
10421 * mn10300-tdep.c (_initialize_mn10300_tdep): Call gdbarch_register
10422 instead of register_gdbarch_init.
10423
10424 * remote-sds.c (tohex): Delete unused function. Update copyright.
10425 * xstormy16-tdep.c (xstormy16_register_virtual_size): Ditto.
10426 * v850-tdep.c (v850_register_virtual_size): Ditto.
10427 * target.c (normal_target_post_startup_inferior): Ditto.
10428 * source.c (ambiguous_line_spec): Ditto.
10429 * remote.c (adapt_remote_get_threadinfo): Ditto.
10430 * mi/mi-out.c (out_field_fmt): Ditto.
10431 * mi/mi-interp.c (mi_interp_read_one_line_hook): Ditto.
10432 (output_control_change_notification): Ditto.
10433 * m68k-tdep.c (m68k_register_byte): Ditto.
10434 (m68k_remote_breakpoint_from_pc): Ditto.
10435 * ui-out.c (init_ui_out_state): Delete unused declaration.
10436 * stabsread.c (search_value): Ditto.
10437 * mi/mi-cmd-env.c (env_cli_command): Ditto.
10438 * maint.c (print_section_table): Ditto.
10439 * infrun.c (set_follow_fork_mode_command): Ditto.
10440
10441 2004-01-18 Mark Kettenis <kettenis@gnu.org>
10442
10443 * dwarf2-frame.c (execute_cfa_program): Move DWA_CFA_nop before
10444 DW_CFA_def_cfa_exporession. Add support for
10445 DW_CFA_offset_extendend_sf, DW_CFA_def_cfa_sf and
10446 DW_CFA_def_cfa_offset_sf. This should fix PR backtrace/1391.
10447
10448 2004-01-18 Andrew Cagney <cagney@redhat.com>
10449
10450 * ocd.c: Update copyright.
10451 (bdm_read_register_command): Delete unused function.
10452 (_initialize_remote_ocd): Delete commented out reference.
10453 (get_quoted_char, reset_packet): Delete #if0ed function.
10454 (output_packet, put_quoted_char): Delete #if0ed function.
10455 (stu_put_packet, stu_get_packet): Delete #if0ed function.
10456 (ocd_start_remote): Delete #if0ed code, remove #if1 wrapper.
10457 (BDM_BREAKPOINT): Delete #if0ed macro.
10458 (remote_timeout): Delete #if0ed variable.
10459
10460 2004-01-18 Mark Kettenis <kettenis@gnu.org>
10461
10462 * Makefile.in (ALLDEPFILES): Remove core-sol2.c.
10463 (core-sol2.o): Remove dependency.
10464 * core-sol2.c: Remove file.
10465
10466 2004-01-17 Andrew Cagney <cagney@redhat.com>
10467
10468 * mdebugread.c (compare_blocks): Make addr_diff a LONGEST.
10469 * block.h: Make GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOOCK
10470 enums.
10471
10472 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10473
10474 * remote.c: Update copyright years.
10475
10476 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10477
10478 * remote.c (remote_vcont_resume): Use xstrprintf instead of sprintf.
10479
10480 2004-01-17 Andrew Cagney <cagney@redhat.com>
10481
10482 * mdebugread.c: Update copyright.
10483 (parse_symbol): Replace DEPRECATED_STREQ with strcmp.
10484 (parse_type, parse_procedure): Ditto.
10485 (parse_partial_symbols, psymtab_to_symtab_1): Ditto.
10486
10487 * cris-tdep.c (cris_store_struct_return): Put back accidently
10488 deleted function.
10489
10490 * gdbarch.sh: Update copyright year.
10491 * gdbarch.h, gdbarch.c: Re-generate.
10492
10493 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10494
10495 Suggested by George Anzinger.
10496 * dwarf2expr.c (execute_stack_op): Fetch the second item from the
10497 correct stack offset. Include unknown opcode numbers in the error
10498 message.
10499
10500 2004-01-17 Andrew Cagney <cagney@redhat.com>
10501
10502 * x86-64-tdep.c (x86_64_init_abi): No need to clear
10503 extract_struct_value_address, i386 does not set it.
10504 * sparc64-tdep.c (sparc64_init_abi): Do not set
10505 extract_struct_value_address, never called.
10506 (sparc64_extract_struct_value_address): Delete function.
10507 * m68hc11-tdep.c: Update copyright.
10508 (m68hc11_gdbarch_init): Delete redundant assignment of
10509 extract_struct_value_address.
10510 * i386-tdep.c: Update copyright.
10511 (i386_gdbarch_init): Do not set extract_struct_value_address,
10512 never called.
10513 (i386_extract_struct_value_address): Delete function.
10514 * sparc-tdep.c (sparc32_gdbarch_init): Do not set
10515 extract_struct_value_address, never called.
10516 (sparc32_extract_struct_value_address): #if 0 function. Add
10517 comments explaining its future.
10518
10519 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10520
10521 * arm-tdep.c (arm_write_pc): New function.
10522 (arm_gdbarch_init): Call set_gdbarch_write_pc.
10523
10524 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
10525
10526 * breakpoint.c (must_shift_inst_regs): Delete.
10527 (bpstat_stop_status): Delete references to DECR_PC_AFTER_HW_BREAK
10528 and SHIFT_INST_REGS.
10529 * infcmd.c (step_1, step_1_continuation): Delete references to
10530 SHIFT_INST_REGS.
10531 * infrun.c (keep_going): Likewise.
10532 * target.h (DECR_PC_AFTER_HW_BREAK): Don't define.
10533 * config/i386/nm-i386.h (DECR_PC_AFTER_HW_BREAK): Likewise.
10534
10535 2004-01-17 Andrew Cagney <cagney@redhat.com>
10536
10537 * gdbarch.sh (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
10538 * gdbarch.h, gdbarch.c: Re-generate.
10539 * infcmd.c (print_return_value): Delete reference to
10540 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
10541
10542 * cris-tdep.c (cris_gdbarch_init): Do not set
10543 deprecated_extract_struct_value_address.
10544
10545 * xstormy16-tdep.c: Update copyright.
10546 (xstormy16_extract_struct_value_address): Update to current
10547 extract struct value address interface.
10548 (xstormy16_gdbarch_init): Set extract_struct_value_address.
10549 * sh64-tdep.c (sh64_extract_struct_value_address): Update to
10550 current extract struct value address interface.
10551 (sh64_gdbarch_init): Set extract_struct_value_address.
10552
10553 * cris-tdep.c: Update copyright.
10554 (cris_extract_struct_value_address): Delete function.
10555 (struct_return_address): Delete variable.
10556 (cris_store_struct_return): Do not set struct_return_address.
10557
10558 * mcore-tdep.c: Update copyright.
10559 (mcore_extract_struct_value_address): Delete function. Update
10560 comments.
10561 (mcore_gdbarch_init): Update.
10562 * mn10300-tdep.c: Update copyright.
10563 (mn10300_extract_struct_value_address): Delete function.
10564 (mn10300_gdbarch_init): Update.
10565 * v850-tdep.c: Update copyright.
10566 (v850_extract_struct_value_address): Delete.
10567 (v850_gdbarch_init): Update.
10568 * ns32k-tdep.c: Update copyright.
10569 (ns32k_extract_struct_value_address): Delete.
10570 (ns32k_gdbarch_init): Update.
10571 * hppa-tdep.c (hppa_extract_struct_value_address): Delete.
10572 (hppa_gdbarch_init): Update.
10573 * vax-tdep.c: Update copyright.
10574 (vax_extract_struct_value_address): Delete.
10575 (vax_gdbarch_init): Update.
10576
10577 * gdbarch.sh (DEPRECATED_NPC_REGNUM): Delete.
10578 * gdbarch.h, gdbarch.c: Re-generate.
10579 * procfs.c (procfs_fetch_registers): Delete reference to
10580 DEPRECATED_NPC_REGNUM.
10581 (procfs_store_registers): Ditto.
10582 * regcache.c (generic_target_write_pc): Simplify.
10583 * lynx-nat.c: Delete #ifdef SPARC code. Not used.
10584
10585 * core-sol2.c (fetch_core_registers): Replace
10586 DEPRECATED_NPC_REGNUM with equivalent tdep value.
10587
10588 * hppa-tdep.c: Update copyright year.
10589 (hppa_target_write_pc): Use PCOQ_TAIL_REGNUM instead of
10590 NPC_REGNUM.
10591 (hppa_gdbarch_init): Do not set deprecated_npc_regnum.
10592
10593 * mips-tdep.c (mips_write_pc): New function.
10594 (mips_gdbarch_init): Set "write_pc" to "mips_write_pc".
10595 (mips_read_pc): Use mips_regnum instead of PC_REGNUM.
10596 (mips_find_saved_regs, mips_software_single_step: Ditto.
10597 (mips_frame_saved_pc, mips_frame_saved_pc): Ditto.
10598 mips_init_extra_frame_info, mips_pop_frame): Ditto.
10599
10600 2004-01-17 Andrew Cagney <cagney@redhat.com>
10601
10602 * mips-tdep.c: Re-indent. Group functions by ABI.
10603
10604 2004-01-17 Andrew Cagney <cagney@redhat.com>
10605
10606 * gdbarch.sh (DECR_PC_AFTER_BREAK): Make zero the default.
10607 * gdbarch.c: Re-generate.
10608 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
10609 DECR_PC_AFTER_BREAK to zero.
10610 * vax-tdep.c (vax_gdbarch_init): Ditto.
10611 * v850-tdep.c (v850_gdbarch_init): Ditto.
10612 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
10613 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
10614 * sh-tdep.c (sh_gdbarch_init): Ditto.
10615 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
10616 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
10617 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
10618 * mips-tdep.c (mips_gdbarch_init): Ditto.
10619 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
10620 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10621 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
10622 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
10623 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
10624 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
10625 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
10626 * frv-tdep.c (frv_gdbarch_init): Ditto.
10627 * cris-tdep.c (cris_gdbarch_init): Ditto.
10628 * avr-tdep.c (avr_gdbarch_init): Ditto.
10629 * arm-tdep.c (arm_gdbarch_init): Ditto.
10630 * i386-nto-tdep.c (i386nto_init_abi): Add comment.
10631
10632 2004-01-17 J. Brobecker <brobecker@gnat.com>
10633
10634 * dwarf2read.c (dwarf2_non_const_array_bound_ignored_complaint):
10635 Delete, no longer used.
10636 (read_subrange_type): New function, mostly extracted from
10637 read_array_type().
10638 (read_array_type): Replace extracted code by call to
10639 read_subrange_type().
10640 (dwarf2_get_attr_constant_value): New function.
10641 (scan_partial_symbols): Add handling for DW_TAG_subrange_type.
10642 (add_partial_symbol): Likewise.
10643 (process_die): Likewise.
10644 (new_symbol): Likewise.
10645 (read_type_die): Likewise.
10646
10647 2004-01-16 Andrew Cagney <cagney@redhat.com>
10648
10649 * symfile.c: Update copyright year.
10650 (compare_symbols): Delete unused function.
10651 * stabsread.c: Update copyright year.
10652 (lrs_general_complaint): Delete unused function.
10653 (ref_search_value): Ditto.
10654 (get_substring): Delete declaration.
10655 * sh64-tdep.c: Update copyright year.
10656 (sh64_get_gdb_regnum): Delete unused function.
10657 * dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint):
10658 Delete unused function.
10659
10660 2004-01-17 Mark Kettenis <kettenis@gnu.org>
10661
10662 * defs.h (gdb_osabi): Add GDB_OSABI_OPENBSD_ELF.
10663 * osabi.c (gdb_osabi_names): Add "OpenBSD ELF".
10664
10665 2004-01-16 Andrew Cagney <cagney@redhat.com>
10666
10667 Changes from Peter Schauer.
10668 * rs6000-tdep.c: Update copyright year.
10669 (rs6000_push_dummy_call): Update the stack pointer before
10670 accessing the corresponding stack region.
10671 * rs6000-nat.c: Update copyright year.
10672 (set_host_arch): Set "info.abfd" to "exec_bfd".
10673
10674 2004-01-15 Mark Kettenis <kettenis@gnu.org>
10675
10676 * blockframe.c: Update copyright year.
10677 (inside_entry_func): Don't treat a zero PC specially.
10678
10679 2004-01-14 Elena Zannoni <ezannoni@redhat.com>
10680
10681 * gcore.c (gcore_copy_callback): Use paddr_d to print size
10682 variable.
10683 (gcore_create_callback): Ditto. Skip any memory segment that has
10684 no permissions set.
10685
10686 2004-01-14 David Carlton <carlton@kealia.com>
10687
10688 Change symbols for C++ nested types to contain the fully qualified
10689 name, if possible. (At least in the DWARF-2 case.) Partial fix
10690 for PR's c++/57, c++/488, c++/539, c++/573, c++/609, c++/832,
10691 c++/895.
10692 * c-exp.y (qualified_type): Handle types nested within classes.
10693 * cp-namespace.c: Update comments.
10694 (cp_set_block_scope): Delete #if 0.
10695 (cp_lookup_nested_type): Handle types nested within classes.
10696 * dwarf2read.c: (scan_partial_symbols): Call add_partial_structure
10697 when appropriate.
10698 (add_partial_symbol): Add the name of the enclosing namespace to
10699 types.
10700 (pdi_needs_namespace): New.
10701 (add_partial_namespace): Tweak comment.
10702 (add_partial_structure): New.
10703 (psymtab_to_symtab_1): Initialize processing_current_prefix
10704 here...
10705 (process_die): instead of here.
10706 (read_structure_scope): Try to figure out the name of the class or
10707 namespace that the structure might be defined within.
10708 (read_enumeration): Generate fully-qualified names, if possible.
10709 (read_namespace): Don't set name to NULL.
10710 (die_specification): New.
10711 (new_symbol): Generate fully-qualified names for types.
10712 (read_type_die): Determine appropriate prefix.
10713 (determine_prefix): New.
10714 (typename_concat): New.
10715 (class_name): New.
10716 * valops.c (value_aggregate_elt): Pass NOSIDE to
10717 value_struct_elt_for_reference.
10718 (value_struct_elt_for_reference): Make static, add NOSIDE
10719 parameter, call value_maybe_namespace_elt as a last resort.
10720 (value_namespace_elt): Break out code into
10721 value_maybe_namespace_elt.
10722 (value_maybe_namespace_elt): New.
10723
10724 2004-01-12 Andrew Cagney <cagney@redhat.com>
10725
10726 * mips-tdep.c (mips_convert_register_p): Handle both raw and
10727 cooked floating-point registers.
10728 (mips_gdbarch_init): Set convert_register_p, register_to_value,
10729 and value_to_register.
10730
10731 2004-01-13 Andrew Cagney <cagney@redhat.com>
10732
10733 * gdbarch.sh (FUNCTION_START_OFFSET): Make zero the default.
10734 * gdbarch.c: Re-generate.
10735 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
10736 FUNCTION_START_OFFSET.
10737 * v850-tdep.c (v850_gdbarch_init): Ditto.
10738 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
10739 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
10740 * sh-tdep.c (sh_gdbarch_init): Ditto.
10741 * s390-tdep.c (s390_gdbarch_init): Ditto.
10742 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
10743 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
10744 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
10745 * mips-tdep.c (mips_gdbarch_init): Ditto.
10746 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
10747 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
10748 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
10749 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
10750 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
10751 * i386-tdep.c (i386_gdbarch_init): Ditto.
10752 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
10753 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
10754 * frv-tdep.c (frv_gdbarch_init): Ditto.
10755 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
10756 * cris-tdep.c (cris_gdbarch_init): Ditto.
10757 * avr-tdep.c (avr_gdbarch_init): Ditto.
10758 * arm-tdep.c (arm_gdbarch_init): Ditto.
10759 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
10760
10761 2004-01-13 Daniel Jacobowitz <drow@mvista.com>
10762
10763 * infrun.c (follow_fork_mode_ask): Remove.
10764 (follow_fork_mode_kind_names): Remove follow_fork_mode_ask.
10765 (follow_fork): Simplify and remove internal error for
10766 follow_fork_mode_ask.
10767 (_initialize_infrun): Update "set follow-fork-mode" help text.
10768
10769 2004-01-13 Andrew Cagney <cagney@redhat.com>
10770
10771 * configure.in: Update copyright year.
10772 (build_warnings): Add -Wunused-label.
10773 * configure: Re-generate.
10774
10775 2004-01-12 Andrew Cagney <cagney@redhat.com>
10776
10777 * exec.h (exec_ops): Make "extern".
10778
10779 * mips-tdep.c (mips_pseudo_register_read): Don't return a value,
10780 the function is void.
10781 (mips_pseudo_register_write): Ditto.
10782
10783 2004-01-12 Andrew Cagney <cagney@redhat.com>
10784
10785 * stack.c (frame_info): Delete DEPRECATED_PRINT_EXTRA_FRAME_INFO
10786 call. Never defined.
10787 * sparc-tdep.h (struct frame_info): Add opaque declaration.
10788 * sparc64-tdep.h (struct gdbarch): Add opaque declaration.
10789 (struct sparc_gregset, struct regcache): Ditto.
10790 * sparc-nat.c: Update copyright. Specify "GNU/Linux".
10791
10792 2004-01-12 Andrew Cagney <cagney@redhat.com>
10793
10794 * mi/ChangeLog: Delete file. Renamed to ...
10795 * mi/ChangeLog-1999-2003: New file.
10796 * tui/ChangeLog: Delete file. Renamed to ...
10797 * tui/ChangeLog-1998-2003: New file.
10798
10799 2004-01-11 Mark Kettenis <kettenis@gnu.org>
10800
10801 * sparc64nbsd-tdep.c: Include "regset.h".
10802 (sparc64nbsd_sizeof_struct_reg, sparc64nbsd_sizeof_struct_fpreg):
10803 Remove variables.
10804 (fetch_core_registers): Remove function.
10805 (sparc64nbsd_core_fns): Remove variable.
10806 (sparc64nbsd_supply_gregset, sparc64nbsd_supply_fpregset): New
10807 functions.
10808 (sparc64nbsd_init_abi): Initialize TDEP->gregset,
10809 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
10810 (_initialize_sparc64nbsd_tdep): Remove call to add_core_fns.
10811
10812 * sparc-tdep.c (sparc32_extract_struct_value_address): Rename from
10813 sparc_extract_struct_value_address.
10814 (sparc32_gdbarch_init): Set extract_struct_value_address.
10815 * sparc64-tdep.c (sparc64_extract_struct_value_address): New
10816 function.
10817 (sparc64_init_abi): Set extract_struct_value_address. Don't set
10818 return_value_on_stack.
10819
10820 * NEWS: Mention that %cs and %ss have been added to the AMD64
10821 configurations
10822
10823 * frame.c: Update copyright year.
10824 (get_prev_frame): Improve comment.
10825
10826 * sparc64fbsd-tdep.c: Include "regset.h".
10827 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
10828 Remove variables.
10829 (fetch_core_registers): Remove function.
10830 (sparc64fbsd_core_fns): Remove variable.
10831 (sparc64fbsd_supply_gregset, sparc64fbsd_supply_fpregset): New
10832 functions.
10833 (sparc64fbsd_init_abi): Initialize TDEP->gregset,
10834 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
10835 (_initialize_sparc64fbsd_tdep): Remove call to add_core_fns.
10836
10837 * sparcnbsd-tdep.c: Include "regset.h".
10838 (fetch_core_registers): Remove function.
10839 (sparcnbsd_core_fns, sparcnbsd_elfcore_fns): Remove varaibles.
10840 (sparc32nbsd_supply_gregset, sparc32nbsd_supply_fpregset): New
10841 functions.
10842 (sparc32nbsd_init_abi): Initialize TDEP->gregset and
10843 TDEP->fpregset.
10844 (_initialize_sparcnbsd_tdep): Remove calls to add_core_fns.
10845
10846 * sparc-tdep.h (struct regset): Provide opaque declaration.
10847 (struct gdbarch_tdep): Add gregset, sizeof_gregset,
10848 fpregset and sizeof_fpregset members.
10849 * sparc-tdep.c (struct regset): Provide opaque declaration.
10850 (sparc_regset_from_core_section): New function.
10851 (sparc32_gdbarch_init): Initialize TDEP->gregset,
10852 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_fpregset.
10853 Set regset_from_core_section when appropriate.
10854
10855 2004-01-10 Mark Kettenis <kettenis@gnu.org>
10856
10857 * x86-64-tdep.c (amd64_non_pod_p): New function.
10858 (amd64_classify_aggregate): Return class memory for non-POD
10859 C++ structure types.
10860
10861 * x86-64-tdep.c (amd64_push_arguments): Add struct_return
10862 argument. Use it to reserve a register if necessary.
10863 (amd64_push_dummy_call): Pass STRUCT_RETURN in call to
10864 amd64_push_arguments.
10865
10866 * x86-64-tdep.c (amd64_classify_aggregate): Ignore static fields.
10867
10868 * x86-64-tdep.c (amd64_register_info): Add %cs and %ss. Adjust
10869 register numbers in comments.
10870 * x86-64-tdep.h: Update copyright year.
10871 (X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM, X86_64_XMM1_REGNUM):
10872 Adjust for addition of %cs and %ss.
10873 * amd64fbsd-nat.c: Update copyright year.
10874 (reg_offset): Add register offsets for %cs and %ss.
10875 * amd64fbsd-tdep.c: Update copyright year.
10876 (amd64fbsd_r_reg_offset): Add register offsets for %cs and %ss.
10877 (amd64fbsd_sc_reg_offset): Likewise.
10878 * x86-64-linux-nat.c: Update copyright year.
10879 (x86_64_linux_gregset64_reg_offset): Add register offsets for %cs
10880 and %ss.
10881 * amd64nbsd-nat.c: Update copyright year.
10882 (amd64nbsd32_r_reg_offset): Add register offsets for %cs and %ss.
10883 * amd64nbsd-tdep.c: Update copyright year.
10884 (amd64nbsd_r_reg_offset): Add register offsets for %cs and %ss.
10885 * x86-64-linux-tdep.c: Update copyright year.
10886 (user_to_gdb_regmap): Add mapping for %cs and %ss.
10887 (x86_64_linux_sc_reg_offset): Adjust for addition of %cs and %ss.
10888 * regformats/reg-x86-64.dat: Add %cs and %ss.
10889
10890 * blockframe.c (inside_entry_func): Reformat. Introduce new local
10891 variables to prevent long lines. Update comments to reflect
10892 reality.
10893
10894 2004-01-09 David Carlton <carlton@kealia.com>
10895
10896 Checked in by Elena Zannoni <ezannoni@redhat.com>.
10897 * dwarf2read.c (read_namespace): Pull out name-generating code
10898 into namespace_name. Rename previous_namespace to previous_prefix
10899 and processing_current_namespace to processing_current_prefix..
10900 (namespace_name): New function.
10901 (add_partial_symbol): Substitute uses of pdi->name with
10902 actual_name.
10903 * cp-support.h: Rename processing_current_namespace to
10904 processing_current_prefix.
10905 Update copyright year.
10906 * cp-namespace.c: Rename processing_current_namespace to
10907 processing_current_prefix.
10908 Update copyright year.
10909
10910 2004-01-09 Andrew Cagney <cagney@redhat.com>
10911
10912 * jv-valprint.c, ser-unix.c: Add missing copyright years.
10913
10914 2004-01-09 Mark Kettenis <kettenis@gnu.org>
10915
10916 * dbxread.c (read_dbx_symtab): Ignore N_PATCH stabs instead of
10917 complaining.
10918 (process_one_symbol): Deal with N_PATCH stabs.
10919
10920 2004-01-09 Elena Zannoni <ezannoni@redhat.com>
10921
10922 * dwarf2read.c (read_array_type): Discard FORTRAN_HACK macro and
10923 ifdeffed code.
10924 Update copyright year.
10925
10926 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
10927
10928 * config/pa/tm-hppa.h: Update extern declarations for
10929 hppa32_hpux_frame_saved_pc_in_sigtramp,
10930 hppa32_hpux_frame_base_before_sigtramp, and
10931 hppa32_hpux_frame_find_saved_regs_in_sigtramp.
10932
10933 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
10934
10935 * config/pa/tm-hppah.h: Update copyright years.
10936
10937 2004-01-08 Andrew Cagney <cagney@redhat.com>
10938
10939 * mips-tdep.c (mips_n32n64_reg_struct_has_addr): Delete function.
10940 (mips_o32_reg_struct_has_addr): Delete function.
10941 (mips_gdbarch_init): Update.
10942 (mips_extract_struct_value_address): Delete function.
10943
10944 2004-01-08 David Mosberger <davidm@hpl.hp.com>
10945
10946 * ia64-linux-tdep.c: Update GATE_AREA_END value to reflect
10947 reality.
10948
10949 2004-01-07 Andrew Cagney <cagney@redhat.com>
10950
10951 * mips-tdep.c (mips_gdbarch_init): Set elf_flags to the previous
10952 architecture's elf flags (when available).
10953
10954 * mips-tdep.c (mips_gdbarch_init): Move code determining the MIPS
10955 FPU to the start, check the MIPS FPU when looking for an old
10956 architecture.
10957 (set_mipsfpu_single_command): Update the architecture.
10958 (set_mipsfpu_double_command, set_mipsfpu_none_command): Ditto.
10959
10960 * mips-tdep.c (MIPS_DEFAULT_MASK_ADDRESS_P): Delete macro.
10961 (mips_mask_address_p): Add "tdep" parameter.
10962 (show_mask_address, mips_addr_bits_remove): Update.
10963 (mips_dump_tdep): Update.
10964 (MIPS_DEFAULT_STACK_ARGSIZE): Delete macro.
10965 (MIPS_STACK_ARGSIZE): Delete macro.
10966 (mips_stack_argsize, mips_eabi_push_dummy_call): Update.
10967 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call): Update.
10968 (mips_o64_push_dummy_call, mips_o32_return_value): Update.
10969 (mips_dump_tdep): Update.
10970 (MIPS_SAVED_REGSIZE): Delete macro.
10971 (MIPS_DEFAULT_SAVED_REGSIZE): Delete macro.
10972 (mips_saved_regsize, mips_eabi_use_struct_convention): Update.
10973 (mips_eabi_reg_struct_has_addr, mips_find_saved_regs): Update.
10974 (mips_frame_saved_pc, mips16_heuristic_proc_desc): Update.
10975 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call): Update.
10976 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update.
10977 (mips_pop_frame, return_value_location): Update.
10978 (mips_n32n64_return_value, mips_dump_tdep): Update.
10979
10980 * mips-tdep.c (mips_gdbarch_init): Clean up code selecting the
10981 MIPS ABI.
10982
10983 * mips-tdep.c: Update copyright.
10984 (mips_gdbarch_init): Merge two code blocks handling the register
10985 name and number layout.
10986
10987 2004-01-02 Pawel Ostrowski <pasza@zodiac.mimuw.edu.pl>
10988
10989 * tracepoint.c (validate_actionline): Fix segv at EOF
10990
10991 2004-01-07 Michael Chastain <mec.gnu@mindspring.com>
10992
10993 * hpread.c (hpread_read_struct_type): Call SET_FIELD_PHYSNAME
10994 properly for static fields.
10995
10996 2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
10997 Jason Molenda <jmolenda@apple.com>
10998
10999 * disasm.c: Update copyright to include 2004.
11000 (do_mixed_source_and_assembly): For uiout asm list
11001 and tuple cleanups, initialize to null_cleanup instead of
11002 NULL and do so prior to loop. Only reset when we close off
11003 the tuple/list. Move check for whether to close off the
11004 asm tuple/list to after dump_insns call where it will be run
11005 on each loop iteration.
11006
11007 2004-01-05 Andrew Cagney <cagney@redhat.com>
11008
11009 * ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
11010 should be a switch case and not a label.
11011 * mips-tdep.c (mips32_next_pc): Delete unused labels
11012 "greater_equal_branch" and "less_zero_branch".
11013 * jv-valprint.c (java_print_value_fields): Delete unused label
11014 "flush_it".
11015
11016 * target.c (unpush_target): Only close a target that is in the
11017 target stack.
11018
11019 2004-01-05 Mark Kettenis <kettenis@gnu.org>
11020
11021 * sparc-tdep.c (sparc_extract_struct_value_address): Get the
11022 address from [sp + 64] instead of %o2.
11023
11024 * frame.c (get_prev_frame): Don't try to unwind the PC. This
11025 fixes PR backtrace/1476.
11026
11027 2004-01-05 Andrew Cagney <cagney@redhat.com>
11028
11029 * libunwind-frame.h (struct frame_id): Add opaque declaration,
11030 move to start of file.
11031 * i386-tdep.h (struct regcache): Add opaque declaration.
11032 * config/ia64/nm-linux.h (struct target_ops): Add opaque
11033 declaration.
11034 * ia64-tdep.c (ia64_find_proc_info_x): Do not use __FUNCTION__.
11035 (ia64_gdbarch_init): Use "GNU/Linux" in comment.
11036 * win32-nat.c (fake_create_process): Use ISO C style definition.
11037 * stabsread.c (define_symbol): Delete #ifndef
11038 DEPRECATED_USE_REGISTER_NOT_ARG wrapper around
11039 stabs_argument_has_addr call, macro never defined.
11040
11041 2004-01-04 Michael Chastain <mec.gnu@mindspring.com>
11042
11043 * op50-rom.c: Delete.
11044 * w89k-rom.c: Delete.
11045 * Makefile.in: Remove references.
11046
11047 2004-01-04 Mark Kettenis <kettenis@gnu.org>
11048
11049 * x86-64-tdep.c: Update copyright year.
11050 (struct amd64_register_info): Rename from x86_64_register_info.
11051 (amd64_register_info): Rename from x86_64_register_info.
11052 (AMD64_NUM_REGS): Rename from X86_64_NUM_REGS.
11053 (amd64_register_name): Rename from x86_64_register_name.
11054 (amd64_register_type): Rename from x86_64_register_type.
11055 (amd64_dwarf_regmap): Rename from x86_64_dwarf_regmap.
11056 (amd64_dwarf_regmap_len): Rename from x86_64_dwarf_regmap_len.
11057 (amd64_dwarf_reg_to_regnum): Rename from
11058 x86_64_dwarf_reg_to_regnum.
11059 (amd64_convert_register_p): Rename from x86_64_convert_register_p.
11060 (amd64_push_dummy_call): Rename from x86_64_push_dummy_call.
11061 (AMD64_NUM_SAVED_REGS): Rename from X86_64_NUM_SAVED_REGS.
11062 (struct amd64_frame_cache): Renamed from x86_64_frame_cache.
11063 (amd64_alloc_frame_cache): Renamed from x86_64_alloc_frame_cache.
11064 (amd64_analyze_prologue): Rename from x86_64_analyze_prologue.
11065 (amd64_skip_prologue): Rename from x86_64_skip_prologue.
11066 (amd64_frame_cache): Rename from x86_64_frame_cache.
11067 (amd64_frame_this_id): Rename from x86_64_frame_this_id.
11068 (amd64_frame_prev_register): Rename from
11069 x86_64_frame_prev_register.
11070 (amd64_frame_unwind): Rename from x86_64_frame_unwind.
11071 (amd64_frame_sniffer): Rename from x86_64_frame_sniffer.
11072 (amd64_sigtramp_frame_cache): Rename from
11073 x86_64_sigtramp_frame_cache.
11074 (amd64_sigtramp_frame_prev_register): Rename from
11075 x86_64_sigtramp_frame_prev_register.
11076 (amd64_sigtramp_frame_unwind): Rename from
11077 x86_64_sigtramp_frame_unwind.
11078 (amd64_sigtramp_frame_sniffer): Rename from
11079 x86_64_sigtramp_frame_sniffer.
11080 (amd64_frame_base_address): Rename from x86_64_frame_base_address.
11081 (amd64_frame_base): Rename from x86_64_frame_base.
11082 (amd64_unwind_dummy_id): Rename from x86_64_unwind_dummy_id.
11083 (amd64_frame_align): Rename from x86_64_frame_align.
11084 (amd64_supply_fpregset): Rename from x86_64_supply_fpregset.
11085 (amd64_regset_from_core_section): Rename from
11086 x86_64_regset_from_core_section.
11087 (x86_64_init_abi): Update comments.
11088
11089 2004-01-04 Nick Roberts <nick@nick.uklinux.net>
11090
11091 * MAINTAINERS (write after approval): Add myself.
11092
11093 2004-01-04 Mark Kettenis <kettenis@gnu.org>
11094
11095 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
11096 `float' arguments.
11097
11098 2004-01-04 Mark Kettenis <kettenis@gnu.org>
11099
11100 * sparc64-tdep.c (sparc64_store_floating_fields): Update comment
11101 such that it mentions a specific version of GCC that exhibits this
11102 bug.
11103
11104 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11105
11106 * sparc64-tdep.c (sparc64_store_floating_fields): If TYPE is a
11107 structure that has a single `float' member, store it in %f1 in
11108 addition to %f0.
11109
11110 * sparc-sol2-nat.c: Add missing '\'.
11111
11112 * sparc-tdep.c (sparc32_return_value): New function.
11113 (sparc32_use_struct_convention, sparc32_return_value_on_stack):
11114 Remove functions.
11115 (sparc32_gdbarch_init): Set return_value, don't set
11116 extract_return_value, store_return_value, use_struct_convention
11117 and return_value_on_stack.
11118
11119 * sparc-sol2-nat.c: Add missing ')'.
11120
11121 2004-01-03 J. Brobecker <brobecker@gnat.com>
11122
11123 * infrun.c (handle_step_into_function): New function.
11124 (handle_inferior_event): Extract out some code into the new
11125 function above.
11126
11127 2004-01-03 J. Brobecker <brobecker@gnat.com>
11128
11129 * infrun.c (handle_inferior_event): Move the declaration of
11130 real_stop_pc inside the if blocks where it is used.
11131
11132 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11133
11134 * sparc64-tdep.c (sparc64_16_byte_align_p)
11135 (sparc64_store_floating_fields, sparc64_store_floating_fields):
11136 Use check_typedef to get subtypes of structures and unions.
11137 (sparc64_store_return_value): Fix calculation of the appropriate
11138 offset into VALBUF when storing a structure or union.
11139 (sparc64_return_value): New function.
11140 (sparc64_use_struct_convention): Remove function.
11141 (sparc64_init_abi): Set return_value, don't set
11142 extract_return_value, store_return_value and
11143 use_struct_convention.
11144
11145 2004-01-03 Eli Zaretskii <eliz@elta.co.il>
11146
11147 * config/djgpp/fnchange.lst: Add lines for COPYING.LIBGLOSS,
11148 bfd/doc/ChangeLog-9103, bfd/elf32-m68hc1x.c,
11149 gdb/config/alpha/xm-alphaosf.h,
11150 gdb/config/powerpc/tm-ppcle-eabi.h,
11151 gdb/config/rs6000/tm-rs6000-aix4.h, gdb/gdbtk/ChangeLog-2001,
11152 gdb/gdbtk/ChangeLog-2002, gdb/gdbtk/ChangeLog-2003,
11153 gdb/gdbtk/plugins/intel-pentium/intel-pentium.tcl.in,
11154 gdb/gdbtk/plugins/rhabout/rhabout.tcl.in, gdb/i386-linux-nat.c,
11155 gdb/ia64-aix-nat.c, gdb/ia64-aix-tdep.c, gdb/ia64-linux-nat.c,
11156 gdb/ia64-linux-nat.c, gdb/ppc-linux-tdep.c, gdb/ppc-linux-nat.c,
11157 gdb/sparc64nbsd-nat.c, gdb/sparc64nbsd-tdep.c,
11158 gdb/sparc64-linux-nat.c, gdb/sparc64-linux-tdep.c,
11159 gdb/sparc64-nat.c, gdb/sparc64-tdep.c, gdb/sparc64-sol2-tdep.c,
11160 gdb/sparc-sol2-nat.c, gdb/sparc-sol2-tdep.c,
11161 gdb/testsuite/gdb.gdbtk/, gdb/testsuite/gdb.mi/mi-var-child.exp,
11162 nclude/ChangeLog-9103, include/coff/ChangeLog-9103,
11163 include/elf/ChangeLog-9103, include/opcode/ChangeLog-9103,
11164 opcodes/ChangeLog-0001, opcodes/ChangeLog-0203,
11165 opcodes/openrisc-dis.c, opcodes/openrisc-desc.h,
11166 sim/frv/profile-fr550.c, sim/frv/profile-fr550.h,
11167 sim/sh64/sem-compact-switch.c, sim/sh64/sem-media-switch.c,
11168 sim/testsuite/sim/sh64/compact/ldsl-mach.cgs,
11169 sim/testsuite/sim/sh64/compact/ldsl-macl.cgs,
11170 sim/testsuite/sim/sh64/compact/stsl-mach.cgs, and
11171 sim/testsuite/sim/sh64/compact/stsl-macl.cgs.
11172 Remove lines for .cvsignore files.
11173
11174 2004-01-03 J. Brobecker <brobecker@gnat.com>
11175
11176 * infrun.c: Back out the previous change.
11177
11178 2004-01-03 Mark Kettenis <kettenis@gnu.org>
11179
11180 * NEWS: Mention revised SPARC target. Add sparc-*-lynxos* and
11181 sparc-*-sunos4* to the list of REMOVED configurations.
11182
11183 * configure.tgt: Add back sparc-*-vxworks*.
11184 * remote-vxsparc.c: Remove all includes except for "defs.h",
11185 "regcache.h", "vx-share/ptrace.h" and "vx-share/regPacket.h".
11186 Include "sparc-tdep.h".
11187 (SPARC_R_G1): New define.
11188 (vxsparc_gregset): New variable.
11189 (ext_format_sparc): Remove extern declaration.
11190 (vx_read_register): Rewrite to use sparc32_supply_gregset and
11191 sparc32_supply_fpregset.
11192 (vx_write_register): Rewrite to use sparc32_collect_gregset,
11193 sparc_collect_rwindow and sparc32_collect_fpregset.
11194 * config/sparc/tm-vxworks.h: New file, based on recently removed
11195 tm-vxsparc.h.
11196 * config/sparc/vxworks.mt: New file, based on recently removed
11197 vxworks.mt.
11198
11199 2004-01-03 J. Brobecker <brobecker@gnat.com>
11200
11201 * infrun.c (handle_step_into_function): New function.
11202 (handle_inferior_event): Extract out some code into the new
11203 function above.
11204
11205 2004-01-02 Mark Kettenis <kettenis@gnu.org>
11206
11207 * Makefile.in (ALLDEPFILES): Remove sparc-linux-nat.c and
11208 sparcl-tdep.c. Add sparc-linux-tdep.c, sparc-sol2-nat.c,
11209 sparc-sol2-tdep.c, sparc-sol2-nat.c, sparc-sol2-tdep.c,
11210 sparc64-linux-nat.c, sparc64-linux-tdep.c, sparc64-nat.c,
11211 sparc64-sol2-tdep.c, sparc64-tdep.c, sparc64fbsd-nat.c,
11212 sparc64fbsd-tdep.c, sparcnbsd-nat.c, sparcnbsd-tdep.c.
11213 (sparc_nat_h): New variable.
11214 (sparcbsd_nat_h, sparcnbsd_tdep_h): Remove variables.
11215 (tm-sun4os4.h): Remove dependency.
11216 (sparcbsd-nat.o, sparc-linux-nat.o): Remove dependencies.
11217 (sparc64fbsd-nat.o, sparc64fbsd-tdep.o, sparc64nbsd-nat.o,
11218 sparc64-tdep.o, sparc-nat.o, sparcnbsd-nat.o, sparcnbsd-tdep.o,
11219 sparc-tdep.o): Update dependencies.
11220 (sparc-linux-tdep.o, sparc-sol2-nat.o, sparc-sol2-tdep.o,
11221 sparc64-linux-nat.o, sparc64-linux-tdep.o, sparc64-nat.o,
11222 sparc64-sol2-tdep.o, sparc64-tdep.o, sparc64nbsd-tdep.o): New
11223 dependencies.
11224 * configure.host: Remove existing sparc-*-lynxos*,
11225 sparc-*-solaris*, sparc-*-sunos4*, sparc-*-sunos5*, sparc-*-*,
11226 ultrasparc-*-freebsd, sparcv9-*-freebsd, sparc64-*-linux*,
11227 sparcv9-*-* and sparc64-*-* triplets. Add new sparc64-*-linux*,
11228 sparc-*-solaris2*, sparcv9-*-solaris2* and sparc64-*-solaris2*
11229 triplets.
11230 * configure.tgt: Remove exitsing sparc-*-aout*, sparc-*-coff*,
11231 sparc-*-elf*, sparc*-lynxos*, sparc-*-solars2*, sparc-*-sunos4*,
11232 sparc-*-sunos5*, sparc-*-vxworks*, sparc64-*linux*, sparc64-*-*,
11233 sparcv9-*-* and commented out sparc64-*-solars2* triplets. Add
11234 new sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*,
11235 sparc64-*-linux, sparc-*-solaris2*, sparcv9-*-solaris*,
11236 sparc64-*-solaris2* and sparc64-*-* triplets.
11237 * sparc64-tdep.c: Update copyright year. Include "inferior.h",
11238 "symtab.h" and "objfiles.h".
11239 (BIAS): Remove define.
11240 (X_OP, X_RD, X_A, X_COND, X_OP2, X_IMM22, X_OP3, X_I, X_DISP22)
11241 (X_DISP19): Remove macros.
11242 (sparc_fetch_instruction): Remove function.
11243 (struct gdbarch_tdep): Remove definition.
11244 (SPARC64_NUM_REGS, SPARC64_NUM_PSEUDO_REGS): Use ARRAY_SIZE.
11245 (sparc_breakpoint_from_pc): Remove function.
11246 (struct sparc64_frame_cache): Remove definition.
11247 (sparc64_alloc_frame_cache, sparc64_analyze_prologue,
11248 sparc64_unwind_pc): Remove functions.
11249 (sparc64_skip_prologue): Use `struct sparc_frame_cache' instead of
11250 `struct sparc64_frame_cache. Call sparc_analyze_prologue instead
11251 of sparc64_analyze_prologue. Mark constant as ULL instead of UL.
11252 (sparc64_frame_cache): Change return type to `struct
11253 sparc_frame_cache *'. Simply call sparc_frame_cache.
11254 (sparc64_frame_this_id, sparc64_frame_prev_register,
11255 sparc64_frame_base_address): Use `struct sparc_frame_cache'
11256 instead of `struct sparc64_frame_cache.
11257 (sparc_unwind_dummy_id, sparc_extract_struct_value_address,
11258 sparc_analyze_control_transfer, sparc_software_single_step,
11259 sparc64_gdbarch_init, sparc_supply_rwindow, sparc_fill_rwindow,
11260 _initialize_sparc64_tdep): Remove functions.
11261 (TSTATE_CWP, TSTATE_ICC, TSTATE_XCC): New macros.
11262 (PSR_S, PSR_ICC, PSR_VERS, PSR_IMPL, PSR_V8PLUS, PSR_XCC): New
11263 macros.
11264 (sparc64_supply_gregset, sparc64_collect_gregset,
11265 sparc64_supply_fpregset, sparc64_collect_fpregset): New functions.
11266 (sparc64_init_abi): New function.
11267 * sparc64-tdep.h: Update copyright year. Fix typo in multiple
11268 inclusion guard. Include "sparc-tdep.h".
11269 (BIAS): Define.
11270 (r_tstate_offset, r_fprs_offset): New defines.
11271 (enum sparc_regnum): Remove defenition.
11272 (enum sparc64_regnum): Reformat.
11273 (sparc_supply_rwindow, sparc_fill_rwindow): Remove prototypes.
11274 (sparc64_init_abi, sparc64_supply_gregset,
11275 sparc64_collect_gregset, sparc64_supply_fpregset,
11276 sparc64_collect_fpregset): New prototypes.
11277 (sparc64_sol2_gregset, sparc64nbsd_gregset, sparc64fbsd_gregset):
11278 Add extern declarations.
11279 (sparc64_sol2_init_abi): New prototype.
11280 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
11281 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
11282 prototypes.
11283 * sparc64fbsd-nat.c: Include "sparc-nat.h", don't include
11284 "sparnbsd-nat.h".
11285 (sparc64fbsd_reg_supplies_p, sparc64fbsd_fpreg_supplies_p): Remove
11286 functions.
11287 (_initialize_sparc64fbsd_nat): Remove initialization of
11288 sparcbsd_supply_reg, sparcbsd_fill_reg, sparcbsd_supply_fpreg,
11289 sparcbsd_fill_fpreg, sparcbsd_reg_supplies_p,
11290 sparcbsd_fpreg_supplies_p. Initialize sparc_gregset.
11291 * sparc64fbsd-tdep.c: Update copyright year. Include "frame.h",
11292 "frame-unwind.h", "trad-frame.h" and "gdb_assert.h".
11293 (sparc64fbsd_r_global_offset, sparc64fbsd_r_out_offset)
11294 (sparc64fbsd_r_fprs_offset, sparc64fbsd_r_tnpc_offset)
11295 (sparc64fbsd_r_tpc_offset, sparc64fbsd_r_tstate_offset)
11296 (sparc64fbsd_r_y_offset): Remove variables.
11297 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
11298 Make static and const.
11299 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
11300 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
11301 functions.
11302 (sparc64fbsd_gregset): New variable.
11303 (fetch_core_registers): Replace calls to sparc64fbsd_supply_reg
11304 and sparc64fbsd_supply_fpreg with calls to sparc64_supply_gregset
11305 and sparc64_supply_fpregset.
11306 (sparc64fbsd_pc_in_sigtramp, sparc64fbsd_sigtramp_frame_cache)
11307 (sparc64fbsd_sigtramp_frame_this_id)
11308 (sparc64fbsd_sigtramp_frame_prev_register): New functions.
11309 (sparc64fbsd_sigtramp_frame_unwind): New variable.
11310 (sparc64fbsd_sigtramp_frame_sniffer): New function.
11311 (sparc64fbsd_init_abi): Set pc_in_sigtramp, append
11312 sparc64fbsd_sigtramp_frame_sniffer. Call sparc64_init_abi.
11313 * sparcnbsd-tdep.c: Update copyright year. Include
11314 "floatformat.h", "frame.h", "frame-unwind.h", "symtab.h",
11315 "trad-frame.h" and "gdb_assert.h", don't include "target.h",
11316 "value.h" and "sparcnbsd-tdep.h".
11317 (REG32_OFFSET_PSR, REG32_OFFSET_PC, REG32_OFFSET_NPC)
11318 (REG32_OFFSET_Y, REG32_OFFSET_GLOBAL, REG32_OFFSET_OUT)
11319 (REG64_OFFSET_TSTATE, REG64_OFFSET_PC, REG64_OFFSET_NPC)
11320 (REG64_OFFSET_Y, REG64_OFFSET_GLOBAL, REG64_OFFSET_OUT): Remove
11321 defines.
11322 (sparcnbsd_gregset): New variable.
11323 (sparcnbsd_supply_reg32, sparcnbsd_supply_reg64)
11324 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64)
11325 (sparcnbsd_supply_fpreg32, sparcnbsd_supply_fpreg64)
11326 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64): Remove functions.
11327 (sparc32nbsd_sigtramp_start, sparc32nbsd_sigtramp_end): New
11328 variables.
11329 (sparc32nbsd_pc_in_sigtramp, sparc32nbsd_sigcontext_frame_cache)
11330 (sparc32nbsd_sigcontext_frame_this_id)
11331 (sparc32nbsd_sigcontext_frame_prev_register): New functions.
11332 (sparc32nbsd_sigcontext_frame_unwind): New variable.
11333 (sparc32nbsd_sigtramp_frame_sniffer): New function.
11334 (sparcnbsd_get_longjmp_target_32,
11335 sparcnbsd_get_longjmp_target_64): Remove functions.
11336 (sparcnbsd_aout_in_solib_call_trampoline): Rewrite.
11337 (sparcnbsd_init_abi_common, sparcnbsd_init_aout,
11338 sparcnbsd_init_elf): Remove.
11339 (sparcnbsd_init_abi, sparcnbsd_aout_init_abi)
11340 (sparcnbsd_elf_init_abi): New functions.
11341 (_initialize_sparcnbsd_tdep): New prototype.
11342 (_initialize_sparnbsd_tdep): Update.
11343 * config/sparc/fbsd.mh (NATDEPFILES): Remove sparcbsd-nat.o and
11344 corelow.o. Add sparc64-nat.o and sparc-nat.o.
11345 * config/sparc/fbsd.mt (TDEPFILES): Add sparc-tdep.o and corelow.o.
11346 * config/sparc/linux.mh: Update comment.
11347 (XM_FILE, HOST_IPC): Remove variables.
11348 (NATDEPFILES): Add sparc-sol2-nat.o and core-regset.o. Remove
11349 sparc-linux-nat.o.
11350 * config/sparc/linux.mt: Update comment.
11351 (TDEPFILES): Add sparc-sol2-tdep.o and sparc-linux-tdep.o.
11352 * config/sparc/nbsd.mt: Reformat.
11353 * config/sparc/nbsd64.mh: Update comment.
11354 (NATDEPFILES): Add sparc-nat.o.
11355 * config/sparc/nbsd64.mt: Update comment.
11356 (TDEPFILES): Add sparc64-tdep.o and sparc64nbsd-tdep.o.
11357 (TM_FILE): Set to tm-nbsd.h.
11358 * config/sparc/nbsdelf.mh: Update comment.
11359 (NATDEPFILES): Add sparc-nat.o.
11360 (XM_FILE): Delete.
11361 * config/sparc/nbsdaout.mh: Update comment.
11362 (NATDEPFILES): Add sparc-nat.o
11363 (XM_FILE): Delete.
11364 * config/sparc/nm-linux.h: Update copyright year. Don't include
11365 "config/nm-svr4.h" and "solib.h". Add protection against multiple
11366 inclusion.
11367 (KERNEL_U_SIZE): Remove define.
11368 (kernel_u_size): Remove prototype.
11369 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define.
11370 * config/sparc/nm-nbsd.h: Update copyright. Don't include
11371 "regcache.h".
11372 (CHILD_PREPARE_TO_STORE): Remove define.
11373 * config/sparc/nm-nbsdaout.h: Tweak some comments.
11374 * sparc-nat.c, sparc-tdep.c, sparc-tdep.h, sparc64nbsd-nat.c,
11375 sparcnbsd-nat.c: Rewrite files.
11376 * config/sparc/tm-linux.h, config/sparc/tm-nbsd.h: Rewrite files.
11377 * sparc-linux-nat.c, sparcbsd-nat.c, sparcbsd-nat.h,
11378 sparcnbsd-tdep.h: Remove files.
11379 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4os4.h,
11380 config/sparc/nm-sun4sol2.h, config/sparc/sp64.mt,
11381 config/sparc/sp64linux.mt, config/sparc/sp64sol2.mt,
11382 config/sparc/sparc-em.mt, config/sparc/sparclynx.mh,
11383 config/sparc/sparclynx.mt, config/sparc/sun4os4.mh,
11384 config/sparc/sun4os4.mt, config/sparc/sun4sol2.mh,
11385 config/sparc/sun4sol2.mt, config/sparc/tm-sp64.h,
11386 config/sparc/tm-sp64linux.h, config/sparc/tm-sparc.h,
11387 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
11388 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
11389 config/sparc/tm-vxsparc.h, config/sparc/vxsparc.mt,
11390 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h: Remove files.
11391 * sparc-linux-tdep.c, sparc-nat.h, sparc-sol2-nat.c,
11392 sparc-sol2-tdep.c, sparc64-linux-nat.c, sparc64-linux-t dep.c,
11393 sparc64-nat.c, sparc64-sol2-tdep.c, sparc64nbsd-tdep.c: New files.
11394 * config/sparc/linux64.mh, config/sparc/linux64.mt,
11395 config/sparc/nm-sol2.h, config/sparc/sol2-64.mt,
11396 config/sparc/sol2.mh, config/sparc/sol2.mt, config/sparc/sparc.mt,
11397 config/sparc/sparc64.mt, config/sparc/tm-sol2.h: New files.
11398
11399 2004-01-02 Andrew Cagney <cagney@redhat.com>
11400
11401 From 2003-12-18 Kazuhiro Inaoka:
11402 * configure.host: Add m32r-linux target.
11403
11404 2004-01-02 Michael Chastain <mec.gnu@mindspring.com>
11405
11406 * top.c (print_gdb_version): Update year to 2004.
11407
11408 2004-01-02 Mark Mitchell <mark@codesourcery.com>
11409
11410 * MAINTAINERS: Add myself to the write-after-approval category.
11411
11412 2004-01-02 Daniel Jacobowitz <drow@mvista.com>
11413
11414 From Bernardo Innocenti <bernie@develer.com>:
11415 * configure.tgt: Add uClinux target.
11416
11417 2004-01-02 Andrew Cagney <cagney@redhat.com>
11418
11419 * utils.c (do_my_cleanups): Make static, add forward declaration.
11420 * defs.h (do_my_cleanups): Delete declaration.
11421
11422 2004-01-02 Eli Zaretskii <eliz@elta.co.il>
11423
11424 * config/djgpp/fnchange.lst: Add lines for gdb/ChangeLog-2003 and
11425 bfd/ChangeLog-0203.
11426
11427 2004-01-02 Mark Kettenis <kettenis@gnu.org>
11428
11429 * configure.in: Check for <machine/reg.h>. Check for `struct reg'
11430 in <machine/reg.h>.
11431 * configure, config.in: Regenerate.
11432
11433 For older changes see ChangeLog-2003, mi/ChangeLog-1999-2003, and
11434 tui/ChangeLog-1998-2003.
11435 \f
11436 Local Variables:
11437 mode: change-log
11438 left-margin: 8
11439 fill-column: 74
11440 version-control: never
11441 End:
This page took 0.466379 seconds and 4 git commands to generate.