* symtab.c (symbol_search_name): Minor reformatting.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2004-10-21 Joel Brobecker <brobecker@gnat.com>
2
3 * symtab.c (symbol_search_name): Minor reformatting.
4
5 2004-10-20 Joel Brobecker <brobecker@gnat.com>
6
7 * symtab.h: Fix typo in comment.
8
9 2004-10-19 Mark Kettenis <kettenis@gnu.org>
10
11 * dwarf2read.c (struct comp_unit_head): Fix coding style.
12 (dwarf_decode_line_header): Likewise.
13
14 2004-10-19 Michael Chastain <mec.gnu@mindspring.com>
15
16 * NEWS: GDB works with GCC -feliminate-dwarf2-dups.
17
18 2004-10-19 Andrew Cagney <cagney@gnu.org>
19
20 GDB 6.3 branch created.
21 * version.in: Bump to version 6.3.50_2004-10-19-cvs.
22
23 2004-10-15 Joel Brobecker <brobecker@gnat.com>
24
25 * dwarf2read.c (set_cu_language): Set language to Ada for
26 DW_LANG_Ada83 and DW_LANG_Ada95.
27
28 2004-10-15 Michael Chastain <mec.gnu@mindspring.com>
29
30 From Andreas Schwab <schwab@suse.de>:
31 * Makefile.in (.y.c, .l.c.): Fix the substitutions for
32 for xmalloc and xrealloc.
33
34 2004-10-15 Andrew Cagney <cagney@gnu.org>
35
36 * ada-exp.y, ada-lex.l: Use xmalloc and xrealloc through out.
37 * inf-ptrace.c: Include "gdb_wait.h" instead of <wait.h>.
38 * Makefile.in (.y.c, .l.c): Don't replace xmalloc with xxmalloc.
39 Update dependencies.
40
41 2004-10-15 Paul Hilfinger <Hilfinger@gnat.com>
42
43 * ada-lang.c (ada_lookup_symbol): Correct comment.
44 (ada_evaluate_subexp): Change error message for
45 OP_FUNCALL case so as not to indicate an internal error.
46
47 2004-10-15 Joel Brobecker <brobecker@gnat.com>
48
49 Committed by Paul Hilfinger.
50 * ada-lang.c (ada_template_to_fixed_record_type_1): Detect bogus
51 type sizes in XVE/XVU types, and emit a warning when that happens,
52 instead of rounding up the size of the resulting type.
53 Some minor reformatting.
54 (ada_is_aligner_type): Do not consider a type as an aligner type
55 if there is a corresponding XVS type as well.
56 (ada_evaluate_subexp): For TERNOP_SLICE, handle cases where we
57 have several levels of pointer indirection to the array.
58
59 2004-10-15 Jerome Guitton <guitton@gnat.com>
60
61 Committed by Paul Hilfinger.
62 * ada-lang.c (check_size): New function.
63 (coerce_unspec_val_to_type): call check_size to make sure
64 that the object size is reasonable.
65 (ada_evaluate_subexp): in UNOP_IND: Ditto. In TERNOP_SLICE:
66 Implements the case when we get a reference when we evaluate
67 the expression of one of the bounds of the slice.
68 (ada_value_struct_elt): when a packed array field is
69 a reference, use ada_coerce_ref to dereference it; use
70 ada_value_ind only if it is a pointer.
71
72 2004-10-15 Joel Brobecker <brobecker@gnat.com>
73
74 * mips-tdep.c (mips32_scan_prologue): Move the implementation up
75 a bit to avoid the necessity of an advance declaration. Remove
76 declaration.
77 (set_reg_offset): Move implemenation up.
78 (mips16_get_imm): Likewise.
79 (mips16_scan_prologue): Likewise.
80 (reset_saved_regs): Likewise.
81 (mips32_scan_prologue): Likewise.
82
83 2004-10-14 Joel Brobecker <brobecker@gnat.com>
84
85 * mips-tdep.c (mips32_scan_prologue): Add advance declaration.
86 Remove sp as a parameter, compute it internally instead. Move
87 prologue scanning limit from heuristic_proc_desc to here.
88 (mips16_scan_prologue): Likewise.
89 (mips_insn16_frame_cache): Replace call to heuristic_proc_desc
90 by call to mips16_scan_prologue.
91 (mips_insn32_frame_cache): Replace call to heuristic_proc_desc
92 by call to mips32_scan_prologue.
93 (heuristic_proc_desc): Remove code that's no longer necessary.
94 Update calls to mips16_scan_prologue and mips32_scan_prologue.
95 (mips_skip_prologue): Update calls to mips16_scan_prologue
96 and mips32_scan_prologue.
97
98 2004-10-14 Joel Brobecker <brobecker@gnat.com>
99
100 * mips-tdep.c (mips16_scan_prologue): Merge code from
101 mips16_skip_prologue. Now return the address of the first
102 instruction past the function prologue.
103 (mips16_skip_prologue): Remove, no longer necessary.
104 (mips_skip_prologue): Replace call to mips16_skip_prologue
105 by call to mips16_scan_prologue.
106
107 2004-10-14 Joel Brobecker <brobecker@gnat.com>
108
109 * mips-tdep.c (mips32_scan_prologue): Merge code from
110 mips32_skip_prologue. Now return the address of the first
111 instruction past the function prologue.
112 (mips32_skip_prologue): Remove. No longer necessary.
113 (mips16_skip_prologue): Add parameter end_pc instead of
114 computing it.
115 (mips_skip_prologue): Compute the upper limit for the
116 prologue scanning. Update call to mips16_skip_prologue.
117 Replace call to mips32_skip_prologue by call to
118 mips32_scan_prologue.
119
120 2004-10-14 Mark Kettenis <kettenis@gnu.org>
121
122 * hppa-tdep.c (hppa_frame_cache): Add support for OpenBSD and
123 NetBSD system call stubs that store %rp in the ERP slot of the
124 stack frame.
125
126 * source.c: Always define O_BINARY to 0 if not defined already.
127 (openp): Unconditionally use O_BINARY.
128
129 * top.c (gdb_readline): Always accept "\r\n" as a line-ending.
130 * event-top.c (gdb_readline2): Likewise.
131
132 2004-10-14 Orjan Friberg <orjanf@axis.com>
133
134 * cris-tdep.c (_initialize_cris_tdep): Re-add call to
135 deprecated_add_core_fns which was removed by mistake.
136
137 2004-10-13 Kevin Buettner <kevinb@redhat.com>
138
139 * ia64-linux-nat.c (fill_gregset, fill_fpregset): Replace
140 references to deprecated_registers[] with equivalent code.
141
142 2004-10-13 Kevin Buettner <kevinb@redhat.com>
143
144 * rs6000-tdep.c (rs6000_push_dummy_call): Replace references to
145 ``deprecated_registers'' with equivalent code. Use gdb_assert()
146 instead of explicit test and print statement.
147
148 2004-10-12 Mark Kettenis <kettenis@gnu.org>
149
150 * sparc-nat.c: Include "inf-ptrace.h".
151 (sparc_target): New function.
152 * sparc-nat.h: Update copyright year.
153 (sparc_target): New prototype.
154 * sparcnbsd-nat.c: Don't include "gdbcore.h", include "target.h".
155 (_initialize_sparcnbsd_nat): Construct and add target vector.
156 * sparc64nbsd-nat.c: Include "target.h".
157 (_initialize_sparc64nbsd_nat): Construct and add target vector.
158 * Makefile.in (sparc-nat.o, sparcnbsd-nat.o, sparc64nbsd-nat.o):
159 Update dependencies.
160 * config/sparc/nbsd64.mh (NATDEPFILES): Remove infptrace.o and
161 inftarg.o, add inf-ptrace.o.
162 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove infptrace.o and
163 inftarg.o, add inf-ptrace.o and bsd-kvm.o.
164 (NAT_FILE): Set to nm-bsd.h.
165 (LOADLIBES): New variable.
166 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove infptrace.o and
167 infarg.o, add inf-ptrace.o.
168 * config/sparc/nm-nbsdaout.h: Remove file.
169 * config/sparc/fbsd.mh (NATDEPFILES): Add inf-ptrace.o.
170 * config/sparc/linux.mh (NATDEPFILES): Add inf-ptrace.o.
171 * config/sparc/linux64.mh (NATDEPFILES): Add inf-ptrace.o.
172
173 * defs.h [!FOPEN_RB]: Include "fopen-bin.h" instead of
174 "fopen-same.h". Update comment.
175
176 2004-10-11 Mark Kettenis <kettenis@gnu.org>
177
178 * i386gnu-nat.c: Include "gdb_string.h".
179 (fetch_fpregs): Use i387_supply_fxsave to fill the floating-point
180 registers when the floating-point state isn't initialized.
181 * Makefile.in (i386gnu-nat.o): Update dependencies.
182
183 2004-10-11 David Anderson <davea@sgi.com>
184
185 * regcache.c (regcache_raw_read): Comment was missing "to".
186 Extraneous ' removed.
187 * gdb_thread_db.h (struct td_thrinfo): ti_lid field
188 comment now describes use.
189
190 2004-10-11 Orjan Friberg <orjanf@axis.com>
191
192 * cris-tdep.c (cris_sigtramp_start, cris_rt_sigtramp_start)
193 (cris_sigcontext_addr, cris_sigtramp_frame_unwind_cache)
194 (cris_sigtramp_frame_this_id, cris_sigtramp_frame_prev_register)
195 (cris_sigtramp_frame_sniffer): New functions.
196 (cris_gdbarch_init): Hook in signal trampoline unwinder.
197 (cris_dwarf2_reg_to_regnum, cris_dwarf2_frame_init_reg): New functions.
198 (cris_gdbarch_init): Hook in Dwarf-2 unwinder.
199 (struct gdbarch_tdep, set_cris_dwarf2_cfi, cris_dump_tdep)
200 (cris_gdbarch_init, _initialize_cris_tdep): Add CRIS Dwarf-2 CFI usage
201 command.
202 (cris_version_update): Remove, replace with ...
203 (set_cris_version): New function.
204 (struct gdbarch_tdep, cris_mode, cris_mode_update)
205 (cris_cannot_store_register, cris_dump_tdep, cris_gdbarch_init)
206 (_initialize_cris_tdep): Remove CRIS mode command.
207 (cris_fpless_backtrace, _initialize_cris_tdep): Remove
208 cris-fpless-backtrace command.
209 (cris_scan_prologue): Fix prologue scanning limit.
210 (cris_register_type): Update to reflect actual registers.
211 (cris_register_bytes_ok) Remove.
212 (cris_gdbarch_init): Remove support for CRIS v8 and v9.
213 Remove set_gdbarch_deprecated_register_size,
214 set_gdbarch_deprecated_register_byte, set_gdbarch_register_bytes_ok.
215
216 2004-10-10 Andrew Cagney <cagney@gnu.org>
217
218 * ada-lang.c (lim_warning): Add ATTR_FORMAT prototype and FIXME
219 comment.
220
221 2004-10-10 Joel Brobecker <brobecker@gnat.com>
222
223 * mips-tdep.c (mips16_scan_prologue): Remove redundant code.
224
225 2004-10-10 Joel Brobecker <brobecker@gnat.com>
226
227 * mips-tdep.c (mips16_scan_prologue): Renames
228 mips16_heuristic_proc_desc. Update comment.
229 (mips32_scan_prologue): Renames mips32_heuristic_proc_desc.
230 (heuristic_proc_desc): Update calls to the 2 functions above.
231
232 2004-10-10 Joel Brobecker <brobecker@gnat.com>
233
234 * mips-tdep.c (mips_insn16_frame_cache): Remove unused variables.
235 Update comments. Also immediately return empty cache when the start
236 address of our function could not be found.
237 (mips_insn32_frame_cache): Likewise.
238
239 2004-10-10 Joel Brobecker <brobecker@gnat.com>
240
241 * mips-tdep.c (mips16_decode_reg_save): Delete, no longer used.
242 (mips_insn16_frame_cache): Pass frame cache in call to
243 heuristic_proc_desc. Move some code to mips16_heuristic_proc_desc.
244 Remove code that became redundant as a consequence.
245 (mips32_heuristic_proc_desc): No longer compute a fake
246 procedure descriptor. Compute the full frame cache instead.
247 Some minor comment reformatting.
248
249 2004-10-10 Jim Blandy <jimb@redhat.com>
250
251 * MAINTAINERS (generic symtabs, dwarf readers, elf reader, stabs
252 reader, tracing bytecode stuff): Remove self.
253
254 2004-10-10 Mark Kettenis <kettenis@gnu.org>
255
256 * sparc64-linux-tdep.c: Update copyright year. Don't include
257 "solib-svr4.h".
258 (sparc64_linux_svr4_fetch_link_map_offsets): Remove function.
259 (sparc64_linux_init_abi): Don't set solib_svr4_link_map_offsets.
260 * Makefile.in (sparc64-linux-tdep.o): Update dependencies.
261
262 * sparc-linux-tdep.c: Update copyright year.
263 (sparc_linux_sigtramp_start): Change first argument from CORE_ADDR
264 to struct frame_info *. Use safe_frame_unwind_memory instead of
265 deprecated_read_memory_nobpt.
266 (sparc32_linux_sigtramp_start, sparc32_linux_rt_sigtramp_start):
267 Change argumen from CORE_ADDR to struct frame_info *. Adjust for
268 changed signature of sparc_linux_sigtramp_start.
269 (sparc32_linux_pc_in_sigtramp): Remove function.
270 (sparc32_linux_sigtramp_p): New function.
271 (sparc32_linux_sigtramp_frame_sniffer): Use
272 sparc32_linux_sigtramp_p instead of sparc32_linux_pc_in_sigtramp.
273
274 * sparc-linux-tdep.c (sparc32_linux_svr4_fetch_link_map_offsets):
275 Remove function.
276 (sparc32_linux_init_abi): Don't set solib_svr4_link_map_offsets.
277
278 * ada-lang.c (lim_warning): Re-implement as a varargs function.
279 (decode_packed_array_type, value_subscript_packed)
280 (ada_evaluate_subexp, to_fixed_range_type): Remove redundant
281 argument in call to lim_warning.
282
283 * configure.in: Really disable the TUI if an enhanced curses
284 library isn't found.
285 * configure: Regenerate.
286
287 2004-10-09 Mark Kettenis <kettenis@gnu.org>
288
289 * config/i386/nbsdaout.mh (NAT_FILE): Set to solib.h.
290 * config/i386/nbsdelf.mh (NAT_FILE): Set to solib.h.
291 * config/i386/nm-nbsdaout.h: Remove file.
292 * config/i386/nm-fbsd.h (link_object, lo_name, lo_library)
293 (lo_unused, lo_major, lo_minor, lo_next, link_map, lm_addr)
294 (lm_name, lm_next, lm_lop, lm_lob, lm_rwt, lm_ld, lm_lpd)
295 (link_dynamic_2, ld_loaded, ld_need, ld_rules, ld_got, ld_plt)
296 (ld_rel, ld_hash, ld_stab, ld_stab_hash, ld_buckets, ld_symbols)
297 (ld_symb_size, ld_text, ld_plt_sz, rtc_symb, rtc_sp, rtc_next)
298 (ld_debug, ldd_version, ldd_in_debugger, ldd_sym_loaded)
299 (ldd_bp_addr, ldd_bp_inst, ldd_cp, link_dynamic, ld_version)
300 (ldd, ld_un, ld_2): Remove defines.
301 * config/i386/nm-obsd.h: Likewise.
302
303 2004-10-09 Paul Hilfinger <hilfingr@nile.gnat.com>
304
305 * ada-lex.l: Remove useless rule whose right-context clause
306 causes unreferenced static function warning for yyrealloc.
307 (ada_flex_use): Remove the artificial reference to yyrealloc.
308
309 2004-10-08 Andrew Cagney <cagney@gnu.org>
310
311 * target.h (struct target_ops): Rename to_xfer_memory to
312 deprecated_xfer_memory.
313 * target.c: Update.
314 (deprecated_debug_xfer_memory): Rename debug_to_xfer_memory.
315 * wince.c: Update.
316 * win32-nat.c: Update.
317 * v850ice.c: Update.
318 * uw-thread.c: Update.
319 * thread-db.c: Update.
320 * sol-thread.c: Update.
321 * remote.c: Update.
322 * remote-vx.c: Update.
323 * remote-st.c: Update.
324 * remote-sim.c: Update.
325 * remote-sds.c: Update.
326 * remote-rdp.c: Update.
327 * remote-rdi.c: Update.
328 * remote-mips.c: Update.
329 * remote-m32r-sdi.c: Update.
330 * remote-e7000.c: Update.
331 * procfs.c: Update.
332 * ppc-bdm.c: Update.
333 * nto-procfs.c: Update.
334 * monitor.c: Update.
335 * linux-nat.c: Update.
336 * inftarg.c: Update.
337 * hpux-thread.c: Update.
338 * go32-nat.c: Update.
339 * gnu-nat.c: Update.
340 * exec.c: Update.
341 * corelow.c: Update.
342 * bsd-kvm.c: Update.
343 * aix-thread.c: Update.
344
345 2004-10-08 Andrew Cagney <cagney@gnu.org>
346
347 * target.c (debug_target): Move to near start of file.
348 (target_stopped_data_address_p): Re-org logic, add casts.
349
350 2004-10-02 Mark Kettenis <kettenis@gnu.org>
351
352 * solib-sunos.c [HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS] (link_map)
353 (lm_addr, lm_name, lm_next, link_dynamic_2, ld_loaded, rtc_symb)
354 (rtc_sp, rtc_next, ld_debug, ldd_in_debugger, ldd_bp_addr)
355 (ldd_bp_inst, ldd_cp, link_dynamic, ld_version, ldd, ld_un, ld_2):
356 New defines.
357
358 2004-10-08 Jeff Johnston <jjohnstn@redhat.com>
359
360 * target.h (to_stopped_data_address): Change prototype to
361 take a CORE_ADDR pointer and return an int.
362 * target.c (update_current_target): Change to_stopped_data_address
363 to match new prototype.
364 (debug_to_stopped_data_address): Change appropriately.
365 * breakpoint.c (bpstat_stop_status): Change call to
366 target_stopped_data_address to use new prototype.
367 * frv-tdep.c (frv_have_stopped_data_address): New function.
368 (frv_stopped_data_address): Change to new prototype and
369 functionality.
370 * ia64-linux-nat.c (ia64_stopped_data_address): Change to new
371 prototype and functionality.
372 (ia64_stopped_by_watchpoint): New function.
373 * i386-nat.c (i386_stopped_data_address): Change to new
374 prototype and functionality.
375 (i386_stopped_by_watchpoint): New function.
376 * remote.c (remote_stopped_data_address): Change to new prototype
377 and functionality.
378 * remote-m32r-sdi.c (m32r_stopped_data_address): Ditto.
379 * config/frv/tm-frv.h (frv_stopped_data_address): Change prototype.
380 (STOPPED_BY_WATCHPOINT): Change to use frv_have_stopped_data_address.
381 * config/i386/nm-i386.h (STOPPED_BY_WATCHPOINT): Change to use
382 new i386_stopped_by_watchpoint function.
383 (i386_stopped_by_watchpoint): New prototype.
384 (i386_stoppped_data_address): Change to new prototype.
385 * config/ia64/nm-linux.h (STOPPED_BY_WATCHPOINT): Change to use
386 new ia64_stopped_by_watchpoint function.
387 (ia64_stopped_by_watchpoint): New prototype.
388 (ia64_stopped_data_address): Ditto.
389
390 2004-10-08 Paul Hilfinger <Hilfinger@gnat.com>
391
392 * ada-typeprint.c (ada_print_type): Use int_string for printing
393 modulus of modular type.
394 * ada-lang.h (ada_modulus): Change return type to unsigned.
395 * ada-lang.c (ada_language_arch_info): Correct type of
396 string_char_type.
397 (ada_modulus): Return unsigned result.
398 (ada_lookup_symbol): Remove user disambiguation and modify comment
399 accordingly.
400
401 2004-10-08 Eric Botcazou <ebotcazou@act-europe.fr>
402
403 Committed by Paul Hilfinger.
404 * ada-lang.c (decode_packed_array): On big-endian targets,
405 left-justify the value if it comes with a modular type.
406
407 2004-10-08 Joel Brobecker <brobecker@gnat.com>
408
409 Committed by Paul Hilfinger.
410 * ada-lang.c (template_to_static_fixed_type): Fix a small typo.
411 (is_name_suffix): Add support for "___JM" suffixes.
412 (ada_check_typedef): Renames ada_completed_type.
413 Update all users of CHECK_TYPEDEF, check_typedef, and
414 ada_complete_type to call ada_check_typedef.
415 * ada-typeprint.c: Likewise.
416 * ada-valprint.c: Likewise.
417
418 2004-10-08 Corinna Vinschen <vinschen@redhat.com>
419
420 * infcall.c (call_function_by_hand): Use correct VALUE_TYPE macro.
421
422 2004-10-08 Nick Roberts <nickrob@snap.net.nz>
423
424 * MAINTAINERS: Update e-mail address.
425
426 2004-10-07 Daniel Jacobowitz <dan@debian.org>
427
428 From Maciej W. Rozycki <macro@mips.com>:
429 * mips-tdep.c (mips32_next_pc): Check the register's contents,
430 not its number for BLEZ/BLEZL and BGTZ/BGTZL.
431
432 2004-10-07 Kei Sakamoto <sakamoto.kei@renesas.com>
433
434 * m32r-tdep.c (decode_prologue): Support functions written
435 in assembler language. Recognize trap instructions as the
436 end of prologue.
437 (m32r_frame_unwind_cache): Ditto.
438 (m32r_skip_prologue): Extend search limit. Quit analyzing
439 prologue if pc's location is not readable.
440
441 2004-10-06 Paul N. Hilfinger <Hilfinger@gnat.com>
442
443 * Makefile.in (.l.c): Do conversions of names of alloc and free
444 functions that are done for .y.c files, plus special one
445 for yy_flex_realloc. Also, correct missing-file tests here.
446 * ada-lex.l (malloc, free): Remove macros.
447 (resize_tempbuf): Use "realloc"; rely on sed changes to convert to
448 xrealloc.
449 (ada_flex_use): Dummy definition to remove warnings about unused
450 functions.
451 * ada-exp.y (dummy_string_to_ada_operator): Temporary definition
452 to suppress warning.
453
454 2004-10-06 Corinna Vinschen <vinschen@redhat.com>
455
456 * sh-tdep.c (sh_return_value_nofpu): New function, implementing
457 RETURN_VALUE.
458 (sh_return_value_fpu): Ditto for CPUs with FPU.
459 (sh_gdbarch_init): Remove STORE_RETURN_VALUE, EXTRACT_RETURN_VALUE,
460 RETURN_VALUE_ON_STACK and USE_STRUCT_CONVENTION throughout.
461 Install sh_return_value_nofpu resp. sh_return_value_fpu as
462 RETURN_VALUE functions.
463
464 2004-10-06 Corinna Vinschen <vinschen@redhat.com>
465
466 * sh-tdep.c (sh_pseudo_register_read): Add PSEUDO_BANK_REGNUM handling.
467 (sh_pseudo_register_write): Ditto.
468
469 2004-10-06 Corinna Vinschen <vinschen@redhat.com>
470
471 * sh-tdep.c (IS_MACL_STS): New define.
472 (IS_MOVI20): Ditto.
473 (IS_MACL_LDS): Ditto.
474 (sh_analyze_prologue): Recognize STS.L MACL,@-r15 and MOVI20
475 instructions in prologue.
476 (sh_in_function_epilogue_p): Recognize LDS.L @r15+,MACL and MOVI20
477 instructions in epilogue.
478
479 2004-10-06 Corinna Vinschen <vinschen@redhat.com>
480
481 * sh-tdep.c (SH_NUM_REGS): Define as 67.
482 (sh_sh_register_name): Add eight empty register names.
483 (sh_sh3_register_name): Ditto.
484 (sh_sh3e_register_name): Ditto.
485 (sh_sh2e_register_name): Ditto.
486 (sh_sh2a_register_name): New function, defining SH2A register set.
487 (sh_sh2a_nofpu_register_name): New function, defining SH2A register set
488 in nofpu case.
489 (sh_sh_dsp_register_name): Add eight empty register names.
490 (sh_sh3_dsp_register_name): Ditto.
491 (sh_sh4_register_name): Ditto.
492 (sh_sh4_nofpu_register_name): Ditto.
493 (sh_sh4al_dsp_register_name): Ditto.
494 (sh2a_show_regs): New function.
495 (sh2a_nofpu_show_regs): New function.
496 (sh_sh2a_register_type): New function.
497 (do_bank_register_info): New function.
498 (sh_print_pseudo_register): Call do_bank_register_info.
499 Call sh_print_pseudo_register for valid "bank" register.
500 (sh_sh2a_register_sim_regno): New function.
501 (sh_gdbarch_init): Add bfd_mach_sh2a and bfd_mach_sh2a_nofpu handling.
502 Increment pseudo register count by one for all sh variants with
503 pseudo registers to accomodate pseudo bank register.
504 * sh-tdep.h: Add register numbers for R0_BANK0_REGNUM, MACHB_REGNUM,
505 IVNB_REGNUM, PRB_REGNUM, GBRB_REGNUM, MACLB_REGNUM, BANK_REGNUM,
506 IBCR_REGNUM, IBNR_REGNUM, TBR_REGNUM and PSEUDO_BANK_REGNUM.
507 Increment pseudo register numbers.
508
509 2004-10-06 Corinna Vinschen <vinschen@redhat.com>
510
511 * dwarf2read.c (read_subroutine_type): Call make_function_type
512 instead of lookup_function_type.
513
514 2004-10-05 Jim Blandy <jimb@redhat.com>
515
516 * linux-nat.c (_initialize_linux_nat): Rename child_ops.
517 (Previous change missed some uses.)
518
519 2004-10-05 Andrew Cagney <cagney@gnu.org>
520
521 * target.h (deprecated_child_ops): Rename child_ops.
522 * wince.c: Update copyright. Rename child_ops.
523 * win32-nat.c: Rename child_ops.
524 * target.c: Rename child_ops.
525 * rs6000-nat.c: Rename child_ops.
526 * linux-nat.c: Rename child_ops.
527 * infttrace.c: Rename child_ops.
528 * inftarg.c: Rename child_ops.
529 * infptrace.c: Rename child_ops.
530 * hppah-nat.c: Update copyright. Rename child_ops.
531 * hpux-thread.c: Update copyright. Rename child_ops.
532
533 2004-10-05 Daniel Jacobowitz <dan@debian.org>
534
535 * remote.c (remote_xfer_partial): Handle TARGET_OBJECT_MEMORY.
536
537 2004-10-05 Andrew Cagney <cagney@gnu.org>
538
539 * version.in: Bump to version 6.2.50_YYYY-MM-DD-cvs.
540
541 2004-10-05 Daniel Jacobowitz <dan@debian.org>
542
543 * dwarf2read.c (REF_HASH_SIZE): Move earlier.
544 (die_ref_table): Remove.
545 (struct dwarf2_cu): Add DIES, DEPENDENCIES, and DIE_REF_TABLE.
546 (struct dwarf2_per_cu_data): Add PSYMTAB. Add a comment describing
547 the usage of this type.
548 (struct dwarf2_per_objfile): Update comment for ALL_COMP_UNITS.
549 (struct dwarf2_pinfo, PST_PRIVATE, DWARF_INFO_OFFSET): Remove.
550 (struct dwarf2_queue_item, dwarf2_queue, dwarf2_queue_tail): New.
551 (dwarf2_create_include_psymtab): Update comment.
552 (find_partial_die): Remove third argument. Remove unreachable call
553 to error ().
554 (dwarf2_find_containing_comp_unit): Update comments. Change one
555 assertion to an error. Remove an unreachable error.
556 (dwarf2_find_comp_unit): Update comments.
557 (type_at_offset): Remove dead code.
558 (make_cleanup_free_die_list, dwarf2_empty_hash_tables): Remove.
559 (store_in_ref_table): Add CU argument.
560 (follow_die_ref): Take DIE, attribute, and CU arguments. Handle
561 inter-compilation-unit references.
562 (load_full_comp_unit, process_full_comp_unit): New functions, based
563 on psymtab_to_symtab_1.
564 (psymtab_to_symtab_1): Use them.
565 (dwarf2_add_dependence): New function.
566 (dwarf2_build_psymtabs_hard): Set the psymtab in per_cu. Always create
567 a per_cu structure, and save it in READ_PSYMTAB_PRIVATE.
568 (partial_die_parent_scope, guess_structure_name): Update for changes
569 to find_partial_die.
570 (dwarf2_psymtab_to_symtab): Initialize dwarf2_per_objfile here.
571 (queue_comp_unit, process_queue, dwarf2_release_queue): New.
572 (read_comp_unit): Don't call dwarf2_empty_hash_tables.
573 (read_die_and_children): Update call to store_in_ref_table.
574 (do_free_die_list_cleanup): Remove.
575 (fixup_partial_die): Update for changes to find_partial_die.
576 (read_full_die): Handle queueing absolute references.
577 (read_attribute_value): Use DW_ADDR for all DW_FORM_ref* forms.
578 (dwarf2_attr, die_specification, die_type)
579 (die_containing_type, dwarf2_extension): Update calls to
580 follow_die_ref.
581 (dump_die): Update DW_FORM_ref* handling.
582 (dwarf2_get_ref_die_offset): Likewise.
583 (free_one_comp_unit): Release the dies list.
584 (dwarf2_mark_helper): New function.
585 (dwarf2_mark): Use it.
586
587 2004-10-05 Mark Kettenis <kettenis@jive.nl>
588
589 * procfs.c (procfs_xfer_partial): Use WRITEBUF instead of READBUF
590 when writing to memory.
591
592 2004-10-05 Kei Sakamoto <sakamoto.kei@renesas.com>
593
594 * m32r-tdep.c (m32r_use_struct_convention): Delete function.
595 (m32r_extract_struct_value_address): Delete function.
596 (m32r_return_value): New function.
597 (m32r_gdbarch_init): Instead of store_return_value,
598 extract_return_value, deprecated_extract_struct_value_address
599 and deprecated_use_struct_convention, set return_value.
600
601 2004-10-03 Daniel Jacobowitz <dan@debian.org>
602
603 * dwarf2read.c (read_subrange_type): Add comment for variable
604 sized arrays.
605
606 2004-10-03 Paul Hilfinger <hilfingr@nile.gnat.com>
607
608 * Makefile.in (.l.c): Modify rule for compatibility with recent
609 versions of flex, and remove most command-line options.
610 * ada-lex.l: Add %options line in place of -I -i and -s command-line
611 options.
612
613 2004-10-02 Paul N. Hilfinger <Hilfinger@gnat.com>
614
615 Turn on initial Ada support (mainly expression evaluation).
616
617 * Makefile.in (SFILES): Remove ada-tasks.c.
618 (HFILES_NO_SRCDIR): Add ada-lang.h.
619 (COMMON_OBS): Add ada-lang.o, ada-typeprint.o, ada-valprint.o.
620 (YYOBJ): Add ada-exp.o.
621 (rule .l.c): Generalize to not mention ada.
622 * symtab.c: Include ada-lang.h.
623 (symbol_natural_name, symbol_demangled_name)
624 (symbol_search_name): Add Ada case.
625
626 2004-10-01 Andrew Cagney <cagney@gnu.org>
627
628 * Makefile.in (COMMON_OBS): Add inf-child.o.
629 * config/vax/obsd.mh (NATDEPFILES): Remove inf-child.o.
630 * config/vax/nbsdelf.mh (NATDEPFILES): Remove inf-child.o.
631 * config/vax/nbsdaout.mh (NATDEPFILES): Remove inf-child.o.
632 * config/powerpc/nbsd.mh (NATDEPFILES): Remove inf-child.o.
633 * config/m88k/obsd.mh (NATDEPFILES): Remove inf-child.o.
634 * config/i386/obsdaout.mh (NATDEPFILES): Remove inf-child.o.
635 * config/i386/obsd64.mh (NATDEPFILES): Remove inf-child.o.
636 * config/i386/obsd.mh (NATDEPFILES): Remove inf-child.o.
637 * config/i386/nbsdelf.mh (NATDEPFILES): Remove inf-child.o.
638 * config/i386/nbsdaout.mh (NATDEPFILES): Remove inf-child.o.
639 * config/i386/nbsd64.mh (NATDEPFILES): Remove inf-child.o.
640 * config/i386/fbsd64.mh (NATDEPFILES): Remove inf-child.o.
641 * config/i386/fbsd.mh (NATDEPFILES): Remove inf-child.o.
642
643 * target.c (xfer_using_stratum): Change return type to LONGEST.
644 On each iteration offset, readbuf and writebuf.
645 * inf-ptrace.c (inf_ptrace_xfer_partial): Simplify computation of
646 partial_length, and read/modify/write predicate, update comments.
647 Pass buffer.word to ptrace write.
648
649 2004-10-01 Paul N. Hilfinger <Hilfinger@gnat.com>
650
651 * symfile.c (init_filename_language_table): Add extensions for
652 Ada.
653 * defs.h (enum language): Add language_ada.
654 * gdbtypes.h (TYPE_FLAG_FIXED_INSTANCE): Define.
655 * ada-lang.c: Strip code that is conditionalized out by GNAT_GDB.
656 (add_symbols_from_enclosing_procs): Make a no-op for now.
657 (ada_unqualified_name,add_angle_brackets,function_name_from_pc)
658 (extended_canonical_line_spec, find_sal_from_funcs_and_line)
659 (find_line_in_linetable, find_next_line_in_linetable)
660 (read_all_symtabs, is_plausible_func_for_line)
661 (adjust_pc_past_prologue, error_breakpoint_runtime_sym_not_found)
662 (is_runtime_sym_defined, check_size): Remove declaration.
663 (function_name_from_pc, ada_translate_error_message)
664 (ada_lookup_minimal_symbol): Remove definition.
665 (ada_add_block_symbols): Remove useless label.
666 * ada-lang.h (ada_maybe_exception_partial_symbol): Remove
667 useless declaration.
668 (ada_is_exception_sym): Likewise.
669
670 2004-09-30 Kei Sakamoto <sakamoto.kei@renesas.com>
671
672 Add m32r-linux support.
673 * configure.tgt: Add m32r*-*-linux*.
674 * Makefile.in (ALLDEPFILES): Add m32r-tdep.c, m32r-linux-nat.c
675 and m32r-linux-tdep.c.
676 (m32r-linux-nat.o, m32r-linux-tdep.o): New dependencies.
677 * m32r-tdep.c: Move some definitions to m32r-tdep.h.
678 * config/djgpp/fnchange.lst: Add m32r-linux-nat.c and
679 m32r-linux-tdep.c.
680 * m32r-tdep.h, m32r-linux-nat.c, m32r-linux-tdep.c,
681 config/m32r/linux.mh, config/m32r/linux.mt,
682 config/m32r/nm-linux.h: New files.
683
684 2004-09-30 Joel Brobecker <brobecker@gnat.com>
685
686 * mips-tdep.c (mips32_decode_reg_save): Remove, unused.
687 (mips32_fetch_instruction): Remove, unused.
688
689 2004-09-30 Joel Brobecker <brobecker@gnat.com>
690
691 * mips-tdep.c (mips_insn16_frame_cache): Remove dead code or
692 conditions that will always be true.
693
694 2004-09-30 Mark Kettenis <kettenis@gnu.org>
695
696 * vaxbsd-nat.c: Include "target,h" and "inf-ptrace.h".
697 (vaxbsd_fetch_inferior_registers): Rename from
698 fetch_inferior_registers. Make static.
699 (vaxbsd_store_inferior_registers): Rename from
700 store_inferior_registers. Make static.
701 (_initialize_vaxbsd_nat): Construct and add target vector.
702 * config/vax/nbsdaout.mh (NATDEPFILES): Remove infptrace.o and
703 inftarg.o. Add inf-child.o and inf-ptrace.o.
704 * config/vax/nbsdelf.mh (NATDEPFILES): Remove infptrace.o and
705 inftarg.o. Add inf-child.o and inf-ptrace.o.
706 (NAT_FILE): Remove.
707 * config/vax/obsd.mh (NATDEPFILES): Remove infptrace.o and
708 inftarg.o. Add inf-child.o and inf-ptrace.o.
709 (NAT_FILE): Remove.
710 * Makefile.in (vaxbsd-nat.o): Update dependencies.
711
712 * m88kbsd-nat.c: Include "target.h" and "inf-ptrace.h".
713 (m88kbsd_fetch_inferior_registers): Rename from
714 fetch_inferior_registers. Make static.
715 (m88kbsd_store_inferior_registers): Rename from
716 store_inferior_registers. Make static.
717 (_initialize_m88kbsd_nat): New prototype and function.
718 * config/m88k/obsd.mh (NATDEPFILES): Remove infptrace.o and
719 inftarg.o. Add inf-child.o and inf-ptrace.o.
720 (NAT_FILE): Remove.
721 * Makefile.in (m88kbsd-nat.o): Update dependencies.
722
723 2004-09-30 Andrew Cagney <cagney@gnu.org>
724
725 * target.c (target_xfer_partial): New function.
726 (target_read_memory_partial, target_write_memory_partial)
727 (default_xfer_partial, target_read_partial, target_write_partial)
728 (xfer_using_stratum): Use.
729 (debug_to_xfer_partial): Delete function.
730 (setup_target_debug): Do not override to_xfer_partial.
731
732 2004-09-30 Mark Kettenis <kettenis@chello.nl>
733
734 * fork-child.c: Update copyright year. Fix coding style.
735
736 2004-09-29 Mark Kettenis <kettenis@gnu.org>
737
738 * defs.h (msavestring, mstrsave): Remove prototypes.
739 * utils.c (msavestring, mstrsave): Remove functions.
740 * objfiles.c (allocate_objfile): Use xstrdup instead of mstrsave.
741 * solib-sunos.c (allocate_rt_common_objfile): Use xstrdup instead
742 of mstrsave.
743 * source.c (find_and_open_source): Use xstrdup instead of
744 mstrsave.
745
746 2004-09-30 Andrew Cagney <cagney@gnu.org>
747
748 * inf-ptrace.c (inf_ptrace_target): Do not set to_xfer_memory.
749 (inf_ptrace_xfer_memory): Delete.
750 * target.c (target_xfer_partial_p, xfer_using_stratum): New.
751 (target_read_memory, target_write_memory): Use xfer_using_stratum
752 when target_xfer_partial_p.
753 (debug_target): Move to start of file.
754 (target_read_memory_partial, target_write_memory_partial): Use
755 to_xfer_partial when target_xfer_partial_p.
756
757 * inf-ptrace.c (inf_ptrace_xfer_partial): Replace call to
758 inf_ptrace_xfer_memory with equivalent code.
759 * inftarg.c (child_xfer_partial): When performing a write, pass
760 writebuf to child_xfer_memory.
761
762 * target.c (target_read_string): Use target_read_memory instead of
763 target_xfer_memory.
764
765 2004-09-29 Andrew Cagney <cagney@gnu.org>
766
767 * infptrace.c (kill_inferior): Fix typo, in previous inline. Pass
768 the address of status.
769
770 * infptrace.c (ptrace_wait): Mention problem with HPUX.
771 (kill_inferior): Inline ptrace_wait call.
772 * linux-nat.c (kill_inferior): Inline ptrace_wait call.
773 * inftarg.c (child_wait): Inline ptrace_wait call.
774
775 * target.h (struct target_ops): Delete field to_post_wait.
776 (target_post_wait): Delete macro.
777 (child_post_wait): Delete declaration.
778 * target.c (update_current_target, update_current_target)
779 (debug_to_post_wait, setup_target_debug): Delete functions and
780 references.
781 * infttrace.c (ptrace_wait): Delete call to target_post_wait.
782 * inftarg.c (child_post_wait): Delete.
783 (init_child_ops): Do not set to_post_wait.
784 * infptrace.c (ptrace_wait): Delete call to target_post_wait.
785 * inf-ptrace.c (inf_ptrace_wait): Delete call to target_post_wait.
786 * inf-child.c (inf_child_post_wait): Delete.
787 (inf_child_target): Do not set to_post_wait.
788 * inf-ptrace.c (inf_ptrace_post_wait): Delete.
789 (inf_ptrace_target): Do not set to_post_wait.
790
791 * wince.c (child_ops): Delete.
792 * win32-nat.c (child_ops): Delete.
793
794 * inftarg.c (inftarg_set_find_memory_regions)
795 (inftarg_set_make_corefile_notes): Delete functions.
796 (_initialize_linux_nat): Inline calls.
797
798 * target.h (child_ops): Declare.
799 * inftarg.c (child_ops): Move from here ...
800 * target.c (child_ops): ... to here.
801 * wince.c (child_ops): Delete extern declaration.
802 * win32-nat.c (child_ops): Delete extern declaration.
803 * linux-nat.c (child_ops): Delete extern declaration.
804 * hpux-thread.c (child_ops): Delete extern declaration.
805
806 2004-09-28 Mark Kettenis <kettenis@gnu.org>
807
808 * configure.tgt: Set default OS/ABI for OpenBSD ELF targets.
809
810 2004-09-28 Mark Kettenis <kettenis@gnu.org>
811
812 * configure.in: Only set host_makefile_frag when building a native
813 debugger.
814 * configure: Regenerate.
815
816 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Register OS/ABI
817 for OpenBSD ELF.
818
819 2004-09-28 Andrew Cagney <cagney@gnu.org>
820
821 Problem identified by Paul Hilfinger.
822 * Makefile.in (ada_lex_c): Define.
823 (ada-lex.o): Delete rule.
824
825 * linux-proc.c: Delete file.
826 * Makefile.in: Update.
827 * config/sparc/linux64.mh (NATDEPFILES):
828 * config/sparc/linux.mh (NATDEPFILES): Update.
829 * config/s390/s390.mh (NATDEPFILES): Update.
830 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Update.
831 * config/powerpc/linux.mh (NATDEPFILES): Update.
832 * config/pa/linux.mh (NATDEPFILES): Update.
833 * config/mips/linux.mh (NATDEPFILES): Update.
834 * config/m68k/linux.mh (NATDEPFILES): Update.
835 * config/ia64/linux.mh (NATDEPFILES): Update.
836 * config/i386/linux64.mh (NATDEPFILES): Update.
837 * config/i386/linux.mh (NATDEPFILES): Update.
838 * config/arm/linux.mh (NATDEPFILES): Update.
839 * config/alpha/alpha-linux.mh (NATDEPFILES): Update.
840 * linux-nat.c: Update copyright. Include <sys/param.h>,
841 <sys/procfs.h>, "elf-bfd.h", "gregset.h", <ctype.h>,
842 "gdbthread.h", "gdb_stat.h", <fcntl.h>.
843 (O_LARGEFILE): Possibly define.
844 (_initialize_linux_nat, linux_proc_pending_signals)
845 (add_line_to_sigset, linux_proc_xfer_memory)
846 (linux_nat_info_proc_cmd, linux_nat_make_corefile_notes)
847 (linux_nat_do_registers, linux_nat_corefile_thread_callback)
848 (struct linux_corefile_thread_data)
849 (linux_nat_do_thread_registers, linux_nat_find_memory_regions)
850 (child_pid_to_exec_file): Insert code previously in linux-proc.c.
851
852 2004-09-16 Andrew Cagney <cagney@gnu.org>
853
854 * lin-lwp.c: Delete file.
855 * linux-nat.c: Include "gdb_assert.h", "gdb_string.h", <unistd.h>,
856 <sys/syscall.h>, "gdbthread.h", "gdbcmd.h", "regcache.h".
857 (status_to_str, init_lwp_list, add_lwp, delete_lwp)
858 (find_lwp_pid, iterate_over_lwps, lin_lwp_attach_lwp)
859 (linux_nat_attach, detach_callback, linux_nat_detach)
860 (resume_callback, resume_clear_callback, linux_nat_resume)
861 (kill_lwp, linux_nat_handle_extended, wait_lwp, stop_callback)
862 (stop_wait_callback, linux_nat_has_pending, flush_callback)
863 (status_callback, running_callback, count_events_callback)
864 (select_singlestep_lwp_callback, select_event_lwp_callback)
865 (cancel_breakpoints_callback, select_event_lwp, resumed_callback)
866 (child_wait, stop_and_resume_callback, linux_nat_wait)
867 (kill_callback, kill_wait_callback, linux_nat_kill)
868 (linux_nat_create_inferior, linux_nat_mourn_inferior)
869 (linux_nat_xfer_memory, linux_nat_thread_alive)
870 (linux_nat_pid_to_str, init_linux_nat_ops, sigchld_handler)
871 (_initialize_linux_nat): New functions.
872 * Makefile.in: Update all dependencies.
873 * config/sparc/linux64.mh (NATDEPFILES): Remove lin-lwp.o.
874 * config/sparc/linux.mh (NATDEPFILES): Remove lin-lwp.o.
875 * config/s390/s390.mh (NATDEPFILES): Remove lin-lwp.o.
876 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Remove lin-lwp.o.
877 * config/powerpc/linux.mh (NATDEPFILES): Remove lin-lwp.o.
878 * config/pa/linux.mh (NATDEPFILES): Remove lin-lwp.o.
879 * config/mips/linux.mh (NATDEPFILES): Remove lin-lwp.o.
880 * config/m68k/linux.mh (NATDEPFILES): Remove lin-lwp.o.
881 * config/ia64/linux.mh (NATDEPFILES): Remove lin-lwp.o.
882 * config/i386/linux64.mh (NATDEPFILES): Remove lin-lwp.o.
883 * config/i386/linux.mh (NATDEPFILES): Remove lin-lwp.o.
884 * config/arm/linux.mh (NATDEPFILES): Remove lin-lwp.o.
885 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove lin-lwp.o.
886
887 2004-09-27 Mark Kettenis <kettenis@gnu.org>
888
889 * config/i386/fbsd64.mh, config/i386/nbsd64.mh,
890 config/i386/obsd64.mh (NAT_FILE): Remove variable.
891
892 * configure.in: Don't comment out NATDEPFILES in the generated
893 Makefile if NAT_FILE is unset.
894 * configure: Regenerate.
895
896 2004-09-27 Andrew Cagney <cagney@gnu.org>
897
898 * infrun.c (check_for_old_step_resume_breakpoint): Delete.
899 (insert_step_resume_breakpoint): Delete.
900 (insert_step_resume_breakpoint_at_frame): New function.
901 (insert_step_resume_breakpoint_at_sal): New function.
902 (handle_inferior_event, step_into_function)
903 (insert_step_resume_breakpoint): Simplify by using same.
904
905 * gdb_indent.sh (types): Add caddr_t to list of predefined types.
906
907 2004-09-26 Mark Kettenis <kettenis@gnu.org>
908
909 * fbsd-proc.c: Remove file.
910 * Makefile.in (fbsd-proc.o): Remove dependency.
911
912 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Group target related
913 code together.
914
915 * config/i386/nm-fbsd64.h: Remove file.
916 * config/i386/fbsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
917
918 2004-09-26 Mark Kettenis <kettenis@gnu.org>
919
920 * amd64-nat.h: Update copyright year.
921 (amd64bsd_target): New prototype.
922 * amd64bsd-nat.c: Include "target.h" and "inf-ptrace.h".
923 (amd64bsd_target): New function.
924 (amd64bsd_fetch_inferior_registers): Rename from
925 fetch_inferior_registers. Make static.
926 (amd64bsd_store_inferior_registers): Rename from
927 store_inferior_registers. Make static.
928 * amd64fbsd-nat.c: Include "target.h" and "fbsd-nat.h".
929 (_initialize_amd64fbsd_nat): Construct and add target vector.
930 * amd64nbsd-nat.o: Include "target.h".
931 (_initialize_amd64nbsd_nat): Construct and add target vector.
932 * amd64obsd-nat.c: Include "target.h".
933 (_initialize_amd64obsd_nat): Construct and add target vector.
934 * config/i386/nm-fbsd64.h (CHILD_PID_TO_EXEC_FILE): Remove define.
935 * config/i386/fbsd64.mh (NATDEPFILES): Remove infptrace.o,
936 inftarg.o and fbsd-proc.o. Add inf-child.o, inf-ptrace.o and
937 fbsd-nat.o.
938 * config/i386/nbsd64.mh, config/i386/obsd64.mh (NATDEPFILES):
939 Remove infptrace.o and inftarg.o. Add inf-child.o and
940 inf-ptrace.o.
941 * Makefile.in (amd64bsd-nat.o, amd64fbsd-nat.o, amd64nbsd-nat.o)
942 (amd64obsd-nat.o): Update dependencies.
943
944 2004-09-25 Mark Kettenis <kettenis@gnu.org>
945
946 * config/i386/fbsd.mh (NATDEPFILES): Remove infptrace.o.
947 * config/i386/nbsdaout.mh (NATDEPFILES): Remove infptrace.o.
948 * config/i386/nbsdelf.mh (NATDEPFILES): Remove infptrace.o.
949 * config/i386/obsd.mh (NATDEPFILES): Remove infptrace.o.
950 * config/i386/obsdaout.mh (NATDEPFILES): Remove infptrace.o.
951
952 * inf-ptrace.c (inf_ptrace_attach): Remove redundant parenthesis.
953 Inline attach call.
954 (inf_ptrace_detach): Inline detach call.
955
956 * configure.in: Check for waddstr instead of mvwaddstr when
957 searching for curses library. Check for wborder.
958 * configure, config.in: Regenerate.
959 * tui/tui-wingeneral.c (box_win): Use box if wborder isn't
960 available.
961
962 * inf-ptrace.c (inf_ptrace_xfer_memory): Fix gdb_indent.sh wart.
963
964 2004-09-24 Robert Picco <Robert.Picco@hp.com>
965
966 Committed by Andrew Cagney.
967 * remote.c (set_remote_protocol_p_packet_cmd, remote_protocol_p)
968 (show_remote_protocol_p_packet_cmd): New. Implement 'p' packet.
969 configuration.
970 (fetch_register_using_p): Implement 'p' packet. Based on code by
971 Fernando Nasser.
972 (remote_fetch_registers): Call fetch_register_using_p.
973 (init_all_packet_configs, show_remote_cmd)
974 (_initialize_remote): Add p-packet.
975
976 2004-09-24 Mark Kettenis <kettenis@gnu.org>
977
978 * inf-ptrace.c (inf_ptrace_kill_inferior): Call ptrace directly
979 instead of call_ptrace. Call wait directly instead of
980 ptrace_wait.
981 (inf_ptrace_me): Call ptrace directly instead of call_ptrace.
982 (inf_ptrace_wait): Inline ptrace_wait call.
983
984 2004-09-24 Paul Hilfinger <hilfingr@nile.gnat.com>
985
986 * Makefile.in (.y.c): Revert previous change. ../ylwrap was
987 rolled back instead.
988
989 2004-09-24 Paul Hilfinger <hilfingr@nile.gnat.com>
990
991 * Makefile.in (.y.c): Modify $(YLWRAP) invocation to use
992 the new argument order.
993
994 2004-09-23 Corinna Vinschen <vinschen@redhat.com>
995
996 * MAINTAINERS: Remove "broken" from XStormy16 entry.
997 * xstormy16-tdep.c: Convert XStormy16 target to latest GDB methods.
998 (struct gdbarch_tdep): Remove.
999 (struct xstormy16_frame_cache): New frame cache structure.
1000 (xstormy16_register_byte, xstormy16_register_raw_size)
1001 (xstormy16_reg_virtual_type, xstormy16_register_type)
1002 (xstormy16_push_arguments, xstormy16_push_return_address)
1003 (xstormy16_pop_frame, xstormy16_store_struct_return)
1004 (xstormy16_store_return_value, xstormy16_extract_struct_value_address)
1005 (xstormy16_frame_saved_register, xstormy16_get_saved_register)
1006 (xstormy16_scan_prologue, xstormy16_frame_init_saved_regs)
1007 (xstormy16_frame_saved_pc, xstormy16_init_extra_frame_info)
1008 (xstormy16_frame_chain, xstormy16_frame_chain_valid,
1009 (xstormy16_saved_pc_after_call, xstormy16_save_dummy_frame_to): Remove.
1010 (xstormy16_use_struct_convention): Drop gcc_p parameter.
1011 (xstormy16_extract_return_value, xstormy16_store_return_value):
1012 Regcachify. Drop useless struct convention handling.
1013 (xstormy16_register_type, xstormy16_return_value)
1014 (xstormy16_push_dummy_call, xstormy16_analyze_prologue)
1015 (xstormy16_alloc_frame_cache, xstormy16_frame_cache)
1016 (xstormy16_frame_prev_register, xstormy16_frame_this_id)
1017 (xstormy16_frame_base_address, xstormy16_frame_sniffer)
1018 (xstormy16_unwind_sp, xstormy16_unwind_pc)
1019 (xstormy16_unwind_dummy_id) : New functions.
1020 (xstormy16_skip_prologue): Call xstormy16_analyze_prologue instead
1021 of xstormy16_scan_prologue.
1022 (xstormy16_frame_unwind): New frame_unwind structure.
1023 (xstormy16_frame_base): New frame_base structure.
1024 (xstormy16_gdbarch_init): Accomodate all of the above changes.
1025 Reshuffle for better readability. Also add dwarf2_frame_sniffer.
1026
1027 2004-09-22 Mark Kettenis <kettenis@gnu.org>
1028
1029 * language.c (language_gdbarch_post_init): Fix off-by one error.
1030
1031 2004-09-21 Daniel Jacobowitz <dan@debian.org>
1032
1033 * dwarf2read.c (struct dwarf2_per_cu_data): New field type_hash.
1034 (struct dwarf2_offset_and_type): New.
1035 (set_die_type, reset_die_and_siblings_types, get_die_type)
1036 (offset_and_type_hash, offset_and_type_eq): New functions.
1037 (read_structure_type, read_enumeration_type, read_array_type)
1038 (read_namespace, read_tag_pointer_type, read_tag_ptr_to_member_type)
1039 (read_tag_reference_type, read_tag_const_type)
1040 (read_tag_volatile_type, read_tag_string_type, read_subroutine_type)
1041 (read_typedef, read_base_type, read_subrange_type): Use
1042 set_die_type.
1043
1044 2004-09-20 Daniel Jacobowitz <dan@debian.org>
1045
1046 * Makefile.in (dwarf2read.o): Update dependencies.
1047 * dwarf2read.c: Include "command.h" and "gdbcmd.h".
1048 (struct dwarf2_per_objfile): Add all_comp_units, n_comp_units,
1049 and read_in_chain.
1050 (struct dwarf2_cu): Add read_in_chain, per_cu, last_used,
1051 mark, and has_form_ref_addr.
1052 (struct dwarf2_per_cu_data): New.
1053 (dwarf2_max_cache_age): New.
1054 (dwarf2_build_psymtabs_hard): Free cached compilation units
1055 after loading. Create and manage the list of compilation units.
1056 Remove unnecessary NULL initialization. Fix indentation.
1057 (psymtab_to_symtab_1): Initialize all of CU.
1058 (dwarf2_read_abbrevs): Set has_form_ref_addr.
1059 (find_partial_die): Use dwarf2_find_containing_comp_unit
1060 and load_comp_unit.
1061 (free_stack_comp_unit): Update comments. Clear the per-cu
1062 pointer. Handle aging.
1063 (dwarf2_find_containing_comp_unit, free_cached_comp_units)
1064 (age_cached_comp_units, free_one_cached_comp_unit)
1065 (dwarf2_mark, dwarf2_clear_marks, create_all_comp_units)
1066 (load_comp_unit, dwarf2_find_comp_unit, free_one_comp_unit)
1067 (set_dwarf2_cmdlist, show_dwarf2_cmdlist, set_dwarf2_cmd)
1068 (show_dwarf2_cmd): New.
1069 (_initialize_dwarf2_read): Provide "maint set dwarf2 max-cache-age"
1070 and "maint show dwarf2 max-cache-age".
1071 * gdbcmd.h (maintenance_set_cmdlist, maintenance_show_cmdlist): New
1072 externs.
1073 * maint.c (maintenance_set_cmdlist, maintenance_show_cmdlist): Make
1074 global.
1075
1076 2004-09-20 Jeff Johnston <jjohnstn@redhat.com>
1077
1078 * dwarf2read.c (typename_concat): Change prototype to accept obstack
1079 and dwarf2_cu struct pointer as arguments. Change function to use
1080 obstack if provided and use dwarf2_cu to determine language-specific
1081 separator.
1082 (partial_die_parent_scope): Change comment to include java. Use
1083 new version of typename_concat instead of obconcat.
1084 (partial_die_full_name): Use typename_concat.
1085 (read_namespace): Ditto.
1086 (read_enumeration_type): Use typename_concat instead of obconcat.
1087 (new_symbol): Ditto.
1088 (add_partial_symbol): Enhance tests for C++ to also test for Java.
1089 (guess_structure_name): Ditto.
1090 (read_subroutine_type): Ditto.
1091 (read_structure_type): Ditto.
1092 (is_vtable_name): Add Java support.
1093 (determine_class_name): Switch to new typename_concat call.
1094 (determine_prefix): Switch to new typename_concat call.
1095 * jv-exp.y (FuncStart): New pattern.
1096 (MethodInvocation): Add support for simple function calls. Change
1097 warning message for other forms of inferior call currently not
1098 supported.
1099 * valarith.c (value_subscript): Treat an array with upper-bound
1100 of -1 as unknown size.
1101
1102 2004-09-20 Daniel Jacobowitz <dan@debian.org>
1103
1104 * symtab.c (lookup_partial_symtab): Use psymtab_to_fullname.
1105 (lookup_partial_symtab): Use symtab_to_fullname.
1106
1107 2004-09-19 Jim Blandy <jimb@redhat.com>
1108
1109 * minsyms.c (lookup_minimal_symbol): Doc fix.
1110
1111 2004-09-20 Andrew Cagney <cagney@gnu.org>
1112
1113 * config/nm-lynx.h (DEPRECATED_CHILD_RESUME): Deprecate
1114 CHILD_RESUME.
1115 * config/i386/nm-linux.h (DEPRECATED_CHILD_RESUME): Ditto.
1116 * config/nm-linux.h (DEPRECATED_KILL_INFERIOR): Deprecate
1117 KILL_INFERIOR.
1118 * infptrace.c: Update.
1119
1120 2004-09-19 Daniel Jacobowitz <dan@debian.org>
1121
1122 * symtab.c (output_source_filename): Mark first argument as const.
1123 (sources_info): Use symtab_to_fullname and psymtab_to_fullname
1124 for "info sources" output.
1125
1126 2004-09-20 Mark Kettenis <kettenis@gnu.org>
1127
1128 * config/i386/nm-fbsd.h, config/i386/nm-obsd.h: Don't include
1129 <machine/vmparam.h>.
1130 (KERNEL_U_ADDR, REGISTER_U_ADDR): Remove defines.
1131 (register_u_addr): Remove prototype.
1132
1133 2004-09-19 Mark Kettenis <kettenis@gnu.org>
1134
1135 * i386bsd-nat.c: Include "i386bsd-nat.h" and "inf-ptrace.h".
1136 (i386bsd_fetch_inferior_registers): Rename from
1137 fetch_inferior_registers. Make static.
1138 (i386bsd_store_inferior_registers): Rename from
1139 store_inferior_registers. Make static.
1140 (i386bsd_target): New function.
1141 * i386bsd-nat.h: New file.
1142 * i386fbsd-nat.c: Include "target.h", "fbsd-nat.h" and
1143 "i386bsd-nat.h".
1144 (i386fbsd_resume): Rename from child_resume. Make static.
1145 (_initialize_i386fbsd_nat): Construct and add target vector.
1146 * i386nbsd-nat.c: Include "target.h" and "i386bsd-nat.h".
1147 (_initialize_i386nbsd_nat): Construct and add target vector.
1148 * config/i386/nm-fbsd.h: (CHILD_RESUME, CHILD_PID_TO_EXEC_FILE):
1149 Remove defines.
1150 * config/i386/fbsd.mh (NATDEPFILES): Add inf-child.o, inf-ptrace.o
1151 and fbsd-nat.o. Remove inftarg.o and fbsd-proc.o.
1152 * config/i386/nbsdaout.mh (NATDEPFILES): Add inf-child.o,
1153 inf-ptrace.o, i386bsd-nat.o and bsd-kvm.o. Remove inftarg.o.
1154 (LOADLIBES): New variable.
1155 * config/i386/nbsdelf.mh (NATDEPFILES): Add inf-child.o and
1156 inf-ptrace.o. Remove inftarg.o.
1157 * config/i386/obsd.mh (NATDEPFILES): Add inf-child.o and
1158 inf-ptrace.o. Remove inftarg.o.
1159 * config/i386/obsdaout.mh (NATDEPFILES): Add inf-child.o,
1160 inf-ptrace.o, i386nbsd-nat.o and bsd-kvm.o. Remove inftarg.o.
1161 (LOADLIBES): New variable.
1162 * Makefile.in (i386bsd_nat_h): New variable.
1163 (i386bsd-nat.o, i386fbsd-nat.o, i386nbsd-nat.o): Update
1164 dependencies.
1165
1166 * sparc64nbsd-tdep.c: Include "objfiles.h".
1167 (sparc64nbsd_init_abi): Set in_solib_call_trampoline and
1168 skip_trampoline_code. Set solib_svr4_fetch_link_map_offsets to
1169 svr4_lp64_fetch_link_map_offsets.
1170 * sparc64obsd-tdep.c: Include "objfiles.h". Don't include
1171 "nbsd-tdep.h".
1172 (sparc64obsd_init_abi): Set in_solib_call_trampoline and
1173 skip_trampoline_code. Set solib_svr4_fetch_link_map_offsets to
1174 svr4_lp64_fetch_link_map_offsets.
1175 * Makefile.in (sparc64nbsd-tdep.o, sparc64obsd-tdep.o): Update
1176 dependencies.
1177
1178 * fbsd-nat.c: New files with cleaned up contents of fbsd-proc.c.
1179 * fbsd-nat.h: New file.
1180 * Makefile.in (ALLDEPFILES): Add fbsd-nat.c.
1181 (fbsd_nat_h): New variable.
1182 (fbsd-nat.o): New dependency.
1183
1184 * config/sparc/nbsd64.mt, config/sparc/obsd.mt,
1185 config/sparc/obsd64.mt (DEPRECATED_TM_FILE): Set to solib.h.
1186
1187 * inf-child.c (inf_child_post_wait): Remove stray whitespace in
1188 comment.
1189
1190 2004-09-18 Paul N. Hilfinger <hilfinger@gnat.com>
1191
1192 * ada-exp.y (type_int): New function to add layer of abstraction
1193 around references to expression types.
1194 (type_long): Ditto.
1195 (type_long_long): Ditto.
1196 (type_float): Ditto.
1197 (type_double): Ditto.
1198 (type_long_double): Ditto.
1199 (type_char): Ditto.
1200 (type_system_address): Ditto.
1201 (simple_exp): Use type_* functions in place of builtin_*
1202 variables.
1203 (exp): Ditto.
1204 (write_var_from_name): Ditto.
1205 (write_object_renaming): Ditto.
1206 * ada-lang.c (ada_create_fundamental_type): Remove redundant
1207 declaration.
1208 (build_ada_types): Remove, replacing with...
1209 (ada_language_arch_info): New function to initialize primitive
1210 type vector in language_arch_info.
1211 (ada_array_length): Remove use of builtin_type_ada_int.
1212 (value_pos_atr): Ditto.
1213 (ada_evaluate_subexp): Ditto.
1214 (builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
1215 builtin_type_ada_long_long, builtin_type_ada_char,
1216 builtin_type_ada_float, builtin_type_ada_double,
1217 builtin_type_ada_long_double, builtin_type_ada_natural,
1218 builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
1219 (ada_builtin_types): Remove.
1220 (ada_language_defn): Remove entries for la_builtin_type_vector and
1221 string_char_type and use ada_language_arch_info.
1222 (_initialize_ada_language): Do type-vector initialization along
1223 the lines of c-lang.c.
1224 (ada_create_fundamental_type): Break up line.
1225 (ada_dump_symtab): Remove unused function.
1226 (enum ada_primitive_types): Define.
1227 * ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
1228 builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
1229 builtin_type_ada_float, builtin_type_ada_double,
1230 builtin_type_ada_long_double, builtin_type_ada_natural,
1231 builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
1232 * ada-lex.l: Use type_* functions in place of builtin_* variables.
1233 (processInt): Ditto.
1234 (processReal): Ditto.
1235 (name_lookup): Ditto.
1236 * ada-typeprint.c (print_range): Use builtin_type_int, not
1237 builtin_type_ada_int.
1238
1239 2004-09-18 Mark Kettenis <kettenis@gnu.org>
1240
1241 * i386-tdep.c (i386_register_name): Rename regno to regnum.
1242
1243 * config/pa/hpux1020.mh (MH_CFLAGS): Remove -D__HP_CURSES.
1244 * config/pa/hpux11.mh (MH_CFLAGS): Likewise.
1245 * config/pa/hpux11w.mh (MH_CFLAGS): Likewise.
1246 * configure.in: Improve checks for curses library by checking for
1247 mvwaddstr instead of initscr. Drop HP curses in favour of
1248 standard curses on HP-UX.
1249 * configure: Regenerated.
1250
1251 2004-09-18 Paul N. Hilfinger <hilfinger@gnat.com>
1252
1253 * ada-lang.c: (ada_main_name, ada_value_slice_ptr, ada_value_slice,
1254 ada_breakpoint_rewrite, ada_template_to_fixed_record_type_1):
1255 Minor formatting changes.
1256 (empty_array): Slight rewrite for formatting.
1257 (emit_char,parse,ada_language_defn,build_ada_types,
1258 ada_is_exception_sym, _initialize_ada_language): Move
1259 definitions around.
1260 (ada_dump_symtab): Remove unused definition.
1261 (ada_maybe_exception_partial_symbol): Remove unused definition.
1262
1263 2004-09-16 Andrew Cagney <cagney@gnu.org>
1264
1265 * inf-child.c: Include "gdb_string.h".
1266 (inf_child_core_file_to_sym_file): Delete.
1267 (inf_child_target): Set to_fetch_registers and to_store_registers.
1268 * inf-ptrace.c: Include "gdb_string.h".
1269 * Makefile.in: Update all dependencies.
1270
1271 * Makefile.in (gnu-v3-abi.o): Add explict rule to avoid -Werror
1272 problem.
1273
1274 2004-09-14 Joel Brobecker <brobecker@gnat.com>
1275
1276 * mips-tdep.c (mips_insn32_frame_cache): Pass frame cache in
1277 call to heuristic_proc_desc. Remove code that became redundant
1278 as a consequence.
1279 (read_next_frame_reg): Remove special case for SP_REGNUM.
1280 (set_reg_offset): Fix small typo.
1281 (reset_saved_regs): New procedure.
1282 (mips32_heuristic_proc_desc): No longer compute a fake
1283 procedure descriptor. Compute the full frame cache instead.
1284 Some minor comment reformatting.
1285
1286 2004-09-14 Andrew Cagney <cagney@gnu.org>
1287
1288 * MAINTAINERS: Add Michael Chastain as the backup gdb.threads
1289 maintainer.
1290
1291 * thread-db.c (thread_db_new_objfile): Assume that there is a
1292 child process.
1293
1294 2004-09-13 Jim Blandy <jimb@redhat.com>
1295
1296 * valops.c (value_assign): Move 'buffer' to the enclosing block,
1297 so that its storage isn't referenced after its lifetime ends.
1298
1299 * valops.c (value_assign): 'use_buffer' is initialized to zero,
1300 and never assigned to. Delete it, and the 'if (use_buffer)'
1301 clauses. Delete 'raw_buffer', since it is now unused.
1302
1303 2004-09-13 Andrew Cagney <cagney@gnu.org>
1304
1305 * configure.in (frags): Replace TM_FILE with DEPRECATED_TM_FILE.
1306 * configure: Re-generate.
1307 * nlm/Makefile.in (TAGS): Update.
1308 * Makefile.in (TAGS): Update.
1309 * config/vax/nbsd.mt (TM_FILE): Update.
1310 * config/sparc/vxworks.mt (TM_FILE): Update.
1311 * config/sparc/sol2.mt (TM_FILE): Update.
1312 * config/sparc/sol2-64.mt (TM_FILE): Update.
1313 * config/sparc/obsd64.mt (TM_FILE): Update.
1314 * config/sparc/obsd.mt (TM_FILE): Update.
1315 * config/sparc/nbsd64.mt (TM_FILE): Update.
1316 * config/sparc/nbsd.mt (TM_FILE): Update.
1317 * config/sparc/linux64.mt (TM_FILE): Update.
1318 * config/sparc/linux.mt (TM_FILE): Update.
1319 * config/sparc/fbsd.mt (TM_FILE): Update.
1320 * config/sh/wince.mt (TM_FILE): Update.
1321 * config/sh/nbsd.mt (TM_FILE): Update.
1322 * config/sh/linux.mt (TM_FILE): Update.
1323 * config/sh/embed.mt (TM_FILE): Update.
1324 * config/s390/s390.mt (TM_FILE): Update.
1325 * config/rs6000/rs6000lynx.mt (TM_FILE): Update.
1326 * config/rs6000/rs6000.mt (TM_FILE): Update.
1327 * config/rs6000/aix4.mt (TM_FILE): Update.
1328 * config/powerpc/vxworks.mt (TM_FILE): Update.
1329 * config/powerpc/ppc-sim.mt (TM_FILE): Update.
1330 * config/powerpc/ppc-eabi.mt (TM_FILE): Update.
1331 * config/powerpc/obsd.mt (TM_FILE): Update.
1332 * config/powerpc/nbsd.mt (TM_FILE): Update.
1333 * config/powerpc/linux.mt (TM_FILE): Update.
1334 * config/powerpc/aix.mt (TM_FILE): Update.
1335 * config/pa/obsd.mt (TM_FILE): Update.
1336 * config/pa/linux.mt (TM_FILE): Update.
1337 * config/pa/hppahpux.mt (TM_FILE): Update.
1338 * config/pa/hppa64.mt (TM_FILE): Update.
1339 * config/pa/hppa.mt (TM_FILE): Update.
1340 * config/ns32k/nbsdaout.mt (TM_FILE): Update.
1341 * config/mips/wince.mt (TM_FILE): Update.
1342 * config/mips/vxmips.mt (TM_FILE): Update.
1343 * config/mips/nbsd.mt (TM_FILE): Update.
1344 * config/mips/linux.mt (TM_FILE): Update.
1345 * config/mips/irix6.mt (TM_FILE): Update.
1346 * config/mips/irix5.mt (TM_FILE): Update.
1347 * config/mips/embed.mt (TM_FILE): Update.
1348 * config/m68k/vxworks68.mt (TM_FILE): Update.
1349 * config/m68k/st2000.mt (TM_FILE): Update.
1350 * config/m68k/os68k.mt (TM_FILE): Update.
1351 * config/m68k/obsd.mt (TM_FILE): Update.
1352 * config/m68k/nbsd.mt (TM_FILE): Update.
1353 * config/m68k/monitor.mt (TM_FILE): Update.
1354 * config/m68k/linux.mt (TM_FILE): Update.
1355 * config/m68k/cisco.mt (TM_FILE): Update.
1356 * config/ia64/linux.mt (TM_FILE): Update.
1357 * config/ia64/aix.mt (TM_FILE): Update.
1358 * config/ia64/ia64.mt (TM_FILE): Update.
1359 * config/i386/vxworks.mt (TM_FILE): Update.
1360 * config/i386/obsd64.mt (TM_FILE): Update.
1361 * config/i386/obsd.mt (TM_FILE): Update.
1362 * config/i386/nto.mt (TM_FILE): Update.
1363 * config/i386/nbsd64.mt (TM_FILE): Update.
1364 * config/i386/nbsd.mt (TM_FILE): Update.
1365 * config/i386/linux64.mt (TM_FILE): Update.
1366 * config/i386/linux.mt (TM_FILE): Update.
1367 * config/i386/i386sol2.mt (TM_FILE): Update.
1368 * config/i386/i386lynx.mt (TM_FILE): Update.
1369 * config/i386/fbsd64.mt (TM_FILE): Update.
1370 * config/i386/fbsd.mt (TM_FILE): Update.
1371 * config/i386/cygwin.mt (TM_FILE): Update.
1372 * config/h8300/h8300.mt (TM_FILE): Update.
1373 * config/frv/frv.mt (TM_FILE): Update.
1374 * config/cris/cris.mt (TM_FILE): Update.
1375 * config/arm/wince.mt (TM_FILE): Update.
1376 * config/arm/nbsd.mt (TM_FILE): Update.
1377 * config/arm/linux.mt (TM_FILE): Update.
1378 * config/arm/embed.mt (TM_FILE): Update.
1379 * config/alpha/nbsd.mt (TM_FILE): Update.
1380 * config/alpha/fbsd.mt (TM_FILE): Update.
1381 * config/alpha/alpha.mt (TM_FILE): Update.
1382 * config/alpha/alpha-osf1.mt (TM_FILE): Update.
1383 * config/alpha/alpha-linux.mt (TM_FILE): Update.
1384
1385 Eliminate event_loop_p, always has the value 1.
1386 * defs.h (event_loop_p): Delete macro.
1387 * breakpoint.c (until_break_command): Simplify.
1388 * utils.c (prompt_for_continue): Simplify.
1389 * tracepoint.c (read_actions): Simplify.
1390 * top.c (throw_exception, execute_command, gdb_readline_wrapper)
1391 (gdb_rl_operate_and_get_next, command_line_input, get_prompt)
1392 (set_prompt, init_main): Simplify.
1393 (init_signals, disconnect): Delete, unused.
1394 * remote.c (remote_async_resume)
1395 (extended_remote_async_create_inferior): Simplify.
1396 * mi/mi-interp.c (mi_input): Delete, unused.
1397 (mi_interpreter_resume, mi_command_loop): Simplify.
1398 * interps.c (current_interp_command_loop): Simplify.
1399 * infrun.c (proceed): Simplify.
1400 * infcmd.c (run_command, continue_command, step_1, jump_command)
1401 (until_command, advance_command, finish_command)
1402 (interrupt_target_command): Simplify.
1403 * event-top.c (gdb_setup_readline, gdb_disable_readline): Simplify.
1404
1405 * config/i386/nm-i386.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
1406 * config/s390/nm-linux.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
1407 * config/pa/nm-hppah.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
1408 * config/ia64/nm-linux.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
1409 * config/frv/tm-frv.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
1410 * mips-tdep.c (mips_dump_tdep): Do not print same.
1411
1412 2004-09-12 Andrew Cagney <cagney@gnu.org>
1413
1414 * valprint.c (print_longest): Use fputs_filtered. Make "val"
1415 const.
1416 * Makefile.in (valprint.o): Delete explict rule.
1417
1418 * config/m68k/nbsdelf.mh: Add missing trailing newline. Problem
1419 reported by Dave Anderson.
1420
1421 * target.c (target_info): Delete #ifdef call to FILES_INFO_HOOK.
1422
1423 * inferior.h (STORE_STRUCT_RETURN): Delete macro.
1424
1425 2004-09-12 Salvador E. Tropea <set@users.sf.net>
1426 Andrew Cagney <cagney@gnu.org>
1427
1428 * mi/mi-main.c (mi_cmd_data_list_changed_registers)
1429 (mi_cmd_data_list_register_values)
1430 (mi_cmd_data_write_register_values): Include the PSEUDO_REGS in
1431 the register number computation.
1432
1433 2004-09-12 Andrew Cagney <cagney@gnu.org>
1434
1435 * ppcnbsd-nat.c: Include "inf-ptrace.h".
1436 (ppcnbsd_fetch_inferior_registers): Rename fetch_inferior_registers.
1437 (ppcnbsd_store_inferior_registers): Rename store_inferior_registers.
1438 (_initialize_ppcnbsd_nat): Create and add a NetBSD/PPC ptrace
1439 target.
1440 * config/powerpc/nbsd.mh (NATDEPFILES): Replace and inftarg.o with
1441 inf-ptrace.o and inf-child.o.
1442 * inf-ptrace.h, inf-ptrace.c, inf-child.h, inf-child.c: New files.
1443 * Makefile.in: Update dependencies.
1444
1445 2004-09-11 Andrew Cagney <cagney@gnu.org>
1446
1447 * language.c (hex_string, hex_string_custom): Move from here ...
1448 * utils.c (hex_string, hex_string_custom): ... to here, rewrite.
1449 (CELLSIZE): Increase to 50.
1450 * language.h (hex_string, hex_string_custom): Move from here ...
1451 * defs.h: ... to here.
1452 * Makefile.in: Update all dependencies.
1453
1454 2004-09-11 Paul N. Hilfinger <hilfinger@gnat.com>
1455
1456 * language.c (local_hex_format_custom): Remove.
1457 (local_hex_string): Rename to hex_string, use C format, and move to
1458 utils.c
1459 (local_hex_string_custom): Rename to hex_string_custom and change
1460 interface. Now uses C format. Move to utils.c
1461 (local_octal_format_custom): Remove.
1462 (local_decimal_format_custom): Remove.
1463 (unknown_language_defn): Remove language-specific number
1464 formatting entries.
1465 (auto_language_defn): Ditto.
1466 (local_language_defn): Ditto.
1467 * language.h (struct language_format_info): Delete declaration.
1468 (struct language_defn): Remove language_format_info fields
1469 la_binary_format, la_octal_format, la_decimal_format, la_hex_format.
1470 (local_binary_format): Remove macro.
1471 (local_binary_format_prefix): Remove macro.
1472 (local_binary_format_specifier): Remove macro.
1473 (local_binary_format_suffix): Remove macro.
1474 (local_octal_format): Remove macro.
1475 (local_octal_format_prefix): Remove macro.
1476 (local_octal_format_specifier): Remove macro.
1477 (local_octal_format_suffix): Remove macro.
1478 (local_decimal_format): Remove macro.
1479 (local_decimal_format_prefix): Remove macro.
1480 (local_decimal_format_specifier): Remove macro.
1481 (local_decimal_format_suffix): Remove macro.
1482 (local_hex_format): Remove macro.
1483 (local_hex_format_prefix): Remove macro.
1484 (local_hex_format_specifier): Remove macro.
1485 (local_hex_format_suffix): Remove macro.
1486 (local_decimal_format_custom): Remove.
1487 (local_octal_format_custom): Remove.
1488 (local_hex_format_custom): Remove.
1489 (local_hex_string): Rename to hex_string and move to defs.h.
1490 (local_hex_string_custom): Rename to hex_string_custom, change
1491 interface, and move to defs.h.
1492 * utils.c: (int_string): New function.
1493 (hex_string): New function (from language.c).
1494 (hex_string_custom): New function (from language.c).
1495 (octal2str): New function.
1496 (decimal2str): Add width parameter.
1497 (paddr_u): Use new decimal2str interface.
1498 (paddr_d): Ditto.
1499 * defs.h (hex_string): Declare.
1500 (hex_string_custom): Declare.
1501 (int_string): Declare.
1502 * printcmd.c (print_scalar_formatted): Remove localized binary
1503 formatting.
1504 * valprint.c (print_longest): Use int_string.
1505 (print_floating): Use C hex format.
1506 (print_hex_chars): Ditto.
1507 (print_binary_chars): Remove language-specific formatting.
1508 (print_octal_chars): Use C octal format.
1509 (print_decimal_chars): Delocalize format.
1510 (print_decimal): Remove.
1511 * ada-lang.c (ada_language_defn): Remove language-specific number
1512 formatting entries.
1513 * p-lang.c (pascal_language_defn): Ditto.
1514 * c-lang.c (c_language_defn): Ditto.
1515 (cplus_language_defn): Ditto.
1516 (asm_language_defn): Ditto.
1517 (minimal_language_defn): Ditto.
1518 * f-lang.c (f_language_defn): Ditto.
1519 * jv-lang.c (java_language_defn): Ditto.
1520 * m2-lang.c (m2_language_defn): Ditto.
1521 * scm-lang.c (scm_language_defn): Ditto.
1522 * objc-lang.c (objc_language_defn): Ditto.
1523 * memattr.c (mem_info_command): Use renamed hex_string_custom with
1524 new interface.
1525 * pa64solib.c (pa64_sharedlibrary_info_command): Ditto.
1526 * ui-out.c (ui_out_field_core_addr): Ditto.
1527 * breakpoint.c (breakpoint_adjustment_warning): Ditto.
1528 * exec.c (print_section_info): Ditto.
1529 * i387-tdep.c (print_i387_status_word): Ditto.
1530 (print_i387_control_word): Ditto.
1531 (i387_print_float_info): Ditto.
1532 * maint.c (maint_print_section_info): Ditto.
1533 * solib.c (info_sharedlibrary_command): Ditto.
1534 * somsolib.c (som_sharedlibrary_info_command): Ditto.
1535 * symtab.c (print_msymbol_info): Ditto.
1536 * tracepoint.c (tracepoints_info): Ditto.
1537 * solib-frv.c (lm_base): Ditto.
1538 (frv_current_sos): Ditto.
1539 (enable_break2): Ditto.
1540 (enable_break): Ditto.
1541 * dbxread.c (read_dbx_symtab): Use renamed hex_string.
1542 (process_one_symbol): Ditto.
1543 * infcmd.c (program_info): Ditto.
1544 * mdebugread.c (parse_partial_symbols): Ditto.
1545 * symfile.c (add_symbol_file_command): Ditto.
1546 * cli/cli-cmds.c (edit_command): Ditto.
1547 (list_command): Ditto.
1548 * infcall.c (call_function_by_hand): Ditto.
1549 * remote-vx.c (vx_run_files_info): Ditto.
1550 (vx_wait): Ditto.
1551 (vx_attach): Ditto.
1552 (vx_detach): Ditto.
1553 (vx_kill): Ditto.
1554 * aix-thread.c (pdc_symbol_addrs): Ditto.
1555 (pdc_read_regs): Ditto.
1556 (pdc_write_regs): Ditto.
1557 (pdc_read_data): Ditto.
1558 (pdc_write_data): Ditto.
1559 * d10v-tdep.c (display_trace): Ditto.
1560 * rs6000-nat.c (find_toc_address): Ditto.
1561 * aix-thread.c: Don't include language.h.
1562 * buildsym.c: Ditto.
1563 * dbxread.c: Ditto.
1564 * mdebugread.c: Ditto.
1565 * rs6000-nat.c: Ditto.
1566 * buildsym.c (make_blockvector): Use renamed hex_string.
1567
1568 2004-09-10 Jason Molenda (jmolenda@apple.com)
1569
1570 * cli/cli-script.c (read_next_line): Accept zero or more whitespace
1571 chars after 'if' or 'while' commands in user-defined commands.
1572
1573 2004-09-08 Jim Blandy <jimb@redhat.com>
1574
1575 Fix bug reported and analyzed by Olivier Crete:
1576 * symfile.c (copy_section_addr_info): New function.
1577 (symbol_file_add_with_addrs_or_offsets): Use it to save the
1578 original set of address arguments, instead of handwritten code
1579 that uses one length to allocate and a different length to
1580 initialize. Use make_cleanup_free_section_addr_info.
1581 * symfile.h (copy_section_addr_info): New declaration.
1582 * utils.c: #include "symfile.h".
1583 (do_free_section_addr_info, make_cleanup_free_section_addr_info):
1584 New functions.
1585 * defs.h (make_cleanup_free_section_addr_info): New declaration.
1586 * Makefile.in (utils.o): Update dependencies.
1587
1588 2004-09-08 Andrew Cagney <cagney@gnu.org>
1589
1590 * thread-db.c (keep_thread_db): Delete.
1591 (thread_db_new_objfile, thread_db_create_inferior)
1592 (thread_db_mourn_inferior): Simplify assuming !keep_thread_db.
1593
1594 2004-09-08 Mark Kettenis <kettenis@gnu.org>
1595
1596 * i386-tdep.h (FPC_REGNUM, FCTRL_REGNUM, FSTAT_REGNUM, FTAG_REGNUM)
1597 (FISEG_REGNUM, FIOFF_REGNUM, FOSEG_REGNUM, FOOFF_REGNUM)
1598 (FOP_REGNUM, XMM0_REGNUM, MXCSR_REGNUM): Remove macros.
1599 (i386_frameless_signal_p): Remove prototype.
1600 * i386-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
1601 (GETFPXREGS_SUPPLIES): Define using I386_ST0_REGNUM and
1602 I386_SSE_NUM_REGS.
1603 * i386-nto-tdep.c (i386nto_supply_gregset): Use I386_NUM_GREGS
1604 instead of FP0_REGNUM.
1605 (i386nto_regset_id): Use I386_NUM_GREGS and I386_NUM_FREGS instead
1606 of FP0_REGNUM and FPC_REGNUM.
1607
1608 * solib-sunos.c (sunos_relocate_main_executable): Remove function.
1609 (sunos_solib_create_inferior_hook): Don't call
1610 sunos_relocate_main_executable.
1611
1612 * sparcnbsd-tdep.c (sparc32nbsd_elf_init_abi): Set
1613 solib_svr4_fetch_link_map_offsets to
1614 svr4_ilp32_fetch_link_map_offsets.
1615 * sparcobsd-tdep.c: Don't include "nbsd-tdep.h".
1616 (sparc32obsd_init_abi): Set solib_svr4_fetch_link_map_offsets to
1617 svr4_ilp32_fetch_link_map_offsets.
1618 * Makefile.in (sparcobsd-tdep.o): Update dependencies.
1619
1620 2004-09-07 Jim Blandy <jimb@redhat.com>
1621
1622 * frame.h (frame_register): Doc fix.
1623
1624 2004-09-07 Andrew Cagney <cagney@gnu.org>
1625
1626 * vx-share/wait.h: Delete #ifdef USG.
1627 * utils.c (request_quit): Ditto.
1628 * tui/tui.c (tui_reset): Ditto.
1629 * remote.c: Ditto.
1630 * remote-sds.c: Ditto.
1631 * remote-rdi.c: Ditto.
1632 * mdebugread.c: Ditto.
1633 * m68klinux-nat.c: Ditto.
1634 * infttrace.c: Ditto.
1635 * infptrace.c: Ditto.
1636 * i386v-nat.c: Ditto.
1637 * exec.c: Ditto.
1638 * dbxread.c: Ditto.
1639 * core-aout.c: Ditto.
1640
1641 2004-09-05 Joel Brobecker <brobecker@gnat.com>
1642
1643 * mips-tdep.c (mips_insn16_frame_cache): Fix parameter in call to
1644 heuristic_proc_desc.
1645 (mips_insn32_frame_cache): Likewise.
1646
1647 2004-09-04 Joel Brobecker <brobecker@gnat.com>
1648
1649 * mips-tdep.c (mips32_heuristic_proc_desc): Remove code that was
1650 left behind by error.
1651
1652 2004-09-04 Joel Brobecker <brobecker@gnat.com>
1653
1654 * config/alpha/nm-osf.h (PTRACE_ARG3_TYPE): Remove define.
1655 * config/powerpc/nm-aix.h (PTRACE_ARG3_TYPE): Likewise.
1656
1657 2004-09-04 Joel Brobecker <brobecker@gnat.com>
1658
1659 * config/rs6000/xm-aix4.h: Remove this file.
1660 * config/rs6000/aix4.mh (XM_FILE): Delete.
1661
1662 2004-09-04 Joel Brobecker <brobecker@gnat.com>
1663
1664 * config/rs6000/xm-rs6000.h: Remove this file.
1665 * config/rs6000/rs6000.mh (XM_FILE): Remove.
1666
1667 2004-09-03 Andrew Cagney <cagney@gnu.org>
1668
1669 * mips-tdep.c (PROC_DESC_IS_DUMMY, SET_PROC_DESC_IS_DUMMY)
1670 (_PROC_MAGIC_, after_prologue, mips_dump_tdep): Delete macros and
1671 only use.
1672
1673 * mips-tdep.c (temp_saved_regs): Delete.
1674 (set_reg_offset): Replace saved_regs parameter with this_cache.
1675 (heuristic_proc_desc, mips16_heuristic_proc_desc)
1676 (mips32_heuristic_proc_desc): Add this_cache parameter.
1677 (mips_insn32_frame_cache, mips_insn16_frame_cache)
1678 (after_prologue): Pass a NULL this_cache.
1679
1680 * mips-tdep.c (mips_mdebug_frame_cache): Delete code handling
1681 non-kernel trap prologues.
1682
1683 * mips-tdep.c (find_proc_desc): Delete function.
1684 (mips_mdebug_frame_cache): Inline call to find_proc_desc,
1685 simplify.
1686 (mips_insn16_frame_cache): Replace find_proc_desc with code from
1687 mips_insn32_frame_cache.
1688
1689 * mips-tdep.c (after_prologue): Inline call to find_proc_desc.
1690 Simplify as NEXT_FRAME is NULL.
1691 (find_proc_desc): Simplify as NEXT_FRAME is non-NULL.
1692
1693 * mips-tdep.c (after_prologue): Replace proc_desc parameter with
1694 local variable.
1695 (mips_skip_prologue): Update.
1696
1697 * mips-tdep.c (find_proc_desc, heuristic_proc_desc): Delete
1698 "cur_frame" parameter.
1699 (after_prologue, mips_mdebug_frame_cache, mips_insn16_frame_cache):
1700 (mips_insn32_frame_cache, find_proc_desc): Update
1701
1702 * config/vax/nm-obsd.h: Delete file.
1703 * config/vax/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1704 * config/vax/nm-nbsd.h: Delete file.
1705 * config/vax/nm-nbsdaout.h: Include config/nm-nbsd.h.
1706 * config/vax/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1707 * config/sh/nm-nbsd.h: Delete file.
1708 * config/sh/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1709 * config/rs6000/nm-rs6000ly.h: Delete file.
1710 * config/djgpp/fnchange.lst: Do not rename nm-rs6000ly.h.
1711 * config/rs6000/rs6000lynx.mh (NAT_FILE): Set to config/nm-lynx.h.
1712 * config/powerpc/nm-obsd.h: Delete file.
1713 * config/powerpc/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1714 * config/powerpc/nm-nbsd.h: Delete file.
1715 * config/powerpc/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1716 * config/pa/nm-obsd.h: Delete file.
1717 * config/pa/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1718 * config/mips/nm-nbsd.h: Delete file.
1719 * config/mips/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1720 * config/m88k/nm-obsd.h: Delete file.
1721 * config/m88k/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1722 * config/m68k/nm-nbsd.h: Delete file.
1723 * config/m68k/nm-nbsdaout.h: Include config/nm-nbsd.h.
1724 * config/m68k/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1725 * config/i386/nm-nbsd.h: Delete file.
1726 * config/i386/nm-nbsdaout.h: Include config/nm-nbsd.h.
1727 * config/i386/obsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
1728 * config/i386/nbsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
1729 * config/i386/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1730 * config/i386/nm-i386lynx.h: Delete file.
1731 * config/i386/i386lynx.mh (NAT_FILE): Set to config/nm-lynx.h.
1732 * config/arm/nm-nbsd.h: Delete file.
1733 * config/arm/nm-nbsdaout.h: Include config/nm-nbsd.h.
1734 * config/arm/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1735
1736 * config/i386/tm-fbsd.h: Delete file.
1737 * config/i386/fbsd64.mt (TM_FILE): Set to solib.h.
1738 * config/i386/fbsd.mt (TM_FILE): Set to solib.h.
1739
1740 * config/rs6000/tm-rs6000-aix4.h: Delete file.
1741 * config/djgpp/fnchange.lst: Do not rename tm-rs6000-aix4.h.
1742 * config/rs6000/aix4.mt (TM_FILE): Set to
1743 config/rs6000/tm-rs6000.h.
1744 * config/powerpc/tm-ppc-aix.h: Delete file.
1745 * config/powerpc/aix.mt (TM_FILE): Set to
1746 config/rs6000/tm-rs6000.h.
1747 * config/m68k/tm-linux.h: Delete file.
1748 * config/m68k/linux.mt (TM_FILE): Set to solib.h
1749 * config/i386/tm-linux64.h: Delete file.
1750 * config/i386/linux64.mt (TM_FILE): Set to solib.h.
1751 * config/djgpp/fnchange.lst: Do not rename tm-linux.h.
1752
1753 * config/m68k/tm-linux.h (SVR4_SHARED_LIBS): Delete.
1754 * config/i386/tm-linux64.h (SVR4_SHARED_LIBS): Delete.
1755 * config/i386/nm-i386sco5.h (SVR4_SHARED_LIBS): Delete.
1756 * config/tm-linux.h (SVR4_SHARED_LIBS): Delete.
1757 * config/nm-sysv4.h (SVR4_SHARED_LIBS): Delete.
1758 * config/nm-linux.h (SVR4_SHARED_LIBS): Delete.
1759 * config/nm-gnu.h (SVR4_SHARED_LIBS): Delete.
1760 * sh64-tdep.c [SVR4_SHARED_LIBS]: Delete #ifdef wrapper.
1761 * sh-tdep.c [SVR4_SHARED_LIBS]: Delete #ifdef wrapper.
1762
1763 * configure.in (GDB_TM_FILE): Fix typo, use gdb_target_cpu and not
1764 gdb_host_cpu.
1765
1766 2004-09-02 Joel Brobecker <brobecker@gnat.com>
1767
1768 * mips-tdep.c (mips_insn32_frame_cache): Remove some dead code.
1769 Minor reformatting. Some code factoring.
1770
1771 2004-09-02 Andrew Cagney <cagney@gnu.org>
1772
1773 * config/vax/nbsd.mt (TM_FILE): Set to solib.h.
1774 * config/vax/tm-nbsd.h: Delete file.
1775 * config/sparc/vxworks.mt (TM_FILE): Set to config/tm-vxworks.h.
1776 * config/sparc/tm-vxworks.h: Delete file.
1777 * config/sparc/nbsd.mt (TM_FILE): Set to solib.h.
1778 * config/sparc/tm-nbsd.h: Delete file.
1779 * config/sparc/linux64.mt (TM_FILE): Set to solib.h.
1780 * config/sparc/linux.mt (TM_FILE): Set to solib.h.
1781 * config/sparc/tm-linux.h: Delete file.
1782 * config/s390/s390.mt (TM_FILE): Set to config/tm-linux.h
1783 * config/s390/tm-linux.h: Delete file.
1784 * config/pa/obsd.mt (TM_FILE): Set to solib.h.
1785 * config/pa/tm-bsd.h: Delete file.
1786 * config/m68k/obsd.mt (TM_FILE): Set to solib.h.
1787 * config/m68k/tm-obsd.h: Delete file.
1788 * config/m68k/nbsd.mt (TM_FILE): Set to solib.h.
1789 * config/m68k/tm-nbsd.h: Delete file.
1790 * config/i386/vxworks.mt (TM_FILE): Set to config/tm-vxworks.h.
1791 * config/i386/tm-vxworks.h: Delete file.
1792 * config/i386/obsd64.mt (TM_FILE): Set to solib.h.
1793 * config/i386/obsd.mt (TM_FILE): Set to solib.h.
1794 * config/i386/nbsd64.mt (TM_FILE): Set to solib.h.
1795 * config/i386/nbsd.mt (TM_FILE): Set to solib.h.
1796 * config/i386/tm-nbsd.h: Delete file.
1797 * config/i386/i386lynx.mt (TM_FILE): Set to config/tm-lynx.h.
1798 * config/i386/tm-i386lynx.h: Delete file.
1799 * config/cris/cris.mt (TM_FILE): Set to solib.h.
1800 * config/cris/tm-cris.h: Delete file.
1801
1802 * configure.in: Let TM_FILE, XM_FILE and NAT_FILE specify a path.
1803 * configure: Re-generate.
1804 * config/arm/nbsd.mt (TM_FILE): Set to "solib.h".
1805 * config/arm/tm-nbsd.h: Delete file.
1806
1807 * config/powerpc/tm-ppcle-sim.h: Delete.
1808 * config/powerpc/tm-ppcle-eabi.h: Delete.
1809 * config/powerpc/tm-nbsd.h: Delete.
1810 * config/powerpc/nbsd.mt (TM_FILE): Set to tm-ppc-eabi.h.
1811 * config/djgpp/fnchange.lst: Do not rename tm-ppcle-sim.h or
1812 tm-ppcle-eabi.h.
1813
1814 * config/i386/nto.mh (NAT_FILE): Delete.
1815 * config/i386/nm-nto.h: Delete.
1816
1817 * config/m68k/tm-vx68.h: Do not include "tm-m68k.h".
1818 * config/m68k/tm-os68k.h: Ditto.
1819 * config/m68k/tm-monitor.h: Ditto.
1820 * config/m68k/tm-cisco.h: Ditto.
1821 * config/m68k/st2000.mt (TM_FILE): Delete.
1822 * config/m68k/tm-vx68.h (GET_LONGJMP_TARGET): Delete.
1823 * config/m68k/tm-cisco.h (GET_LONGJMP_TARGET): Delete.
1824 * config/m68k/tm-m68k.h (m68k_get_longjmp_target): Delete file.
1825 * m68k-tdep.c (m68k_get_longjmp_target): Make static.
1826
1827 * config/m68k/tm-st2000.h: Delete.
1828 * config/m68k/st2000.mt (TM_FILE): Set to tm-m68k.h.
1829 * config/sparc/fbsd.mt (TM_FILE): Delete.
1830 * config/sparc/tm-fbsd.h: Delete.
1831
1832 * acconfig.h (GDB_MULTI_ARCH): Delete undef.
1833 * defs.h (GDB_MULTI_ARCH_PARTIAL, GDB_MULTI_ARCH_TM)
1834 (GDB_MULTI_ARCH_PURE, GDB_MULTI_ARCH): Delete macros.
1835
1836 * gdbarch.sh: Instead of GDB_MULTI_ARCH print GDB_NM_FILE,
1837 GDB_TM_FILE and GDB_XM_FILE.
1838 * gdbarch.c: Re-generate.
1839 * configure.in (GDB_XM_FILE, GDB_NM_FILE, GDB_TM_FILE): Include
1840 quotes in macro definition.
1841 * configure.in: Re-generate.
1842
1843 * gdbarch.sh: Delete check for GDB_MULTI_ARCH_PARTIAL when
1844 validating architecture methods.
1845 * gdbarch.c: Re-generate.
1846
1847 * gdbarch.sh: Delete check for consistency between GDB_MULTI_ARCH
1848 and GDB_TM_FILE. Check for GDB_TM_FILE instead of
1849 GDB_MULTI_ARCH_PARTIAL.
1850 * gdbarch.h: Re-generate.
1851
1852 * config/sparc/tm-vxworks.h (GDB_MULTI_ARCH): Delete.
1853 * config/sparc/tm-sol2.h (GDB_MULTI_ARCH): Delete.
1854 * config/sparc/tm-nbsd.h (GDB_MULTI_ARCH): Delete.
1855 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Delete.
1856 * config/sparc/tm-fbsd.h (GDB_MULTI_ARCH): Delete.
1857 * config/sh/tm-sh.h (GDB_MULTI_ARCH): Delete.
1858 * config/rs6000/tm-rs6000.h (GDB_MULTI_ARCH): Delete.
1859 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): Delete.
1860 * config/mips/tm-mips.h (GDB_MULTI_ARCH): Delete.
1861 * config/ia64/tm-ia64.h (GDB_MULTI_ARCH): Delete.
1862 * config/cris/tm-cris.h (GDB_MULTI_ARCH): Delete.
1863 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Delete.
1864
1865 2004-09-01 Andrew Cagney <cagney@gnu.org>
1866
1867 * objfiles.h (struct entry_info): Delete fields main_func_lowpc
1868 and main_func_highpc.
1869 (INVALID_ENTRY_LOWPC, INVALID_ENTRY_HIGHPC): Delete macros.
1870 * objfiles.c (init_entry_point_info, objfile_relocate): Update
1871 * nlmread.c (nlm_symfile_read): Update.
1872
1873 2004-09-01 Joel Brobecker <brobecker@gnat.com>
1874
1875 * mips-tdep.c (linked_proc_desc_table): Delete, not used.
1876 (mips_insn32_frame_cache): Inline call to find_proc_desc.
1877 (find_proc_desc): Remove dead code.
1878
1879 2004-09-01 Joel Brobecker <brobecker@gnat.com>
1880
1881 * mips-tdep.c (mips_mdebug_frame_cache): Minor reformatting.
1882
1883 2004-09-01 Jeff Johnston <jjohnstn@redhat.com>
1884
1885 * observer.sh: Add struct so_list declaration.
1886 * Makefile.in: Add dependencies on observer.h for solib.c and
1887 breakpoint.c.
1888 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): New
1889 function.
1890 (_initialize_breakpoint): Register
1891 disable_breakpoints_in_unloaded_shlib as an observer of the
1892 "solib unloaded" observation event.
1893 (re_enable_breakpoints_in_shlibs): For bp_shlib_disabled breakpoints,
1894 call decode_line_1 so unfound breakpoint errors are silent.
1895 * solib.c (update_solib_list): When a solib is discovered to have
1896 been unloaded by the program, notify all observers of the
1897 "solib unloaded" observation event.
1898
1899 2004-09-01 Andrew Cagney <cagney@gnu.org>
1900
1901 * frame.c: Include "objfiles.h".
1902 (inside_main_func): New function.
1903 (get_prev_frame): Use new inside_main_func.
1904 * Makefile.in (frame.o): Update dependencies.
1905 * defs.h (inside_main_func): Delete declaration.
1906 * blockframe.c (inside_main_func): Delete function.
1907
1908 2004-08-31 Jim Blandy <jimb@redhat.com>
1909
1910 * dwarf2read.c (is_vtable_name): New function, based on logic from
1911 read_structure_type, but passing the correct length to strncmp,
1912 and using 'sizeof' instead of 'strlen'.
1913 (read_structure_type): Call it.
1914
1915 2004-08-31 Joel Brobecker <brobecker@gnat.com>
1916
1917 * config/powerpc/aix.mh: Add comment.
1918
1919 2004-08-31 Paul GIlliam <pgilliam@us.ibm.com>
1920
1921 * MAINTAINERS: Add self to Write-After-Approval.
1922
1923 2004-08-30 Manoj Iyer <manjo@austin.ibm.com>
1924
1925 * MAINTAINERS: Add self to Write-After-Approval.
1926
1927 2004-08-30 Andrew Cagney <cagney@gnu.org>
1928
1929 Fix PR breakpoints/1757.
1930 * infrun.c (struct execution_control_state): Replace
1931 remove_breakpoints_on_following_step with
1932 step_after_step_resume_breakpoint.
1933 (init_execution_control_state): Update.
1934 (handle_inferior_event): For signals, when stepping off a
1935 breakpoint, set step_after_step_resume_breakpoint. When
1936 BPSTAT_WHAT_STEP_RESUME, do a single-step off the breakpoint.
1937 (keep_going): Delete code handling
1938 remove_breakpoints_on_following_step.
1939
1940 2004-08-29 David Lecomber <david@streamline-computing.com>
1941
1942 Fix PR gdb/648
1943 * language.h (enum array_ordering): New enum.
1944 * language.h (struct language_defn): New la_array_ordering
1945 attribute.
1946 * language.c (unknown_language_defn, auto_language_defn)
1947 (local_language_defn): Ditto.
1948 * ada-lang.c (ada_language_defn): Ditto.
1949 * c-lang.c (c_language_defn, cplus_language_defn)
1950 (asm_language_defn, minimal_language_defn): Ditto.
1951 * f-lang.c (f_language_defn): Ditto.
1952 * jv-lang.c (java_language_defn): Ditto.
1953 * m2-lang.c (f_language_defn): Ditto.
1954 * objc-lang.c (objc_language_defn): Ditto.
1955 * p-lang.c (pascal_language_defn): Ditto.
1956 * scm-lang.c (scm_language_defn): Ditto.
1957 * eval.c (evaluate_subexp_standard): Assume Fortran arrays are
1958 oriented large to small in type structure.
1959 * dwarf2read.c (read_array_order): New function.
1960 (read_array_type): Use read_array_order to check row/column
1961 major ordering.
1962
1963 2004-08-27 Nathan J. Williams <nathanw@wasabisystems.com>
1964
1965 * target.c (target_resize_to_sections): Check
1966 current_target.to_sections for an old value when updating.
1967
1968 2004-08-27 Joel Brobecker <brobecker@gnat.com>
1969
1970 * procfs.c (dbx_link_bpt_addr): New static global variable.
1971 (dbx_link_shadow_contents): New static global variable.
1972 (procfs_wait, case <PR_SYSEXIT>): Handle syssgi events.
1973 (procfs_wait, case <FLTBPT>): Remove the __dbx_link brekapoint
1974 if we just hit it.
1975 (procfs_init_inferior): Enable syssgi() syscall trace if appropriate.
1976 Reset dbx_link_bpt_addr as the address of __dbx_link() may change
1977 from run to run.
1978 (procfs_create_inferior): Remove syssgi syscall-exit notifications
1979 after the inferior has been forked.
1980 (remove_dbx_link_breakpoint): New function.
1981 (dbx_link_addr): New function.
1982 (insert_dbx_link_bpt_in_file): New function.
1983 (insert_dbx_link_bpt_in_region): New function.
1984 (insert_dbx_link_breakpoint): New function.
1985 (proc_trace_syscalls_1): New function, extracted from
1986 proc_trace_syscalls.
1987 (proc_trace_syscalls): Replace extract code by call to
1988 proc_trace_syscalls_1.
1989 * solib-irix.c (disable_break): Remove stop_pc assertion, as it
1990 is no longer valid.
1991
1992 2004-08-25 Jim Blandy <jimb@redhat.com>
1993
1994 * gdbtypes.h (TYPE_CODE_ARRAY): Doc fix.
1995
1996 2004-08-25 Andrew Cagney <cagney@gnu.org>
1997
1998 * infrun.c (struct execution_control_state): Delete field
1999 "stepping_through_sigtramp".
2000 (init_execution_control_state): Do not set same.
2001 (context_switch): Do not pass same to save_infrun_state and
2002 load_infrun_state.
2003 * gdbthread.h (struct thread_info): Delete field
2004 stepping_through_sigtramp.
2005 (save_infrun_state, load_infrun_state): Delete parameter
2006 stepping_through_sigtramp.
2007 * thread.c (load_infrun_state, save_infrun_state): Update.
2008
2009 * infrun.c: Re-indent. Move expression operators to the beginning
2010 of the line. Remove long disabled #if 0 code.
2011
2012 2004-08-24 Andrew Cagney <cagney@gnu.org>
2013
2014 * doublest.h (floatformat_ieee_quad): Rename
2015 floatformat_ia64_quad.
2016 * doublest.c (floatformat_ieee_quad): Rename
2017 floatformat_ia64_quad.
2018 (_initialize_doublest): Update.
2019
2020 2004-08-24 Jim Blandy <jimb@redhat.com>
2021
2022 * dwarf2expr.h (struct dwarf_expr_context): New members
2023 'num_pieces' and 'pieces', for returning the result of an
2024 expression that uses DW_OP_piece.
2025 (struct dwarf_expr_piece): New struct type.
2026 * dwarf2expr.c (new_dwarf_expr_context): Initialize num_pieces and
2027 pieces.
2028 (free_dwarf_expr_context): Free pieces, if any.
2029 (add_piece): New function.
2030 (execute_stack_op): Implement DW_OP_piece.
2031 * dwarf2loc.c (dwarf2_evaluate_loc_desc): If the result of the
2032 expression is a list of pieces, print an error message.
2033 (dwarf2_loc_desc_needs_frame): If the expression yields
2034 pieces, and any piece is in a register, then we need a frame.
2035
2036 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Wait to fetch the top of
2037 the stack until we've decided what sort of result the evaluation
2038 has produced. Use separate variables, with more specific names.
2039
2040 2004-08-23 Richard Earnshaw <rearnsha@arm.com>
2041
2042 * armnbsd-tdep.c (arm_nbsd_arm_be_breakpoint): Define.
2043 (arm_nbsd_thumb_[lb]e_breakpoint): Define.
2044 (arm_netbsd_init_abi_common): Register them.
2045
2046 2004-08-22 Mark Kettenis <kettenis@gnu.org>
2047
2048 * config/vax/vax.mh (NATDEPFILES): Add vax-nat.c.
2049
2050 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Use
2051 safe_frame_unwind_memory instead of target_read_memory.
2052
2053 * infptrace.c: Remove #ifdef'ed out inclusion of gdb_stat.h.
2054 Reorder includes.
2055 (fetch_register, store_register): Remove prototypes.
2056 (child_resume): Reorganize code and comments such that it is
2057 grouped a bit more logically.
2058 (attach): Explicitly compare errno against 0.
2059 (detach): Likewise. Use perror_with_name instead of
2060 print_sys_errmsg.
2061 * Makefile.in (infptrace.o): Update dependencies.
2062
2063 * ia64-linux-nat.c: Update copyright year.
2064 (fetch_debug_register, store_debug_register)
2065 (ia64_linux_stopped_by_watchpoint): Replace PTRACE_ARG3_TYPE with
2066 PTRACE_TYPE_ARG3.
2067 * config/ia64/nm-linux.h: Update copyright year.
2068 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove defines.
2069
2070 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Change argument
2071 from CORE_ADDR to struct frame_info *. Use
2072 safe_frame_unwind_memory instead of deprecated_read_memory_nobpt.
2073 (amd64_linux_sigtramp_p): Adjust for changed signature of
2074 and64_linux_sigtramp_start
2075
2076 * gdb_ptrace.h: GNU/Linux.
2077
2078 * config/alpha/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
2079 Remove defines.
2080
2081 * infptrace.c: Include "gdb_assert.h".
2082 (PTRACE_XFER_TYPE): Remove define.
2083 (offsetof): Only define if U_REGS_OFFSET isn't defined.
2084 (fetch_register, store_register): Rewrite to use PTRACE_TYPE_RET.
2085 Tweak comment.
2086 (fetch_inferior_registers, store_inferior_registers): Remove
2087 redundant culry braces. Tweak comment. s/regno/regnum.
2088 * Makefile.in (infptrace.o): Update dependencies.
2089
2090 * configure.in: Change test for return type of ptrace to default
2091 to `long' instead of `int'.
2092 * configure: Regenerate.
2093
2094 2004-08-21 Mark Kettenis <kettenis@gnu.org>
2095
2096 * config/alpha/alpha-linux.mh (LOADLIBES): New variable.
2097
2098 * configure.in: Check for ttrace function.
2099 * configure, config.in: Regenerate.
2100
2101 * gdb_ptrace.h: New file.
2102 * infptrace.c: Include "gdb_ptrace.h" instead of <ptrace.h> or
2103 <sys/ptrace.h>.
2104 (PT_READ_I, PT_READ_D, PT_READ_U, PT_WRITE_I, PT_WRITE_D)
2105 (PT_WRITE_U, PT_CONTINUE, PT_STEP, PT_KILL): Remove defines.
2106 (attach): Don't define PT_ATTACH.
2107 (detach): Don't define PT_DETACH.
2108 * Makefile.in (gdb_ptrace_h): New variable.
2109 (infptrace.o): Update dependencies.
2110
2111 2004-08-16 Mark Kettenis <kettenis@gnu.org>
2112
2113 * inferior.h (PTRACE_ARG3_TYPE): Define as PTRACE_TYPE_ARG3
2114 instead of `int' if not already defined.
2115 (call_ptrace): Revert change that replaced PTRACE_ARG3_TYPE with
2116 PTRACE_TYPE_ARG3.
2117 * infptrace.c (call_ptrace): Revert change that replaced
2118 PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
2119
2120 2004-08-15 Mark Kettenis <kettenis@gnu.org>
2121
2122 * config/i386/nm-linux64.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
2123 Remove defines.
2124
2125 * linux-nat.c (kill_inferior): Add missing third and fourth
2126 arguments to ptrace call. Don't use PTRACE_ARG3_TYPE.
2127
2128 * infptrace.c (child_xfer_memory): Replace PTRACE_XFER_TYPE with
2129 PTRACE_TYPE_RET.
2130
2131 * proc-why.c (proc_prettyfprint_why): Fix format string.
2132
2133 * solib-osf.c (osf_current_sos): Remove unsused label.
2134
2135 * configure.in: Add <ncurses/ncurses.h> to the list of possible
2136 curses headers.
2137 * configure, config.in: Regenerate.
2138 * gdb_curses.h [HAVE_NCURSES_NCURSES_H]: Include
2139 <ncurses/ncurses.h>.
2140
2141 * config/nm-bsd.h (PTRACE_ARG3_TYPE): Remove define.
2142 * config/nm-nbsd.h: Update copyright year.
2143 (PTRACE_ARG3_TYPE): Remove define.
2144
2145 * sparc-nat.c (fetch_inferior_registers)
2146 (store_inferior_registers, sparc_xfer_wcookie):
2147 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
2148
2149 * alphabsd-nat.c (fetch_inferior_registers):
2150 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
2151 PTRACE_TYPE_ARG3.
2152 * amd64bsd-nat.c (fetch_inferior_registers)
2153 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
2154 PTRACE_TYPE_ARG3.
2155 * armnbsd-nat.c: Update copyright year.
2156 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs)
2157 (store_register, store_regs, store_fp_register, store_fp_regs):
2158 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
2159 * hppabsd-nat.c (fetch_inferior_registers)
2160 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
2161 PTRACE_TYPE_ARG3.
2162 * i386bsd-nat.c (fetch_inferior_registers)
2163 (store_inferior_registers, i386bsd_dr_set, i386bsd_dr_get_status):
2164 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
2165 * m68kbsd-nat.c (fetch_inferior_registers)
2166 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
2167 PTRACE_TYPE_ARG3.
2168 * m88kbsd-nat.c (fetch_inferior_registers)
2169 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
2170 PTRACE_TYPE_ARG3.
2171 * mipsnbsd-nat.c: Update copyright year.
2172 (fetch_inferior_registers, store_inferior_registers):
2173 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
2174 * ns32knbsd-nat.c: Update copyright year.
2175 (fetch_inferior_registers, store_inferior_registers):
2176 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
2177 * ppcnbsd-nat.c (fetch_inferior_registers):
2178 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
2179 PTRACE_TYPE_ARG3.
2180 * ppcobsd-nat.c (fetch_inferior_registers):
2181 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
2182 PTRACE_TYPE_ARG3.
2183 * shnbsd-nat.c: Update copyright year.
2184 (fetch_inferior_registers, store_inferior_registers):
2185 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
2186 * vaxbsd-nat.c (fetch_inferior_registers)
2187 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
2188 PTRACE_TYPE_ARG3.
2189
2190 * inferior.h (call_ptrace): Replace PTRACE_ARG3_TYPE with
2191 PTRACE_TYPE_ARG3.
2192 * infptrace.c (call_ptrace, child_resume, attach, detach)
2193 (U_REGS_OFFSET, fetch_register, store_register, child_xfer_memory)
2194 (udot_info): Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
2195 * inftarg.c (ptrace_me): Replace PTRACE_ARG3_TYPE with
2196 PTRACE_TYPE_ARG3.
2197
2198 2004-08-14 Mark Kettenis <kettenis@gnu.org>
2199
2200 * defs.h: Remove out-of-date comment.
2201 [!FCLOSE_PROVIDED] (fclose): Remove prototype.
2202 [!GETENV_PROVIDED] (getenv): Remove prototype.
2203
2204 * standalone.c: Remove file.
2205 * Makefile.in (standalone.o): Remove dependency.
2206
2207 * i386-linux-nat.c (dummy_sse_values): Remove function and
2208 prototype.
2209 (i386_linux_dr_get): Fix typo in comment.
2210 (LINUX_SYSCALL_REGNUM): Define as I386_EAX_REGNUM.
2211
2212 * config/i386/obsd64.mt (TDEPFILES): Add i386obsd-tdep.o.
2213
2214 * defs.h (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
2215 from declaration.
2216 * top.c (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
2217 from definition.
2218
2219 2004-08-13 Mark Kettenis <kettenis@gnu.org>
2220
2221 * configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
2222 parenthesis in definition.
2223 * configure: Regenerated.
2224
2225 2004-08-12 Michael Chastain <mec.gnu@mindspring.com>
2226
2227 * PROBLEMS: Mention build/1411.
2228
2229 2004-08-09 Robert Millan <robertmh@gnu.org>
2230
2231 Committed by Nathanael Nerode.
2232 * configure.host: Match kfreebsd*-gnu and knetbsd*-gnu.
2233 * configure.tgt: Match kfreebsd*-gnu and knetbsd*-gnu.
2234
2235 2004-08-12 Andrew Cagney <cagney@gnu.org>
2236
2237 * NEWS: Mention fixes in GDB 6.2.1.
2238 * PROBLEMS: Remove mention of mips-irix.
2239
2240 2004-08-11 Joel Brobecker <brobecker@gnat.com>
2241
2242 * config/powerpc/xm-aix.h: Delete.
2243 * config/powerpc/aix.mh (MH_FILE): Remove.
2244 * config/powerpc/aix432.mh (MH_FILE): Remove.
2245
2246 2004-08-11 Joel Brobecker <brobecker@gnat.com>
2247
2248 * config/powerpc/aix.mh: Remove obsolete comment.
2249 * config/powerpc/aix432.mh: Likewise.
2250
2251 2004-08-11 Joel Brobecker <brobecker@gnat.com>
2252
2253 * config/powerpc/xm-aix.h (UINT_MAX): Remove undef.
2254
2255 2004-08-11 Joel Brobecker <brobecker@gnat.com>
2256
2257 * config/rs6000/xm-aix4.h: Remove "config/xm-aix4.h" include,
2258 this file is now empty.
2259 * config/xm-aix4.h: Remove, this file is no longer included
2260 anywhere.
2261
2262 2004-08-11 Joel Brobecker <brobecker@gnat.com>
2263
2264 * config/powerpc/xm-aix.h: Remove "config/xm-aix4.h" include,
2265 that file is now empty.
2266 (termdef): Remove prototype, function no longer used.
2267
2268 2004-08-11 Joel Brobecker <brobecker@gnat.com>
2269
2270 * doc/gdbint.texinfo (Host Definition): Remove documentation
2271 for USE_O_NOCTTY, no longer used.
2272 * config/xm-aix4.h (USE_O_NOCTTY): Remove, no longer used.
2273 * config/rs6000/xm-rs6000.h (USE_O_NOCTTY): Likewise.
2274
2275 2004-08-11 Joel Brobecker <brobecker@gnat.com>
2276
2277 * config/xm-aix4.h (FIVE_ARG_PTRACE): Remove, no longer used.
2278 * config/pa/nm-hppah.h (FIVE_ARG_PTRACE): Likewise.
2279 * config/rs6000/xm-rs6000.h (FIVE_ARG_PTRACE): Likewise.
2280
2281 2004-08-11 Mark Kettenis <kettenis@gnu.org>
2282
2283 * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5
2284 instead of FIVE_ARG_PTRACE.
2285
2286 * inflow.c (O_NOCTTY): Define to zero if not already defined.
2287 (new_tty): Use O_NOCTTY unconditionally.
2288
2289 2004-08-10 Mark Kettenis <kettenis@gnu.org>
2290
2291 * procfs.c (procfs_detach): Cleanup. Print process ID, not LWP
2292 ID. Use comma in output. Use gdb_flush on gdb_stdout instead of
2293 fflush on stdout.
2294
2295 2004-08-10 Joel Brobecker <brobecker@gnat.com>
2296
2297 * xcoff_symfile_finish: Replace last call to xmfree by call
2298 to xfree.
2299
2300 2004-08-10 Andrew Cagney <cagney@gnu.org>
2301
2302 * main.c (captured_main): Delete call to init_malloc.
2303 * defs.h (init_malloc): Delete declaration.
2304 * utils.c (mmalloc, mrealloc, mcalloc, mfree)
2305 (init_malloc): Delete functions.
2306
2307 * defs.h (xmfree): Delete.
2308 * utils.c (xmfree): Delete function.
2309 (xfree): Inline calls to xmfree and mfree.
2310 * symmisc.c (free_symtab_block, free_symtab): Use xfree.
2311 * symfile.c (reread_symbols, init_psymbol_list): Ditto.
2312 * source.c (forget_cached_source_info, find_and_open_source): Ditto.
2313 * somread.c (som_symfile_finish): Ditto.
2314 * objfiles.c (allocate_objfile, free_objfile):
2315 * nlmread.c (nlm_symfile_finish): Ditto.
2316 * hpread.c (hpread_symfile_finish): Ditto.
2317 * elfread.c (free_elfinfo, elf_symfile_finish): Ditto.
2318 * dbxread.c (dbx_symfile_finish, free_bincl_list): Ditto.
2319 * coffread.c (coff_symfile_finish): Ditto.
2320
2321 * defs.h (xmcalloc): Delete declaration.
2322 * utils.c (xmcalloc): Delete.
2323 (xcalloc): Inline calls to xmcalloc and mcalloc.
2324 * ada-lang.c (_initialize_ada_language): Use htab_create_alloc,
2325 xcalloc and xfree.
2326 * symtab.c (create_demangled_names_hash): Ditto.
2327
2328 * defs.h (xmrealloc): Delete.
2329 * utils.c (xmrealloc): Delete.
2330 (xrealloc): Inline calls to xmrealloc, mmalloc and mrealloc.
2331 * symmisc.c (extend_psymbol_list): Use xrealloc.
2332 * source.c (find_source_lines): Ditto.
2333 * hpread.c (hpread_lookup_type): Ditto.
2334 * dbxread.c (add_bincl_to_list): Ditto.
2335
2336 * utils.c (xmmalloc): Delete.
2337 (xmalloc): Inline xmmalloc and mmalloc calls.
2338 (msavestring): Use xmalloc.
2339 * defs.h (xmmalloc): Delete declaration.
2340 * xcoffread.c (xcoff_symfile_init): Use xmalloc instead of
2341 xmmalloc.
2342 * symmisc.c (extend_psymbol_list): Ditto.
2343 * symfile.c (init_psymbol_list): Ditto.
2344 * source.c (find_source_lines): Ditto.
2345 * hpread.c (hpread_symfile_init, hpread_lookup_type): Ditto.
2346 * elfread.c (elf_symtab_read): Ditto.
2347 * dbxread.c (dbx_symfile_init, init_bincl_list): Ditto.
2348 * coffread.c (coff_symfile_init): Ditto.
2349
2350 2004-08-10 David Carlton <carlton@bactrian.org>
2351
2352 * MAINTAINERS: Remove David Carlton from c++ testsuite
2353 maintainers.
2354
2355 2004-08-10 Jerome Guitton <guitton@gnat.com>
2356
2357 * symfile.c (symbol_file_add_with_addrs_or_offsets): Make sure to
2358 print a line feed before the prompt.
2359
2360 2004-08-10 Mark Kettenis <kettenis@gnu.org>
2361
2362 * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP.
2363
2364 2004-08-09 Joel Brobecker <brobecker@gnat.com>
2365
2366 General cleanup of the AIX xm include file:
2367 * config/xm-aix4.h (fd_set): Remove undefine.
2368 Remove include of <sys/select.h>.
2369 (HAVE_TERMIO): Remove define.
2370 (USG): Likewise.
2371 (NULL): Remove redefine.
2372 (alloca): Remove #pragma.
2373 (vfork): Remove define.
2374 (termdef): Remove.
2375 (SIGWINCH_HANDLER): Remove.
2376 (SIGWINCH_HANDLER_BODY): Remove.
2377
2378 2004-08-09 Mark Kettenis <kettenis@gnu.org>
2379
2380 * configure.tgt (x86_64-*-openbsd*): Set gdb_osabi to
2381 GDB_OSABI_OPENBSD_ELF.
2382
2383 2004-08-07 Robert Millan <robertmh@gnu.org>
2384
2385 * bsd-kvm.c: Check for nlist.h before including it.
2386
2387 2004-08-09 Mark Kettenis <kettenis@gnu.org>
2388
2389 * i386bsd-nat.c (_initialize_i386bsd_nat): Remove `struct
2390 sigcontext' offset consistency checks for ancient BSD.
2391
2392 * gdb_curses.h [HAVE_CURSESX_H]: Include <cursesX.h>
2393
2394 * configure.in: Check for <sys/types.h>. Check return and
2395 argument types of ptrace.
2396 * configure, config.in: Regenerate.
2397
2398 2004-08-09 Jim Blandy <jimb@redhat.com>
2399
2400 * rs6000-tdep.c (set_sim_regno, init_sim_regno_table,
2401 rs6000_register_sim_regno): Doc fixes.
2402
2403 2004-08-08 Joel Brobecker <brobecker@gnat.com>
2404
2405 * mips-tdep.c: Include "floatformat.h".
2406 (n32n64_floatformat_always_valid): New function.
2407 (floatformat_n32n64_long_double_big): New constant.
2408 (mips_gdbarch_init): Set size and format of long double
2409 for N32 and N64 ABIs.
2410 * Makefile.in (mips-tdep.o): Update dependencies.
2411
2412 2004-08-08 Andrew Cagney <cagney@gnu.org>
2413
2414 * gdbarch.sh: Delete "fmt" and "attrib" fields. Always use %s to
2415 print. Improve script's error messages.
2416 * gdbarch.h: Re-generate.
2417
2418 * gdbarch.sh (pformat): New function.
2419 (float_format, double_format, long_double_format): List with bit
2420 members. Use pformat when printing.
2421 * gdbarch.c, gdbarch.h: Re-generate.
2422
2423 2004-08-08 Nathan J. Williams <nathanw@wasabisystems.com>
2424
2425 * ppcnbsd-nat.c: Include <machine/frame.h>, <machine/pcb.h>,
2426 "gdbcore.h", "regcache.h", and "bsd-kvm.h".
2427 (ppcnbsd_supply_pcb): New function.
2428 (_initialize_ppcnbsd_nat): New prototype and function.
2429 * config/powerpc/nbsd.mh (NATDEPFILES): Add bsd-kvm.o.
2430 (LOADLIBES): New variable.
2431 * Makefile.in (ppcnbsd-nat.o): Update dependencies.
2432
2433 2004-08-08 Andrew Cagney <cagney@gnu.org>
2434
2435 * gdbtypes.c (builtin_type_arm_ext, builtin_type_ieee_single)
2436 (builtin_type_ieee_double, builtin_type_ia64_quad)
2437 (builtin_type_ia64_spill, _initialize_gdbtypes): Add tables of
2438 BE/LE floating-point types.
2439 * gdbtypes.h (builtin_type_arm_ext, builtin_type_ieee_single)
2440 (builtin_type_ieee_double, builtin_type_ia64_quad)
2441 (builtin_type_ia64_spill): Declare.
2442 * doublest.c (_initialize_doublest, floatformat_ieee_single)
2443 (floatformat_ieee_double, floatformat_arm_ext)
2444 (floatformat_ia64_spill, floatformat_ia64_quad): Add tables
2445 of LE/BE floatformats.
2446 * doublest.h: (struct floatformat, floatformat_ieee_single)
2447 (floatformat_ieee_double, floatformat_arm_ext)
2448 (floatformat_ia64_spill, floatformat_ia64_quad): Declare.
2449
2450 2004-08-08 Mark Kettenis <kettenis@gnu.org>
2451
2452 * i386gnu-nat.c (gnu_store_registers): Fix typo.
2453
2454 * i386gnu-nat.c (gnu_store_registers): Use regcache_raw_collect
2455 instead of regcache_raw_supply when storing the registers.
2456
2457 * i386gnu-nat.c: Update copyright year.
2458 (gnu_store_registers): Don't use deprecated_registers and
2459 deprecated_registers_valid. Use regcache_valid_p and
2460 regcache_raw_supply instead.
2461
2462 * vax-tdep.c (vax_frame_this_id): Use frame_func_unwind instead of
2463 frame_pc_unwind.
2464
2465 * procfs.c (procfs_pid_to_str): Remove redundant and unused
2466 variables. Incapitalized "process".
2467
2468 * configure.in: Add cursesX to the list of possible curses libs.
2469 Add cursesX.h to the list of possible curses headers.
2470 * configure, config.in: Regenerate.
2471
2472 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
2473
2474 * configure.in: Test for struct lwp in <sys/lwp.h>.
2475 * bsd-kvm.c (bsd_kvm_proc_cmd): If HAVE_STRUCT_LWP is defined, use
2476 the offset of l_addr in struct lwp.
2477
2478 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
2479
2480 * bsd-kvm.c: Include "gdbcore.h"
2481 (bsd_kvm_open): Use get_exec_file() to set 'execfile'.
2482
2483 2004-08-07 Andrew Cagney <cagney@gnu.org>
2484
2485 * gdbtypes.c (build_flt, build_complex): New functions.
2486 (gdbtypes_post_init): Use.
2487
2488 * doublest.c (floatformat_from_length): Fix tipo, "*" not "&".
2489
2490 * gdbtypes.c (_initialize_gdbtypes): Do not swap builtin_type_int8
2491 through to builtin_type_uint128.
2492
2493 * c-exp.y: Use builtin_type function to obtain builtin types.
2494
2495 * gdbtypes.h (struct builtin_type): Delete builtin_int0 through to
2496 builtin_uint128.
2497 * gdbtypes.c (gdbtypes_post_init): Update.
2498 (build_gdbtypes): Move initialization of builtin_type_int0
2499 through to builtin_type_uint128 from here ...
2500 (_initialize_gdbtypes): ... to here.
2501 * d10v-tdep.c (d10v_register_type): Update.
2502
2503 * doublest.c: Update copyright.
2504 (floatformat_from_length): Call error when floatformat is NULL.
2505 (extract_floating_by_length): Remove NULL fmt check.
2506 (store_floating_by_length): Ditto.
2507
2508 2004-08-07 Andrew Cagney <cagney@gnu.org>
2509
2510 * regcache.c (regcache_raw_read): For the moment, #ifdef assert
2511 that the register is valid.
2512
2513 2004-08-05 Mark Kettenis <kettenis@chello.nl>
2514
2515 * i386-linux-tdep.c (i386_linux_sigtramp_start)
2516 (i386_linux_rt_sigtramp_start): Change argument from CORE_ADDR to
2517 struct frame_info *. Use safe_frame_unwind_memory instead of
2518 deprecated_read_memory_nobpt.
2519 (i386_linux_sigtramp_p, i386_linux_sigcontext_addr): Adjust for
2520 changed signature of i386_linux_sigtramp_start and
2521 i386_linux_rt_sigtramp_start.
2522
2523 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Change argument from
2524 CORE_ADDR to struct frame_info *. Use safe_frame_unwind_memory
2525 instead of deprecated_read_memory_nobpt.
2526 (i386nbsd_sigtramp_p): Adjust for changed signature of
2527 i386nbsd_sigtramp_offset.
2528
2529 * i386obsd-tdep.c (i386obsd_sigtramp_p): Use
2530 safe_frame_unwind_memory instead of target_read_memory.
2531
2532 * infptrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
2533 !NO_SYS_FILE.
2534 [KERNEL_U_ADDR_BSD]: Don't include <a.out.h>.
2535 [KERNEL_U_ADDR_BSD] (kernel_u_addr): Remove variable.
2536 (_initialize_kernel_u_addr): Remove prototype and function.
2537 * infttrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
2538 !NO_SYS_FILE.
2539 * xcoffread.c: Likewise.
2540
2541 2004-08-06 Mark Kettenis <kettenis@gnu.org>
2542
2543 * vax-nat.c: New file.
2544 * vaxbsd-nat.c: Tweak comment.
2545 * Makefile.in (ALLDEPFILES): Add vax-nat.c, vaxbsd-nat.c and
2546 vaxnbsd-tdep.c.
2547 (vax-nat.o): New dependency.
2548 * configure.host (vax-*-bsd*, vax-*-ultrix*): Set gdb_host to vax.
2549 (vax-*-ultrix2*): Remove.
2550 * config/vax/vax.mh: New file.
2551 * config/vax/nm-vax.h (vax_kernel_u_addr): New extern declaration.
2552 (KERNEL_U_ADDR): Define as vax_kernel_u_addr.
2553 (vax_register_u_addr): New prototype.
2554 (REGISTER_U_ADDR): Define using vax_register_u_addr.
2555 * config/vax/vaxult2.mh: Remove file.
2556 * config/vax/vaxult.mh: Remove file.
2557 * config/vax/vaxbsd.mh: Remove file.
2558 * config/vax/vax.mt (TM_FILE): Remove.
2559 * config/vax/tm-vaxbsd.h: Remove file.
2560
2561 2004-08-06 Joel Brobecker <brobecker@gnat.com>
2562
2563 * aix-thread.c (get_signaled_thread): New function.
2564 (iter_trap): Delete, no longer used.
2565 (iter_tid): New function.
2566 (pd_update): Find the thread that received the SIGTRAP signal
2567 by first locating the kernel thread, and then finding its
2568 associated thread.
2569
2570 2004-08-06 Ulrich Weigand <uweigand@de.ibm.com>
2571
2572 * lin-lwp.c (child_wait): Continue inferior after processing
2573 PTRACE_EVENT_CLONE event.
2574
2575 2004-08-05 Nathanael Nerode <neroden@gcc.gnu.org>
2576
2577 * MAINTAINERS: Add self to Write-After-Approval.
2578
2579 2004-08-05 Jeff Johnston <jjohnstn@redhat.com>
2580
2581 * libunwind-frame.c (LIBUNWIND_SO): Change to be of form:
2582 libunwind-xxxx.so" where xxxx is UNW_TARGET.
2583
2584 2004-08-05 Andrew Cagney <cagney@gnu.org>
2585
2586 * config/xm-sysv4.h: Delete file.
2587 * config/mips/xm-irix5.h: Delete file.
2588 * config/mips/irix6.mh (XM_FILE, XM_CLIBS): Delete.
2589 * config/mips/irix5.mh (XM_FILE, XM_CLIBS): Delete.
2590 * config/ia64/xm-aix.h: Delete file.
2591 * config/ia64/aix.mh (XM_FILE): Delete.
2592 * config/pa/xm-hppah.h: Delete file.
2593 * config/pa/hpux11w.mh (XM_FILE): Delete.
2594 * config/pa/hpux11.mh (XM_FILE): Delete.
2595 * config/pa/hpux1020.mh (XM_FILE): Delete.
2596 * config/pa/hppahpux.mh (XM_FILE): Delete.
2597
2598 * config/alpha/xm-alphalinux.h: Delete file.
2599 * config/djgpp/fnchange.lst: Do not fix xm-alphalinux.h.
2600 * config/alpha/alpha-linux.mh (XM_FILE, LOADLIBES): Delete.
2601 * config/alpha/xm-alphaosf.h: Delete file.
2602 * config/djgpp/fnchange.lst: Do not fix xm-alphaosf.h.
2603 * config/alpha/alpha-osf3.mh (XM_FILE): Delete.
2604 * config/alpha/alpha-osf2.mh (XM_FILE): Delete.
2605 * config/alpha/alpha-osf1.mh (XM_FILE): Delete.
2606
2607 * config/i386/xm-i386v.h: Delete file.
2608 * config/i386/i386v.mh (XM_FILE, XM_CLIBS): Delete.
2609 * config/i386/i386sco5.mh (XM_FILE, XM_CLIBS): Delete.
2610 * config/i386/xm-i386sco.h: Delete file.
2611 * config/i386/i386sco4.mh (XM_FILE, XM_CLIBS, MH_CFLAGS): Delete.
2612 * config/i386/i386sco.mh (XM_FILE, XM_CLIBS, CC): Delete.
2613 * config/i386/xm-i386v4.h: Delete file.
2614 * config/djgpp/fnchange.lst: Do not fix xm-i386v4.h.
2615 * config/i386/ncr3000.mh (CC, CFLAGS, XM_FILE): Delete.
2616 * config/i386/i386v42mp.mh (XM_FILE, XM_CLIBS): Delete.
2617 * config/i386/i386v4.mh (XM_FILE, XM_CLIBS): Delete.
2618
2619 * config/vax/xm-vax.h: Delete file.
2620 * Makefile.in (xm-vaxult.h, xm-vaxbsd.h): Delete.
2621 * config/vax/xm-vaxult2.h: Delete file.
2622 * config/djgpp/fnchange.lst: Do not fix xm-vaxult2.h.
2623 * config/vax/vaxult2.mh (XM_FILE): Delete.
2624 * config/vax/xm-vaxult.h: Delete file.
2625 * config/vax/vaxult.mh (XM_FILE): Delete.
2626 * config/vax/xm-vaxbsd.h: Delete file.
2627 * config/vax/vaxbsd.mh (XM_FILE): Delete.
2628
2629 * gdbarch.sh (deprecated_frame_saved_pc): Delete.
2630 * gdbarch.h, gdbarch.c: Re-generate.
2631 * regcache.c (deprecated_read_fp, deprecated_write_sp): Delete.
2632 * inferior.h (deprecated_read_fp, deprecated_write_sp): Delete.
2633 * frame.h: Delete deprecated_read_fp from comments.
2634 * arch-utils.c (deprecated_init_frame_pc_default): Delete.
2635 * arch-utils.h (deprecated_init_frame_pc_default): Delete.
2636
2637 2004-08-04 Mark Kettenis <kettenis@gnu.org>
2638
2639 * i386obsd-tdep.c (i386obsd_sigtramp_p): Adjust for changed signal
2640 trampoline in OpenBSD 3.5-current.
2641
2642 * i387-tdep.c (i387_supply_fsave): Provide summy values for the
2643 SSE registers.
2644
2645 * Makefile.in: Remove embedded page breaks.
2646
2647 2004-08-04 Jim Blandy <jimb@redhat.com>
2648
2649 * regcache.c (regcache_raw_read): Assert that, after calling
2650 target_fetch_registers, the register we're reading is cached.
2651
2652 * ppc-linux-nat.c (fetch_register): Replace 'gdb_assert (0)' with
2653 a call to 'internal_error', with a more helpful error message.
2654 * rs6000-tdep.c (e500_pseudo_register_read,
2655 e500_pseudo_register_write, rs6000_store_return_value): Same.
2656
2657 2004-08-04 Andrew Cagney <cagney@gnu.org>
2658
2659 * Makefile.in: Update dependencies.
2660
2661 2004-08-04 Jim Blandy <jimb@redhat.com>
2662
2663 Change the layout of the PowerPC E500 raw register cache to allow
2664 the lower 32-bit halves of the GPRS to be their own raw registers,
2665 not pseudoregisters.
2666 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_gprs_pseudo_p flag;
2667 add ppc_ev0_upper_regnum flag.
2668 * rs6000-tdep.c: #include "reggroups.h".
2669 (spe_register_p): Recognize the ev upper half registers as SPE
2670 registers.
2671 (init_sim_regno_table): Build gdb->sim mappings for the upper-half
2672 registers.
2673 (e500_move_ev_register): New function.
2674 (e500_pseudo_register_read, e500_pseudo_register_write): The 'ev'
2675 vector registers are the pseudo-registers now, formed by splicing
2676 together the gprs and the upper-half registers.
2677 (e500_register_reggroup_p): New function.
2678 (P): Macro deleted.
2679 (P8, A4): New macro.
2680 (PPC_EV_REGS, PPC_GPRS_PSEUDO_REGS): Macros deleted.
2681 (PPC_SPE_GP_REGS, PPC_SPE_UPPER_GP_REGS, PPC_EV_PSEUDO_REGS): New
2682 macros.
2683 (registers_e500): Rearrange register set so that the raw register
2684 set contains 32-bit GPRs and upper-half registers, and the SPE
2685 vector registers become pseudo-registers.
2686 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gprs_pseudo_p;
2687 it has been deleted. Initialize ppc_ev0_upper_regnum. Many other
2688 register numbers are now the same for the E500 as they are for
2689 other PowerPC variants. Register e500_register_reggroup_p as the
2690 register group function for the E500.
2691 * Makefile.in (rs6000-tdep.o): Update dependencies.
2692
2693 Adapt PPC E500 native support to the new raw regcache layout.
2694 * ppc-linux-nat.c (struct gdb_evrregset_t): Doc fixes.
2695 (read_spliced_spe_reg, write_spliced_spe_reg): Deleted.
2696 (fetch_spe_register, store_spe_register): Handle fetching/storing
2697 all the SPE registers at once, if regno == -1. These now take
2698 over the job of fetch_spe_registers and store_spe_registers.
2699 (fetch_spe_registers, store_spe_registers): Deleted.
2700 (fetch_ppc_registers, store_ppc_registers): Fetch/store gprs
2701 unconditionally; they're always raw. Fetch/store SPE upper half
2702 registers, if present, instead of ev registers.
2703 (fetch_register, store_register): Remove sanity checks: gprs are
2704 never pseudo-registers now, so we never need to even mention any
2705 registers that are ever pseudoregisters.
2706
2707 Use a fixed register numbering when communicating with the PowerPC
2708 simulator.
2709 * ppc-tdep.h (struct gdbarch_tdep): New member: 'sim_regno'.
2710 * rs6000-tdep.c: #include "sim-regno.h" and "gdb/sim-ppc.h".
2711 (set_sim_regno, init_sim_regno_table, rs6000_register_sim_regno):
2712 New functions.
2713 (rs6000_gdbarch_init): Register rs6000_register_sim_regno. Call
2714 init_sim_regno_table.
2715 * Makefile.in (gdb_sim_ppc_h): New variable.
2716 (rs6000-tdep.o): Update dependencies.
2717
2718 2004-08-02 Andrew Cagney <cagney@gnu.org>
2719
2720 * cris-tdep.c (cris_register_size): Restore function, still used
2721 locally.
2722
2723 * gdbarch.sh (deprecated_target_read_fp)
2724 (deprecated_frame_locals_address, deprecated_frame_args_address)
2725 (deprecated_frame_chain_valid, deprecated_frame_chain)
2726 (deprecated_init_extra_frame_info, deprecated_pop_frame)
2727 (deprecated_frame_init_saved_regs, deprecated_get_saved_register)
2728 (deprecated_do_registers_info, deprecated_init_frame_pc): Delete.
2729 * gdbarch.h, gdbarch.c: Re-generate.
2730 * regcache.c (deprecated_read_fp): Do not call
2731 DEPRECATED_TARGET_READ_FP_P.
2732 * infcmd.c (default_print_registers_info): Do not call
2733 DEPRECATED_DO_REGISTERS_INFO.
2734 * frame-base.c (default_frame_locals_address): Do not call
2735 DEPRECATED_FRAME_LOCALS_ADDRESS.
2736 (default_frame_args_address): Do not call
2737 DEPRECATED_FRAME_ARGS_ADDRESS.
2738
2739 * gdbarch.sh (deprecated_register_raw_size)
2740 (deprecated_register_virtual_size:int): Delete.
2741 * gdbarch.h, gdbarch.c: Re-generate.
2742 * cris-tdep.c (cris_register_size): Delete.
2743 (cris_gdbarch_init): Update.
2744 * alpha-tdep.c (alpha_register_raw_size)
2745 (alpha_register_virtual_size): Delete.
2746 (alpha_gdbarch_init): Update.
2747
2748 * gdbarch.sh (deprecated_register_virtual_type)
2749 (deprecated_save_dummy_frame_tos, deprecated_push_return_address)
2750 (deprecated_dummy_write_sp): Delete.
2751 * gdbarch.h, gdbarch.c: Re-generate.
2752
2753 * gdbarch.sh (deprecated_register_bytes): Delete.
2754 * gdbarch.h, gdbarch.c: Re-generate.
2755 * regcache.c (deprecated_register_bytes): New function.
2756 * regcache.h (deprecated_register_bytes): Declare.
2757 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2758 * v850-tdep.c (v850_gdbarch_init): Update.
2759 * sh64-tdep.c (sh64_gdbarch_init): Update.
2760 * ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
2761 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2762 * mcore-tdep.c (mcore_gdbarch_init): Update.
2763 * cris-tdep.c (cris_gdbarch_init): Update.
2764 * arm-tdep.c (arm_gdbarch_init): Update.
2765 * remote.c (init_remote_state): Update.
2766 * remote-vx.c (vx_prepare_to_store): Update.
2767 * remote-sds.c (sds_fetch_registers, sds_prepare_to_store): Update.
2768 * irix5-nat.c (fetch_core_registers): Update.
2769 * cris-tdep.c (cris_register_bytes_ok): Update.
2770 * config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
2771
2772 * mips-tdep.c (mips_gdbarch_init, mips_insn16_frame_cache)
2773 (mips_insn16_frame_this_id, mips_insn16_frame_prev_register)
2774 (mips_insn16_frame_unwind, mips_insn16_frame_sniffer)
2775 (mips_insn16_frame_base_address, mips_insn16_frame_base)
2776 (mips_insn16_frame_base_sniffer, mips_insn32_frame_cache)
2777 (mips_insn32_frame_this_id, mips_insn32_frame_prev_register)
2778 (mips_insn32_frame_unwind, mips_insn32_frame_sniffer)
2779 (mips_insn32_frame_base_address, mips_insn32_frame_base)
2780 (mips_insn32_frame_base_sniffer): Replace mips16 / mips32 prefix
2781 with mips_insn16 and mips_insn32.
2782
2783 Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
2784 * rs6000-tdep.c (rs6000_push_dummy_call)
2785 (rs6000_extract_return_value): Use register_size.
2786 * xstormy16-tdep.c (xstormy16_get_saved_register)
2787 (xstormy16_extract_return_value): Ditto.
2788 * valops.c (value_assign): Ditto.
2789 * v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
2790 * v850-tdep.c (v850_extract_return_value): Ditto.
2791 * tracepoint.c (collect_symbol): Ditto.
2792 * target.c (debug_print_register): Ditto.
2793 * stack.c (frame_info): Ditto.
2794 * rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
2795 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
2796 * remote.c (struct packet_reg, remote_wait, remote_async_wait)
2797 (store_register_using_P): Ditto.
2798 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
2799 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
2800 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
2801 * remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
2802 * regcache.c (deprecated_read_register_bytes)
2803 (deprecated_write_register_bytes, read_register)
2804 (write_register): Ditto.
2805 * ppc-linux-nat.c (fetch_altivec_register, fetch_register)
2806 (supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
2807 * monitor.c (monitor_supply_register, monitor_fetch_register)
2808 (monitor_store_register): Ditto.
2809 * mn10300-tdep.c (mn10300_pop_frame_regular)
2810 (mn10300_print_register): Ditto.
2811 * mipsv4-nat.c (fill_fpregset): Ditto.
2812 * mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
2813 (mips64_fill_fpregset): Ditto.
2814 * mi/mi-main.c (register_changed_p, get_register)
2815 (mi_cmd_data_write_register_values): Ditto.
2816 * lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
2817 * irix5-nat.c (fill_gregset, fetch_core_registers):
2818 * infrun.c (write_inferior_status_register): Ditto.
2819 * infptrace.c (fetch_register, store_register): Ditto.
2820 * infcmd.c (default_print_registers_info): Ditto.
2821 * ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
2822 * ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
2823 * i386gnu-nat.c (gnu_store_registers, fill): Ditto.
2824 * hpux-thread.c (hpux_thread_fetch_registers)
2825 (hpux_thread_store_registers): Ditto.
2826 * hppah-nat.c (store_inferior_registers, fetch_register):
2827 * findvar.c (value_from_register): Ditto.
2828 * dve3900-rom.c (fetch_bitmapped_register):
2829 * cris-tdep.c (cris_gdbarch_init): Ditto.
2830 * alpha-tdep.h: Ditto.
2831 * aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
2832
2833 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_SIZE and
2834 DEPRECATED_REGISTER_RAW_SIZE from comments.
2835 * regcache.c (init_regcache_descr, regcache_dump): Do not check or
2836 use DEPRECATED_REGISTER_VIRTUAL_SIZE and
2837 DEPRECATED_REGISTER_RAW_SIZE.
2838 * findvar.c (value_of_register): Simplify by assuming that the
2839 registers raw and virtual sizes are identical.
2840 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_TYPE in
2841 comment.
2842 * arch-utils.c (generic_register_size): Simplify by assuming
2843 register_type.
2844
2845 * regcache.c (legacy_read_register_gen, real_register)
2846 (legacy_write_register_gen): Delete, not used.
2847
2848 * regcache.c (struct regcache_descr): Delete legacy_p.
2849 (init_legacy_regcache_descr): Delete function.
2850 (init_regcache_descr): Delete call to init_legacy_regcache_descr.
2851 Do not use deprecated register functions.
2852 (regcache_raw_read, deprecated_write_register_gen):
2853 (deprecated_read_register_gen, regcache_raw_write): Delete code
2854 predicated on legacy_p.
2855 (register_size): Delete check against register raw size.
2856
2857 * cris-tdep.c (cris_register_type): Replace
2858 cris_register_virtual_type.
2859 (cris_gdbarch_init): Update, set register_type.
2860
2861 * gdbarch.sh (deprecated_frameless_function_invocation): Delete.
2862 * gdbarch.h, gdbarch.c: Re-generate.
2863 * arm-tdep.c (arm_frameless_function_invocation): Delete.
2864 (arm_gdbarch_init) Do not set frameless function invocation.
2865 * frame.h (legacy_frameless_look_for_prologue): Delete declaration.
2866 * blockframe.c (legacy_frameless_look_for_prologue): Delete function.
2867 * frv-tdep.c (frv_frameless_function_invocation): Delete.
2868 (frv_gdbarch_init): Do not set frameless function invocation.
2869 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
2870 * sh-tdep.c (sh_gdbarch_init): Ditto.
2871 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
2872 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
2873 * avr-tdep.c (avr_gdbarch_init): Ditto.
2874
2875 * blockframe.c (legacy_frame_chain_valid): Delete function.
2876
2877 * dummy-frame.c (struct dummy_frame): Delete call_lo, call_hi, top
2878 and pc. Update comments.
2879 (pc_in_dummy_frame): Delete function.
2880 (deprecated_pc_in_call_dummy): Inline old pc_in_dummy_frame code,
2881 use the "id".
2882 (dummy_frame_push, dummy_frame_sniffer): Instead of call_lo,
2883 call_hi, top and pc, use the id.
2884 (fprint_dummy_frames): Do not print call_lo, call_hi, top and pc.
2885
2886 * dummy-frame.c: Include "gdb_string.h".
2887 (generic_save_call_dummy_addr, generic_push_dummy_frame)
2888 (generic_save_dummy_frame_tos): Delete.
2889 (dummy_frame_push): New function, replaces above.
2890 * dummy-frame.h: Update copyright.
2891 (dummy_frame_push): Declare.
2892 * frame.h (generic_save_dummy_frame_tos, generic_push_dummy_frame)
2893 (generic_save_call_dummy_addr): Delete declarations.
2894 * infcall.c: Include "dummy-frame.h".
2895 (call_function_by_hand): Add locals caller_regcache,
2896 caller_regcache_cleanup and dummy_id. Replace push_dummy_frame
2897 with call to frame_save_as_regcache plus cleanup. Delete calls to
2898 generic_save_call_dummy_addr and generic_save_dummy_frame_tos.
2899 Move clear_proceed_status to just before the resume, add call to
2900 dummy_frame_push (discard cleanup).
2901 * Makefile.in (infcall.o): Add $(dummy_frame_h).
2902 (dummy-frame.o): Add $(gdb_string_h).
2903
2904 2004-08-01 Andrew Cagney <cagney@gnu.org>
2905
2906 * dummy-frame.h (dummy_frame_unwind): Replace dummy_frame_sniffer.
2907 * frame-unwind.c (frame_unwind_init): Use dummy_frame_unwind.
2908 * dummy-frame.c (find_dummy_frame): Delete.
2909 (struct dummy_frame_cache, dummy_frame_sniffer)
2910 (dummy_frame_prev_register, dummy_frame_this_id)
2911 (dummy_frame_unwinder, dummy_frame_unwind): Re-implement dummy
2912 frame unwinder using a dummy_frame_cache.
2913
2914 2004-08-01 Andrew Cagney <cagney@gnu.org>
2915
2916 * frame.h (frame_save_as_regcache): Declare.
2917 * frame.c (frame_save_as_regcache): New function.
2918 (do_frame_read_register): Replace do_frame_unwind_register.
2919 (frame_pop): Use frame_save_as_regcache.
2920 * dummy-frame.c (generic_push_dummy_frame): Use
2921 frame_save_as_regcache.
2922
2923 2004-08-01 Joel Brobecker <brobecker@gnat.com>
2924
2925 * dwarf2read.c (dwarf_decode_lines): Do not consider the current
2926 file as included until we record the first line in the linetable.
2927
2928 2004-08-01 Andrew Cagney <cagney@gnu.org>
2929
2930 * frame.h (deprecated_pop_dummy_frame)
2931 (deprecated_read_register_dummy)
2932 (deprecated_generic_find_dummy_frame): Delete.
2933 * dummy-frame.c (deprecated_generic_find_dummy_frame)
2934 (deprecated_read_register_dummy)
2935 (deprecated_find_dummy_frame_regcache)
2936 (discard_innermost_dummy)
2937 (deprecated_pop_dummy_frame): Delete.
2938 (dummy_frame_this_id): Simplify.
2939 (struct dummy_frame): Delete "fp" and "sp".
2940 (find_dummy_frame): Simplify.
2941 (generic_push_dummy_frame): Do not set "fp" or "sp".
2942 (fprint_dummy_frames): Do not print "fp" and "sp"
2943
2944 2004-08-01 Mark Kettenis <kettenis@gnu.org>
2945
2946 * i386-tdep.c (I386_MAX_INSN_LEN): New define.
2947 (struct i386_insn): New structure.
2948 (i386_match_insn): New function.
2949 (i386_frame_setup_skip_insns): New variable.
2950 (i386_analyze_frame_setup): Change to use i386_match_insn and the
2951 array i386_frame_setup_insns of instructions that should be
2952 skipped inside the frame setup sequence.
2953
2954 2004-08-01 Andrew Cagney <cagney@gnu.org>
2955
2956 * frame.h (deprecated_frame_xmalloc_with_cleanup)
2957 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
2958 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
2959 * stack.c (frame_info): Delete references to
2960 DEPRECATED_FRAME_INIT_SAVED_REGS and
2961 deprecated_get_frame_saved_regs.
2962 * frame.c (struct frame_info): Delete saved_regs and extra_info.
2963 (frame_pc_unwind): Do not use DEPRECATED_FRAME_SAVED_PC.
2964 (frame_register): Do not use DEPRECATED_GET_SAVED_REGISTER.
2965 (frame_unwind_register_signed)
2966 (frame_unwind_register_unsigned)
2967 (frame_unwind_unsigned_register): Use register_size.
2968 (create_new_frame): Do not use DEPRECATED_INIT_EXTRA_FRAME_INFO.
2969 (deprecated_frame_xmalloc_with_cleanup)
2970 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
2971 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
2972
2973 * sh-tdep.c (sh_gdbarch_init): Disable call to sh64_gdbarch_init.
2974 * config/sh/nbsd.mt (TDEPFILES): Remove sh64-tdep.o.
2975 * config/sh/linux.mt (TDEPFILES): Remove sh64-tdep.o.
2976 * config/sh/embed.mt (TDEPFILES): Remove sh64-tdep.o.
2977
2978 * infcall.c (call_function_by_hand): Do not use
2979 DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP,
2980 DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_TARGET_READ_FP,
2981 DEPRECATED_FP_REGNUM, DEPRECATED_STORE_STRUCT_RETURN, and
2982 DEPRECATED_STACK_ALIGN.
2983
2984 2004-07-30 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
2985
2986 Committed by Andrew Cagney.
2987 * arm-tdep.c: Remove references to add_setshow_cmd_full for apcs32 .
2988
2989 2004-08-01 Andrew Cagney <cagney@gnu.org>
2990
2991 * mips-tdep.c (mips16_frame_cache)
2992 (mips16_frame_this_id, mips16_frame_prev_register)
2993 (mips16_frame_unwind, mips16_frame_sniffer)
2994 (mips16_frame_base_address, mips16_frame_base)
2995 (mips16_frame_base_sniffer, mips32_frame_cache)
2996 (mips32_frame_this_id, mips32_frame_prev_register)
2997 (mips32_frame_unwind, mips32_frame_sniffer)
2998 (mips32_frame_base_address, mips32_frame_base)
2999 (mips32_frame_base_sniffer): Clone the mdebug unwinder into
3000 separate heuristic mips16 and mips32 unwinders.
3001 (mips_stub_frame_cache, mips_stub_frame_this_id)
3002 (mips_stub_frame_prev_register)
3003 (mips_stub_frame_unwind, mips_stub_frame_sniffer)
3004 (mips_stub_frame_base_address, mips_stub_frame_base)
3005 (mips_stub_frame_base_sniffer): Add a simple stub unwinder.
3006 (mips_mdebug_frame_base_sniffer, mips_mdebug_frame_sniffer): Only
3007 match true mdebug frames.
3008 (non_heuristic_proc_desc): Add forward declaration.
3009
3010 2004-08-01 Andrew Cagney <cagney@gnu.org>
3011
3012 * config/mips/tm-irix6.h: Delete file.
3013 * config/mips/tm-irix5.h: Delete file.
3014 * config/mips/irix5.mt (TM_FILE): Set to tm-mips.h
3015 * config/mips/irix6.mt (TM_FILE): Set to tm-mips.h
3016
3017 * config/ia64/tm-linux.h (IA64_GNULINUX_TARGET): Delete.
3018 * config/alpha/nm-osf2.h (PROCFS_SIGPEND_OFFSET): Delete.
3019 * config/nm-gnu.h (NO_CORE_OPS): Delete.
3020 * config/pa/nm-hppah.h (MAY_SWITCH_FROM_INFERIOR_PID): Delete.
3021 * config/i386/nm-i386v4.h (LOSING_POLL): Delete.
3022 * config/alpha/nm-osf2.h (LOSING_POLL): Delete.
3023 * config/tm-nto.h (RAW_SIGNAL_LO, RAW_SIGNAL_HI): Delete.
3024 * config/m68k/tm-vx68.h (VX_SIZE_FPREGS): Delete.
3025 * config/nm-linux.h (USE_THREAD_STEP_NEEDED): Delete.
3026 * config/pa/nm-hppah.h (USE_THREAD_STEP_NEEDED): Delete.
3027 * config/tm-nto.h (TARGET_SIGNAL_RAW_TABLE) Delete.
3028 (TARGET_SIGNAL_RAW_VALUES): Delete.
3029 * config/pa/nm-hppah.h (TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT):
3030 Delete.
3031 * config/frv/tm-frv.h (TARGET_HW_BREAK_LIMIT)
3032 (TARGET_HW_WATCH_LIMIT): Delete.
3033 * Makefile.in (minimon_h, HFILES_NO_SRCDIR): Remove minimon.h.
3034 * minimon.h: Delete file.
3035
3036 * trad-frame.c (trad_frame_get_this_base)
3037 (trad_frame_set_this_base, trad_frame_set_reg_realreg): New
3038 functions.
3039 * trad-frame.h (trad_frame_set_this_base)
3040 (trad_frame_get_this_base, trad_frame_set_reg_realreg): Declare.
3041
3042 2004-07-31 Andrew Cagney <cagney@gnu.org>
3043
3044 * trad-frame.c (trad_frame_get_prev_register): Rename
3045 trad_frame_get_prev_register.
3046 * vax-tdep.c (vax_frame_prev_register): Update.
3047 * trad-frame.h: Update.
3048 * trad-frame.c (trad_frame_get_register): Update.
3049 * sparcobsd-tdep.c (sparc32obsd_frame_prev_register): Update.
3050 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_prev_register):
3051 Update.
3052 * sparc64obsd-tdep.c (sparc64obsd_frame_prev_register): Update.
3053 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_prev_register):
3054 Update.
3055 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_prev_register):
3056 Update.
3057 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_prev_register):
3058 Update.
3059 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_prev_register):
3060 Update.
3061 * sparc-linux-tdep.c (sparc32_linux_sigtramp_frame_prev_register):
3062 Update.
3063 * s390-tdep.c (s390_frame_prev_register)
3064 (s390_stub_frame_prev_register)
3065 (s390_sigtramp_frame_prev_register): Update.
3066 * rs6000-tdep.c (rs6000_frame_prev_register): Update.
3067 * ppc-linux-tdep.c (ppc_linux_sigtramp_prev_register): Update.
3068 * mips-tdep.c (mips_mdebug_frame_prev_register): Update.
3069 * m88k-tdep.c (m88k_frame_prev_register)
3070 * m68hc11-tdep.c (m68hc11_frame_prev_register)
3071 * m32r-tdep.c (m32r_frame_prev_register): Update.
3072 * hppa-tdep.c (hppa_frame_prev_register_helper)
3073 * frv-tdep.c (frv_frame_prev_register): Update.
3074 * d10v-tdep.c (d10v_frame_prev_register): Update.
3075 * cris-tdep.c (cris_frame_prev_register): Update.
3076 * avr-tdep.c (avr_frame_prev_register): Update.
3077 * arm-tdep.c (arm_prologue_prev_register)
3078 (arm_sigtramp_prev_register): Update.
3079
3080 2004-07-31 Andrew Cagney <cagney@gnu.org>
3081
3082 * frame.h (legacy_saved_regs_unwind)
3083 (legacy_frame_chain_valid, legacy_frame_p)
3084 (enum frame_type): Delete UNKNOWN_FRAME.
3085 * dummy-frame.c (dummy_frame_this_id): Simplify.
3086 * frame-unwind.c (frame_unwind_find_by_frame): Simplify.
3087 * frame.c (struct frame_info): Delete the field "type".
3088 (legacy_saved_regs_prev_register, legacy_get_prev_frame)
3089 (legacy_saved_regs_this_id, legacy_saved_regs_unwinder)
3090 (legacy_saved_regs_unwind, legacy_frame_p)
3091 (frame_type_from_pc): Delete.
3092 (get_frame_id, frame_pop, frame_register_unwind, get_prev_frame_1)
3093 (fprint_frame, create_new_frame, fprint_frame_type): Simplify.
3094
3095 2004-07-31 Mark Kettenis <kettenis@gnu.org>
3096
3097 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Fix
3098 indentation.
3099
3100 * mips-nat.c: Remove file.
3101 * Makefile.in (ALLDEPFILES): Remove mips-nat.c
3102 (mips-nat.o): Remove dependency.
3103
3104 * infptrace.c: Update copyright year.
3105 (fetch_register): Pass NULL in regcache_raw_supply call instead of
3106 explicitly setting the buffer to all zeroes.
3107
3108 * sparc64obsd-tdep.c (sparc64obsd_sigreturn_offset): New variable.
3109 (sparc64obsd_pc_in_sigtramp): Reorganize to avoid goto.
3110
3111 2004-07-30 Andrew Cagney <cagney@gnu.org>
3112
3113 * GDB 6.2 released from gdb_6_2-branch.
3114
3115 2004-07-30 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
3116
3117 * defs.h (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH): New macros.
3118
3119 * exec.c (exec_file_attach):
3120 * nto-tdep.c (nto_find_and_open_solib):
3121 * pa64solib.c (pa64_solib_sizeof_symbol_table):
3122 * solib.c (solib_open):
3123 * somsolib.c (som_solib_sizeof_symbol_table):
3124 * source.c (is_regular_file, openp, open_source_file):
3125 * symfile.c (symfile_bfd_open):
3126 * wince.c (upload_to_device): Differentiate between the search for
3127 binary and source files.
3128
3129 2004-07-30 Andrew Cagney <cagney@gnu.org>
3130
3131 * complaints.c (_initialize_complaints): Pass NULL to
3132 add_setshow_zinteger_cmd for help_doc.
3133 * cli/cli-decode.c (add_setshow_cmd_full): Handle a NULL help_doc.
3134
3135 2004-07-30 Andrew Cagney <cagney@gnu.org>
3136
3137 Fix PR i18n/761.
3138 * Makefile.in (.SUFFIXES): Add po .gmo, and .pox.
3139 (.PHONY): Add all-po install-po, uninstall-po, clean-po,
3140 $(PACKAGE).pot and update-po.
3141 (all-po, .po.gmo, .po.pox, install-po, $(PACKAGE).pot)
3142 (po/$(PACKAGE).pot, clean-po, uninstall-po, install-po)
3143 (update-po): New rules.
3144 (localedir): Define using autoconf.
3145 (diststuff): Add $(PACKAGE).pot and $(CATALOGS)
3146 (GDB_CFLAGS): Define LOCALEDIR using $(localedir).
3147 (XGETTEXT, GMSGFMT, MSGMERGE, PACKAGE, CATALOGS): Define.
3148 * configure.in: Generate CATALOGS and LINGUAS from contents of
3149 src/gdb/po/ directory. Set @localedir@ in Makefile.in.
3150 * configure: Re-generate.
3151 * po/gdbtext: New file
3152
3153 2004-07-30 Jerome Guitton <guitton@gnat.com>
3154
3155 * MAINTAINERS: Reorder Write After Approval list in alphabetical
3156 order.
3157
3158 2004-07-30 David Lecomber <dsl@sources.redhat.com>
3159
3160 * dwarf2read.c (read_file_scope): Set producer if attribute
3161 present.
3162 (struct dwarf2_cu): Added new member producer.
3163
3164 2004-07-30 Jerome Guitton <guitton@gnat.com>
3165
3166 * inflow.c (kill_command): release file handles in BFD.
3167 * exec.c (exec_file_attach): Ditto.
3168 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
3169
3170 2004-07-29 Andrew Cagney <cagney@gnu.org>
3171
3172 * PROBLEMS (mips-irix): Note that it is broken.
3173
3174 2004-07-29 Andrew Cagney <cagney@gnu.org>
3175
3176 * config/mips/xm-irix5.h (REGISTER_U_ADDR): Move from here ...
3177 * config/mips/nm-irix5.h (REGISTER_U_ADDR): ... to here.
3178
3179 * config/xm-nbsd.h: Delete file.
3180 * config/arm/xm-nbsd.h: Delete file.
3181 * config/i386/xm-nbsd.h: Delete file.
3182 * config/ns32k/xm-nbsd.h: Delete file.
3183 * config/ns32k/nbsdaout.mh (XM_FILE): Delete.
3184 * config/i386/nbsdelf.mh (XM_FILE): Delete.
3185 * config/i386/nbsdaout.mh (XM_FILE): Delete.
3186 * config/arm/nbsdelf.mh (XM_FILE): Delete.
3187 * config/arm/nbsdaout.mh (XM_FILE): Delete.
3188
3189 * config/i386/xm-i386v.h (KERNEL_U_ADDR): Move from here ...
3190 * config/i386/nm-i386v42mp.h (KERNEL_U_ADDR): ... to here, ...
3191 * config/i386/nm-i386v4.h (KERNEL_U_ADDR): ... here, ...
3192 * config/i386/nm-i386v.h (KERNEL_U_ADDR): ... and here.
3193 * config/vax/xm-vax.h (KERNEL_U_ADDR): Move from here ...
3194 * config/vax/nm-vax.h (KERNEL_U_ADDR): ... to here.
3195
3196 * config/powerpc/xm-linux.h: Delete empty file.
3197 * config/powerpc/ppc64-linux.mh (XM_FILE): Delete.
3198 * config/powerpc/linux.mh (XM_FILE): Delete.
3199 * config/m68k/xm-linux.h: Delete empty file.
3200 * config/m68k/linux.mh (XM_FILE): Delete.
3201 * config/ia64/xm-linux.h: Delete empty file.
3202 * config/ia64/linux.mh (XM_FILE): Delete.
3203 * config/arm/xm-linux.h: Delete empty file.
3204 * config/arm/linux.mh (XM_FILE): Delete.
3205
3206 * config/powerpc/xm-linux.h (KERNEL_U_ADDR): Move from here ...
3207 * config/powerpc/nm-linux.h (KERNEL_U_ADDR): ... to here.
3208 * config/m68k/xm-linux.h (KERNEL_U_ADDR): Move from here ...
3209 * config/m68k/nm-linux.h (KERNEL_U_ADDR): ... to here.
3210 * config/ia64/xm-linux.h (KERNEL_U_ADDR): Move from here ...
3211 * config/ia64/nm-linux.h (KERNEL_U_ADDR): ... to here.
3212 * config/arm/xm-linux.h (KERNEL_U_ADDR): Move from here ...
3213 * config/arm/nm-linux.h (KERNEL_U_ADDR): ... to here.
3214
3215 * config/m68k/xm-m68k.h: Delete file.
3216 * config/m68k/xm-linux.h: Do not include "m68k/xm-m68k.h". Update
3217 copyright.
3218 (HOST_LONG_DOUBLE_FORMAT): Delete macro.
3219 * config/pa/xm-linux.h: Delete empty file.
3220 * config/pa/linux.mh (XM_FILE): Delete.
3221 * config/i386/xm-i386.h: Delete empty file.
3222 * config/i386/xm-nbsd.h, config/i386/xm-go32.h: Do not include
3223 "i386/xm-i386.h".
3224 * config/i386/obsdaout.mh (XM_FILE): Delete.
3225 * config/i386/obsd64.mh (XM_FILE): Delete.
3226 * config/i386/fbsd64.mh (XM_FILE): Delete.
3227 * config/i386/nto.mh (XM_FILE): Delete.
3228 * config/i386/obsd.mh (XM_FILE): Delete.
3229 * config/i386/linux64.mh (XM_FILE): Delete.
3230 * config/i386/linux.mh (XM_FILE): Delete.
3231 * config/i386/i386sol2.mh (XM_FILE): Delete.
3232 * config/i386/i386gnu.mh (XM_FILE): Delete.
3233 * config/i386/fbsd.mh (XM_FILE): Delete.
3234 * config/i386/nbsd64.mh (XM_FILE): Delete.
3235
3236 2004-07-29 Andrew Cagney <cagney@gnu.org>
3237
3238 * config/pa/xm-linux.h: Do not include "floatformat.h".
3239 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
3240 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
3241 * config/i386/xm-i386.h: Do not include "floatformat.h".
3242 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
3243 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
3244 * doublest.c (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
3245 (HOST_LONG_DOUBLE_FORMAT): Delete macros. Use
3246 GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT and
3247 GDB_HOST_LONG_DOUBLE_FORMAT instead.
3248 * configure.in (GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT)
3249 (GDB_HOST_LONG_DOUBLE_FORMAT): Define.
3250 * configure, config.in: Regenerate.
3251 * configure.host (gdb_host_float_format, gdb_host_double_format)
3252 (gdb_host_long_double_format): Set according to the host.
3253
3254 2004-07-29 Andrew Cagney <cagney@gnu.org>
3255
3256 * Makefile.in (CONFIG_CLEAN): Delete duplicate definition.
3257
3258 2004-07-28 Andrew Cagney <cagney@gnu.org>
3259
3260 * PROBLEMS: Mention threads/1650.
3261 * NEWS: Mention the NPTL fix.
3262
3263 2004-07-28 Andrew Cagney <cagney@gnu.org>
3264
3265 * cli/cli-decode.c (add_setshow_cmd): Delete function.
3266 (add_setshow_cmd_full): Make static.
3267 * command.h (add_setshow_cmd, add_setshow_cmd_full): Delete.
3268 (add_setshow_filename_cmd, add_setshow_string_cmd): Declare.
3269 * cli/cli-decode.c (add_setshow_filename_cmd)
3270 (add_setshow_string_cmd): New functions.
3271 * nto-tdep.c (_initialize_nto_tdep): Update. Fix parameters.
3272 * mips-tdep.c (_initialize_mips_tdep): Update.
3273 * m32r-rom.c (_initialize_m32r_rom): Update. Update copyright.
3274 * cli/cli-logging.c (_initialize_cli_logging): Update.
3275 * complaints.c (_initialize_complaints): Update.
3276 * remote.c (_initialize_remote): Update.
3277
3278 2004-07-28 Andrew Cagney <cagney@gnu.org>
3279
3280 * cli/cli-decode.c (add_setshow_zinteger_cmd)
3281 (add_setshow_cmd, add_setshow_auto_boolean_cmd)
3282 (add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
3283 print parameters. Make string parameters constant.
3284 * command.h: Update. Update copyright.
3285 * remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
3286 * observer.c (_initialize_observer): Ditto.
3287 * frame.c (_initialize_frame): Ditto.
3288 * complaints.c (_initialize_complaints): Ditto.
3289 * maint.c (_initialize_maint_cmds): Ditto.
3290 * target.c (initialize_targets): Ditto.
3291 * cli/cli-logging.c (_initialize_cli_logging): Ditto.
3292 * infcall.c (_initialize_infcall): Ditto.
3293 * arm-tdep.c (_initialize_arm_tdep): Ditto.
3294 * m32r-rom.c (_initialize_m32r_rom): Ditto.
3295 * remote-rdi.c (_initialize_remote_rdi): Ditto.
3296 * d10v-tdep.c (_initialize_d10v_tdep): Ditto.
3297 * mips-tdep.c (_initialize_mips_tdep): Ditto.
3298
3299 2004-07-28 Andrew Cagney <cagney@gnu.org>
3300
3301 * gdbtypes.c (lookup_primitive_typename): Delete function.
3302 * gdbtypes.h (lookup_primitive_typename): Delete declaration.
3303 * ada-lex.l: Use language_lookup_primitive_type_by_name.
3304 * gdbtypes.c (lookup_typename): Ditto.
3305 * f-exp.y (yylex): Ditto.
3306 * c-exp.y (yylex): Ditto, eliminate assignment in "if".
3307
3308 * scm-lang.c (c_builtin_types): Delete extern declaration.
3309 (scm_language_defn): Replace
3310 string_char_type and primitive_type_vector with
3311 la_language_arch_info.
3312 * jv-lang.c (java_language_defn): Replace
3313 string_char_type and primitive_type_vector with
3314 la_language_arch_info.
3315 * config/i386/i386sco4.mh (NATDEPFILES): Remove reference to
3316 c_builtin_types in comment.
3317 * c-lang.h (struct language_arch_info): Declare opaque.
3318 (c_language_arch_info): Declare.
3319 (c_builtin_types): Delete declaration.
3320 * c-lang.c (c_language_arch_info): Set string_char_type to
3321 builtin_char, not builtin_true_char. Make global.
3322 (c_builtin_types): Delete array.
3323 (asm_language_defn, minimal_language_defn): Replace
3324 string_char_type and primitive_type_vector with
3325 la_language_arch_info.
3326
3327 2004-07-28 Andrew Cagney <cagney@gnu.org>
3328
3329 * gdbtypes.h (struct builtin_type): Rename true_char to
3330 builtin_true_char.
3331 * gdbtypes.c (gdbtypes_post_init): Update.
3332 * c-lang.c (arch_info): New function.
3333 (enum c_primitive_types): New enum.
3334 (c_language_defn): Instead of string_char_type and
3335 primitive_type_vector set la_language_arch_info.
3336
3337 2004-07-28 Andrew Cagney <cagney@gnu.org>
3338
3339 * language.h (struct language_arch_info): Fix typo
3340 s/primative/primitive/.
3341 * gdbtypes.c (lookup_primitive_typename): Ditto.
3342 * language.c (language_lookup_primitive_type_by_name)
3343 (unknown_language_arch_info): Ditto.
3344
3345 2004-07-27 Andrew Cagney <cagney@gnu.org>
3346
3347 * defs.h (enum language): Add nr_languages.
3348 * language.h (struct language_arch_info): Define.
3349 (struct language_defn): Add la_language_arch_info.
3350 (language_lookup_primative_type_by_name): Declare.
3351 (language_string_char_type): Declare.
3352 * language.c (_initialize_language, language_gdbarch_post_init)
3353 (struct language_gdbarch, language_gdbarch_data): Implement
3354 per-architecture language information.
3355 (unknown_language_arch_info, language_string_char_type)
3356 (language_lookup_primative_type_by_name): New functions.
3357 (unknown_language_defn, auto_language_defn)
3358 (local_language_defn): Set la_language_arch_info to
3359 unknown_language_arch_info.
3360 (unknown_builtin_types): Delete.
3361 * gdbtypes.c (lookup_primitive_typename): Use
3362 language_lookup_primative_type_by_name.
3363 (create_string_type): Use language_string_char_type.
3364 * values.c (value_from_string): Use language_string_char_type.
3365 * scm-lang.c (scm_language_defn): Add NULL la_language_arch_info.
3366 * p-lang.c (pascal_language_defn): Ditto.
3367 * m2-lang.c (m2_language_defn): Ditto.
3368 * jv-lang.c (java_language_defn): Ditto.
3369 * objc-lang.c (objc_language_defn): Ditto.
3370 * f-lang.c (f_language_defn): Ditto.
3371 * c-lang.c (c_language_defn, cplus_language_defn)
3372 (asm_language_defn, minimal_language_defn): Ditto.
3373
3374 2004-07-27 Andrew Cagney <cagney@gnu.org>
3375
3376 * gdbtypes.h (struct builtin_type): Declare.
3377 (builtin_type): Declare.
3378 * d10v-tdep.c (d10v_register_type): Use builtin_type.
3379 * gdbtypes.c (_initialize_gdbtypes): Register gdbtypes_post_init.
3380 (gdbtypes_post_init): New function.
3381 (builtin_type): New function.
3382
3383 2004-07-27 Kei Sakamoto <sakamoto.kei@renesas.com>
3384
3385 * remote-m32r-sdi.c: Fix breakpoint bug.
3386 (send_cmd, send_one_arg_cmd, send_two_arg_cmd, send_three_arg_cmd,
3387 recv_char_data, recv_long_data): New functions to replace communication
3388 sequences.
3389
3390 2004-07-26 Michael Chastain <mec.gnu@mindspring.com>
3391
3392 Document PR threads/1650.
3393 * PROBLEMS (Threads): Document problem with many threads
3394
3395 2004-07-26 Andrew Cagney <cagney@gnu.org>
3396
3397 * gdb-mi.el: Move from here ...
3398 * mi/gdb-mi.el: ... to here.
3399
3400 2004-07-26 Andrew Cagney <cagney@gnu.org>
3401
3402 Problem reported by Ashley Pittman <ashley@quadrics.com>.
3403 * main.c (captured_main): When in batch mode always detach.
3404
3405 2004-07-26 Andrew Cagney <cagney@gnu.org>
3406
3407 * MAINTAINERS: Mark the xstormy16, sh64, ns32k, mn10300, mcore,
3408 and h8300 as broken.
3409 * NEWS: END-OF-LIFE frame compatibility module.
3410 * PROBLEMS: For "Stack backtraces", remove powerpc, hppa and mips
3411 specific comments.
3412
3413 2004-07-26 Andrew Cagney <cagney@gnu.org>
3414
3415 * cli/cli-decode.c (deprecated_add_show_from_set): Deprecate.
3416 * xcoffsolib.c (_initialize_xcoffsolib): Update.
3417 * wince.c (_initialize_wince): Update.
3418 * win32-nat.c (_initialize_win32_nat): Update.
3419 * varobj.c (_initialize_varobj): Update.
3420 * valops.c (_initialize_valops): Update.
3421 * utils.c (initialize_utils, initialize_utils): Update.
3422 * tui/tui-win.c (_initialize_tui_win): Update.
3423 * top.c (init_main): Update.
3424 * symfile.c (_initialize_symfile): Update.
3425 * source.c (_initialize_source): Update.
3426 * somsolib.c (_initialize_som_solib): Update.
3427 * solib.c (_initialize_solib): Update.
3428 * solib-frv.c (_initialize_frv_solib): Update.
3429 * serial.c (_initialize_serial): Update.
3430 * ser-go32.c (_initialize_ser_dos, _initialize_ser_dos): Update.
3431 * remote.c (_initialize_remote, _initialize_remote): Update.
3432 * remote-vx.c (_initialize_vx): Update.
3433 * remote-utils.c (_initialize_sr_support): Update.
3434 * remote-sds.c (_initialize_remote_sds): Update.
3435 * remote-mips.c (_initialize_remote_mips): Update.
3436 * remote-e7000.c (_initialize_remote_e7000): Update.
3437 * proc-api.c (_initialize_proc_api): Update.
3438 * printcmd.c: Update.
3439 * parse.c (_initialize_parse): Update.
3440 * pa64solib.c (_initialize_pa64_solib): Update.
3441 * p-valprint.c (_initialize_pascal_valprint): Update.
3442 * monitor.c (_initialize_remote_monitors): Update.
3443 * mips-tdep.c (_initialize_mips_tdep): Update.
3444 * mcore-tdep.c (_initialize_mcore_tdep): Update.
3445 * maint.c (_initialize_maint_cmds): Update.
3446 * lin-lwp.c (_initialize_lin_lwp): Update.
3447 * language.c (_initialize_language): Update.
3448 * kod.c (_initialize_kod): Update.
3449 * infrun.c (set_schedlock_func, _initialize_infrun): Update.
3450 * i386-tdep.c (_initialize_i386_tdep): Update.
3451 * gdbtypes.c (build_gdbtypes, _initialize_gdbtypes): Update.
3452 * gdbarch.sh: Update.
3453 * gdbarch.c: Re-generate.
3454 * gdb-events.sh: Update.
3455 * gdb-events.c: Re-generate.
3456 * frame.c (_initialize_frame): Update.
3457 * exec.c: Update.
3458 * demangle.c (_initialize_demangler): Update.
3459 * dcache.c (_initialize_dcache): Update.
3460 * cris-tdep.c (_initialize_cris_tdep, cris_version_update): Update.
3461 * cp-valprint.c (_initialize_cp_valprint): Update.
3462 * corefile.c (_initialize_core): Update.
3463 * command.h: Update.
3464 * cli/cli-decode.h: Update.
3465 * cli/cli-cmds.c (init_cli_cmds): Update.
3466 * charset.c (_initialize_charset): Update.
3467 * breakpoint.c (_initialize_breakpoint): Update.
3468 * arm-tdep.c (_initialize_arm_tdep_initialize_arm_tdep): Update.
3469 * alpha-tdep.c (_initialize_alpha_tdep): Update.
3470 * aix-thread.c (_initialize_aix_thread): Update.
3471
3472 2004-07-24 Mark Kettenis <kettenis@gnu.org>
3473
3474 Partial fix for PR backtrace/1718.
3475 * i386-tdep.c (i386_analyze_frame_setup): Handle more instructions
3476 that GCC migrates into the prolugue. Don't handle any
3477 instructions that clobber %ebx.
3478
3479 2004-07-23 Andrew Cagney <cagney@gnu.org>
3480
3481 Use regcache_raw_collect instead of regcache_collect.
3482 * regcache.h (regcache_collect): Delete declaration.
3483 * regcache.c (regcache_colect): Delete function.
3484 * win32-nat.c (do_child_store_inferior_registers): Update.
3485 * sol-thread.c (sol_thread_store_registers): Update.
3486 * shnbsd-tdep.c (shnbsd_fill_reg): Update.
3487 * rs6000-nat.c (store_register): Update.
3488 * remote.c (store_register_using_P, remote_store_registers): Update.
3489 * ppcnbsd-tdep.c (ppcnbsd_fill_reg): Update.
3490 * ppc-linux-nat.c (store_altivec_register, store_spe_register)
3491 (fill_vrregset, store_spe_registers, fill_gregset)
3492 (fill_gregset): Update.
3493 * nto-procfs.c (procfs_store_registers): Update.
3494 * mipsnbsd-tdep.c (mipsnbsd_fill_reg): Update.
3495 * mips-linux-tdep.c (fill_gregset, mips64_fill_gregset): Update.
3496 * m68klinux-nat.c (store_register, fill_gregset): Update.
3497 * m68k-tdep.c (fill_gregset): Update.
3498 * infptrace.c (store_register): Update.
3499 * i386-nto-tdep.c (i386nto_regset_fill): Update.
3500 * i386-linux-nat.c (store_register, fill_gregset): Update.
3501 * hppa-linux-nat.c (fill_gregset): Update.
3502 * go32-nat.c (store_register): Update.
3503 * armnbsd-nat.c (store_register, store_regs, store_fp_register)
3504 (store_fp_regs): Update.
3505 * arm-linux-nat.c (store_nwfpe_single, store_nwfpe_double)
3506 (store_nwfpe_extended, store_fpregister, store_fpregs)
3507 (store_register, store_regs, fill_gregset, fill_fpregset): Update.
3508 * alpha-tdep.c (alpha_fill_int_regs, alpha_fill_fp_regs): Update.
3509 * aix-thread.c (fill_gprs64, fill_fprs, fill_sprs64, fill_sprs32)
3510 (store_regs_user_thread, store_regs_kernel_thread): Update.
3511
3512 2004-07-24 Mark Kettenis <kettenis@gnu.org>
3513
3514 * dwarf2-frame.c (struct dwarf2_cie): Delete `addr_size' member.
3515 (decode_frame_entry_1): Use DW_EH_PE_absptr as default for CIE
3516 encoding.
3517 (dwarf2_build_frame_info): Adjust for removal of `addr_size'
3518 member of `struct comp_unit'.
3519
3520 2004-07-23 Andrew Cagney <cagney@gnu.org>
3521
3522 * infrun.c (handle_inferior_event): Separate the STEP_OVER_ALL and
3523 DEPRECATED_IGNORE_HELPER_CALL cases, only #ifdef the latter.
3524
3525 2004-07-23 Martin Hunt <hunt@redhat.com>
3526 Kevin Buettner <kevinb@redhat.com>
3527
3528 * dwarf2-frame.c (execute_cfa_program): Fix typo in which the
3529 alignment was being added to the offset instead of multiplied.
3530
3531 2004-07-23 Mark Kettenis <kettenis@gnu.org>
3532
3533 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Adjust for
3534 changed signal trampoline in OpenBSD 3.5-current.
3535
3536 * sparc64nbsd-nat.c: Include "regcache.h", <sys/types.h>,
3537 <machine/pcb.h> and "bsd-kvm.h".
3538 (sparc64nbsd_supply_pcb): New function.
3539 (_initialize_sparc64nbsd_nat): Renamed from
3540 _initialize_sparcnbsd_nat. Enable libkvm interface.
3541 * Makefile.in (sparc64nbsd-nat.o): Update dependencies.
3542 * config/sparc/nbsd64.mh (NATDEPFILES): Add bsd-kvm.o
3543 (LOADLIBES): New variable.
3544
3545 * config/sparc/obsd64.mt (TDEPFILES): Add sparcobsd-tdep.o.
3546
3547 * sparcnbsd-nat.c (sparc32nbsd_supply_pcb): Fix typo in comment.
3548
3549 2004-07-21 Andrew Cagney <cagney@gnu.org>
3550
3551 Use regcache_raw_supply instead of supply_register.
3552 * regcache.h (supply_register): Delete declaration.
3553 * regcache.c (supply_register): Delete function.
3554 * wince.c (do_child_fetch_inferior_registers): Update.
3555 * win32-nat.c (do_child_fetch_inferior_registers)
3556 (fetch_elf_core_registers): Update.
3557 * v850ice.c (v850ice_fetch_registers): Update.
3558 * thread-db.c (thread_db_store_registers): Update.
3559 * sol-thread.c (sol_thread_store_registers): Update.
3560 * shnbsd-tdep.c (shnbsd_supply_reg): Update.
3561 * rs6000-nat.c (fetch_register): Update.
3562 * rom68k-rom.c (rom68k_supply_one_register): Update.
3563 * remote.c (remote_wait, remote_async_wait): Update.
3564 * remote-st.c (get_hex_regs): Update.
3565 * remote-sim.c (gdbsim_fetch_register): Update.
3566 * remote-sds.c (sds_fetch_registers): Update.
3567 * remote-rdp.c (remote_rdp_fetch_register): Update.
3568 * remote-rdi.c (arm_rdi_fetch_registers): Update.
3569 * remote-mips.c (mips_wait, mips_fetch_registers): Update.
3570 * remote-m32r-sdi.c (m32r_fetch_register): Update.
3571 * remote-hms.c (init_hms_cmds): Update.
3572 * remote-est.c (init_est_cmds): Update.
3573 * remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
3574 (e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
3575 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
3576 * ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
3577 (fetch_register, supply_vrregset, supply_vrregset)
3578 (fetch_spe_registers): Update.
3579 * ppc-bdm.c (bdm_ppc_fetch_registers): Update.
3580 * monitor.c (monitor_supply_register): Update.
3581 * mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
3582 * mipsnbsd-tdep.c (mipsnbsd_supply_reg)
3583 (mipsnbsd_supply_fpreg): Update.
3584 * mips-nat.c (fetch_inferior_registers)
3585 (fetch_core_registers): Update.
3586 * mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
3587 (supply_fpregset, mips64_supply_gregset)
3588 (mips64_supply_fpregset): Update.
3589 * m68klinux-nat.c (fetch_register, supply_gregset)
3590 (supply_fpregset): Update.
3591 * m68k-tdep.c (supply_gregset, supply_fpregset): Update.
3592 * m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
3593 * lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
3594 * irix5-nat.c (supply_gregset, supply_fpregset): Update.
3595 * infptrace.c (fetch_register): Update.
3596 * ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
3597 * ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
3598 * i386gnu-nat.c (fetch_fpregs, supply_gregset)
3599 (gnu_fetch_registers, gnu_store_registers): Update.
3600 * i386-nto-tdep.c (i386nto_supply_gregset): Update.
3601 * i386-linux-nat.c (fetch_register, supply_gregset)
3602 (dummy_sse_values): Update.
3603 * hpux-thread.c (hpux_thread_fetch_registers): Update.
3604 * hppah-nat.c (fetch_register): Update.
3605 * hppa-linux-nat.c (fetch_register, supply_gregset)
3606 (supply_fpregset): Update.
3607 * go32-nat.c (fetch_register): Update.
3608 * dve3900-rom.c (fetch_bitmapped_register)
3609 (_initialize_r3900_rom): Update.
3610 * cris-tdep.c (supply_gregset): Update.
3611 * abug-rom.c (init_abug_cmds): Update.
3612 * core-aout.c (fetch_core_registers): Update.
3613 * armnbsd-nat.c (supply_gregset, supply_fparegset)
3614 (fetch_register, fetch_fp_register): Update.
3615 * arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
3616 (fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
3617 (fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
3618 * alphanbsd-tdep.c (fetch_core_registers): Update.
3619 * alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
3620 * alpha-nat.c (fetch_osf_core_registers)
3621 (fetch_osf_core_registers, fetch_osf_core_registers): Update.
3622 * aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
3623 (supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
3624
3625 2004-07-21 Andrew Cagney <cagney@gnu.org>
3626
3627 * PROBLEMS: Mention breakpoints/1702.
3628 * NEWS: For signal trampolines, cite s390 GNU/Linux as a system
3629 that is known to work.
3630
3631 2004-07-21 Andrew Cagney <cagney@gnu.org>
3632
3633 * config/mips/tm-mips.h (DEPRECATED_IGNORE_HELPER_CALL): Deprecate.
3634 * mips-tdep.c (mips_dump_tdep, mips_ignore_helper): Update.
3635 * infrun.c (DEPRECATED_IGNORE_HELPER_CALL): Delete macro.
3636 (handle_inferior_event): Wrap call to deprecated
3637 IGNORE_HELPER_CALL in #ifdef.
3638 * config/mips/tm-nbsd.h: Update.
3639
3640 2004-07-20 Jim Blandy <jimb@redhat.com>
3641
3642 * rs6000-tdep.c (rs6000_gdbarch_init): The register set used for
3643 bfd_mach_ppc has no segment registers.
3644
3645 Include PowerPC SPR numbers for special-purpose registers.
3646 * rs6000-tdep.c (struct reg): Add new member, 'spr_num'.
3647 (R, R4, R8, R16, F, P, R32, R64, R0): Include value for
3648 new member in initializer.
3649 (S, S4, SN4, S64): New macros for defining special-purpose
3650 registers.
3651 (PPC_UISA_SPRS, PPC_UISA_NOFP_SPRS, PPC_OEA_SPRS, registers_power,
3652 registers_403, registers_403GC, registers_505, registers_860,
3653 registers_601, registers_602, registers_603, registers_604,
3654 registers_750, registers_e500): Use them.
3655
3656 * rs6000-tdep.c (rs6000_gdbarch_init): Delete variable 'power';
3657 replace references with expression used to initialize variable.
3658
3659 2004-07-20 Andrew Cagney <cagney@gnu.org>
3660
3661 * breakpoint.c (deprecated_read_memory_nobpt): Rename
3662 read_memory_nobpt.
3663 * sparc-linux-tdep.c (sparc_linux_sigtramp_start): Update.
3664 * s390-tdep.c (s390_readinstruction, s390_in_function_epilogue_p)
3665 (s390_sigtramp_frame_sniffer): Update.
3666 * mn10300-tdep.c (mn10300_analyze_prologue): Update.
3667 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Update.
3668 * mips-tdep.c (mips_fetch_instruction, mips16_fetch_instruction)
3669 (mips32_fetch_instruction): Update.
3670 * mcore-tdep.c (get_insn): Update.
3671 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Update.
3672 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Update.
3673 * i386ly-tdep.c (i386lynx_saved_pc_after_call): Update.
3674 * i386-linux-tdep.c (i386_linux_sigtramp_start)
3675 (i386_linux_rt_sigtramp_start): Update.
3676 * i386-linux-nat.c (child_resume): Update.
3677 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Update.
3678 * hppa-linux-tdep.c (insns_match_pattern): Update.
3679 * gdbcore.h: Update.
3680 * frv-tdep.c (frv_gdbarch_adjust_breakpoint_address): Update.
3681 * frame.c (safe_frame_unwind_memory): Update.
3682 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Update.
3683 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Update.
3684 * alpha-tdep.c (alpha_read_insn): Update.
3685
3686 2004-07-20 Andrew Cagney <cagney@gnu.org>
3687
3688 * tramp-frame.h (struct tramp_frame): Change "insn" to a struct
3689 containing both bytes and mask. Add "frame_type".
3690 * tramp-frame.c (tramp_frame_start): Update.
3691 (tramp_frame_prepend_unwinder): Update.
3692 * mips-linux-tdep.c (mips_linux_o32_sigframe)
3693 (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
3694 (mips_linux_n64_rt_sigframe): Update. Make "static const".
3695 * ppcnbsd-tdep.c (tramp_frame ppcnbsd_sigtramp): Update.
3696
3697 2004-07-19 Eli Zaretskii <eliz@gnu.org>
3698
3699 * config/djgpp/fnchange.lst: Add remapping for bfd/elf32-cr*.c,
3700 bfd/elf32-sh-symbian.c, bfd/elf32-sh64-com.c,
3701 sim/testsuite/sim/mips/hilo-hazard-[123].s, and
3702 sim/testsuite/sim/mips/fpu64-ps-sb1.s.
3703
3704 2004-07-17 Andrew Cagney <cagney@gnu.org>
3705
3706 * NEWS, PROBLEMS: Update for 6.2.
3707
3708 * README: Update to 6.2.
3709
3710 * utils.c (xvasprintf): Call xstrvprintf.
3711
3712 * parse.c: Update copyright.
3713 (null_post_parser): Eliminate ARGSUSED.
3714
3715 * ppc-linux-nat.c (store_spe_registers): Eliminate K&R C.
3716 * tui/tui-win.c (tui_get_cmd_list): Ditto.
3717 * symfile-mem.c (_initialize_symfile_mem): Ditto.
3718
3719 * ppc-linux-tdep.c (ppc_linux_init_abi): Add [sic] to Linux.
3720 * ppc-linux-nat.c: Use "Linux kernel".
3721 * hppa-linux-tdep.c: Use GNU/Linux.
3722 * hppa-linux-nat.c: Use GNU/Linux.
3723 * dwarfread.c: Add [sic] to use of Linux.
3724
3725 * hppa-linux-nat.c: Do not include <string.h>.
3726 (supply_fpregset): Remove "register" attribute.
3727
3728 * solib-frv.c (fetch_loadmap): Use xfree, not free.
3729
3730 2004-07-17 Mark Kettenis <kettenis@gnu.org>
3731
3732 * configure.in: Define _MSE_INT_H on Solaris 9 too.
3733 * configure, config.in: Regenerated.
3734
3735 * vaxbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
3736 "bsd-kvm.h".
3737 (vaxbsd_supply_pcb): New function.
3738 (_initialize_vaxbsd_nat): New prototype and function.
3739 * config/vax/nbsdaout.mh (NATDEPFILES): Add bsd-kvm.o, solib.o and
3740 solib-sunos.o.
3741 (LOADLIBES): New variable.
3742 * config/vax/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
3743 (LOADLIBES): New variable.
3744 * config/vax/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
3745 (LOADLIBES): New variable.
3746 * Makefile.in (vaxbsd-nat.o): Update dependencies.
3747
3748 2004-07-16 Andrew Cagney <cagney@gnu.org>
3749
3750 * defs.h (event_loop_p): Replace variable declaration with macro,
3751 always 1.
3752 * main.c (captured_main): Delete options "-async" and "-noasync".
3753 (event_loop_p): Delete variable.
3754 * NEWS: Mention that "-async" and "-noasync" were removed.
3755
3756 2004-07-16 Andrew Cagney <cagney@gnu.org>
3757
3758 * remote-m32r-sdi.c: Re-indent.
3759
3760 2004-07-16 Jim Blandy <jimb@redhat.com>
3761
3762 * ppc-tdep.h (ppc_spr_asr): Add missing OEA SPR.
3763 (ppc_spr_mi_dbcam, ppc_spr_mi_dbram0, ppc_spr_mi_dbram1)
3764 (ppc_spr_md_cam, ppc_spr_md_ram0, ppc_spr_md_ram1): Add
3765 missing MPC823 SPRs.
3766 (ppc_spr_m_twb): Renamed from ppc_spr_md_twb; the old name was
3767 incorrect. (This was corrected in GDB's register name tables on
3768 2004-07-14.)
3769
3770 * rs6000-tdep.c (registers_602): Correct register name: "esassr"
3771 should be "esasrr" ("ESA Save and Restore Register").
3772
3773 2004-07-16 Andrew Cagney <cagney@gnu.org>
3774
3775 * infrun.c (insert_step_resume_breakpoint): Delete gdb_assert
3776 calls, no longer applicable. Update comments and rename parameter
3777 "step_frame" to "return_frame".
3778
3779 2004-07-16 Andrew Cagney <cagney@gnu.org>
3780
3781 * frame.c (fprint_field): New function.
3782 (fprint_frame_id): Use fprint_field.
3783
3784 2004-07-15 Joel Brobecker <brobecker@gnat.com>
3785
3786 * ada-lang.c (ada_language_defn): Remove commented out code.
3787
3788 2004-07-15 Jim Blandy <jimb@redhat.com>
3789
3790 * ppc-tdep.h (struct gdbarch_tdep): New member: ppc_sr0_regnum.
3791 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it.
3792
3793 2004-07-14 Jim Blandy <jimb@redhat.com>
3794
3795 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): Delete; unused.
3796
3797 * ppc-tdep.h (ppc_num_vrs): New enum constant.
3798
3799 * ppc-tdep.h (ppc_num_srs): New enum constant.
3800
3801 * ppc-tdep.h (ppc_spr_mq, ppc_spr_xer, ppc_spr_rtcu, ppc_spr_rtcl)
3802 (ppc_spr_lr, ppc_spr_ctr, ppc_spr_cnt, ppc_spr_dsisr, ppc_spr_dar)
3803 (ppc_spr_dec, ppc_spr_sdr1, ppc_spr_srr0, ppc_spr_srr1)
3804 (ppc_spr_eie, ppc_spr_eid, ppc_spr_nri, ppc_spr_sp, ppc_spr_cmpa)
3805 (ppc_spr_cmpb, ppc_spr_cmpc, ppc_spr_cmpd, ppc_spr_icr)
3806 (ppc_spr_der, ppc_spr_counta, ppc_spr_countb, ppc_spr_cmpe)
3807 (ppc_spr_cmpf, ppc_spr_cmpg, ppc_spr_cmph, ppc_spr_lctrl1)
3808 (ppc_spr_lctrl2, ppc_spr_ictrl, ppc_spr_bar, ppc_spr_vrsave)
3809 (ppc_spr_sprg0, ppc_spr_sprg1, ppc_spr_sprg2, ppc_spr_sprg3)
3810 (ppc_spr_ear, ppc_spr_tbl, ppc_spr_tbu, ppc_spr_pvr)
3811 (ppc_spr_spefscr, ppc_spr_ibat0u, ppc_spr_ibat0l, ppc_spr_ibat1u)
3812 (ppc_spr_ibat1l, ppc_spr_ibat2u, ppc_spr_ibat2l, ppc_spr_ibat3u)
3813 (ppc_spr_ibat3l, ppc_spr_dbat0u, ppc_spr_dbat0l, ppc_spr_dbat1u)
3814 (ppc_spr_dbat1l, ppc_spr_dbat2u, ppc_spr_dbat2l, ppc_spr_dbat3u)
3815 (ppc_spr_dbat3l, ppc_spr_ic_cst, ppc_spr_ic_adr, ppc_spr_ic_dat)
3816 (ppc_spr_dc_cst, ppc_spr_dc_adr, ppc_spr_dc_dat, ppc_spr_dpdr)
3817 (ppc_spr_dpir, ppc_spr_immr, ppc_spr_mi_ctr, ppc_spr_mi_ap)
3818 (ppc_spr_mi_epn, ppc_spr_mi_twc, ppc_spr_mi_rpn, ppc_spr_mi_cam)
3819 (ppc_spr_mi_ram0, ppc_spr_mi_ram1, ppc_spr_md_ctr, ppc_spr_m_casid)
3820 (ppc_spr_md_ap, ppc_spr_md_epn, ppc_spr_md_twb, ppc_spr_md_twc)
3821 (ppc_spr_md_rpn, ppc_spr_m_tw, ppc_spr_md_dbcam, ppc_spr_md_dbram0)
3822 (ppc_spr_md_dbram1, ppc_spr_ummcr0, ppc_spr_upmc1, ppc_spr_upmc2)
3823 (ppc_spr_usia, ppc_spr_ummcr1, ppc_spr_upmc3, ppc_spr_upmc4)
3824 (ppc_spr_zpr, ppc_spr_pid, ppc_spr_mmcr0, ppc_spr_pmc1)
3825 (ppc_spr_sgr, ppc_spr_pmc2, ppc_spr_dcwr, ppc_spr_sia)
3826 (ppc_spr_mmcr1, ppc_spr_pmc3, ppc_spr_pmc4, ppc_spr_sda)
3827 (ppc_spr_tbhu, ppc_spr_tblu, ppc_spr_dmiss, ppc_spr_dcmp)
3828 (ppc_spr_hash1, ppc_spr_hash2, ppc_spr_icdbdr, ppc_spr_imiss)
3829 (ppc_spr_esr, ppc_spr_icmp, ppc_spr_dear, ppc_spr_rpa)
3830 (ppc_spr_evpr, ppc_spr_cdbcr, ppc_spr_tsr, ppc_spr_602_tcr)
3831 (ppc_spr_403_tcr, ppc_spr_ibr, ppc_spr_pit, ppc_spr_esasrr)
3832 (ppc_spr_tbhi, ppc_spr_tblo, ppc_spr_srr2, ppc_spr_sebr)
3833 (ppc_spr_srr3, ppc_spr_ser, ppc_spr_hid0, ppc_spr_dbsr)
3834 (ppc_spr_hid1, ppc_spr_iabr, ppc_spr_dbcr, ppc_spr_iac1)
3835 (ppc_spr_dabr, ppc_spr_iac2, ppc_spr_dac1, ppc_spr_dac2)
3836 (ppc_spr_l2cr, ppc_spr_dccr, ppc_spr_ictc, ppc_spr_iccr)
3837 (ppc_spr_thrm1, ppc_spr_pbl1, ppc_spr_thrm2, ppc_spr_pbu1)
3838 (ppc_spr_thrm3, ppc_spr_pbl2, ppc_spr_fpecr, ppc_spr_lt)
3839 (ppc_spr_pir, ppc_spr_pbu2): New enum constants for PowerPC
3840 special-purpose register numbers.
3841
3842 * rs6000-tdep.c (registers_860): Correct register name. (No PPC
3843 manual mentions 'md_twb', but many mention 'm_twb', and at that
3844 point in the register list.)
3845
3846 2004-07-14 Andrew Cagney <cagney@gnu.org>
3847
3848 * utils.c (internal_warning_problem): Fix typo, "internal-warning"
3849 instead of "internal-error".
3850
3851 2004-07-10 Joel Brobecker <brobecker@gnat.com>
3852
3853 * hppa-hpux-tdep.c: Fix a compilation failure due to a comment
3854 that was inserted inside a comment.
3855
3856 2004-07-10 Randolph Chung <tausq@debian.org>
3857
3858 * hppa-hpux-tdep.c (hppa_hpux_som_find_global_pointer): New
3859 function.
3860 (hppa_hpux_push_dummy_code): New function.
3861 (hppa_hpux_init_abi): Set push_dummy_code and call_dummy_location.
3862 Set find_global_pointer method.
3863
3864 2004-07-10 Mark Kettenis <kettenis@gnu.org>
3865
3866 * NEWS: Mention BSD libkvm interface.
3867
3868 2004-07-10 Michael Snyder <msnyder@redhat.com>
3869
3870 * symfile.c (generic_load): Comment typo.
3871 * stack.c (get_selected_block): Ditto.
3872 * regcache.c (regcache_cooked_read): Ditto.
3873 * monitor.c (monitor_debug): Ditto.
3874 * mips-tdep.c (mips_read_pc): Ditto.
3875 * i386-linux-nat.c (ps_get_thread_area): Ditto.
3876 * gdb_mbuild.sh: Ditto.
3877 * gdbarch.sh: Ditto.
3878 * gdbarch.h: Ditto.
3879
3880 2004-07-09 Paul N. Hilfinger <Hilfinger@gnat.com>
3881
3882 * ada-tasks.c: Remove file.
3883
3884 Remove ARI problems:
3885
3886 * ada-exp.y (write_var_from_sym): Reformat to put operator at
3887 beginning of line.
3888
3889 * ada-lang.c (MAX_OF_SIZE): Rename max_of_size.
3890 Add comment.
3891 Add comment concerning MAX_OF_TYPE and MIN_OF_TYPE.
3892 (MIN_OF_SIZE): Rename min_of_size. Add comment.
3893 (UMAX_OF_SIZE): Renmae umax_of_size. Add comment.
3894 (UMIN_OF_SIZE): Remove.
3895 (max_of_type): New function to replace orphan macro in gdbtypes.h
3896 (min_of_type): Ditto.
3897 (discrete_type_high_bound): Use max_of_type.
3898 (discrete_type_low_bound): Use min_of_type.
3899 (possible_user_operator_p): Move operator to beginning of line.
3900 (ada_is_variant_part): Ditto.
3901 (ensure_lval): Rewrite to avoid deprecated operations.
3902 (ada_finish_decode_line_1): Use gdbarch_convert_from_func_ptr_addr
3903 rather than adding DEPRECATED_FUNCTION_START_OFFSET.
3904 (ada_enum_name): Remove assignments in 'if' statements.
3905 (build_ada_types): Add gdbarch parameter.
3906 (_initialize_ada_language): Replace deprecated_register_gdbarch_swap
3907 with gdbarch_data_register_post_init.
3908 Use add_setshow_uinteger_cmd rather than add_set_cmd and
3909 add_show_from_set.
3910
3911 * ada-valprint.c (inspect_it): Remove declaration.
3912 (repeat_count_threshold): Remove declaration.
3913 (ada_print_floating): Remove assignments in 'if' statements.
3914 (print_str): Move operator to beginning of line.
3915
3916 2004-07-08 Jim Blandy <jimb@redhat.com>
3917
3918 * rs6000-tdep.c (registers_powerpc_nofp): Unused; deleted.
3919
3920 2004-07-08 Bob Rossi <bob@brasko.net>
3921
3922 * symtab.c (lookup_symtab): check return value of symtab_to_fullname
3923
3924 2004-07-06 Jeff Johnston <jjohnstn@redhat.com>
3925
3926 * language.h (struct_language_defn): Add new function pointer:
3927 la_class_name_from_physname. Also add new prototype for
3928 language_class_name_from_physname.
3929 * language.c (language_class_name_from_physname): New function.
3930 (unk_lang_class_name): Ditto.
3931 (unknown_language_defn, auto_language_defn): Change
3932 to add unk_lang_class_name function pointer for
3933 la_class_name_from_physname.
3934 (local_language_defn): Ditto.
3935 * dwarf2read.c (guess_structure_name): Change to call
3936 language_class_name_from_physname.
3937 (determine_class_name): Ditto.
3938 * cp-support.c (class_name_from_physname): Renamed.
3939 (cp_class_name_from_physname): New name of function.
3940 * cp-support.h: Ditto.
3941 * c-lang.c (c_language_defn): Change to add NULL
3942 for class_name_from_physname function pointer.
3943 (cplus_language_defn): Change to add cp_class_name_from_physname.
3944 * jv-lang.c (java_class_name_physname): New function.
3945 (java_find_last_component): New static routine.
3946 (java_language_defn): Add java_class_name_from_physname pointer.
3947 * ada-lang.c (ada_language_defn): Change to add NULL
3948 for class_name_from_physname function pointer.
3949 * f-lang.c (f_language_defn): Ditto.
3950 * m2-lang.c (m2_language_defn): Ditto.
3951 * objc-lang.c (objc_language_defn): Ditto.
3952 * p-lang.c (pascal_language_defn): Ditto.
3953 * scm-lang.c (scm_language_defn): Ditto.
3954
3955 2004-07-06 Andrew Cagney <cagney@gnu.org>
3956
3957 Patch from Bart Robinson.
3958 * corelow.c (core_open): Add variable "flags", or in O_LARGEFILE.
3959 (O_LARGEFILE): Define to 0, if not defined.
3960
3961 2004-07-03 Mark Kettenis <kettenis@gnu.org>
3962
3963 * m68kbsd-nat.c: Include "gdbcore.h", <sys/types.h>,
3964 <machine/pcb.h> and "bsd-kvm.h".
3965 (PCB_REGS_FP, PCB_REGS_SP): Define if not already defined.
3966 (m68kbsd_supply_pcb): New function.
3967 (_initialize_m68kbsd_nat): New prototype and function.
3968 * Makefile.in (m68kbsd-nat.o): Update dependencies.
3969 * config/m68k/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
3970 (LOADLIBES): New variable.
3971 * config/m68k/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
3972 (LOADLIBES): New variable.
3973
3974 * bsd-kvm.c (bsd_kvm_cmdlist): Remove unecessary initialization.
3975
3976 2004-07-03 Mark Kettenis <kettenis@gnu.org>
3977
3978 * bsd-kvm.c: Include "cli/cli-cmds.h", "command.h", "value.h" and
3979 <sys/proc.h>.
3980 (bsd_kvm_cmdlist): New variable.
3981 (bsd_kvm_cmd, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd): New functions.
3982 (bsd_kvm_add_target): Register "kvm" command prefix, "kvm pcb"
3983 command and "kvm proc" command.
3984 * Makefile.in (bsd-kvm.o): Update dependencies.
3985
3986 2004-07-02 Mark Kettenis <kettenis@gnu.org>
3987
3988 * osabi.c: Update copyright year.
3989 (generic_elf_osabi_sniffer): Tweak comment. Look for OS-specific
3990 notes if EI_OSABI is set to ELFOSABI_HPUX.
3991
3992 2004-07-01 Michael Snyder <msnyder@redhat.com>
3993
3994 * win32-nat.c (core_dll_symbols_add): Re-indent a small section
3995 that seems to have gotten whacked out of line.
3996
3997 2004-07-01 Mark Kettenis <kettenis@gnu.org>
3998
3999 * dbxread.c (process_one_symbol) [PCC_SOL_BROKEN]: Remove dead
4000 code.
4001
4002 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
4003
4004 * ada-lang.c (decode_packed_array): Minor change to comment.
4005 (ada_value_slice_ptr): New function.
4006 (ada_value_slice): New function.
4007 (ada_evaluate_subexp): Remove XVS-suffix code from subscripting
4008 test. Don't know why it is there.
4009 Change slice code to use ada_value_slice_ptr and ada_value_slice, and
4010 to avoid dereferencing huge arrays from which one is slicing.
4011 (empty_array): Correct to return an array rather than
4012 a subrange value.
4013 * ada-valprint.c (print_optional_low_bound): Don't print lower bound
4014 on empty arrays (let'em use 'FIRST instead).
4015
4016 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
4017
4018 Address complaints from gdb_ari.sh:
4019
4020 * ada-exp.y: Include gdb_string.h rather than string.h.
4021 (convert_char_literal): Reformat declaration.
4022 * ada-lang.h: Include opaque struct declaration for struct frame_info.
4023 * ada-lex.l: Change use of free to xfree (the macro would do so
4024 anyway, but this is harmless).
4025 Include gdb_string.h rather than string.h.
4026 * ada-valprint.c (ada_val_print_stub): Change PTR => void*.
4027
4028 * ada-lang.c (parse): Remove K&Rism in parameter list.
4029 (is_name_suffix): Correct Linux => GNU/Linux in comment.
4030
4031 2004-06-30 Mark Kettenis <kettenis@gnu.org>
4032
4033 * dbxread.c (process_one_symbol) [SUN_FIXED_LBRAC_BUG]: Remove
4034 dead code.
4035
4036 2004-06-30 Mark Kettenis <kettenis@gnu.org>
4037
4038 * alphabsd-nat.c: Update copyright year.
4039 (getregs_supplies): Use ALPHA_PC_REGNUM instead of PC_REGNUM.
4040
4041 2004-06-29 Joel Brobecker <brobecker@gnat.com>
4042
4043 * i386-cygwin-tdep.c (i386_cygwin_skip_trampoline_code): New function.
4044 (i386_cygwin_in_solib_call_trampoline): New function.
4045 (i386_cygwin_init_abi): Initialize the in_solib_call_trampoline
4046 and skip_trampoline_code gdbarch methods.
4047
4048 2004-06-29 Jim Blandy <jimb@redhat.com>
4049
4050 * Makefile.in (gdb_callback_h): Renamed from callback_h to the
4051 name actually used in the dependency lists.
4052
4053 2004-06-29 Randolph Chung <tausq@debian.org>
4054
4055 * NEWS (New native configurations): Mention GNU/Linux/hppa.
4056
4057 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
4058
4059 * win32-nat.c (child_pid_to_exec_file): New function.
4060 (init_child_ops): Add child_pid_to_exec_file as to_pid_to_exec_file
4061 functionality.
4062
4063 2004-06-28 Andrew Cagney <cagney@gnu.org>
4064
4065 * defs.h (xstrvprintf): Declare.
4066 * utils.c (xstrvprintf): New function.
4067 (internal_vproblem, xstrprintf, xasprintf)
4068 (vfprintf_maybe_filtered, vfprintf_unfiltered): Use xstrvprintf.
4069 * serial.c (serial_printf): Ditto.
4070 * complaints.c (vcomplaint): Ditto.
4071
4072 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
4073
4074 * infcmd.c (attach_command): Move call to target_terminal_inferior
4075 behind loading symbol table.
4076
4077 2004-06-28 Andrew Cagney <cagney@gnu.org>
4078
4079 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Revert 2004-06-24
4080 change - add back extern deprecated_ui_loop_hook declaration.
4081
4082 2004-06-28 Andrew Cagney <cagney@gnu.org>
4083
4084 * xcoffsolib.c (xcoff_solib_address): Replace xasprintf with
4085 xstrprintf.
4086 * varobj.c (varobj_gen_name, create_child, c_name_of_child)
4087 (c_value_of_variable): Ditto.
4088 * utils.c (internal_vproblem): Ditto.
4089 * solib-aix5.c (build_so_list_from_mapfile): Ditto.
4090 * remote.c (add_packet_config_cmd): Ditto.
4091 * remote-rdp.c (rdp_set_command_line): Ditto.
4092 * regcache.c (regcache_dump): Ditto.
4093 * frv-tdep.c (new_variant, new_variant): Ditto.
4094 * fbsd-proc.c (child_pid_to_exec_file): Ditto.
4095 (fbsd_find_memory_regions): Ditto.
4096 * breakpoint.c (create_thread_event_breakpoint)
4097 (create_breakpoints): Ditto.
4098 * aix-thread.c (aix_thread_pid_to_str): Ditto.
4099 * ada-lang.c (is_package_name): Ditto. Also delete xmalloc call.
4100
4101 2004-06-28 Joel Brobecker <brobecker@gnat.com>
4102
4103 * ada-lang.c: Re-indent file, with some massaging to help indent
4104 a bit when the result is otherwise really too ugly.
4105
4106 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
4107
4108 * frame.h (struct frame_id): Change bit field type of stack_addr_p,
4109 code_addr_p and special_addr_p to 'unsigned int'.
4110
4111 2004-06-27 Mark Kettenis <kettenis@gnu.org>
4112
4113 * i386v4-nat.c: Update copyright year and tweak comment.
4114 (regmap): Remove trailing comma.
4115 (supply_gregset): Rename local variable i to regnum. Call
4116 regcache_raw_supply instead of supply_register.
4117 (fill_gregset): Rename argument regno to regnum. Call
4118 regcache_raw_collect instead of regcache_collect.
4119
4120 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
4121
4122 * frame.h (struct frame_id): New fields stack_addr_p, code_addr_p
4123 and special_addr_p.
4124 (frame_id_build, frame_id_build_special): Update comments.
4125 (frame_id_build_wild): New prototype.
4126 * frame.c (frame_id_build, frame_id_build_special): Fill in new
4127 struct frame_id fields.
4128 (frame_id_build_wild): New function.
4129 (frame_id_eq, frame_id_inner): Use new struct frame_id fields.
4130
4131 2004-06-27 Mark Kettenis <kettenis@gnu.org>
4132
4133 * config/djgpp/fnchange.lst: Add entries for hppabsd-nat.c and
4134 hppabsd-tdep.c.
4135
4136 2004-06-27 Joel Brobecker <brobecker@gnat.com>
4137
4138 * ada-lang.c: Minor reformatting to conform to GNU coding standards.
4139
4140 2004-06-27 Joel Brobecker <brobecker@gnat.com>
4141
4142 * ada-lang.c: Re-indent file.
4143
4144 2004-06-27 Joel Brobecker <brobecker@gnat.com>
4145
4146 * ada-lang.c (symtab_symbol_info): Remove unused declaration.
4147 (no_symtab_msg): Likewise.
4148
4149 2004-06-27 Andreas Schwab <schwab@suse.de>
4150
4151 * source.c: Fix whitespace.
4152
4153 2004-06-27 Mark Kettenis <kettenis@gnu.org>
4154
4155 * configure.in: Include <sys/param.h> for td_pcb test.
4156 * configure: Regenerated.
4157
4158 * i386nbsd-nat.c: New file.
4159 * Makefile.in (ALLDEPFILES): Add i386nbsd-nat.c, i386nbsd-tdep.c,
4160 i386obsd-nat.c and i386obsd-tdep.c.
4161 (i386nbsd-nat.o): New dependency.
4162 * config/i386/obsd.mh (NATDEPFILES): Add i386nbsd-nat.o and
4163 bsd-kvm.o.
4164 (LOADLIBES): New variable.
4165 * config/i386/nbsdelf.mh (NATDEPFILES): Add i386nbsd-nat.o and
4166 bsd-kvm.o.
4167 (LOADLIBES): New variable.
4168
4169 * config/i386/fbsd64.mh (NATDEPFILES): Add bsd-kvm.o.
4170 (LOADLIBES): New variable.
4171
4172 * bsd-kvm.c (bsd_kvm_fetch_registers): Directly return after
4173 fetching from BSD_KVM_PADDR. Correctly lookup address for
4174 "_thread0".
4175
4176 * amd64fbsd-nat.c: Include <sys/types.h, <machine/pcb.h> and
4177 "bsd-kvm.h".
4178 (amd64fbsd_supply_pcb): New funcion.
4179 (_initialize_amd64fbsd_nat): Enable libkvm interface.
4180
4181 2004-06-27 <david@streamline-computing.com>
4182
4183 Partial fix for PR cli/1056.
4184 * valarith.c: Check for zero in division and remainder
4185 evaluation.
4186
4187 2004-06-27 Mark Kettenis <kettenis@gnu.org>
4188
4189 * i387-tdep.c: Remove excessive whitespace.
4190
4191 2004-06-26 Andrew Cagney <cagney@gnu.org>
4192
4193 * gdb-events.sh (deprecated_set_gdb_event_hooks): Deprecated.
4194 * gdb-events.h, gdb-events.c: Re-generate.
4195 * tui/tui-hooks.c (tui_install_hooks): Update.
4196 (tui_remove_hooks): Update.
4197 * mi/mi-cmd-break.c (mi_cmd_break_insert): Update.
4198
4199 2004-06-26 Mark Kettenis <kettenis@gnu.org>
4200
4201 * amd64fbsd-nat.c: Don't include <sys/procfs.h> and "gregset.h".
4202 (gregset_t, fpregset_t): Remove typedefs.
4203 (REG_OFFSET): Rename argument.
4204 (amd64bsd_r_reg_offset): Rename from reg_offset.
4205 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
4206 Remove functions.
4207 (_initialize_amd64fbsd_nat): Use amd64fbsd64_r_reg_offset instead
4208 of reg_offset.
4209 * Makefile.in (amd64fbsd-nat.o): Update dependencies.
4210
4211 * amd64-nat.c (amd64_supply_native_gregset): Fix comment.
4212
4213 * vax-tdep.c: Tweak comment.
4214
4215 Add OpenBSD/hppa support.
4216 * NEWS (New native configurations): Mention OpenBSD/hppa.
4217 * hppabsd-nat.c, hppabsd-tdep.c, config/pa/obsd.mh,
4218 config/pa/obsd.mt, config/pa/nm-obsd.h, config/pa/tm-bsd.h: New
4219 files.
4220 * Makefile.in (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
4221 (hppabsd-nat.o, hppabsd-tdep.c): New dependencies.
4222 * configure.host: Add hppa*-*-openbsd*.
4223 * configure.tgt: Add hppa*-*-openbsd*.
4224
4225 2004-06-25 Andrew Cagney <cagney@gnu.org>
4226
4227 * defs.h (deprecated_ui_loop_hook): Deprecated.
4228 * wince.c (child_wait): Update.
4229 * win32-nat.c (child_wait): Update.
4230 * v850ice.c (v850ice_wait): Update.
4231 * top.c (deprecated_ui_loop_hook): Update.
4232 * serial.h: Update.
4233 * ser-unix.c (do_hardwire_readchar, do_hardwire_readchar)
4234 (do_unix_readchar): Update.
4235 * ser-tcp.c (net_open): Update.
4236 * remote-sim.c (gdb_os_poll_quit): Update.
4237 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Update.
4238
4239 2004-06-24 Andrew Cagney <cagney@gnu.org>
4240
4241 * defs.h (deprecated_pre_add_symbol_hook)
4242 (deprecated_post_add_symbol_hook): Deprecated.
4243 * symfile.c (symbol_file_add_with_addrs_or_offsets)
4244 (symbol_file_add_with_addrs_or_offsets): Update references.
4245
4246 2004-06-24 Andrew Cagney <cagney@gnu.org>
4247
4248 * defs.h (post_add_symbol_hook, pre_add_symbol_hook)
4249 (ui_loop_hook, selected_frame_level_changed_hook): Declare.
4250 * wince.c (ui_loop_hook): Delete extern declaration.
4251 * win32-nat.c (ui_loop_hook): Delete extern declaration..
4252 * v850ice.c (ui_loop_hook): Delete extern declaration..
4253 * ser-unix.c (ui_loop_hook): Delete extern declaration..
4254 * ser-tcp.c (ui_loop_hook): Delete extern declaration..
4255 * remote-sim.c (ui_loop_hook): Delete extern declaration..
4256 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Delete extern.
4257 ui_loop_hook declaration.
4258
4259 2004-06-24 Andrew Cagney <cagney@gnu.org>
4260
4261 * objfiles.h (struct entry_info): Delete entry_func_lowpc and
4262 entry_func_highpc fields.
4263 * objfiles.c (init_entry_point_info): Do not clear
4264 entry_func_lowpc and entry_func_highpc.
4265 (objfile_relocate): Do not relocate entry_func_lowpc and
4266 entry_func_highpc.
4267 * dwarfread.c (read_func_scope): Do not set entry_func_lowpc and
4268 entry_func_highpc.
4269 * dwarf2read.c (read_func_scope): Do not set entry_func_lowpc and
4270 entry_func_highpc.
4271 * blockframe.c (legacy_frame_chain_valid): Replace tests against
4272 entry_func_lowpc and entry_func_highpc with call to
4273 inside_entry_func.
4274
4275 2004-06-24 Mark Kettenis <kettenis@gnu.org>
4276
4277 * sparc64-tdep.c (sparc64_store_arguments): Fix passing
4278 quad-precision floating point arguments in registers.
4279
4280 2004-06-24 Mark Kettenis <kettenis@gnu.org>
4281
4282 From Michael Mueller <m.mueller99@kay-mueller.de>:
4283 * sparc64-tdep.c (sparc64_frame_base_address): Take BIAS into
4284 account.
4285
4286 2004-06-22 Jeff Johnston <jjohnstn@redhat.com>
4287
4288 * infrun.c (handle_inferior_event): Initialize stopped_by_watchpoint
4289 to -1.
4290 * breakpoint.c (bpstat_stop_status): Move check for ignoring
4291 untriggered watchpoints to a separate if clause. Update function
4292 comment regarding STOPPED_BY_WATCHPOINT argument.
4293
4294 2004-06-22 Jim Blandy <jimb@redhat.com>
4295
4296 * gdbarch.sh: Doc fix.
4297
4298 2004-06-21 Martin Hunt <hunt@redhat.com>
4299 Kevin Buettner <kevinb@redhat.com>
4300
4301 * config/mips/tm-mips.h (SP_REGNUM): Delete define.
4302 * mips-tdep.h (MIPS_SP_REGNUM): Define.
4303 * mips-tdep.c (mips_gdbarch_init): Set SP_REGNUM via call
4304 to set_gdbarch_sp_regnum(). Use cooked register number.
4305 (SP_REGNUM): Replace all occurrences with MIPS_SP_REGNUM.
4306
4307 2004-06-21 Andrew Cagney <cagney@gnu.org>
4308
4309 * gdbarch.sh: When the macro field is empty, do not generate a
4310 macro definition. When the macro field is "=", generate the macro
4311 name from the upper-case function name.
4312 (NUM_REGS, NUM_PSEUDO_REGS, SP_REGNUM, PC_REGNUM, PS_REGNUM)
4313 (FP0_REGNUM, STAB_REG_TO_REGNUM, ECOFF_REG_TO_REGNUM)
4314 (DWARF_REG_TO_REGNUM, SDB_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM)
4315 (REGISTER_NAME, DEPRECATED_REGISTER_VIRTUAL_TYPE)
4316 (DEPRECATED_REGISTER_BYTES, DEPRECATED_REGISTER_BYTE)
4317 (DEPRECATED_REGISTER_RAW_SIZE, DEPRECATED_REGISTER_VIRTUAL_SIZE)
4318 (DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_FP_REGNUM)
4319 (DEPRECATED_TARGET_READ_FP, DEPRECATED_PUSH_ARGUMENTS)
4320 (DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP)
4321 (DEPRECATED_REGISTER_SIZE, CALL_DUMMY_LOCATION)
4322 (DEPRECATED_DO_REGISTERS_INFO, REGISTER_SIM_REGNO)
4323 (REGISTER_BYTES_OK, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER)
4324 (GET_LONGJMP_TARGET, DEPRECATED_INIT_FRAME_PC)
4325 (BELIEVE_PCC_PROMOTION, DEPRECATED_GET_SAVED_REGISTER)
4326 (CONVERT_REGISTER_P, REGISTER_TO_VALUE, VALUE_TO_REGISTER)
4327 (POINTER_TO_ADDRESS, ADDRESS_TO_POINTER, INTEGER_TO_ADDRESS)
4328 (DEPRECATED_POP_FRAME, DEPRECATED_STORE_STRUCT_RETURN)
4329 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE)
4330 (DEPRECATED_EXTRACT_RETURN_VALUE, DEPRECATED_STORE_RETURN_VALUE)
4331 (DEPRECATED_USE_STRUCT_CONVENTION)
4332 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
4333 (DEPRECATED_FRAME_INIT_SAVED_REGS)
4334 (DEPRECATED_INIT_EXTRA_FRAME_INFO, SKIP_PROLOGUE, INNER_THAN)
4335 (BREAKPOINT_FROM_PC, MEMORY_INSERT_BREAKPOINT)
4336 (MEMORY_REMOVE_BREAKPOINT, DECR_PC_AFTER_BREAK)
4337 (DEPRECATED_FUNCTION_START_OFFSET, FRAME_ARGS_SKIP)
4338 (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION, DEPRECATED_FRAME_CHAIN)
4339 (DEPRECATED_FRAME_CHAIN_VALID, DEPRECATED_FRAME_SAVED_PC)
4340 (DEPRECATED_FRAME_ARGS_ADDRESS, DEPRECATED_FRAME_LOCALS_ADDRESS)
4341 (DEPRECATED_SAVED_PC_AFTER_CALL, FRAME_NUM_ARGS)
4342 (DEPRECATED_STACK_ALIGN, DEPRECATED_REG_STRUCT_HAS_ADDR)
4343 (FRAME_RED_ZONE_SIZE, ADDR_BITS_REMOVE, SMASH_TEXT_ADDRESS)
4344 (SOFTWARE_SINGLE_STEP, SKIP_TRAMPOLINE_CODE)
4345 (IN_SOLIB_CALL_TRAMPOLINE, IN_SOLIB_RETURN_TRAMPOLINE)
4346 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL)
4347 (NAME_OF_MALLOC, CANNOT_STEP_BREAKPOINT)
4348 (HAVE_NONSTEPPABLE_WATCHPOINT, ADDRESS_CLASS_TYPE_FLAGS)
4349 (FETCH_POINTER_ARGUMENT): Replace the macro name with "=".
4350
4351 2004-06-21 Andrew Cagney <cagney@gnu.org>
4352
4353 * gdbarch.sh: For gdbarch_dump, print the "function" rather than
4354 macro name, and the function rather than macro value. Only wrap
4355 macro print statements in #ifdef. Move format logic to where it
4356 is needed.
4357 * gdbarch.c: Re-generate.
4358
4359 * gdbarch.sh (read): Delete "print_p" and "description", add
4360 "garbage_at_eol". Check for non-empty garbage at end-of-line.
4361 Delete references to print_p.
4362 (TARGET_ARCHITECTURE): Delete print predicate.
4363 * gdbarch.c: Re-generate.
4364
4365 * gdbarch.sh: Check that multi-arch methods do not provide a
4366 macro.
4367 (register_type, unwind_dummy_id, push_dummy_call, push_dummy_code)
4368 (print_registers_info, print_float_info, print_vector_info)
4369 (adjust_breakpoint_address, remote_translate_xfer_address)
4370 (construct_inferior_arguments, skip_solib_resolver, unwind_pc)
4371 (address_class_type_flags_to_name, unwind_sp): Remove the macro
4372 name from the multi-arch definition.
4373
4374 2004-06-20 Andrew Cagney <cagney@gnu.org>
4375
4376 * gdbarch.sh: Sort by the function, instead of macro name.
4377 * gdbarch.c: Re-generate.
4378
4379 2004-06-20 Andrew Cagney <cagney@gnu.org>
4380
4381 * gdbarch.sh: Use the function, instead of macro name in
4382 errors and the log file.
4383 (return_value): Remove stray ":" in spec.
4384
4385 * gdbarch.sh (RETURN_VALUE): Default to legacy_return_value.
4386 * gdbarch.h, gdbarch.c: Re-generate.
4387 * Makefile.in (arch-utils.o): Update dependencies.
4388 * values.c (using_struct_return): Move code calling
4389 USE_STRUCT_CONVENTION to legacy_return_value, simplify.
4390 * stack.c (return_command): Move code calling STORE_RETURN_VALUE
4391 to legacy_return_value, simplify.
4392 * infcmd.c (print_return_value): Move code calling
4393 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_RETURN_VALUE
4394 to legacy_return_value, simplify.
4395 * infcall.c (call_function_by_hand): Move code calling
4396 EXTRACT_RETURN_VALUE to legacy_return_value, simplify.
4397 * arch-utils.c: Update copyright. Include "gdbcore.h".
4398 (legacy_return_value): New function.
4399 * arch-utils.h: Update copyright.
4400 (legacy_return_value): Declare.
4401
4402 2004-06-20 Andrew Cagney <cagney@gnu.org>
4403
4404 * gdbarch.sh (DEPRECATED_USE_STRUCT_CONVENTION): Deprecated.
4405 * gdbarch.h, gdbarch.c: Re-generate.
4406 * values.c (using_struct_return): Update call.
4407 * mcore-tdep.c: Update comment.
4408 * infcall.c (call_function_by_hand): Update comment.
4409 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4410 * arch-utils.h (always_use_struct_convention): Update.
4411 * v850-tdep.c (v850_gdbarch_init): Update.
4412 * sh64-tdep.c (sh64_gdbarch_init): Update.
4413 * sh-tdep.c (sh_gdbarch_init): Update.
4414 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4415 * mips-tdep.c (mips_gdbarch_init): Update.
4416 * mcore-tdep.c (mcore_gdbarch_init): Update.
4417 * m32r-tdep.c (m32r_gdbarch_init): Update.
4418 * ia64-tdep.c (ia64_gdbarch_init): Update.
4419 * h8300-tdep.c (h8300_gdbarch_init): Update.
4420 * frv-tdep.c (frv_gdbarch_init): Update.
4421 * cris-tdep.c (cris_gdbarch_init): Update.
4422 * arm-tdep.c (arm_gdbarch_init): Update.
4423 * alpha-tdep.c (alpha_gdbarch_init): Update.
4424
4425 2004-06-18 Michael Chastain <mec.gnu@mindspring.com>
4426
4427 * PROBLEMS: Add more specific information, and a work-around,
4428 for PR gdb/1458.
4429
4430 2004-06-18 Andrew Cagney <cagney@gnu.org>
4431
4432 * gdbarch.sh (DEPRECATED_FUNCTION_START_OFFSET): Deprecated.
4433 * gdbarch.h, gdbarch.c: Re-generate.
4434 * ada-lang.c (ada_finish_decode_line_1): Update.
4435 * infrun.c (handle_inferior_event): Update.
4436 * infcall.c (find_function_addr): Update.
4437 * linespec.c (minsym_found): Update.
4438 * symtab.c (find_function_start_sal, skip_prologue_using_sal):
4439 Update.
4440 * blockframe.c (legacy_frameless_look_for_prologue): Update.
4441 * cli/cli-cmds.c (disassemble_command): Update.
4442 * vax-tdep.c (vax_gdbarch_init): Update.
4443
4444 2004-06-18 Mark Kettenis <kettenis@gnu.org>
4445
4446 * i386-tdep.c (i386_collect_fpregset): Fix comment.
4447
4448 2004-06-17 Andrew Cagney <cagney@gnu.org>
4449
4450 GDB 6.1.1 released from the GDB 6.1 branch.
4451 * NEWS: Merge in 6.1.1 NEWS from 6.1 branch.
4452 * PROBLEMS: Ditto.
4453
4454 2004-06-16 Daniel Jacobowitz <dan@debian.org>
4455
4456 PR gdb/1658
4457 * dwarf2read.c (dwarf_decode_lines): Read the length of the extended
4458 operation as a uleb128. Found by Michael Coulter.
4459
4460 2004-06-16 Paul N. Hilfinger <Hilfinger@gnat.com>
4461
4462 * ada-tasks.c: Rename build_task_list to ada_build_task_list, and
4463 make it non-static.
4464 * ada-lang.h (task_control_block): declaration moved from ada-task.c
4465 to ada-lang.h; this is needed to be able to implement the kill command
4466 in multi-task mode.
4467 (task_ptid): Ditto.
4468 (task_entry): Ditto.
4469 (task_list): Ditto.
4470 (ada_build_task_list): Ditto.
4471
4472 * ada-lang.c: Conditionalize routines and data structures related
4473 to breakpoints, exceptions, completion, and symbol caching on
4474 GNAT_GDB, since these are not yet used in the submitted public sources.
4475 (ada_main_name): Editorial: Move definition out of exception-related
4476 code.
4477
4478 2004-06-15 Andrew Cagney <cagney@gnu.org>
4479
4480 * mips-tdep.c (non_heuristic_proc_desc): Delete call to
4481 deprecated_pc_in_call_dummy.
4482
4483 2004-06-15 Alan Modra <amodra@bigpond.net.au>
4484
4485 * dsrec.c (load_srec, make_srec): Use bfd_get_section_size instead of
4486 bfd_get_section_size_before_reloc or _raw_size.
4487 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
4488 * dwarf2read.c (dwarf2_locate_sections): Likewise.
4489 (dwarf2_read_section): Likewise.
4490 * elfread.c (elf_locate_sections): Likewise.
4491 * gcore.c (derive_heap_segment): Likewise.
4492 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
4493 * remote-e7000.c (e7000_load): Likewise.
4494 * remote-m32r-sdi.c (m32r_load): Likewise.
4495 * remote-mips.c (mips_load_srec): Likewise.
4496 (pmon_load_fast): Likewise.
4497 * remote.c (compare_sections_command): Likewise.
4498 * symfile.c (add_section_size_callback): Likewise.
4499 (load_section_callback): Likewise.
4500 (pc_in_unmapped_range): Likewise.
4501 (pc_in_mapped_range): Likewise.
4502 (sections_overlap): Likewise.
4503 (list_overlays_command): Likewise.
4504 (simple_overlay_update_1): Likewise.
4505 (simple_overlay_update): Likewise.
4506 * tracepoint.c (remote_set_transparent_ranges): Likewise.
4507 * win32-nat.c (core_section_load_dll_symbols): Likewise.
4508
4509 2004-06-14 Randolph Chung <tausq@debian.org>
4510
4511 * Makefile.in (hppa-hpux-tdep.o): Update dependency.
4512 * hppa-hpux-tdep.c (hp_cxx_exception_support_initialized): Make
4513 static.
4514 (hppa_hpux_inferior_created): New function.
4515 (hppa_hpux_init_abi): Register observer.
4516 * symfile.c (hp_cxx_exception_support_initialized)
4517 (RESET_HP_UX_GLOBALS): Remove HPUXHPPA specific hacks.
4518 (symbol_file_add_main_1, symbol_file_clear): Likewise.
4519
4520 2004-06-14 Randolph Chung <tausq@debian.org>
4521
4522 * MAINTAINERS (Write After Approval): Alphabetize my entry
4523 correctly.
4524
4525 2004-06-14 Andrew Cagney <cagney@gnu.org>
4526
4527 * MAINTAINERS (testsuite): List Michael Chastain as the lead
4528 testsuite maintainer.
4529
4530 2004-06-13 Andrew Cagney <cagney@gnu.org>
4531
4532 * infcmd.c (print_return_value): Fix logic, allow
4533 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS when struct_return.
4534
4535 * gdbarch.sh: For predicates, do not check GDB_MULTI_ARCH when
4536 defining any macros.
4537 * gdbarch.h: Re-generate.
4538
4539 * gdbarch.sh: Delete "level" attribute. Only check for a macro
4540 redefinition when multi-arch greater than GDB_MULTI_ARCH_PARTIAL.
4541 * gdbarch.h: Re-generate.
4542
4543 * values.c (generic_use_struct_convention): Don't check gcc_p.
4544
4545 * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE)
4546 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Delete.
4547 * gdbarch.h, gdbarch.c: Regenerate.
4548 * ns32k-tdep.h (NS32K_MAX_REGISTER_RAW_SIZE)
4549 (NS32K_MAX_REGISTER_VIRTUAL_SIZE): Delete macros.
4550 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
4551 deprecated_max_register_raw_size and
4552 deprecated_max_register_virtual_size.
4553 * v850-tdep.c (v850_gdbarch_init): Ditto.
4554 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
4555 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4556 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4557 * cris-tdep.c (cris_gdbarch_init): Ditto.
4558
4559 * gdbarch.sh (RETURN_VALUE_ON_STACK): Delete method.
4560 * gdbarch.h, gdbarch.c: Re-generate.
4561 * m68hc11-tdep.c (m68hc11_return_value_on_stack): Delete function.
4562 (m68hc11_use_struct_convention): Delete function.
4563 (m68hc11_extract_struct_value_address): Delete function.
4564 (m68hc11_return_value): New function.
4565 (m68hc11_gdbarch_init): Instead of store_return_value,
4566 extract_return_value, return_value_on_stack,
4567 deprecated_extract_struct_value_address and use_struct_convention,
4568 set return_value.
4569 * values.c (using_struct_return): Do not call
4570 RETURN_VALUE_ON_STACK.
4571 * arch-utils.h (generic_return_value_on_stack_not): Delete
4572 declaration.
4573 * arch-utils.c (generic_return_value_on_stack_not): Delete
4574 function.
4575
4576 2004-06-12 Andrew Cagney <cagney@gnu.org>
4577
4578 * values.c (register_value_being_returned): Delete function.
4579 * infcmd.c (legacy_return_value): Delete function.
4580 * infcall.c (call_function_by_hand): Inline
4581 "register_value_being_returned", simplify.
4582 * values.c (using_struct_return): Update comment, refer to
4583 print_return_value instead of register_value_being_returned.
4584 * infcmd.c (print_return_value): Inline calls to
4585 register_value_being_returned and legacy_return_value. Simplify.
4586
4587 2004-06-11 Randolph Chung <tausq@debian.org>
4588
4589 * somread.c (som_symtab_read): Exclude gcc local symbols.
4590
4591 2004-06-11 Randolph Chung <tausq@debian.org>
4592
4593 * infrun.c (handle_inferior_event): Handle the case when a
4594 trampoline ends up in the runtime resolver, and if the trampoline
4595 has no name. Rearrange the code so that all the trampoline
4596 processing happens before other step-out-of-range handling.
4597
4598 2004-06-11 Martin Hunt <hunt@redhat.com>
4599
4600 * mips-tdep.c (mips_gdbarch_init): Recognize vr4120
4601 has no fpu.
4602
4603 2004-06-10 Andrew Cagney <cagney@gnu.org>
4604
4605 * blockframe.c (legacy_inside_entry_func): Delete.
4606 (legacy_frame_chain_valid): Inline call to
4607 legacy_inside_entry_func, simplify.
4608
4609 2004-06-10 Bob Rossi <bob@brasko.net>
4610
4611 * dbxread.c (read_dbx_symtab): Set pst->dirname when known.
4612 * dwarf2read.c (partial_die_info): Add dirname field.
4613 (dwarf2_build_psymtabs_hard): Set pst->dirname when known.
4614 (read_partial_die): Save away DW_AT_comp_dir.
4615 * defs.h (symtab_to_filename): Removed.
4616 * source.c (find_and_open_source): Added.
4617 (open_source_file): Just calls find_and_open_source.
4618 (symtab_to_filename): Removed.
4619 (symtab_to_fullname, psymtab_to_fullname): Added.
4620 * source.h (psymtab_to_fullname,symtab_to_fullname): Added.
4621 * symtab.c (lookup_symtab): Call symtab_to_fullname instead of
4622 symtab_to_filename.
4623 * symtab.h (partial_symtab): Add dirname field.
4624 * mi/mi-cmd-file.c (FILENAME,FULLNAME): Added.
4625 (mi_cmd_file_list_exec_source_file): Call new function
4626 symtab_to_fullname to find fullname.
4627 (mi_cmd_file_list_exec_source_files): Added.
4628 * mi/mi-cmds.c (mi_cmd_mi_cmds): Add -file-list-exec-source-files.
4629 * mi/mi-cmds.h (mi_cmd_file_list_exec_source_files): Added.
4630
4631 2004-06-10 Andrew Cagney <cagney@gnu.org>
4632
4633 * avr-tdep.c (avr_gdbarch_init): Do not set use_struct_convention
4634 to generic_use_struct_convention, the default value.
4635
4636 * mn10300-tdep.c (mn10300_type_align): Call internal_error instead
4637 of abort.
4638
4639 * ns32k-tdep.c (ns32k_push_arguments): New function.
4640 (ns32k_gdbarch_init): Set deprecated_push_arguments.
4641 * infcall.c (call_function_by_hand): Call error instead of
4642 legacy_push_arguments.
4643 * value.h (legacy_push_arguments): Delete declaration.
4644 * valops.c (legacy_push_arguments): Delete function.
4645 (value_push): Delete function.
4646
4647 2004-06-10 Brian Ford <ford@vss.fsi.com>
4648
4649 * coffread.c (coff_symfile_read): Prevent mixed debugging formats
4650 from corrupting/reinitializing the psymtab. Support DWARF 2 frame
4651 info.
4652 * dbxread.c (elfstab_build_psymtabs): Remove bogus comment.
4653
4654 2004-06-10 Andrew Cagney <cagney@gnu.org>
4655
4656 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Delete.
4657 * gdbarch.h, gdbarch.c: Re-generate.
4658 * frame.h (deprecated_pc_in_call_dummy): Delete "sp" and "fp"
4659 parameters.
4660 * dummy-frame.c (deprecated_pc_in_call_dummy): Update.
4661 * arm-tdep.c (arm_pc_is_thumb_dummy): Call
4662 deprecated_pc_in_call_dummy instead of
4663 DEPRECATED_PC_IN_CALL_DUMMY.
4664 (arm_skip_prologue): Ditto.
4665 * xstormy16-tdep.c (xstormy16_pop_frame, xstormy16_scan_prologue)
4666 (xstormy16_frame_saved_pc, xstormy16_frame_chain): Ditto.
4667 * v850-tdep.c (v850_find_callers_reg, v850_frame_chain)
4668 (v850_pop_frame, v850_frame_saved_pc, v850_frame_init_saved_regs):
4669 Ditto.
4670 * sh64-tdep.c (sh64_frame_chain, sh64_get_saved_pr)
4671 (sh64_init_extra_frame_info, sh64_get_saved_register)
4672 (sh64_pop_frame): Ditto.
4673 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
4674 * mcore-tdep.c (mcore_find_callers_reg, mcore_frame_saved_pc)
4675 (mcore_pop_frame, mcore_init_extra_frame_info): Ditto.
4676 * h8300-tdep.c (h8300_frame_chain, h8300_frame_saved_pc)
4677 (h8300_pop_frame): Ditto.
4678 * blockframe.c (legacy_inside_entry_func)
4679 (legacy_frame_chain_valid): Ditto.
4680 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update call
4681 to deprecated_pc_in_call_dummy.
4682
4683 2004-06-09 Andrew Cagney <cagney@gnu.org>
4684
4685 * gdbarch.sh (REGISTER_TO_VALUE, VALUE_TO_REGISTER): Do not
4686 provide a default value.
4687 (CONVERT_REGISTER_P): Default to generic_convert_register_p.
4688 * gdbarch.h, gdbarch.c: Re-generate.
4689 * arch-utils.c (generic_convert_register_p): Rename
4690 legacy_convert_register_p
4691 (legacy_register_to_value, legacy_value_to_register): Delete
4692 functions.
4693 * arch-utils.h (generic_convert_register_p): Rename
4694 legacy_convert_register_p.
4695 (legacy_register_to_value, legacy_value_to_register): Delete
4696 declarations.
4697
4698 * gdbarch.sh (DEPRECATED_REGISTER_CONVERT_TO_RAW)
4699 (DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL)
4700 (DEPRECATED_REGISTER_CONVERTIBLE): Delete.
4701 * gdbarch.h, gdbarch.c: Re-generate.
4702 * infcmd.c (default_print_registers_info): Simplify.
4703 * findvar.c (value_of_register): Simplify.
4704 * mi/mi-main.c (get_register): Simplify.
4705 * arch-utils.c (legacy_convert_register_p): Always return 0.
4706 (legacy_register_to_value, legacy_value_to_register): Always call
4707 internal_error.
4708
4709 * infptrace.c (child_xfer_memory) [CLEAR_INSN_CACHE]: Delete
4710 #ifdef CLEAR_INSN_CACHE code.
4711 * target.c (generic_mourn_inferior) [CLEAR_DEFERRED_STORES]:
4712 Delete #ifdef CLEAR_DEFERRED_STORES code.
4713
4714 * solib-svr4.c [HANDLE_SVR4_EXEC_EMULATORS]: Delete #ifdef code.
4715
4716 * config/ia64/tm-linux.h (TARGET_ELF64): Delete macro, Update
4717 copyright.
4718 * config/ia64/tm-aix.h (TARGET_ELF64): Ditto.
4719
4720 * config/mips/mipsv4.mh: Delete file.
4721
4722 * config/pa/tm-hppa64.h (HPREAD_ADJUST_STACK_ADDRESS): Delete
4723 unreferenced macro.
4724 (hpread_adjust_stack_address): Delete declaration.
4725
4726 2004-06-08 Andrew Cagney <cagney@gnu.org>
4727
4728 * infptrace.c [ATTACH_DETACH]: Remove #ifdef wrappers.
4729 (attach, detach): When neither PT_ATTACH / PT_DETACH nor
4730 PTRACE_ATTACH / PTRACE_DETACH available call error.
4731 (PT_ATTACH, PT_DETACH): Move definition to attach / detach.
4732 * infttrace.c (update_thread_state_after_attach, attach, detach):
4733 Remove #ifdef wrappers.
4734 * inftarg.c (child_attach, child_detach): Remove #ifdef wrappers.
4735 * gnu-nat.c [ATTACH_DETACH]: Remove #ifdef wrappers.
4736 * config/nm-bsd.h (ATTACH_DETACH): Delete.
4737 * config/nm-sysv4.h (ATTACH_DETACH): Delete.
4738 * config/nm-nbsd.h (ATTACH_DETACH): Delete.
4739 * config/nm-linux.h (ATTACH_DETACH): Delete.
4740 * config/rs6000/nm-rs6000.h (ATTACH_DETACH): Delete.
4741 * config/pa/nm-hppah.h (ATTACH_DETACH): Delete.
4742 * config/i386/nm-i386sco5.h (ATTACH_DETACH): Delete.
4743 * config/i386/nm-i386sco4.h (ATTACH_DETACH): Delete.
4744 * config/i386/nm-i386gnu.h (ATTACH_DETACH): Delete.
4745
4746 2004-06-08 Corinna Vinschen <vinschen@redhat.com>
4747
4748 * configure.in: Set $configdir to the right OS specific value.
4749 Use value when setting $tcldir and $tkdir.
4750 * configure: Regenerate.
4751
4752 2004-06-06 Paul Brook <paul@codesourcery.com>
4753
4754 * gdb/dwarf2-frame.c (decode_frame_entry_1): Decode version 3 CIE
4755 records.
4756
4757 2004-06-08 Paul N. Hilfinger <Hilfinger@gnat.com>
4758
4759 * ada-lang.c (lookup_symbol_in_language): New function to allow
4760 re-use of another language's symbol lookup code. (Placed here
4761 temporarily while Ada support is being integrated into the public
4762 tree).
4763 (restore_language): New auxiliary function for
4764 lookup_symbol_in_language.
4765 * ada-lang.h (lookup_symbol_in_language): Declare (Placed here
4766 temporarily while Ada support is being integrated into the public
4767 tree).
4768
4769 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
4770
4771 * Makefile.in (check//%): New.
4772
4773 * mn10300-tdep.c (mn10300_extract_return_value): Rewrite.
4774 (mn10300_store_return_value): Rewrite.
4775 (mn10300_type_align): New.
4776 (mn10300_use_struct_convention): Rewrite.
4777 (mn10300_return_value): New, using all of the above.
4778 (mn10300_pop_frame_regular): Add saved_regs_size.
4779 (mn10300_gdbarch_init): Remove deprecated rewritten entry points.
4780
4781 * mn10300-tdep.c (mn10300_analyze_prologue): Don't compute saved
4782 regs if PC is on movm.
4783
4784 2004-06-07 Jim Blandy <jimb@redhat.com>
4785
4786 Add native Linux support for the PowerPC E500.
4787 * ppc-tdep.h (struct gdbarch_tdep): New member: 'ppc_gprs_pseudo_p'.
4788 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it to false on
4789 all architectures except the E500.
4790 * ppc-linux-nat.c: (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): New
4791 #definitions.
4792 (struct gdb_evrregset_t): New type.
4793 (have_ptrace_getsetevrregs): New variable.
4794 (get_spe_registers, read_spliced_spe_reg, fetch_spe_register,
4795 fetch_spe_registers): New functions.
4796 (fetch_register): Call fetch_spe_register as appropriate.
4797 Assert that we're only passed raw register numbers.
4798 (fetch_ppc_registers): Call fetch_spe_registers as appropriate.
4799 Don't fetch gprs if they're pseudoregisters.
4800 (set_spe_registers, write_spliced_spe_reg, store_spe_register,
4801 store_spe_registers): New functions.
4802 (store_register): Call store_spe_register as appropriate.
4803 Assert that we're only passed raw register numbers.
4804 (store_ppc_registers): Call store_spe_registers as appropriate.
4805 Don't store gprs if they're pseudoregisters.
4806
4807 2004-06-07 Jeff Johnston <jjohnstn@redhat.com>
4808
4809 * thread-db.c (thread_get_info_callback): Fill in the thread_info
4810 struct if one exists, even if we are dealing with a zombie thread.
4811
4812 2004-06-07 Andrew Cagney <cagney@gnu.org>
4813
4814 * target.h (PC_REQUIRES_RUN_BEFORE_USE): Delete definition.
4815 * config/pa/tm-hppa.h (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE):
4816 Rename PC_REQUIRES_RUN_BEFORE_USE.
4817 * breakpoint.c (breakpoint_sals_to_pc): Update. Wrap reference in
4818 #ifdef.
4819
4820 2004-06-07 Randolph Chung <tausq@debian.org>
4821
4822 * hppa-tdep.c (hppa_frame_cache): Handle the cases when we start
4823 unwinding after sp has been saved to the stack but before the end
4824 of the prologue, and after the fp has been modified but before it has
4825 been saved to the stack.
4826 (hppa_frame_base_address, hppa_frame_base, hppa_frame_base_sniffer):
4827 Remove superfluous definitions.
4828 (hppa_gdbarch_init): Remove superfluous frame base sniffer.
4829
4830 2004-06-07 Guy Martin <gmsoft@gentoo.org>
4831
4832 Committed by Randolph Chung.
4833 * hppa-linux-nat.c: Include the correct version of the header file
4834 depending on the kernel version.
4835
4836 2004-06-06 Randolph Chung <tausq@debian.org>
4837
4838 * infrun.c (trap_expected_after_continue): Remove HP_OS_BUG workaround.
4839 (proceed, init_wait_for_inferior, handle_inferior_event): Likewise.
4840
4841 2004-06-06 Randolph Chung <tausq@debian.org>
4842
4843 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
4844 (hppa_hpux_skip_trampoline_code): Don't cache symbol values.
4845 * hppa-linux-tdep.c (hppa_linux_in_dyncall): Likewise.
4846 * hppa-tdep.c (hppa_symbol_address): New function definition.
4847 * hppa-tdep.h (hppa_symbol_address): New function declaration.
4848
4849 2004-06-06 Randolph Chung <tausq@debian.org>
4850
4851 * hppa-tdep.h (struct value): Forward declaration.
4852 (gdbarch_tdep): Define tdep find_global_pointer method.
4853 * hppa-tdep.c (hppa32_push_dummy_call): Find the global pointer
4854 associated with the function we are trying to call, and write it
4855 to the gp register.
4856 (hppa32_convert_from_funct_ptr_addr): New function.
4857 (hppa_find_global_pointer): New function.
4858 (hppa_gdbarch_init): Set default find_global_pointer method; set
4859 convert_from_func_ptr_addr method.
4860 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): New function.
4861 (hppa_linux_init_abi): Set find_global_pointer method.
4862 * Makefile.in (hppa-linux-tdep.o): Add value.h dependency.
4863
4864 2004-06-06 Randolph Chung <tausq@debian.org>
4865
4866 * gdbarch.sh (PUSH_DUMMY_CALL): Change CORE_ADDR func_addr argument
4867 to struct value *function.
4868 * gdbarch.c: Regenerate.
4869 * gdbarch.h: Likewise.
4870 * infcall.c (call_function_by_hand): Pass entire function value
4871 to push_dummy_call.
4872
4873 * Makefile.in (alpha-tdep.o, frv-tdep.o, ia64-tdep.o, mips-tdep.o)
4874 (ppc-sysv-tdep.o, rs6000-tdep.o): Update dependencies.
4875 * alpha-tdep.c (alpha_push_dummy_call): Update call signature.
4876 * amd64-tdep.c (amd64_push_dummy_call): Likewise.
4877 * arm-tdep.c (arm_push_dummy_call): Likewise.
4878 * avr-tdep.c (avr_push_dummy_call): Likewise.
4879 * cris-tdep.c (cris_push_dummy_call): Likewise.
4880 * d10v-tdep.c (d10v_push_dummy_call): Likewise.
4881 * frv-tdep.c (frv_push_dummy_call): Likewise.
4882 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
4883 * hppa-tdep.c (hppa32_push_dummy_call)
4884 (hppa64_push_dummy_call): Likewise.
4885 * i386-tdep.c (i386_push_dummy_call): Likewise.
4886 * ia64-tdep.c (ia64_push_dummy_call): Likewise.
4887 * m32r-tdep.c (m32r_push_dummy_call): Likewise.
4888 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
4889 * m68k-tdep.c (m68k_push_dummy_call): Likewise.
4890 * m88k-tdep.c (m88k_push_dummy_call): Likewise.
4891 * mips-tdep.c (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
4892 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Likewise.
4893 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
4894 (ppc64_sysv_abi_push_dummy_call): Likewise.
4895 * ppc-tdep.h (ppc_sysv_abi_push_dummy_call)
4896 (ppc64_sysv_abi_push_dummy_call): Likewise.
4897 * rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
4898 * s390-tdep.c (s390_push_dummy_call): Likewise.
4899 * sh-tdep.c (sh_push_dummy_call_fpu)
4900 (sh_push_dummy_call_nofpu): Likewise.
4901 * sparc-tdep.c (sparc32_push_dummy_call): Likewise.
4902 * sparc64-tdep.c (sparc64_push_dummy_call): Likewise.
4903 * vax-tdep.c (vax_push_dummy_call): Likewise.
4904
4905 2004-06-04 Jim Blandy <jimb@redhat.com>
4906
4907 * ppc-linux-nat.c (fetch_register): Don't forget to pass the
4908 gdbarch argument to register_size.
4909
4910 * rs6000-tdep.c (rs6000_store_return_value): Use
4911 regcache_cooked_write_part instead of
4912 deprecated_write_register_bytes.
4913 (rs6000_gdbarch_init): Register it for gdbarch_store_return_value,
4914 not gdbarch_deprecated_store_return_value.
4915
4916 * ppc-linux-nat.c (store_register, fetch_register): Remove
4917 incorrect assertions. Simplify and generalize handling of
4918 transfers whose sizes are not multiples of, or less than, sizeof
4919 (PTRACE_XFER_TYPE).
4920
4921 2004-06-04 Jeff Johnston <jjohnstn@redhat.com>
4922
4923 * infrun.c (handle_inferior_event): Don't treat an invalid ptid
4924 as a new thread event.
4925 * thread-db.c (thread_get_info_callback): If the thread is a
4926 zombie, return TD_THR_ZOMBIE.
4927 (thread_from_lwp): If thread_get_info_callback returns
4928 TD_THR_ZOMBIE, check if the thread is still on the thread list
4929 and return a -1 ptid if not found.
4930 (thread_db_wait): If thread_from_lwp returns a -1 ptid, then
4931 change the status to TARGET_WAITKIND_SPURIOUS.
4932
4933 2004-06-03 Corinna Vinschen <vinschen@redhat.com>
4934
4935 * sh-tdep.c (sh3e_sh4_store_return_value): Correctly store
4936 double values in little endian mode.
4937
4938 2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>
4939
4940 Committed by Andrew Cagney.
4941 * gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
4942 after last enum constant to avoid error from IBM C
4943 compiler.
4944
4945 2004-06-02 Jim Blandy <jimb@redhat.com>
4946
4947 * ppc-linux-nat.c (store_register, fetch_register): Rename 'mess'
4948 to 'message', and make it local to the lone block that uses it.
4949
4950 * ppc-linux-nat.c (store_register): Remove unused local 'offset'.
4951
4952 2004-06-02 Paul N. Hilfinger <hilfinger@gnat.com>
4953
4954 * ada-exp.y: Update copyright notice.
4955 Include block.h.
4956
4957 Replace REGNAME, LAST, INTERNAL_VARIABLE with
4958 SPECIAL_VARIABLE and unify the treatment of these cases.
4959
4960 (write_attribute_call0): Remove.
4961 (write_attribute_call1): Remove.
4962 (write_attribute_calln): Remove.
4963 (save_qualifier): Add missing semicolon.
4964
4965 (simple_exp,exp): Decomment (i.e., reactivate) code that was
4966 temporarily disabled to allow compilation with FSF head version.
4967
4968 (simple_exp syntax): Remove use of OP_ADA_ATTRIBUTE and
4969 use individual operators (OP_*) for all attributes.
4970 (exp syntax): Use write_int.
4971 Handle STRING literals with OP_STRING.
4972 (variable syntax): Add limit parameter to calls to
4973 write_object_renaming.
4974
4975 (temp_parse_space): New definition to hold entities that need
4976 only live until the next call to ada_parse.
4977 (string_to_operator): Rename fields of ada_opname_table entries.
4978
4979 (write_var_from_sym): Record block.
4980 (write_var_from_name): Minor reformatting.
4981 Make sure saved name is properly encoded in the case of multiple
4982 matches, and set its language to Ada.
4983 Update comment.
4984 Modify to indicate unresolved name as symbol in the UNRESOLVED
4985 namespace, allocated in temp_parse_space.
4986 (write_int): New function.
4987
4988 (write_object_renaming): Add max_depth parameter to limit
4989 chains of object renamings.
4990 Handle case where root of renaming expression is itself a renaming.
4991 Use temp_parse_space for temporary name buffer.
4992 Handle renamings to dereferenced pointers (___XEXA suffices).
4993
4994 (ada_parse, yyerror, string_to_operator,
4995 write_var_from_sym, write_var_from_name, write_attribute_call0,
4996 write_attribute_call1, write_attribute_calln,
4997 write_object_renaming): Protoize.
4998
4999 (_initialize_ada_exp): New function.
5000
5001 * ada-lang.c: Update copyright notice.
5002 General terminology change to conform to GNAT compiler usage:
5003 mangle => encode, demangle => decode
5004 Include gdb_obstack.h.
5005 Include gdb_regex.h
5006 Include frame.h
5007 Include hashtab.h
5008 Include completer.h
5009 Include gdb_stat.h
5010 Include block.h
5011 Include infcall.h
5012
5013 (ADA_RETAIN_DOTS): Make sure this is defined.
5014 (TRUNCATION_TOWARDS_ZERO): Define.
5015 (struct string_vector): Define.
5016 (unresolved_names): Remove definition.
5017 (xnew_string_vector): New function.
5018 (string_vector_append): New function.
5019 (extract_string): Make static.
5020 (ada_unqualified_name): New function.
5021 (add_angle_brackets): New function.
5022 (function_name_from_pc): New function.
5023 (place_on_stack): Rename to ensure_lval.
5024
5025 (ensure_lval): Renamed from place_on_stack.
5026 Make identity on lvals.
5027 Update comment.
5028 (is_nonfunction): New interface.
5029 Only symbols in LOC_CONST class can be enumerals.
5030 (fill_in_ada_prototype): Remove; now independent of language.
5031 (add_defn_to_vec): Add obstack and symtab arguments.
5032 Use obstack to hold collected definitions.
5033 (num_defns_collected): New function.
5034 (defns_collected): New function.
5035 (ada_resolve_subexp): Rename to resolve_subexp.
5036 (resolve_subexp): Renamed from ada_resolve_subexp.
5037 (ada_op_name): Return non-const result.
5038 (ada_decoded_op_name): Renamed from ada_op_name, now used for
5039 other purposes.
5040
5041 (to_fixed_array_type): Add declaration.
5042 (coerce_unspec_val_to_type): Remove offset parameter.
5043 (find_sal_from_funcs_and_line): New interface.
5044 (find_line_in_linetable): Ditto.
5045
5046 (all_sals_for_line): Rename to ada_sals_for_line and make
5047 global.
5048 Add new parameter. When set, do not ask the user to choose the
5049 instance, but use the first one found instead.
5050 Use given line number in returned sals.
5051 Fix comment.
5052 Skip the prologue if funfirstline is set.
5053 Correct for memory leak when 0 lines found.
5054
5055 (value_pos_atr): Use pos_atr.
5056 (pos_atr): New function.
5057 (standard_lookup): Add block parameter.
5058
5059 (makeTimeStart): Remove declaration and uses.
5060 (makeTimeStop): Remove declaration and uses.
5061
5062 (ada_completer_word_break_characters): Allow for VMS.
5063 (ADA_MAIN_PROGRAM_SYMBOL_NAME): Make into constant.
5064 (raise_sym_name): New constant.
5065 (raise_unhandled_sym_name): New constant.
5066 (raise_assert_sym_name): New constant.
5067 (process_raise_exception_name): New constant.
5068 (longest_exception_template): New constant.
5069 (warning_limit): New variable to limit warnings during expression
5070 evaluation.
5071 (warnings_issued): New variable to keep track of warnings issued.
5072 (known_runtime_file_name_patterns): New constant.
5073 (known_auxiliary_function_name_patterns): New constant.
5074 (symbol_list_obstack): New variable.
5075
5076 (field_name_match,is_suffix,is_suppressed_name,ada_encode,
5077 ada_decode,ada_match_name,encoded_ordered_before,equiv_types,
5078 lesseq_defined_than,is_nondebugging_type,is_name_suffix,wild_match,
5079 find_sal_from_funcs_and_line, ada_breakpoint_rewrite,
5080 ada_is_tagged_type, ada_is_parent_field, ada_is_wrapper_field,
5081 ada_variant_discrim_name, field_alignment, dynamic_template_type,
5082 ada_is_character_type, ada_is_aligner_type, ada_is_vax_floating_type):
5083 Replace use of deprecated STREQ and STREQN macros by calls to strncmp
5084 and strcmp.
5085
5086 (ada_get_field_index): New function.
5087 (lim_warning): New function.
5088 (ada_translate_error_message): New function.
5089 (MAX_OF_SIZE): New function.
5090 (MIN_OF_SIZE): New function.
5091 (UMAX_OF_SIZE): New function.
5092 (UMIN_OF_SIZE): New function.
5093 (discrete_type_high_bound): New function.
5094 (discrete_type_low_bound): New function.
5095 (base_type): New function.
5096 (do_command): Remove.
5097
5098 (ada_update_initial_language): Use language_ada, not language_unknown.
5099 (ada_encode): Renamed from ada_mangle.
5100 Obey ADA_RETAIN_DOTS.
5101 (ada_decode): Renamed from ada_demangle.
5102 Update coding conventions.
5103 (decoded_names_store): New hash table.
5104 (ada_decode_symbol): New function.
5105 (ada_la_decode): New function.
5106
5107 (modify_general_field): Correct computations of offset and bit
5108 position.
5109 (desc_base_type): Handle ref types, too.
5110 (ada_is_direct_array_type): New function.
5111
5112 (ada_is_simple_array): Rename to ada_is_simple_array_type.
5113 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
5114 (ada_is_bogus_array_descriptor,ada_type_of_array,
5115 ada_coerce_to_simple_array_ptr,ada_coerce_to_simple_array,
5116 ada_type_match,convert_actual,ada_evaluate_subexp): Use renamed
5117 ada_is_array_descriptor_type.
5118
5119 (ada_coerce_to_simple_array_type): Fix incorrect value freeing.
5120 (ada_is_packed_array_type): Handle pointers or
5121 references to packed arrays as well.
5122 (packed_array_type): Uncomment use of TYPE_FLAG_FIXED_INSTANCE.
5123 (decode_packed_array_type): Search for the packed array type
5124 symbol in the currently selected block and associated
5125 superblocks too.
5126 Use lookup_symbol again.
5127
5128 (decode_packed_array): Handle pointers and references.
5129 Update call to coerce_unspec_val_to_type.
5130 (decode_packed_array_type,value_subscript_packed): Limit warnings.
5131 (ada_value_primitive_packed_val): Improve comment.
5132
5133 (ada_index_type): Substitute int type for "undefined".
5134 (ada_index_type,ada_array_bound_from_type,ada_array_bound,
5135 ada_array_langth, ada_is_string_type): Use renamed
5136 ada_is_simple_array_type.
5137 (empty_array): New function.
5138
5139 (ada_resolve): Rename to resolve.
5140 (resolve): Make static.
5141 Call renamed resolve_subexp.
5142 Update comment.
5143 (ada_resolve_subexp): Rename to resolve_subexp.
5144 (resolve_subexp): Update comment.
5145 Decomment disabled code.
5146 Add LOC_COMPUTED* cases.
5147 Modify to use temporary struct symbols (marked as being in
5148 UNDEF_NAMESPACE) to indicate unresolved names, instead of
5149 OP_UNRESOLVED_VALUE.
5150 Remove OP_ATTRIBUTE; use individual opcodes for attributes.
5151 Add OP_STRING case.
5152 Remove OP_ARRAY.
5153 Use SYMBOL_PRINT_NAME instead of ada_demangle.
5154 Use new ada_lookup_symbol_list interface.
5155 Use new ada_resolve_function interface.
5156 Remove OP_TYPE case.
5157
5158 (ada_args_match): Idiot proof against null actuals.
5159 Use intermediate variables to clarify.
5160 (ada_resolve_function): Update comment and interface.
5161 (mangled_ordered_before): Rename to encoded_ordered_before and
5162 update comment.
5163 (sort_choices): Update comment and interface.
5164 Use SYMBOL_LINKAGE_NAME in place of SYMBOL_NAME.
5165 (user_select_syms): New interface.
5166 Use new sort_choices interface.
5167 Use SYMBOL_PRINT_NAME rather than SYMBOL_SOURCE_NAME.
5168 (possible_user_operator_p): Idiot-proof against null values.
5169 (ada_simple_renamed_entity): Don't make cleanup; rely on
5170 caller to free result string.
5171 Remove const from return type.
5172 (make_array_descriptor): Rename uses of place_on_stack to
5173 ensure_lval.
5174 Make sure that arrays are on stack.
5175
5176 (HASH_SIZE): Define.
5177 (struct cache_entry): Define.
5178 (cache_space): Define.
5179 (cache): Define.
5180 (clear_ada_sym_cache): New function.
5181 (find_entry): New function.
5182 (lookup_cached_symbol): New function.
5183 (defn_vector_size): Define.
5184 (cache_symbol): New function.
5185 (defn_symbols): Remove.
5186
5187 (standard_lookup): Use lookup_symbol_in_language to get effect of
5188 C lookup.
5189 Cache results.
5190
5191 (symbol_completion_match): New function.
5192 (symbol_completion_add): New function.
5193 (ada_make_symbol_completion_list): New function.
5194
5195 (ada_lookup_partial_symbol,ada_lookup_simple_minsym,
5196 add_symbols_from_enclosing_procs,remove_extra_symbols): Replace
5197 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
5198 (symtab_for_sym): Handle LOC_COMPUTED, LOC_COMPUTED_ARG.
5199
5200 (ada_lookup_simple_minsym): New function.
5201 (ada_lookup_minimal_symbol): Use ada_lookup_simple_minsym.
5202
5203 (add_symbols_from_enclosing_procs): New interface.
5204 Conditionalize more helpfully.
5205 Don't bother if program isn't running.
5206 Use new interface to get_frame_block.
5207 Limit number of levels searched with MAX_LEXICAL_LEVELS, just in case.
5208
5209 (remove_extra_symbols): New interface.
5210 (xget_renaming_scope): New function.
5211 (is_package_name): New function.
5212 (renaming_is_visible): New function.
5213 (remove_out_of_scope_renamings): New function.
5214
5215 (ada_lookup_symbol_list): New interface.
5216 Properly reinitialize the symbol list obstack.
5217 Don't call add_symbols_from_enclosing_procs if we start from a
5218 static or global block.
5219 Use new interfaces to ada_add_block_symbols, add_defn_to_vec,
5220 add_symbols_from_enclosing_procs.
5221 Add symtab data to cached entries.
5222 Handle symbols prefixed with
5223 "standard__" specially; strip prefix and don't look in local symbols.
5224 Do not include out of scope renaming symbols in list of
5225 symbols returned.
5226 Add const to block parameter.
5227 Move check for non-local, non-global symbols earlier.
5228 Remove timing stuff.
5229 (ada_lookup_symbol): New interface.
5230 Find symtab as well.
5231 (ada_lookup_symbol_nonlocal): New function.
5232
5233 (is_name_suffix): Enhance suffix detection to recognize
5234 an optional "__[:digit:]+" before any "\.[:digit:]+" suffix.
5235 (is_dot_digits_suffix): New function.
5236 (wild_match): Ignore ".[:digit:]*" suffixes during matches.
5237
5238 (ada_add_block_symbols): New interface. Use obstack to return results
5239 in a vector of struct ada_symbol_infos. Add symtab argument.
5240 Use new interface to add_defn_to_vec.
5241 Remove calls to fill_in_ada_prototype.
5242 Use BLOCK_BUCKETS, BLOCK_BUCKET.
5243
5244 (ada_finish_decode_line_1): Add const qualification to local to fix
5245 warning.
5246 Start looking in static block for functions to avoid attempts
5247 to search frame chain for up-level variables.
5248 Adapt to new ada_sals_for_line interface.
5249 Use new interfaces to ada_lookup_symbol_list and user_select_syms.
5250 Handle quoting of the function name inside the spec string.
5251 Skip prologue when funfirstline is set and update the
5252 function documentation to that effect.
5253
5254 (debug_print_lines, debug_print_block, debug_print_blocks,
5255 debug_print_symtab): Remove.
5256
5257 (ada_main_name): New function.
5258 (ada_exception_breakpoint_type): New function.
5259 (is_known_support_routine): New function.
5260 (ada_find_printable_frame): Renamed from find_printable_frame and made
5261 global.
5262 Remove level parameter.
5263 Use new interface to select_frame.
5264
5265 (begin_command): Remove.
5266 (ada_adjust_exception_stop): New function.
5267 (ada_print_exception_stop): New function.
5268 (exception_name_from_cond): New function.
5269 (ada_report_exception_break): Replace disabled code with
5270 conditionalization on GNAT_GDB.
5271 Get the exception name from the condition string.
5272 Remove and move functionality into new functions
5273 ada_print_exception_breakpoint_task and
5274 ada_print_exception_breakpoint_nontask.
5275 (error_breakpoint_runtime_sym_not_found): New function.
5276 (is_runtime_sym_defined): New function.
5277 (ada_breakpoint_rewrite): Uncomment suppressed code.
5278 Use symbolic error-message and runtime-symbol names.
5279 Surround runtime symbol names in quotes.
5280 Allow non-specific breakpoints on exceptions and assertions before
5281 program starts.
5282
5283 (ada_is_tagged_type): Add parameter.
5284 (ada_is_tag_type): New function.
5285 (ada_tag_type): Use new ada_lookup_struct_elt_type interface.
5286 (ada_variant_discrim_type): Ditto.
5287 (value_tag_from_contents_and_address): New function.
5288 (type_from_tag): New function.
5289 (struct tag_args): New structure used to communicate with
5290 ada_tag_name_1.
5291 (ada_tag_name_1): New function.
5292 (ada_tag_name): New function.
5293
5294 (ada_scan_number): Update comment.
5295 (find_struct_field): New function.
5296 (ada_search_struct_field): Make static.
5297 (ada_value_struct_elt): New version that returns references when
5298 given pointers or references to structs.
5299 (ada_lookup_struct_elt_type): Add 'refok' parameter.
5300 (ada_which_variant_applies): Use new ada_lookup_struct_elt_type
5301 interface.
5302 (ada_value_ind): Use new ada_to_fixed_value interface.
5303 (ada_coerce_ref): Ditto.
5304 (field_offset): Remove.
5305
5306 (ada_find_any_symbol): New function, extracted from ada_find_any_type.
5307 (ada_find_renaming_symbol): New function.
5308 (ada_prefer_type): Prefer named types over unnamed ones.
5309 (variant_field_index): New function.
5310 (contains_variant_part): Removed: subsumed by variant_field_index.
5311 (ada_template_to_fixed_record_type): New function, mostly from
5312 template_to_fixed_record_type.
5313 (template_to_fixed_record_type):
5314 Do not scan the type fields beyond the last one; prevents a
5315 potential SEGV.
5316 Handle case where variant field is listed BEFORE discriminant it
5317 depends on.
5318 Fix calculation of record length when bit length is
5319 not evenly divisible by char length.
5320 Move code to ada_template_to_fixed_record_type and call it.
5321
5322 (template_to_static_fixed_type): Revise comment.
5323 Modify to work on ordinary record types as well as templates,
5324 so as to handle fields that use ___XVE or ___XVU encodings.
5325 (to_record_with_fixed_variant_part): Fill out comment.
5326 Initialize C++ stuff in right type.
5327 Allow case where DVAL is null.
5328 Handle case where variant field is not last.
5329 Fix typo concerning record length.
5330 (to_fixed_record_type): Decomment disabled code.
5331 (to_fixed_record_type): Use variant_field_index instead of
5332 contains_variant_part.
5333 (to_fixed_variant_branch_type): Ditto.
5334 (to_fixed_array_type): Decomment disabled code.
5335 (ada_to_fixed_type): Convert tagged types to the specific type.
5336 Deactivate the size-check for array types in order to avoid
5337 some false size alarms.
5338 (to_static_fixed_type): Decomment disabled code.
5339 Modify to call template_to_static_fixed_type
5340 on ordinary structs, not just ___XVE- and ___XVU-encoded fields.
5341 (ada_to_fixed_value_create): Renamed version of old ada_to_fixed_value.
5342 Remove valaddr argument, as it is never really used.
5343 (ada_to_fixed_value): Change interface to act on single struct value*
5344 operand.
5345 (adjust_pc_past_prologue): New function.
5346 (ada_attribute_name): Modify to take enum exp_opcode argument.
5347
5348 (ada_enum_name): Recognize new homonym-distinguishing convention.
5349 Adjust local variable's type to remove compiler warning.
5350 Fix a small problem in the part that unqualifies the enumeration name.
5351 (ada_value_binop): New function.
5352 (ada_value_equal): New function.
5353
5354 (ada_evaluate_subexp): Use new ada_lookup_struct_elt_type interface.
5355 Don't give error message when not doing normal evaluation
5356 and a tagged type doesn't seem to contain a structure member.
5357 Give error message for packed arrays.
5358 For indexing arrays, handle pointers to packed arrays correctly.
5359 Handle case of 'first and 'last attributes of bare integral type
5360 without encoded subtype info.
5361 Remove some unnecessary casts.
5362 Fix uninitialized value of type in computing 'first, 'last, or 'length
5363 of array object.
5364 Add BINOP_EQUAL and BINOP_NOTEQUAL cases.
5365 Remove binop_user_defined_p tests and value_x_binop and value_x_unop
5366 calls.
5367 Attributes are now exp_opcode values.
5368 Correct treatment of 'modulus.
5369 Better error message for taking 'length of wrong kind of type;
5370 improve comment.
5371 Change EVAL_NORMAL to noside for consistency.
5372 Use ada_value_binop for DIV, MOD, REM.
5373 Make special case out of array of length 0, since an argument
5374 of 0 upsets some platforms' malloc.
5375 Use OP_STRING instead of OP_ARRAY.
5376 For slice, add check that we have an array type before extracting
5377 a slice out of it. Avoids a SEGV.
5378 When evaluating an array slice, if the array type is a reference to
5379 an aligner type, then replace the aligner type by the actual type.
5380 Decomment disabled code.
5381 Remove some dead code.
5382 Use temporary struct symbols (marked as being in UNDEF_NAMESPACE)
5383 to indicate unresolved names, instead of OP_UNRESOLVED_VALUE.
5384 Rename BINOP_MBR to BINOP_IN_BOUNDS, TERNOP_MBR to TERNOP_IN_RANGE,
5385 and UNOP_MBR to UNOP_IN_RANGE.
5386 If an array type has a parallel ___XVE type, then use it.
5387 Turn arrays into pointers for lvalue arrays.
5388 Change TERNOP_SLICE code to work even when bounds are unknown, ignoring
5389 bounds error and handle 0-length slices.
5390 Use lim_warning.
5391 When selecting fields, apply ada_to_fixed_value (because the fields
5392 might have ___XVU or ___XVE encodings even if not dynamic.)
5393 Use ada_to_fixed_value_create and new ada_to_fixed_value interface.
5394 (ada_is_system_address_type): New function.
5395
5396 (get_var_value): Use new interface to ada_lookup_symbol_list.
5397 (get_int_var_value): New interface.
5398 (to_fixed_range_type): Allow unknown bound, with warning.
5399 (ada_is_modular_type): Decomment disabled code.
5400 (ADA_OPERATORS): New definition.
5401 (ada_operator_length): New function.
5402 (ada_expr_op_name): New function.
5403 (ada_forward_operator_length): New function.
5404 (ada_dump_subexp_body): New function.
5405 (ada_print_subexp): New function.
5406 (ada_exp_descriptor): New constant.
5407 (ada_op_print_tab): Add 'size. Remove FIXMEs.
5408 (ada_language_defn): Add ada_exp_descriptor entry.
5409 Change ada_parse => parse.
5410 Add post-parser entry.
5411 Use ada-specific non-local symbol lookup.
5412 Don't use C-style arrays.
5413 String lower-bound is 1.
5414 Decomment disabled code.
5415 (parse): New function.
5416 New fields ada_translate_error_message, ada_lookup_symbol,
5417 ada_lookup_minimal_symbol.
5418
5419 * ada-lang.h: Update copyright dates.
5420 Replace the mangle/demangle terminology throughout by the
5421 more appropriate encode/decode one.
5422 Include breakpoint.h.
5423 Forward declare struct partial_symbol, struct block.
5424 (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Define.
5425 (EXTRACT_ADDRESS): Remove.
5426 (EXTRACT_INT): Remove.
5427 (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Define.
5428 (MAX_ENCLOSING_FRAME_LEVELS): Define.
5429 (MAX_RENAMING_CHAIN_LENGTH): Define.
5430 (struct ada_opname_map): mangled => decoded, demangled=>encoded.
5431
5432 (enum task_states): Remove.
5433 ada_task_states: Remove.
5434 (fat_string): Remove.
5435 (struct entry_call): Remove.
5436 (struct task_fields): Remove.
5437 (struct task_entry): Remove.
5438
5439 (struct ada_symbol_info): Define.
5440 (enum ada_attribute): Remove.
5441 (enum ada_operator): Define.
5442
5443 (ada_get_field_index): Declare.
5444 (ada_coerce_to_simple_array): Rename to ada_coerce_to_simple_array_ptr.
5445 (ada_is_simple_array): Rename to ada_is_simple_array_type.
5446 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
5447 (ada_lookup_symbol_list): New interface.
5448 (ada_decode_symbol): Declare.
5449 (ada_decode): Declare.
5450 (ada_lookup_symbol): New interface.
5451 (ada_update_initial_language): Declare.
5452 (ada_lookup_simple_minsym): Declare.
5453 (user_select_syms): New interface.
5454 (ada_sals_for_line): Declare.
5455 (ada_is_tagged_type): New interface.
5456 (ada_tag_name): Declare.
5457 (ada_lookup_struct_elt_type): Remove declaration.
5458 (ada_search_struct_field): Remove declaration.
5459 (ada_attribute_name): New interface.
5460 (ada_is_system_address_type): Declare.
5461 (ada_to_fixed_value): Remove declaration.
5462 (ada_template_to_fixed_record_type_1): Declare.
5463 (get_int_var_value): New interface.
5464 (ada_find_any_symbol): Declare.
5465 (ada_find_renaming_symbol): Declare.
5466 (ada_mangle): Rename to ada_encode.
5467 (ada_simple_renamed_entity): Remove const.
5468 (ada_main_name): Declare.
5469 (get_current_task): Rename to ada_get_current_task.
5470 (get_entry_number): Remove declaration.
5471 (ada_report_exception_break): Remove declaration.
5472 (ada_print_exception_breakpoint_nontask): Declare.
5473 (ada_print_exception_breakpoint_task): Declare.
5474 (ada_find_printable_frame): Declare.
5475
5476 * ada-lex.l: Update copyright notices.
5477 Use xmalloc and xfree instead of malloc and free.
5478 Use new interface to name_lookup.
5479 Use new interface to
5480 ada_mangle=>ada_encode.
5481 Redo handling of '$...' variable to parallel current treatment
5482 in c-exp.y.
5483 (resize_tempbuf, canonicalizeNumeral, is_digit_in_base,
5484 digit_to_int, strtoulst, processInt, processReal, processId,
5485 block_lookup, name_lookup, find_dot_all, subseqMatch, processAttribute,
5486 yywrap): Protoize.
5487
5488 (processInt): Use cast to remove harmless warning.
5489 (processReal): Modify to get rid of compiler warning on scan formats.
5490
5491 (processId): Replace xmalloc with obstack_alloc for name and remove
5492 call to ada_name_string_cleanup.
5493 Remove obsolete disabled code.
5494 (name_lookup): Ditto.
5495 New interface.
5496 Use obsavestring on temp_parse_space instead of savestring
5497 on name, and remove call to ada_name_string_cleanup.
5498 Free string returned from ada_simple_renamed_entity.
5499 Use new interface to ada_lookup_symbol_list.
5500 Decomment disabled code.
5501 Treat LOC_COMPUTED and LOC_COMPUTED_ARG symbols as variables,
5502 not types.
5503 When a type name lookup succeeds as a result of
5504 lookup_primitive_typename, check for regular type entry that has not
5505 yet been read in.
5506 Limit length of chain of renamed symbols we are willing to follow.
5507 Do not break names beginning with "standard__" into segments.
5508 (block_lookup): Use new interface to ada_lookup_symbol_list.
5509
5510 * ada-typeprint.c: Update copyright notice.
5511 (demangled_type_name): Rename to decoded_type_name.
5512 (ada_typedef_print): Use SYMBOL_PRINT_NAME.
5513 (print_range_bound): Correct handling of negative
5514 bounds that make the index type looked unsigned under STABS.
5515 (print_dynamic_range_bound): Use new interface to get_int_var_value.
5516 (print_range_type_named): Use the builtin int type if no type
5517 corresponding to the given type name could be found.
5518 (print_array_type): ada_is_simple_array => ada_is_simple_array_type.
5519 Add some bullet-proofing.
5520 (print_variant_clauses): Allow for variant branches with ___XVU
5521 encodings that are not dynamic fields.
5522 Use new interface to ada_is_tagged_type.
5523 (print_record_type): Allow for fields with ___XVE encodings that
5524 are not dynamic fields.
5525 Use new interface to ada_is_tagged_type.
5526 (ada_print_type): ada_is_array_descriptor =>
5527 ada_is_array_descriptor_type.
5528
5529 * ada-valprint.c: Update copyright notice.
5530 Include gdb_string.h
5531 Include infcall.h
5532 (ui_memcpy): New function.
5533 (ada_print_floating): New function.
5534 (ada_print_str): Order arguments correctly.
5535 Correct handling of empty arrays and arrays of 0-length items.
5536 ada_is_array_descriptor => ada_is_array_descriptor_type
5537 Print values of type System.Address in hexadecimal format.
5538 Use ada_print_floating to print floating-point numbers in Ada format.
5539 Print class tag values with type names.
5540 No longer print the address of reference values. Avoids
5541 a potential confusion.
5542 (ada_value_print): Stop printing the object type for reference
5543 values, but preserve that behavior for access types. Avoids
5544 a potential confusion.
5545 Simplify one conditional expression, as the first part is now
5546 necessarily true.
5547 ada_is_array_descriptor => ada_is_array_descriptor_type
5548 Add check for arrays for null records, and print them by hand.
5549
5550 2004-06-01 Jim Blandy <jimb@redhat.com>
5551
5552 * ppc-tdep.h: Delete unused 'regoff' member.
5553 * rs6000-tdep.c (rs6000_gdbarch_init): Don't initialize it.
5554
5555 2004-06-01 Michael Chastain <mec.gnu@mindspring.com>
5556
5557 Fix PR symtab/1661.
5558 * hpread.c (hpread_pxdb_needed): Call memset after alloca.
5559 (hpread_read_struct_type): Likewise.
5560
5561 2004-06-01 Andrew Cagney <cagney@gnu.org>
5562
5563 * mi/mi-cmd-env.c (env_execute_cli_command): Use xstrprintf
5564 instead of xasprintf.
5565 * mi/mi-main.c (mi_error_last_message, mi_cmd_exec_interrupt)
5566 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
5567 (mi_cmd_data_list_register_names)
5568 (mi_cmd_data_list_changed_registers)
5569 (mi_cmd_data_list_register_values)
5570 (get_register, mi_cmd_data_write_register_values)
5571 (mi_cmd_data_write_register_values)
5572 (mi_cmd_data_assign, mi_cmd_data_evaluate_expression)
5573 (mi_cmd_target_download, mi_cmd_target_select)
5574 (mi_cmd_data_read_memory, mi_cmd_data_write_memory)
5575 (mi_execute_cli_command, mi_execute_async_cli_command)
5576 (mi_execute_async_cli_command): Ditto.
5577 * mi/mi-interp.c (mi_cmd_interpreter_exec) Ditto.
5578 * mi/mi-cmd-var.c (mi_cmd_var_create): Ditto.
5579
5580 * mi/mi-cmds.h (mi_error_last_message): Delete declaration.
5581 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call
5582 error_last_message instead of mi_error_last_message.
5583 * mi/mi-main.c (mi_error_last_message): Delete function.
5584
5585 * mi/mi-main.c (mi_cmd_data_read_memory): Add missing return for
5586 "invalid number of columns" error. Delete redundant "out of
5587 memory" check.
5588
5589 2004-05-31 Mark Kettenis <kettenis@gnu.org>
5590
5591 * i386bsd-nat.c: Don't include <sys/procfs.h>.
5592 (gregset_t, fpregset_t): Remove typedefs.
5593 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Remove macros.
5594 (REG_OFFSET): Rename argument.
5595 (i386bsd_r_reg_offset): Rename from reg_offset.
5596 (REG_ADDR): Remove macro.
5597 (cannot_fetch_register, supply_gregset, fill_gregset): Remove
5598 functions.
5599 (i386bsd_supply_gregset, i386bsd_collect_gregset): New functions.
5600 (fetch_inferior_registers): Use `struct reg' and `struct fpreg'
5601 instead of gregset_t and fpregset_t. Use i386bsd_supply_gregset
5602 instead of supply_gregset.
5603 (store_inferior_registers): Use `struct reg' and `struct fpreg'
5604 instead of gregset_t and fpregset_t. Use i386bsd_collect_gregset
5605 instead of fill_gregset.
5606 (register_u_addr): Use i386_r_reg_offset instead of REG_ADDR.
5607
5608 * i386bsd-nat.c: Don't include "gregset.h".
5609 (supply_gregset, fill_gregset): Make static.
5610 (supply_fpregset, fill_fpregset): Remove.
5611 * Makefile.in (i386bsd-nat.o): Update dependencies.
5612
5613 2004-05-30 Mark Kettenis <kettenis@gnu.org>
5614
5615 * fbsd-proc.c: Include "regcache.h", "regset.h" and
5616 "gdb_assert.h". Con't include "gregset.h".
5617 (fbsd_make_corefile_notes): Use regset-based core file support
5618 instead off fill_gregset and fill_fpregset.
5619 * Makefile.in (fbsd-proc.o): Update dependencies.
5620
5621 * m88k-tdep.c (m88k_analyze_prologue): Fix handling of branch
5622 instructions.
5623 (m88k_frame_prev_register): Simplify code a bit.
5624
5625 * amd64-tdep.c (amd64_supply_fpregset): Adjust comment.
5626 (amd64_collect_fpregset): New function.
5627 (amd64_regset_from_core_section): Use amd64_collect_fpregset.
5628
5629 * hppa-tdep.h (hppa_regnum): Add HPPA_R31_REGNUM.
5630
5631 * i386-tdep.c (i386_supply_gregset): Adjust comment.
5632 (i386_collect_gregset): New function.
5633 (i386_supply_fpregset): Adjust comment.
5634 (i386_collect_fpregset): New function.
5635 (i386_regset_from_core_section): Use i386_collect_gregset and
5636 i386_collect_fpregset.
5637
5638 * hppa-tdep.c (hppa_frame_prev_register_helper): Reimplement to
5639 handle VALUEP being null.
5640
5641 * regset.h (collect_regset_ftype): Unconstify fourth argument.
5642
5643 2004-05-29 Mark Kettenis <kettenis@gnu.org>
5644
5645 * MAINTAINERS: Undelete m88k. Add myself as maintainer.
5646
5647 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Adjust for new
5648 assembler in OpenBSD 3.5-current.
5649 (amd64obsd_sigcontext_addr): Likewise.
5650
5651 2004-05-28 Jim Blandy <jimb@redhat.com>
5652
5653 * rs6000-tdep.c: Use the modern gdbarch methods for handling the
5654 register set, so our regcache isn't declared "legacy" and our E500
5655 pseudoregister read and write functions aren't ignored.
5656 (rs6000_register_byte, rs6000_register_raw_size,
5657 rs6000_register_virtual_type, rs6000_register_convertible,
5658 rs6000_register_convert_to_virtual,
5659 rs6000_register_convert_to_raw): Deleted.
5660 (rs6000_register_type, rs6000_convert_register_p,
5661 rs6000_register_to_value, rs6000_value_to_register): New
5662 functions.
5663 (rs6000_gdbarch_init): Don't register
5664 gdbarch_deprecated_register_size,
5665 gdbarch_deprecated_register_bytes,
5666 gdbarch_deprecated_register_byte,
5667 gdbarch_deprecated_register_raw_size,
5668 gdbarch_deprecated_register_virtual_type,
5669 gdbarch_deprecated_register_convertible,
5670 gdbarch_deprecated_register_convert_to_virtual, or
5671 gdbarch_deprecated_register_convert_to_raw methods. Instead,
5672 register gdbarch_register_type, gdbarch_convert_register_p,
5673 gdbarch_register_to_value, and gdbarch_value_to_register methods.
5674
5675 2004-05-26 Jim Blandy <jimb@redhat.com>
5676
5677 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): Deleted.
5678 (rs6000_stab_reg_to_regnum, rs6000_dwarf2_reg_to_regnum): New
5679 functions, updated to match the register numberings used in GCC.
5680 (rs6000_gdbarch_init): Register rs6000_stab_reg_to_regnum and
5681 rs6000_dwarf2_reg_to_regnum as register number conversions
5682 functions for STABS and Dwarf2.
5683
5684 2004-05-26 Randolph Chung <tausq@debian.org>
5685
5686 * infttrace.h (target_waitkind): Forward declare type instead of pulling
5687 in header file.
5688
5689 2004-05-25 Joel Brobecker <brobecker@gnat.com>
5690
5691 * NEWS: Document new "start" command.
5692
5693 2004-05-25 Randolph Chung <tausq@debian.org>
5694
5695 * hppa-linux-tdep.c (hppa_linux_init_abi): sizeof(long double) == 8 on
5696 hppa-linux.
5697
5698 2004-05-25 Randolph Chung <tausq@debian.org>
5699
5700 * hppa-hpux-tdep.c (offsetof): Define.
5701 (hppa_hpux_pc_in_sigtramp, hppa32_hpux_frame_saved_pc_in_sigtramp)
5702 (hppa32_hpux_frame_base_before_sigtramp)
5703 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
5704 (hppa64_hpux_frame_saved_pc_in_sigtramp)
5705 (hppa64_hpux_frame_base_before_sigtramp)
5706 (hppa64_hpux_frame_find_saved_regs_in_sigtramp): Remove unused
5707 functions.
5708 (struct hppa_hpux_sigtramp_unwind_cache, hppa_hpux_tramp_reg)
5709 (hppa_hpux_sigtramp_frame_unwind_cache)
5710 (hppa_hpux_sigtramp_frame_this_id)
5711 (hppa_hpux_sigtramp_frame_prev_register)
5712 (hppa_hpux_sigtramp_frame_unwind)
5713 (hppa_hpux_sigtramp_unwind_sniffer): New signal trampoline unwinder.
5714 (hppa_hpux_init_abi): Register sigtramp unwinder.
5715 * Makefile.in (hppa-hpux-tdep.o): Update dependencies.
5716
5717 2004-05-25 Randolph Chung <tausq@debian.org>
5718
5719 * hppa-tdep.c (hppa_fallback_frame_cache): Handle stack adjustment,
5720 and multiple stack unwinds.
5721 (hppa_stub_unwind_sniffer): Handle unwind from pc == 0.
5722
5723 2004-05-25 Andrew Cagney <cagney@gnu.org>
5724
5725 * symfile.h (symbol_file_add_from_memory): Delete declaration.
5726 * symfile-mem.h: Delete file.
5727 * symfile-mem.c: Do not include "symfile-mem.h".
5728 (symbol_file_add_from_memory): Make static. Use "struct bfd" and
5729 "struct bfd_section". When an error do not bother returning NULL.
5730 (add_symbol_file_from_memory_command): Use "struct bfd" and
5731 "struct bfd_section".
5732 * Makefile.in (symfile_mem_h): Delete.
5733 (symfile-mem.o): Update dependencies.
5734
5735 2004-05-25 Nick Roberts <nickrob@gnu.org>
5736
5737 * gdb-mi.el: New file.
5738
5739 2004-05-25 Andrew Cagney <cagney@gnu.org>
5740
5741 * inftarg.c: Include "observer.h".
5742 (child_attach, child_create_inferior): Notify inferior_created.
5743 * corelow.c: Include "observer.h".
5744 (core_open): Notify inferior_created.
5745 * Makefile.in (inftarg.o, corelow.o): Update dependencies.
5746
5747 2004-05-25 Andrew Cagney <cagney@gnu.org>
5748
5749 * target.h (struct target_ops): Add from_tty to
5750 to_create_inferior.
5751 (target_create_inferior, find_default_create_inferior): Update.
5752 * infcmd.c (run_command): Update.
5753 * wince.c (child_create_inferior): Update.
5754 * win32-nat.c (child_create_inferior): Update.
5755 * uw-thread.c (uw_thread_create_inferior): Update.
5756 * thread-db.c (thread_db_create_inferior): Update.
5757 * target.c (debug_to_create_inferior)
5758 (find_default_create_inferior): Update.
5759 (maybe_kill_then_create_inferior): Update.
5760 * sol-thread.c (sol_thread_create_inferior): Update.
5761 * remote.c (extended_remote_async_create_inferior)
5762 (extended_remote_create_inferior): Update.
5763 * remote-vx.c (vx_create_inferior): Update.
5764 * remote-st.c (st2000_create_inferior): Update.
5765 * remote-sim.c (gdbsim_create_inferior): Update.
5766 * remote-sds.c (sds_create_inferior): Update.
5767 * remote-rdp.c (remote_rdp_create_inferior): Update.
5768 * remote-rdi.c (arm_rdi_create_inferior): Update.
5769 * remote-m32r-sdi.c (m32r_create_inferior): Update.
5770 * remote-e7000.c (e7000_create_inferior): Update.
5771 * procfs.c (procfs_create_inferior): Update.
5772 * ocd.c (ocd_create_inferior): Update.
5773 * ocd.h (ocd_create_inferior): Update.
5774 * nto-procfs.c (procfs_create_inferior): Update.
5775 * monitor.c (monitor_create_inferior): Update.
5776 * lin-lwp.c (lin_lwp_create_inferior): Update.
5777 * inftarg.c (child_create_inferior): Update.
5778 * hpux-thread.c (hpux_thread_create_inferior): Update.
5779 * gnu-nat.c (gnu_create_inferior): Update.
5780
5781 2004-05-25 Andrew Cagney <cagney@gnu.com>
5782
5783 * MAINTAINERS: Update e-mail address.
5784
5785 2004-05-24 Randolph Chung <tausq@debian.org>
5786
5787 * thread.c (info_threads_command, thread_apply_all_command)
5788 (thread_apply_command, thread_command, do_captured_thread_select):
5789 Remove HPUXHPPA-specific code.
5790
5791 2004-05-24 Randolph Chung <tausq@debian.org>
5792
5793 * hppa-tdep.c (SR4EXPORT_LDIL_OFFSET, SR4EXPORT_LDO_OFFSET): Remove
5794 unused symbols.
5795 * hppa-tdep.h (HPPA_INSTRUCTION_SIZE): Remove, since there are no more
5796 references.
5797
5798 2004-05-24 Joel Brobecker <brobecker@gnat.com>
5799
5800 * infcmd.c (kill_if_already_running): New function, extracted
5801 from run_command().
5802 (run_command): Replace extracted code by call to
5803 kill_if_already_running().
5804 (start_command): New function.
5805 (_initialize_infcmd): Add "start" command.
5806
5807 2004-05-24 Mark Kettenis <kettenis@gnu.org>
5808
5809 Add OpenBSD/m88k support.
5810 * NEWS (New native configurations): Mention OpenBSD/m88k.
5811 * m88k-tdep.c, m88k-tdep.h, m88kbsd-nat.c, config/m88k/nm-obsd.h,
5812 config/m88k/obsd.mh, config/m88k/obsd.mt: New files.
5813 * Makefile.in (m88k_tdep_h): New variable.
5814 (ALLDEPFILES): Add m88k-tdep.c and m88kbsd-nat.c.
5815 (m88kbsd-nat.o, m88k-tdep.o): New dependencies.
5816 * configure.host: Add m88*-*-openbsd*.
5817 * configure.tgt: Add m88*-*-openbsd*.
5818
5819 2004-05-24 Jim Blandy <jimb@redhat.com>
5820
5821 * MAINTAINERS (tracing bytecode stuff): Allow global maintainers
5822 to approve changes.
5823
5824 2004-05-24 Kevin Buettner <kevinb@redhat.com>
5825
5826 * symtab.c (fixup_section): Search section table when lookup by
5827 name fails.
5828
5829 2004-05-24 Randolph Chung <tausq@debian.org>
5830
5831 * hppa-tdep.c: Fix handling of 8-byte structures; they should not
5832 be "small_struct".
5833
5834 2004-05-24 Mark Kettenis <kettenis@gnu.org>
5835
5836 * m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct
5837 register number in regcache_raw_collect call.
5838 (m68kbsd_collect_fpregset): Likewise.
5839 * vaxbsd-nat.c (vaxbsd_collect_gregset): Likewise.
5840
5841 * regset.h (struct regset): Add back `regset' member.
5842
5843 2004-05-23 Mark Kettenis <kettenis@gnu.org>
5844
5845 * configure.in: Check for td_pcb in `struct thread'.
5846 * configure, config.in: Regenerated.
5847
5848 * dpx2-nat.c: Remove file.
5849 * Makefile.in (ALLDEPFILES): Remove dpx2-nat.c.
5850 (dpx2-nat.o): Remove dependencies.
5851
5852 * amd64obsd-nat.c: Include "gdbcore.h", "regcache.h",
5853 <sys/types.h>, <machine/frame.h>, <machine/pcb.h> and "bsd-kvm.h".
5854 (amd64obsd_supply_pcb): New function.
5855 (_initialize_amd64obsd_nat): Enable libkvm interface.
5856 * Makefile.in (amd64obsd-nat.o): Update dependencies.
5857 * config/i386/obsd64.mh (NATDEPFILES): Add bsd-kvm.o
5858 (LOADLIBES): New variable.
5859
5860 * sparcnbsd-nat.c: Include "gdbcore.h", "regcache.h",
5861 <sys/types.h>, <machine/pcb.h> and "bsd-kvm.h".
5862 (sparc32nbsd_supply_pcb): New function.
5863 (_initialize_sparcnbsd_nat): Enable libkvm interface.
5864 * Makefile.in (sparcnbsd-nat.o): Update dependencies.
5865 * config/sparc/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
5866 (LOADLIBES): New variable.
5867
5868 2004-05-22 Mark Kettenis <kettenis@gnu.org>
5869
5870 * bsd-kvm.c, bsd-kvm.h: New files.
5871 * i386fbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
5872 "bsd-kvm.h".
5873 (i386fbsd_supply_pcb): New function.
5874 * Makefile.in (ALLDEPFILES): Add bsd-kvm.c.
5875 (i386fbsd-nat.o): Update dependencies.
5876 (bsd_kvm_h): New variable.
5877 (bsd-kvm.o): New dependency.
5878 * config/i386/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
5879 (LOADLIBES): New variable.
5880
5881 * regset.c: Tweak comment.
5882 (regset_alloc): Remove descr argument. Use GDBARCH_OBSTACK_ZALLOC
5883 macro.
5884 * regset.h: Update copyright year.
5885 (struct regset): Remove `descr' member, add `gdbarch' member.
5886 (regset_alloc): Adjust prototype and comment.
5887 * i386-tdep.c (i386_supply_gregset): Get TDEP from REGSET->arch.
5888 (i386_supply_fpregset): Likewise.
5889 (i386_regset_from_core_section): Update call to regset_alloc.
5890 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Get TDEP from
5891 REGSET->arch.
5892 (i386obsd_aout_regset_from_core_section): Update call to
5893 regset_alloc.
5894 * i386nbsd-tdep.c (i386nbsd_aout_supply_regset): Get TDEP from
5895 REGSET->arch.
5896 (i386nbsd_aout_regset_from_core_section): Update call to
5897 regset_alloc.
5898 * amd64-tdep.c (amd64_supply_fpregset): Get TDEP from
5899 REGSET->arch.
5900 (amd64_regset_from_core_section): Update call to regset_alloc.
5901 * amd64obsd-tdep.c (amd64obsd_supply_regset): Get TDEP from
5902 REGSET->arch.
5903 (amd64obsd_regset_from_core_section): Update call to regset_alloc.
5904 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Directly pass
5905 &sparc32nbsd_gregset in sparc32_supply_gregset call.
5906 (sparc32nbsd_init_abi): Update call to regset_alloc.
5907 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Directly pass
5908 &sparc64obsd_core_gregset in sparc64_supply_gregset call.
5909 (sparc64obsd_init_abi): Update call to regset_alloc.
5910 * sparc64nbsd-tdep.c (sparc64nbsd_supply_gregset): Directly pass
5911 &sparc64nbsd_gregset in sparc64_supply_gregset call.
5912 (sparc64nbsd_init_abi): Update call to regset_alloc.
5913 * sparc64fbsd-tdep.c (sparc64fbsd_supply_gregset): Directly pass
5914 &sparc64fbsd_gregset in sparc64_supply_gregset call.
5915 (sparc64fbsd_init_abi): Update call to regset_alloc.
5916
5917 2004-05-22 Jim Blandy <jimb@redhat.com>
5918
5919 * ppc-tdep.h (spe_register_p): New declaration.
5920 (struct gdbarch_tdep): New members: ppc_acc_regnum and
5921 ppc_spefscr_regnum.
5922 * rs6000-tdep.c (spe_register_p): New function.
5923 (rs6000_dwarf2_stab_reg_to_regnum): Recognize numbers for acc and
5924 spefscr.
5925 (rs6000_gdbarch_init): Initialize the new members of the tdep
5926 structure.
5927
5928 2004-05-21 Jim Blandy <jimb@redhat.com>
5929
5930 * ppc-linux-nat.c (fetch_register): Move code back to be next
5931 to the comment that describes it. (Moved code, instead of
5932 comment, for symmetry with store_register.)
5933
5934 Allocate regset structures in the gdbarch's obstack, not using
5935 xmalloc.
5936 * regset.c (regset_alloc): Renamed from regset_xmalloc.
5937 Add 'arch' argument. Allocate the regset on arch's obstack, not
5938 using xmalloc.
5939 * regset.h (regset_alloc): Update declaration.
5940 * am64-tdep.c (amd64_regset_from_core_section): Update call; pass
5941 gdbarch argument.
5942 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
5943 * i386-tdep.c (i386_regset_from_core_section): Same.
5944 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
5945 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
5946 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
5947 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
5948 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
5949 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
5950
5951 2004-05-21 Joel Brobecker <brobecker@gnat.com>
5952
5953 * config/djgpp/fnchange.lst: Undo previous change, was useless.
5954
5955 2004-05-21 Jim Blandy <jimb@redhat.com>
5956
5957 * dwarf2expr.c (execute_stack_op): Add 'break' statements after
5958 cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
5959
5960 2004-05-20 Jim Blandy <jimb@redhat.com>
5961
5962 * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
5963
5964 2004-05-20 Mark Kettenis <kettenis@gnu.org>
5965
5966 * regset.h: Make prototype const-correct.
5967 * regset.c (regset_xmalloc): Make const-correct.
5968
5969 2004-05-20 Paul N. Hilfinger <hilfinger@gnat.com>
5970
5971 * symtab.h (SYMBOL_SEARCH_NAME): New definition.
5972 (SYMBOL_MATCHES_SEARCH_NAME): New definition.
5973 (symbol_search_name): Declare.
5974
5975 * dictionary.c (iter_name_first_hashed): Match on SYMBOL_SEARCH_NAME.
5976 (iter_name_next_hashed): Ditto.
5977 (iter_name_next_linear): Ditto.
5978 (insert_symbol_hashed): Hash on SYMBOL_SEARCH_NAME.
5979
5980 * symtab.c (lookup_partial_symbol): Assume symbols ordered by
5981 search name, using SYMBOL_SEARCH_NAME and SYMBOL_MATCHES_SEARCH_NAME.
5982 (symbol_search_name): New function.
5983
5984 * symfile.c (compare_psymbols): Order by SYMBOL_SEARCH_NAME.
5985
5986 * minsyms.c (build_minimal_symbol_hash_tables): Change
5987 test for adding to demangled hash table to check for difference
5988 between SYMBOL_SEARCH_NAME and SYMBOL_LINKAGE_NAME.
5989
5990 2004-05-19 Jim Blandy <jimb@redhat.com>
5991
5992 Use a constructor function to create regset structures.
5993 * regset.h (supply_regset_ftype, collect_regset_ftype): New typedefs.
5994 (struct regset): Use supply_regset_ftype. Add new
5995 'collect_regset' member.
5996 (regset_xmalloc): New declaration.
5997 * regset.c: New file.
5998 * am64-tdep.c (amd64_regset_from_core_section): Use
5999 regset_xmalloc to construct regset structures.
6000 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
6001 * i386-tdep.c (i386_regset_from_core_section): Same.
6002 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
6003 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
6004 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
6005 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
6006 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
6007 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
6008 * Makefile.in (COMMON_OBS): Add regset.o.
6009 (regset.o): New rule.
6010
6011 2004-05-19 Joel Brobecker <brobecker@gnat.com>
6012
6013 * config/djgpp/fnchange.lst: Add entries for pthread_cond_wait.exp
6014 and pthread_cond_wait.c.
6015
6016 2004-05-18 Jim Blandy <jimb@redhat.com>
6017
6018 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize tdep fields
6019 before the mach-specific switch, and then let the individual cases
6020 override the defaults, rather than leaving them uninitialized
6021 until the switch and then setting them in each case.
6022
6023 2004-05-18 Randolph Chung <tausq@debian.org>
6024
6025 * hppa-tdep.c (hppa_frame_cache): Check for validity of r31 for
6026 millicode functions.
6027
6028 2004-05-18 Randolph Chung <tausq@debian.org>
6029
6030 * somsolib.c (som_solib_remove_inferior_hook): Make all the size
6031 references to dld_flags_buffer consistent.
6032
6033 2004-05-18 Randolph Chung <tausq@debian.org>
6034
6035 * hppa-tdep.c (hppa_frame_cache): If a frame pointer is available, use
6036 it for unwinding the stack.
6037
6038 2004-05-18 Randolph Chung <tausq@debian.org>
6039
6040 * config/pa/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE)
6041 Undefine these so we can overide them using gdbarch.
6042
6043 2004-05-18 Randolph Chung <tausq@debian.org>
6044
6045 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't do export stub
6046 handling for 64-bit HPUX (elf).
6047
6048 2004-05-18 Daniel Jacobowitz <dan@debian.org>
6049
6050 * alpha-tdep.c (alpha_gdbarch_init): Use LL suffix for large
6051 constants.
6052 * amd64-tdep.c (amd64_skip_prologue): Likewise.
6053 * ia64-tdep.c (examine_prologue): Likewise.
6054 * ns32k-tdep.c (ns32k_fix_call_dummy): Remove unused function.
6055 * v850-tdep.c (v850_fix_call_dummy): Likewise.
6056
6057 2004-05-18 Mark Kettenis <kettenis@gnu.org>
6058
6059 * vax-tdep.c (vax_return_value): Implement
6060 RETURN_VALUE_ABI_RETURNS_ADDRESS.
6061
6062 2004-05-17 Mark Kettenis <kettenis@gnu.org>
6063
6064 * vax-tdep.c (vax_return_value): Fix typo.
6065
6066 2004-05-17 Andrew Cagney <cagney@redhat.com>
6067
6068 * MAINTAINERS: Mark Salter was also responsible for
6069 testsuite/config/
6070
6071 * NEWS: Mention signal fixes.
6072
6073 2004-05-17 Randolph Chung <tausq@debian.org>
6074
6075 * hppa-tdep.c (hppa_stub_frame_unwind_cache): For HPUX stub unwinding,
6076 check to see if we are unwinding an export stub. Export stubs clobber
6077 the %rp in the call path and stores the original rp in a stack slot.
6078
6079 2004-05-17 Jim Blandy <jimb@redhat.com>
6080
6081 * MAINTAINERS: Update address for J.T. Conklin.
6082
6083 2004-05-17 Randolph Chung <tausq@debian.org>
6084
6085 * hppa-tdep.c: Remove superfluous #include's.
6086 * Makefile.in (hppa-tdep.o): Update dependencies.
6087
6088 2004-05-17 Randolph Chung <tausq@debian.org>
6089
6090 * hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
6091 (THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
6092 (unwind_command, hppa_alignof, prologue_inst_adjust_sp)
6093 (is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
6094 (read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
6095 Remove static function declarations.
6096
6097 2004-05-17 Mark Kettenis <kettenis@gnu.org>
6098
6099 * alphabsd-nat.c: Update copyright year.
6100 (getregs_supplies): Replace PC_REGNUM with ALPHA_PC_REGNUM.
6101
6102 * m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM
6103 and M68K_A2_REGNUM.
6104
6105 * m68k-tdep.c (m68k_svr4_return_value): Implement
6106 RETURN_VALUE_ABI_RETURNS_ADDRESS.
6107
6108 2004-05-16 Mark Kettenis <kettenis@gnu.org>
6109
6110 * sol-thread.c Update copyright year. Fix various coding
6111 standards violations. Tweak a few comments.
6112 (td_err_string, td_state_string, thread_to_lwp, lwp_to_thread):
6113 Delete prototypes.
6114
6115 2004-05-15 Randolph Chung <tausq@debian.org>
6116
6117 * hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs
6118 as pointer instead of array reference since HPUX compiler does
6119 not accept unsized array arguments.
6120 * somsolib.c (dld_flags_buffer): Use constant array size.
6121
6122 2004-05-15 Mark Kettenis <kettenis@gnu.org>
6123
6124 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimal
6125 offset with decimal offset.
6126 (amd64obsd_sigcontext_addr): Return correct address for entire
6127 signal trampoline.
6128
6129 * vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
6130 instead of get_frame_base.
6131
6132 * i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.
6133 (fill_gregset): Use regcache_raw_collect.
6134
6135 * config/djgpp/fnchange.lst: Add entries for ppcobsd-nat.c and
6136 ppcobsd-tdep.c.
6137
6138 * config/sparc/tm-nbsd64.h: Remove file.
6139 * config/tm-sunos.h: Remove file.
6140
6141 2004-05-15 Joel Brobecker <brobecker@gnat.com>
6142
6143 * rs6000-tdep.c (store_param_on_stack_p): New function,
6144 an improved version of some code extracted from skip_prologue().
6145 (skip_prologue): Use store_param_on_stack_p() to detect
6146 instructions saving a parameter on the stack. Detect when r0
6147 is used to save a parameter.
6148 Do not mark "li rx, SIMM" instructions as part of the prologue,
6149 unless the following instruction is also part of the prologue.
6150
6151 2004-05-14 Andrew Cagney <cagney@redhat.com>
6152
6153 * infrun.c (handle_inferior_event): Simplify
6154 STEP_OVER_UNDEBUGGABLE.
6155
6156 * infrun.c (handle_step_into_function): Delete function.
6157 (handle_inferior_event): Inline calls to
6158 handle_step_into_function.
6159
6160 2004-05-14 Jerome Guitton <guitton@gnat.com>
6161
6162 * rs6000-nat.c: Fix a comment.
6163
6164 2004-05-12 David Anderson <davea@sgi.com>
6165
6166 Committed by Jim Blandy <jimb@redhat.com>:
6167 * regcache.c (struct regcache_descr): fix comment spelling.
6168
6169 2004-05-13 J. Brobecker <brobecker@gnat.com>
6170
6171 * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
6172 Fixes a link link failure.
6173
6174 2004-05-13 J. Brobecker <brobecker@gnat.com>
6175
6176 * aix-thread.c (store_regs_kernel_thread): Fix a little obvious
6177 error that was causing the build to fail.
6178
6179 2004-05-13 J. Brobecker <brobecker@gnat.com>
6180
6181 * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.
6182 * Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
6183
6184 2004-05-13 Andrew Cagney <cagney@redhat.com>
6185
6186 * infrun.c (handle_inferior_event): Check for
6187 STEP_OVER_UNDEBUGGABLE after signal trampolines and function
6188 calls. Update comments.
6189
6190 2004-05-13 Jim Blandy <jimb@redhat.com>
6191
6192 * aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)
6193 (fetch_regs_user_thread, fetch_regs_kernel_thread)
6194 (store_regs_user_thread, store_regs_kernel_thread): Use
6195 ppc_num_gprs and ppc_num_fprs instead of '32' and '31'.
6196 * ppc-linux-nat.c (fill_gregset): Same.
6197 * ppc-linux-tdep.c (ppc_linux_supply_gregset)
6198 (ppc_linux_sigtramp_cache): Same.
6199 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg)
6200 (ppcnbsd_sigtramp_cache_init): Same.
6201 * rs6000-nat.c (fetch_core_registers): Same.
6202 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset)
6203 (rs6000_frame_cache): Same.
6204
6205 * aix-thread.c (supply_gprs64, fetch_regs_user_thread)
6206 (store_regs_user_thread): Use tdep->ppc_gp0_regnum, instead
6207 of assuming that the gprs are numbered starting with zero.
6208 * ppc-linux-nat.c (fill_gregset): Same.
6209 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Same.
6210 * ppcnbsd-nat.c (getregs_supplies): Same.
6211 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg): Same.
6212 * rs6000-nat.c (fetch_core_registers): Same.
6213 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset): Same.
6214
6215 2004-05-07 Michael Snyder <msnyder@redhat.com>
6216
6217 * tracepoint.c (scope_info): Add handling for LOC_COMPUTED,
6218 LOC_COMPUTED_ARG, and LOC_INDIRECT.
6219
6220 2004-05-13 Andrew Cagney <cagney@redhat.com>
6221
6222 * infrun.c (handle_inferior_event): Use frame_unwind_id.
6223
6224 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
6225
6226 * dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust
6227 base_address for shared libraries.
6228
6229 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
6230
6231 * MAINTAINERS (write after approval): Add myself.
6232
6233 2004-05-13 Ulrich Weigand <uweigand@de.ibm.com>
6234
6235 * breakpoint.c (bpstat_stop_status): Add new argument
6236 STOPPED_BY_WATCHPOINT. Use it instead of testing
6237 target_stopped_data_address agaist 0 to check whether
6238 or not we stopped due to a hardware watchpoint.
6239 * breakpoint.h (bpstat_stop_status): Adapt prototype.
6240 * infrun.c (handle_inferior_event): Call bpstat_stop_status
6241 with new argument.
6242
6243 2004-05-12 Jim Blandy <jimb@redhat.com>
6244
6245 * configure.in: When checking whether we should use the -bbigtoc
6246 option, don't forget to restore the original value of LDFLAGS.
6247 * configure: Regenerated.
6248
6249 2004-05-12 Andrew Cagney <cagney@redhat.com>
6250
6251 * thread.c (load_infrun_state): Delete step_sp.
6252 * infrun.c (context_switch): Ditto.
6253 * inferior.h (step_sp): Ditto.
6254 * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto.
6255 * gdbthread.h (struct thread_info, save_infrun_state)
6256 (restore_infrun_state): Ditto.
6257
6258 2004-05-12 Ulrich Weigand <uweigand@de.ibm.com>
6259
6260 * MAINTAINERS (write after approval): Add myself.
6261
6262 2004-05-12 Andrew Cagney <cagney@redhat.com>
6263
6264 * infrun.c (adjust_pc_after_break): Rewrite decr logic,
6265 eliminate reference to step_sp.
6266 (struct execution_control_state, init_execution_control_state)
6267 (handle_inferior_event, keep_going): Delete update_step_sp and
6268 step_sp.
6269 * infcmd.c (step_sp): Note that variable is unused.
6270
6271 2004-05-11 Andrew Cagney <cagney@redhat.com>
6272
6273 * infrun.c (step_over_function): Delete function.
6274 (handle_step_into_function): Use insert_step_resume_breakpoint.
6275 (insert_step_resume_breakpoint): Fix assertion.
6276
6277 2004-05-11 Nick Roberts <nickrob@gnu.org>
6278
6279 * utils.c (defaulted_query): Just use the normal query input type
6280 when printing the annotations.
6281
6282 2004-05-11 Andrew Cagney <cagney@redhat.com>
6283
6284 * infrun.c (handle_inferior_event): Simplify code handling
6285 step-into or return-from a signal trampoline.
6286
6287 2004-05-11 Andrew Cagney <cagney@redhat.com>
6288
6289 * ppcnbsd-tdep.c: Include "gdb_assert.h".
6290 * Makefile.in (ppcnbsd-tdep.o): Update dependencies.
6291
6292 2004-05-10 Jim Blandy <jimb@redhat.com>
6293
6294 * ppc-bdm.c (bdm_ppc_fetch_registers): Replace utterly broken code
6295 with a call to internal_error.
6296
6297 * ppc-tdep.h (struct gdbarch_tdep): Change definition of
6298 ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
6299 processor variant lacks those registers.
6300 (ppc_floating_point_unit_p): Change description to make it clear
6301 that this returns info about the ISA, not the ABI.
6302 * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
6303 return true or false by checking tdep->ppc_fp0_regnum and
6304 tdep->ppc_fpscr_regnum. The original code replicated the BFD
6305 arch/mach switching done in rs6000_gdbarch_init; it's better to
6306 keep that logic there, and just check the results here.
6307 (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
6308 tdep->ppc_fpscr_regnum to -1 to indicate that we have no
6309 floating-point registers.
6310 (ppc_supply_fpregset, ppc_collect_fpregset)
6311 (rs6000_push_dummy_call, rs6000_extract_return_value)
6312 (rs6000_store_return_value): Assert that we have floating-point
6313 registers.
6314 (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
6315 (rs6000_frame_cache): Don't note the locations at which
6316 floating-point registers were saved if we have no fprs.
6317 * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
6318 registers.
6319 (fetch_regs_user_thread, fetch_regs_kernel_thread)
6320 (store_regs_user_thread, store_regs_kernel_thread): Only call
6321 supply_fprs / fill_fprs if we actually have floating-point
6322 registers.
6323 (special_register_p): Check ppc_fpscr_regnum before matching
6324 against it.
6325 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
6326 supply / collect fpscr if we don't have it.
6327 * ppc-bdm.c: #include "gdb_assert.h".
6328 (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
6329 have floating-point registers, since I can't test this code on
6330 FP-free systems to adapt it.
6331 * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
6332 fpscr and floating point register numbers if they don't exist.
6333 (fetch_register): Assert that we have floating-point registers
6334 before we reach the code that handles them.
6335 (store_register): Same. And use tdep instead of calling
6336 gdbarch_tdep again.
6337 (fill_fpregset): Don't try to collect FP registers and fpscr if we
6338 don't have them.
6339 (ppc_linux_sigtramp_cache): Don't record the saved locations of
6340 fprs and fpscr if we don't have them.
6341 (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
6342 don't have them.
6343 * ppcnbsd-nat.c: #include "gdb_assert.h".
6344 (getfpregs_supplies): Assert that we have floating-point registers.
6345 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
6346 * ppcobsd-tdep.c: #include "gdb_assert.h".
6347 (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
6348 have floating-point registers.
6349 * rs6000-nat.c (regmap): Don't match against the fpscr and
6350 floating point register numbers if they don't exist.
6351 (fetch_inferior_registers, store_inferior_registers,
6352 fetch_core_registers): Only fetch / store / supply the
6353 floating-point registers and the fpscr if we have them.
6354 * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
6355 (ppcobsd-tdep.o): Update dependencies.
6356
6357 2004-05-10 Andrew Cagney <cagney@redhat.com>
6358
6359 * infrun.c (through_sigtramp_breakpoint): Delete variable.
6360 (context_switch): Do not switch through_sigtramp_breakpoint.
6361 * gdbthread.h (save_infrun_state, load_infrun_state)
6362 (struct thread_info): Delete through_sigtramp_breakpoint parameter
6363 and structure member.
6364 * thread.c (load_infrun_state, save_infrun_state): Update.
6365
6366 2004-05-10 Mark Kettenis <kettenis@gnu.org>
6367
6368 * m68kbsd-tdep.c (m68kbsd_elf_init_abi): Call m68k_svr4_init_abi.
6369
6370 2004-05-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
6371
6372 * acinclude.m4: Quote macro names being defined by AC_DEFUN
6373 throughout.
6374 * aclocal.m4: Regenerate.
6375
6376 2004-05-10 Nathan J. Williams <nathanw@wasabisystems.com>
6377
6378 * alphanbsd-tdep.c: Fix include of "gdb_string.h".
6379
6380 2004-05-10 Andrew Cagney <cagney@redhat.com>
6381
6382 * infrun.c (check_sigtramp2): Delete function.
6383 (handle_inferior_event): When single stepping, and taking a
6384 signal, set a breakpoint at the signal return address. Delete
6385 redundant calls to check_sigtramp2.
6386 (insert_step_resume_breakpoint): New function.
6387 (through_sigtramp_breakpoint, handle_inferior_event)
6388 (follow_exec, wait_for_inferior, fetch_inferior_event)
6389 (currently_stepping, keep_going): Delete most uses of
6390 through_sigtramp_breakpoint, not that it should be deleted.
6391 (delete_breakpoint_current_contents): Delete function.
6392
6393 2004-05-10 Randolph Chung <tausq@debian.org>
6394
6395 * config/pa/linux.mt (TM_FILE): Use new tm-linux.h for hppa-linux
6396 target.
6397 * config/pa/tm-linux.h: New file.
6398
6399 2004-05-10 Daniel Jacobowitz <drow@mvista.com>
6400
6401 * cli/cli-setshow.c (cmd_show_list): Check for "show" in the middle
6402 of prefixes. Don't print the prefix twice in the CLI.
6403
6404 2004-05-10 Jim Blandy <jimb@redhat.com>
6405
6406 * rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do
6407 collect all the gprs.
6408
6409 * rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error in
6410 loop collecting gprs.
6411
6412 2004-05-09 Andrew Cagney <cagney@redhat.com>
6413
6414 * remote-vx.c (net_step): Delete step-range code.
6415 * remote.c (remote_resume, init_all_packet_configs)
6416 (set_remote_protocol_E_packet_cmd)
6417 (show_remote_protocol_E_packet_cmd)
6418 (remote_protocol_E, show_remote_cmd, _initialize_remote)
6419 (remote_protocol_e, set_remote_protocol_e_packet_cmd)
6420 (show_remote_protocol_e_packet_cmd): Ditto.
6421
6422 2004-05-09 Mark Kettenis <kettenis@gnu.org>
6423
6424 * hppa-tdep.h (enum hppa_regnum): Name enum, add HPPA_R1_REGNUM.
6425
6426 * hppa-tdep.h: Update copyright year.
6427 (struct trad_frame_saved_reg): Add opaque declaration.
6428
6429 * amd64-tdep.c (amd64_return_value): Implement
6430 RETURN_VALUE_ABI_RETURNS_ADDRESS.
6431
6432 * m68k-tdep.c (m68k_convert_register_p, m68k_register_to_value)
6433 (m68k_value_to_register): New functions.
6434 (m68k_gdbarch_init): Set convert_register_p, register_to_value and
6435 value_to_register.
6436
6437 * defs.h (enum return_value_convention): Add
6438 RETURN_VALUE_ABI_RETURNS_ADDRESS and
6439 RETURN_VALUE_ABI_PRESERVES_ADDRESS.
6440 * infcmd.c (legacy_return_value): New function.
6441 (print_return_value): Rwerite to implement
6442 RETURN_VALUE_ABI_RETURNS_ADDRESS.
6443 * values.c (using_struct_return): Check for inequality to
6444 RETURN_VALUE_REGISTER_CONVENTION instead of equality to
6445 RETURN_VALUE_STRUCT_CONVENTION.
6446 * i386-tdep.c (i386_return_value): Implement
6447 RETURN_VALUE_ABI_RETURNS_ADDRESS.
6448
6449 * vax-tdep.c: Tweak comments. Reorder include files. Don't
6450 include "symtab.h", "opcode/vax.h" and "inferior.h".
6451 (vax_skip_prologue): Replace calls to read_memory_integer by calls
6452 to read_memory_unsigned_integer.
6453 (vax_gdbarch_init): Reorder.
6454 (_initialize_vax_tdep): Spell out prototype.
6455 * Makefile.in (vax-tdep.o): Update dependencies.
6456
6457 2004-05-08 Andrew Cagney <cagney@redhat.com>
6458
6459 * infrun.c (resume): Delete call to DO_DEFERRED_STORES.
6460 * target.c (target_detach, target_disconnect): Ditto.
6461
6462 * infcall.c (call_function_by_hand): When no
6463 DEPRECATED_SAVE_DUMMY_FRAME_TOS call generic_save_dummy_frame_tos.
6464 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set
6465 DEPRECATED_SAVE_DUMMY_FRAME_TOS.
6466 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6467 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6468
6469 * gdbarch.sh (DEPRECATED_FIX_CALL_DUMMY): Delete.
6470 * gdbarch.h, gdbarch.c: Re-generate.
6471 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
6472 deprecated_fix_call_dummy.
6473 * v850-tdep.c (v850_gdbarch_init): Ditto.
6474 * infcall.c (call_function_by_hand): Do not call
6475 DEPRECATED_FIX_CALL_DUMMY.
6476
6477 * gdbarch.sh (DEPRECATED_CALL_DUMMY_WORDS)
6478 (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Delete.
6479 * gdbarch.h, gdbarch.c: Re-generate.
6480 * arm-linux-tdep.c (arm_linux_call_dummy_words)
6481 (arm_linux_init_abi): Do not set deprecated_call_dummy_words or
6482 deprecated_sizeof_call_dummy_words.
6483 * arm-tdep.c (arm_call_dummy_words, arm_gdbarch_init): Ditto.
6484 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
6485 * v850-tdep.c (v850_gdbarch_init): Ditto.
6486 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
6487 * ns32k-tdep.c (ns32k_call_dummy_words, ns32k_gdbarch_init): Ditto.
6488 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6489 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6490 * arch-utils.h (legacy_call_dummy_words)
6491 (legacy_sizeof_call_dummy_words): Delete declarations.
6492 * arch-utils.c (legacy_call_dummy_words)
6493 (legacy_sizeof_call_dummy_words): Delete variables.
6494
6495 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Delete.
6496 * gdbarch.h, gdbarch.c: Re-generate.
6497 * inferior.h (PUSH_DUMMY_FRAME): Delete macro.
6498 * infcall.c (call_function_by_hand): Eliminate call to
6499 DEPRECATED_PUSH_DUMMY_FRAME.
6500 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
6501 push_dummy_frame.
6502 (ns32k_push_dummy_frame): Delete function.
6503
6504 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
6505 deprecated_call_dummy_breakpoint_offset or
6506 deprecated_call_dummy_start_offset.
6507 * dummy-frame.c, arm-tdep.c: Update comments.
6508 * gdbarch.sh (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET)
6509 (DEPRECATED_CALL_DUMMY_START_OFFSET): Delete.
6510 * gdbarch.h, gdbarch.c: Re-generate.
6511
6512 * infcall.c (legacy_push_dummy_code): Delete function.
6513 (push_dummy_code): Delete call.
6514
6515 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete.
6516 * gdbarch.h, gdbarch.c: Re-generate.
6517 * blockframe.c (legacy_frame_chain_valid): Simplify by eliminating
6518 DEPRECATED_USE_GENERIC_DUMMY_FRAMES.
6519 * infcall.c (legacy_push_dummy_code, call_function_by_hand): Ditto.
6520 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Ditto.
6521
6522 * breakpoint.h (deprecated_frame_in_dummy): Delete declaration.
6523 (struct frame_info): Delete opaque declaration.
6524 * breakpoint.c (deprecated_frame_in_dummy): Delete function.
6525 * frame.c (get_frame_type): Delete call.
6526
6527 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
6528 pc_in_call_dummy.
6529 * inferior.h (deprecated_pc_in_call_dummy_on_stack): Delete.
6530 * blockframe.c (deprecated_pc_in_call_dummy_on_stack): Delete.
6531
6532 2004-05-08 Mark Kettenis <kettenis@gnu.org>
6533
6534 * alphanbsd-tdep.c: Include "gdb_string.h".
6535 * armnbsd-tdep.c: Update copyright year.
6536 Include "gdb_string.h".
6537 * Makefile.in (alphanbsd-tdep.o, armnbsd-tdep.o): Update
6538 dependencies.
6539
6540 * delta68-nat.c: Remove file.
6541 * m68k-tdep.c (delta68_in_sigtramp, delta68_frame_args_address)
6542 (delta68_frame_saved_pc, delta68_frame_num_args): Remove functions.
6543 * Makefile.in (ALLDEPFILES): Remove delta68-nat.c.
6544 (delta68-nat.o): Remove dependency.
6545
6546 * m68k-tdep.c (m68k_frameless_function_invocation): Remove
6547 function.
6548 (m68k_gdbarch_init): Don't set
6549 deprecated_frameless_function_invocation.
6550
6551 2004-05-07 Randolph Chung <tausq@debian.org>
6552
6553 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
6554 read_memory_nobpt for code reading when doing frame unwinding.
6555 * hppa-linux-tdep.c (insns_match_pattern): Likewise.
6556
6557 2004-05-07 Randolph Chung <tausq@debian.org>
6558
6559 * hppa-linux-tdep.c (hppa_linux_sigtramp_find_sigcontext): Pass in pc
6560 instead of sp, handle sigaltstack case.
6561 (hppa_linux_sigtramp_frame_unwind_cache): Adjust calls to
6562 hppa_linux_sigtramp_find_sigcontext, and set base to the frame of the
6563 signal handler and not that of the caller.
6564 (hppa_linux_sigtramp_unwind_sniffer): Adjust calls to
6565 hppa_linux_sigtramp_find_sigcontext.
6566
6567 2004-05-07 Randolph Chung <tausq@debian.org>
6568
6569 * Makefile.in (ALLDEPFILES): Add hppa-linux-tdep.c and
6570 hppa-linux-nat.c.
6571 (hppa-linux-tdep.o, hppa-linux-nat.o): Define rules.
6572 * hppa-linux-nat.c (fetch_register, store_register): Define.
6573 (fetch_inferior_registers, store_inferior_registers): Define.
6574 (supply_gregset): Add comment and clean up some unneeded code.
6575 (fill_gregset): Add comment and fix so that it saves registers in
6576 the right place in the gregset.
6577 (fill_fpregset): Fix buffer overrun problem.
6578 * config/pa/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
6579
6580 2004-05-07 Randolph Chung <tausq@debian.org>
6581
6582 * hppa-tdep.c (hppa_frame_prev_register_helper): New function to
6583 do common handling of the pcoqt register.
6584 (hppa_frame_prev_register, hppa_stub_frame_prev_register): Convert
6585 to use helper function.
6586 (hppa_frame_unwind_sniffer): Only use if unwind entry is present.
6587 (hppa_fallback_frame_cache, hppa_fallback_frame_this_id)
6588 (hppa_fallback_frame_prev_register, hppa_fallback_frame_unwind): New
6589 generic fallback unwinder when all else fails.
6590 (hppa_gdbarch_init): Add fallback sniffer.
6591 * hppa-tdep.h (hppa_frame_prev_register_helper): Prototype.
6592 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register): Convert
6593 to use helper function.
6594
6595 2004-05-08 Joel Brobecker <brobecker@gnat.com>
6596
6597 * config/djgpp/fnchange.lst: Add translation rules for
6598 gdb.arch/powerpc-aix-prologue.c and gdb.arch/powerpc-aix-prologue.exp.
6599
6600 2004-05-08 Mark Kettenis <kettenis@gnu.org>
6601
6602 * frame.c (get_prev_frame_1): Work around GCC bug.
6603 * frame.h: Add comment about GCC bug.
6604
6605 2004-05-07 Andrew Cagney <cagney@redhat.com>
6606
6607 * observer.c: Include "commands.h" and "gdbcmd.h".
6608 (observer_debug, _initialize_observer): Add the
6609 command "set/show debug observer".
6610 * observer.sh: When observer debugging, log notify calls.
6611 * Makefile.in (observer.o): Update dependencies.
6612
6613 2004-05-07 Jason Molenda (jmolenda@apple.com)
6614
6615 * cli/cli-decode.c: Fix "SHOW_DOR" comment typeos.
6616
6617 2004-05-07 Jim Blandy <jimb@redhat.com>
6618
6619 * aix-thread.c (fetch_regs_kernel_thread, fill_gprs64,
6620 fill_gprs32, store_regs_kernel_thread): Use tdep->ppc_gp0_regnum
6621 to recognize gpr regnums, instead of assuming that
6622 tdep->ppc_fp0_regnum marks the end of the general-purpose
6623 registers.
6624
6625 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Assert that
6626 the given architecture has floating-point registers.
6627
6628 2004-05-07 Andrew Cagney <cagney@redhat.com>
6629
6630 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Replace with
6631 macro defined to 1.
6632 * gdbarch.h, gdbarch.c: Re-generate.
6633 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
6634 deprecated_use_generic_dummy_frames.
6635
6636 2004-05-07 Brian Ford <ford@vss.fsi.com>
6637
6638 * NEWS: Mention Cygwin DWARF 2 support.
6639
6640 2004-05-07 Andrew Cagney <cagney@redhat.com>
6641
6642 * objfiles.h (struct entry_info): Delete unused fields
6643 deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
6644 * objfiles.c (init_entry_point_info, objfile_relocate): Update.
6645 * mipsread.c (mipscoff_symfile_read): Update.
6646 * mdebugread.c (parse_partial_symbols): Update.
6647 * dwarfread.c (read_file_scope): Update.
6648 * dwarf2read.c (read_file_scope): Update.
6649 * dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
6650 * coffread.c (complete_symtab): Update.
6651
6652 2004-05-07 Mark Kettenis <kettenis@gnu.org>
6653
6654 * infcall.c (_initialize_infcall): Fix typo.
6655
6656 2004-05-07 Andrew Cagney <cagney@redhat.com>
6657
6658 * cli/cli-decode.c (add_setshow_zinteger_cmd): New function.
6659 * command.h (add_setshow_zinteger_cmd): Declare.
6660
6661 2004-05-06 Randolph Chung <tausq@debian.org>
6662
6663 * config/pa/tm-hppa.h (RO_REGNUM, FLAGS_REGNUM, RP_REGNUM)
6664 (HPPA_FP_REGNUM, HPPA_SP_REGNUM, SAR_REGNUM, IPSW_REGNUM)
6665 (PCOQ_HEAD_REGNUM, PCSQ_HEAD_REGNUM, PCOQ_TAIL_REGNUM, PCSQ_TAIL_REGNUM)
6666 (EIEM_REGNUM, IIR_REGNUM, ISR_REGNUM, IOR_REGNUM, SR4_REGNUM)
6667 (RCR_REGNUM, PID0_REGNUM, PID1_REGNUM, PID2_REGNUM, PID3_REGNUM)
6668 (CCR_REGNUM, TR0_REGNUM, CR27_REGNUM, HPPA_FP0_REGNUM, FP4_REGNUM)
6669 (ARG0_REGNUM, ARG1_REGNUM, ARG2_REGNUM, ARG3_REGNUM): Move *_REGNUM
6670 definitions ...
6671 * hppa-tdep.h: ... to here, with HPPA_ prefix.
6672 * Makefile.in (hppah-nat.o): Add $(hppa_tdep_h)
6673 * hppa-hpux-tdep.c (hppa32_hpux_frame_find_saved_regs_in_sig)
6674 (hppa64_hpux_frame_find_saved_regs_in_sig)
6675 (child_get_current_exception_event): Add HPPA_ prefix to *_REGNUM usage.
6676 * hppa-linux-nat.c (GR_REGNUM, TR_REGNUM, greg_map): Likewise.
6677 * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum)
6678 (hppa_linux_target_write_pc, hppa_linux_sigtramp_frame_unwind_cache)
6679 (hppa_linux_sigtramp_frame_prev_register): Likewise.
6680 * hppa-tdep.c (hppa32_return_value, hppa64_return_value)
6681 (hppa32_push_dummy_call, hppa64_push_dummy_call, hppa64_frame_align)
6682 (hppa_target_read_pc, hppa_target_write_pc, hppa_frame_cache)
6683 (hppa_frame_prev_register, hppa_stub_frame_unwind_cache)
6684 (hppa_stub_frame_prev_register, hppa_unwind_dummy_id)
6685 (hppa_skip_permanent_breakpoint, hppa_instruction_nullified)
6686 (hppa32_register_type, hppa_cannot_store_register)
6687 (hppa_fetch_pointer_argument, hppa_pseudo_register_read): Likewise.
6688 * hppah-nat.c (store_inferior_registers, fetch_register): Likewise.
6689 * hpread.c (hpread_process_one_debug_symbol): Likewise.
6690 * pa64solib.c (pa64_solib_have_load_event)
6691 (pa64_solib_have_unload_event, pa64_solib_loaded_library_pathname)
6692 (pa64_solib_unloaded_library_pathname): Likewise.
6693 * somsolib.c (som_solib_have_load_event, som_solib_have_unload_event)
6694 (som_solib_library_pathname): Likewise.
6695
6696 2004-05-05 Jim Ingham <jingham@apple.com>
6697
6698 * breakpoint.c (create_breakpoints): Copy the ignore count and
6699 thread id over from the pended breakpoint to the actual
6700 breakpoint.
6701
6702 2004-05-05 Andrew Cagney <cagney@redhat.com>
6703
6704 * gdbarch.sh (PARM_BOUNDARY): Delete.
6705 gdbarch.h, gdbarch.c: Re-generate.
6706 * valops.c (PARM_BOUNDARY): Delete macro.
6707 (value_push): Delete PARM_BOUNDARY code.
6708 * m68k-tdep.c (m68k_gdbarch_init): Do not set parm_boundary.
6709
6710 2004-05-04 Jim Blandy <jimb@redhat.com>
6711
6712 * ppc-linux-nat.c (fetch_ppc_registers, store_ppc_registers):
6713 Don't assume that the gprs, fprs, and UISA sprs are
6714 contiguous, start at register number zero, and end with fpscr.
6715 Instead, use the numbers from the tdep structure.
6716
6717 * config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
6718 should no longer be used in code specific to the RS6000 and its
6719 derivatives.
6720 * ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
6721 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize
6722 tdep->ppc_fp0_regnum.
6723 (ppc_supply_fpregset, ppc_collect_fpregset)
6724 (rs6000_push_dummy_call, rs6000_extract_return_value)
6725 (rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
6726 (rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
6727 FP0_REGNUM.
6728 * aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
6729 (fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
6730 Same.
6731 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
6732 bdm_ppc_store_registers): Same.
6733 * ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
6734 (store_register, fill_fpregset): Same.
6735 * ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
6736 (ppc_linux_supply_fpregset): Same.
6737 * ppcnbsd-nat.c (getfpregs_supplies): Same.
6738 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
6739 Same.
6740 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call,
6741 do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call,
6742 ppc64_sysv_abi_return_value): Same.
6743 * rs6000-nat.c (regmap, fetch_inferior_registers)
6744 (store_inferior_registers, fetch_core_registers): Same.
6745
6746 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6747
6748 * m68knbsd-nat.c: Remove file.
6749 * m68knbsd-tdep.c: Remove file.
6750 * Makefile.in: (m68knbsd-nat.o, m68knbsd-tdep.o): Remove
6751 dependencies.
6752 * configure.host: Add m68k-*-netbsdelf*.
6753 * configure.tgt (m68k-*-netbsd*): Set gdb_target to nbsd.
6754 * config/m68k/nbsdaout.mh (NATDEPFILES): Add m68kbsd-nat.o,
6755 solib.o and solib-sunos.o. Remove m68knbsd-nat.o, corelow.o.
6756 (XM_FILE): Remove.
6757 * config/m68k/nbsdelf.mh: New file.
6758 * config/m68k/nbsd.mt: New file.
6759 * config/m68k/nbsdaout.mt: Remove file.
6760 * config/m68k/tm-nbsd.h: Don't include <sys/param.h>,
6761 <machine/vmparam.h> and "m68k/tm-m68k.h". Include "solib.h".
6762 (BPT_VECTOR, STACK_END_ADDR): Remove defines.
6763 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Likewise.
6764 (use_struct_convention): Remove prototype.
6765 (USE_STRUCT_CONVENTION): Remove define.
6766 * config/m68k/xm-nbsd.h: Remove file.
6767
6768 2004-05-04 Michael Snyder <msnyder@redhat.com>
6769
6770 * m68k-tdep.c (m68k_gdbarch_init): Default to using
6771 reg_struct_return method (as gcc usually does for cross targets).
6772
6773 2004-05-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
6774
6775 Committed by Andrew Cagney.
6776 * s390-tdep.c (s390_sigtramp_frame_unwind_cache): Account for
6777 alignment padding when accessing ucontext struct members.
6778
6779 2004-05-04 Jim Blandy <jimb@redhat.com>
6780
6781 * config/ppc-tdep.h (struct gdbarch_tdep): Delete
6782 'ppc_gplast_regnum' member.
6783 (ppc_num_gprs): New enum constant.
6784 * ppc-linux-nat.c (ppc_register_u_addr): Use tdep->ppc_gp0_regnum
6785 and ppc_num_gprs instead of tdep->ppc_gplast_regnum.
6786 * rs6000-nat.c (regmap, fetch_inferior_registers,
6787 store_inferior_registers): Same.
6788 * rs6000-tdep.c (e500_pseudo_register_read)
6789 (e500_pseudo_register_write): Same.
6790 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gplast_regnum.
6791
6792 * config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
6793 * ppc-tdep.h (ppc_num_fprs): New enum constant.
6794 * aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
6795 store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
6796 FPLAST_REGNUM.
6797 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
6798 Same.
6799 * ppc-linux-nat.c (ppc_register_u_addr): Same.
6800 * rs6000-nat.c (regmap, fetch_inferior_registers)
6801 (store_inferior_registers): Same.
6802
6803 * aix-thread.c (fill_fprs): Fix off-by-one error comparing regno
6804 with FPLAST_REGNUM.
6805
6806 2004-05-03 Joel Brobecker <brobecker@gnat.com>
6807
6808 * dwarf2read.c (dwarf2_create_include_psymtab): Fix build
6809 failure detected by recent versions of GCC.
6810 (psymtab_to_symtab_1): No longer use the PST_PRIVATE macro
6811 to be consistent with the usage in dwarf2_create_include_psymtab.
6812
6813 2004-05-03 Michael Snyder <msnyder@redhat.com>
6814
6815 * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
6816 (heuristic_proc_start): Whitespace cleanup.
6817
6818 2004-05-04 Mark Kettenis <kettenis@gnu.org>
6819
6820 * sun3-nat.c: Remove file.
6821 * Makefile.in (tm-sun3.h tm-altos.h tm-sun2.h tm-3b1.h): Remove
6822 dependencies.
6823 (ALLDEPFILES): Remove sun3-nat.c.
6824 (sun3-nat.o): Remove dependencies.
6825
6826 * i386-interix-nat.c, i386-interix-tdep.c,
6827 config/i386/nm-interix.h, config/i386/interix.mh,
6828 config/i386/interix.mt: Remove files.
6829 * Makefile.in (i386-interix-nat.o, i386-interix-tdep.o): Remove
6830 dependencies.
6831
6832 2004-05-03 Mark Kettenis <kettenis@gnu.org>
6833
6834 * m68k-tdep.h (struct gdbarch_tdep): Add member
6835 struct_value_regnum.
6836 (m68k_svr4_init_abi): New prototype.
6837 * m68k-tdep.c: Include "floatformat.h". Add comment about all the
6838 different calling conventions.
6839 (m68k_extract_return_value): Remove code dealing with single-field
6840 structs.
6841 (m68k_store_return_value): Remove code dealing with single-field
6842 structs. Correctly store return values of 5, 6, 7 or 8 bytes.
6843 (m68k_extract_struct_value_address): Remove function.
6844 (m68k_svr4_extract_return_value,m68k_svr4_store_return_value)
6845 (m68k_reg_struct_return_p, m68k_return_value)
6846 (m68k_svr4_return_value): New functions.
6847 (m68k_use_struct_convention): Remove function.
6848 (m68k_push_dummy_call): Use new struct_value_regnum member of
6849 `struct gdbarch_tdep' instead of hardcoded register number to
6850 store STRUCT_ADDR.
6851 (m68k_svr4_init_abi): New function.
6852 (m68k_gdbarch_init): Don't set extract_return_value,
6853 store_return_values, deprecated_extract_struct_value_address and
6854 use_struct_convention. Set return_value instead. Initialize new
6855 struct_value_regnum member of `struct gdbarch_tdep'.
6856 * m68klinux-tdep.c: Update copyright year.
6857 (m68k_linux_extract_return_value, m68k_linux_store_return_value)
6858 (m68k_linux_extract_struct_value_address): Remove function.
6859 (m68k_linux_init_abi): Don't set extract_return_value,
6860 store_return_values, deprecated_extract_struct_value_address and
6861 use_struct_convention. Call m68k_svr4_init_abi but override the
6862 new struct_value_regnum member of `struct gdbarch_tdep'.
6863 * Makefile.in (m68k-tdep.o): Update dependencies.
6864
6865 2004-05-03 J. Brobecker <brobecker@gnat.com>
6866
6867 * dwarf2read.c (line_header): Add new included_p field in
6868 field file_names.
6869 (partial_die_info): New field has_stmt_list. New field line_offset.
6870 (dwarf2_create_include_psymtab): New function.
6871 (dwarf2_build_include_psymtabs): New function.
6872 (add_file_name): Add forward declaration. Initialize new field.
6873 (dwarf_decode_lines): Add new parameter. Enhance this procedure
6874 to be able to determine the list of files included by the
6875 given unit, and build their associated psymtabs.
6876 (dwarf2_build_psymtabs_hard): Build the psymtabs for the included
6877 files as well.
6878 (psymtab_to_symtab_1): Build the symtabs of all dependencies as well.
6879 (read_file_scope): Update call to dwarf_decode_lines.
6880 (read_partial_die): Handle DW_AT_stmt_list attributes.
6881
6882 2004-05-02 Michael Chastain <mec.gnu@mindspring.com>
6883
6884 Unfix PR gdb/1626.
6885 * configure.in: Revert special case for osf5.*.
6886 * configure: Regenerate.
6887
6888 2004-05-02 Jim Blandy <jimb@redhat.com>
6889
6890 Move the symbol-file-from-memory functions into their own file.
6891 * symfile-mem.c, symfile-mem.h: New files.
6892 * symfile.c (symbol_file_add_from_bfd): New function.
6893 (symbol_file_add): Call symbol_file_add_from_bfd.
6894 (symbol_file_add_from_memory, add_symbol_file_from_memory_command):
6895 Moved to symfile-mem.c.
6896 (_initialize_symfile): Move definition of
6897 add-symbol-file-from-memory command to symfile-mem.c.
6898 * symfile.h (symbol_file_add_from_bfd): New declaration.
6899 * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
6900 * config/powerpc/linux.mt (TDEPFILES): Same.
6901 * Makefile.in (SFILES): Add symfile-mem.c.
6902 (symfile_mem_h): New variable.
6903 (HFILES_NO_SRCDIR): Add symfile-mem.h.
6904 (symfile-mem.o): New rule.
6905
6906 2004-05-01 Andrew Cagney <cagney@redhat.com>
6907
6908 * breakpoint.c (insert_bp_location): Use get_frame_id, and
6909 frame_find_by_id instead of frame_relative_level.
6910 (do_enable_breakpoint): Ditto.
6911 * thread.c: Update copyright.
6912 (info_threads_command): Ditto, simplify.
6913
6914 * frame.c (deprecated_generic_get_saved_register): Delete
6915 function, moved to "xstormy16-tdep.c".
6916 * xstormy16-tdep.c (xstormy16_get_saved_register): Inline
6917 deprecated_generic_get_saved_register from "frame.c".
6918 (xstormy16_frame_saved_register): Call
6919 xstormy16_get_saved_register.
6920 * dummy-frame.c (deprecated_find_dummy_frame_regcache): Make
6921 static.
6922 * dummy-frame.h (deprecated_find_dummy_frame_regcache): Delete.
6923 * frame.h (deprecated_generic_get_saved_register): Delete.
6924
6925 2004-05-01 Michael Chastain <mec.gnu@mindspring.com>
6926
6927 * dwarfread.c: Update documentation on the state of dwarf-1.
6928
6929 2004-05-01 Andrew Cagney <cagney@redhat.com>
6930
6931 * stack.c (select_frame_command): Delete call to
6932 frame_relative_level.
6933 (print_frame, set_backtrace_limit_command, backtrace_limit_info):
6934 Delete #if0 code.
6935 (frame_info): Do not print FRAMELESS.
6936 (print_block_frame_labels): Replace DEPRECATED_STREQ.
6937 (catch_info): Delete #if0 code.
6938
6939 * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
6940 * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
6941 of frame_relative_level.
6942 * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
6943 to SENTINEL_FRAME.
6944 * frame.h (enum frame_type): Add SENTINEL_FRAME.
6945 * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
6946 frame_relative_level.
6947
6948 * frame.h (deprecated_set_frame_type): Delete declaration.
6949 * frame.c (deprecated_set_frame_type): Delete function, update
6950 comments.
6951
6952 * gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
6953 * gdbarch.h, gdbarch.c: Re-generate.
6954 * shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
6955 (shnbsd_pc_in_sigtramp): Delete.
6956 * i386-interix-tdep.c (i386_interix_init_abi): Do not set
6957 pc_in_sigtramp.
6958 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
6959 pc_in_sigtramp.
6960 * frame.h: Update comments.
6961 * ppc-linux-tdep.c: Update comments.
6962 * breakpoint.c (bpstat_what): Update comments.
6963
6964 * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix
6965 m68klinux-tdep.o's dependencies, were previously added to
6966 m68klinux-nat.o.
6967
6968 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Use pc_in_sigtramp.
6969 * alpha-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp.
6970 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
6971 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
6972 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
6973
6974 * Makefile.in (m68klinux-nat.o): Update dependencies.
6975 * m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
6976 (m68k_linux_sigtramp_frame_cache)
6977 (m68k_linux_sigtramp_frame_this_id)
6978 (m68k_linux_sigtramp_frame_prev_register)
6979 (m68k_linux_sigtramp_frame_unwind)
6980 (m68k_linux_sigtramp_frame_sniffer)
6981 (struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
6982 m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
6983 names, use trad-frame.h.
6984 * m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
6985 (struct m68k_sigtramp_info): Delete.
6986 * m68k-tdep.c (m68k_sigtramp_frame_cache)
6987 (m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
6988 (m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
6989 (m68k_gdbarch_init): Delete all the sigtramp code, moved to
6990 "m68klinux-tdep.c".
6991
6992 * infrun.c (check_sigtramp2): Delete check for
6993 DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.
6994
6995 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6996
6997 * m68k-tdep.h (m68kbsd_fpreg_offset): New prototype.
6998
6999 2004-05-01 Andrew Cagney <cagney@redhat.com>
7000
7001 * frv-linux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
7002 (frv_linux_sigtramp_frame_cache)
7003 (frv_linux_sigtramp_frame_this_id)
7004 (frv_linux_sigtramp_frame_prev_register)
7005 (frv_linux_sigtramp_frame_unwind)
7006 (frv_linux_sigtramp_frame_sniffer): Copied from frv-tdep.c,
7007 include "linux" in function and variable names, directly call
7008 frv_linux_pc_in_sigtramp and frv_linux_sigcontext_reg_addr, use
7009 the latest trad-frame code.
7010 (frv_linux_init_abi): Append frv_linux_sigtramp_frame_sniffer, do
7011 not set frv_sigcontext_reg_addr or deprecated_pc_in_sigtramp
7012 * Makefile.in (frv-linux-tdep.o): Update dependencies.
7013 * frv-tdep.h (frv_set_sigcontext_reg_addr): Delete declaration.
7014 * frv-tdep.c (frv_sigtramp_frame_cache)
7015 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
7016 (frv_sigtramp_frame_unwind, frv_sigtramp_frame_sniffer): Moved to
7017 frv-linux-tdep.c.
7018 (frv_gdbarch_init): Do not append a sigtramp sniffer.
7019 (struct gdbarch_tdep): Delete sigcontext_reg_addr.
7020 (frv_set_sigcontext_reg_addr): Delete function.
7021
7022 * gdbarch.sh (DEPRECATED_SIGTRAMP_START)
7023 (DEPRECATED_SIGTRAMP_END): Delete.
7024 * gdbarch.h, gdbarch.c: Re-generate.
7025 * arch-utils.c (legacy_pc_in_sigtramp): Simplify.
7026 * config/vax/tm-vaxbsd.h: Update copyright.
7027 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
7028 (DEPRECATED_IN_SIGTRAMP): Define.
7029 * config/m68k/tm-nbsd.h: Update copyright.
7030 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
7031 (DEPRECATED_IN_SIGTRAMP): Define.
7032
7033 2004-05-01 Mark Kettenis <kettenis@gnu.org>
7034
7035 * dwarf2-frame.c (read_encoded_value): Handle DW_EH_PE_funcrel
7036 encondings. Fixes PR gdb/1628.
7037
7038 * dwarf2-frame.c (execute_cfa_program): Complain if we encounter a
7039 DW_CFA_restore state without a matching DW_CFA_remember_state
7040 instead of aborting. Fixes PR backtrace/1589.
7041
7042 2004-04-30 Joel Brobecker <brobecker@gnat.com>
7043
7044 * MAINTAINERS: Add self as AIX maintainer.
7045 Update my e-mail address in write-after-approval section.
7046
7047 2004-04-30 Andrew Cagney <cagney@redhat.com>
7048
7049 * frame.c (frame_type_from_pc): Delete call to PC_IN_SIGTRAMP.
7050 (legacy_get_prev_frame): Ditto.
7051
7052 * mips-tdep.c (mips_pc_in_sigtramp): Delete.
7053 (mips_gdbarch_init): Do not set pc_in_sigtramp.
7054 * mipsread.c (sigtramp_address): Delete extern variable.
7055 (mipscoff_new_init): Delete reference.
7056 * mdebugread.c (sigtramp_address, sigtramp_end): Delete variables.
7057 (fixup_sigtramp): Delete function.
7058 * config/mips/tm-mips.h (sigtramp_address, sigtramp_end)
7059 (fixup_sigtramp): Delete declarations.
7060
7061 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Do not set
7062 deprecated_pc_in_sigtramp.
7063 (ppcnbsd_pc_in_sigtramp): Delete function.
7064
7065 2004-05-01 Mark Kettenis <kettenis@gnu.org>
7066
7067 * config/m68k/nm-nbsd.h: Tweak comments.
7068 * config/m68k/nm-nbsdaout.h: Likewise.
7069
7070 2004-04-30 Andrew Cagney <cagney@redhat.com>
7071
7072 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Call
7073 legacy_pc_in_sigtramp.
7074 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Ditto.
7075
7076 2004-05-01 Mark Kettenis <kettenis@gnu.org>
7077
7078 Add OpenBSD/m68k support.
7079 * NEWS (New native configurations): Mention OpenBSD/m68k.
7080 * m68kbsd-tdep.c: New file.
7081 * m68kbsd-nat.c: New file.
7082 * Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
7083 (m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
7084 * configure.host: Add m68k-*-openbsd.
7085 * configure.tgt: Add m68k-*-openbsd.
7086 * config/m68k/tm-obsd.h: New file.
7087 * config/m68k/obsd.mt: New file.
7088 * config/m68k/obsd.mh: New file.
7089 * config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
7090 m68kbsd-tdep.c.
7091
7092 2004-04-30 Andrew Cagney <cagney@redhat.com>
7093
7094 * mipsnbsd-tdep.c (mipsnbsd_pc_in_sigtramp): Delete function.
7095 (mipsnbsd_init_abi): Do not set pc_in_sigtramp.
7096
7097 2004-04-30 Mark Kettenis <kettenis@gnu.org>
7098
7099 * m68k-tdep.c (REMOTE_BPT_VECTOR): Remove define.
7100 * config/m68k/tm-nbsd.h (REMOTE_BPT_VECTOR): Remove define.
7101
7102 2004-04-30 Brian Ford <ford@vss.fsi.com>
7103
7104 Revert 2004-04-16 change.
7105 * i386-tdep.c (i386_gdbarch_init): Fix comment typos.
7106 (i386_coff_init_abi): Remove.
7107 * i386-tdep.h (i386_coff_init_abi): Remove.
7108 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Remove call to above.
7109
7110 2004-04-30 Andrew Cagney <cagney@redhat.com>
7111
7112 * blockframe.c (find_pc_partial_function): Delete use of
7113 DEPRECATED_PC_IN_SIGTRAMP, DEPRECATED_SIGTRAMP_START and
7114 DEPRECATED_SIGTRAMP_END.
7115
7116 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
7117 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
7118 * config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
7119 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
7120 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
7121
7122 * defs.h (deprecated_inside_entry_file): Delete declaration.
7123 * blockframe.c (deprecated_inside_entry_file): Delete function.
7124 (legacy_frame_chain_valid): Delete call.
7125 * sh64-tdep.c (sh64_frame_chain): Delete call.
7126 * objfiles.h: Update comments.
7127 * i386-interix-tdep.c (i386_interix_frame_chain_valid): Delete
7128 call.
7129 * frame.c (get_prev_frame): Delete call, update comments.
7130
7131 2004-04-30 Brian Ford <ford@vss.fsi.com>
7132
7133 * MAINTAINERS (Write After Approval): Add myself.
7134
7135 2004-04-30 Andrew Cagney <cagney@redhat.com>
7136
7137 * gdbarch.sh (BELIEVE_PCC_PROMOTION_TYPE): Delete.
7138 * gdbarch.h, gdbarch.c: Re-generate.
7139 * stabsread.c (define_symbol): Delete BELIEVE_PCC_PROMOTION_TYPE
7140 code.
7141
7142 2004-04-30 Andrew Cagney <cagney@redhat.com>
7143
7144 * gdb-events.sh (selected_thread_changed)
7145 (selected_frame_level_changed, target_changed): Delete.
7146 * gdb-events.h, gdb-events.c: Re-generate.
7147 * valops.c (value_assign): Update.
7148 * stack.c (select_frame_command, up_silently_base)
7149 (down_silently_base): Update.
7150
7151 2004-04-29 Andrew Cagney <cagney@redhat.com>
7152
7153 * mips-tdep.c (mips_register_type): Re-write, handle 32-bit ABI
7154 registers correctly.
7155 (print_gp_register_row, mips32_heuristic_proc_desc)
7156 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
7157 (mips_o64_push_dummy_call, mips_eabi_push_dummy_call): Eliminate
7158 references to mips_isa_regsize.
7159
7160 2004-04-29 Andrew Cagney <cagney@redhat.com>
7161
7162 * mips-tdep.c (struct gdbarch_tdep): Delete
7163 mips_fp_register_double.
7164 (FP_REGISTER_DOUBLE): Delete macro, replace with test for
7165 mips_abi_regsize.
7166 (mips_gdbarch_init): Do not set mips_fp_register_double.
7167 (mips_dump_tdep): Do not print FP_REGISTER_DOUBLE.
7168
7169 2004-04-29 Joel Brobecker <brobecker@gnat.com>
7170
7171 Committed by Andrew Cagney.
7172 * infrun.c (handle_inferior_event): Rely on frame IDs to detect
7173 function calls.
7174
7175 2004-04-29 Andrew Cagney <cagney@redhat.com>
7176
7177 * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with
7178 gdbarch, use mips_abi, update callers.
7179 (mips_stack_argsize): Replace tdep parameter with gdbarch, use
7180 mips_abi_regsize, update callers.
7181 (struct gdbarch_tdep): Delete mips_default_stack_argsize and
7182 mips_default_abi_regsize.
7183 (mips_gdbarch_init): Do not set mips_default_stack_argsize and
7184 mips_default_abi_regsize.
7185
7186 2004-04-29 Andrew Cagney <cagney@redhat.com>
7187
7188 * mips-tdep.c (mips_abi_regsize): Rename mips_saved_regsize.
7189 (mips_abi_regsize_string): Rename mips_saved_regsize_string.
7190 (struct gdbarch_tdep): Rename mips_default_saved_regsize to
7191 mips_default_abi_regsize.
7192 (mips_isa_regsize): Rename mips_regisze.
7193 * mipsnbsd-tdep.c: Update.
7194 * mips-linux-tdep.c: Update.
7195 * irix5-nat.c: Update.
7196 * mips-tdep.h (mips_isa_regsize): Update.
7197
7198 * gdb-events.sh (WITH_GDB_EVENTS): Delete macro and references.
7199 Delete all disabled code.
7200 * gdb-events.h, gdb-events.c: Re-generate.
7201
7202 2004-04-19 Jerome Guitton <guitton@gnat.com>
7203 Mark Kettenis <kettenis@gnu.org>
7204
7205 * i386-tdep.c (i386_skip_prologue): follow the last jump only if
7206 the function begins with a branch instruction.
7207
7208 2004-04-29 Mark Kettenis <kettenis@gnu.org>
7209
7210 * i386-tdep.c: Fix spelling mistakes.
7211
7212 2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
7213 Andrew Cagney <cagney@redhat.com>
7214
7215 * configure.in (mips-sgi-irix5*): Define _KMEMUSER for
7216 <sys/proc.h>.
7217 * acconfig.h: Provide default _KMEMUSER value.
7218 * config.in, configure: Re-generate.
7219 * NEWS: Mention fix.
7220
7221 2004-04-24 Randolph Chung <tausq@debian.org>
7222
7223 * configure.host (hppa*-*-linux*): New target.
7224 * configure.tgt (hppa*-*-linux*): Likewise.
7225 * hppa-tdep.c (hppa_gdbarch_init): Set cannot_fetch_register, move
7226 gdbarch_init_osabi() call earlier so that osabi-specific frame
7227 unwinders can be registered first.
7228 * config/djgpp/fnchange.lst: Add entries for hppa-linux-tdep.c and
7229 hppa-linux-nat.c.
7230 * config/pa/tm-hppa.h (ISR_REGNUM, PID0_REGNUM, PID1_REGNUM)
7231 (PID2_REGNUM, PID3_REGNUM): Add definitions of some register numbers.
7232 * config/pa/linux.mh: New file.
7233 * config/pa/linux.mt: New file.
7234 * config/pa/nm-linux.h: New file.
7235 * config/pa/xm-linux.h: New file.
7236 * hppa-linux-nat.c: New file.
7237 * hppa-linux-tdep.c: New file.
7238
7239 2004-04-28 Randolph Chung <tausq@debian.org>
7240
7241 * hppa-tdep.c (hppa32_return_value): Handle both 4- and 8-byte fp
7242 return values.
7243 (hppa32_push_dummy_call): Fix small struct and floating point argument
7244 passing, and make sure the stack frame is properly aligned.
7245
7246 2004-04-28 Andrew Cagney <cagney@redhat.com>
7247
7248 * stack.c (print_stack_frame): Fix description.
7249
7250 * NEWS: Mention gdb/gdbserver/configure execute permission
7251 changed. PR server/519.
7252
7253 2004-04-28 Andrew Cagney <cagney@redhat.com>
7254
7255 * stack.c (print_stack_frame_stub): Delete declaration.
7256 (struct print_stack_frame_args, print_stack_frame)
7257 (print_frame_info, print_frame): Replace "source" with print what.
7258 Replace "print" with "print_level". Replace "args" with
7259 "print_args".
7260 * frame.h (show_and_print_stack_frame, print_stack_frame)
7261 (print_frame_info): Update declarations.
7262 * stack.c (select_and_print_frame, frame_command)
7263 (current_frame_command, up_command, down_command): Update calls -
7264 use get_selected_frame, pass "enum print_what" for source, do not
7265 call frame_relative_level.
7266 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
7267 * remote-rdp.c (remote_rdp_open): Ditto.
7268 * remote-mips.c (common_open): Ditto.
7269 * remote-e7000.c (e7000_start_remote): Ditto.
7270 * ocd.c (ocd_start_remote): Ditto.
7271 * mi/mi-main.c (mi_cmd_exec_return): Ditto.
7272 * infrun.c (normal_stop): Ditto.
7273 * inflow.c (kill_command): Ditto.
7274 * infcmd.c (finish_command): Ditto.
7275 * corelow.c (core_open): Ditto.
7276 * tracepoint.c (finish_tfind_command): Ditto.
7277 * thread.c (info_threads_command, info_threads_command)
7278 (restore_current_thread, do_captured_thread_select): Ditto.
7279 * ada-tasks.c (task_command): Ditto.
7280
7281 2004-04-26 Orjan Friberg <orjanf@axis.com>
7282
7283 * frame.c: Include "observer.h".
7284 (frame_observer_target_changed): New function.
7285 (_initialize_frame): Attach target_changed observer.
7286 * regcache.c: Include "observer.h".
7287 (regcache_observer_target_changed): New function.
7288 (_initialize_regcache): Attach target_changed observer.
7289 * valops.c: Include "observer.h".
7290 (value_assign): Notify target_changed event when modifying register.
7291 * Makefile.in (frame.o, regcache.o, valops.o): Add $(observer_h).
7292
7293 2004-04-26 Orjan Friberg <orjanf@axis.com>
7294
7295 From Paul Koning <pkoning@equallogic.com>:
7296 * breakpoint.c (free_valchain): New function.
7297 (insert_bp_location, delete_breakpoint): Use free_valchain.
7298 (remove_breakpoint): Do not remove the valchain.
7299 (bpstat_stop_status): If not stopped by watchpoint, skip
7300 watchpoints when generating stop status list.
7301 * infrun.c (handle_inferior_event): Make
7302 stepped_after_stopped_by_watchpoint a global variable.
7303 * remote.c (remote_stopped_data_address): Return watch data
7304 address rather than zero if stepped_after_stopped_by_watchpoint is
7305 set.
7306
7307 2004-04-25 Michael Chastain <mec.gnu@mindspring.com>
7308
7309 Fix PR gdb/1626.
7310 * configure.in: Check for curses after termcap.
7311 On osf5.*, do not check for ncurses.
7312 * configure: Regenerate.
7313
7314 2004-04-25 Mark Kettenis <kettenis@gnu.org>
7315
7316 * ppcobsd-nat.c: Include "ppc-tdep.h".
7317 * Makefile.in (ppcobsd-nat.o): Update dependencies.
7318
7319 * stack.c (return_command): Use CHECK_TYPEDEF on the return type.
7320 Fixes PR tdep/1623 and PR tdep/1624.
7321
7322 2004-04-24 Michael Chastain <mec.gnu@mindspring.com>
7323
7324 * xmodem.h, xmodem.c: Remove files.
7325 * Makefile.in: Remove references to xmodem.h, xmodem.c.
7326
7327 2004-04-23 Randolph Chung <tausq@debian.org>
7328
7329 * hppa-tdep.c (hppa_stub_unwind_cache, hppa_stub_frame_unwind_cache)
7330 (hppa_stub_frame_this_id, hppa_stub_frame_prev_register)
7331 (hppa_stub_frame_unwind, hppa_stub_unwind_sniffer): New stub unwinder
7332 for handling stackless frames.
7333 (hppa_gdbarch_init): Link in hppa_stub_unwind_sniffer.
7334
7335 2004-04-23 Randolph Chung <tausq@debian.org>
7336
7337 * hppa-tdep.c (hppa_frame_cache): Handle the case when frame unwind
7338 starts at a pc before the frame is created.
7339
7340 2004-04-23 Joel Brobecker <brobecker@gnat.com>
7341
7342 * ChangeLog-2002: Fix year in one of the ChangeLog entries.
7343
7344 2004-04-23 Jerome Guitton <guitton@gnat.com>
7345
7346 * rs6000-tdep.c (rs6000_extract_return_value): When extracting a float,
7347 use convert_typed_floating to get the appropriate format.
7348
7349 2004-04-22 Randolph Chung <tausq@debian.org>
7350
7351 * hppa-tdep.h (find_unwind_entry, hppa_get_field, hppa_extract_5_load)
7352 (hppa_extract_5R_store, hppa_extract_5r_store, hppa_extract_17)
7353 (hppa_extract_21, hppa_extract_14, hppa_low_sign_extend)
7354 (hppa_sign_extend): Add prototype.
7355 * hppa-tdep.c (get_field, extract_5_load, extract_5R_store)
7356 (extract_5r_store, extract_17, extract_21, extract_14, low_sign_extend)
7357 (sign_extend): Rename with hppa_ prefix and make non-static. Other
7358 hppa targets will also use these functions.
7359 (find_unwind_entry): Remove prototype (moved to hppa-tdep.h).
7360 (hppa_in_solib_call_trampoline, hppa_in_solib_return_trampoline)
7361 (hppa_skip_trampoline_code): Move to hppa-hpux-tdep.c
7362 (hppa_gdbarch_init): Remove gdbarch setting of
7363 skip_trampoline_code, in_solib_call_trampoline and
7364 in_solib_return_trampoline.
7365 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
7366 (hppa64_hpux_in_solib_call_trampoline): New functions, split from
7367 hppa_in_solib_call_trampoline.
7368 (hppa_hpux_in_solib_return_trampoline, hppa_hpux_skip_trampoline_code):
7369 Moved from hppa-tdep.c.
7370 (hppa_hpux_init_abi): Set gdbarch for skip_trampoline_code,
7371 in_solib_call_trampoline and in_solib_return_trampoline.
7372
7373 2004-04-22 Randolph Chung <tausq@debian.org>
7374
7375 * hppa-tdep.c (hppa_debug): New variable.
7376 (find_unwind_entry, hppa_frame_cache): Add debug output.
7377 (_initialize_hppa_tdep): Add command to set debug flag.
7378
7379 2004-04-22 Andrew Cagney <cagney@redhat.com>
7380
7381 * ppcnbsd-tdep.c: Update copyright. Include "tramp-frame.h" and
7382 "trad-frame.h".
7383 (ppcnbsd_sigtramp_cache_init, ppcnbsd_sigtramp): Implement a NetBSD
7384 signal trampoline unwinder.
7385 (ppcnbsd_init_abi): Register ppcnbsd_sigtramp.
7386
7387 2004-04-22 Mark Kettenis <kettenis@gnu.org>
7388
7389 Add OpenBSD/powerpc support.
7390 * NEWS (New native configurations): Mention OpenBSD/powerpc.
7391 * ppc-tdep.h (struct ppc_reg_offsets): New structure.
7392 (ppc_supply_gregset, ppc_supply_fpregset, ppc_collect_gregset)
7393 (ppc_collect_fpregset): New prototypes.
7394 * ppcobsd-nat.c: New file.
7395 * ppcobsd-tdep.c: New file.
7396 * ppcobsd-tdep.h: New file.
7397 * rs6000-tdep.c: Include "regset.h".
7398 (ppc_supply_reg, ppc_collect_reg, ppc_supply_gregset)
7399 (ppc_supply_fpregset, ppc_collect_gregset, ppc_collect_fpregset):
7400 New functions.
7401 * Makefile.in (ALLDEPFILES): Add pccobsd-nat.c and ppcobsd-tdep.c.
7402 (ppcobsd-nat.o, ppcobsd-tdep.o): New dependencies.
7403 (rs6000-tdep.o): Update dependencies.
7404 * configure.host: Add powerpc-*-openbsd.
7405 * configure.tgt: Add powerpc-*-openbsd.
7406 * config/powerpc/obsd.mh: New file.
7407 * config/powerpc/nm-obsd.h: New file.
7408 * config/powerpc/obsd.mt: New file.
7409
7410 2004-04-22 Andrew Cagney <cagney@redhat.com>
7411
7412 * frame.h (show_frame_info): Delete declaration.
7413
7414 * arm-tdep.c (arm_prologue_this_id): Delete redundant cycle test.
7415 * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
7416 * m32r-tdep.c (m32r_frame_this_id): Ditto.
7417 * frv-tdep.c (frv_frame_this_id): Ditto.
7418 * avr-tdep.c (avr_frame_this_id): Ditto.
7419
7420 2004-04-22 Elena Zannoni <ezannoni@redhat.com>
7421
7422 * MAINTAINERS: Drop maintenance of gdb.stabs, and linespec.c.
7423
7424 2004-04-22 Jim Blandy <jimb@redhat.com>
7425
7426 * ppc-linux-nat.c (ppc_register_u_addr): Don't assume that r0 is
7427 register number zero.
7428
7429 2004-04-21 Michael Snyder <msnyder@redhat.com>
7430
7431 * mips-tdep.c (heuristic_proc_start):
7432 Warning() already prefixes "Warning: ".
7433
7434 2004-04-21 Andrew Cagney <cagney@redhat.com>
7435
7436 * annotate.h (deprecated_annotate_starting_hook)
7437 (deprecated_annotate_stopped_hook)
7438 (deprecated_annotate_exited_hook)
7439 (deprecated_annotate_signal_hook)
7440 (deprecated_annotate_signalled_hook): Deprecate.
7441 * tracepoint.h (deprecated_create_tracepoint_hook)
7442 (deprecated_delete_tracepoint_hook)
7443 (deprecated_modify_tracepoint_hook)
7444 (deprecated_trace_find_hook)
7445 (deprecated_trace_start_stop_hook): Deprecate.
7446 * target.h (deprecated_target_new_objfile_hook): Deprecate.
7447 * remote.h (deprecated_target_resume_hook)
7448 (deprecated_target_wait_loop_hook): Deprecate.
7449 * gdbcore.h (deprecated_exec_file_display_hook)
7450 (deprecated_file_changed_hook): Deprecate.
7451 * frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
7452 * defs.h (deprecated_modify_breakpoint_hook)
7453 (deprecated_command_loop_hook, deprecated_show_load_progress)
7454 (deprecated_print_frame_info_listing_hook)
7455 (deprecated_query_hook, deprecated_warning_hook)
7456 (deprecated_flush_hook, deprecated_create_breakpoint_hook)
7457 (deprecated_delete_breakpoint_hook)
7458 (deprecated_interactive_hook, deprecated_registers_changed_hook)
7459 (deprecated_readline_begin_hook, deprecated_readline_hook)
7460 (deprecated_readline_end_hook, deprecated_register_changed_hook)
7461 (deprecated_memory_changed_hook, deprecated_init_ui_hook)
7462 (deprecated_context_hook, deprecated_target_wait_hook)
7463 (deprecated_attach_hook, deprecated_detach_hook)
7464 (deprecated_call_command_hook, deprecated_set_hook)
7465 (deprecated_error_hook, deprecated_error_begin_hook)
7466 (deprecated_ui_load_progress_hook): Deprecate.
7467 * valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
7468 * tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
7469 * target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
7470 * remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
7471 * main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
7472 * exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
7473 * cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
7474 * annotate.c, aix-thread.c: Update.
7475
7476 2004-04-21 Andrew Cagney <cagney@redhat.com>
7477
7478 * Makefile.in (vaxnbsd-tdep.o): Update dependencies.
7479 * vaxnbsd-tdep.c: Include "gdb_string.h".
7480
7481 * symfile.c (symbol_file_add_from_memory): #if 0 function.
7482 (add_symbol_file_from_memory_command): #if 0 function body, call
7483 error instead.
7484
7485 2004-04-21 Andrew Cagney <cagney@redhat.com>
7486
7487 * gdbcore.h: Update copyright.
7488 (deprecated_add_core_fns): Rename add_core_fns.
7489 * win32-nat.c (_initialize_core_win32): Update.
7490 * sun3-nat.c (_initialize_core_sun3): Update.
7491 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Update.
7492 * rs6000-nat.c (_initialize_core_rs6000): Update.
7493 * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Update.
7494 * nto-tdep.c (_initialize_nto_tdep): Update.
7495 * ns32knbsd-nat.c (_initialize_ns32knbsd_nat): Update.
7496 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Update.
7497 * mips-nat.c (_initialize_core_mips): Update.
7498 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
7499 * m68knbsd-nat.c (_initialize_m68knbsd_nat): Update.
7500 * m68klinux-nat.c (_initialize_m68k_linux_nat): Update.
7501 * lynx-nat.c (_initialize_core_lynx): Update.
7502 * irix5-nat.c (_initialize_core_irix5): Update.
7503 * i386-interix-nat.c (_initialize_core_interix): Update.
7504 * cris-tdep.c (_initialize_cris_tdep): Update.
7505 * corelow.c (deprecated_add_core_fns): Update.
7506 * core-regset.c (_initialize_core_regset): Update.
7507 * core-aout.c (_initialize_core_aout): Update.
7508 * armnbsd-nat.c (_initialize_arm_netbsd_nat): Update.
7509 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Update.
7510 * alpha-nat.c (_initialize_core_alpha): Update.
7511
7512 2004-04-21 Jim Blandy <jimb@redhat.com>
7513
7514 * rs6000-tdep.c (registers_e500, registers_7400): Doc fixes.
7515
7516 2004-04-19 Daniel Jacobowitz <drow@mvista.com>
7517
7518 * dwarf2read.c (dwarf2_tmp_obstack, dwarf2_free_tmp_obstack):
7519 Delete.
7520 (dwarf_alloc_block): Take a CU argument. Use the comp_unit_obstack.
7521 (read_attribute_value): Update calls to dwarf_alloc_block.
7522 (dwarf2_build_psymtabs_hard): Don't initialize or clean up
7523 dwarf2_tmp_obstack.
7524 (psymtab_to_symtab_1): Likewise. Clean up using
7525 free_stack_comp_unit.
7526 (add_to_cu_func_list): Use the comp_unit_obstack.
7527
7528 2004-04-19 Joel Brobecker <brobecker@gnat.com>
7529
7530 * dwarf2read.c (dwarf2_flag_true_p): New function.
7531 (die_is_declaration): Use the function above. Add some comments.
7532
7533 2004-04-19 Mark Kettenis <kettenis@gnu.org>
7534
7535 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Specify
7536 architecture when registering sparcnbsd_core_osabi_sniffer.
7537 Adjust comment.
7538
7539 2004-04-18 Mark Kettenis <kettenis@gnu.org>
7540
7541 * infcall.c (find_function_addr): Add FUNCTION_START_OFFSET to
7542 return value.
7543
7544 Based on a patch from Brian Ford <ford@vss.fsi.com>:
7545 * i386-tdep.c: Correct register numbering scheme comments
7546 throughout.
7547 (i386_stab_reg_to_regnum): Rename to i386_dbx_reg_to_regnum.
7548 (i386_dwarf_reg_to_regnum): Rename to i386_svr4_reg_to_regnum.
7549 (i386_coff_init_abi, i386_elf_init_abi): Accomodate renames above.
7550 (i386_gdb_arch_init): Likewise.
7551
7552 * Makefile.in (ALLDEPFILES): List ppc-sysv-tdep.c, ppcnbsd-nat.c
7553 and ppcnbsd-tdep.c instead of ppc-sysv-tdep.o, ppcnbsd-nat.o and
7554 ppcnbsd-tdep.o.
7555
7556 * m68k-tdep.h: Tweak comments.
7557 * m68k-tdep.c: Tweak comment.
7558
7559 2004-04-17 Randolph Chung <tausq@debian.org>
7560
7561 * Makefile.in (hppa-hpux-tdep.o): Add $(hppa_tdep_h).
7562 * hppa-hpux-tdep.c (hppa-tdep.h): Include.
7563 (hppa_hpux_som_init_abi): Set is_elf to 0.
7564 (hppa_hpux_elf_init_abi): Set is_elf to 1.
7565 * hppa-tdep.c (low_text_segment_address): Remove global.
7566 (record_text_segment_lowaddr): Pass in low address as parameter. Use
7567 section offset to calculate segment address.
7568 (internalize_unwinds): Define low_text_segment_address as local and
7569 pass to record_text_segment_lowaddr for ELF targets.
7570 (hppa_gdbarch_init): Zero fill tdep structure.
7571 (hppa_dump_tdep): Print tdep structure.
7572 * hppa-tdep.h (gdbarch_tdep): Add is_elf member to tdep structure.
7573
7574 2004-04-17 Randolph Chung <tausq@debian.org>
7575
7576 * hppa-tdep.c (hppa_pseudo_register_read): Define.
7577 (hppa_gdbarch_init): Set pseudo_register_read.
7578 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Remove.
7579 * regcache.c (supply_register): Remove check for
7580 DEPRECATED_CLEAN_UP_REGISTER_VALUE since we've removed the last user.
7581
7582 2004-04-17 Randolph Chung <tausq@debian.org>
7583
7584 * Makefile.in (hpread.o, pa64solib.o, somsolib.o): Add $(hppa_tdep_h)
7585 * hppa-tdep.h (INSTRUCTION_SIZE): Move from tm-hppa.h.
7586 (hpread_adjust_stack_address): Move to hpread.c.
7587 * hppa-tdep.h (unwind_table_entry, unwind_stub_types, obj_unwind_info,
7588 obj_private_struct): Move from tm-hppa.h.
7589 * hpread.c (hppa-tdep.h): Include.
7590 (hpread_adjust_stack_address): Move from hppa-tdep.c.
7591 (hpread_read_function_type, hpread_read_doc_function_type)
7592 (hpread_process_one_debug_symbol): Call hpread_adjust_stack_address
7593 directly.
7594 * pa64solib.c (hppa-tdep.h): Include.
7595 * somsolib.c (hppa-tdep.h): Include.
7596 * config/pa/tm-hppa.h (frame_info, frame_saved_regs, value, type,
7597 inferior_status): Remove unused forward declarations.
7598 (INSTRUCTION_SIZE): Move to hppa-tdep.c.
7599 (unwind_table_entry, unwind_stub_types, obj_unwind_info,
7600 obj_private_struct): Move to hppa-tdep.h.
7601 (HPREAD_ADJUST_STACK_ADDRESS): Remove.
7602
7603 2004-04-17 Randolph Chung <tausq@debian.org>
7604
7605 * hppa-tdep.c (hppa_reg_struct_has_addr, hppa_skip_prologue)
7606 (hppa_skip_trampoline_code, hppa_in_solib_call_trampoline)
7607 (hppa_in_solib_return_trampoline, hppa_cannot_store_register)
7608 (hppa_smash_text_address, hppa_target_read_pc, hppa_target_write_pc):
7609 Remove forward declaration and make static.
7610 (hppa_reg_struct_has_addr): Remove.
7611
7612 2004-04-16 Joel Brobecker <brobecker@gnat.com>
7613
7614 * observer.sh: Move comments in sed command to first column.
7615
7616 2004-04-16 Jason Molenda (jmolenda@apple.com)
7617
7618 * frame.c: Minor typeo corrections in comments.
7619
7620 2004-04-16 Joel Brobecker <brobecker@gnat.com>
7621
7622 * observer.c (observer_test_first_notification_function): Update
7623 function profile.
7624 (observer_test_second_notification_function): Likewise.
7625 (observer_test_third_notification_function): Likewise.
7626
7627 2004-04-16 Mark Kettenis <kettenis@gnu.org>
7628
7629 From Brian Ford <ford@vss.fsi.com>:
7630 * i386-tdep.c (i386_coff_init_abi): New function.
7631 * i386-tdep.h (i386_coff_init_abi): New prototype.
7632 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Call it. Use correct
7633 register number translation functions for DWARF and DWARF 2.
7634
7635 2004-04-16 Joel Brobecker <brobecker@gnat.com>
7636
7637 * dwarf2read.c: Back out my previous change, it was incorrect.
7638
7639 2004-04-16 Daniel Jacobowitz <drow@mvista.com>
7640
7641 * dwarf2read.c: Include "hashtab.h".
7642 (struct dwarf2_cu): Add partial_dies, comp_unit_obstack,
7643 has_namespace_info.
7644 (struct partial_die_info): Add comments. Use bitfields to reduce
7645 memory footprint. Add scope, scope_set, has_specification,
7646 spec_offset, die_parent, die_child, and die_sibling.
7647 (peek_die_abbrev): Add prototype.
7648 (partial_read_comp_unit_head): New function, broken out from
7649 dwarf2_build_psymtabs_hard.
7650 (dwarf2_build_psymtabs_hard): Remove unused variable abbrev_ptr.
7651 Use partial_read_comp_unit_head. Initialize the CU and
7652 comp_unit_obstack. Update calls to read_partial_die and
7653 scan_partial_symbols. Use free_stack_comp_unit and
7654 load_partial_dies.
7655 (scan_partial_symbols): Change PDI to a pointer. Use the child and
7656 sibling pointers to walk partial DIEs. Call fixup_partial_die.
7657 Update calls to helper functions. Remove NAMESPACE argument.
7658 Update comments.
7659 (partial_die_parent_scope, partial_die_full_name): New functions.
7660 (add_partial_symbol): Remove namespace argument. Update call to
7661 pdi_needs_namespace. Use partial_die_full_name. Handle
7662 DW_TAG_namespace. Check has_namespace_info flag.
7663 (pdi_needs_namespace): Remove NAMESPACE argument. Just check the
7664 tag. Handle namespaces.
7665 (add_partial_namespace, add_partial_enumeration): Simplify.
7666 (guess_structure_name): New function, derived from
7667 add_partial_structure.
7668 (add_partial_structure): Remove.
7669 (determine_class_name): Update comment.
7670 (dwarf2_read_abbrevs): Set has_namespace_info flag.
7671 (is_type_tag_for_partial, load_partial_dies): New functions.
7672 (read_partial_die): Pass abbrev and abbrev_len as arguments.
7673 Record specifications instead of following them immediately.
7674 (find_partial_die_in_comp_unit, find_partial_die)
7675 (fixup_partial_die, free_stack_comp_unit)
7676 (hashtab_obstack_allocate, dummy_obstack_deallocate)
7677 (partial_die_hash, partial_die_eq): New functions.
7678 * Makefile.in (hashtab_h): Define.
7679 (dwarf2read.o): Update dependencies.
7680 (observer_inc, observer_h): Move to the correct section.
7681
7682 2004-04-15 Joel Brobecker <brobecker@gnat.com>
7683
7684 * dwarf2read.c (dwarf2_attribute_true_p): New function.
7685 (die_is_declaration): Use the function above. Add comment.
7686
7687 2004-04-15 Joel Brobecker <brobecker@gnat.com>
7688
7689 * dwarf2read.c (read_structure_scope): Identify stub types
7690 using die_is_declaration() only.
7691
7692 2004-04-15 Roland McGrath <roland@redhat.com>
7693
7694 * symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as
7695 argument instead of NAME.
7696 (symbol_file_add, reread_separate_symbols): Call symfile_bfd_open
7697 in call to symbol_file_add_with_addrs_or_offsets.
7698 (build_addr_info): New function, helper for ...
7699 (symbol_file_add_from_memory): New function.
7700 (add_symbol_file_from_memory_command): New function using that.
7701 (_initialize_symfile): Register it for add-symbol-file-from-memory.
7702 (pre_add_symbol_hook): Add const to argument type.
7703 * symfile.h (symbol_file_add_from_memory): Declare it.
7704
7705 2004-04-15 Mark Kettenis <kettenis@gnu.org>
7706
7707 * NEWS (New native configurations): Mention OpenBSD/vax.
7708 * configure.host: Add vax-*-openbsd*.
7709 * config/vax/obsd.mh: New file.
7710 * config/vax/nm-obsd.h: New file.
7711
7712 * vax-tdep.c: Include "regset.h".
7713 (vax_supply_gregset): New function.
7714 (vax_gregset): New variable.
7715 (vax_regset_from_core_section): New function.
7716 (vax_gdbarch_init): Set regset_from_core_section.
7717 * Makefile.in (vax-tdep.o): Update dependencies.
7718
7719 2004-04-15 Andrew Cagney <cagney@redhat.com>
7720
7721 * observer.c (normal_stop_subject, observer_notify_normal_stop)
7722 (observer_normal_stop_notification_stub)
7723 (observer_attach_normal_stop, observer_detach_normal_stop):
7724 Delete, replaced by #include "observer.inc".
7725 * infrun.c (normal_stop): Pass "stop_bpstat" to
7726 observer_notify_normal_stop.
7727 * Makefile.in (observer_inc): Define.
7728 (observer.o): Update dependencies.
7729 (observer.h, observer.inc): New rules.
7730 * observer.h: Delete file.
7731 * observer.sh: New file.
7732
7733 2004-04-15 Mark Kettenis <kettenis@gnu.org>
7734
7735 * vax-tdep.c (vax_frame_cache): Fix typo.
7736
7737 2004-04-14 Mark Kettenis <kettenis@gnu.org>
7738
7739 * NEWS (New native configurations): Mention NetBSD/vax.
7740 * configure.host: Add vax-*-netbsdelf* and vax-*-netbsd*.
7741 * config/vax/nbsdelf.mh: New file.
7742 * config/vax/nbsdaout.mh: New file.
7743 * config/vax/nm-nbsd.h: New file.
7744 * config/vax/nm-nbsdaout.h: New file.
7745
7746 * vaxnbsd-tdep.c: New file.
7747 * Makefile.in (vaxnbsd-tdep.o): New dependency.
7748 * configure.tgt: Add vax-*-netbsd* and vax-*-openbsd*.
7749 * config/vax/nbsd.mt: New file.
7750 * config/vax/tm-nbsd.h: New file.
7751
7752 * Makefile.in (vaxbsd-nat.o): New dependency.
7753
7754 * vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
7755 * vax-tdep.c (vax_store_arguments): Remove struct_return and
7756 struct_addr arguments. Don't push return value address.
7757 (vax_push_dummy_call): Don't pass STRUCT_RETURN and STRUCT_ADDR as
7758 arguments to vax_store_arguments. Store return value address in
7759 R1.
7760 (vax_store_struct_return, vax_extract_return_value)
7761 (vax_store_return_value): Remove functions.
7762 (vax_return_value): New function.
7763 (vax_gdbarch_init): Set return value. Don't set
7764 deprecated_store_struct_return, deprecated_extract_struct_return
7765 and deprecated_store_return_value.
7766
7767 2004-04-14 Andreas Schwab <schwab@suse.de>
7768
7769 * ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
7770 value buffer.
7771 * libunwind-frame.c (libunwind_frame_prev_register): Likewise.
7772
7773 2004-04-14 Mark Kettenis <kettenis@gnu.org>
7774
7775 * vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
7776 (vax_unwind_dummy_id): New functions.
7777 (vax_push_dummy_frame, vax_pop_frame): Remove functions.
7778 (vax_call_dummy_words, sizeof_vax_call_dummy_words): Remove
7779 variables.
7780 (vax_fix_call_dummy): Remove function.
7781 (vax_gdbarch_init): Set push_dummy_call and unwind_dummy_id.
7782 Don't set deprecated_push_dummy_frame, deprecated_pop_frame,
7783 call_dummy_location, deprecated_call_dummy_words,
7784 deprecated_sizeof_call_dummy_words,
7785 deprecated_call_dummy_breakpoint_offset,
7786 deprecated_use_generic_dummy_frames, deprecated_pc_in_call_dummy,
7787 and deprecated_dummy_write_sp.
7788
7789 2004-04-13 David Carlton <carlton@kealia.com>
7790
7791 * MAINTAINERS: Move myself to "paper trail" section.
7792
7793 2004-04-12 Mark Kettenis <kettenis@gnu.org>
7794
7795 * vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
7796 "trad-frame.h".
7797 (vax_frame_init_saved_regs): Remove function.
7798 (vax_sigtramp_saved_pc): Remove function.
7799 (vax_frame_saved_pc): Remove function.
7800 (vax_frame_args_address): Remove function.
7801 (vax_frame_num_args): Rewrite.
7802 (vax_frame_chain): Remove function.
7803 (vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
7804 VAX_FP_REGNUM.
7805 (vax_pop_frame): Likewise.
7806 (vax_saved_pc_after_call): Remove function.
7807 (struct vax_frame_cache): New structure.
7808 (vax_frame_cache): New function.
7809 (vax_frame_this_id): New function.
7810 (vax_frame_prev_register): New function.
7811 (vax_frame_unwind): New variable.
7812 (vax_frame_sniffer): New function.
7813 (vax_frame_base_address): New function.
7814 (vax_frame_args_address): New function.
7815 (vax_frame_base): New variable.
7816 (vax_unwind_pc): New function.
7817 (vax_gdbarch_init): Don't set deprecated_init_frame_pc,
7818 deprecated_fp_regnum, deprecated_saved_pc_after_call,
7819 deprecated_frame_chain, deprecated_frame_saved_pc,
7820 deprecated_frame_args_address and
7821 deprecated_frame_init_saved_regs.
7822 * Makefile.in (vax-tdep.o): Update dependencies.
7823
7824 * vaxbsd-nat.c: New file.
7825
7826 * vax-tdep.h: Update copyright year. Adjust comments.
7827 (VAX_REGISTER_SIZE, VAX_REGISTER_BYTES, VAX_MAX_REGISTER_RAW_SIZE,
7828 VAX_MAX_REGISTER_VIRTUAL_SIZE): Remove macros.
7829 (vax_regnum): New enum. Replacing...
7830 (VAX_AP_REGNUM, VAX_FP_REGNUM, VAX_SP_REGNUM, VAX_PC_REGNUM)
7831 (VAX_PS_REGNUM): ... these removed macros.
7832 * vax-tdep.c (vax_register_name): Remove prototype.
7833 (vax_register_name): Reorganize somewhat. Use ARRAY_SIZE.
7834 (vax_register_byte, vax_register_raw_size,
7835 vax_register_virtual_size, vax_register_virtual_type): Remove
7836 functions.
7837 (vax_register_type): New function.
7838 (vax_breakpoint_from_pc): Reorganize.
7839 (vax_gdbarch_init): Set register_type. Don't set
7840 deprecated_register_size, deprecated_register_bytes,
7841 deprecated_register_byte, deprecated_register_raw_size,
7842 deprecated_max_register_raw_size,
7843 deprecated_register_virtual_size,
7844 deprecated_max_register_virtual_size and
7845 deprecated_register_virtual_type. Add comment on stack direction.
7846
7847 2004-04-11 Mark Kettenis <kettenis@gnu.org>
7848
7849 * amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
7850 AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
7851 AMD64_FS_REGNUM and AMD64_GS_REGNUM.
7852
7853 2004-04-10 Randolph Chung <tausq@debian.org>
7854
7855 * MAINTAINERS (write after approval): Add myself.
7856
7857 2004-04-07 Randolph Chung <tausq@debian.org>
7858
7859 * hppa-tdep.c (hppa_inner_than): Remove.
7860 (is_pa_2): Remove unused static variable.
7861 (hppa_gdbarch_init): Use core_addr_greaterthan instead of own version.
7862
7863 2004-03-10 Paul N. Hilfinger <Hilfinger@gnat.com>
7864
7865 * language.h (language_defn): Add new la_post_parser field.
7866 * parser-defs.h (null_post_parser): New declaration (default for
7867 la_post_parser).
7868
7869 * parse.c (parse_exp_1): Move code to parse_exp_in_context and
7870 insert call to that function.
7871 (parse_exp_in_context): New function, including code formerly in
7872 parse_exp_1. Calls language-dependent post-parser after
7873 prefixification.
7874 (parse_expression_in_context): New exported function.
7875 (null_post_parser): New definition.
7876 * expression.h (parse_expression_in_context): Add declaration.
7877
7878 * p-lang.c (pascal_language_defn): Add trivial post-parser.
7879 * c-lang.c (c_language_defn): Ditto.
7880 (cplus_language_defn): Ditto.
7881 (asm_language_defn): Ditto.
7882 (minimal_language_defn): Ditto.
7883 * f-lang.c (f_language_defn): Ditto.
7884 * jv-lang.c (java_language_defn): Ditto.
7885 * language.c (unknown_language_defn): Ditto.
7886 (auto_language_defn): Ditto.
7887 (local_language_defn): Ditto.
7888 * m2-lang.c (m2_language_defn): Ditto.
7889 * scm-lang.c (scm_language_defn): Ditto.
7890 * obj-lang.c (objc_language_defn): Ditto.
7891
7892 2004-04-10 Mark Kettenis <kettenis@gnu.org>
7893
7894 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Remove function.
7895 (amd64nbsd_mcontext_addr): New function.
7896 (amd64nbsd_init_abi): Initialize TDEP->sigcontext_addr as
7897 amd64nbsd_mcontext_addr. Directly initialize TDEP->sc_reg_offset
7898 with amd64nbsd_r_reg_offset, instead of building it on the fly.
7899
7900 * corelow.c (core_xfer_partial): Fix coding standards violation.
7901 Add support for TARGET_OBJECT_WCOOKIE.
7902
7903 * sparc-linux-tdep.c (sparc32_linux_init_abi): Don't set
7904 deprecated_pc_in_sigtramp.
7905 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Likewise.
7906 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Likewise.
7907 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Likewise.
7908 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Likewise.
7909 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Likewise.
7910 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Likewise.
7911 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
7912
7913 * amd64-linux-tdep.c, amd64nbsd-tdep.c, amd64obsd-tdep.c,
7914 i386-linux-tdep.c, i386-tdep.c, i386nbsd-tdep.c, i386obsd-tdep.c:
7915 Fix typo.
7916
7917 * amd64-tdep.c (amd64_supply_fxsave): Only fiddle with
7918 I387_FISEG_REGNUM and I387_FOSEG_REGNUM in 64-bit mode.
7919 (amd64_collect_fxsave): Likewise.
7920
7921 * i386-sol2-tdep.c: Include "gdb_string.h".
7922 (i386_sol2_sigtramp_p): Recognize signal trampoline based on its
7923 name.
7924 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
7925
7926 2004-04-10 Mark Kettenis <kettenis@gnu.org>
7927
7928 * i386-sol2-tdep.c: Include "solib-svr4.h".
7929 (i386_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
7930 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
7931 * config/i386/tm-i386sol2.h: Include :solib.h".
7932 * config/i386/i386sol2.mh (NATDEPFILES): Remove solib.o,
7933 solib-svr4.o and solib-legacy.o.
7934 * config/i386/i386sol2.mt (TDEPFILES): Add solib.o and
7935 solib-svr4.o.
7936
7937 2004-04-09 Mark Kettenis <kettenis@gnu.org>
7938
7939 * amd64-linux-nat.c (fetch_inferior_registers): Correctly check
7940 whether a register is supplied by PTRACE_GETFPREGS.
7941 (store_inferior_registers): Likewise.
7942 * amd64bsd-nat.c (fetch_inferior_registers): Correctly check
7943 whether a register is supplied by PT_GETFPREGS.
7944 (store_inferior_registers): Likewise.
7945
7946 * config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
7947 * config/i386/linux64.mt (TDEPFILES): Likewise.
7948
7949 * i386-linux-nat.c: Update copyrigth year. Tweak comment.
7950
7951 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
7952 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
7953 the program counter is in the range specified by `struct
7954 gdbarch_tdep'.
7955 * amd64-linux-tdep.c: Include "symtab.h".
7956 (amd64_linux_pc_in_sigtramp): Remove function.
7957 (amd64_linux_sigtramp_p): New function.
7958 (amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
7959 deprecated_pc_in_sigtramp.
7960 * amd64nbsd-tdep.c: Include "symtab.h".
7961 (amd64nbsd_sigtramp_p): New function.
7962 (amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
7963 deprecated_pc_in_sigtramp.
7964 * amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
7965 few comments.
7966 (amd64obsd_pc_in_sigtramp): Remove function.
7967 (amd64obsd_sigtramp_p): New function.
7968 (amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
7969 deprecated_pc_in_sigtramp.
7970 * i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
7971 (i386bsd_pc_ins_sigtramp): Remove prototype.
7972 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
7973 * i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
7974 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
7975 the program counter is in the range specified by `struct
7976 gdbarch_tdep'.
7977 (i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
7978 (i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
7979 (i386_go32_pc_in_sigtramp): Remove function.
7980 (i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
7981 Initialize TDEP->sigtramp_p.
7982 (i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
7983 (i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
7984 deprecated_pc_in_sigtramp.
7985 * i386-linux-tdep.c: Adjust comments.
7986 (i386_linux_pc_in_sigtramp): Remove function.
7987 (i386_linux_sigtramp_p): New function.
7988 (i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
7989 deprecated_pc_in_sigtramp.
7990 * i386-nto-tdep.c: Update copyright year.
7991 (i386nto_pc_in_sigtramp): Remove function.
7992 (i386nto_sigtramp_p): New function.
7993 (i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
7994 SP_REGNUM.
7995 (i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
7996 deprecated_pc_in_sigtramp.
7997 * i386-sol2-tdep.c: Update copyright year.
7998 (i386_sol2_pc_in_sigtramp): Remove function.
7999 (i386_sol2_sigtramp_p): New function.
8000 (i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
8001 deprecated_pc_in_sigtramp.
8002 * i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
8003 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
8004 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
8005 deprecated_sigtramp_start and deprecated_sigtramp_end.
8006 * i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
8007 (i386nbsd_pc_in_sigtramp): Remove function.
8008 (i386nbsd_sigtramp_p): New function.
8009 (i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
8010 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
8011 TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
8012 * i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
8013 (i386obsd_pc_in_sigtramp): Remove function.
8014 (i386obsd_sigtramp_p): New function.
8015 (i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
8016 functions.
8017 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
8018 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
8019 TDEP->sigtramp_p.
8020 * Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
8021 amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
8022 dependencies.
8023
8024 * config/i386/i386aout.mt: Remove file.
8025
8026 * configure.tgt: Remove i[34567]86-*-go32*,
8027 i[34567]86-*-msdosdjgpp*, i[34567]86-*-sco*, i[34567]86-*-sysv*
8028 and i[34567]86-*-isc*. Set gdb_target to i386 for
8029 i[34567]86-*-netware* and i[34567]86-*-*.
8030 * config/i386/i386.mt: New file.
8031 * config/i386/embed.mt: Remove file.
8032 * config/i386/go32.mt: Remove file.
8033 * config/i386/i386nw.mt: Remove file.
8034 * config/i386/i386v.mt: Remove file.
8035 * config/i386/tm-go32.h: Remove file.
8036
8037 * tui/tui-hooks.c: Include "readline/readline.h" after
8038 "gdb_curses.h" instead of before.
8039 * tui/tui-io.c: Likewise.
8040
8041 * tui/tui.c: Fix typo in comment.
8042
8043 * sparc64-tdep.c (sparc_address_from_register): Remove function.
8044
8045 2004-04-08 Andrew Cagney <cagney@redhat.com>
8046
8047 * breakpoint.h (deprecated_exception_catchpoints_are_fragile)
8048 (deprecated_exception_support_initialized): Declare.
8049 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support)
8050 (initialize_hp_cxx_exception_support)
8051 (child_enable_exception_callback): Update.
8052 * breakpoint.c (deprecated_exception_catchpoints_are_fragile)
8053 (deprecated_exception_support_initialized): Rename
8054 deprecated_exception_catchpoints_are_fragile and
8055 deprecated_exception_support_initialized.
8056 (breakpoint_init_inferior, breakpoint_init_inferior): Update.
8057
8058 * symtab.c (deprecated_hp_som_som_object_present): Rename
8059 hp_som_som_object_present.
8060 * symtab.h (deprecated_hp_som_som_object_present): Declare.
8061 * symfile.c (hp_som_som_object_present, RESET_HP_UX_GLOBALS):
8062 Update. Delete extern declaration.
8063 * valops.c (hp_som_som_object_present): Ditto.
8064 * parse.c (deprecated_hp_som_som_object_present)
8065 (parse_nested_classes_for_hpacc): Ditto.
8066 * hpread.c (hp_som_som_object_present, hpread_expand_symtab): Ditto.
8067 * hppa-hpux-tdep.c (hp_som_som_object_present)
8068 (initialize_hp_cxx_exception_support): Ditto.
8069 * eval.c (hp_som_som_object_present, evaluate_subexp_standard): Ditto.
8070 * cp-valprint.c (hp_som_som_object_present)
8071 (cp_print_class_method): Ditto.
8072 * c-typeprint.c (hp_som_som_object_present):
8073 (c_type_print_base): Ditto.
8074 * c-exp.y (hp_som_som_object_present): Ditto.
8075
8076 2004-04-08 Andrew Cagney <cagney@redhat.com>
8077
8078 * frame-unwind.c (struct frame_unwind_table, frame_unwind_init)
8079 (frame_unwind_prepend_unwinder, frame_unwind_append_sniffer)
8080 (frame_unwind_find_by_frame): Re-implement the unwind code so
8081 that it can both prepend and append sniffers. Replace
8082 frame_unwind_register_unwinder with frame_unwind_prepend_unwinder.
8083 * tramp-frame.c (tramp_frame_append): Use
8084 frame_unwind_prepend_unwinder.
8085 * frame-unwind.h (frame_unwind_prepend_unwinder): Replace
8086 frame_unwind_register_unwinder.
8087 * tramp-frame.h (tramp_frame_prepend_unwinder): Rename
8088 tramp_frame_append.
8089 * tramp-frame.c (tramp_frame_prepend_unwinder): Update.
8090 * mips-linux-tdep.c (mips_linux_init_abi, mips_linux_init_abi)
8091 (mips_linux_init_abi): Update.
8092
8093 2004-04-08 Kevin Buettner <kevinb@redhat.com>
8094
8095 * ppc-linux-tdep.c (ELF_NREG, ELF_NFPREG, ELF_NVRREG)
8096 (ELF_FPREGSET_SIZE): Delete constants formerly used in core
8097 file support.
8098
8099 2004-04-07 Kevin Buettner <kevinb@redhat.com>
8100
8101 * ia64-tdep.c (elf.h): Don't include.
8102 (elf/ia64.h) [HAVE_LIBUNWIND_IA64_H]: Include.
8103
8104 2004-04-07 Jason Molenda (jmolenda@apple.com)
8105
8106 * frame.h: Typeo corrections in comments.
8107
8108 2004-04-07 Jim Blandy <jimb@redhat.com>
8109
8110 * i386-tdep.c (i386_stab_reg_to_regnum): Correct numbering for
8111 %esp and %ebp
8112
8113 2004-04-07 Mark Kettenis <kettenis@gnu.org>
8114
8115 * config/sparc/linux.mt (TDEPFILES): Remove solib-legacy.o.
8116 * config/sparc/linux64.mt (TDEPFILES): Likewise.
8117 * config/sparc/sol2.mt (TDEPFILES): Add solib.o and solib-svr4.o.
8118 * config/sparc/sol2.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
8119 and solib-legacy.o.
8120 * config/sparc/sol2-64.mt (TDEPFILES): Add solib.o and
8121 solib-svr4.o.
8122 * config/sparc/tm-sol2.h: Update copyright year. Include
8123 "solib.h".
8124
8125 * sparc-sol2-tdep.c: Update copyright year. Include
8126 "solib-svr4.h".
8127 (sparc32_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
8128 * sparc64-sol2-tdep.c: Include "solib-svr4.h".
8129 (sparc64_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
8130 * Makefile.in (sparc-sol2-tdep.o, sparc64-sol2-tdep.o): Update
8131 dependencies.
8132
8133 2004-04-06 Andrew Cagney <cagney@redhat.com>
8134
8135 * infttrace.c: Include "infttrace.h".
8136 * infttrace.h: Include "target.h".
8137 * Makefile.in (infttrace_h): Update.
8138 (infttrace.o): Update.
8139
8140 2004-04-06 Andrew Cagney <cagney@redhat.com>
8141
8142 * hppah-nat.c (hpux_has_forked, hpux_has_vforked)
8143 (hpux_has_execd, hpux_has_syscall_event): Include "infttrace.h",
8144 move extern declarations from here ...
8145 * infttrace.h: ... to here.
8146 * Makefile.in (hppah-nat.o): Update dependencies.
8147
8148 * hppa-tdep.c (hppa_breakpoint_from_pc): Make static.
8149 (hppa_gdbarch_init): Set gdbarch_breakpoint_from_pc
8150 * config/pa/tm-hppa.h (BREAKPOINT_FROM_PC, BREAKPOINT32):
8151 (hppa_breakpoint_from_pc): Delete.
8152
8153 * MAINTAINERS: Mark hppa-elf as buildable with -Werror.
8154
8155 2004-04-05 Andrew Cagney <cagney@redhat.com>
8156
8157 * hppa-tdep.c: Do not include <sys/types.h>, <sys/param.h>,
8158 <signal.h>, <sys/ptrace.h>, #include "a.out.encap.h",
8159 <sys/file.h>.
8160
8161 2004-04-06 Randolph Chung <tausq@debian.org>
8162
8163 Committed by Andrew Cagney (mechanical change).
8164 * hppa-tdep.c: (args_for_find_stub, hp_som_som_object_present,
8165 exception_catchpoints_are_fragile, find_stub_with_shl_get,
8166 cover_find_stub_with_shl_get, initialize_hp_cxx_exception_support,
8167 child_enable_exception_callback, current_ex_event,
8168 null_symtab_and_line, child_get_current_exception_event,
8169 HP_ACC_EH_notify_hook, HP_ACC_EH_set_hook_value,
8170 HP_ACC_EH_notify_callback, HP_ACC_EH_break, HP_ACC_EH_catch_throw,
8171 HP_ACC_EH_catch_catch, __eh_notification, hp_cxx_exception_support,
8172 hp_cxx_exception_support_initialized, eh_notify_hook_addr,
8173 eh_notify_callback_addr, eh_break_addr, eh_catch_catch_addr,
8174 eh_catch_throw_addr, break_callback_sal, setup_d_pid_in_inferior):
8175 Move hpux-specific definitions ...
8176 * hppa-hpux-tdep.c: ... to here.
8177
8178 2004-04-05 Andrew Cagney <cagney@redhat.com>
8179
8180 * hppa-tdep.c (hppa_frame_cache): Pass the frame's func to
8181 skip_prologue_using_sal.
8182
8183 2004-04-05 Andrew Cagney <cagney@redhat.com>
8184
8185 * config/i386/tm-i386.h: Delete file.
8186 * config/i386/tm-vxworks.h: Update copyright, do not include
8187 "tm-i386.h".
8188 * config/i386/tm-nto.h, config/i386/tm-linux.h: Ditto.
8189 * config/i386/tm-i386sol2.h, config/i386/tm-i386lynx.h: Ditto.
8190 * config/i386/tm-go32.h, config/i386/tm-cygwin.h: Ditto.
8191 * config/i386/ncr3000.mt (TM_FILE): Delete.
8192 * config/i386/interix.mt (TM_FILE): Delete.
8193 * config/i386/i386v.mt (TM_FILE): Delete.
8194 * config/i386/i386nw.mt (TM_FILE): Delete.
8195 * config/i386/i386gnu.mt (TM_FILE): Delete.
8196 * config/i386/i386aout.mt (TM_FILE): Delete.
8197 * config/i386/embed.mt (TM_FILE): Delete.
8198
8199 2004-04-05 Kevin Buettner <kevinb@redhat.com>
8200
8201 * frv-tdep.h (fsr0_regnum, acc0_regnum, acc7_regnum, accg0123_regnum)
8202 (accg4567_regnum, msr0_regnum, msr1_regnum, gner0_regnum)
8203 (gner1_regnum, fner0_regnum, fner1_regnum, accg0_regnum)
8204 (accg7_regnum): New constants.
8205 (last_spr_regnum, last_pseudo_regnum): Update.
8206 * frv-tdep.c (new_variant): Initialize names for fsr0, acc0-acc7,
8207 accg0-accg7, msr0, msr1, gner0, gner1, fner0, and fner1.
8208 (frv_pseudo_register_read, frv_pseudo_register_write): Add support
8209 for accg registers.
8210 (frv_register_sim_regno): Update spr_map[].
8211
8212 2004-04-04 Andrew Cagney <cagney@redhat.com>
8213
8214 * config/mips/xm-riscos.h: Delete.
8215 * config/mips/xm-mipsv4.h, config/mips/xm-mips.h: Delete.
8216 * config/mips/tm-mipsv4.h, config/mips/riscos.mh: Delete.
8217 * config/mips/nm-riscos.h, config/mips/nm-news-mips.h: Delete.
8218 * config/mips/nm-mips.h, config/mips/news-mips.mh: Delete.
8219 * config/mips/news-mips.mh, config/m68k/tm-m68kv4.h: Delete.
8220 * config/mips/decstation.mh, config/mips/littlemips.mh: Delete.
8221 * config/mips/mipsv4.mt, config/m68k/tm-sun3.h: Delete.
8222 * config/m68k/xm-sun3os4.h, config/m68k/xm-sun3.h: Delete.
8223 * config/m68k/xm-sun2.h, config/m68k/xm-m68kv4.h: Delete.
8224 * config/m68k/xm-dpx2.h, config/m68k/xm-delta68.h: Delete.
8225 * config/m68k/xm-3b1.h, config/m68k/tm-sun3os4.h: Delete.
8226 * config/m68k/tm-m68klynx.h, config/m68k/tm-dpx2.h: Delete.
8227 * config/m68k/tm-delta68.h, config/m68k/tm-3b1.h: Delete.
8228 * config/m68k/sun3os4.mt, config/m68k/nm-sysv4.h: Delete.
8229 * config/m68k/nm-sun3.h, config/m68k/sun3os4.mh: Delete.
8230 * config/m68k/sun2os3.mh, config/m68k/nm-sun2.h: Delete.
8231 * config/m68k/nm-m68klynx.h, config/m68k/sun3os3.mt: Delete.
8232 * config/m68k/nm-dpx2.h, config/m68k/sun2os3.mt: Delete.
8233 * config/m68k/dpx2.mh, config/m68k/sun3os3.mh: Delete.
8234 * config/m68k/sun2os4.mh, config/m68k/nm-delta68.h: Delete.
8235 * config/m68k/m68kv4.mt, config/m68k/m68klynx.mt: Delete.
8236 * config/m68k/3b1.mt, config/m68k/m68klynx.mh: Delete.
8237 * config/m68k/m68kv4.mh, config/m68k/sun2os4.mt: Delete.
8238 * config/m68k/tm-sun2os4.h, config/m68k/3b1.mh: Delete.
8239 * config/m68k/dpx2.mt, config/m68k/delta68.mt: Delete.
8240 * config/m68k/tm-sun2.h, config/m68k/delta68.mh: Delete.
8241
8242 * configure.tgt: Remove m68000-*-sunos3*, m68000-*-sunos4*,
8243 m68*-bull-sysv*, m68*-att-*, m68*-motorola-*, m68*-*-lynxos*,
8244 m68*-*-sunos3*, m68*-*-sunos4*, m68*-*-sysv4*, mips*-*-sysv4*.
8245 * configure.host: Remove m680[01]0-sun-sunos3*,
8246 m680[01]0-sun-sunos4*, m68*-att-*, m68*-bull*-sysv*,
8247 m68*-*-lynxos*, m68*-*-sysv4*, m68*-motorola-*, m68*-sun-sunos3*,
8248 m68*-sun-sunos4*, m68*-sun-*, mips-dec-*, mips-little-*,
8249 mips-sony-*, mips-*-mach3*, mips-*-sysv4*, mips-*-sysv*,
8250 mips-*-riscos*.
8251 * NEWS: Mention removed systems.
8252
8253 2004-04-04 Andrew Cagney <cagney@redhat.com>
8254
8255 GDB 6.1 release created from 6.1 branch.
8256
8257 2004-04-04 Andrew Cagney <cagney@redhat.com>
8258
8259 * gnu-nat.c (gnu_wait): Use memcpy instead of bcopy.
8260 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
8261 * remote-vx68.c (vx_read_register, vx_write_register): Ditto.
8262
8263 * config/vax/xm-vax.h (FAULT_CODE_ORIGIN, INIT_STACK): Delete.
8264 * config/alpha/xm-alphaosf.h (NO_SIGINTERRUPT): Delete.
8265 * config/alpha/xm-alphalinux.h (NO_SIGINTERRUPT): Delete.
8266
8267 2004-04-03 Jim Blandy <jimb@redhat.com>
8268
8269 * MAINTAINERS: Chris Faylor has changed employers; add him to
8270 "paper trail" section, and update his E-mail address.
8271
8272 2004-04-03 Andrew Cagney <cagney@redhat.com>
8273
8274 * frame-unwind.c (frame_unwind_find_by_frame): Delete check for
8275 generic dummy frames.
8276 * dummy-frame.c: Update copyright.
8277 (dummy_frame_sniffer): Delete check for generic dummy frames.
8278
8279 * config/pa/tm-hppa.h (REG_PARM_STACK_SPACE): Delete.
8280 * config/pa/tm-hppa64.h (PA20W_CALLING_CONVENTIONS)
8281 (REG_PARM_STACK_SPACE): Delete.
8282 * hppa-tdep.c (hppa64_push_dummy_call, hppa32_push_dummy_call):
8283 Inline reference to REG_PARM_STACK_SPACE.
8284
8285 * config/pa/tm-hppah.h (FRAME_SAVED_PC_IN_SIGTRAMP)
8286 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
8287 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
8288 (FRAME_BASE_BEFORE_SIGTRAMP)
8289 (hppa32_hpux_frame_base_before_sigtramp)
8290 (hppa32_hpux_frame_saved_pc_in_sigtramp): Delete.
8291 * config/pa/tm-hppa64.h (hppa64_hpux_frame_saved_pc_in_sigtramp)
8292 (hppa64_hpux_frame_find_saved_regs_in_sigtramp)
8293 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
8294 (FRAME_BASE_BEFORE_SIGTRAMP)
8295 (hppa64_hpux_frame_base_before_sigtramp)
8296 (FRAME_SAVED_PC_IN_SIGTRAMP): Delete.
8297
8298 2004-04-03 Andrew Cagney <cagney@redhat.com>
8299
8300 * PROBLEMS: Mention that GDB doesn't build on HP/UX 11.00.
8301
8302 2004-04-02 Andrew Cagney <cagney@redhat.com>
8303
8304 * sh64-tdep.c (sh64_init_extra_frame_info): Replace
8305 DEPRECATED_CALL_DUMMY_LENGTH with 0, simplify.
8306 * dummy-frame.h: Delete out-of-date comments.
8307 * gdbarch.sh (DEPRECATED_CALL_DUMMY_LENGTH): Delete.
8308 * gdbarch.h, gdbarch.c: Re-generate.
8309
8310 2004-04-02 Joel Brobecker <brobecker@gnat.com>
8311
8312 Committed by Andrew Cagney <cagney@redhat.com>.
8313 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Do not take
8314 into account an instruction saving a register if we have already
8315 seen an earlier instruction saving that same register.
8316
8317 2004-04-02 Andrew Cagney <cagney@redhat.com>
8318
8319 * gdbarch.sh (DEPRECATED_INIT_FRAME_PC_FIRST): Delete.
8320 * gdbarch.h, gdbarch.c: Re-generate.
8321 * frame.c (legacy_get_prev_frame): Delete references to
8322 DEPRECATED_INIT_FRAME_PC_FIRST.
8323
8324 * infrun.c (pc_in_sigtramp): Delete function.
8325 (check_sigtramp2): Inline call to pc_in_sigtramp, use
8326 get_frame_type.
8327
8328 2004-04-02 Andrew Cagney <cagney@redhat.com>
8329
8330 * infrun.c (handle_step_into_function): Delete code conditional on
8331 legacy_frame_p.
8332 (handle_inferior_event, step_over_function): Ditto.
8333
8334 2004-04-02 Andrew Cagney <cagney@redhat.com>
8335
8336 * frame.c (get_prev_frame_1): Exclude signal trampolines from the
8337 "previous frame inner to this frame" test.
8338
8339 2004-04-02 Andrew Cagney <cagney@redhat.com>
8340
8341 * frame.c (safe_frame_unwind_memory): New function.
8342 * frame.h (safe_frame_unwind_memory): Declare. Update description
8343 of /safe_/ methods.
8344 * tramp-frame.c (tramp_frame_start): Re-order parmeters, add
8345 "next_frame". Use safe_frame_unwind_memory.
8346 (tramp_frame_sniffer): Update call to tramp_frame_start.
8347
8348 2004-04-01 Daniel Jacobowitz <drow@mvista.com>
8349
8350 * dwarf2read.c (dwarf2_objfile_data_key): New.
8351 (struct dwarf2_per_objfile, dwarf2_per_objfile): New.
8352 (dwarf_info_size, dwarf_abbrev_size, dwarf_line_size)
8353 (dwarf_pubnames_size, dwarf_aranges_size, dwarf_loc_size)
8354 (dwarf_macinfo_size, dwarf_str_size, dwarf_ranges_size)
8355 (dwarf_frame_size, dwarf_eh_frame_size, dwarf_info_buffer)
8356 (dwarf_abbrev_buffer, dwarf_line_buffer, dwarf_str_buffer)
8357 (dwarf_macinfo_buffer, dwarf_ranges_buffer, dwarf_loc_buffer):
8358 Remove variables.
8359 (struct dwarf2_pinfo): Remove per-objfile members. Update comments.
8360 (DWARF_ABBREV_SIZE, DWARF_LINE_SIZE)
8361 (DWARF_LOC_SIZE, DWARF_MACINFO_SIZE, DWARF_STR_SIZE)
8362 (DWARF_RANGES_SIZE, DWARF_INFO_BUFFER)
8363 (DWARF_ABBREV_BUFFER, DWARF_LINE_BUFFER, DWARF_STR_BUFFER)
8364 (DWARF_MACINFO_BUFFER, DWARF_RANGES_BUFFER, DWARF_LOC_BUFFER):
8365 Remove macros.
8366 (dwarf2_has_info): Take an objfile argument. Allocate per-objfile
8367 data.
8368 (dwarf2_locate_sections, dwarf2_build_psymtabs)
8369 (dwarf2_build_psymtabs_easy, dwarf2_build_psymtabs_hard)
8370 (skip_one_die, dwarf2_get_pc_bounds, dwarf2_read_abbrevs)
8371 (read_partial_die, read_full_die, read_indirect_string)
8372 (dwarf_decode_line_header, dwarf_decode_macros)
8373 (dwarf2_symbol_mark_computed): Remove use of removed macros.
8374 Update uses of removed variables.
8375 (psymtab_to_symtab_1): Restore per-objfile data pointer. Remove use
8376 of removed macros.
8377 (_initialize_dwarf2_read): New function.
8378 * symfile.h (dwarf2_has_info): Update prototype.
8379 * coffread.c (coff_symfile_read): Update call to dwarf2_has_info.
8380 * elfread.c (elf_symfile_read): Likewise.
8381
8382 2004-04-01 Jim Blandy <jimb@redhat.com>
8383
8384 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): New, unified
8385 function for register numbers on all the rs6000-derived targets.
8386 (rs6000_gdbarch_init): Don't register a separate
8387 gdbarch_dwarf2_reg_to_regnum function for the E500. Use
8388 rs6000_dwarf2_stab_reg_to_regnum for both Dwarf 2 and stabs on all
8389 variants.
8390
8391 * i386-tdep.c: Add FIXME regarding STABS vs. Dwarf 2 register
8392 numbering.
8393
8394 2004-04-01 Paul N. Hilfinger <Hilfinger@gnat.com>
8395
8396 * valarith.c: Update copyright notice.
8397 (value_add): Handle range types.
8398 (value_sub): Ditto.
8399 (value_equal): Ditto.
8400 (value_less): Ditto.
8401 (value_neg): Ditto.
8402 (value_complement): Ditto.
8403 (value_binop): Simplify slightly by using is_integral_type and
8404 eliminiating unnecessary COERCE_ENUMs.
8405
8406 2004-03-31 Andrew Cagney <cagney@redhat.com>
8407
8408 * frame.h (frame_unwind_id): Declare.
8409 * frame.c (frame_unwind_id): New function.
8410 (get_prev_frame_1): New function.
8411 (frame_debug_got_null_frame): New function.
8412 (get_prev_frame): Use frame_debug_got_null_frame. Move unwind
8413 code proper to prev_frame, update description.
8414 * infrun.c (step_over_function): Use frame_unwind_id.
8415
8416 2004-04-31 J. Brobecker <brobecker@gnat.com>
8417
8418 * hppa-tdep.c (hppa32_push_dummy_call): Set the Stack Pointer.
8419 (hppa64_push_dummy_call): Likewise.
8420
8421 2004-03-30 Jim Blandy <jimb@redhat.com>
8422
8423 From Ulrich Weigand:
8424 * utils.c (query): Do not use a va_list variable multiple times.
8425
8426 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
8427
8428 * Makefile.in (linux_nat_h): Update dependencies.
8429 * configure.in: Check for <gnu/libc-version.h>.
8430 * configure: Regenerate.
8431 * config.in: Regenerate.
8432 * linux-nat.h: Include "target.h". Add waitstatus field to
8433 struct lwp_info.
8434 * lin-lwp.c (add_lwp): Initialize waitstatus.kind.
8435 (lin_lwp_attach_lwp): Don't attach to LWPs we have already attached
8436 to.
8437 (lin_lwp_handle_extended): New function. Handle clone events.
8438 (wait_lwp): Use lin_lwp_handle_extended. Update comment about
8439 thread exit events.
8440 (child_wait): Handle clone events.
8441 (lin_lwp_wait: Use lin_lwp_handle_extended and handle clone events.
8442 * linux-nat.c (linux_enable_event_reporting): Turn on
8443 PTRACE_O_TRACECLONE.
8444 (linux_handle_extended_wait): Handle clone events.
8445 * thread-db.c: Include <gnu/libc-version.h>.
8446 (struct private_thread_info): Add dying flag.
8447 (enable_thread_event_reporting): Enable TD_DEATH for glibc 2.2 and
8448 higher.
8449 (attach_thread): Update comments. Handle dying threads.
8450 (detach_thread): Set the dying flag.
8451 (check_event): Always call attach_thread.
8452
8453 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
8454
8455 * mips-tdep.c (mips_pdr_data): New.
8456 (non_heuristic_proc_desc): Use objfile_data and set_objfile_data.
8457 (_initialize_mips_tdep): Initialize mips_pdr_data.
8458
8459 2004-03-29 Corinna Vinschen <vinschen@redhat.com>
8460
8461 * minsyms.c (install_minimal_symbols): Move dropping leading
8462 char from linkage name from here...
8463 (prim_record_minimal_symbol_and_info): ...to here. Simplify
8464 test for "__gnu_compiled*" symbols.
8465
8466 2004-03-28 Jim Blandy <jimb@redhat.com>
8467
8468 * rs6000-tdep.c (skip_prologue): Recognize moves from argument
8469 registers to temp register r0 and byte stores as prologue
8470 instructions.
8471
8472 2004-03-28 Andrew Cagney <cagney@redhat.com>
8473
8474 * PROBLEMS (Stack backtraces): Rewrite. Remove reference to
8475 arm*-*-*.
8476
8477 2004-03-28 Stephane Carrez <stcarrez@nerim.fr>
8478
8479 * tui/tui-regs.c (tui_show_registers): Make sure the TUI is active
8480 and switch the layout to force a display of register window.
8481
8482 2004-02-26 J. Brobecker <brobecker@gnat.com>
8483
8484 * amd64-tdep.c (amd64_classify): make RANGE_TYPE objects be part
8485 of the INTEGER class.
8486
8487 2004-03-26 Jim Blandy <jimb@redhat.com>
8488
8489 * ppc-linux-tdep.c (ppc_linux_init_abi): Long doubles are eight
8490 bytes long on PPC GNU/Linux.
8491
8492 2004-03-26 David Carlton <carlton@kealia.com>
8493
8494 * PROBLEMS: Refer to gdb/1588 instead of gdb/826.
8495
8496 2004-03-25 Andrew Cagney <cagney@redhat.com>
8497
8498 * PROBLEMS: Add general section titles, remove references to
8499 specific releases.
8500
8501 2004-03-25 Daniel Jacobowitz <drow@mvista.com>
8502
8503 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE): Define to
8504 INT_REGISTER_SIZE.
8505 (arm_linux_push_arguments): Use TARGET_DOUBLE_BIT instead of
8506 FP_REGISTER_VIRTUAL_SIZE.
8507 * arm-tdep.c (arm_make_sigtramp_cache): Use register_size instead
8508 of DEPRECATED_REGISTER_RAW_SIZE.
8509 (arm_register_type): Add gdbarch argument.
8510 (arm_register_raw_size, arm_register_virtual_size): Delete.
8511 (arm_register_byte, arm_extract_return_value)
8512 (arm_store_return_value, arm_get_longjmp_target): Update references
8513 to INT_REGISTER_RAW_SIZE and FP_REGISTER_RAW_SIZE.
8514 (arm_gdbarch_init): Likewise. Don't set
8515 deprecated_register_raw_size, deprecated_register_virtual_size,
8516 deprecated_max_register_raw_size,
8517 deprecated_max_register_virtual_size, or
8518 deprecated_max_register_virtual_type. Do set register_type.
8519 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE)
8520 (ARM_MAX_REGISTER_VIRTUAL_SIZE, INT_REGISTER_VIRTUAL_SIZE)
8521 (FP_REGISTER_VIRTUAL_SIZE): Delete.
8522 (INT_REGISTER_RAW_SIZE): Rename to INT_REGISTER_SIZE.
8523 (FP_REGISTER_RAW_SIZE): Rename to FP_REGISTER_SIZE.
8524 * arm-linux-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Define to
8525 INT_REGISTER_SIZE.
8526 * remote-rdp.c (remote_rdp_fetch_register): Use MAX_REGISTER_SIZE.
8527 (remote_rdp_store_register): Likewise.
8528
8529 2004-03-24 Daniel Jacobowitz <drow@mvista.com>
8530
8531 * Makefile.in (mips-linux-tdep.o): Update dependencies.
8532 * mips-tdep.c (mips_gdbarch_init): Move frame predicates
8533 to after osabi initialization.
8534 * mips-linux-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
8535 (mips_linux_o32_sigframe_init, mips_linux_n32n64_sigframe_init): New
8536 functions.
8537 (mips_linux_o32_sigframe, mips_linux_o32_rt_sigframe)
8538 (mips_linux_n32_rt_sigframe, mips_linux_n64_rt_sigframe): New
8539 variables.
8540 (mips_linux_init_abi): Append signal trampoline unwinders.
8541
8542 2004-03-24 Andrew Cagney <cagney@redhat.com>
8543
8544 * tramp-frame.h (TRAMP_SENTINEL_INSN): Define, document.
8545 * tramp-frame.c: Include "gdb_assert.h".
8546 (tramp_frame_start): Use TRAMP_SENTINEL_INSN. Use ULONGEST and
8547 correct sizeof.
8548 (tramp_frame_append): Validate the tramp frame's instructions.
8549 * Makefile.in (tramp-frame.o): Update dependencies.
8550
8551 2004-03-23 Andrew Cagney <cagney@redhat.com>
8552
8553 * trad-frame.h (trad_frame_set_reg_addr): Declare.
8554
8555 2004-03-23 Andrew Cagney <cagney@redhat.com>
8556
8557 * MAINTAINERS (Past Maintainers): Add Mark Salter and Fernando
8558 Nasser as past testsuite/lib/ (and other) maintainers.
8559
8560 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
8561
8562 * infcmd.c (attach_command): Reread symbols if we already have
8563 an exec file.
8564
8565 2004-03-23 Andrew Cagney <cagney@redhat.com>
8566
8567 * rs6000-tdep.c (frame_get_saved_regs): Delete unused function.
8568
8569 2004-03-23 Andrew Cagney <cagney@redhat.com>
8570
8571 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): Deprecate.
8572 * gdbarch.h, gdbarch.c: Re-generate.
8573 * i386obsd-tdep.c (i386obsd_init_abi): Update.
8574 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
8575 * i386bsd-tdep.c (i386bsd_init_abi): Update.
8576 * config/vax/tm-vaxbsd.h (DEPRECATED_SIGTRAMP_END)
8577 (DEPRECATED_SIGTRAMP_START): Update.
8578 * config/m68k/tm-nbsd.h (DEPRECATED_SIGTRAMP_END)
8579 (DEPRECATED_SIGTRAMP_START): Update.
8580 * blockframe.c (find_pc_sect_partial_function): Update.
8581 * arch-utils.c (legacy_pc_in_sigtramp): Update.
8582
8583 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
8584
8585 * remote.c (remote_open_1): Reopen the exec file and reread symbols
8586 if necessary.
8587
8588 2004-03-23 Andrew Cagney <cagney@redhat.com>
8589
8590 * gdbarch.sh (PC_IN_SIGTRAMP): Change to a function with
8591 predicate, deprecate.
8592 * gdbarch.h, gdbarch.c: Re-generate.
8593 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
8594 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
8595 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Update.
8596 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
8597 * alphanbsd-tdep.c (alphanbsd_init_abi): Update.
8598 * amd64-linux-tdep.c (amd64_linux_init_abi): Update.
8599 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Update.
8600 * amd64nbsd-tdep.c (amd64nbsd_init_abi): Update.
8601 * amd64obsd-tdep.c (amd64obsd_init_abi): Update.
8602 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Update.
8603 * blockframe.c (find_pc_partial_function): Update.
8604 * breakpoint.c (bpstat_what): Update.
8605 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update.
8606 * frv-linux-tdep.c (frv_linux_init_abi): Update.
8607 * frv-tdep.c (frv_sigtramp_frame_sniffer): Update.
8608 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Update.
8609 * i386-interix-tdep.c (i386_interix_init_abi): Update.
8610 * i386-linux-tdep.c (i386_linux_init_abi): Update.
8611 * i386-nto-tdep.c (i386nto_init_abi): Update.
8612 * i386-sol2-tdep.c (i386_sol2_init_abi): Update.
8613 * i386-tdep.c (i386_sigtramp_frame_sniffer)
8614 (i386_svr4_init_abi, i386_go32_init_abi, i386_gdbarch_init): Update.
8615 * i386bsd-tdep.c (i386bsd_init_abi): Update.
8616 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
8617 * i386obsd-tdep.c (i386obsd_init_abi): Update.
8618 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Update.
8619 * infrun.c (pc_in_sigtramp): Update.
8620 * m68k-tdep.c (m68k_sigtramp_frame_sniffer): Update.
8621 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
8622 * mips-tdep.c (mips_gdbarch_init): Update.
8623 * mipsnbsd-tdep.c (mipsnbsd_init_abi): Update.
8624 * ppc-linux-tdep.c: Update comment.
8625 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Update.
8626 * shnbsd-tdep.c (shnbsd_init_abi): Update.
8627 * sparc-linux-tdep.c (sparc32_linux_init_abi): Update.
8628 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Update.
8629 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Update.
8630 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Update.
8631 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Update.
8632 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Update.
8633 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Update.
8634 * sparcobsd-tdep.c (sparc32obsd_init_abi): Update.
8635
8636 2004-03-23 Andrew Cagney <cagney@redhat.com>
8637
8638 * tramp-frame.h, tramp-frame.h: New files.
8639 * Makefile.in (SFILES, tramp_frame_h, COMMON_OBS, tramp-frame.o):
8640 Update rules to include "tramp-frame.h" and "tramp-frame.c".
8641
8642 * Makefile.in: Update all dependencies.
8643
8644 2004-03-23 Andrew Cagney <cagney@redhat.com>
8645
8646 * Makefile.in (trad_frame_h): Add $(frame_h).
8647 * trad-frame.h: Update copyright. Include "frame.h".
8648 (struct trad_frame_cache, trad_frame_cache_zalloc): Declare.
8649 (trad_frame_set_id, trad_frame_get_id): Declare.
8650 (trad_frame_set_reg_addr, trad_frame_get_register): Declare.
8651 * trad-frame.c: Update copyright.
8652 (struct trad_frame_cache): Define.
8653 (trad_frame_cache_zalloc): New function.
8654 (trad_frame_set_id, trad_frame_get_id): New functions.
8655 (trad_frame_set_reg_addr, trad_frame_get_register): New functions.
8656
8657 2004-03-22 Andrew Cagney <cagney@redhat.com>
8658
8659 * s390-tdep.c (struct s390_stub_unwind_cache): Rename
8660 s390_pltstub_unwind_cache.
8661 (s390_stub_frame_unwind_cache): Rename
8662 s390_pltstub_frame_unwind_cache.
8663 (s390_stub_frame_this_id): Rename s390_pltstub_frame_this_id.
8664 (s390_stub_frame_prev_register): Rename
8665 s390_pltstub_frame_prev_register.
8666 (s390_stub_frame_unwind): Rename s390_pltstub_frame_unwind.
8667 (s390_stub_frame_sniffer): Rename s390_stub_frame_sniffer.
8668
8669 From Ulrich Weigand:
8670 * s390-tdep.c (s390_pltstub_frame_sniffer): Handle invalid function
8671 pointer calls like PLT calls.
8672
8673 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
8674
8675 * mips-tdep.c (non_heuristic_proc_desc): Search using the specified
8676 PC rather than the partial function start address. Use the start
8677 address to sanity check the found PDR.
8678
8679 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
8680
8681 * lin-lwp.c (lin_lwp_wait): Pass the LWP ID to
8682 linux_handle_extended_wait.
8683
8684 2004-03-22 Andrew Cagney <cagney@redhat.com>
8685
8686 * rs6000-tdep.c (frame_initial_stack_address): Delete unused
8687 function.
8688
8689 * frame.h (generic_pop_current_frame): Delete declaration.
8690 (deprecate_pop_dummy_frame): Deprecate
8691 generic_pop_dummy_frame.
8692 * dummy-frame.c (deprecated_pop_dummy_frame): Update.
8693 (generic_pop_current_frame): Delete function.
8694 * mn10300-tdep.c (mn10300_pop_frame): Eliminate call to
8695 generic_pop_current_frame.
8696 * v850-tdep.c (v850_pop_frame): Update.
8697 * mcore-tdep.c (mcore_pop_frame): Update.
8698 * sh64-tdep.c (sh64_pop_frame): Update.
8699 * h8300-tdep.c (h8300_pop_frame): Update.
8700
8701 2004-03-22 Andrew Cagney <cagney@redhat.com>
8702
8703 * frame.h (deprecated_pc_in_call_dummy): Rename
8704 generic_pc_in_call_dummy.
8705 * dummy-frame.h (pc_in_dummy_frame): Delete declaration.
8706 * dummy-frame.c (deprecated_pc_in_call_dummy): Rename
8707 generic_pc_in_call_dummy.
8708 (pc_in_dummy_frame): Make static.
8709 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Update.
8710 * gdbarch.h, gdbarch.c: Re-generate.
8711 * dummy-frame.c (dummy_frame_sniffer): Simplify.
8712 * frame.c (frame_type_from_pc): Call deprecated_pc_in_call_dummy.
8713 (legacy_get_prev_frame): Ditto.
8714 * inferior.h: Delete reference to generic_pc_in_call_dummy in
8715 comment.
8716
8717 2004-03-21 Andrew Cagney <cagney@redhat.com>
8718
8719 * inferior.h (deprecated_pc_in_call_dummy_at_entry_point): Delete
8720 declaration and out-of-date comment.
8721 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
8722 Delete function.
8723 * mn10300-tdep.c (mn10300_gdbarch_init): Do not set
8724 deprecated_pc_in_call_dummy.
8725
8726 * infrun.c (handle_inferior_event): For non legacy frames, use the
8727 frame ID and frame type to identify a signal trampoline. Update
8728 comments.
8729
8730 2004-03-21 Nathan J. Williams <nathanw@wasabisystems.com>
8731
8732 * mipsnbsd-tdep.c: Update copyright. Include "mips-tdep.h".
8733 * Makefile.in (mipsnbsd-tdep.o): Update dependencies.
8734
8735 2004-03-21 Andrew Cagney <cagney@redhat.com>
8736
8737 * frame-unwind.h: Update copyright.
8738 (struct frame_data): Add opaque declaration.
8739 (frame_sniffer_ftype): Declare.
8740 (struct frame_unwind): Add "unwind_data" and "sniffer".
8741 (frame_unwind_register_unwinder): Declare.
8742 (frame_unwind_find_by_frame): Add parameter "this_cache".
8743 * frame.c (get_frame_id, create_new_frame, legacy_get_prev_frame)
8744 (legacy_get_prev_frame, legacy_get_prev_frame)
8745 (get_frame_type): Pass the prologue_cache to
8746 frame_unwind_find_by_frame.
8747 * frame-unwind.c (struct frame_unwind_table_entry): Add field
8748 "unwinder".
8749 (frame_unwind_register_unwinder): New function.
8750 (frame_unwind_find_by_frame): Handle an unwind sniffer.
8751
8752 2004-03-20 Paul Hilfinger <hilfingr@nile.gnat.com>
8753
8754 * bcache.c (print_percentage): Use floating point to avoid
8755 incorrect results when portion*100 overflows.
8756
8757 2004-03-19 Kevin Buettner <kevinb@redhat.com>
8758
8759 * ppc_tdep.h (ppc_linux_frame_saved_pc)
8760 (ppc_linux_init_extra_frame_info)
8761 (ppc_linux_frameless_function_invocation)
8762 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain)
8763 (rs6000_frame_saved_pc, rs6000_init_extra_frame_info)
8764 (rs6000_frameless_function_invocation, rs6000_frame_init_saved_regs)
8765 (rs6000_frame_chain): Delete declarations.
8766 * ppc-linux-tdep.c (ppc_linux_frame_saved_pc)
8767 (ppc_linux_init_extra_frame_info)
8768 (ppc_linux_frameless_function_invocation)
8769 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain): Delete.
8770 (ppc_linux_init_abi): Remove registration of above deleted functions.
8771 * rs6000-tdep.c (rs6000_init_extra_frame_info)
8772 (rs6000_frame_init_saved_regs, rs6000_init_frame_pc_first)
8773 (rs6000_frame_args_address, rs6000_saved_pc_after_call)
8774 (rs6000_pop_frame, rs6000_frameless_function_invocation)
8775 (rs6000_frame_saved_pc, rs6000_frame_chain): Delete.
8776 (rs6000_gdbarch_init): Remove registration of above deleted functions.
8777 Use rs6000_unwind_pc(), rs6000_frame_sniffer(),
8778 rs6000_unwind_dummy_id(), and rs6000_frame_base_sniffer() for
8779 frame management for all OSABIs.
8780
8781 2004-03-19 Andrew Cagney <cagney@redhat.com>
8782
8783 Committed by Kevin Buettner <kevinb@redhat.com>.
8784
8785 * ppc-linux-tdep.c: Include "trad-frame.h", and "frame-unwind.h".
8786 Update copyright.
8787 (struct ppc_linux_sigtramp_cache, ppc_linux_sigtramp_cache)
8788 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
8789 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
8790 (ppc_linux_init_abi): Add both 32- and 64-bit signal trampoline
8791 unwinders. #ifdef legacy frame code.
8792 * rs6000-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
8793 "frame-base.h".
8794 (rs6000_unwind_pc, rs6000_unwind_dummy_id)
8795 (struct rs6000_frame_cache, rs6000_frame_cache)
8796 (rs6000_frame_this_id, rs6000_frame_prev_register)
8797 (rs6000_frame_sniffer, rs6000_frame_unwind)
8798 (rs6000_frame_base_address, rs6000_frame_base_sniffer)
8799 (rs6000_frame_base): Implement a traditional frame unwinder.
8800 (rs6000_gdbarch_init): When unknown, NetBSD, or GNU/Linux use the
8801 frame unwinder.
8802
8803 2004-03-19 Kevin Buettner <kevinb@redhat.com>
8804
8805 * breakpoint.c (adjust_breakpoint_address): Don't adjust
8806 breakpoint address for watchpoints or the catch eventpoints.
8807 Add new paramter ``bptype''. Adjust all callers.
8808
8809 2004-03-19 Andrew Cagney <cagney@redhat.com>
8810
8811 * config/pa/tm-hppa.h (GDB_TARGET_IS_HPPA): Delete unused macro.
8812
8813 * PROBLEMS: Delete note that ARM does not use frame code, problem
8814 fixed.
8815
8816 2004-03-18 Andrew Cagney <cagney@redhat.com>
8817
8818 * stack.c (return_command): Delete code wrapped in #ifdef
8819 DEPRECATED_CALL_DUMMY_HAS_COMPLETED, macro no longer defined.
8820
8821 * rs6000-tdep.c (skip_prologue): Record only the first LR save.
8822
8823 2004-03-18 Andrew Cagney <cagney@redhat.com>
8824
8825 * config/mips/tm-nbsd.h: Replace IN_SIGTRAMP with
8826 DEPRECATED_IN_SIGTRAMP.
8827 * config/powerpc/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8828 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP) Ditto.
8829 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8830 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8831 * config/ia64/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8832 * config/ia64/tm-aix.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8833 * config/arm/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8834 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8835 * arch-utils.c (legacy_pc_in_sigtramp): Ditto.
8836 * arch-utils.h: Remove reference to IN_SIGTRAMP in comment.
8837
8838 2004-03-18 Andrew Cagney <cagney@redhat.com>
8839
8840 * frame-base.c: Update copyright. Include "gdb_obstack.h".
8841 (struct frame_base_table_entry): Define.
8842 (struct frame_base_table): Re-implement as a linked list.
8843 (frame_base_init): Re-implement.
8844 (frame_base_table): Delete function.
8845 (append_predicate): Delete function.
8846 (frame_base_append_sniffer): Update.
8847 (frame_base_set_default): Update.
8848 (frame_base_find_by_frame): Update.
8849 (_initialize_frame_base): Use gdbarch_data_register_pre_init.
8850 * Makefile.in (frame-base.o): Update dependencies.
8851
8852 2004-03-17 Andrew Cagney <cagney@redhat.com>
8853
8854 * frame.c (legacy_get_prev_frame): Pass correct frame to
8855 frame_unwind_find_by_frame.
8856
8857 2004-03-17 David Carlton <carlton@kealia.com>
8858
8859 * NEWS: Mention C++ nested types and namespaces
8860
8861 2004-03-16 Michael Chastain <mec.gnu@mindspring.com>
8862
8863 * PROBLEMS: Add section headers, "Regressions since gdb 6.0"
8864 and "Regressions since gdb 5.3.". Add known regressions since
8865 gdb 6.0.
8866
8867 2004-03-16 David Carlton <carlton@kealia.com>
8868
8869 * dwarf2read.c (process_structure_scope): Process children even
8870 when we're a declaration.
8871
8872 2004-03-16 Andrew Cagney <cagney@redhat.com>
8873
8874 * symtab.h (find_pc_sect_partial_function): Delete declaration.
8875 * blockframe.c (find_pc_partial_function)
8876 (find_pc_sect_partial_function): Merge into a single
8877 find_pc_partial_function.
8878
8879 2004-03-16 Mark Kettenis <kettenis@gnu.org>
8880
8881 * i386bsd-nat.c: s/regno/regnum/g.
8882 (fetch_inferior_registers): Use I386_ST0_REGNUM instead of
8883 FP0_REGNUM.
8884 (store_inferior_registers): Likewise.
8885
8886 2004-03-16 Mark Kettenis <kettenis@gnu.org>
8887
8888 * i386bsd-nat.c (fill_fpregset): Call i387_collect_fsave instead
8889 of i387_fill_fsave.
8890 (store_inferior_registers): Call i387_collect_fsave and
8891 i387_collect_fxsave instead of i387_fill_fsave and
8892 i387_fill_fxsave.
8893
8894 2004-03-15 Andrew Cagney <cagney@redhat.com>
8895
8896 * Makefile.in (frame-unwind.o): Update dependencies.
8897 * frame-unwind.c: Include "gdb_obstack.h".
8898 (frame_unwind_init): Replace "gdbarch" parameter with an "obstack"
8899 parameter.
8900 (append_predicate): Delete function.
8901 (struct frame_unwind_table_entry): New structure.
8902 (struct frame_unwind_table): Replace "sniffer" with "head" and
8903 "tail".
8904 (frame_unwind_append_sniffer): Update.
8905 (frame_unwind_find_by_frame): Update.
8906 (_initialize_frame_unwind): Registe frame_unwind_init using
8907 gdbarch_data_register_pre_init.
8908
8909 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8910
8911 * i386bsd-nat.c: Update copyright year.
8912 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Undefine and then
8913 define unconditionally.
8914
8915 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8916
8917 * i387-tdep.h (i387_collect_fsave): New prototype.
8918 * i387-tdep.c (i387_collect_fsave): New function containing most
8919 of the code from i387_fill_fsave.
8920 (i387_fill_fsave): Call i387_collect_fsave.
8921
8922 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8923
8924 * i386-linux-tdep.c: Update copyright year.
8925 (i386_linux_svr4_fetch_link_map_offsets): Remove function.
8926 (i386_linux_init_abi): Set solib_svr4_fetch_link_maop_offsets to
8927 svr4_ilp32_link_map_offsets instead of
8928 i386_linux_svr4_fetch_link_map_offsets.
8929
8930 2004-03-15 David Carlton <carlton@kealia.com>
8931
8932 Fix for PR c++/1553:
8933 * dwarf2read.c (read_structure_type): Determine type name by
8934 calling determine_class_name.
8935 (determine_class_name): New.
8936 (determine_prefix): Look at TYPE_TAG_NAME and call
8937 determine_class_name when appropriate.
8938 (determine_prefix_aux, class_name): Delete.
8939 (read_namespace): Set die->type.
8940
8941 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8942
8943 * breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
8944 unused macro definition. The definition in target.h (or perhaps
8945 elsewhere) takes precedence.
8946
8947 2004-03-15 Andrew Cagney <cagney@redhat.com>
8948
8949 * ppc-tdep.h: Update copyright.
8950 (ppc_linux_supply_gregset, ppc_linux_supply_fpregset): Change
8951 function signatures to match "regsets.h".
8952 * ppc-linux-tdep.c: Include "regset.h".
8953 (ELF_GREGSET_SIZE): Delete.
8954 (right_supply_register): New function.
8955 (ppc_linux_supply_fpregset, ppc_linux_supply_gregset): Rewrite
8956 using right_supply_register.
8957 (ppc32_linux_supply_gregset, ppc64_linux_supply_gregset): New
8958 functions.
8959 (ppc64_linux_gregset, ppc32_linux_gregset): Define.
8960 (ppc_linux_init_abi): Register ppc_linux_regset_from_core_section.
8961 (_initialize_ppc_linux_tdep): Do not register
8962 ppc_linux_regset_core_fns.
8963 (ppc_linux_regset_from_core_section): Replace
8964 fetch_core_registers.
8965 (ppc_linux_regset_core_fns): Delete.
8966 * ppc-linux-nat.c: (right_fill_reg): New function.
8967 (supply_gregset): Update call to ppc_linux_supply_gregset.
8968 (fill_gregset): Clear the register set, use right_fill_reg.
8969 (supply_fpregset): Update call to ppc_linux_supply_fpregset.
8970 (fill_fpregset): Use right_fill_reg, correctly compute FP offsets.
8971
8972 * rs6000-tdep.c (rs6000_register_virtual_type): Make registers
8973 unsigned.
8974
8975 2004-03-15 Andrew Cagney <cagney@redhat.com>
8976
8977 * gdbarch.sh (gdbarch_data_pre_init_fytpe)
8978 (gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
8979 (gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
8980 and register_gdbarch_data.
8981 (deprecated_set_gdbarch_data): Rename set_gdbarch_data.
8982 (struct gdbarch_data): Replace "init" by "pre_init" and
8983 "post_init".
8984 * gdbarch.h, gdbarch.c: Re-generate.
8985 * dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
8986 with"obstack", use OBSTACK_ZALLOC.
8987 (dwarf2_frame_ops): Delete.
8988 (dwarf2_frame_set_init_reg): Use gdbarch_data.
8989 (dwarf2_frame_init_reg): Use gdbarch_data.
8990 (_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
8991 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets)
8992 (_initialize_svr4_solib): Update.
8993 * user-regs.c (_initialize_user_regs): Update.
8994 * reggroups.c (_initialize_reggroup): Update.
8995 * regcache.c (_initialize_regcache): Update.
8996 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
8997 * libunwind-frame.c (_initialize_libunwind_frame): Update.
8998 * gnu-v3-abi.c (init_gnuv3_ops): Update.
8999 * frame-unwind.c (_initialize_frame_unwind): Update.
9000 * frame-base.c (_initialize_frame_base): Update.
9001 * user-regs.c (user_reg_add): Update.
9002 * reggroups.c (reggroup_add): Update.
9003 * mips-linux-tdep.c (set_mips_linux_register_addr): Update.
9004 * libunwind-frame.c (libunwind_frame_set_descr): Update.
9005 * frame-unwind.c (frame_unwind_append_sniffer): Update.
9006 * frame-base.c (frame_base_table): Update.
9007 * remote.c (_initialize_remote): Update.
9008 * gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
9009
9010 2004-03-15 Andrew Cagney <cagney@redhat.com>
9011
9012 * cris-tdep.c (bfd_lookup_symbol): Delete unused function.
9013
9014 2004-03-15 Kevin Buettner <kevinb@redhat.com>
9015
9016 * Makefile.in (frv-linux-tdep.o): Add dependencies.
9017 * frv-linux-tdep.c: New file.
9018 * frv-tdep.c (struct gdbarch_tdep): Add new field
9019 ``sigcontext_reg_addr''.
9020 (frv_set_sigcontext_reg_addr, frv_sigtramp,frame_cache)
9021 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
9022 (frv_sigramp_frame_sniffer): New functions.
9023 (frv_sigtramp_frame_unwind): New static global.
9024 (frv_gdbarch_init): Hook in ABI-specific overrides. Hook up frame
9025 sniffers.
9026 * frv-tdep.h (frv_set_sigcontext_reg_addr): New function.
9027 * config/frv/frv.mt (TDEPFILES): Add frv-linux-tdep.o.
9028
9029 2004-03-15 Kevin Buettner <kevinb@redhat.com>
9030
9031 * frv-tdep.c (frv_analyze_prologue): Terminate prologue scan,
9032 but not via a call to error(), when unable to read memory.
9033
9034 2004-03-15 Kevin Buettner <kevinb@redhat.com>
9035
9036 * frv-tdep.c (frv_call_dummy_words): Delete.
9037 (frv_frame_unwind_cache): Delete unused variable, ``prev_sp''.
9038
9039 2004-03-15 Andrew Cagney <cagney@redhat.com>
9040
9041 * infrun.c (handle_step_into_function, step_over_function): Only
9042 update and use STEP_FRAME_ID when the system is using legacy
9043 frames. Update comments.
9044
9045 2004-03-14 Mark Kettenis <kettenis@gnu.org>
9046
9047 * amd64-linux-tdep.h: Remove file.
9048 * amd64-linux-tdep.c: Don't include "inferior.h" and
9049 "amd64-linux-tdep.h". Include "frame.h" and "solib-svr4.h".
9050 (USER_R15, USER_R14, USER_R13, USER_R12, USER_RBP, USER_RBX)
9051 (USER_R11, USER_R10, USER_R9, USER_R8, USER_RAX, USER_RCX)
9052 (USER_RDX, USER_RSI, USER_RDI, USER_RIP, USER_CS, USER_EFLAGS)
9053 (USER_RSP, USER_SS, USER_DS, USER_ES, USER_FS, USER_GS): Remove
9054 macros.
9055 (user_to_gdb_regmap): Remove variable.
9056 (amd64_linux_gregset_reg_offset): New variable.
9057 (amd64_core_fns): Remove variable.
9058 (fetch_core_registers): Remove function.
9059 (amd64_linux_supply_gregset, amd64_linux_fill_gregset): Remove
9060 functions.
9061 (_initialize_amd64_linux_tdep): Don't set add_core_fns.
9062 * amd64-linux-nat.c: Don't include "amd64-linux-tdep.h".
9063 * Makefile.in (amd64_linux_tdep_h): Remove.
9064 (amd64-linux-nat.o): Update dependencies.
9065 (amd64-linux-tdep.o): Update dependencies.
9066
9067 * amd64-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
9068 (fetch_regs, fetch_fpregs, store_regs, store_fpregs): Remove
9069 functions.
9070 (fetch_inferior_registers, store_inferior_registers): Rewrite.
9071
9072 * amd64-tdep.h (amd64_fill_fxsave): Remove prototype.
9073 * amd64-tdep.c (amd64_fill_fxsave): Remove function.
9074
9075 2004-03-14 Daniel Jacobowitz <drow@mvista.com>
9076
9077 * dwarf2read.c (read_structure_type): Rename from
9078 read_structure_scope. Don't create a symbol or call process_die.
9079 Return immediately if die->type is set. Call read_type_die before
9080 dwarf2_add_member_fn.
9081 (process_structure_scope): New function.
9082 (read_enumeration_type, process_enumeration_scope): New functions,
9083 broken out from read_enumeration. Don't create the enumeration
9084 type if it has already been created.
9085 (read_enumeration): Removed.
9086 (process_die): Call read_structure_type, process_structure_scope,
9087 read_enumeration_type, and process_enumeration_scope. Just call
9088 new_symbol for base and subrange types. Add a comment about other
9089 type dies.
9090 (read_type_die): Call read_enumeration_type.
9091 (add_partial_structure, new_symbol): Update comments.
9092
9093 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
9094
9095 * m68hc11-tdep.c (m68hc11_register_name): Get soft reg information.
9096
9097 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
9098
9099 * tui/tui-win.h (tui_get_cmd_list): Declare.
9100 * tui/tui-win.c (tui_command): New function.
9101 (tui_get_cmd_list): New function.
9102 (_initialize_tui_win): Moved initialization of tui command in
9103 tui_get_cmd_list.
9104
9105 * tui/tui-data.c (init_content_element): Setup new data members.
9106 (init_win_info): Likewise.
9107 (free_content_elements): Free it.
9108 * tui/tui-data.h (struct tui_data_element): Store the register
9109 content to print.
9110 (struct tui_data_info): Keep the current register group.
9111
9112 * tui/tui-layout.c (tui_set_layout): Update call to tui_show_registers.
9113
9114 * tui/tui-regs.h (tui_show_registers): Update prototype.
9115 (tui_toggle_float_regs, tui_calculate_regs_column_count): Remove.
9116 (tui_resize_all): No need to calculate anything for register window.
9117 * tui/tui-regs.c (tui_calculate_regs_column_count): Remove.
9118 (tui_set_register_element, tui_set_general_regs_content): Remove.
9119 (tui_set_special_regs_content): Remove.
9120 (tui_set_general_and_special_regs_content): Remove.
9121 (tui_set_float_regs_content): Remove.
9122 (tui_reg_value_has_changed, tui_get_register_raw_value): Remove.
9123 (tui_set_regs_content): Remove.
9124 (tui_toggle_float_regs, _tui_toggle_float_regs_command): Remove.
9125 (tui_v_show_registers_command_support): Remove.
9126 (tui_show_registers): Use a reggroup to specify the registers to show.
9127 (tui_show_register_group): New function.
9128 (tui_display_registers_from): Compute the layout of register window
9129 and refresh with new API; be sure to delete old register windows.
9130 (tui_check_register_values): Update to use tui_get_register and
9131 tui_display_data.
9132 (tui_display_register): Just refresh the register window part.
9133 (tui_register_format): Format registers and save in tui_data_element.
9134 (tui_get_register): New to combine tui_reg_value_has_changed and
9135 tui_get_register_raw_value; fix to use the new gdb API.
9136 (tui_show_float_command): Renamed tui_reg_float_command.
9137 (tui_show_general_command): Renamed tui_reg_general_command.
9138 (tui_show_special_command): Renamed tui_reg_system_command.
9139 (_initialize_tui_regs): Remove unused commands.
9140
9141 2004-03-13 Mark Kettenis <kettenis@gnu.org>
9142
9143 * NEWS (New native configurations): Mention OpenBSD/amd64.
9144
9145 * config/i386/nm-fbsd.h: Include "config/nm-bsd.h".
9146 (PTRACE_ARG3_TYPE, FETCH_INFERIOR_REGISTERS, ATTACH_DETACH):
9147 Remove defines.
9148 * config/i386/nm-fbsd64.h: Likewise.
9149 * config/i386/nm-obsd.h: Likewise.
9150 * config/sparc/nm-fbsd.h: Likewise. Update copyright year.
9151 * config/alpha/nm-fbsd.h: Likewise. Update copyright year.
9152
9153 2004-03-12 Kevin Buettner <kevinb@redhat.com>
9154
9155 * frv-tdep.c (set_variant_scratch_registers): New function.
9156 * frv-tdep.h (scr0_regnum, scr1_regnum, scr2_regnum, scr3_regnum):
9157 New constants.
9158
9159 From Richard Sandiford <rsandifo@redhat.com>:
9160 * frv-tdep.c (frv_gdbarch_init): Add FR450 support.
9161
9162 2004-03-12 Kevin Buettner <kevinb@redhat.com>
9163
9164 * frv-tdep.c, frv-tdep.h (first_gpr_regnum, sp_regnum, fp_regnum)
9165 (struct_return_regnum, last_gpr_regnum, first_fpr_regnum)
9166 (last_fpr_regnum, pc_regnum, first_spr_regnum, psr_regnum, ccr_regnum)
9167 (cccr_regnum, fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum)
9168 (tbr_regnum, brr_regnum, dbar0_regnum, dbar1_regnum, dbar2_regnum)
9169 (dbar3_regnum, lr_regnum, lcr_regnum, iacc0h_regnum, iacc0l_regnum)
9170 (last_spr_regnum, frv_num_regs, first_pseudo_regnum, iacc0_regnum)
9171 (last_pseudo_regnum, frv_num_pseudo_regs): Move constant (enum)
9172 definitions from frv-tdep.c to frv-tdep.h.
9173
9174 2004-03-12 Kevin Buettner <kevinb@redhat.com>
9175
9176 Add shared library support for FR-V FDPIC ABI:
9177 * Makefile.in (solib-frv.o): Add dependencies.
9178 * frv-tdep.c (find_func_descr, frv_convert_from_func_ptr_addr):
9179 New functions.
9180 (frv_push_dummy_call): Add support for FDPIC ABI.
9181 (frv_gdbarch_init): Call set_gdbarch_convert_from_func_ptr_addr()
9182 for FDPIC ABI.
9183 * frv-tdep.h (frv_fdpic_find_global_pointer): Declare.
9184 (frv_fdpic_find_canonical_descriptor): Declare.
9185 * solib-frv.c: New file.
9186 * config/frv/frv.mt (TDEPFILES): Add solib.o and solib-frv.o.
9187 * config/frv/tm-frv.h (solib.h): Include.
9188
9189 2004-03-12 Kevin Buettner <kevinb@redhat.com>
9190
9191 * Makefile.in (elf_frv_h, frv_tdep_h): Define.
9192 (frv-tdep.o): Update dependencies.
9193 * frv-tdep.h: New file.
9194 * frv-tdep.c (elf-bfd.h, elf/frv.h, osabi.h, frv-tdep.h): Include.
9195 (fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum): New
9196 constants.
9197 (struct gdbarch_tdep): Add new member ``frv_abi''.
9198 (frv_abi, frv_fdpic_loadmap_addresses, set_variant_abi_fdpic): New
9199 functions.
9200 (new_variant): Set ``frv_abi'' field.
9201 (gdb_arch_init): Detect FDPIC executables.
9202
9203 2004-03-12 Mark Kettenis <kettenis@gnu.org>
9204
9205 * solib-svr4.h: Change SOLIB_SVR4 wrapper into SOLIB_SVR4_H
9206 wrapper.
9207
9208 2004-03-11 Andrew Cagney <cagney@redhat.com>
9209
9210 * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper.
9211
9212 2004-03-11 Kevin Buettner <kevinb@redhat.com>
9213
9214 * solist.h (master_so_list): New function.
9215 * solib.c (master_so_list): Likewise.
9216 * solib-svr4.c (enable_break): Iterate over so_list entries
9217 obtained from master list instead of entries obtained directly
9218 via svr4_current_sos().
9219
9220 2004-03-10 Ben Elliston <bje@gnu.org>
9221
9222 * MAINTAINERS: Update my mail address.
9223
9224 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com>
9225
9226 * remote-m32r-sdi.c: Support hardware watchpoint.
9227
9228 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
9229
9230 * user-regs.c: Update copyright years.
9231 (struct user_regs): Rename to gdb_user_regs.
9232 (append_user_reg, builtin_user_regs, user_regs_init)
9233 (user_reg_add, user_reg_map_name_to_regnum)
9234 (usernum_to_user_reg): Update.
9235
9236 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
9237
9238 * dwarf2read.c (skip_leb128, peek_die_abbrev, skip_one_die)
9239 (skip_children): New functions.
9240 (locate_pdi_sibling): Call skip_children.
9241
9242 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
9243
9244 * arm-tdep.c (arm_use_struct_convention): Look through typedefs.
9245 * gdbtypes.c (check_typedef): Update comments.
9246
9247 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
9248
9249 * dwarf2read.c (struct comp_unit_head): Remove dwarf2_abbrevs array.
9250 (struct dwarf2_cu): Add abbrev_obstack and dwarf2_abbrevs
9251 pointer. Update comment about comp_unit_head.
9252 (struct abbrev_info): Shorten two int flags.
9253 (dwarf_alloc_abbrev): Take a CU argument.
9254 (dwarf2_build_psymtabs_hard): Call dwarf2_free_abbrev_table
9255 each time through the loop. Update cleanup argument.
9256 (psymtab_to_symtab_1): Update cleanup call.
9257 (dwarf2_read_abbrevs, dwarf2_alloc_abbrev): Allocate on the
9258 abbrev_obstack.
9259 (dwarf2_free_abbrev_table): Renamed from dwarf2_empty_abbrev_table.
9260 Just call obstack_free and clear the pointer.
9261
9262 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
9263
9264 * infrun.c (handle_inferior_event): Remove short-circuit code for
9265 events in a different thread.
9266
9267 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
9268
9269 * target.c (debug_to_xfer_memory): If targetdebug is 1, don't
9270 print the whole transfer.
9271 (initialize_targets): Update description of "set debug target".
9272
9273 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
9274
9275 * arm-tdep.c (thumb_get_next_pc): Handle Thumb BLX.
9276
9277 2004-03-08 Nathan J. Williams <nathanw@wasabisystems.com>
9278
9279 * MAINTAINERS (write after approval): Add myself.
9280
9281 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
9282
9283 * sh-tdep.c (sh_print_registers_info): Use for loop.
9284 Don't skip multiple registers when a float register is encountered.
9285
9286 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
9287
9288 Fix PR tdep/1291.
9289 * sh-tdep.c (sh_analyze_prologue): Align PC relative addressing
9290 to official SH documentation.
9291
9292 2004-03-07 Andrew Cagney <cagney@redhat.com>
9293
9294 * ppc-linux-nat.c (ppc_ptrace_cannot_fetch_store_register): Delete
9295 unused function.
9296
9297 2004-03-07 Daniel Jacobowitz <drow@mvista.com>
9298
9299 * arm-tdep.c (thumb_get_next_pc): Handle BX.
9300 (arm_get_next_pc): Handle BX and BLX.
9301
9302 2004-03-07 Andrew Cagney <cagney@redhat.com>
9303
9304 * hppa-tdep.c: Replace DEPRECATED_FP_REGNUM with HPPA_FP_REGNUM,
9305 FP0_REGNUM with HPPA_FP0_REGNUM, and SP_REGNUM with
9306 HPPA_SP_REGNUM.
9307 (hppa_register_raw_size, hppa_register_byte, hppa_read_fp)
9308 (hppa_target_read_fp): Delete.
9309 (hppa_gdbarch_init): Do not set deprecated register_raw_size,
9310 register_virtual_size, max_register_raw_size,
9311 max_register_virtual_size, register_byte, register_size,
9312 target_read_fp, fp_regnum, and register_bytes. Set register_type
9313 instead of register_virtual_type.
9314 (hppa32_register_type, hppa64_register_type): Replace
9315 hppa32_register_virtual_type and hppa64_register_virtual_type.
9316 * config/pa/tm-hppa.h (HPPA_FP0_REGNUM, HPPA_SP_REGNUM)
9317 (HPPA_FP_REGNUM): Define.
9318
9319 * hppa-tdep.c (hppa_gdbarch_init): Add missing "break".
9320
9321 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO)
9322 (pa_do_registers_info): Delete.
9323 * hppa-tdep.c (pa_do_registers_info, pa_do_strcat_registers_info)
9324 (pa_print_registers, pa_print_fp_reg, pa_strcat_registers)
9325 (pa_strcat_fp_reg, pa_register_look_aside): Delete.
9326
9327 * infcall.c (legacy_push_dummy_code): Delete #ifdef
9328 GDB_TARGET_IS_HPPA code.
9329 * config/pa/tm-hppa.h (DEPRECATED_FIX_CALL_DUMMY)
9330 (hppa_fix_call_dummy, DEPRECATED_CALL_DUMMY_HAS_COMPLETED)
9331 (DEPRECATED_DUMMY_WRITE_SP, CALL_DUMMY): Delete.
9332 * config/pa/tm-hppa64.h (CALL_DUMMY): Delete.
9333 * hppa-tdep.c (hppa_frame_chain, hppa_frame_chain_valid)
9334 (hppa_push_dummy_frame, hppa_pop_frame, hppa_push_arguments)
9335 (hppa_fix_call_dummy, hppa64_stack_align, hppa_frame_saved_pc)
9336 (hppa_init_extra_frame_info, hppa_saved_pc_after_call)
9337 (hppa64_call_dummy_breakpoint_offset, hppa_frame_init_saved_regs)
9338 (hppa_frameless_function_invocation, hppa64_store_return_value)
9339 (hppa_store_struct_return, hppa64_extract_return_value)
9340 (hppa64_use_struct_convention, hppa_frame_find_saved_regs)
9341 (hppa32_call_dummy_length, hppa64_call_dummy_length)
9342 (find_dummy_frame_regs, FUNC_LDIL_OFFSET, FUNC_LDO_OFFSET)
9343 (find_proc_framesize, deposit_21, restore_pc_queue)
9344 (find_return_regnum, pc_in_interrupt_handler, deposit_14)
9345 (rp_saved, pc_in_linker_stub): Delete.
9346
9347 Unconditionally enable 64-bit frame and ABI code.
9348 * hppa-tdep.c (hppa_gdbarch_init): Do not set deprecated
9349 call_dummy_breakpoint_offset, call_dummy_length, stack_align,
9350 push_dummy_frame, fix_call_dummy, push_arguments,
9351 call_dummy_location, extract_return_value, use_struct_convention,
9352 store_return_value, store_struct_return, saved_pc_after_call,
9353 init_frame_pc, frame_init_saved_regs, init_extra_frame_info,
9354 frame_chain, frame_chain_valid, frameless_function_invocation,
9355 frame_saved_pc, and pop_frame.
9356
9357 * hppa-tdep.c: Replace PC_REGNUM with PCOQ_HEAD_REGNUM.
9358 (hppa64_return_value, hppa64_push_dummy_call): Rewrite.
9359 (hppa_gdbarch_init): Do not set PC_REGNUM.
9360
9361 2004-03-06 Mark Kettenis <kettenis@gnu.org>
9362
9363 * config/alpha/tm-fbsd.h: Remove file.
9364 * config/alpha/fbsd.mt: Tweak comment.
9365 (TM_FILE): Set to tm-alpha.h.
9366
9367 2004-03-05 Andrew Cagney <cagney@redhat.com>
9368
9369 * infrun.c (step_over_function): When non-legacy code, and no
9370 step_frame_id, use the unwinder to get the caller's frame ID.
9371
9372 2004-03-05 Mark Kettenis <kettenis@gnu.org>
9373
9374 * i386bsd-tdep.c (_initialize_i386bsd_tdep): Register
9375 i386bsd_core_osabi_sniffer for bfd_arch_i386 instead of
9376 bfd_arch_unknown. Adjust comment.
9377
9378 * i386-nat.c: Fix typo in comment. Re-introduce paranoiac.
9379 * i386obsd-tdep.c: Correct spelling in comment.
9380 * i386nbsd-tdep.c: Correct spelling in comment.
9381 * sparc-tdep.c: Correct spelling in comments.
9382
9383 2004-03-05 David Carlton <carlton@kealia.com>
9384
9385 * cp-namespace.c (cp_lookup_transparent_type_loop): Fix recursion
9386 bug.
9387
9388 2004-03-05 Mark Kettenis <kettenis@gnu.org>
9389
9390 * sparc-tdep.c: Fix typo in comment.
9391
9392 2004-03-04 J. Brobecker <brobecker@gnat.com>
9393
9394 * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
9395
9396 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
9397
9398 * dwarf2read.c: Add comment describing memory lifetimes.
9399 (struct dwarf2_pinfo): Update comment.
9400 (dwarf2_add_field, dwarf2_add_member_fn, read_structure_scope)
9401 (read_enumeration, new_symbol): Don't use obsavestring.
9402
9403 2004-03-04 Mark Kettenis <kettenis@gnu.org>
9404
9405 * amd64-linux-nat.c (fill_fpregset): Call amd64_colletc_fxsave
9406 instead of amd64_fill_fxsave.
9407 * amd64bsd-nat.c (store_inferior_registers): Likewise.
9408 * amd64fbsd-nat.c (fill_fpregset): Likewise.
9409
9410 * sparc-tdep.c (sparc_frame_cache): Don't bail out if %fp is zero.
9411 Reorganize code a bit.
9412
9413 2004-03-04 Orjan Friberg <orjanf@axis.com>
9414
9415 * cris-tdep.c (cris_scan_prologue): Save the frame pointer's offset
9416 when the frame pointer is pushed. Don't set the frame pointer's
9417 address on the stack unless it's actually located there.
9418 Set the SRP's address on the stack correctly when the PC is still in
9419 the prologue.
9420 (cris_return_value): New function.
9421 (cris_gdbarch_init): Clear deprecated store_return_value,
9422 extract_return_value.
9423
9424 2004-03-02 Jim Blandy <jimb@redhat.com>
9425
9426 * stabsread.c (reg_value_complaint): The maximum register number
9427 is one less than the number of registers.
9428
9429 2004-03-02 Andrew Cagney <cagney@redhat.com>
9430
9431 * i386-tdep.h (enum i386_regnum): Add I386_DS_REGNUM,
9432 I386_ES_REGNUM, I386_FS_REGNUM, and I386_GS_REGNUM. Remove
9433 trailing comma and redundant assignment of I386_ST0_REGNUM.
9434 * amd64-nat.c (amd64_collect_native_gregset): Zero-extend the
9435 32-bit segment registers.
9436
9437 2004-03-01 Andrew Cagney <cagney@redhat.com>
9438
9439 * rs6000-tdep.c (rs6000_init_frame_pc_first): Fix compiler error,
9440 use frame_relative_level and get_next_frame.
9441
9442 2004-02-29 Andrew Cagney <cagney@redhat.com>
9443
9444 * rs6000-tdep.c (rs6000_init_frame_pc_first): New function.
9445 (rs6000_gdbarch_init): Set deprecated_init_frame_pc_first.
9446 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST):
9447 Delete macro.
9448
9449 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
9450
9451 * inflow.c (terminal_inferior): Don't give up the terminal if we
9452 previously couldn't get the inferior's terminal state.
9453
9454 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
9455
9456 * regcache.c (read_pc_pid): Restore inferior_ptid after reading
9457 PC_REGNUM.
9458
9459 2004-02-28 Andrew Cagney <cagney@redhat.com>
9460
9461 * NEWS: Refer to GDB 6.1.
9462 * README: Refer to GDB 6.1.
9463 * PROBLEMS: Refer to GDB 6.1.
9464
9465 2004-02-28 Daniel Jacobowitz <drow@mvista.com>
9466
9467 * thread-db.c (disable_thread_signals): Remove unused function.
9468
9469 2004-02-28 Mark Kettenis <kettenis@gnu.org>
9470
9471 * amd64-nat.c: Include "gdb_string.h".
9472 (amd64_collect_native_gregset): Zero-extend the 32-bit
9473 general-purpose registers and %eip.
9474
9475 * amd64-tdep.h: (amd64_collect_fxsave): New prototype.
9476 * amd64-tdep.c (amd64_collect_fxsave): New function.
9477 (amd64_fill_fxsave): Simply call amd64_collect_fxsave.
9478
9479 * i387-tdep.h: Update copyright year.
9480 (i387_collect_fxsave): New prototype.
9481 * i387-tdep.c: Update copyright year.
9482 (i387_collect_fxsave): New function containing most of the code
9483 from i387_fill_fxsave.
9484 (i387_fill_fxsave): Call i387_collect_fxsave.
9485
9486 2004-02-28 Andrew Cagney <cagney@redhat.com>
9487
9488 * amd64-linux-nat.c (ps_get_thread_area): When architecture is
9489 i386 use PTRACE_GET_THREAD_AREA. Suggested by Roland McGrath.
9490
9491 2004-02-28 Mark Kettenis <kettenis@gnu.org>
9492
9493 * amd64-tdep.c (amd64_frame_cache): Fix comment.
9494
9495 2004-02-28 Andrew Cagney <cagney@redhat.com>
9496
9497 * utils.c: Use "", instead of <>, to include readline.
9498 tui/tui-win.c, tui/tui.c, tui/tui-hooks.c: Ditto.
9499 * tracepoint.c, top.c, symmisc.c, symfile.c: Ditto.
9500 * source.c, solib.c, exec.c, event-top.c: Ditto.
9501 * corelow.c, completer.c, cli/cli-setshow.c: Ditto.
9502 * cli/cli-dump.c, cli/cli-cmds.c: Ditto.
9503 * Makefile.in: Update all dependencies.
9504 (readline_tilde_h, readline_history_h): Define.
9505 (readline_headers): Delete.
9506
9507 2004-02-28 Mark Kettenis <kettenis@gnu.org>
9508
9509 * config/djgpp/fnchange.lst: Rename "config/i386/nm-linux64.h" to
9510 "config/i386/nm-lx64.h" and "config/i386/tm-linux64.h" to
9511 "config/i386/tm-lx64.h".
9512
9513 * config/djgpp/fnchange.lst: Rename "amd64-linux-tdep.c" to
9514 "amd64-ltdep.c" and "amd64-linux-nat.c" to "amd64-lnat.c". Remove
9515 rules for "x86-64-linux-tdep.c" and "x86-64-linux-nat.c".
9516
9517 2004-02-28 Andrew Cagney <cagney@redhat.com>
9518
9519 * dwarf2-frame.h (struct gdbarch): Add opaque declaration.
9520
9521 * breakpoint.c (_initialize_breakpoint): Use
9522 "add_setshow_auto_boolean_cmd. Better word-wrap help messages.
9523 Add help to show command.
9524
9525 2004-02-28 Mark Kettenis <kettenis@gnu.org>
9526
9527 * i386-nat.c: Reformat to be closer to coding standards.
9528 (i386_handle_nonaligned_watchpoint): Rename local variable `rv' to
9529 `retval'. Make variables `align' and `size' local to while-loop.
9530 (i386_stopped_data_address): Rename local variable `ret' to `addr'.
9531 (_initialize_i386_nat): New prototype.
9532
9533 * tui/tui.c: Include <readline/readline.h> instead of
9534 "readline/readline.h". Include it after <term.h> and
9535 "gdb_curses.h".
9536
9537 2004-02-27 Andrew Cagney <cagney@redhat.com>
9538
9539 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always use
9540 the new frame unwind code.
9541 (hppa_frame_cache): Use PCOQ_HEAD_REGNUM instead of PC_REGNUM.
9542 (hppa_frame_prev_register): Compute PCOQ_TAIL_REGNUM from
9543 PCOQ_HEAD_REGNUM.
9544
9545 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always
9546 "return_value" and "push_dummy_call".
9547 (hppa32_use_struct_convention): Delete unused function.
9548 (hppa32_store_return_value): Delete unused function.
9549 (hppa32_extract_return_value): Delete unused function.
9550 (hppa32_stack_align): Delete function.
9551
9552 2004-02-27 Eli Zaretskii <eliz@elta.co.il>
9553
9554 * coffread.c (enter_linenos): Don't let rawptr reference memory
9555 outside linetab[]'s limits.
9556
9557 2004-02-27 Andrew Cagney <cagney@redhat.com>
9558
9559 * hppa-tdep.c (hppa32_push_dummy_call): Fix code reserving
9560 inferior stack space - the stack needs to grow upwards.
9561 (hppa32_frame_align): New function.
9562 (hppa64_frame_align): Replace hppa_frame_align.
9563 (hppa_gdbarch_init): Update.
9564
9565 2004-02-26 Orjan Friberg <orjanf@axis.com>
9566
9567 * cris-tdep.c (frame_unwind.h, frame-base.h, trad-frame.h)
9568 (dwarf2-frame.h): Include.
9569 (enum cris_regnums): New enum CRIS_FP_REGNUM.
9570 Remove static variables related to ABI setting.
9571 (struct gdbarch_tdep): Remove cris_abi member.
9572 (struct frame_extra_info): Remove.
9573 (cris_unwind_cache, stack_item): New structs.
9574 (cris_frame_unwind, cris_frame_base): New variables.
9575 (push_stack_item, pop_stack_item)
9576 (cris_frame_unwind_cache, cris_frame_this_id)
9577 (cris_frame_prev_register, cris_unwind_dummy_id, cris_frame_align)
9578 (cris_push_dummy_code, cris_push_dummy_call, cris_frame_sniffer)
9579 (cris_frame_base_address, cris_scan_prologue, cris_unwind_pc)
9580 (cris_unwind_sp, cris_store_return_value, cris_extract_return_value)
9581 (cris_reg_struct_has_addr): New functions.
9582 (cris_examine, cris_frame_init_saved_regs, cris_frame_chain)
9583 (cris_frame_saved_pc, cris_saved_pc_after_call,
9584 (cris_store_struct_return, cris_frameless_function_invocation)
9585 (cris_pop_frame, cris_skip_prologue_main)
9586 (cris_abi_original_store_return_value)
9587 (cris_abi_v2_store_return_value)
9588 (cris_abi_original_extract_return_value)
9589 (cris_abi_v2_extract_return_value)
9590 (cris_abi_original_reg_struct_has_addr)
9591 (cris_abi_v2_reg_struct_has_addr)
9592 (cris_abi_original_push_arguments, cris_abi_v2_push_arguments)
9593 (cris_push_return_address, cris_abi_update): Remove.
9594 (_initialize_cris_tdep): Remove ABI command.
9595 (cris_dump_tdep): Ditto.
9596 (cris_gdbarch_init): Remove ABI command.
9597 Set store_return_value, extract_return_value, push_dummy_code,
9598 push_dummy_call, frame_align, unwind_pc, unwind_sp, unwind_dummy_id,
9599 frame_unwind_append_sniffer, frame_base_set_default.
9600 Clear deprecated init_frame_pc, push_arguments, store_return_value,
9601 extract_return_value, fp_regnum, pc_in_call_dummy, call_dummy_words,
9602 sizeof_call_dummy_words, get_saved_register, push_return_address,
9603 pop_frame, store_struct_return, frame_init_saved_regs,
9604 init_extra_frame_info, frameless_function_invocation, frame_chain,
9605 frame_saved_pc, saved_pc_after_call, save_dummy_frame_tos,
9606 dummy_write_sp.
9607
9608 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
9609
9610 * valprint.h (print_hex_chars, print_char_chars): New prototypes.
9611 * valprint.c (print_hex_chars): Change from static to external.
9612 (print_char_chars): New function.
9613 * printcmd.c (print_scalar_formatted): For integer and enum types
9614 that are longer than LONGEST, perform processing via appropriate
9615 print_*_chars routines.
9616
9617 2004-02-26 Andrew Cagney <cagney@redhat.com>
9618
9619 * Makefile.in: Update dependencies.
9620 Changes from Ulrich Weigand,
9621 * s390-tdep.c: Include "dwarf2-frame.h".
9622 (s390_dwarf2_frame_init_reg): New function.
9623 (s390_gdbarch_init): Install dwarf2_frame_sniffer and
9624 dwarf2_frame_base_sniffer. Call dwarf2_frame_set_init_reg.
9625
9626 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
9627
9628 * breakpoint.c (pending_break_support): New setting variable.
9629 (break_command_1): Account for pending_break_support setting
9630 when creating pending breakpoints.
9631 (set_breakpoint_cmd, show_breakpoint_cmd): New functions.
9632 (_initialize_breakpoint): Add "set breakpoint pending" and
9633 "show breakpoint pending" commands.
9634
9635 2004-02-26 Andrew Cagney <cagney@redhat.com>
9636
9637 Fix PR i18n/1570.
9638 * charset.c (backslashable, backslashed, represented): Remove 'e'
9639 from list of escaped characters, not part of ISO-C.
9640
9641 2004-02-25 J. Brobecker <brobecker@gnat.com>
9642
9643 From Peter Schauer <schauer@pdf.de>:
9644 * tui/tui.c: Move system header includes after local includes.
9645 Fixes a build failure on solaris systems.
9646
9647 2004-02-25 J. Brobecker <brobecker@gnat.com>
9648
9649 * configure.in: Refine the previous change.
9650 * configure: Regenerate.
9651
9652 2004-02-25 Mark Kettenis <kettenis@gnu.org>
9653
9654 * amd64-tdep.h: Renamed from x86-64-tdep.h.
9655 * amd64-tdep.c: Renamed from x86-64-tdep.c. Include
9656 "amd64-tdep.h" instead of "x86-64-tdep.h".
9657 * amd64-nat.c: Include "amd64-tdep.h" instead of "x86-64-tdep.h".
9658 * amd64-linux-tdep.h: Renamed from x86-64-linux.h.
9659 * amd64-linux-tdep.c: Renamed from x86-64-linux-tdep.c. Include
9660 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
9661 and "x86-64-tdep.c".
9662 * amd64-linux-nat.c: Renamed from x86-64-linux-nat.c. Include
9663 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
9664 and "x86-64-tdep.c".
9665 * amd64bsd-nat.c: Update copyright year.
9666 Include "amd64-tdep.h" instead of "x86-64-tdep.h".
9667 * amd64fbsd-tdep.c: Include "amd64-tdep.h" instead of
9668 "x86-64-tdep.h".
9669 * amd64fbsd-nat.c: Include "amd64-tdep.h" instead of
9670 "x86-64-tdep.h".
9671 * amd64nbsd-tdep.c: Include "amd64-tdep.h" instead of
9672 "x86-64-tdep.h".
9673 * amd64nbsd-nat.c: Include "amd64-tdep.h" instead of
9674 "x86-64-tdep.h".
9675 * amd64obsd-tdep.c: Include "amd64-tdep.h" instead of
9676 "x86-64-tdep.h".
9677 * amd64obsd-nat.c: Include "amd64-tdep.h" instead of
9678 "x86-64-tdep.h".
9679 * configure.host: (x86_64-*-linux*): Set gdb_target to linux64.
9680 * configure.tgt (x86_64-*-linux*): Set gdb_target to linux64.
9681 * Makefile.in (amd64_linux_tdep_h): Renamed from
9682 x86_64_linux_tdep_h.
9683 (amd64_tdep_h): Renamed from x86_64_tdep_h.
9684 (amd64bsd-nat.o, amd64fbsd-nat.o, amd64fbsd-tdep.o, amd64-nat.o)
9685 (amd64nbsd-nat.o, amd64nbsd-tdep.o, amd64obsd-nat.o)
9686 (amd64obsd-tdep.o): Update dependencies.
9687 (amd64-tdep.o, amd64-linux-nat.o, amd64-linux-tdep.o): New
9688 dependencies.
9689 (x86-64-linux-nat.o, x86-64-linux-tdep.o, x86-64-tdep.o): Remove
9690 dependencies.
9691 (ALLDEPFILES): Add amd64-tdep.c, amd64obsd-nat.c, amd64obsd-nat.c,
9692 amd64-linux-nat.c amd64-linux-tdep.c.
9693 * config/i386/tm-linux64.h: Renamed from tm-x86-64linux.h
9694 * config/i386/nm-linux64.h: Renamed from nm-x86-64linux.h.
9695 * config/i386/linux64.mt: Renamed from x86-64linux.mt.
9696 (TDEPFILES): Replace x86-64-tdep.o and x86-64-linux-tdep.o with
9697 amd64-tdep.o and amd64-linux-tdep.o.
9698 (TM_FILE): Set to tm-linux64.h.
9699 * config/i386/linux64.mh: Renamed from x86-64linux.mh.
9700 (NAT_FILE): Set to nm-linux64.h.
9701 (NATDEPFILES): Replace x86-64-linux-nat.o with amd64-linux-nat.o.
9702 * config/i386/fbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9703 amd64-tdep.o.
9704 * config/i386/nbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9705 amd64-tdep.o.
9706 * config/i386/obsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9707 amd64-tdep.o.
9708
9709 2004-02-25 Roland McGrath <roland@redhat.com>
9710
9711 * remote.c (remote_protocol_qPart_auxv): New variable.
9712 (init_all_packet_configs): Initialize it.
9713 (set_remote_protocol_qPart_auxv_packet_cmd): New function.
9714 (show_remote_protocol_qPart_auxv_packet_cmd): New function.
9715 (show_remote_cmd): Call it.
9716 (_initialize_remote): Initialize commands.
9717 (remote_xfer_partial): If enabled, use qPart:auxv:read:... query to
9718 service TARGET_OBJECT_AUXV requests.
9719
9720 2004-02-25 J. Brobecker <brobecker@gnat.com>
9721
9722 * configure.in: Make sure that the wborder function is available.
9723 Otherwise, search for it in the cur_colr library.
9724 * configure: Regenerate.
9725
9726 2004-02-25 Andrew Cagney <cagney@redhat.com>
9727
9728 * hppa-tdep.c (hppa32_push_dummy_call): Rewrite.
9729
9730 2004-02-25 Mark Kettenis <kettenis@gnu.org>
9731
9732 * config/i386/tm-x86-64linux.h: Tweak comments.
9733
9734 2004-02-25 Richard Sandiford <rsandifo@redhat.com>
9735
9736 * MAINTAINERS: Add self to write-after-approval list.
9737
9738 2004-02-25 Andrew Cagney <cagney@redhat.com>
9739
9740 PR cli/1566. Problem found, and fix suggested by David Allan.
9741 * cli/cli-script.c (execute_control_command): Unconditionally
9742 install a cleanup. Default "ret" to "invalid_control". Use
9743 "break" instead of "return" to escape from the switch.
9744
9745 2004-02-24 J. Brobecker <brobecker@gnat.com>
9746
9747 * tui/tui-disasm.c: %s/lines/asm_lines/g to avoid a collision
9748 with the lines macro defined in term.h on AiX.
9749 * tui/tui-regs.c: %s/label_width/tui_label_width/g, to avoid
9750 a collision with the label_width macro defined in term.h on AiX.
9751
9752 2004-02-23 David Mosberger <davidm@hpl.hp.com>
9753
9754 Committed by Kevin Buettner <kevinb@redhat.com>.
9755
9756 * ia64-tdep.h (ia64_write_pc, ia64_linux_write_pc): Declare.
9757 * ia64-tdep.c (ia64_write_pc): Make it a global function.
9758 (ia64_gdbarch_init): For Linux targets, use ia64_linux_write_pc()
9759 instead of ia64_write_pc().
9760 * ia64-linux-tdep.c (regcache.h): Include.
9761 (ia64_linux_write_pc): New function.
9762
9763 2004-02-23 Roland McGrath <roland@redhat.com>
9764
9765 * auxv.c (info_auxv_command): Fix typos in error messages.
9766
9767 2004-02-23 Mark Kettenis <kettenis@gnu.org>
9768
9769 * x86-64-tdep.h: Tweak comment.
9770 (enum amd64_regnum): New.
9771 (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM)
9772 (X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM)
9773 (X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM)
9774 (X86_64_XMM1_REGNUM): Removed.
9775 (AMD64_NUM_GREGS): Renamed from X86_64_NUM_GREGS.
9776 (amd64_init_abi, amd64_supply_fxsave, amd64_fill_fxsave): Adjust
9777 prototypes for renamed functions.
9778 * x86-64-tdep.c: Fix typo.
9779 (amd64_dwarf_regmap): Use constants from `enum amd64_regnum' for
9780 register numbers.
9781 (amd64_return_value, amd64_push_arguments, amd64_push_dummy_call):
9782 Use constants from `enum amd64_regnum' for register numbers.
9783 (AMD64_NUM_SAVED_REGS): Adjust for renamed macros.
9784 (amd64_analyze_prologue, amd64_frame_cache,
9785 amd64_sigtramp_frame_cache): Use constants from `enum
9786 amd64_regnum' for register numbers.
9787 (amd64_supply_fpregset): Adjust for renamed functions.
9788 (amd64_init_abi): Rename from x86_64_init_abi. Use constants from
9789 `enum amd64_regnum' for register numbers.
9790 (I387_ST0_REGNUM): Use constant from `enum amd64_regnum'.
9791 (amd64_supply_fxsave): Rename from x86_64_supply_fxsave.
9792 (amd64_fill_fxsave): Rename fro x86_64_fill_fxsave.
9793 * x86-64-linux-tdep.c (amd64_linux_supply_gregset)
9794 (amd64_linux_fill_gregset): Adjust for renamed macros.
9795 (fetch_core_registers): Adjust for renamed functions.
9796 (amd64_linux_init_abi): Adjust for renamed functions.
9797 * x86-64-linux-nat.c (supply_gregset, fill_gregset): Adjust for
9798 renamed functions.
9799 * amd64-nat.c: Adjust for renamed macros.
9800 * amd64bsd-nat.c (fetch_inferior_registers)
9801 (store_inferior_registers): Use constants from `enum amd64_regnum'
9802 for register numbers. Adjust for renamed variables.
9803 * amd64fbsd-nat.c (supply_gregset, fill_gregset): Adjust for
9804 renamed variables.
9805 (_initialize_amd64fbsd_nat): Use constants from `enum
9806 amd64_regnum' for register numbers.
9807 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use constants from
9808 `enum amd64_regnum' for register numbers.
9809 (amd64fbsd_init_abi): Adjust for renamed functions.
9810 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Use constants from
9811 `enum amd64_regnum' for register numbers.
9812 (amd64nbsd_init_abi): Adjust for renamed functions.
9813 (_initialize_amd64nbsd_ndep): Adjust for renamed macros.
9814 * amd64obsd-tdep.c (amd64obsd_sigcontext_addr): Use constants from
9815 `enum amd64_regnum' for register numbers.
9816 (amd64obsd_init_abi): Adjust for renamed functions.
9817 (_initialize_amd64obsd_ndep): Adjust for renamed macros.
9818
9819 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9820
9821 * breakpoint.c (print_one_breakpoint): Do not output spaces
9822 after printing <PENDING> for a pending breakpoint.
9823
9824 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9825
9826 * printcmd.c (print_scalar_formatted): Initialize val_long
9827 to remove compiler warning message.
9828
9829 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9830
9831 * defs.h (nquery, yquery): New prototypes.
9832 * breakpoint.c (break_command_1): Use new nquery interface.
9833 * utils.c (defaulted_query, nquery, yquery): New functions.
9834
9835 2004-02-23 Andrew Cagney <cagney@redhat.com>
9836
9837 * hppa-tdep.c (hppa_frame_align): New function.
9838 (hppa32_push_dummy_call): New function.
9839 (hppa64_push_dummy_call): New function.
9840 (hppa_gdbarch_init): Set frame_align and push_dummy_call; keep
9841 disabled.
9842
9843 * infcall.c (legacy_push_dummy_code): Don't call deprecated
9844 FIX_CALL_DUMMY when push_dummy_call is available.
9845 (call_function_by_hand, push_dummy_code): Ditto.
9846
9847 2004-02-22 Andrew Cagney <cagney@redhat.com>
9848
9849 * config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Delete macro.
9850 (DEPRECATED_PC_IN_CALL_DUMMY): Delete macro.
9851 (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete macro.
9852 * hppa-tdep.c (hppa_gdbarch_init): Clear deprecated
9853 use_generic_dummy_frames, set deprecated pc_in_call_dummy, set
9854 call_dummy_location to ON_STACK.
9855
9856 2004-02-22 Mark Kettenis <kettenis@gnu.org>
9857
9858 * x86-64-linux-tdep.c: Tweak comment.
9859 (amd64_linux_supply_gregset): Renamed from
9860 x86_64_linux_supply_gresget.
9861 (amd64_linux_fill_gregset): Renamed from
9862 x86_64_linux_fill_gregset.
9863 (fetch_core_registers): Adjust for renamed functions.
9864 (amd64_core_fns): Renamed from x86_64_core_fns.
9865 (amd64_linux_sigtramp_start): Renamed from
9866 x86_64_linux_sigtramp_start.
9867 (amd64_linux_pc_in_sigtramp): Renamed from
9868 x86_64_linux_pc_in_sigtramp. Adjust for renamed functions.
9869 (AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Renamed from
9870 X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET.
9871 (amd64_linux_sigcontext_addr): Renamed from
9872 x86_64_linux_sigcontext_addr.
9873 (amd64_linux_sc_reg_offset): Renamed from
9874 x86_64_linux_sc_reg_offset.
9875 (amd64_linux_init_abi): Renamed from x86_64_linux_init_abi.
9876 Adjust for renamed functions and variables.
9877 (_initialize_amd64_linux_tdep): Renamed from
9878 _initialize_x86_64_linux_tdep. Adjust for renamed functions and
9879 variables.
9880 * x86-64-linux-tdep.h: Update copyright year. Tweak comment.
9881 Adjust for renamed functions.
9882
9883 * x86-64-linux-nat.c (amd64_linux_gregset64_reg_offset): Rename
9884 from x86_64_linux_gregset64_reg_offset.
9885 (amd64_linux_gregset32_reg_offset): Rename from
9886 x86_64_linux_gregset64_reg_offset.
9887 (amd64_linux_dr_get): Renamed from x86_64_linux_dr_get.
9888 (amd64_linux_dr_set): Renamed from x86_64_linux_dr_set.
9889 (amd64_linux_dr_set_control): Renamed from
9890 x86_64_linux_dr_set_control. Adjust for renamed functions.
9891 (amd64_linux_dr_set_addr): Renamed from x86_64_linux_dr_set_addr.
9892 Adjust for renamed functions.
9893 (amd64_linux_dr_reset_addr): Renamed from
9894 x86_64_linux_dr_reset_addr. Adjust for renamed functions.
9895 (amd64_linux_dr_get_status): Renamed from
9896 x86_64_linux_dr_get_status. Adjust for renamed functions.
9897 (_initialize_amd64_linux_nat): Renamed from
9898 _initialize_x86_64_linux_nat. Adjust for renamed variables and
9899 functions.
9900 * config/i386/nm-x86-64linux.h: Update copyright year.
9901 Adjust for renamed functions.
9902
9903 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_start_addr): Renamed from
9904 amd64fbsd_sigtramp_start.
9905 (amd64fbsd_sigtramp_end_addr): Renamed from
9906 amd64fbsd_sigtramp_end.
9907 (amd64fbsd_init_abi): Adjust for renamed variables.
9908 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Adjust for renamed
9909 variables.
9910 * x86-64-tdep.h (amd64fbsd_sigtramp_start_addr): Renamed from
9911 amd64fbsd_sigtramp_start.
9912 (amd64fbsd_sigtramp_end_addr): Renamed from
9913 amd64fbsd_sigtramp_end.
9914
9915 2004-02-22 Andrew Cagney <cagney@redhat.com>
9916
9917 * hppa-tdep.c (hppa32_return_value): New function.
9918 (hppa64_return_value): New function.
9919 (hppa_gdbarch_init): Set return_value; keep disabled.
9920
9921 * hppa-tdep.c (hppa_gdbarch_init): Re-order separating
9922 struct-return and inferior function call methods.
9923
9924 * hppa-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
9925 "frame-base.h".
9926 (struct hppa_frame_cache): Define.
9927 (hppa_frame_cache, hppa_frame_this_id): New functions.
9928 (hppa_frame_prev_register): New function.
9929 (hppa_frame_unwind, hppa_frame_base): New variables.
9930 (hppa_frame_unwind_sniffer): New function.
9931 (hppa_frame_base_address, hppa_unwind_pc): New function.
9932 (hppa_gdbarch_init): Set unwind_dummy_id, unwind_pc, frame unwind
9933 sniffer, and frame base sniffer; keep disabled.
9934 (hppa_frame_base_sniffer, hppa_unwind_dummy_id): New functions.
9935 * Makefile.in: Update dependencies, fix s/nbsd/obsd/ typo.
9936
9937 * frame-unwind.c (frame_unwind_find_by_frame): Add legacy_frame_p
9938 to predicates for "seriously old code".
9939
9940 * hppa-tdep.c (hppa_gdbarch_init): Convert compile time #if0s into
9941 runtime if(0).
9942
9943 * hppa-tdep.c (hppa_breakpoint_from_pc): Make "breakpoint"
9944 unsigned.
9945 (hppa_frame_find_saved_regs): Fix "std" instruction pattern
9946
9947 * config/pa/tm-hppa.h: Update copyright.
9948 (DEPRECATED_INIT_FRAME_PC): Delete macro.
9949 (deprecated_init_frame_pc_default): Delete declaration.
9950 (hppa_frame_init_saved_regs): Delete declaration.
9951 (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
9952 * hppa-tdep.c: Include "arch-utils.h".
9953 (hppa_gdbarch_init): Set deprecated init_frame_pc
9954 and deprecated frame_init_saved_regs.
9955 (hppa_frame_init_saved_regs): Make static.
9956
9957 2004-02-22 Mark Kettenis <kettenis@gnu.org>
9958
9959 Remove old 386BSD support.
9960 * NEWS (REMOVED configurations and files): Add i[3456]86-*-bsd*.
9961 * configure.host: Remove i[34567]86-*-bsd*.
9962 * configure.tgt: Remove i[34567]86-*-bsd*.
9963 * i386b-nat.c: Removed.
9964 * Makefile.in (ALLDEPFILES): Remove i386b-nat.c.
9965 (i386b-nat.o): Remove dependencies.
9966
9967 * config/i386/i386bsd.mh: Removed.
9968 * config/i386/i386bsd.mt: Removed.
9969 * config/i386/nm-i386bsd.h: Removed.
9970 * config/i386/tm-i386bsd.h: Removed.
9971 * config/i386/xm-i386bsd.h: Removed.
9972
9973 * x86-64-tdep.h (amd64obsd_r_reg_offset): New extern declaration.
9974
9975 * amd64fbsd-tdep.c: Include "solib-svr4.h".
9976 (amd64fbsd_init_abi): Set link map offsets.
9977 * amd64nbsd-tdep.c: Include "slib-svr4.h".
9978 (amd64nbsd_init_abi): Set link map offsets.
9979 * amd64obsd-tdep.c: Include "solib-svr4.h".
9980 (amd64obsd_init_abi): Set link map offsets.
9981 * i386fbsd-tdep.c: Include "solib-svr4.h".
9982 (i386fbsd_init_abi): Set link map offsets.
9983 * i386nbsd-tdep.c: Include "solib-svr4.h".
9984 (i386nbsdelf_init_abi): Set link map offsets.
9985 * Makefile.in (amd64fbsd-tdep.o, amd64nbsd-tdep.o)
9986 (amd64obsd-tdep.o, i386fbsd-tdep.o): Update dependencies.
9987 * config/i386/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o,
9988 solib-legacy.o and core-aout.o. Reformat.
9989 * config/i386/fbsd64.mh (NATDEPFILES): Remove solib.o,
9990 solib-svr4.o, solib-legacy.o. Reformat.
9991 * config/i386/nbsdaout.mh (NATDEPFILES): Add solib.o. Reformat.
9992 * config/i386/nbsdelf.mh: Reformat.
9993 * config/i386/nbsd64.mh (NATDEPFILES): Remove solib.o,
9994 solib-svr4.o, solib-legacy.o and corelow.o.
9995 * config/i386/obsd.mh, config/i386/obsdaout.mh: Reformat.
9996 * config/i386/obsd64.mh (NATDEPFILES): Remove solib.o,
9997 solib-svr4.o, solib-legacy.o and corelow.o. Reformat.
9998 * config/i386/fbsd.mt (TDEPFILES): Add solib.o, solib-svr4.o.
9999 * config/i386/fbsd64.mt (TDEPFILES): Add solib.o, solib-svr4.o.
10000 (TM_FILE): Set to tm-fbsd.h.
10001 * config/i386/nbsd.mt (TDEPFILES): Reformat.
10002 * config/i386/nbsd64.mt (TDEPFILES): Add corelow.o, solib.o and
10003 solib-svr4.o.
10004 * config/i386/obsd.mt (TDEPFILES): Add corelow.o, solib.o and
10005 solib-svr4.o.
10006 (TM_FILE): Set to nm-nbsd.h.
10007 * config/i386/nm-fbsd.h: Update copyright year. Tweak comments.
10008 Simplify shared library support. Don't include "elf/common.h".
10009 (SVR4_SHARED_LIBS): Don't define.
10010 * config/i386/nm-fbsd64.h: Update copyright year. Don't include
10011 "solib.h".
10012 * config/i386/nm-nbsd.h, config/i386/nm-nbsdaout.h,
10013 config/i386/nm-obsd.h: Update copyright year. Tweak comments.
10014 * config/i386/tm-fbsd.h: Update copyright tear. Tweak comments.
10015 Don't include "i386/tm-i386.h". Include "solib.h".
10016 * config/i386/tm-nbsd.h: Update copyright year. Tweak comments.
10017 Don't include "i386/tm-i386.h".
10018 * config/i386/xm-i386.h: Update copyright year. Tweak comments.
10019 * config/i386/xm-nbsd.h: Update copyright year. Tweak comments.
10020 Include "i386/xm-i386.h".
10021 (HOST_LONG_DOUBLE_FORMAT): Remove.
10022
10023 Fix OpenBSD/i386 sigtramp recognition.
10024 * i386-tdep.h: Update copyright year.
10025 (i386bsd_pc_in_sigtramp, i386bsd_sigtramp_start)
10026 (i386bsd_sigtramp_end): New prototypes.
10027 (i386fbsd_sigtramp_start_addr): Renamed from
10028 i386fbsd_sigtramp_start.
10029 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
10030 (i386obsd_sigtramp_start_addr): Renamed from
10031 i386obsd_sigtramp_start.
10032 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
10033 * i386bsd-tdep.c: Update copyright year.
10034 (i386bsd_pc_in_sigtramp): Make public.
10035 * i386fbsd-nat.c: Update copyright year.
10036 (_initialize_i386fbsd_nat): Adjust for renamed variables.
10037 * i386fbsd-tdep.c: Update copyright year.
10038 (i386fbsd_sigtramp_start_addr): Renamed from
10039 i386fbsd_sigtramp_start.
10040 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
10041 (i386fbsdaout_init_abi): Adjust for renamed variables.
10042 * i386obsd-nat.c: Update copyright year.
10043 (_initialize_i386obsd_nat): Adjust for renamed variables.
10044 * i386obsd-tdep.c: Include "target.h".
10045 (i386obsd_page_size): New variable.
10046 (i386obsd_pc_in_sigtramp, i386obsd_sigtramp_start)
10047 (i386obsd_sigtramp_end): New functions.
10048 (i386obsd_sigtramp_start_addr): Renamed from
10049 i386obsd_sigtramp_start.
10050 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
10051 (i386obsd_init_abi): Adjust for renamed variables. Set
10052 pc_in_sigtramp, sigtramp_start and sigtramp_end.
10053 * Makefile.in (i386obsd-tdep.o): Update dependencies.
10054
10055 * amd64obsd-tdep.c (amd64obsd_pc_in_sigtramp): Adjust for signal
10056 trampoline change in OpenBSD kernel.
10057
10058 * amd64-nat.c: Update copyright year.
10059 (amd64_supply_native_gregset, amd64_collect_native_gregset): Use
10060 architecture from REGCACHE.
10061
10062 * x86-64-linux-nat.c (x86_64_linux_gregset32_reg_offset): Use
10063 symbolic constants from <sys/reg.h> instead of hard-coded numbers.
10064
10065 2004-02-21 Mark Kettenis <kettenis@gnu.org>
10066
10067 * configure.host: Add i[34567]86-*-openbsd[0-2].* and
10068 i[34567]86-*-openbsd3.[0-3].
10069 * config/i386/obsdaout.mh: New file.
10070
10071 * config/i386/obsd.mh (MH_FLAGS): Remove.
10072
10073 Fix PR build/1549.
10074 * i386obsd-tdep.c: Update copyright years. Include
10075 "solib-svr4.h".
10076 (i386obsd_init_abi): Don't set regset_from_core_section here.
10077 (i386obsd_aout_init_abi): New function. Set
10078 regset_from_core_section here.
10079 (i386obsd_elf_init_abi): New function.
10080 (_initialize_i386obsd_tdep): Register OS/ABI for OpenBSD ELF.
10081 * Makefile.in (i386obsd-tdep.o): Update dependecies.
10082 * config/i386/obsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
10083 (TM_FILE): Set to tm-nbsd.h.
10084
10085 * config/i386/obsd.mh (NATDEPFILES): Remove solib.o and
10086 solib-sunos.o.
10087
10088 * solib-svr4.h: Update copyright year.
10089 (svr4_ilp32_fetch_link_map_offsets)
10090 (svr4_lp64_fetch_link_map_offsets): New prototype.
10091 * solib-svr4.c: Update copyright year.
10092 (svr4_ilp32_fetch_link_map_offsets)
10093 (svr4_lp64_fetch_link_map_offsets): New function.
10094
10095 2004-02-20 Daniel Jacobowitz <drow@mvista.com>
10096
10097 * dwarf2read.c (add_partial_symbol): Fix typo in adding enumerators
10098 to the partial symbol table.
10099
10100 2004-02-20 J. brobecker <brobecker@gnat.com>
10101
10102 * PROBLEMS: Add description of problem documented under gdb/1560.
10103
10104 2004-02-20 Mark Kettenis <kettenis@gnu.org>
10105
10106 * amd64obsd-tdep.c: Include "regset.h" and "i387-tdep.h". Fix
10107 comments.
10108 (amd64obsd_supply_regset, amd64obsd_regset_from_core_section): New
10109 functions.
10110 (amd64obsd_init_abi): Reorder initializations. Use
10111 amd64obsd_r_reg_offset to initialize the general-purpose register
10112 set details. Set regset_from_core_section.
10113 (_initialize_amd64obsd_tdep): Rename from
10114 _initialize_amd64obsd_ndep. Add OS ABI handler for core dumps.
10115 * Makefile.in (amd64obsd-tdep.o): Update dependencies.
10116 * config/i386/obsd64.mt (TDEPFILES): Add i386-tdep.o.
10117
10118 * NEWS (New native configurations): Mention OpenBSD/alpha.
10119 * configure.tgt: Add alpha*-*-openbsd*.
10120 * configure.host: Add alpha*-*-openbsd*.
10121 * alphanbsd-tdep.c: Update copyright year.
10122 (_initialize_alphanbsd_tdep): Register OS ABI for OpenBSD ELF.
10123
10124 2004-02-20 Andrew Cagney <cagney@redhat.com>
10125
10126 Fix PR tdep/1372.
10127 * configure.tgt: Delete target "none-*-*".
10128 * configure.host: Delete host "none-*-*".
10129 * config/none/none.mh: Delete file.
10130 * config/none/none.mt: Delete file.
10131 * config/none/xm-none.h: Delete file.
10132 * config/none/tm-none.h: Delete file.
10133 * config/none/nm-none.h: Delete file.
10134
10135 2004-02-19 Fred Fish <fnf@redhat.com>
10136
10137 * sh-tdep.c (sh_analyze_prologue): Eliminate useless test of
10138 cache->uses_fp prior to setting it.
10139
10140 2004-02-19 Fred Fish <fnf@redhat.com>
10141
10142 Fix for PR breakpoint/1558.
10143 * sh-tdep.c (IS_JSR): New macro.
10144 (sh_analyze_prologue): Use IS_JSR to terminate prologue scan.
10145
10146 2004-02-19 Jim Blandy <jimb@redhat.com>
10147
10148 * findvar.c (value_from_register): Doc fix.
10149
10150 2004-02-19 Jeff Johnston <jjohnstn@redhat.com>
10151
10152 * printcmd.c (print_scalar_formatted): Do not check for sizeof
10153 type being greater than sizeof of host's LONGEST. Always use
10154 unpack_long() unless format 'f' chosen.
10155
10156 2004-02-19 Joel Brobecker <brobecker@gnat.com>
10157
10158 Committed by Elena Zannoni <ezannoni@redhat.com>
10159
10160 * symtab.c (find_pc_sect_psymtab): Return the psymtab that
10161 contains a symbol wich is the best, non-exact match for the given
10162 pc. Update comments.
10163
10164 2004-02-19 Elena Zannoni <ezannoni@redhat.com>
10165
10166 * event-top.c (async_request_quit): Remove uses of REQUEST_QUIT
10167 macro, which was part of the now removed Mach 3 port.
10168 * utils.c (request_quit): Ditto.
10169
10170 2004-02-18 Mark Kettenis <kettenis@gnu.org>
10171
10172 * config/djgpp/fnchange.lst: Rename "amd64obsd-tdep.c" and
10173 "amd64obsd-nat.c" to "a64ob-tdep.c" and "a64ob-nat.c".
10174
10175 2004-02-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
10176
10177 Committed by Mark Kettenis <kettenis@gnu.org>.
10178
10179 * config/s390/nm-linux.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT):
10180 Define.
10181
10182 2004-02-18 Andrew Cagney <cagney@redhat.com>
10183
10184 * configure.in: Add a TUI target to CONFIG_ALL, CONFIG_CLEAN,
10185 CONFIG_INSTALL and CONFIG_UNINSTALL.
10186 * configure: Re-generate.
10187 * interps.h (INTERP_TUI): Define.
10188 * Makefile.in: Update dependencies.
10189 (TUI): New macro.
10190 (tui-main.o): Specify dependencies.
10191 (install-tui, uninstall-tui, clean-tui, all-tui): New rules.
10192 * tui/tui-main.c: New file.
10193
10194 2004-02-18 Mark Kettenis <kettenis@gnu.org>
10195
10196 * amd64obsd-tdep.c, amd64obsd-nat.c: New files.
10197 * Makefile.in (amd64obsd-nat.o, amd64obsd-tdep.o): New
10198 dependencies.
10199 * configure.host: Add x86_64-*-openbsd*.
10200 * configure.tgt: Add x86_64-*-openbsd*.
10201 * config/i386/obsd64.mt, config/i386/obsd64.mh: New files.
10202
10203 * tui/tui.c: Don't include <malloc.h>.
10204
10205 * Makefile.in (ALLDEPFILES): Add amd64-nat.c, amd64bsd-nat.c,
10206 amdfbsd-nat.c, amd64-fbsd-tdep.c, amd64nbsd-nat.c and
10207 amd64nbsd-tdep.c.
10208
10209 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Make
10210 static. Remove extraneous whitespace.
10211 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Make
10212 static.
10213
10214 2004-02-17 Jim Blandy <jimb@redhat.com>
10215
10216 * findvar.c (value_from_register): Doc fix.
10217
10218 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
10219
10220 Committed by Jim Blandy <jimb@redhat.com>.
10221
10222 * eval.c (evaluate_subexp_standard, case OP_OBJC_MSGCALL): Use
10223 CORE_ADDR as type for selectors. Correct types for GNU run time
10224 message lookup function to use double indirection.
10225 * objc-lang.c (lookup_child_selector): Use CORE_ADDR as return type.
10226 * objc-lang.h (lookup_child_selector): Adapt prototype.
10227
10228 * s390-nat.c (SUBOFF): New macro.
10229 (supply_gregset, fill_gregset): Use it to handle debugging
10230 of 32-bit exectuables running under a 64-bit kernel.
10231 * s390-tdep.c: Include "solib-svr4.h".
10232 (s390_svr4_fetch_link_map_offset): New function.
10233 (s390x_svr_fetch_link_map_offset): Likewise.
10234 (s390_gdbarch_init): Call set_solib_svr4_fetch_link_map_offsets.
10235 * Makefile.in (s390-tdep.o): Update dependencies.
10236
10237 * s390-tdep.c: Include "trad-frame.h", "frame-base.h", and
10238 "frame-unwind.h".
10239 (s390_readinstruction): Reformat. Use read_memory_nobpt.
10240 (GDB_TARGET_IS_ESAME, S390_GPR_SIZE, S390_FPR_SIZE): Remove.
10241 (S390_SYSCALL_OPCODE, S390_SYSCALL_SIZE): Remove.
10242 (S390_SIGCONTEXT_SREGS_OFFSET, S390X_SIGCONTEXT_SREGS_OFFSET,
10243 S390_SIGREGS_FP0_OFFSET, S390X_SIGREGS_FP0_OFFSET,
10244 S390_UC_MCONTEXT_OFFSET, S390X_UC_MCONTEXT_OFFSET,
10245 S390_SIGNAL_FRAMESIZE,
10246 s390_NR_sigreturn, s390_NR_rt_sigreturn): Remove.
10247 (struct frame_extra_info): Remove.
10248 (s390_memset_extra_info): Remove.
10249 (op1_ag, op1_ay, op1_brasl, op1_brc, op1_brcl, op1_lay, op1_lg)
10250 (op1_lmy, op1_ly, op1_sg, op1_stmy, op1_sty, op1_sy, op_a)
10251 (op_agr, op_bas, op_bc, op_bcr, op_sgr, op_sr): New opcodes.
10252 (is_rse): Renamed to ...
10253 (is_rsy): ... this. Support long displacements.
10254 (is_rxe): Renamed to ...
10255 (is_rxy): ... this. Support long displacements.
10256 (compute_x_addr): Support long displacements.
10257 (struct s390_prologue_data): New data type.
10258 (s390_on_stack): Change API to use struct s390_prologue_data.
10259 (s390_store): Reimplement.
10260 (s390_load): New function.
10261 (s390_get_signal_frame_info): Remove.
10262 (s390_get_frame_info): Remove, replace by ...
10263 (s390_analyze_prolog): ... this new function.
10264 (s390_check_function_end): Remove.
10265 (s390_function_start): Remove.
10266 (s390_frameless_function_invokation): Remove.
10267 (s390_is_sigreturn): Remove.
10268 (s390_init_frame_pc_first): Remove.
10269 (s390_init_frame_extra_info): Remove.
10270 (s390_frame_init_saved_regs): Remove.
10271 (s390_frame_saved_pc_nofix): Remove.
10272 (s390_frame_saved_pc): Remove.
10273 (s390_frame_chain): Remove.
10274 (s390_fp_regnum, s390_read_fp): Remove.
10275 (s390_pop_frame_regular, s390_pop_frame): Remove.
10276 (s390_saved_pc_after_call): Remove.
10277 (s390_skip_prologue): Reimplement.
10278 (s390_in_function_epilogue_p): Support long displacements.
10279 (struct s390_unwind_cache): New data structure.
10280 (s390_frame_unwind_cache): New function.
10281 (s390_prologue_frame_unwind_cache): Likewise.
10282 (s390_backchain_frame_unwind_cache): Likewise.
10283 (s390_frame_this_id, s390_frame_prev_register): Likewise.
10284 (s390_frame_unwind): Define.
10285 (s390_frame_sniffer): New function.
10286 (struct s390_pltstub_unwind_cache): New data structure.
10287 (s390_pltstub_frame_unwind_cache): New function.
10288 (s390_pltstub_frame_this_id): Likewise.
10289 (s390_pltstub_frame_prev_register): Likewise.
10290 (s390_pltstub_frame_unwind): Define.
10291 (s390_pltstub_frame_sniffer): New function.
10292 (struct s390_sigtramp_unwind_cache): New data structure.
10293 (s390_sigtramp_frame_unwind_cache): New function.
10294 (s390_sigtramp_frame_this_id): Likewise.
10295 (s390_sigtramp_frame_prev_register): Likewise.
10296 (s390_sigtramp_frame_unwind): Define.
10297 (s390_sigtramp_frame_sniffer): New function.
10298 (s390_frame_base_address, s390_local_base_address): New functions.
10299 (s390_frame_base): Define.
10300 (s390_unwind_pc, s390_unwind_sp): New function.
10301 (s390_push_dummy_call): Use new frame base location.
10302 (s390_unwind_dummy_id): Likewise.
10303 (s390_gdbarch_init): Remove calls to:
10304 set_gdbarch_frameless_function_invocation,
10305 set_gdbarch_deprecated_init_frame_pc,
10306 set_gdbarch_deprecated_frame_chain,
10307 set_gdbarch_deprecated_frame_init_saved_regs,
10308 set_gdbarch_deprecated_pop_frame,
10309 set_gdbarch_deprecated_init_extra_frame_info,
10310 set_gdbarch_deprecated_init_frame_pc_first,
10311 set_gdbarch_deprecated_target_read_fp,
10312 set_gdbarch_deprecated_frame_saved_pc,
10313 set_gdbarch_deprecated_saved_pc_after_call,
10314 set_gdbarch_deprecated_fp_regnum.
10315 Add calls to:
10316 set_gdbarch_in_solib_call_trampoline,
10317 frame_unwind_append_sniffer,
10318 frame_base_set_default,
10319 set_gdbarch_unwind_pc,
10320 set_gdbarch_unwind_sp.
10321 * Makefile.in (s390-tdep.o): Update dependencies.
10322
10323 * s390-tdep.c (struct gdbarch_tdep): Add 'abi' member.
10324 (S390_STACK_FRAME_OVERHEAD): Remove.
10325 (S390_STACK_PARAMETER_ALIGNMENT): Remove.
10326 (S390_NUM_FP_PARAMETER_REGISTERS): Remove.
10327 (s390_promote_integer_argument): Remove.
10328 (s390_cannot_extract_struct_value_address): Remove.
10329 (s390_use_struct_convention, s390_store_struct_return): Remove.
10330 (s390_extract_return_value, s390_store_return_value): Remove.
10331 (s390_return_value_convention, s390_return_value): New functions.
10332 (is_float_singleton): Handle typedefs.
10333 (is_double_or_float, is_double_arg, is_simple_arg, pass_by_copy_ref):
10334 Remove, replace by ...
10335 (s390_function_arg_pass_by_reference, s390_function_arg_float,
10336 s390_function_arg_integer): ... these new functions.
10337 (s390_push_arguments, s390_push_return_address): Remove, replace by ...
10338 (s390_push_dummy_call, s390_unwind_dummy_id): ... these new functions.
10339 (s390_gdbarch_init): Remove s390_call_dummy_words and elf_flags.
10340 Fill in tdep->abi.
10341 Remove calls to:
10342 set_gdbarch_deprecated_store_struct_return,
10343 set_gdbarch_deprecated_extract_return_value,
10344 set_gdbarch_deprecated_store_return_value,
10345 set_gdbarch_use_struct_convention,
10346 set_gdbarch_extract_struct_value_address,
10347 set_gdbarch_deprecated_pc_in_call_dummy,
10348 set_gdbarch_deprecated_push_arguments,
10349 set_gdbarch_deprecated_save_dummy_frame_tos,
10350 set_gdbarch_deprecated_push_return_address,
10351 set_gdbarch_deprecated_sizeof_call_dummy_words,
10352 set_gdbarch_deprecated_call_dummy_words,
10353 set_gdbarch_deprecated_dummy_write_sp.
10354 Add calls to:
10355 set_gdbarch_push_dummy_call,
10356 set_gdbarch_unwind_dummy_id,
10357 set_gdbarch_return_value.
10358
10359 * config/s390/nm-linux.h: Update comments.
10360 (target_insert_watchpoint, target_remove_watchpoint): Redefine.
10361 (STOPPED_BY_WATCHPOINT): Redefine.
10362 (TARGET_CAN_USE_HARDWARE_WATCHPOINT): Redefine to 1.
10363 (s390_insert_watchpoint, s390_remove_watchpoint): Update prototype.
10364 (s390_stopped_by_watchpoint): Likewise.
10365 (watch_area_cnt): Remove.
10366 * s390-nat.c: Update comments.
10367 (watch_area): Remove typedef.
10368 Global replace watch_area by struct watch_area.
10369 (watch_area_cnt, watch_lo_addr, watch_hi_addr): Remove.
10370 (s390_stopped_by_watchpoint): Remove pid argument,
10371 use s390_inferior_tid. Add short-cut for the no watchpoint case.
10372 (s390_fix_watch_points): Remove pid argument,
10373 use s390_inferior_tid. Recompute area spanned by watchpoints.
10374 (s390_insert_watchpoint, s390_remove_watchpoint): Remove pid
10375 argument. Reimplement.
10376
10377 * config/s390/nm-linux.h: Update comments. Do not include "solib.h".
10378 (KERNEL_U_ADDR, REGISTER_U_ADDR, U_REGS_OFFSET): Remove.
10379 (FETCH_INFERIOR_REGISTERS): Define.
10380 * config/s390/s390.mh (NATDEPFILES): Remove core-aout.o and
10381 core-regset.o.
10382 * config/s390/s390x.mt: Remove.
10383 * config/s390/tm-s390.h: Remove.
10384 * config/s390/tm-linux.h: Do not include "s390/tm-s390.h".
10385 (TARGET_ELF64): Remove.
10386 (SKIP_TRAMPOLINE_CODE): Do not undefine.
10387 * configure.tgt [s390-*-*, s390x-*-*]: Merge into single
10388 s390*-*-* case; always set gdb_target to s390.
10389 * regformats/reg-s390.dat: Remove control registers.
10390 * regformats/reg-s390x.dat: Likewise.
10391 * s390-tdep.h: New file.
10392 * s390-nat.c: Do not include <asm/processor.h> or <value.h>.
10393 Include "inferior.h" and "s390-tdep.h".
10394 Remove private definition of offsetof.
10395 (s390_register_u_addr): Remove.
10396 (regmap_gregset, regmap_fpregset): Define.
10397 (supply_gregset, fill_gregset): Reimplement.
10398 (supply_fpregset, fill_fpregset): Likewise.
10399 (s390_inferior_tid): New function.
10400 (fetch_regs, store_regs, fetch_fpregs, store_fpregs): Likewise.
10401 (fetch_inferior_registers, store_inferior_registers): Likewise.
10402 * s390-tdep.c: Do not define S390_TDEP. Include "defs.h" instead
10403 of <defs.h>. Include "reggroups.h", "regset.h", and "s390-tdep.h".
10404 Global replace of S390_GP0_REGNUM by S390_R0_REGNUM.
10405 Global replace of S390_FP0_REGNUM by S390_F0_REGNUM.
10406 (struct gdbarch_tdep): Define.
10407 (struct s390_register_info): Define.
10408 (s390_register_info): New variable.
10409 (s390_register_name): Reimplement.
10410 (s390_register_type): New function.
10411 (s390_register_raw_size, s390x_register_raw_size): Remove.
10412 (s390_cannot_fetch_register): Remove.
10413 (s390_register_byte): Remove.
10414 (s390_register_virtual_type, s390x_register_virtual_type): Remove.
10415 (s390_dwarf_regmap): New variable.
10416 (s390_dwarf_reg_to_regnum): New function.
10417 (s390_stab_reg_to_regnum): Remove.
10418 (s390_pseudo_register_read, s390_pseudo_register_write): New functions.
10419 (s390x_pseudo_register_read, s390x_pseudo_register_write): Likewise.
10420 (s390_convert_register_p): Likewise.
10421 (s390_register_to_value, s390_value_to_register): Likewise.
10422 (s390_register_reggroup_p): Likewise.
10423 (s390_regmap_gregset, s390x_regmap_gregset, s390_regmap_fpregset,
10424 s390_gregset, s390x_gregset, s390_fpregset): New variables.
10425 (s390_supply_regset, s390_regset_from_core_section): New functions.
10426 (GDB_TARGET_IS_ESAME): Move here from tm-s390.h.
10427 (S390_FPR_SIZE): Likewise.
10428 (S390_GPR_SIZE): Likewise. Redefine in terms of GDB_TARGET_IS_ESAME.
10429 Global replace of DEPRECATED_REGISTER_SIZE by S390_GPR_SIZE.
10430 (S390_NUM_GPRS): Move here from tm-s390.h.
10431 (S390_NUM_FPRS): Likewise.
10432 (s390_in_function_epilogue_p): New function.
10433 (s390_is_sigreturn): Replace S390_PSW_ADDR_SIZE by S390_GPR_SIZE.
10434 Replace S390_PC_REGNUM by S390_PSWA_REGNUM.
10435 (s390_gdbarch_init): Allocate and set up gdbarch_tdep structure.
10436 Replace s390_stab_reg_to_regnum by s390_dwarf_reg_to_regnum.
10437 Replace S390_FP_REGNUM by S390_SP_REGNUM.
10438 Remove calls to:
10439 set_gdbarch_deprecated_max_register_raw_size,
10440 set_gdbarch_deprecated_max_register_virtual_size,
10441 set_gdbarch_deprecated_register_byte,
10442 set_gdbarch_cannot_fetch_register,
10443 set_gdbarch_cannot_store_register,
10444 set_gdbarch_deprecated_register_size,
10445 set_gdbarch_deprecated_register_raw_size,
10446 set_gdbarch_deprecated_register_virtual_size,
10447 set_gdbarch_deprecated_register_virtual_type,
10448 set_gdbarch_deprecated_register_bytes.
10449 Add calls to:
10450 set_gdbarch_num_pseudo_regs,
10451 set_gdbarch_register_type,
10452 set_gdbarch_convert_register_p,
10453 set_gdbarch_register_to_value,
10454 set_gdbarch_value_to_register,
10455 set_gdbarch_register_reggroup_p,
10456 set_gdbarch_regset_from_core_section,
10457 set_gdbarch_pseudo_register_read,
10458 set_gdbarch_pseudo_register_write,
10459 set_gdbarch_in_function_epilogue_p.
10460 * Makefile.in (s390-nat.o, s390-tdep.o): Update dependencies.
10461 (s390_tdep_h): New variable.
10462
10463 2004-02-17 Jim Blandy <jimb@redhat.com>
10464
10465 * findvar.c (value_from_register): If the type has no length, just
10466 return an acceptable value --- don't report an internal error.
10467
10468 * stabsread.c (read_type): If we find any type numbers that are
10469 forward references, complain if the references aren't resolved by
10470 the time we're finished reading.
10471 (cleanup_undefined_types): Make error message more appropriate for
10472 a complaint.
10473
10474 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
10475
10476 * Makefile.in (defs_h): Remove dependency on progress_h.
10477 * defs.h (QUIT): Remove use of PROGRESS macro. Remove include of
10478 progress.h.
10479 * main.c (captured_main): Delete use of START_PROGRESS and
10480 END_PROGRESS.
10481
10482 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
10483
10484 * objfiles.c (terminate_minimal_symbol_table): Add back
10485 initialization of MSYMBOL_TYPE.
10486
10487 2004-02-17 David Mosberger <davidm@hpl.hp.com>
10488
10489 Committed by Andrew Cagney.
10490 * Makefile.in (ia64_tdep_h): New macro.
10491 (ia64-linux-tdep.o): Mention $(ia64_tdep_h).
10492 (ia64-tdep.o): Likewise.
10493 * ia64-tdep.h: New file.
10494 * ia64-tdep.c: Update copyright notice. Include "ia64-tdep.h".
10495 (ia64_linux_sigcontext_register_address): Move decl to ia64-tdep.h.
10496 (ia64_aix_sigcontext_register_address): Likewise.
10497 (ia64_linux_getunwind_table): Delete declaration.
10498 * ia64-linux-tdep.c: Likewise.
10499
10500 2004-02-17 Corinna Vinschen <vinschen@redhat.com>
10501
10502 * sh-tdep.c (sh_dsp_register_sim_regno): Use DSP_Rx_BANK_REGNUM.
10503 * sh-tdep.h: Rename R0_BANK_REGNUM and R7_BANK_REGNUM to
10504 DSP_R0_BANK_REGNUM and DSP_R7_BANK_REGNUM.
10505
10506 2004-02-17 Andrew Cagney <cagney@redhat.com>
10507
10508 * symtab.c (skip_prologue_using_sal): New function.
10509 * symtab.h (skip_prologue_using_sal): Declare.
10510 * frv-tdep.c: Include "symtab.h".
10511 (skip_prologue_using_sal): Delete function.
10512 * mips-tdep.c (skip_prologue_using_sal): Delete function.
10513 * rs6000-tdep.c (refine_prologue_limit): Mention
10514 skip_prologue_using_sal.
10515 * ia64-tdep.c (refine_prologue_limit): Ditto.
10516 * Makefile.in: Update dependencies.
10517
10518 2004-02-16 Andrew Cagney <cagney@redhat.com>
10519
10520 * config/alpha/tm-nbsd.h: Update copyright, delete #undef
10521 START_INFERIOR_TRAPS_EXPECTED.
10522 * config/alpha/tm-fbsd.h: Update copyright, delete #undef
10523 START_INFERIOR_TRAPS_EXPECTED.
10524 * config/alpha/tm-alphalinux.h (START_INFERIOR_TRAPS_EXPECTED):
10525 Delete macro.
10526 * config/alpha/tm-alpha.h (START_INFERIOR_TRAPS_EXPECTED): Delete
10527 macro, moved to "nm-osf.h". Update copyright.
10528 * config/alpha/nm-osf.h (START_INFERIOR_TRAPS_EXPECTED): Define,
10529 update copyright.
10530
10531 * gdbarch.sh (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION): Predicate
10532 and function replacing FRAMELESS_FUNCTION_INVOCATION.
10533 * blockframe.c (legacy_frameless_look_for_prologue): Rename
10534 frameless_look_for_prologue.
10535 * frame.h (legacy_frameless_look_for_prologue): Rename
10536 frameless_look_for_prologue.
10537 * gdbarch.h, gdbarch.c: Re-generate.
10538 * sh64-tdep.c (sh64_gdbarch_init): Update.
10539 * sh-tdep.c (sh_gdbarch_init): Update.
10540 * s390-tdep.c (s390_gdbarch_init): Update.
10541 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
10542 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
10543 * m68k-tdep.c (m68k_gdbarch_init): Update.
10544 (delta68_frame_args_address): Update.
10545 * m32r-tdep.c (m32r_gdbarch_init): Update.
10546 * hppa-tdep.c (hppa_gdbarch_init): Update.
10547 * h8300-tdep.c (h8300_gdbarch_init): Update.
10548 * frv-tdep.c (frv_gdbarch_init): Update.
10549 (frv_frameless_function_invocation): Update.
10550 * cris-tdep.c (cris_gdbarch_init): Update.
10551 (cris_frameless_function_invocation): Update.
10552 * avr-tdep.c (avr_gdbarch_init): Update.
10553 * arm-tdep.c (arm_gdbarch_init): Update.
10554 * stack.c (frame_info): Update, call predicate.
10555 * rs6000-tdep.c (rs6000_frame_chain): Update, call predicate..
10556 * frame.c (legacy_get_prev_frame): Update, call predicate..
10557 * arch-utils.c (generic_frameless_function_invocation_not): Delete.
10558 * arch-utils.h (generic_frameless_function_invocation_not): Delete.
10559 * alpha-tdep.c (alpha_gdbarch_init): Do not set frameless function
10560 invocation.
10561 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
10562 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
10563 * vax-tdep.c (vax_gdbarch_init): Ditto.
10564
10565 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): Delete unused
10566 function.
10567
10568 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
10569
10570 * objfiles.c (terminate_minimal_symbol_table): Remove unnecessary
10571 initializations.
10572
10573 2004-02-16 Andrew Cagney <cagney@redhat.com>
10574
10575 * tui/tui-windata.c: Include "gdb_string.h".
10576 * tui/tui-source.c, tui/tui-winsource.c: Ditto.
10577 * tui/tui-layout.c, tui/tui-command.c: Ditto.
10578 * Makefile.in: Update dependencies.
10579
10580 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
10581
10582 * Makefile.in (infrun.o): Add $(gdb_assert_h).
10583 * infrun.c: Include "gdb_assert.h".
10584 (singlestep_ptid, saved_singlestep_ptid)
10585 (stepping_past_singlestep_breakpoint): New variables.
10586 (resume): Set singlestep_ptid. Check for singlestep thread
10587 hop.
10588 (init_wait_for_inferior): Clear stepping_past_singlestep_breakpoint.
10589 (handle_inferior_event): Handle singlestep thread hop.
10590
10591 2004-02-16 Andrew Cagney <cagney@redhat.com>
10592
10593 * dwarf2-frame.c (dwarf2_frame_ops): New function.
10594 (dwarf2_frame_set_init_reg): Use, instead of gdbarch_data.
10595 (dwarf2_frame_init_reg): Ditto.
10596
10597 * printcmd.c (display_command): Check that EXP isn't NULL. Fix
10598 suggested by Joshua Neuheisel
10599
10600 * configure.in: Always check for curses, including pdcurses.
10601 Warn, instead of error, when no curses are found. Enable TUI when
10602 curses is available.
10603 * configure: Re-generate.
10604
10605 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
10606
10607 * sh-tdep.c (sh_register_convert_to_virtual): Rename from
10608 sh_sh4_register_convert_to_virtual.
10609 (sh_register_convert_to_raw): Rename from
10610 sh_sh4_register_convert_to_raw.
10611 (sh_pseudo_register_read): Accomodate above name change.
10612 (sh_pseudo_register_write): Ditto.
10613
10614 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
10615
10616 * sh-tdep.c (sh_generic_register_name): Remove.
10617 (sh_gdbarch_init): Use sh_sh_register_name in default case.
10618
10619 2004-02-15 Andrew Cagney <cagney@redhat.com>
10620
10621 * configure.in (build_warnings): Add -Wunused-function.
10622 * configure: Re-generate.
10623
10624 * config/tm-lynx.h (START_INFERIOR_TRAPS_EXPECTED): Delete macro.
10625 * config/rs6000/tm-rs6000.h (START_INFERIOR_TRAPS_EXPECTED): Ditto.
10626
10627 * procfs.c (procfs_init_inferior): Assume that
10628 START_INFERIOR_TRAPS_EXPECTED is defined.
10629 * config/ns32k/nbsdaout.mt (TM_FILE): Set to tm-ns32k.h.
10630 * config/ns32k/tm-nbsd.h: Delete file,
10631 START_INFERIOR_TRAPS_EXPECTED already defined as 2.
10632
10633 * config/vax/tm-vaxbsd.h: Do not include "tm-vax.h".
10634 * config/vax/tm-vax.h: Delete file.
10635
10636 * config/mips/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
10637 * config/i386/tm-i386bsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
10638 * config/arm/tm-linux.h (SIGCONTEXT_PC_OFFSET): Delete macro.
10639 * config/vax/tm-vaxbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
10640 * vax-tdep.c (vax_sigtramp_saved_pc): Inline only reference.
10641 * config/ns32k/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
10642 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): Inline only reference.
10643
10644 2004-02-15 Mark Kettenis <kettenis@gnu.org>
10645
10646 * dwarf2-frame.h (dwarf2_frame_set_init_reg): New prototype.
10647 * dwarf2-frame.c (dwarf2_frame_data): New variable.
10648 (struct dwarf2_frame_ops): New.
10649 (dwarf2_frame_default_init_reg): New function, based on
10650 dwarf2_frame_init_reg.
10651 (dwarf2_frame_init, dwarf2_frame_set_init_reg): New function.
10652 (dwarf2_frame_init_reg): Call architecture-specific function.
10653 (dwarf2_frame_objfile_data): Renamed from dwarf2_frame_data.
10654 (dwarf2_frame_find_fde, add_fde): Use dwarf2_frame_objfile_data
10655 instead of dwarf2_frame_data.
10656 (_initialize_dwarf2_frame): Initailize new dwarf2_frame_data.
10657 Initialize dwarf2_frame_objfile instead of old dwarf2_frame_data.
10658
10659 2004-02-15 Andrew Cagney <cagney@redhat.com>
10660
10661 * gdbarch.sh (deprecated_register_gdbarch_swap): Rename
10662 register_gdbarch_swap.
10663 (DEPRECATED_REGISTER_GDBARCH_SWAP): Rename REGISTER_GDBARCH_SWAP.
10664 * f-lang.c (_initialize_f_language): Update, use
10665 DEPRECATED_REGISTER_GDBARCH_SWAP.
10666 * remote.c (_initialize_remote): Ditto.
10667 * regcache.c (_initialize_regcache): Ditto.
10668 * parse.c (_initialize_parse): Ditto.
10669 * infrun.c (_initialize_infrun): Ditto.
10670 * mi/mi-main.c (_initialize_mi_main): Ditto.
10671 * gdbtypes.c (_initialize_gdbtypes): Ditto.
10672
10673 * solib.c (solib_map_sections): Use bfd_set_cacheable instead of
10674 poking .cacheable directly.
10675 * symfile.c (symfile_bfd_open): Ditto.
10676
10677 * Makefile.in: Update all dependencies.
10678
10679 * Makefile.in: (.SUFFIXES): Add ".l" and ".y".
10680 (.y.c, .l.c): Specify implicit rule. Instead of .tab.c, generate
10681 .c. Update references. Delete unnecessary .tab.c and -lex.c rules.
10682 (ada-exp.o, c-exp.o, f-exp.o): Replace ada-exp.tab.o et.al. rule.
10683 (jv-exp.o, m2-exp.o, objc-exp.o, p-exp.o): Similar.
10684
10685 2004-02-14 Andrew Cagney <cagney@redhat.com>
10686
10687 * arch-utils.c (legacy_convert_register_p): Check
10688 DEPRECATED_REGISTER_CONVERTIBLE_P.
10689 * findvar.c (value_of_register): Ditto.
10690
10691 * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Add predicate.
10692 * gdbarch.h, gdbarch.c: Re-generate.
10693 * arch-utils.c (deprecated_register_convertible_not): Delete.
10694 * arch-utils.h (deprecated_register_convertible_not): Delete.
10695 * mi/mi-main.c (get_register): Update. Update copyright.
10696 * infcmd.c (default_print_registers_info): Update.
10697
10698 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
10699 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Delete.
10700 (DEPRECATED_CALL_DUMMY_ADDRESS): Delete.
10701 * gdbarch.h, gdbarch.c: Re-generate.
10702 * frame.c (deprecated_get_next_frame_hack): Delete function.
10703 * frame.h (deprecated_get_next_frame_hack): Delete declaration.
10704 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
10705 Update.
10706 * infcall.c (call_function_by_hand): Update.
10707
10708 2004-02-14 Elena Zannoni <ezannoni@redhat.com>
10709
10710 * symfile.c (init_entry_point_info, entry_point_address): Move
10711 from here...
10712 * objfiles.c (init_entry_point_info, entry_point_address):..to
10713 here.
10714 * symfile.h (init_entry_point_info, entry_point_address): Remove
10715 prototypes.
10716 * objfiles.h (init_entry_point_info, entry_point_address):Add
10717 prototypes.
10718 * cris-tdep.c: Remove include of symfile.h. Add include of
10719 objfiles.h.
10720 * infcall.c: Ditto.
10721 * mcore-tdep.c: Ditto.
10722 * mn10300-tdep.c: Ditto.
10723 * sh64-tdep.c: Ditto.
10724 * v850-tdep.c: Ditto.
10725 * arm-tdep.c: Remove include of symfile.h.
10726 * blockframe.c: Ditto.
10727 * coffread.c: Ditto.
10728 * dbxread.c: Ditto.
10729 * dwarf2read.c: Ditto.
10730 * dwarfread.c: Ditto.
10731 * frv-tdep.c: Ditto.
10732 * ia64-tdep.c: Ditto.
10733 * mdebugread.c: Ditto.
10734 * mipsread.c: Ditto.
10735 * rs6000-tdep.c: Ditto.
10736 * s390-tdep.c: Ditto.
10737 * sh-tdep.c: Ditto.
10738 * xstormy16-tdep.c: Ditto.
10739 * gdbarch.sh: Remove include of symfile.h.
10740 * gdbarch.c: Regenerate.
10741 * solib-irix.c (enable_break): Use entry_point_address().
10742 Add comment about include file.
10743 * xcoffread.c: Add comment about include file.
10744 * Makefile.in (arm-tdep.o, blockframe.o, coffread.o, cris-tdep.o)
10745 (dbxread.o, dwarf2read.o, dwarfread.o, frv-tdep.o, gdbarch.o)
10746 (ia64-tdep.o, infcall.o, mcore-tdep.o, mdebugread.o, mipsread.o)
10747 (mn10300-tdep.o, rs6000-nat.o, s390-tdep.o, sh64-tdep.o)
10748 (sh-tdep.o, v850-tdep.o, xstormy16-tdep.o): Update dependencies.
10749
10750 2004-02-13 Andrew Cagney <cagney@redhat.com>
10751
10752 * corelow.c (core_xfer_partial): Use "struct bfd_section".
10753 * config/sparc/nm-nbsd.h (struct target_ops): Declare, update
10754 copyright.
10755 * mips-linux-tdep.c: Use "GNU/Linux", update copyright.
10756
10757 2004-02-12 Fred Fish <fnf@redhat.com>
10758
10759 * m68hc11-tdep.c (m68hc11_gdbarch_init): Remove duplicate call to
10760 set_gdbarch_store_return_value.
10761
10762 2004-02-12 Andrew Cagney <cagney@redhat.com>
10763
10764 * remote-rdi.c (arm_rdi_start_remote): Delete unused function.
10765 (arm_rdi_interrupt, arm_rdi_interrupt_twice): Ditto.
10766 (interrupt_query): Ditto.
10767 (ofunc): Delete unused variable.
10768 * cris-tdep.c (cris_abi): Delete unused function.
10769 (reg_pop_op, move_reg_to_mem_index_inc_op): Ditto.
10770 (cris_get_wide_opcode, cris_get_short_size): Ditto.
10771 (cris_get_asr_quick_shift_steps): Ditto.
10772 (cris_skip_prologue_frameless_p): Ditto.
10773 * arm-tdep.c (arm_push_return_address): Delete unused function.
10774 (arm_push_dummy_frame, arm_fix_call_dummy): Ditto.
10775 * rs6000-tdep.c (rs6000_pc_in_call_dummy): Delete unused function.
10776 * s390-tdep.c (s390_function_start): Delete unused function.
10777
10778 2004-02-12 Andrew Cagney <cagney@redhat.com>
10779
10780 * gdbarch.sh (PROLOGUE_FRAMELESS_P): Delete.
10781 gdbarch.h, gdbarch.c: Re-generate.
10782 * cris-tdep.c (cris_gdbarch_init): Do not set prologue_frameless_p
10783 to generic_prologue_frameless_p.
10784 * arch-utils.h (generic_prologue_frameless_p): Delete declaration.
10785 * arch-utils.c (generic_prologue_frameless_p): Delete function.
10786
10787 2004-02-11 Daniel Jacobowitz <drow@mvista.com>
10788
10789 * mips-linux-tdep.c: Include "frame.h".
10790 (mips_linux_in_dynsym_stub, mips_linux_in_dynsym_resolve_code)
10791 (mips_linux_skip_resolver): New functions.
10792 (mips_linux_init_abi): Call set_gdbarch_skip_solib_resolver
10793 and set_gdbarch_in_solib_call_trampoline.
10794 * mips-tdep.c (mips_gdbarch_init): Move gdbarch_init_osabi call
10795 to after set_gdbarch_in_solib_return_trampoline. Only set the
10796 solib hooks to mips16 functions if the OS ABI is unknown.
10797 * config/mips/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Undefine after
10798 including "config/tm-linux.h".
10799 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Define.
10800 * Makefile.in (mips-linux-tdep.o): Update.
10801
10802 2004-02-11 David Carlton <carlton@kealia.com>
10803
10804 * linespec.c (decode_compound): Only look for a class symbol when
10805 considering all but the rightmost component.
10806
10807 2004-02-11 Andrew Cagney <cagney@redhat.com>
10808
10809 * hppa-tdep.c (hppa_gdbarch_init): Re-order so that the frame and
10810 abi code are are separatly grouped.
10811
10812 2004-02-11 Andrew Cagney <cagney@redhat.com>
10813
10814 * gdbarch.sh (FRAME_ARGS_SKIP): Default to 0.
10815 * gdbarch.h, gdbarch.c: Re-generate.
10816 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
10817 * v850-tdep.c (v850_gdbarch_init): Update.
10818 * sh64-tdep.c (sh64_gdbarch_init): Update.
10819 * sh-tdep.c (sh_gdbarch_init): Update.
10820 * s390-tdep.c (s390_gdbarch_init): Update.
10821 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
10822 * mips-tdep.c (mips_gdbarch_init): Update.
10823 * mcore-tdep.c (mcore_gdbarch_init): Update.
10824 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
10825 * m32r-tdep.c (m32r_gdbarch_init): Update.
10826 * ia64-tdep.c (ia64_gdbarch_init): Update.
10827 * hppa-tdep.c (hppa_gdbarch_init): Update.
10828 * h8300-tdep.c (h8300_gdbarch_init): Update.
10829 * frv-tdep.c (frv_gdbarch_init): Update.
10830 * d10v-tdep.c (d10v_gdbarch_init): Update.
10831 * cris-tdep.c (cris_gdbarch_init): Update.
10832 * avr-tdep.c (avr_gdbarch_init): Update.
10833 * arm-tdep.c (arm_gdbarch_init): Update.
10834 * alpha-tdep.c (alpha_gdbarch_init): Update.
10835
10836 2004-02-11 Corinna Vinschen <vinschen@redhat.com>
10837
10838 * sh-tdep.c (sh_sh3_dsp_register_name): Fix formatting. Add missing
10839 comma.
10840 (sh_sh4al_dsp_register_name): Ditto.
10841
10842 2004-02-10 Andrew Cagney <cagney@redhat.com>
10843
10844 * mips-tdep.c (mips_gdbarch_init): Delete deprecated frame code.
10845 (mips_init_frame_pc_first): Delete function.
10846 (mips_frame_saved_pc): Delete function.
10847 (mips_frame_chain): Delete function.
10848 (mips_init_extra_frame_info): Delete function.
10849 (mips_xfer_register): Delete unused variable "reg".
10850 (mips_n32n64_push_dummy_call): Delete unused variable "valbuf".
10851 (mips_n32n64_return_value): Delete unused variable "reg".
10852 (mips_n32n64_return_value): Delete unused variable "pos".
10853 (mips_o32_push_dummy_call): Delete unused variable "valbuf".
10854 (mips_o32_return_value): Delete unused variable "pos".
10855 (mips_o64_push_dummy_call): Delete unused variable "valbuf".
10856 (mips_print_fp_register): Delete unused variable "namelen"
10857 (mips_print_fp_register): Delete unused variable "flt2"
10858 (get_frame_pointer): Delete function.
10859 (cached_proc_desc): Delete static variable.
10860 (mips_pop_frame): Delete function.
10861 (mips_find_saved_regs): Delete function.
10862 (mips_get_saved_register): Delete function.
10863 (mips_saved_pc_after_call): Delete function.
10864 (SIGFRAME_BASE): Delete macro.
10865 (SIGFRAME_FPREGSAVE_OFF): Delete macro.
10866 (SIGFRAME_PC_OFF): Delete macro.
10867 (SIGFRAME_REGSAVE_OFF): Delete macro.
10868 (mips_dump_tdep): Do not print deleted macro definitions.
10869
10870 2004-02-10 Andrew Cagney <cagney@redhat.com>
10871
10872 * Makefile.in (SFILES): Remove explictly listed tui files.
10873 (SUBDIR_GDBTK_SRCS): Fix path to gdbtk-interp.c.
10874
10875 2004-02-10 Jeff Johnston <jjohnstn@redhat.com>
10876
10877 * ia64-tdep.c (ia64_frame_this_id): Fix tracing print statement
10878 to use paddr functions to format ia64 addresses and long values.
10879 (ia64_frame_prev_register, ia64_sigtramp_frame_this_id): Ditto.
10880 (ia64_sigtramp_frame_prev_register, ia64_access_reg): Ditto.
10881 (get_kernel_table, ia64_find_proc_info_x): Ditto.
10882 (ia64_get_dyn_info_list, ia64_libunwind_this_frame_id): Ditto.
10883 (ia64_libunwind_frame_prev_register, ia64_unwind_dummy_id): Ditto.
10884
10885 2004-02-10 Andrew Cagney <cagney@redhat.com>
10886
10887 * defs.h: Do not include "tui.h".
10888 * gdb_curses.h: New file.
10889 * tui/tui-hooks.h: New file.
10890 * tui/tui.h (tui_update_all_exec_infos): Delete declaration.
10891 (tui_install_hooks, tui_remove_hooks): Delete declarations.
10892 (tui_initialize_io): Delete declaration.
10893 (tui_initialize_readline: Delete redundant declaration.
10894 (struct tui_point): Delete definition.
10895 * tui/tui-data.h (struct tui_point): Define.
10896 * cli/cli-decode.c [TUI]: Include "tui/tui.h".
10897 * utils.c: Include "tui/tui.h".
10898 * tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
10899 * printcmd.c [TUI]: Include "tui/tui.h".
10900 * cli/cli-cmds.c [TUI]: Include "tui/tui.h".
10901 * tui/tui-command.c: Include "gdb_curses.h".
10902 * tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
10903 * tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
10904 * tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
10905 * tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
10906 * tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
10907 * Makefile.in: Update all dependencies.
10908 (tui_hooks_h, gdb_curses_h): Define.
10909 (SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
10910
10911 2004-02-10 Elena Zannoni <ezannoni@redhat.com>
10912
10913 * objfiles.h (struct objfile): Remove unused fields auxf1 and
10914 auxf2. Add comments about some other rarely used fields.
10915
10916 2004-02-10 Andrew Cagney <cagney@redhat.com>
10917
10918 * Makefile.in (init.c): Fix script removing duplicates. Problem
10919 reported by Peter Schauer.
10920
10921 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
10922
10923 * bcache.c (bcache_xmalloc): Use obstack_init instead of
10924 obstack_specify_allocation.
10925 * objfiles.c (allocate_objfile): Ditto.
10926 * solib-sunos.c (solib_add_common_symbols)
10927 (allocate_rt_common_objfile): Ditto.
10928 * symfile.c (reread_symbols): Ditto.
10929 * gdb_obstack.h: Add comment.
10930
10931 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
10932
10933 * linespec.c (decode_line_1, locate_first_half)
10934 (decode_compound, lookup_prefix_sym): Update comments. Delete old
10935 commented out code.
10936
10937 2004-02-09 Daniel Jacobowitz <drow@mvista.com>
10938
10939 * cp-namespace.c (check_one_possible_namespace_symbol): Don't use
10940 obstack_free.
10941
10942 2004-02-09 Andrew Cagney <cagney@redhat.com>
10943
10944 * blockframe.c (find_pc_partial_function): If find_pc_overlay
10945 fails, try find_pc_section. Fix PR c++/1267.
10946 * minsyms.c (lookup_minimal_symbol_by_pc): Use find_pc_section
10947 instead of find_pc_mapped_section.
10948 (lookup_minimal_symbol_by_pc_section): If the SECTION is NULL, do
10949 not default to the section containing PC. Fix PR symtab/1519.
10950
10951 2004-02-09 Andrew Cagney <cagney@redhat.com>
10952
10953 * Makefile.in (mips-tdep.o): Update dependencies.
10954 * mips-tdep.c: Include "frame-unwind.h", "frame-base.h" and
10955 "trad-frame.h".
10956 (mips_unwind_pc): Return the pseudo PC register.
10957 (mips_unwind_dummy_id): New function.
10958 (mips16_fetch_instruction): New function.
10959 (mips32_fetch_instruction): New function.
10960 (struct mips_frame_cache): Define.
10961 (mips_mdebug_frame_cache): New function.
10962 (mips_mdebug_frame_this_id): New function.
10963 (mips_mdebug_frame_prev_register): New function.
10964 (mips_mdebug_frame_unwind): Define.
10965 (mips_mdebug_frame_sniffer): New function.
10966 (mips_mdebug_frame_base_address): New function.
10967 (mips_mdebug_frame_base): Define.
10968 (mips_mdebug_frame_base_sniffer): New function.
10969 (mips_gdbarch_init): Append unwind and base sniffers. Set
10970 unwind_dummy_id.
10971
10972 2004-02-08 Andrew Cagney <cagney@redhat.com>
10973
10974 * frame.c: Print both the register number and name.
10975
10976 * Makefile.in (init.c): Eliminate duplicates. Combine two greps
10977 and a sed into a single sed. Make .c and .o patterns more robust.
10978 (OBS): Delete.
10979 (INIT_FILES): Replace OBS with COMMON_OBS.
10980 (COMMON_OBS): Move DEPFILES and YYOBJ to start of definition.
10981
10982 2004-02-08 Mark Kettenis <kettenis@gnu.org>
10983
10984 * sparc-nat.c (sparc_xfer_wcookie): Try to fetch the cookie using
10985 the PT_WCOOKIE request.
10986
10987 2004-02-08 Andrew Cagney <cagney@redhat.com>
10988
10989 * mips-tdep.c (mips_unwind_pc): New function.
10990 (mips_gdbarch_init): Set mips_unwind_pc.
10991
10992 * frame.c (legacy_saved_regs_this_id): Return a null frame ID.
10993 (get_frame_id): Allow the UNKNOWN_FRAME.
10994 (frame_register_unwind, get_frame_type): Ditto.
10995
10996 * frame.c (legacy_frame_p): Check for DEPRECATED_TARGET_READ_FP_P
10997 and DEPRECATED_FP_REGNUM. Don't assume that the lack of
10998 unwind_dummy_id indicates a legacy frame.
10999
11000 * configure.in (CONFIG_LIB_OBS): Replace with CONFIG_OBS.
11001 * configure: Re-generate.
11002
11003 * mips-tdep.c (mips_gdbarch_init): Group deprecated frame unwind
11004 methods.
11005
11006 2004-02-08 Andrew Cagney <cagney@redhat.com>
11007
11008 * configure.in (CONFIG_ALL): Set to Makefile target, and not
11009 makefile macro.
11010 * configure: Re-generate.
11011 (CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Ditto.
11012 * Makefile.in (SUBDIR_CLI_CLEAN): Delete.
11013 (SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): Delete.
11014 (SUBDIR_CLI_ALL, SUBDIR_GDBTK_ALL): Delete.
11015 (SUBDIR_GDBTK_CLEAN, SUBDIR_GDBTK_INSTALL): Delete.
11016 (SUBDIR_GDBTK_UNINSTALL, SUBDIR_MI_ALL): Delete.
11017 (SUBDIR_MI_CLEAN, SUBDIR_MI_INSTALL): Delete.
11018 (SUBDIR_MI_UNINSTALL, SUBDIR_TUI_ALL): Delete.
11019 (SUBDIR_TUI_CLEAN, SUBDIR_TUI_INSTALL): Delete.
11020 (SUBDIR_TUI_UNINSTALL, SUBDIR_CLI_CLEAN): Delete.
11021
11022 2004-02-07 Andrew Cagney <cagney@redhat.com>
11023
11024 * Makefile.in: Update all dependencies.
11025
11026 * configure.in (CONFIG_INITS, CONFIG_LIB_OBS): Delete.
11027 * configure: Re-generate.
11028 * Makefile.in (INIT_FILES): Replace CONFIG_INITS with CONFIG_SRCS.
11029 (CONFIG_LIB_OBS, CONFIG_INITS): Delete.
11030 (COMMON_OBS): Add "main.o" and "annotate.o".
11031 (ANNOTATE_OBS): Delete.
11032 (OBS): Remove ANNOTATE_OBS.
11033 (DEPFILES): Replace CONFIG_LIB_OBS with CONFIG_LIB_OBS, remove
11034 CONFIG_INITS.
11035 (gdb$(EXEEXT), insight$(EXEEXT)): Do not depend on, or link
11036 against CONFIG_OBS and "main.o".
11037 (SUBDIR_CLI_INITS, SUBDIR_MI_INITS): Delete.
11038 (SUBDIR_TUI_INITS, SUBDIR_GDBTK_INITS): Delete.
11039
11040 * tui/tui-command.c: Include "gdb_string.h", delete register
11041 attribute, use ISO-C function signatures.
11042 * tui/tui-disasm.c, tui/tui-file.c, tui/tui-io.c: Ditto.
11043 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
11044 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Ditto.
11045 * tui/tui.c: Ditto.
11046
11047 * tui/tui-command.c: Change variable and function names to lower
11048 case.
11049 * tui/tui-data.c, tui/tui-disasm.c: Ditto.
11050 * tui/tui-hooks.c, tui/tui-io.c, tui/tui-layout.c: Ditto.
11051 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
11052 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
11053 * tui/tui-winsource.c, tui/tui.c: Ditto.
11054
11055 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
11056
11057 * buildsym.c (free_pending_blocks, finish_block)
11058 (record_pending_block, make_blockvector, end_symtab): Replace
11059 symbol_obstack with objfile_obstack.
11060 * coffread.c (process_coff_symbol, coff_read_struct_type)
11061 (coff_read_enum_type): Ditto.
11062 * cp-namespace.c (initialize_namespace_symtab)
11063 (check_one_possible_namespace_symbol): Ditto.
11064 * dwarf2read.c (new_symbol, dwarf2_const_value, macro_start_file)
11065 (dwarf2_symbol_mark_computed): Ditto.
11066 * dwarfread.c (enum_type, new_symbol, synthesize_typedef): Ditto.
11067 * elfread.c (elf_symtab_read): Ditto.
11068 * hpread.c (hpread_symfile_init, hpread_symfile_init)
11069 (hpread_read_enum_type, hpread_read_function_type)
11070 (hpread_read_doc_function_type, hpread_process_one_debug_symbol):
11071 Ditto.
11072 * jv-lang.c (get_java_class_symtab, add_class_symbol)
11073 (java_link_class_type): Ditto.
11074 * mdebugread.c (parse_symbol, psymtab_to_symtab_1, new_symtab)
11075 (new_symbol): Ditto.
11076 * minsyms.c (install_minimal_symbols): Ditto.
11077 * objfiles.c (allocate_objfile): Remove init of symbol_obstack.
11078 (terminate_minimal_symbol_table): Replace symbol_obstack with
11079 objfile_obstack.
11080 (free_objfile): Remove freeing of symbol_obstack.
11081 * objfiles.h: Remove symbol_obstack field.
11082 * pa64solib.c (add_to_solist): Replace symbol_obstack with
11083 objfile_obstack.
11084 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
11085 symbol_obstack.
11086 (solib_add_common_symbols): Replace symbol_obstack with
11087 objfile_obstack.
11088 * somsolib.c (som_solib_add): Ditto.
11089 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
11090 (common_block_start, common_block_end): Ditto.
11091 * symfile.c (reread_symbols): Remove freeing and init of
11092 symbol_obstack.
11093 (allocate_symtab): Rename symbol_obstack to objfile_obstack.
11094 * symfile.h: Update comment.
11095 * symmisc.c (print_objfile_statistics): Remove symbol_obstack
11096 stats printing.
11097 * symtab.c (symbol_set_names): Replace symbol_obstack with
11098 objfile_obstack.
11099 * symtab.h (struct general_symbol_info, struct minimal_symbol):
11100 Update comments.
11101 * xcoffread.c (read_xcoff_symtab, SYMBOL_DUP, SYMNAME_ALLOC)
11102 (init_stringtab, xcoff_initial_scan): Replace symbol_obstack with
11103 objfile_obstack.
11104
11105 2004-02-07 Andrew Cagney <cagney@redhat.com>
11106
11107 * tui/tui.h: Do not include <stdarg.h>, <string.h>, and
11108 "ansidecl.h". Do not undef "reg" and "chtype". Fix case of
11109 fields and variables.
11110 * tui/tui-wingeneral.h (m_beVisible): Delete macro.
11111 (m_beInvisible): Delete macro.
11112 * tui/tui-data.h: Fix case case fields and variables.
11113 (m_genWinPtrIsNull): Delete macro.
11114 (tui_win_list): Rename winList.
11115 (TUI_SRC_WIN): Rename srcWin.
11116 (TUI_DISASM_WIN): Rename disassemWin.
11117 (TUI_DATA_WIN): Rename dataWin.
11118 (TUI_CMD_WIN): Rename cmdWin.
11119 (m_genWinPtrNotNull): Delete macro.
11120 (m_winPtrIsNull): Delete macro.
11121 (m_winPtrNotNull): Delete macro.
11122 (tui_win_is_source_type): Replace m_winIsSourceType
11123 (tui_win_is_auxillary): Replace m_winIsAuzillary.
11124 (tui_win_has_locator): Replace m_hasLocator.
11125 (tui_set_win_highlight): Replace m_setWinHighlightOn and
11126 m_setWinHighlightOff.
11127 * tui/tui-data.c: Update references.
11128 (tui_win_is_source_type, tui_set_win_highlight): New functions.
11129 (tui_win_has_locator, tui_win_is_auxillary): New functions.
11130 * tui/tui-command.c, tui/tui-disasm.c: Update references.
11131 * tui/tui-io.c, tui/tui-layout.c, tui/tui-regs.c: Ditto.
11132 * tui/tui-regs.h, tui/tui-source.c, tui/tui-stack.c: Ditto.
11133 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
11134 * tui/tui-winsource.c, tui/tui.c: Ditto.
11135
11136 2004-02-07 Mark Kettenis <kettenis@gnu.org>
11137
11138 * sparc-tdep.h (sparc_fetch_wcookie): New prototype.
11139 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Handle
11140 StackGhost.
11141
11142 * sparc-tdep.c (sparc32_frame_prev_register): Rename local
11143 variable `i6' to `i7'.
11144 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
11145
11146 2004-02-07 Andrew Cagney <cagney@redhat.com>
11147
11148 * tui/tui.h (Opaque, OpaquePtr OpaqueList): Delete definition.
11149 (TuiPoint, TuiPointPtr): Ditto.
11150 (TuiStatus, TuiStatusPtr): Ditto.
11151 (TuiWinType, TuiWinTypePtr): Ditto.
11152 (struct tui_point): Rename _TuiPoint.
11153 (tui_get_low_disassembly_address): Rename
11154 tuiGetLowDisassemblyAddress.
11155 (tui_update_all_exec_infos): Rename tuiUpdateAllExecInfos.
11156 (tuiFree): Delete declaration.
11157 (OpaqueFuncPtr, TuiOpaqueFuncPtr): Delete definitions.
11158 (TuiVoidFuncPtr, TuiIntFuncPtr): Delete definitions.
11159 * tui/tui.c (tuiFree): Delete function.
11160 * cli/cli-cmds.c (disassemble_command): Update references.
11161 * tui/tui-data.c, tui/tui-data.h, tui/tui-disasm.c: Ditto.
11162 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
11163 * tui/tui-stack.c, tui/tui-win.c, tui/tui-wingeneral.c: Ditto.
11164 * tui/tui-winsource.c: Ditto.
11165
11166 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
11167
11168 * dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
11169 coffstab_build_psymtabs, elfstab_build_psymtabs)
11170 (stabsect_build_psymtabs): Replace psymbol_obstack with
11171 objfile_obstack.
11172 * dwarf2-frame.c (decode_frame_entry_1): Ditto.
11173 * dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
11174 Ditto.
11175 * dwarfread.c (scan_compilation_units): Ditto.
11176 * elfread.c (elfstab_offset_sections): Ditto.
11177 * hppa-tdep.c (read_unwind_info): Ditto.
11178 * hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
11179 (hpread_end_psymtab): Ditto.
11180 * mdebugread.c (mdebug_build_psymtabs, add_pending)
11181 (parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
11182 Ditto.
11183 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
11184 * objfiles.c (add_to_objfile_sections)
11185 (build_objfile_section_table): Ditto.
11186 (allocate_objfile): Remove init of psymbol_obstack.
11187 (free_objfile): Remove freeing of psymbol_obstack.
11188 * objfiles.h (struct objfile): Remove field
11189 psymbol_obstack. Update comments.
11190 * pa64solib.c (pa64_solib_add_solib_objfile): Replace
11191 psymbol_obstack with objfile_obstack.
11192 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
11193 psymbol_obstack.
11194 * somread.c (som_symfile_offsets, init_import_symbols)
11195 (init_export_symbols): Replace psymbol_obstack with
11196 objfile_obstack.
11197 * somsolib.c (som_solib_add_solib_objfile): Ditto.
11198 * symfile.c (default_symfile_offsets, syms_from_objfile)
11199 (reread_symbols): Remove freeing and init of psymbol_obstack.
11200 (cashier_psymtab): Update comment.
11201 * symmisc.c (print_objfile_statistics): Don't report stats for
11202 psymbol obstack.
11203 * symtab.h (struct general_symbol_info, struct partial_symtab):
11204 Update comments.
11205 * xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
11206 (xcoff_symfile_offsets): Replace psymbol_obstack with
11207 objfile_obstack.
11208
11209 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
11210
11211 * objfiles.h (struct objfile): Add objfile_obstack field.
11212 Remove type_obstack field.
11213
11214 * dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
11215 read_structure_scope read_enumeration, new_symbol): Replace
11216 type_obstack with objfile_obstack.
11217 * dwarfread.c (struct_type, enum_type): Ditto.
11218 * gdbtypes.c (alloc_type, alloc_type_instance, init_type)
11219 (lookup_fundamental_type): Ditto.
11220 * gdbtypes.h (TYPE_ALLOC): Ditto.
11221 * hpread.c (hpread_read_enum_type, hpread_read_function_type)
11222 (hpread_read_doc_function_type, hpread_read_struct_type)
11223 (fix_static_member_physnames, hpread_read_array_type)
11224 (hpread_read_subrange_type, hpread_type_lookup): Ditto.
11225 * jv-lang.c (java_lookup_class, type_from_class, type_from_class)
11226 (java_link_class_type): Ditto.
11227 * mdebugread.c (parse_type): Ditto.
11228 * objfiles.c (allocate_objfile, free_objfile): Ditto.
11229 * solib-sunos.c (solib_add_common_symbols): Ditto.
11230 * stabsread.c (define_symbol, read_type, read_member_functions,
11231 read_cpp_abbrev, read_one_struct_field): Ditto.
11232 * symfile.c (reread_symbols): Ditto.
11233 * symmisc.c (print_objfile_statistics): Ditto.
11234
11235 2004-02-07 Andrew Cagney <cagney@redhat.com>
11236
11237 * tui/tui-data.h (tui_win_element): Rename TuiWinElement.
11238 (tui_exec_info_content): Rename TuiExecInfoContent.
11239 (TuiGenWinInfo, TuiGenWinInfoPtr): Delete definitions.
11240 (TuiWinInfo, TuiWinInfoPtr): Ditto.
11241 (TuiScrollDirection, TuiScrollDirectionPtr): Ditto.
11242 (TuiList, TuiListPtr): Ditto.
11243 (TuiLayoutType, TuiLayoutTypePtr): Ditto.
11244 (TuiDataType, TuiDataTypePtr): Ditto.
11245 (TuiRegisterDisplayType, TuiRegisterDisplayTypePtr): Ditto.
11246 (TuiLineOrAddress, TuiLineOrAddressPtr): Ditto.
11247 (TuiLayoutDef, TuiLayoutDefPtr): Ditto.
11248 (TuiSourceElement, TuiSourceElementPtr): Ditto.
11249 (TuiDataElement, TuiDataElementPtr): Ditto.
11250 (TuiWinElement, TuiWinElementPtr): Ditto.
11251 (TuiDataInfo, TuiDataInfoPtr): Ditto.
11252 (TuiCommandElement, TuiCommandElementPtr): Ditto.
11253 (TuiLocatorElement, TuiLocatorElementPtr): Ditto.
11254 (TuiWhichElement, TuiWhichElementPtr): Ditto.
11255 (TuiSourceInfo, TuiSourceInfoPtr): Ditto.
11256 (TuiCommandInfo, TuiCommandInfoPtr): Ditto.
11257 * tui/tui-command.c, tui/tui-data.c: Update references.
11258 * tui/tui-data.h, tui/tui-disasm.c, tui/tui-layout.c: Ditto.
11259 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
11260 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
11261 * tui/tui-winsource.c, tui/tui.c: Ditto.
11262
11263 2004-02-07 Mark Kettenis <kettenis@gnu.org>
11264
11265 * dwarf2-frame.h: Update copyright.
11266 (enum dwarf2_frame_reg_rule): New.
11267 (struct dwarf2_frame_state_reg): New.
11268 (dwarf2_frame_sniffer, dwarf2_frame_base_sniffer): Make extern.
11269 * dwarf2-frame.c: Update copyright.
11270 (enum dwarf2_reg_rule): Remove.
11271 (struct dwarf2_frame_state): Remove defenition of `struct
11272 dwarf2_frame_state_reg'.
11273 (read_reg): Call get_frame_arch to get the architecture instead of
11274 using CURRENT_GDBARCH.
11275 (execute_cfa_program): Prefix old `enum dwarf2_reg_rule' tags with
11276 DWARF2_FRAME_.
11277 (dwarf2_frame_init_reg): New function.
11278 (dwarf2_frame_cache): Call get_frame_arch to get the architecture
11279 instead of using CURRENT_GDBARCH. Call dwarf2_frame_init_reg to
11280 initialize the register state. Prefix old `enum dwarf2_reg_rule'
11281 tags with DWARF2_FRAME_.
11282 (dwarf2_frame_prev_register): Call get_frame_arch to get the
11283 architecture instead of using CURRENT_GDBARCH. Prefix old `enum
11284 dwarf2_reg_rule' tags with DWARF2_FRAME_.
11285
11286 2004-02-06 Andrew Cagney <cagney@redhat.com>
11287
11288 * tui/tui-data.h (struct tui_list): Rename _TuiList.
11289 (enum tui_data_type): Rename _TuiDataType.
11290 (struct tui_layout_def): Rename _TuiLayoutDef.
11291 (struct tui_source_element): Rename _TuiSourceElement.
11292 (struct tui_data_element): Rename _TuiDataElement.
11293 (struct tui_command_element): Rename _TuiCommandElement.
11294 (struct tui_locator_element): Rename _TuiLocatorElement.
11295 (union tui_which_element): Define.
11296 (struct tui_win_element): Rename _TuiWinElement.
11297 (struct tui_data_info): Rename _TuiDataInfo.
11298 (struct tui_source_info): Rename _TuiSourceInfo.
11299 (struct tui_command_info): Rename _TuiCommandInfo.
11300 (tui_initialize_static_data): Rename initializeStaticData.
11301 (tui_alloc_generic_win_info): Rename allocGenericWinInfo.
11302 (tui_alloc_win_info): Rename allocWinInfo.
11303 (tui_init_generic_part): Rename initGenericPart.
11304 (tui_init_win_info): Rename initWinInfo.
11305 (tui_alloc_content): Rename allocContent.
11306 (tui_add_content_elements): Rename addContentElements.
11307 (tui_init_content_element): Rename initContentElement.
11308 (tui_free_window): Rename freeWindow.
11309 (tui_free_win_content): Rename freeWinContent.
11310 (tui_free_data_content): Rename freeDataContent.
11311 (tui_free_all_source_wins_content): Rename
11312 freeAllSourceWinsContent.
11313 (tui_del_window): Rename tuiDelWindow.
11314 (tui_del_data_windows): Rename tuiDelDataWindows.
11315 (tui_partial_win_by_name): Rename partialWinByName.
11316 (tui_win_name): Rename winName.
11317 (tui_current_layout): Rename currentLayout.
11318 (tui_set_current_layout_to): Rename setCurrentLayoutTo.
11319 (tui_term_height): Rename termHeight.
11320 (tui_set_term_height_to): Rename setTermHeightTo.
11321 (tui_term_width): Rename termWidth.
11322 (tui_set_term_width_to): Rename setTermWidthTo.
11323 (tui_set_gen_win_origin): Rename setGenWinOrigin.
11324 (tui_locator_win_info_ptr): Rename locatorWinInfoPtr.
11325 (tui_source_exec_info_win_ptr): Rename tui_gen_win_info.
11326 (tui_disassem_exec_info_win_ptr): Rename disassemExecInfoWinPtr.
11327 (tui_source_windows): Rename sourceWindows.
11328 (tui_clear_source_windows): Rename clearSourceWindows.
11329 (tui_clear_source_windows_detail): Rename
11330 clearSourceWindowsDetail.
11331 (tui_clear_win_detail): Rename clearWinDetail.
11332 (tui_add_to_source_windows): Rename tuiAddToSourceWindows.
11333 (tui_default_tab_len): Rename tuiDefaultTabLen.
11334 (tui_set_default_tab_len): Rename tuiSetDefaultTabLen.
11335 (tui_win_with_focus): Rename tuiWinWithFocus.
11336 (tui_set_win_with_focus): Rename tuiSetWinWithFocus.
11337 (tui_layout_def): Rename tuiLayoutDef.
11338 (tui_win_resized): Rename tuiWinResized.
11339 (tui_set_win_resized_to): Rename tuiSetWinResizedTo.
11340 (tui_next_win): Rename tuiNextWin.
11341 (tui_prev_win): Rename tuiPrevWin.
11342 (tui_add_to_source_windows): Rename addToSourceWindows.
11343 * tui/tui-winsource.c, tui/tui-win.c: Update references.
11344 * tui/tui-layout.c, tui/tui-source.c: Ditto.
11345 * tui/tui-stack.c, tui/tui-io.c: Ditto.
11346 * tui/tui.c, tui/tui-data.c: Ditto.
11347 * tui/tui-interp.c, tui/tui-data.c: Ditto.
11348 * tui/tui-disasm.c, tui/tui-command.c: Ditto.
11349
11350 * tui/tui-source.h: Update copyright. Include "tui-data.h".
11351 (struct symtab): Declare.
11352 (tui_set_source_content): Rename tuiSetSourceContent.
11353 (tui_show_symtab_source): Rename tuiShowSource.
11354 (tui_source_is_displayed): Rename tuiSourceIsDisplayed.
11355 (tui_vertical_source_scroll): Rename tuiVerticalSourceScroll.
11356 * tui/tui-source.c: Update copyright. Update references.
11357 * tui/tui-win.c, tui/tui-winsource.c: Update references.
11358 * tui/tui-stack.c: Update references.
11359
11360 * tui/tui-win.h: Update copyright. Include "tui-data.h".
11361 (struct tui_win_info): Declare.
11362 (tui_scroll_forward): Rename tuiScrollForward.
11363 (tui_scroll_backward): Rename tuiScrollBackward.
11364 (tui_scroll_left): Rename tuiScrollLeft.
11365 (tui_scroll_right): Rename tuiScrollRight.
11366 (tui_set_win_focus_to): Rename tuiSetWinFocusTo.
11367 (tui_resize_all): Rename tuiResizeAll.
11368 (tui_refresh_all_win): Rename tuiRefreshAll.
11369 (tui_sigwinch_handler): Rename tuiSigwinchHandler.
11370 * tui/tui-layout.c, * tui/tui-io.c: Update references.
11371 * tui/tui-wingeneral.h, * tui/tui.c: Update references.
11372 * tui/tui-disasm.c, * tui/tui-command.c: Update references.
11373
11374 * tui/tui-windata.h: Update copyright. Include "tui-data.h".
11375 (tui_erase_data_content): Rename tuiEraseDataContent.
11376 (tui_display_all_data): Rename tuiDisplayAllData.
11377 (tui_check_data_values): Rename tuiCheckDataValues.
11378 (tui_display_data_from_line): Rename tuiDisplayDataFromLine.
11379 (tui_first_data_item_displayed): Rename tuiFirstDataItemDisplayed.
11380 (tui_first_data_element_no_in_line): Rename
11381 tuiFirstDataElementNoInLine.
11382 (tui_delete_data_content_windows): Rename
11383 tuiDeleteDataContentWindows.
11384 (tui_refresh_data_win): Rename tuiRefreshDataWin.
11385 (tui_display_data_from): Rename tuiDisplayDataFrom.
11386 (tui_vertical_data_scroll): Rename tuiVerticalDataScroll.
11387 * tui/tui-windata.c, tui/tui-hooks.c: Update references.
11388 * tui/tui-win.c, tui/tui-regs.c: Update references.
11389 * tui/tui-layout.c, tui/tui.c: Update references.
11390
11391 * tui/tui-wingeneral.h: Update copyright.
11392 (m_allBeVisible): Delete macro.
11393 (m_allBeInvisible): Delete macro.
11394 (struct tui_gen_win_info): Declare.
11395 (struct tui_win_info): Declare.
11396 (tui_unhighlight_win): Rename unhighlightWin.
11397 (tui_make_visible, tui_make_invisible): Replace makeVisible.
11398 (tui_make_all_visible, tui_make_all_invisible): Replace makeAllVisible.
11399 (tui_make_window): Rename makeWindow.
11400 (tui_copy_win): Rename copyWin.
11401 (tui_box_win): Rename boxWin.
11402 (tui_highlight_win): Rename highlightWin.
11403 (tui_check_and_display_highlight_if_needed): Rename
11404 checkAndDisplayHighlightIfNeeded.
11405 (tui_refresh_all): Rename refreshAll.
11406 (tui_delete_win): Rename tuiDelwin.
11407 (tui_refresh_win): Rename tuiRefreshWin.
11408 * tui/tui-wingeneral.c (make_visible): Rename makeVisible.
11409 (tui_make_visible, tui_make_invisible): New functions.
11410 (tui_make_all_visible, tui_make_all_invisible): New functions.
11411 (make_all_visible): Rename makeAllVisible.
11412 * tui/tui-winsource.c, tui/tui-windata.c: Update references.
11413 * tui/tui-data.c, tui/tui-winsource.c: Update references.
11414 * tui/tui-windata.c, tui/tui-win.c: Update references.
11415 * tui/tui-regs.c, tui/tui-layout.c: Update references.
11416 * tui/tui-data.h (struct tui_gen_win_info): Rename _TuiGenWinInfo.
11417
11418 2004-02-06 Mark Kettenis <kettenis@gnu.org>
11419
11420 * proc-api.c (write_with_trace): Initialize local variable to
11421 silence compiler warning.
11422
11423 2004-02-06 Andrew Cagney <cagney@redhat.com>
11424
11425 * tui/tui-source.h: Do not include "defs.h".
11426 (struct tui_win_info): Declare.
11427 (tui_set_source_content_nil): Declare.
11428 * tui/tui-data.h (struct tui_win_info): Rename _TuiWinInfo.
11429 (union tui_line_or_address): Rename _TuiLineOrAddress.
11430 * tui/tui-winsource.h: Update copyright. Include "tui-data.h".
11431 (tui_update_source_window): Rename tuiUpdateSourceWindow.
11432 (tui_update_source_window_as_is): Rename
11433 tuiUpdateSourceWindowAsIs.
11434 (tui_update_source_windows_with_addr): Rename
11435 tuiUpdateSourceWindowsWithAddr.
11436 (tui_update_source_windows_with_line): Rename
11437 tuiUpdateSourceWindowsWithLine.
11438 (tui_clear_source_content): Rename tuiClearSourceContent.
11439 (tui_erase_source_content): Rename tuiEraseSourceContent.
11440 (tui_set_source_content_nil): Rename tuiSetSourceContentNil.
11441 (tui_show_source_content): Rename tuiShowSourceContent.
11442 (tui_horizontal_source_scroll): Rename tuiHorizontalSourceScroll.
11443 (tui_set_exec_info_content): Rename tuiSetExecInfoContent.
11444 (tui_show_exec_info_content): Rename tuiShowExecInfoContent.
11445 (tui_erase_exec_info_content): Rename tuiEraseExecInfoContent.
11446 (tui_clear_exec_info_content): Rename tuiClearExecInfoContent.
11447 (tui_update_exec_info): Rename tuiUpdateExecInfo.
11448 (tui_set_is_exec_point_at): Rename tuiSetIsExecPointAt.
11449 (tui_alloc_source_buffer): Rename tuiAllocSourceBuffer.
11450 (tui_line_is_displayed): Rename tuiLineIsDisplayed.
11451 (tui_addr_is_displayed): Rename tuiAddrIsDisplayed.
11452 (struct tui_win_info): Declare.
11453 * tui/tui-stack.c: Update references.
11454 * tui/tui-layout.c, tui/tui-winsource.c: Ditto.
11455 * tui/tui-win.c, tui/tui-source.c: Ditto.
11456 * tui/tui.c, tui/tui-disasm.c: Ditto.
11457
11458 2004-02-06 Mark Kettenis <kettenis@gnu.org>
11459
11460 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Fix calculation
11461 of UCONTEXT_ADDR. Fixes PR backtrace/1545.
11462
11463 2004-02-05 Mark Kettenis <kettenis@gnu.org>
11464
11465 * infrun.c (handle_inferior_event): Allow for breakpoint
11466 instructions to generate a SIGSEGV in addition to SIGTRAP, SIGILL
11467 and SIGEMT. Update comments.
11468 * NEWS (Revised SPARC target): Mention support for non-executable
11469 stack.
11470
11471 2004-02-04 Mark Kettenis <kettenis@gnu.org>
11472
11473 * target.h (target_object): Add TARGET_OBJECT_WCOOKIE.
11474 * inftarg.c: Update copyright year.
11475 (child_xfer_partial): Add support for TARGET_OBJECT_WCOOKIE.
11476 * sparc-nat.c: Include "target.h" and "gdb_assert.h".
11477 (sparc_xfer_wcookie): New function.
11478 * sparc-tdep.c (sparc_fetch_wcookie): New function.
11479 * Makefile.in (sparc-nat.o): Update dependencies.
11480 * config/sparc/nm-nbsd.h: Include "target.h".
11481 (NATIVE_XFER_WCOOKIE): New define.
11482 (sparc_xfer_wcookie): New prototype.
11483
11484 2004-02-04 Andrew Cagney <cagney@redhat.com>
11485
11486 * m68k-tdep.c (m68k_saved_pc_after_call): Delete #ifdef
11487 SYSCALL_TRAP function.
11488 (m68k_gdbarch_init): Delete #ifdef SYSCALL_TRAP code.
11489
11490 2004-02-04 Andrew Cagney <cagney@redhat.com>
11491 Daniel Jacobowitz <drow@mvista.com>
11492
11493 * objfiles.h: Delete comments refering to inside_entry_func and
11494 DEPRECATED_FRAME_CHAIN_VALID.
11495 * defs.h (inside_entry_func): Update prototype..
11496 * blockframe.c (inside_entry_func): Rename to
11497 legacy_inside_entry_func. Add new inside_entry_func taking a frame.
11498 * frame.c (get_prev_frame): Pass the frame to inside_entry_func.
11499
11500 2004-02-03 Jeff Johnston <jjohnstn@redhat.com>
11501
11502 * breakpoint.c (struct captured_parse_breakpoint_args): Move
11503 outside of #ifdef SOLIB_ADD region.
11504 (do_restore_lang_radix_cleanup): Ditto.
11505 (resolve_pending_breakpoint): Ditto.
11506
11507 2004-02-03 Andrew Cagney <cagney@redhat.com>
11508
11509 * ia64-tdep.c (read_sigcontext_register): Delete unused function.
11510 (process_note_abi_tag_sections): Delete unused function.
11511 (ia64_read_fp): Delete unused function.
11512 (gdbarch_extract_struct_value_address): Delete declaration.
11513
11514 2004-02-02 Andrew Cagney <cagney@redhat.com>
11515
11516 * vax-tdep.c (vax_frame_chain): Delete call to
11517 deprecated_inside_entry_file.
11518 * ns32k-tdep.c (ns32k_frame_chain): Ditto.
11519
11520 2004-02-02 Mark Kettenis <kettenis@gnu.org>
11521
11522 * dwarf2-frame.c (dwarf2_frame_cache): Deal with a return address
11523 column that's "empty" or "same value" when eliminating REG_RA
11524 rules.
11525
11526 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
11527
11528 * NEWS: Add information about new pending breakpoint support.
11529
11530 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
11531
11532 * breakpoint.h (struct breakpoint): Add new flag, from_tty,
11533 and pending fields for pending breakpoint support.
11534 * breakpoint.c (breakpoint_enabled): Add check for not pending.
11535 (condition_command): Only parse condition if not a pending
11536 breakpoint.
11537 (print_one_breakpoint): Add support for pending breakpoints.
11538 (describe_other_breakpoints): Add checks to verify we are not
11539 dealing with pending breakpoints.
11540 (check_duplicates): Don't check pending breakpoints.
11541 (set_raw_breakpoint): Initialize pending flag.
11542 (do_restore_lang_radix_cleanup): New cleanup routine.
11543 (resolve_pending_breakpoint): New function.
11544 (re_enable_breakpoints_in_shlibs): Try and resolve any
11545 pending breakpoints via resolve_pending_breakpoint.
11546 (mention): Add pending breakpoint support.
11547 (parse_breakpoint_sals): Add new parameter to pass to
11548 decode_line_1 to indicate silent errors when files or functions
11549 are not found. Change all callers.
11550 (do_captured_parse_breakpoint): New function.
11551 (break_command_1): Change prototype to return an rc value and to
11552 take an optional pending breakpoint pointer. Support creating
11553 a pending breakpoint if a "not found" form of error occurs when
11554 parsing the breakpoint. Also support resolving an existing pending
11555 breakpoint and be silent if the resolution fails.
11556 (create_breakpoints): Change prototype to take pending breakpoint
11557 pointer. When resolving a pending breakpoint, use the new pointer
11558 to provide a conditional or commands added by the end-user.
11559 (delete_breakpoint): Add appropriate check for pending.
11560 (breakpoint_re_set_one): Ditto.
11561 (do_enable_breakpoint): Ditto.
11562
11563 2004-02-02 David Carlton <carlton@kealia.com>
11564
11565 * valops.c (enum oload_classification): New.
11566 (find_overload_match): Break implementation into separate
11567 functions; delete #if 0'd code; look for symbols within
11568 namespaces.
11569 (find_oload_champ_namespace,find_oload_champ_namespace_loop)
11570 (find_oload_champ,oload_method_static,classify_oload_match): New.
11571 * cp-support.h: Add declaration for cp_func_name; update
11572 declaration for make_symbol_overload_list.
11573 * cp-support.c (cp_func_name): New.
11574 (overload_list_add_symbol): Fix comment, use
11575 SYMBOL_LINKAGE_NAME and SYMBOL_NATURAL_NAME.
11576 (make_symbol_overload_list): Take a function name and a namespace
11577 instead of a symbol; change implementation.
11578 (make_symbol_overload_list_using): New.
11579 (make_symbol_overload_list_qualified, read_in_psymtabs): New.
11580
11581 2004-02-02 Fred Fish <fnf@redhat.com>
11582
11583 * main.c (gdb_stdtarg): Move definition to group with other
11584 gdb_stdtarg definitions and update copyright years.
11585 * remote-sim.c (gdb_os_write_stderr): Write output to
11586 gdb_stdtargerr stream instead of gdb_stdtarg stream.
11587 (gdb_os_flush_stderr): Flush gdb_stdtargerr steam instead of
11588 gdb_stderr stream and update copyright years.
11589
11590 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
11591
11592 * Makefile.in (mips-linux-nat.o): Update dependencies.
11593 * mips-linux-nat.c: Include mips-tdep.h.
11594
11595 2004-02-01 Roland McGrath <roland@redhat.com>
11596
11597 * sol-thread.c (sol_thread_xfer_partial): New function.
11598 (init_sol_thread_ops): Use that for to_xfer_partial hook.
11599 (init_sol_core_ops): Likewise.
11600
11601 * procfs.c (procfs_xfer_partial): New function.
11602 (init_procfs_ops): Use that for procfs_ops.to_xfer_partial.
11603 * Makefile.in (procfs.o): Add $(auxv_h) dep.
11604
11605 * config/nm-linux.h (NATIVE_XFER_AUXV): New macro, uses auxv.c's
11606 procfs_xfer_auxv function.
11607
11608 * procfs.c (procfs_make_note_section): If we can read
11609 TARGET_OBJECT_AUXV data, add an NT_AUXV note containing it.
11610 * linux-proc.c (linux_make_note_section): Likewise.
11611
11612 * auxv.h: New file.
11613 * auxv.c: New file.
11614 * Makefile.in (auxv_h): New variable.
11615 (COMMON_OBS): Add auxv.o here.
11616 (auxv.o): New target.
11617
11618 * corelow.c (core_xfer_partial): New function.
11619 (init_core_ops): Use it for core_ops.to_xfer_partial.
11620
11621 * target.h (enum target_object): Add TARGET_OBJECT_AUXV.
11622 * inftarg.c (child_xfer_partial): Support it using NATIVE_XFER_AUXV
11623 macro if that is defined.
11624
11625 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
11626
11627 * breakpoint.c (bpstat_stop_status): Take a ptid_t argument,
11628 and check the specified thread for each breakpoint.
11629 * breakpoint.h (bpstat_stop_status): Update prototype.
11630 * infrun.c (handle_inferior_event): Update calls to
11631 bpstat_stop_status.
11632
11633 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
11634
11635 * Makefile.in (cli-cmds.o): Add $(readline_h).
11636
11637 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
11638
11639 * cli/cli-cmds.c: Include readline.h.
11640 (complete_command): Pass the start of the last word to
11641 complete_line.
11642
11643 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
11644
11645 * breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
11646 argument, and change first argument to a CORE_ADDR.
11647 * breakpoint.h (bpstat_stop_status): Update prototype.
11648 * infrun.c (adjust_pc_after_break): Add a new comment.
11649 (handle_inferior_event): Update calls to bpstat_stop_status.
11650
11651 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
11652
11653 * breakpoint.h: Update copyright years.
11654
11655 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
11656
11657 * breakpoint.c (software_breakpoint_inserted_here_p): New function.
11658 (bpstat_stop_status): Don't decrement PC.
11659 * breakpoint.h (software_breakpoint_inserted_here_p): Add
11660 prototype.
11661 * infrun.c (adjust_pc_after_break): New function.
11662 (handle_inferior_event): Call it, early. Remove later references
11663 to DECR_PC_AFTER_BREAK.
11664 (normal_stop): Add commentary.
11665
11666 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
11667
11668 * breakpoint.c (breakpoint_re_set_one): Add missing chunk of
11669 2004-01-27 double-free fix.
11670
11671 2004-01-31 Mark Kettenis <kettenis@gnu.org>
11672
11673 * sparc-tdep.c (sparc_fetch_wcookie): New function.
11674 (sparc32_frame_prev_register): Handle StackGhost.
11675 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
11676
11677 2004-01-29 Roland McGrath <roland@redhat.com>
11678
11679 * configure.in (NEW_PROC_API): Also match solaris2.9 for this test.
11680 * configure: Regenerated.
11681
11682 * procfs.c: Include gdb_string.h for str* decls, otherwise warnings.
11683 * Makefile.in (procfs.o): Add dep.
11684
11685 2004-01-28 Andrew Cagney <cagney@redhat.com>
11686
11687 * tui/tui-stack.h: Update copyright.
11688 (struct frame_info): Add opaque declaration.
11689 (tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
11690 (tui_show_locator_content): Rename tuiShowLocatorContent.
11691 (tui_show_frame_info): Rename tuiShowFrameInfo.
11692 * tui/tui-stack.c: Update copyright. Update references.
11693 * tui/tui-winsource.c: Update references.
11694 * tui/tui-win.c: Update references.
11695 * tui/tui-layout.c: Update references.
11696 * tui/tui-hooks.c: Update copyright, update references.
11697 * tui/tui.c: Update copyright, update references.
11698 * tui/tui-disasm.c: Update references.
11699
11700 2004-01-28 David Carlton <carlton@kealia.com>
11701
11702 * dwarf2read.c (add_partial_structure): Use demangled name if
11703 namespace equals "".
11704
11705 2004-01-27 Jim Blandy <jimb@redhat.com>
11706
11707 Clean up misapplied patch:
11708 * dwarf2read.c (determine_prefix): Change one of the two forward
11709 declarations for 'determine_prefix_aux' to a declaration for this.
11710 (read_func_scope): Use cu->language, not cu_language. Pass 'cu'
11711 argument to 'die_specification'.
11712
11713 * dwarf2read.c (read_func_scope): Re-indent comment.
11714
11715 2004-01-27 Paul N. Hilfinger <hilfinger@gnat.com>
11716
11717 * breakpoint.c (breakpoint_re_set_one): Set b->cond, b->val, and
11718 b->exp to NULL after freeing so that error during re-parsing or
11719 evaluation of expressions associated with breakpoint don't
11720 eventually lead to re-freeing of storage.
11721 Committed by Andrew Cagney.
11722
11723 2004-01-27 Andrew Cagney <cagney@redhat.com>
11724
11725 * source.c (ambiguous_line_spec): Delete undefined declaration.
11726 * m32r-rom.c (m32r_set_board_address): Delete unused function.
11727 (m32r_set_server_address, m32r_set_download_path): Ditto.
11728 * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
11729
11730 2004-01-27 Daniel Jacobowitz <drow@mvista.com>
11731
11732 * dwarf2read.c: Update calls to changed and renamed functions, and
11733 references to moved variables.
11734
11735 (struct dwarf2_cu): Add first_fn, last_fn, cached_fn,
11736 language, language_defn, list_in_scope, and ftypes members.
11737 (cu_first_fn, cu_last_fn, cu_cached_fn, cu_language)
11738 (cu_language_defn, list_in_scope, ftypes, cu_header_offset)
11739 (baseaddr): Remove globals.
11740
11741 (dwarf_attr): Renamed to dwarf2_attr. Add CU argument.
11742 (set_cu_language, die_is_declaration, die_specification)
11743 (determine_prefix, determin_prefix_aux, class_name, namespace_name)
11744 (dwarf2_linkage_name, dwarf2_name, dwarf2_extension)
11745 (dwarf2_get_ref_die_offset, dwarf2_fundamental_type)
11746 (initialize_cu_func_list, add_to_cu_func_list): Add CU argument.
11747
11748 (dwarf2_build_psymtabs_hard): Add local baseaddr. Initialize
11749 cu.list_in_scope. Don't initialize cu_header_offset.
11750 (add_partial_symbol): Add local baseaddr.
11751 (psymtab_to_symtab_1): Add local baseaddr. Use
11752 objfile->section_offsets for consistency. Don't initialize
11753 cu_header_offset; do initialize cu.header.offset and
11754 cu.list_in_scope.
11755 (read_file_scope, read_func_scope, read_lexical_block_scope)
11756 (dwarf_decode_lines, new_symbol): Add local baseaddr.
11757
11758 2004-01-27 Michael Chastain <mec.gnu@mindspring.com>
11759
11760 * PROBLEMS: Add gdb/1516.
11761
11762 2003-12-29 Robert Millan <robertmh@gnu.org>
11763
11764 Patch committed by Andrw Cagney.
11765 * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
11766 * configure.tgt: Match knetbsd*-gnu.
11767
11768 2004-01-26 Andrew Cagney <cagney@redhat.com>
11769
11770 * breakpoint.c (catch_command_1): Delete #ifdef code.
11771 (catch_fork_command_1): Delete #ifdef wrapper.
11772 (catch_exec_command_1): Ditto.
11773 (catch_load_command_1): Ditto.
11774 (catch_unload_command_1): Ditto.
11775
11776 * breakpoint.c (watchpoint_check): Delete #if0ed variable.
11777 (catch_breakpoint): Delete #if0ed function.
11778 (disable_catch_breakpoint): Ditto.
11779 (delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
11780 (disable_catch, enable_catch, delete_catch): Ditto.
11781
11782 2004-01-26 Andrew Cagney <cagney@redhat.com>
11783
11784 * remote.c (echo_check, quit_flag): Delete variables.
11785 (cisco_kernel_mode): Delete variable.
11786 (minitelnet_return, tty_input, escape_count): Delete variables.
11787 (remote_cisco_mode): Delete variable.
11788 (remote_cisco_open, remote_cisco_close): Delete function.
11789 (remote_cisco_mourn, remote_cisco_wait): Delete function.
11790 (init_remote_cisco_ops): Delete function.
11791 (_initialize_remote): Do not install "remote cisco" code.
11792 (read_frame): Delete cisco specific code.
11793 (remote_info_process): Delete function.
11794 (remote_wait): Delete cisco specific code.
11795 (remote_cisco_section_offsets): Delete function.
11796 (remote_cisco_objfile_relocate): Delete function.
11797 (remote_async_wait): Delete cisco specific code.
11798 (minitelnet, readtty, readsocket): Delete function.
11799
11800 2004-01-26 Andrew Cagney <cagney@redhat.com>
11801
11802 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS): Deprecate. Add
11803 comments mentioning extract_returned_value_address.
11804 * infcmd.c (print_return_value): Update. Add comments on
11805 extract_returned_value_address.
11806 * stack.c (return_command): Add comments on
11807 extract_returned_value_address.
11808 * values.c: Update comment.
11809 * m32r-tdep.c: Update comment.
11810 * sparc-tdep.c: Update comment.
11811 * ia64-tdep.c (ia64_use_struct_convention): Update comment.
11812 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
11813 * sh64-tdep.c (sh64_gdbarch_init): Update.
11814 * sh-tdep.c (sh_gdbarch_init): Update.
11815 * s390-tdep.c (s390_gdbarch_init): Update.
11816 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
11817 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
11818 * m68k-tdep.c (m68k_gdbarch_init): Update.
11819 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
11820 * m32r-tdep.c (m32r_gdbarch_init): Update.
11821 * ia64-tdep.c (ia64_gdbarch_init): Update.
11822 * h8300-tdep.c (h8300_gdbarch_init): Update.
11823 * frv-tdep.c (frv_gdbarch_init): Update.
11824 * arm-tdep.c (arm_gdbarch_init): Update.
11825 * alpha-tdep.c (alpha_gdbarch_init): Update.
11826
11827 2004-01-26 Andrew Cagney <cagney@redhat.com>
11828
11829 * dwarf2loc.c (dwarf_expr_frame_base): Use SYMBOL_OPS instead of
11830 SYMBOL_LOCATION_FUNCS
11831 (dwarf2_loclist_funcs, dwarf2_locexpr_funcs): Change type to
11832 "struct symbol_ops".
11833 * dwarf2loc.h (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Change
11834 type to "struct symbol_ops".
11835 * symtab.h (struct symbol_ops): Rename "struct location_funcs".
11836 (struct symbol): Replace ".aux_value.loc.funcs" and
11837 ".aux_value.loc.baton" with ".ops" and ".aux_value.ptr".
11838 (SYMBOL_OBJFILE): Delete macro.
11839 (SYMBOL_LOCATION_FUNCS): Delete macro.
11840 (SYMBOL_LOCATION_BATON): Update.
11841 * dwarf2read.c (dwarf2_symbol_mark_computed): Set SYMBOL_OPS
11842 intead of SYMBOL_LOCATION_FUNCS.
11843 * ax-gdb.c (gen_var_ref): Ditto.
11844 * printcmd.c (address_info): Ditto.
11845 * findvar.c (read_var_value): Ditto.
11846 (symbol_read_needs_frame): Ditto.
11847
11848 2004-01-26 Andrew Cagney <cagney@redhat.com>
11849
11850 * dwarf2read.c (read_func_scope): Document frame-base hack.
11851
11852 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11853
11854 * infcmd.c (print_return_value): Plug memory leak; delete
11855 ui_stream object. Rename argument `structure_return' to
11856 `struct_return'.
11857
11858 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11859
11860 * infcmd.c (print_return_value): Wrap long lines.
11861 (finish_command_continuation, finish_command): Remove unused
11862 variable `funcaddr'. Fix some coding-standards problems.
11863
11864 * sparc-tdep.c (sparc_regset_from_core_section): Check whether
11865 SECT_SIZE is large enough, not whether it's exactly the right size.
11866 (sparc32_gdbarch_init): Initialize TDEP->sizeof_gregset and
11867 TDEP->fpregset to zero.
11868
11869 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Also supply the
11870 floating-point registers for traditional NetBSD core files.
11871 (sparc32nbsd_init_abi): Initialize TDEP->sizeof_gregset and
11872 TDEP->sizeof_fpregset here.
11873
11874 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11875
11876 * sparc-tdep.h (sparc32nbsd_sigcontext_saved_regs): New prototype.
11877 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): New
11878 function with code split out from
11879 sparc32nbsd_sigcontext_frame_cache.
11880 (sparc32nbsd_sigcontext_frame_cache): Use
11881 sparc32nbsd_sigcontext_saved_regs.
11882 (_initialize_sparc32nbsd_tdep): Don't register OS ABI handler for
11883 OpenBSD.
11884 * sparcobsd-tdep.c: New file.
11885 * Makefile.in (ALLDEPFILES): Add sparcobsd-tdep.c.
11886 (sparcobsd-tdep.o): New dependency.
11887 * configure.tgt (sparc-*-openbsd*): Set gdb_target to obsd.
11888 * config/sparc/obsd.mt: New file.
11889
11890 * sparc-tdep.c (sparc32_gdbarch_init): Don't require
11891 TDEP->fpregset to be initialized to enable core file register
11892 sets.
11893
11894 2004-01-24 Mark Kettenis <kettenis@gnu.org>
11895
11896 * sparc64-tdep.h (struct frame_info, struct trad_frame_saved_reg):
11897 Add opaque declarations.
11898 (sparc64nbsd_sigcontext_saved_regs): New prototype.
11899 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): New
11900 function with code split out from
11901 sparc64nbsd_sigcontext_frame_cache.
11902 (sparc64nbsd_sigcontext_frame_cache): Use
11903 sparc64nbsd_sigcontext_saved_regs.
11904 (_initialize_sparc64nbsd_tdep): Don't register OS ABI handler for
11905 OpenBSD.
11906 * sparc64obsd-tdep.c: New file.
11907 * Makefile.in (ALLDEPFILES): Add sparc64obsd-tdep.c.
11908 (sparc64obsd-tdep.o): New dependency.
11909 * configure.tgt (sparc64-*-openbsd*): Set gdb_target to obsd64 and
11910 gdb_osabi to GDB_OSABI_OPENBSD_ELF.
11911 * config/sparc/obsd64.mt: New file.
11912
11913 * sparc-tdep.c (sparc_fetch_instruction): Return zero if we can't
11914 read the instruction at PC.
11915
11916 * sparcnbsd-tdep.c (GDB_OSABI_NETBSD_CORE): Define, based on the
11917 value of GDB_OSABI_DEFAULT.
11918 (sparcnbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_CORE
11919 instead of GDB_OSABI_NETBSD_AOUT.
11920
11921 2004-01-24 Nick Roberts <nick@nick.uklinux.net>
11922
11923 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-cmds.h: Update
11924 copyright.
11925
11926 2004-01-23 Andrew Cagney <cagney@redhat.com>
11927
11928 * printcmd.c (display_command): Replace tui_set_display call with
11929 tui_set_layout_for_display_command.
11930 * tui/tui.h (enum tui_win_type): Define.
11931 (tui_set_layout): Delete declaration.
11932 (tui_set_layout_for_display_command): Rename set_tui_layout.
11933 * tui/tui-data.h (enum tui_layout_type): Define.
11934 * tui/tui-layout.h: Update copyright. Include "tui-data.h" and
11935 "tui.h".
11936 (tui_add_win_to_layout): Rename tuiAddWinToLayout.
11937 (tui_default_win_height): Rename tuiDefaultWinHeight.
11938 (tui_default_win_viewport_height): Rename
11939 tuiDefaultWinViewportHeight.
11940 (tui_set_layout): RenametuiSetLayout.
11941 * tui/tui-layout.c: Update references.
11942 * tui/tui.c: Update references.
11943 * tui/tui-disasm.c: Update references.
11944
11945 2004-01-23 David Carlton <carlton@kealia.com>
11946
11947 Partial workaround for PR c++/1511:
11948 * cp-namespace.c: Include frame.h.
11949 (cp_lookup_transparent_type): New
11950 (cp_lookup_transparent_type_loop): New.
11951 * cp-support.h: Declare cp_lookup_transparent_type.
11952 * symtab.c (basic_lookup_transparent_type): Renamed from
11953 lookup_transparent_type.
11954 (lookup_transparent_type): Replace old body by a call to
11955 current_language->la_lookup_transparent_type.
11956 * symtab.h: Update copyright. Declare
11957 basic_lookup_transparent_type.
11958 * language.h: Update copyright.
11959 (struct language_defn): Add la_lookup_transparent_type.
11960 * language.c: Update copyright.
11961 (unknown_language_defn): Add basic_lookup_transparent_type.
11962 (auto_language_defn): Add basic_lookup_transparent_type.
11963 (local_language_defn): Add basic_lookup_transparent_type.
11964 * ada-lang.c: Update copyright.
11965 (ada_language_defn): Add basic_lookup_transparent_type.
11966 * c-lang.c: Update copyright.
11967 (c_language_defn): Add basic_lookup_transparent_type.
11968 (cplus_language_defn): Add basic_lookup_transparent_type.
11969 (asm_language_defn): Add basic_lookup_transparent_type.
11970 (minimal_language_defn): Add basic_lookup_transparent_type.
11971 * f-lang.c: Update copyright.
11972 (f_language_defn): Add basic_lookup_transparent_type.
11973 * jv-lang.c: Update copyright.
11974 (java_language_defn): Add basic_lookup_transparent_type.
11975 * m2-lang.c: Update copyright.
11976 (m2_language_defn): Add basic_lookup_transparent_type.
11977 * objc-lang.c: Update copyright.
11978 (objc_language_defn): Add basic_lookup_transparent_type.
11979 * p-lang.c: Update copyright.
11980 (p_language_defn): Add basic_lookup_transparent_type.
11981 * scm-lang.c: Update copyright.
11982 (scm_language_defn): Add basic_lookup_transparent_type.
11983 * Makefile.in (cp-namespace.o): Depend on frame.h.
11984
11985 2004-01-23 David Carlton <carlton@kealia.com>
11986
11987 Patch for PR c++/1520:
11988 * dwarf2read.c (read_func_scope): Set processing_current_prefix
11989 properly if we have a specification die.
11990 (determine_prefix_aux): Rename from determine_prefix.
11991 (determine_prefix): Like the old determine_prefix, but never
11992 returns NULL.
11993
11994 2004-01-23 Theodore A. Roth <troth@openavr.org>
11995
11996 * avr-tdep.c: Update copyright.
11997 (avr_iaddr_p): Delete unused function.
11998 (avr_saddr_p): Delete unused function.
11999
12000 2004-01-23 David Carlton <carlton@kealia.com>
12001
12002 * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
12003 Fix for PR symtab/1534.
12004
12005 2004-01-23 Mark Kettenis <kettenis@gnu.org>
12006
12007 * NEWS (New native configurations): Mention OpenBSD/sparc and
12008 OpenBSD/sparc64.
12009 * configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*.
12010 * configure.host: Likewise.
12011 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI
12012 handler for OpenBSD.
12013 * sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
12014
12015 2004-01-22 Mark Kettenis <kettenis@gnu.org>
12016
12017 * sparcnbsd-tdep.c (sparcnbsd_core_osabi_sniffer): New function.
12018 (_initialize_sparnbsd_tdep): Register sparcnbsd_core_osabi_sniffer.
12019
12020 * ser-pipe.c (pipe_open): Use proper null pointer in execl call.
12021 * cli/cli-cmds.c (shell_escape): Likewise.
12022
12023 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Recognize
12024 OpenBSD .note.openbsd.ident sections.
12025
12026 2004-01-22 David Carlton <carlton@kealia.com>
12027
12028 * dwarf2read.c (psymtab_to_symtab_1): Calculate lowpc, highpc via
12029 get_scope_pc_bounds.
12030 (read_file_scope): Ditto.
12031 (get_scope_pc_bounds): New function, produced by extracting code
12032 from the above two functions, consolidating it, and adding support
12033 for DW_TAG_namespace.
12034
12035 2004-01-22 Mark Kettenis <kettenis@gnu.org>
12036
12037 * osabi.c (MAX_NOTESZ): New define.
12038 (check_note): New function.
12039 (generic_elf_osabi_sniff_abi_tag_sections): Reorganize code using
12040 check_note.
12041
12042 2004-01-21 Roland McGrath <roland@redhat.com>
12043
12044 * MAINTAINERS (write after approval): Add myself.
12045
12046 2004-01-21 Eli Zaretskii <eliz@gnu.org>
12047
12048 * utils.c (init_page_info): Move declarations of `rows' and
12049 `cols' before the __GO32__-specific code. Move the closing brace
12050 outside the #ifdef __GO32__..#endif block.
12051 [__GO32__]: Use `rows' and `cols' to avoid compiler warnings.
12052
12053 2004-01-21 Paul Brook <paul@codesourcery.com>
12054
12055 * infrun.c (handle_inferior_event): Check stop_stack_dummy if handling
12056 BPSTAT_WHAT_CHECK_SHLIBS.
12057
12058 2004-01-21 Paul Brook <paul@codesourcery.com>
12059
12060 * MAINTAINERS: Add myself to write-after-approval.
12061
12062 2004-01-20 Andrew Cagney <cagney@redhat.com>
12063
12064 * ax-gdb.c (print_axs_value): Delete unused function.
12065 * jv-lang.c (java_lookup_type): Delete unused function.
12066 * cli/cli-dump.c (dump_filetype): Delete unused function.
12067 * remote-mips.c (remote_mips_insert_hw_breakpoint)
12068 (remote_mips_remove_hw_breakpoint): Delete unused functions.
12069 (mips_getstring): Delete unused function.
12070 (pmon_insert_breakpoint): Delete #if0ed function.
12071 (PMON_MAX_BP): Delete #if0ed MACRO.
12072 (mips_pmon_bp_info): Delete #if0ed variable.
12073 (pmon_remove_breakpoint): Delete #if0ed function.
12074 * monitor.c (monitor_write_even_block): Delete unused function.
12075 (monitor_write_memory_block): Delete #if0ed code.
12076 * dink32-rom.c (dink32_load): Delete unused function.
12077 (_initialize_dink32_rom): Delete #if0ed code.
12078 * d10v-tdep.c (d10v_daddr_p): Delete unused function.
12079
12080 * tui/tui-command.c: Update references.
12081 * tui/tui-io.c: Update references.
12082 * tui/tui-command.h: Update copyright.
12083 (tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.
12084
12085 * source.c (ambiguous_line_spec): Delete never-defined function.
12086 * remote-rdi.c (arm_rdi_mourn, arm_rdi_send): Ditto.
12087 * gdbtypes.c (add_name, add_mangled_type): Ditto.
12088 * cli/cli-cmds.c (validate_comname): Ditto.
12089
12090 * tui/tui-disasm.h: Update copyright. Include "tui.h" and
12091 "tui-data.h".
12092 (tui_set_disassem_content): Rename tuiSetDisassemContent.
12093 (tui_show_disassem): Rename tuiShowDisassem.
12094 (tui_show_disassem_and_update_source): Rename
12095 tuiVerticalDisassemScroll.
12096 (tui_vertical_disassem_scroll): Rename tuiVerticalDisassemScroll.
12097 (tui_get_begin_asm_address): Rename tuiGetBeginAsmAddress.
12098 * tui/tui.h: Update copyright.
12099 (enum tui_status): Define.
12100 * tui/tui-data.h (enum tui_scroll_direction): Define.
12101 * tui/tui-disasm.c: Update copyright. Update references.
12102 * tui/tui-winsource.c: Update copyright. Update references.
12103 * tui/tui-win.c: Update references.
12104 * tui/tui-layout.c: Update references.
12105
12106 2004-01-20 Andrew Cagney <cagney@redhat.com>
12107
12108 * mi/mi-cmd-stack.c (list_args_or_locals): Move declaration of
12109 sym2 to start of block.
12110
12111 2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
12112
12113 * MAINTAINERS: Delete mmalloc.
12114 * Makefile.in: Delete MMALLOC, MMALLOC_CFLAGS, -lmmalloc, mmalloc_h.
12115 * NEWS: Mention removal of --with-malloc.
12116 * acconfig.h: Delete USE_MMALLOC, MMCHECK_FORCE.
12117 * config.in: Regenerate.
12118 * configure: Regenerate.
12119 * configure.in: Delete MMALLOC_CFLAGS, MMALLOC, --with-mmalloc,
12120 USE_MMALLOC, MMCHECK_FORCE.
12121 * gdbinit.in: Remove mmalloc.
12122 * utils.c: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE, malloc_botch.
12123 * config/alpha/alpha-linux.mh: Delete MMALLOC, MMALLOC_CFLAGS.
12124 * config/i386/go32.mh: Likewise.
12125 * config/i386/interix.mh: Likewise.
12126 * config/powerpc/xm-linux.h: Delete MMAP_BASE_ADDRESS, MMAP_INCREMENT.
12127
12128 2004-01-19 Jeff Johnston <jjohnstn@redhat.com>
12129
12130 * linespec.c (decode_variable, symtab_from_filename): Call
12131 error_silent with error message instead of throwing an exception
12132 directly.
12133 * defs.h (error_silent, error_output_message): Add prototypes.
12134 (catch_exceptions_with_msg): Ditto.
12135 * utils.c (error_silent, error_output_message): New functions.
12136 * top.c (catch_exceptions_with_msg): New function.
12137
12138 2004-01-20 Nick Roberts <nick@nick.uklinux.net>
12139
12140 * mi/mi-cmds.h (enum print_values): Add definition.
12141
12142 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Print the name,
12143 type and value for simple data types and just the name and type
12144 for complex ones, if required.
12145
12146 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Print the values of the
12147 children, if required.
12148
12149 2004-01-19 Kevin Buettner <kevinb@redhat.com>
12150
12151 * frv-tdep.c (frv_push_arguments, frv_saved_pc_after_call): Delete
12152 unused declarations.
12153
12154 2004-01-19 Andrew Cagney <cagney@redhat.com>
12155
12156 * top.h (mapped_symbol_files): Delete declaration.
12157 * main.c (captured_main): Delete option "m" and "mapped".
12158 * objfiles.c (mapped_symbol_files): Delete variable.
12159 * symfile.c (symbol_file_command): Delete mmap code.
12160 (symbol_file_add_with_addrs_or_offsets): Ditto.
12161 (add_symbol_file_command, reread_separate_symbols): Ditto.
12162 * objfiles.h (OBJF_MAPPED): Delete.
12163 * objfiles.c (allocate_objfile) [USE_MMALLOC]: Delete.
12164 (free_objfile) [USE_MMALLOC]: Ditto.
12165 (open_existing_mapped_file): Delete function.
12166 (open_mapped_file): Delete function.
12167 (map_to_file): Delete function.
12168
12169 2004-01-19 Kevin Buettner <kevinb@redhat.com>
12170
12171 * infrun.c (step_into_function): Account for possible breakpoint
12172 adjustment when computing ``stop_func_start''.
12173
12174 2004-01-19 Kevin Buettner <kevinb@redhat.com>
12175
12176 * target.c (default_region_size_ok_for_hw_watchpoint): Compare
12177 the region size against the size of a pointer, not the size of
12178 a register as given by DEPRECATED_REGISTER_SIZE.
12179
12180 2004-01-19 Andrew Cagney <cagney@redhat.com>
12181
12182 * tui/tui-regs.h: Include "tui-data.h".
12183 (tuiFirstRegElementNoInLine): Delete declaration.
12184 (tui_display_registers_from): Rename tuiDisplayRegistersFrom.
12185 (tui_last_regs_line_no): Rename tuiLastRegsLineNo.
12186 (tui_line_from_reg_element_no): Rename tuiLineFromRegElementNo.
12187 (tui_calculate_regs_column_count): Rename
12188 tuiCalculateRegsColumnCount.
12189 (tui_check_register_values): Rename tuiCheckRegisterValues.
12190 (tui_show_registers): Rename tuiShowRegisters.
12191 (tui_display_registers_from_line): Rename
12192 tuiDisplayRegistersFromLine.
12193 (tui_first_reg_element_inline): Rename tuiFirstRegElementInLine.
12194 (tui_toggle_float_regs): Rename tuiToggleFloatRegs.
12195 (tui_first_reg_element_no_inline): Rename
12196 tuiFirstRegElementNoInLine.
12197 * tui/tui-data.h: Update copyright.
12198 (enum tui_register_display_type): Rename _TuiRegisterDisplayType.
12199 * tui/tui-windata.c: Update copyright, update references.
12200 * tui/tui-regs.c: Update copyright, update references.
12201 * tui/tui-win.c: Update copyright, update references.
12202 * tui/tui-layout.c: Update copyright, update references.
12203
12204 2004-01-18 Andrew Cagney <cagney@redhat.com>
12205
12206 * tui/tui-io.c: Update copyright.
12207 (key_is_end_sequence, key_is_backspace): New functions.
12208 (key_is_command_char, key_is_start_sequence): New function.
12209 (tui_getc): Update references.
12210 * tui/tui-io.h: Update copyright.
12211 (m_tuiStartNewLine): Delete macro.
12212 (m_isBackspace, m_isDeleteChar): Delete macros.
12213 (m_isDeleteLine, m_isDeleteToEol): Delete macros.
12214 (m_isNextPage, m_isPrevPage): Delete macros.
12215 (m_isLeftArrow, m_isRightArrow): Delete macros.
12216 (m_isXdbStyleCommandChar): Delete macro.
12217 (key_is_start_sequence): Declare, replace m_isStartSequence.
12218 (key_is_end_sequence): Declare, replace m_isEndSequence.
12219 (key_is_backspace): Declare ,replace m_isBackspace.
12220 (key_is_command_char): Declare, replace m_isCommandChar.
12221 * tui/tui-command.c: Update copyright.
12222 (tuiDispatchCtrlChar): Update references.
12223
12224 * config/djgpp/fnchange.lst: Delete tui/tuiSourceWin.c and
12225 tuiSourceWin.h.
12226
12227 * tui/tui-command.c: Rename tui/tuiCommand.c.
12228 * tui/tui-command.h: Rename tui/tuiCommand.h.
12229 * tui/tui-data.c: Rename tui/tuiData.c.
12230 * tui/tui-data.h: Rename tui/tuiData.h.
12231 * tui/tui-disasm.c: Rename tui/tuiDisassem.c.
12232 * tui/tui-disasm.h: Rename tui/tuiDisassem.h.
12233 * tui/tui-io.c: Rename tui/tuiIO.c.
12234 * tui/tui-io.h: Rename tui/tuiIO.h.
12235 * tui/tui-layout.c: Rename tui/tuiLayout.c.
12236 * tui/tui-layout.h: Rename tui/tuiLayout.h.
12237 * tui/tui-regs.c: Rename tui/tuiRegs.c.
12238 * tui/tui-regs.h: Rename tui/tuiRegs.h.
12239 * tui/tui-source.c: Rename tui/tuiSource.c.
12240 * tui/tui-source.h: Rename tui/tuiSource.h.
12241 * tui/tui-stack.c: Rename tui/tuiStack.c.
12242 * tui/tui-stack.h: Rename tui/tuiStack.h.
12243 * tui/tui-win.c: Rename tui/tuiWin.c.
12244 * tui/tui-win.h: Rename tui/tuiWin.h.
12245 * tui/tui-windata.c: Rename tui/tuiDataWin.c.
12246 * tui/tui-windata.h: Rename tui/tuiDataWin.h.
12247 * tui/tui-wingeneral.c: Rename tui/tuiGeneralWin.c.
12248 * tui/tui-wingeneral.h: Rename tui/tuiGeneralWin.h.
12249 * tui/tui-winsource.c: Rename tui/tuiSourceWin.c.
12250 * tui/tui-winsource.h: Rename tui/tuiSourceWin.h.
12251 * tui/tui-file.c: Update includes.
12252 * tui/tui-hooks.c: Update includes.
12253 * tui/tui-interp.c: Update includes.
12254 * tui/tui.c: Update includes.
12255 * Makefile.in: Update all tui/ dependencies.
12256 (SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS): Update file names.
12257
12258 * Makefile.in: Update copyright. Update dependencies.
12259
12260 * tui/tuiSourceWin.c (tui_update_breakpoint_info): Fix compile
12261 problem.
12262
12263 2004-01-18 Andrew Cagney <cagney@redhat.com>
12264
12265 * mn10300-tdep.c (_initialize_mn10300_tdep): Call gdbarch_register
12266 instead of register_gdbarch_init.
12267
12268 * remote-sds.c (tohex): Delete unused function. Update copyright.
12269 * xstormy16-tdep.c (xstormy16_register_virtual_size): Ditto.
12270 * v850-tdep.c (v850_register_virtual_size): Ditto.
12271 * target.c (normal_target_post_startup_inferior): Ditto.
12272 * source.c (ambiguous_line_spec): Ditto.
12273 * remote.c (adapt_remote_get_threadinfo): Ditto.
12274 * mi/mi-out.c (out_field_fmt): Ditto.
12275 * mi/mi-interp.c (mi_interp_read_one_line_hook): Ditto.
12276 (output_control_change_notification): Ditto.
12277 * m68k-tdep.c (m68k_register_byte): Ditto.
12278 (m68k_remote_breakpoint_from_pc): Ditto.
12279 * ui-out.c (init_ui_out_state): Delete unused declaration.
12280 * stabsread.c (search_value): Ditto.
12281 * mi/mi-cmd-env.c (env_cli_command): Ditto.
12282 * maint.c (print_section_table): Ditto.
12283 * infrun.c (set_follow_fork_mode_command): Ditto.
12284
12285 2004-01-18 Mark Kettenis <kettenis@gnu.org>
12286
12287 * dwarf2-frame.c (execute_cfa_program): Move DWA_CFA_nop before
12288 DW_CFA_def_cfa_exporession. Add support for
12289 DW_CFA_offset_extendend_sf, DW_CFA_def_cfa_sf and
12290 DW_CFA_def_cfa_offset_sf. This should fix PR backtrace/1391.
12291
12292 2004-01-18 Andrew Cagney <cagney@redhat.com>
12293
12294 * ocd.c: Update copyright.
12295 (bdm_read_register_command): Delete unused function.
12296 (_initialize_remote_ocd): Delete commented out reference.
12297 (get_quoted_char, reset_packet): Delete #if0ed function.
12298 (output_packet, put_quoted_char): Delete #if0ed function.
12299 (stu_put_packet, stu_get_packet): Delete #if0ed function.
12300 (ocd_start_remote): Delete #if0ed code, remove #if1 wrapper.
12301 (BDM_BREAKPOINT): Delete #if0ed macro.
12302 (remote_timeout): Delete #if0ed variable.
12303
12304 2004-01-18 Mark Kettenis <kettenis@gnu.org>
12305
12306 * Makefile.in (ALLDEPFILES): Remove core-sol2.c.
12307 (core-sol2.o): Remove dependency.
12308 * core-sol2.c: Remove file.
12309
12310 2004-01-17 Andrew Cagney <cagney@redhat.com>
12311
12312 * mdebugread.c (compare_blocks): Make addr_diff a LONGEST.
12313 * block.h: Make GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOOCK
12314 enums.
12315
12316 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
12317
12318 * remote.c: Update copyright years.
12319
12320 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
12321
12322 * remote.c (remote_vcont_resume): Use xstrprintf instead of sprintf.
12323
12324 2004-01-17 Andrew Cagney <cagney@redhat.com>
12325
12326 * mdebugread.c: Update copyright.
12327 (parse_symbol): Replace DEPRECATED_STREQ with strcmp.
12328 (parse_type, parse_procedure): Ditto.
12329 (parse_partial_symbols, psymtab_to_symtab_1): Ditto.
12330
12331 * cris-tdep.c (cris_store_struct_return): Put back accidently
12332 deleted function.
12333
12334 * gdbarch.sh: Update copyright year.
12335 * gdbarch.h, gdbarch.c: Re-generate.
12336
12337 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
12338
12339 Suggested by George Anzinger.
12340 * dwarf2expr.c (execute_stack_op): Fetch the second item from the
12341 correct stack offset. Include unknown opcode numbers in the error
12342 message.
12343
12344 2004-01-17 Andrew Cagney <cagney@redhat.com>
12345
12346 * x86-64-tdep.c (x86_64_init_abi): No need to clear
12347 extract_struct_value_address, i386 does not set it.
12348 * sparc64-tdep.c (sparc64_init_abi): Do not set
12349 extract_struct_value_address, never called.
12350 (sparc64_extract_struct_value_address): Delete function.
12351 * m68hc11-tdep.c: Update copyright.
12352 (m68hc11_gdbarch_init): Delete redundant assignment of
12353 extract_struct_value_address.
12354 * i386-tdep.c: Update copyright.
12355 (i386_gdbarch_init): Do not set extract_struct_value_address,
12356 never called.
12357 (i386_extract_struct_value_address): Delete function.
12358 * sparc-tdep.c (sparc32_gdbarch_init): Do not set
12359 extract_struct_value_address, never called.
12360 (sparc32_extract_struct_value_address): #if 0 function. Add
12361 comments explaining its future.
12362
12363 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
12364
12365 * arm-tdep.c (arm_write_pc): New function.
12366 (arm_gdbarch_init): Call set_gdbarch_write_pc.
12367
12368 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
12369
12370 * breakpoint.c (must_shift_inst_regs): Delete.
12371 (bpstat_stop_status): Delete references to DECR_PC_AFTER_HW_BREAK
12372 and SHIFT_INST_REGS.
12373 * infcmd.c (step_1, step_1_continuation): Delete references to
12374 SHIFT_INST_REGS.
12375 * infrun.c (keep_going): Likewise.
12376 * target.h (DECR_PC_AFTER_HW_BREAK): Don't define.
12377 * config/i386/nm-i386.h (DECR_PC_AFTER_HW_BREAK): Likewise.
12378
12379 2004-01-17 Andrew Cagney <cagney@redhat.com>
12380
12381 * gdbarch.sh (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
12382 * gdbarch.h, gdbarch.c: Re-generate.
12383 * infcmd.c (print_return_value): Delete reference to
12384 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
12385
12386 * cris-tdep.c (cris_gdbarch_init): Do not set
12387 deprecated_extract_struct_value_address.
12388
12389 * xstormy16-tdep.c: Update copyright.
12390 (xstormy16_extract_struct_value_address): Update to current
12391 extract struct value address interface.
12392 (xstormy16_gdbarch_init): Set extract_struct_value_address.
12393 * sh64-tdep.c (sh64_extract_struct_value_address): Update to
12394 current extract struct value address interface.
12395 (sh64_gdbarch_init): Set extract_struct_value_address.
12396
12397 * cris-tdep.c: Update copyright.
12398 (cris_extract_struct_value_address): Delete function.
12399 (struct_return_address): Delete variable.
12400 (cris_store_struct_return): Do not set struct_return_address.
12401
12402 * mcore-tdep.c: Update copyright.
12403 (mcore_extract_struct_value_address): Delete function. Update
12404 comments.
12405 (mcore_gdbarch_init): Update.
12406 * mn10300-tdep.c: Update copyright.
12407 (mn10300_extract_struct_value_address): Delete function.
12408 (mn10300_gdbarch_init): Update.
12409 * v850-tdep.c: Update copyright.
12410 (v850_extract_struct_value_address): Delete.
12411 (v850_gdbarch_init): Update.
12412 * ns32k-tdep.c: Update copyright.
12413 (ns32k_extract_struct_value_address): Delete.
12414 (ns32k_gdbarch_init): Update.
12415 * hppa-tdep.c (hppa_extract_struct_value_address): Delete.
12416 (hppa_gdbarch_init): Update.
12417 * vax-tdep.c: Update copyright.
12418 (vax_extract_struct_value_address): Delete.
12419 (vax_gdbarch_init): Update.
12420
12421 * gdbarch.sh (DEPRECATED_NPC_REGNUM): Delete.
12422 * gdbarch.h, gdbarch.c: Re-generate.
12423 * procfs.c (procfs_fetch_registers): Delete reference to
12424 DEPRECATED_NPC_REGNUM.
12425 (procfs_store_registers): Ditto.
12426 * regcache.c (generic_target_write_pc): Simplify.
12427 * lynx-nat.c: Delete #ifdef SPARC code. Not used.
12428
12429 * core-sol2.c (fetch_core_registers): Replace
12430 DEPRECATED_NPC_REGNUM with equivalent tdep value.
12431
12432 * hppa-tdep.c: Update copyright year.
12433 (hppa_target_write_pc): Use PCOQ_TAIL_REGNUM instead of
12434 NPC_REGNUM.
12435 (hppa_gdbarch_init): Do not set deprecated_npc_regnum.
12436
12437 * mips-tdep.c (mips_write_pc): New function.
12438 (mips_gdbarch_init): Set "write_pc" to "mips_write_pc".
12439 (mips_read_pc): Use mips_regnum instead of PC_REGNUM.
12440 (mips_find_saved_regs, mips_software_single_step: Ditto.
12441 (mips_frame_saved_pc, mips_frame_saved_pc): Ditto.
12442 mips_init_extra_frame_info, mips_pop_frame): Ditto.
12443
12444 2004-01-17 Andrew Cagney <cagney@redhat.com>
12445
12446 * mips-tdep.c: Re-indent. Group functions by ABI.
12447
12448 2004-01-17 Andrew Cagney <cagney@redhat.com>
12449
12450 * gdbarch.sh (DECR_PC_AFTER_BREAK): Make zero the default.
12451 * gdbarch.c: Re-generate.
12452 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
12453 DECR_PC_AFTER_BREAK to zero.
12454 * vax-tdep.c (vax_gdbarch_init): Ditto.
12455 * v850-tdep.c (v850_gdbarch_init): Ditto.
12456 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
12457 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
12458 * sh-tdep.c (sh_gdbarch_init): Ditto.
12459 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
12460 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
12461 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
12462 * mips-tdep.c (mips_gdbarch_init): Ditto.
12463 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
12464 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
12465 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
12466 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
12467 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
12468 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
12469 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
12470 * frv-tdep.c (frv_gdbarch_init): Ditto.
12471 * cris-tdep.c (cris_gdbarch_init): Ditto.
12472 * avr-tdep.c (avr_gdbarch_init): Ditto.
12473 * arm-tdep.c (arm_gdbarch_init): Ditto.
12474 * i386-nto-tdep.c (i386nto_init_abi): Add comment.
12475
12476 2004-01-17 J. Brobecker <brobecker@gnat.com>
12477
12478 * dwarf2read.c (dwarf2_non_const_array_bound_ignored_complaint):
12479 Delete, no longer used.
12480 (read_subrange_type): New function, mostly extracted from
12481 read_array_type().
12482 (read_array_type): Replace extracted code by call to
12483 read_subrange_type().
12484 (dwarf2_get_attr_constant_value): New function.
12485 (scan_partial_symbols): Add handling for DW_TAG_subrange_type.
12486 (add_partial_symbol): Likewise.
12487 (process_die): Likewise.
12488 (new_symbol): Likewise.
12489 (read_type_die): Likewise.
12490
12491 2004-01-16 Andrew Cagney <cagney@redhat.com>
12492
12493 * symfile.c: Update copyright year.
12494 (compare_symbols): Delete unused function.
12495 * stabsread.c: Update copyright year.
12496 (lrs_general_complaint): Delete unused function.
12497 (ref_search_value): Ditto.
12498 (get_substring): Delete declaration.
12499 * sh64-tdep.c: Update copyright year.
12500 (sh64_get_gdb_regnum): Delete unused function.
12501 * dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint):
12502 Delete unused function.
12503
12504 2004-01-17 Mark Kettenis <kettenis@gnu.org>
12505
12506 * defs.h (gdb_osabi): Add GDB_OSABI_OPENBSD_ELF.
12507 * osabi.c (gdb_osabi_names): Add "OpenBSD ELF".
12508
12509 2004-01-16 Andrew Cagney <cagney@redhat.com>
12510
12511 Changes from Peter Schauer.
12512 * rs6000-tdep.c: Update copyright year.
12513 (rs6000_push_dummy_call): Update the stack pointer before
12514 accessing the corresponding stack region.
12515 * rs6000-nat.c: Update copyright year.
12516 (set_host_arch): Set "info.abfd" to "exec_bfd".
12517
12518 2004-01-15 Mark Kettenis <kettenis@gnu.org>
12519
12520 * blockframe.c: Update copyright year.
12521 (inside_entry_func): Don't treat a zero PC specially.
12522
12523 2004-01-14 Elena Zannoni <ezannoni@redhat.com>
12524
12525 * gcore.c (gcore_copy_callback): Use paddr_d to print size
12526 variable.
12527 (gcore_create_callback): Ditto. Skip any memory segment that has
12528 no permissions set.
12529
12530 2004-01-14 David Carlton <carlton@kealia.com>
12531
12532 Change symbols for C++ nested types to contain the fully qualified
12533 name, if possible. (At least in the DWARF-2 case.) Partial fix
12534 for PR's c++/57, c++/488, c++/539, c++/573, c++/609, c++/832,
12535 c++/895.
12536 * c-exp.y (qualified_type): Handle types nested within classes.
12537 * cp-namespace.c: Update comments.
12538 (cp_set_block_scope): Delete #if 0.
12539 (cp_lookup_nested_type): Handle types nested within classes.
12540 * dwarf2read.c: (scan_partial_symbols): Call add_partial_structure
12541 when appropriate.
12542 (add_partial_symbol): Add the name of the enclosing namespace to
12543 types.
12544 (pdi_needs_namespace): New.
12545 (add_partial_namespace): Tweak comment.
12546 (add_partial_structure): New.
12547 (psymtab_to_symtab_1): Initialize processing_current_prefix
12548 here...
12549 (process_die): instead of here.
12550 (read_structure_scope): Try to figure out the name of the class or
12551 namespace that the structure might be defined within.
12552 (read_enumeration): Generate fully-qualified names, if possible.
12553 (read_namespace): Don't set name to NULL.
12554 (die_specification): New.
12555 (new_symbol): Generate fully-qualified names for types.
12556 (read_type_die): Determine appropriate prefix.
12557 (determine_prefix): New.
12558 (typename_concat): New.
12559 (class_name): New.
12560 * valops.c (value_aggregate_elt): Pass NOSIDE to
12561 value_struct_elt_for_reference.
12562 (value_struct_elt_for_reference): Make static, add NOSIDE
12563 parameter, call value_maybe_namespace_elt as a last resort.
12564 (value_namespace_elt): Break out code into
12565 value_maybe_namespace_elt.
12566 (value_maybe_namespace_elt): New.
12567
12568 2004-01-12 Andrew Cagney <cagney@redhat.com>
12569
12570 * mips-tdep.c (mips_convert_register_p): Handle both raw and
12571 cooked floating-point registers.
12572 (mips_gdbarch_init): Set convert_register_p, register_to_value,
12573 and value_to_register.
12574
12575 2004-01-13 Andrew Cagney <cagney@redhat.com>
12576
12577 * gdbarch.sh (FUNCTION_START_OFFSET): Make zero the default.
12578 * gdbarch.c: Re-generate.
12579 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
12580 FUNCTION_START_OFFSET.
12581 * v850-tdep.c (v850_gdbarch_init): Ditto.
12582 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
12583 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
12584 * sh-tdep.c (sh_gdbarch_init): Ditto.
12585 * s390-tdep.c (s390_gdbarch_init): Ditto.
12586 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
12587 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
12588 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
12589 * mips-tdep.c (mips_gdbarch_init): Ditto.
12590 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
12591 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
12592 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
12593 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
12594 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
12595 * i386-tdep.c (i386_gdbarch_init): Ditto.
12596 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
12597 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
12598 * frv-tdep.c (frv_gdbarch_init): Ditto.
12599 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
12600 * cris-tdep.c (cris_gdbarch_init): Ditto.
12601 * avr-tdep.c (avr_gdbarch_init): Ditto.
12602 * arm-tdep.c (arm_gdbarch_init): Ditto.
12603 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
12604
12605 2004-01-13 Daniel Jacobowitz <drow@mvista.com>
12606
12607 * infrun.c (follow_fork_mode_ask): Remove.
12608 (follow_fork_mode_kind_names): Remove follow_fork_mode_ask.
12609 (follow_fork): Simplify and remove internal error for
12610 follow_fork_mode_ask.
12611 (_initialize_infrun): Update "set follow-fork-mode" help text.
12612
12613 2004-01-13 Andrew Cagney <cagney@redhat.com>
12614
12615 * configure.in: Update copyright year.
12616 (build_warnings): Add -Wunused-label.
12617 * configure: Re-generate.
12618
12619 2004-01-12 Andrew Cagney <cagney@redhat.com>
12620
12621 * exec.h (exec_ops): Make "extern".
12622
12623 * mips-tdep.c (mips_pseudo_register_read): Don't return a value,
12624 the function is void.
12625 (mips_pseudo_register_write): Ditto.
12626
12627 2004-01-12 Andrew Cagney <cagney@redhat.com>
12628
12629 * stack.c (frame_info): Delete DEPRECATED_PRINT_EXTRA_FRAME_INFO
12630 call. Never defined.
12631 * sparc-tdep.h (struct frame_info): Add opaque declaration.
12632 * sparc64-tdep.h (struct gdbarch): Add opaque declaration.
12633 (struct sparc_gregset, struct regcache): Ditto.
12634 * sparc-nat.c: Update copyright. Specify "GNU/Linux".
12635
12636 2004-01-12 Andrew Cagney <cagney@redhat.com>
12637
12638 * mi/ChangeLog: Delete file. Renamed to ...
12639 * mi/ChangeLog-1999-2003: New file.
12640 * tui/ChangeLog: Delete file. Renamed to ...
12641 * tui/ChangeLog-1998-2003: New file.
12642
12643 2004-01-11 Mark Kettenis <kettenis@gnu.org>
12644
12645 * sparc64nbsd-tdep.c: Include "regset.h".
12646 (sparc64nbsd_sizeof_struct_reg, sparc64nbsd_sizeof_struct_fpreg):
12647 Remove variables.
12648 (fetch_core_registers): Remove function.
12649 (sparc64nbsd_core_fns): Remove variable.
12650 (sparc64nbsd_supply_gregset, sparc64nbsd_supply_fpregset): New
12651 functions.
12652 (sparc64nbsd_init_abi): Initialize TDEP->gregset,
12653 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
12654 (_initialize_sparc64nbsd_tdep): Remove call to add_core_fns.
12655
12656 * sparc-tdep.c (sparc32_extract_struct_value_address): Rename from
12657 sparc_extract_struct_value_address.
12658 (sparc32_gdbarch_init): Set extract_struct_value_address.
12659 * sparc64-tdep.c (sparc64_extract_struct_value_address): New
12660 function.
12661 (sparc64_init_abi): Set extract_struct_value_address. Don't set
12662 return_value_on_stack.
12663
12664 * NEWS: Mention that %cs and %ss have been added to the AMD64
12665 configurations
12666
12667 * frame.c: Update copyright year.
12668 (get_prev_frame): Improve comment.
12669
12670 * sparc64fbsd-tdep.c: Include "regset.h".
12671 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
12672 Remove variables.
12673 (fetch_core_registers): Remove function.
12674 (sparc64fbsd_core_fns): Remove variable.
12675 (sparc64fbsd_supply_gregset, sparc64fbsd_supply_fpregset): New
12676 functions.
12677 (sparc64fbsd_init_abi): Initialize TDEP->gregset,
12678 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
12679 (_initialize_sparc64fbsd_tdep): Remove call to add_core_fns.
12680
12681 * sparcnbsd-tdep.c: Include "regset.h".
12682 (fetch_core_registers): Remove function.
12683 (sparcnbsd_core_fns, sparcnbsd_elfcore_fns): Remove varaibles.
12684 (sparc32nbsd_supply_gregset, sparc32nbsd_supply_fpregset): New
12685 functions.
12686 (sparc32nbsd_init_abi): Initialize TDEP->gregset and
12687 TDEP->fpregset.
12688 (_initialize_sparcnbsd_tdep): Remove calls to add_core_fns.
12689
12690 * sparc-tdep.h (struct regset): Provide opaque declaration.
12691 (struct gdbarch_tdep): Add gregset, sizeof_gregset,
12692 fpregset and sizeof_fpregset members.
12693 * sparc-tdep.c (struct regset): Provide opaque declaration.
12694 (sparc_regset_from_core_section): New function.
12695 (sparc32_gdbarch_init): Initialize TDEP->gregset,
12696 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_fpregset.
12697 Set regset_from_core_section when appropriate.
12698
12699 2004-01-10 Mark Kettenis <kettenis@gnu.org>
12700
12701 * x86-64-tdep.c (amd64_non_pod_p): New function.
12702 (amd64_classify_aggregate): Return class memory for non-POD
12703 C++ structure types.
12704
12705 * x86-64-tdep.c (amd64_push_arguments): Add struct_return
12706 argument. Use it to reserve a register if necessary.
12707 (amd64_push_dummy_call): Pass STRUCT_RETURN in call to
12708 amd64_push_arguments.
12709
12710 * x86-64-tdep.c (amd64_classify_aggregate): Ignore static fields.
12711
12712 * x86-64-tdep.c (amd64_register_info): Add %cs and %ss. Adjust
12713 register numbers in comments.
12714 * x86-64-tdep.h: Update copyright year.
12715 (X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM, X86_64_XMM1_REGNUM):
12716 Adjust for addition of %cs and %ss.
12717 * amd64fbsd-nat.c: Update copyright year.
12718 (reg_offset): Add register offsets for %cs and %ss.
12719 * amd64fbsd-tdep.c: Update copyright year.
12720 (amd64fbsd_r_reg_offset): Add register offsets for %cs and %ss.
12721 (amd64fbsd_sc_reg_offset): Likewise.
12722 * x86-64-linux-nat.c: Update copyright year.
12723 (x86_64_linux_gregset64_reg_offset): Add register offsets for %cs
12724 and %ss.
12725 * amd64nbsd-nat.c: Update copyright year.
12726 (amd64nbsd32_r_reg_offset): Add register offsets for %cs and %ss.
12727 * amd64nbsd-tdep.c: Update copyright year.
12728 (amd64nbsd_r_reg_offset): Add register offsets for %cs and %ss.
12729 * x86-64-linux-tdep.c: Update copyright year.
12730 (user_to_gdb_regmap): Add mapping for %cs and %ss.
12731 (x86_64_linux_sc_reg_offset): Adjust for addition of %cs and %ss.
12732 * regformats/reg-x86-64.dat: Add %cs and %ss.
12733
12734 * blockframe.c (inside_entry_func): Reformat. Introduce new local
12735 variables to prevent long lines. Update comments to reflect
12736 reality.
12737
12738 2004-01-09 David Carlton <carlton@kealia.com>
12739
12740 Checked in by Elena Zannoni <ezannoni@redhat.com>.
12741 * dwarf2read.c (read_namespace): Pull out name-generating code
12742 into namespace_name. Rename previous_namespace to previous_prefix
12743 and processing_current_namespace to processing_current_prefix..
12744 (namespace_name): New function.
12745 (add_partial_symbol): Substitute uses of pdi->name with
12746 actual_name.
12747 * cp-support.h: Rename processing_current_namespace to
12748 processing_current_prefix.
12749 Update copyright year.
12750 * cp-namespace.c: Rename processing_current_namespace to
12751 processing_current_prefix.
12752 Update copyright year.
12753
12754 2004-01-09 Andrew Cagney <cagney@redhat.com>
12755
12756 * jv-valprint.c, ser-unix.c: Add missing copyright years.
12757
12758 2004-01-09 Mark Kettenis <kettenis@gnu.org>
12759
12760 * dbxread.c (read_dbx_symtab): Ignore N_PATCH stabs instead of
12761 complaining.
12762 (process_one_symbol): Deal with N_PATCH stabs.
12763
12764 2004-01-09 Elena Zannoni <ezannoni@redhat.com>
12765
12766 * dwarf2read.c (read_array_type): Discard FORTRAN_HACK macro and
12767 ifdeffed code.
12768 Update copyright year.
12769
12770 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
12771
12772 * config/pa/tm-hppa.h: Update extern declarations for
12773 hppa32_hpux_frame_saved_pc_in_sigtramp,
12774 hppa32_hpux_frame_base_before_sigtramp, and
12775 hppa32_hpux_frame_find_saved_regs_in_sigtramp.
12776
12777 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
12778
12779 * config/pa/tm-hppah.h: Update copyright years.
12780
12781 2004-01-08 Andrew Cagney <cagney@redhat.com>
12782
12783 * mips-tdep.c (mips_n32n64_reg_struct_has_addr): Delete function.
12784 (mips_o32_reg_struct_has_addr): Delete function.
12785 (mips_gdbarch_init): Update.
12786 (mips_extract_struct_value_address): Delete function.
12787
12788 2004-01-08 David Mosberger <davidm@hpl.hp.com>
12789
12790 * ia64-linux-tdep.c: Update GATE_AREA_END value to reflect
12791 reality.
12792
12793 2004-01-07 Andrew Cagney <cagney@redhat.com>
12794
12795 * mips-tdep.c (mips_gdbarch_init): Set elf_flags to the previous
12796 architecture's elf flags (when available).
12797
12798 * mips-tdep.c (mips_gdbarch_init): Move code determining the MIPS
12799 FPU to the start, check the MIPS FPU when looking for an old
12800 architecture.
12801 (set_mipsfpu_single_command): Update the architecture.
12802 (set_mipsfpu_double_command, set_mipsfpu_none_command): Ditto.
12803
12804 * mips-tdep.c (MIPS_DEFAULT_MASK_ADDRESS_P): Delete macro.
12805 (mips_mask_address_p): Add "tdep" parameter.
12806 (show_mask_address, mips_addr_bits_remove): Update.
12807 (mips_dump_tdep): Update.
12808 (MIPS_DEFAULT_STACK_ARGSIZE): Delete macro.
12809 (MIPS_STACK_ARGSIZE): Delete macro.
12810 (mips_stack_argsize, mips_eabi_push_dummy_call): Update.
12811 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call): Update.
12812 (mips_o64_push_dummy_call, mips_o32_return_value): Update.
12813 (mips_dump_tdep): Update.
12814 (MIPS_SAVED_REGSIZE): Delete macro.
12815 (MIPS_DEFAULT_SAVED_REGSIZE): Delete macro.
12816 (mips_saved_regsize, mips_eabi_use_struct_convention): Update.
12817 (mips_eabi_reg_struct_has_addr, mips_find_saved_regs): Update.
12818 (mips_frame_saved_pc, mips16_heuristic_proc_desc): Update.
12819 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call): Update.
12820 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update.
12821 (mips_pop_frame, return_value_location): Update.
12822 (mips_n32n64_return_value, mips_dump_tdep): Update.
12823
12824 * mips-tdep.c (mips_gdbarch_init): Clean up code selecting the
12825 MIPS ABI.
12826
12827 * mips-tdep.c: Update copyright.
12828 (mips_gdbarch_init): Merge two code blocks handling the register
12829 name and number layout.
12830
12831 2004-01-02 Pawel Ostrowski <pasza@zodiac.mimuw.edu.pl>
12832
12833 * tracepoint.c (validate_actionline): Fix segv at EOF
12834
12835 2004-01-07 Michael Chastain <mec.gnu@mindspring.com>
12836
12837 * hpread.c (hpread_read_struct_type): Call SET_FIELD_PHYSNAME
12838 properly for static fields.
12839
12840 2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
12841 Jason Molenda <jmolenda@apple.com>
12842
12843 * disasm.c: Update copyright to include 2004.
12844 (do_mixed_source_and_assembly): For uiout asm list
12845 and tuple cleanups, initialize to null_cleanup instead of
12846 NULL and do so prior to loop. Only reset when we close off
12847 the tuple/list. Move check for whether to close off the
12848 asm tuple/list to after dump_insns call where it will be run
12849 on each loop iteration.
12850
12851 2004-01-05 Andrew Cagney <cagney@redhat.com>
12852
12853 * ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
12854 should be a switch case and not a label.
12855 * mips-tdep.c (mips32_next_pc): Delete unused labels
12856 "greater_equal_branch" and "less_zero_branch".
12857 * jv-valprint.c (java_print_value_fields): Delete unused label
12858 "flush_it".
12859
12860 * target.c (unpush_target): Only close a target that is in the
12861 target stack.
12862
12863 2004-01-05 Mark Kettenis <kettenis@gnu.org>
12864
12865 * sparc-tdep.c (sparc_extract_struct_value_address): Get the
12866 address from [sp + 64] instead of %o2.
12867
12868 * frame.c (get_prev_frame): Don't try to unwind the PC. This
12869 fixes PR backtrace/1476.
12870
12871 2004-01-05 Andrew Cagney <cagney@redhat.com>
12872
12873 * libunwind-frame.h (struct frame_id): Add opaque declaration,
12874 move to start of file.
12875 * i386-tdep.h (struct regcache): Add opaque declaration.
12876 * config/ia64/nm-linux.h (struct target_ops): Add opaque
12877 declaration.
12878 * ia64-tdep.c (ia64_find_proc_info_x): Do not use __FUNCTION__.
12879 (ia64_gdbarch_init): Use "GNU/Linux" in comment.
12880 * win32-nat.c (fake_create_process): Use ISO C style definition.
12881 * stabsread.c (define_symbol): Delete #ifndef
12882 DEPRECATED_USE_REGISTER_NOT_ARG wrapper around
12883 stabs_argument_has_addr call, macro never defined.
12884
12885 2004-01-04 Michael Chastain <mec.gnu@mindspring.com>
12886
12887 * op50-rom.c: Delete.
12888 * w89k-rom.c: Delete.
12889 * Makefile.in: Remove references.
12890
12891 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12892
12893 * x86-64-tdep.c: Update copyright year.
12894 (struct amd64_register_info): Rename from x86_64_register_info.
12895 (amd64_register_info): Rename from x86_64_register_info.
12896 (AMD64_NUM_REGS): Rename from X86_64_NUM_REGS.
12897 (amd64_register_name): Rename from x86_64_register_name.
12898 (amd64_register_type): Rename from x86_64_register_type.
12899 (amd64_dwarf_regmap): Rename from x86_64_dwarf_regmap.
12900 (amd64_dwarf_regmap_len): Rename from x86_64_dwarf_regmap_len.
12901 (amd64_dwarf_reg_to_regnum): Rename from
12902 x86_64_dwarf_reg_to_regnum.
12903 (amd64_convert_register_p): Rename from x86_64_convert_register_p.
12904 (amd64_push_dummy_call): Rename from x86_64_push_dummy_call.
12905 (AMD64_NUM_SAVED_REGS): Rename from X86_64_NUM_SAVED_REGS.
12906 (struct amd64_frame_cache): Renamed from x86_64_frame_cache.
12907 (amd64_alloc_frame_cache): Renamed from x86_64_alloc_frame_cache.
12908 (amd64_analyze_prologue): Rename from x86_64_analyze_prologue.
12909 (amd64_skip_prologue): Rename from x86_64_skip_prologue.
12910 (amd64_frame_cache): Rename from x86_64_frame_cache.
12911 (amd64_frame_this_id): Rename from x86_64_frame_this_id.
12912 (amd64_frame_prev_register): Rename from
12913 x86_64_frame_prev_register.
12914 (amd64_frame_unwind): Rename from x86_64_frame_unwind.
12915 (amd64_frame_sniffer): Rename from x86_64_frame_sniffer.
12916 (amd64_sigtramp_frame_cache): Rename from
12917 x86_64_sigtramp_frame_cache.
12918 (amd64_sigtramp_frame_prev_register): Rename from
12919 x86_64_sigtramp_frame_prev_register.
12920 (amd64_sigtramp_frame_unwind): Rename from
12921 x86_64_sigtramp_frame_unwind.
12922 (amd64_sigtramp_frame_sniffer): Rename from
12923 x86_64_sigtramp_frame_sniffer.
12924 (amd64_frame_base_address): Rename from x86_64_frame_base_address.
12925 (amd64_frame_base): Rename from x86_64_frame_base.
12926 (amd64_unwind_dummy_id): Rename from x86_64_unwind_dummy_id.
12927 (amd64_frame_align): Rename from x86_64_frame_align.
12928 (amd64_supply_fpregset): Rename from x86_64_supply_fpregset.
12929 (amd64_regset_from_core_section): Rename from
12930 x86_64_regset_from_core_section.
12931 (x86_64_init_abi): Update comments.
12932
12933 2004-01-04 Nick Roberts <nick@nick.uklinux.net>
12934
12935 * MAINTAINERS (write after approval): Add myself.
12936
12937 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12938
12939 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
12940 `float' arguments.
12941
12942 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12943
12944 * sparc64-tdep.c (sparc64_store_floating_fields): Update comment
12945 such that it mentions a specific version of GCC that exhibits this
12946 bug.
12947
12948 2004-01-03 Mark Kettenis <kettenis@gnu.org>
12949
12950 * sparc64-tdep.c (sparc64_store_floating_fields): If TYPE is a
12951 structure that has a single `float' member, store it in %f1 in
12952 addition to %f0.
12953
12954 * sparc-sol2-nat.c: Add missing '\'.
12955
12956 * sparc-tdep.c (sparc32_return_value): New function.
12957 (sparc32_use_struct_convention, sparc32_return_value_on_stack):
12958 Remove functions.
12959 (sparc32_gdbarch_init): Set return_value, don't set
12960 extract_return_value, store_return_value, use_struct_convention
12961 and return_value_on_stack.
12962
12963 * sparc-sol2-nat.c: Add missing ')'.
12964
12965 2004-01-03 J. Brobecker <brobecker@gnat.com>
12966
12967 * infrun.c (handle_step_into_function): New function.
12968 (handle_inferior_event): Extract out some code into the new
12969 function above.
12970
12971 2004-01-03 J. Brobecker <brobecker@gnat.com>
12972
12973 * infrun.c (handle_inferior_event): Move the declaration of
12974 real_stop_pc inside the if blocks where it is used.
12975
12976 2004-01-03 Mark Kettenis <kettenis@gnu.org>
12977
12978 * sparc64-tdep.c (sparc64_16_byte_align_p)
12979 (sparc64_store_floating_fields, sparc64_store_floating_fields):
12980 Use check_typedef to get subtypes of structures and unions.
12981 (sparc64_store_return_value): Fix calculation of the appropriate
12982 offset into VALBUF when storing a structure or union.
12983 (sparc64_return_value): New function.
12984 (sparc64_use_struct_convention): Remove function.
12985 (sparc64_init_abi): Set return_value, don't set
12986 extract_return_value, store_return_value and
12987 use_struct_convention.
12988
12989 2004-01-03 Eli Zaretskii <eliz@elta.co.il>
12990
12991 * config/djgpp/fnchange.lst: Add lines for COPYING.LIBGLOSS,
12992 bfd/doc/ChangeLog-9103, bfd/elf32-m68hc1x.c,
12993 gdb/config/alpha/xm-alphaosf.h,
12994 gdb/config/powerpc/tm-ppcle-eabi.h,
12995 gdb/config/rs6000/tm-rs6000-aix4.h, gdb/gdbtk/ChangeLog-2001,
12996 gdb/gdbtk/ChangeLog-2002, gdb/gdbtk/ChangeLog-2003,
12997 gdb/gdbtk/plugins/intel-pentium/intel-pentium.tcl.in,
12998 gdb/gdbtk/plugins/rhabout/rhabout.tcl.in, gdb/i386-linux-nat.c,
12999 gdb/ia64-aix-nat.c, gdb/ia64-aix-tdep.c, gdb/ia64-linux-nat.c,
13000 gdb/ia64-linux-nat.c, gdb/ppc-linux-tdep.c, gdb/ppc-linux-nat.c,
13001 gdb/sparc64nbsd-nat.c, gdb/sparc64nbsd-tdep.c,
13002 gdb/sparc64-linux-nat.c, gdb/sparc64-linux-tdep.c,
13003 gdb/sparc64-nat.c, gdb/sparc64-tdep.c, gdb/sparc64-sol2-tdep.c,
13004 gdb/sparc-sol2-nat.c, gdb/sparc-sol2-tdep.c,
13005 gdb/testsuite/gdb.gdbtk/, gdb/testsuite/gdb.mi/mi-var-child.exp,
13006 nclude/ChangeLog-9103, include/coff/ChangeLog-9103,
13007 include/elf/ChangeLog-9103, include/opcode/ChangeLog-9103,
13008 opcodes/ChangeLog-0001, opcodes/ChangeLog-0203,
13009 opcodes/openrisc-dis.c, opcodes/openrisc-desc.h,
13010 sim/frv/profile-fr550.c, sim/frv/profile-fr550.h,
13011 sim/sh64/sem-compact-switch.c, sim/sh64/sem-media-switch.c,
13012 sim/testsuite/sim/sh64/compact/ldsl-mach.cgs,
13013 sim/testsuite/sim/sh64/compact/ldsl-macl.cgs,
13014 sim/testsuite/sim/sh64/compact/stsl-mach.cgs, and
13015 sim/testsuite/sim/sh64/compact/stsl-macl.cgs.
13016 Remove lines for .cvsignore files.
13017
13018 2004-01-03 J. Brobecker <brobecker@gnat.com>
13019
13020 * infrun.c: Back out the previous change.
13021
13022 2004-01-03 Mark Kettenis <kettenis@gnu.org>
13023
13024 * NEWS: Mention revised SPARC target. Add sparc-*-lynxos* and
13025 sparc-*-sunos4* to the list of REMOVED configurations.
13026
13027 * configure.tgt: Add back sparc-*-vxworks*.
13028 * remote-vxsparc.c: Remove all includes except for "defs.h",
13029 "regcache.h", "vx-share/ptrace.h" and "vx-share/regPacket.h".
13030 Include "sparc-tdep.h".
13031 (SPARC_R_G1): New define.
13032 (vxsparc_gregset): New variable.
13033 (ext_format_sparc): Remove extern declaration.
13034 (vx_read_register): Rewrite to use sparc32_supply_gregset and
13035 sparc32_supply_fpregset.
13036 (vx_write_register): Rewrite to use sparc32_collect_gregset,
13037 sparc_collect_rwindow and sparc32_collect_fpregset.
13038 * config/sparc/tm-vxworks.h: New file, based on recently removed
13039 tm-vxsparc.h.
13040 * config/sparc/vxworks.mt: New file, based on recently removed
13041 vxworks.mt.
13042
13043 2004-01-03 J. Brobecker <brobecker@gnat.com>
13044
13045 * infrun.c (handle_step_into_function): New function.
13046 (handle_inferior_event): Extract out some code into the new
13047 function above.
13048
13049 2004-01-02 Mark Kettenis <kettenis@gnu.org>
13050
13051 * Makefile.in (ALLDEPFILES): Remove sparc-linux-nat.c and
13052 sparcl-tdep.c. Add sparc-linux-tdep.c, sparc-sol2-nat.c,
13053 sparc-sol2-tdep.c, sparc-sol2-nat.c, sparc-sol2-tdep.c,
13054 sparc64-linux-nat.c, sparc64-linux-tdep.c, sparc64-nat.c,
13055 sparc64-sol2-tdep.c, sparc64-tdep.c, sparc64fbsd-nat.c,
13056 sparc64fbsd-tdep.c, sparcnbsd-nat.c, sparcnbsd-tdep.c.
13057 (sparc_nat_h): New variable.
13058 (sparcbsd_nat_h, sparcnbsd_tdep_h): Remove variables.
13059 (tm-sun4os4.h): Remove dependency.
13060 (sparcbsd-nat.o, sparc-linux-nat.o): Remove dependencies.
13061 (sparc64fbsd-nat.o, sparc64fbsd-tdep.o, sparc64nbsd-nat.o,
13062 sparc64-tdep.o, sparc-nat.o, sparcnbsd-nat.o, sparcnbsd-tdep.o,
13063 sparc-tdep.o): Update dependencies.
13064 (sparc-linux-tdep.o, sparc-sol2-nat.o, sparc-sol2-tdep.o,
13065 sparc64-linux-nat.o, sparc64-linux-tdep.o, sparc64-nat.o,
13066 sparc64-sol2-tdep.o, sparc64-tdep.o, sparc64nbsd-tdep.o): New
13067 dependencies.
13068 * configure.host: Remove existing sparc-*-lynxos*,
13069 sparc-*-solaris*, sparc-*-sunos4*, sparc-*-sunos5*, sparc-*-*,
13070 ultrasparc-*-freebsd, sparcv9-*-freebsd, sparc64-*-linux*,
13071 sparcv9-*-* and sparc64-*-* triplets. Add new sparc64-*-linux*,
13072 sparc-*-solaris2*, sparcv9-*-solaris2* and sparc64-*-solaris2*
13073 triplets.
13074 * configure.tgt: Remove exitsing sparc-*-aout*, sparc-*-coff*,
13075 sparc-*-elf*, sparc*-lynxos*, sparc-*-solars2*, sparc-*-sunos4*,
13076 sparc-*-sunos5*, sparc-*-vxworks*, sparc64-*linux*, sparc64-*-*,
13077 sparcv9-*-* and commented out sparc64-*-solars2* triplets. Add
13078 new sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*,
13079 sparc64-*-linux, sparc-*-solaris2*, sparcv9-*-solaris*,
13080 sparc64-*-solaris2* and sparc64-*-* triplets.
13081 * sparc64-tdep.c: Update copyright year. Include "inferior.h",
13082 "symtab.h" and "objfiles.h".
13083 (BIAS): Remove define.
13084 (X_OP, X_RD, X_A, X_COND, X_OP2, X_IMM22, X_OP3, X_I, X_DISP22)
13085 (X_DISP19): Remove macros.
13086 (sparc_fetch_instruction): Remove function.
13087 (struct gdbarch_tdep): Remove definition.
13088 (SPARC64_NUM_REGS, SPARC64_NUM_PSEUDO_REGS): Use ARRAY_SIZE.
13089 (sparc_breakpoint_from_pc): Remove function.
13090 (struct sparc64_frame_cache): Remove definition.
13091 (sparc64_alloc_frame_cache, sparc64_analyze_prologue,
13092 sparc64_unwind_pc): Remove functions.
13093 (sparc64_skip_prologue): Use `struct sparc_frame_cache' instead of
13094 `struct sparc64_frame_cache. Call sparc_analyze_prologue instead
13095 of sparc64_analyze_prologue. Mark constant as ULL instead of UL.
13096 (sparc64_frame_cache): Change return type to `struct
13097 sparc_frame_cache *'. Simply call sparc_frame_cache.
13098 (sparc64_frame_this_id, sparc64_frame_prev_register,
13099 sparc64_frame_base_address): Use `struct sparc_frame_cache'
13100 instead of `struct sparc64_frame_cache.
13101 (sparc_unwind_dummy_id, sparc_extract_struct_value_address,
13102 sparc_analyze_control_transfer, sparc_software_single_step,
13103 sparc64_gdbarch_init, sparc_supply_rwindow, sparc_fill_rwindow,
13104 _initialize_sparc64_tdep): Remove functions.
13105 (TSTATE_CWP, TSTATE_ICC, TSTATE_XCC): New macros.
13106 (PSR_S, PSR_ICC, PSR_VERS, PSR_IMPL, PSR_V8PLUS, PSR_XCC): New
13107 macros.
13108 (sparc64_supply_gregset, sparc64_collect_gregset,
13109 sparc64_supply_fpregset, sparc64_collect_fpregset): New functions.
13110 (sparc64_init_abi): New function.
13111 * sparc64-tdep.h: Update copyright year. Fix typo in multiple
13112 inclusion guard. Include "sparc-tdep.h".
13113 (BIAS): Define.
13114 (r_tstate_offset, r_fprs_offset): New defines.
13115 (enum sparc_regnum): Remove defenition.
13116 (enum sparc64_regnum): Reformat.
13117 (sparc_supply_rwindow, sparc_fill_rwindow): Remove prototypes.
13118 (sparc64_init_abi, sparc64_supply_gregset,
13119 sparc64_collect_gregset, sparc64_supply_fpregset,
13120 sparc64_collect_fpregset): New prototypes.
13121 (sparc64_sol2_gregset, sparc64nbsd_gregset, sparc64fbsd_gregset):
13122 Add extern declarations.
13123 (sparc64_sol2_init_abi): New prototype.
13124 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
13125 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
13126 prototypes.
13127 * sparc64fbsd-nat.c: Include "sparc-nat.h", don't include
13128 "sparnbsd-nat.h".
13129 (sparc64fbsd_reg_supplies_p, sparc64fbsd_fpreg_supplies_p): Remove
13130 functions.
13131 (_initialize_sparc64fbsd_nat): Remove initialization of
13132 sparcbsd_supply_reg, sparcbsd_fill_reg, sparcbsd_supply_fpreg,
13133 sparcbsd_fill_fpreg, sparcbsd_reg_supplies_p,
13134 sparcbsd_fpreg_supplies_p. Initialize sparc_gregset.
13135 * sparc64fbsd-tdep.c: Update copyright year. Include "frame.h",
13136 "frame-unwind.h", "trad-frame.h" and "gdb_assert.h".
13137 (sparc64fbsd_r_global_offset, sparc64fbsd_r_out_offset)
13138 (sparc64fbsd_r_fprs_offset, sparc64fbsd_r_tnpc_offset)
13139 (sparc64fbsd_r_tpc_offset, sparc64fbsd_r_tstate_offset)
13140 (sparc64fbsd_r_y_offset): Remove variables.
13141 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
13142 Make static and const.
13143 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
13144 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
13145 functions.
13146 (sparc64fbsd_gregset): New variable.
13147 (fetch_core_registers): Replace calls to sparc64fbsd_supply_reg
13148 and sparc64fbsd_supply_fpreg with calls to sparc64_supply_gregset
13149 and sparc64_supply_fpregset.
13150 (sparc64fbsd_pc_in_sigtramp, sparc64fbsd_sigtramp_frame_cache)
13151 (sparc64fbsd_sigtramp_frame_this_id)
13152 (sparc64fbsd_sigtramp_frame_prev_register): New functions.
13153 (sparc64fbsd_sigtramp_frame_unwind): New variable.
13154 (sparc64fbsd_sigtramp_frame_sniffer): New function.
13155 (sparc64fbsd_init_abi): Set pc_in_sigtramp, append
13156 sparc64fbsd_sigtramp_frame_sniffer. Call sparc64_init_abi.
13157 * sparcnbsd-tdep.c: Update copyright year. Include
13158 "floatformat.h", "frame.h", "frame-unwind.h", "symtab.h",
13159 "trad-frame.h" and "gdb_assert.h", don't include "target.h",
13160 "value.h" and "sparcnbsd-tdep.h".
13161 (REG32_OFFSET_PSR, REG32_OFFSET_PC, REG32_OFFSET_NPC)
13162 (REG32_OFFSET_Y, REG32_OFFSET_GLOBAL, REG32_OFFSET_OUT)
13163 (REG64_OFFSET_TSTATE, REG64_OFFSET_PC, REG64_OFFSET_NPC)
13164 (REG64_OFFSET_Y, REG64_OFFSET_GLOBAL, REG64_OFFSET_OUT): Remove
13165 defines.
13166 (sparcnbsd_gregset): New variable.
13167 (sparcnbsd_supply_reg32, sparcnbsd_supply_reg64)
13168 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64)
13169 (sparcnbsd_supply_fpreg32, sparcnbsd_supply_fpreg64)
13170 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64): Remove functions.
13171 (sparc32nbsd_sigtramp_start, sparc32nbsd_sigtramp_end): New
13172 variables.
13173 (sparc32nbsd_pc_in_sigtramp, sparc32nbsd_sigcontext_frame_cache)
13174 (sparc32nbsd_sigcontext_frame_this_id)
13175 (sparc32nbsd_sigcontext_frame_prev_register): New functions.
13176 (sparc32nbsd_sigcontext_frame_unwind): New variable.
13177 (sparc32nbsd_sigtramp_frame_sniffer): New function.
13178 (sparcnbsd_get_longjmp_target_32,
13179 sparcnbsd_get_longjmp_target_64): Remove functions.
13180 (sparcnbsd_aout_in_solib_call_trampoline): Rewrite.
13181 (sparcnbsd_init_abi_common, sparcnbsd_init_aout,
13182 sparcnbsd_init_elf): Remove.
13183 (sparcnbsd_init_abi, sparcnbsd_aout_init_abi)
13184 (sparcnbsd_elf_init_abi): New functions.
13185 (_initialize_sparcnbsd_tdep): New prototype.
13186 (_initialize_sparnbsd_tdep): Update.
13187 * config/sparc/fbsd.mh (NATDEPFILES): Remove sparcbsd-nat.o and
13188 corelow.o. Add sparc64-nat.o and sparc-nat.o.
13189 * config/sparc/fbsd.mt (TDEPFILES): Add sparc-tdep.o and corelow.o.
13190 * config/sparc/linux.mh: Update comment.
13191 (XM_FILE, HOST_IPC): Remove variables.
13192 (NATDEPFILES): Add sparc-sol2-nat.o and core-regset.o. Remove
13193 sparc-linux-nat.o.
13194 * config/sparc/linux.mt: Update comment.
13195 (TDEPFILES): Add sparc-sol2-tdep.o and sparc-linux-tdep.o.
13196 * config/sparc/nbsd.mt: Reformat.
13197 * config/sparc/nbsd64.mh: Update comment.
13198 (NATDEPFILES): Add sparc-nat.o.
13199 * config/sparc/nbsd64.mt: Update comment.
13200 (TDEPFILES): Add sparc64-tdep.o and sparc64nbsd-tdep.o.
13201 (TM_FILE): Set to tm-nbsd.h.
13202 * config/sparc/nbsdelf.mh: Update comment.
13203 (NATDEPFILES): Add sparc-nat.o.
13204 (XM_FILE): Delete.
13205 * config/sparc/nbsdaout.mh: Update comment.
13206 (NATDEPFILES): Add sparc-nat.o
13207 (XM_FILE): Delete.
13208 * config/sparc/nm-linux.h: Update copyright year. Don't include
13209 "config/nm-svr4.h" and "solib.h". Add protection against multiple
13210 inclusion.
13211 (KERNEL_U_SIZE): Remove define.
13212 (kernel_u_size): Remove prototype.
13213 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define.
13214 * config/sparc/nm-nbsd.h: Update copyright. Don't include
13215 "regcache.h".
13216 (CHILD_PREPARE_TO_STORE): Remove define.
13217 * config/sparc/nm-nbsdaout.h: Tweak some comments.
13218 * sparc-nat.c, sparc-tdep.c, sparc-tdep.h, sparc64nbsd-nat.c,
13219 sparcnbsd-nat.c: Rewrite files.
13220 * config/sparc/tm-linux.h, config/sparc/tm-nbsd.h: Rewrite files.
13221 * sparc-linux-nat.c, sparcbsd-nat.c, sparcbsd-nat.h,
13222 sparcnbsd-tdep.h: Remove files.
13223 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4os4.h,
13224 config/sparc/nm-sun4sol2.h, config/sparc/sp64.mt,
13225 config/sparc/sp64linux.mt, config/sparc/sp64sol2.mt,
13226 config/sparc/sparc-em.mt, config/sparc/sparclynx.mh,
13227 config/sparc/sparclynx.mt, config/sparc/sun4os4.mh,
13228 config/sparc/sun4os4.mt, config/sparc/sun4sol2.mh,
13229 config/sparc/sun4sol2.mt, config/sparc/tm-sp64.h,
13230 config/sparc/tm-sp64linux.h, config/sparc/tm-sparc.h,
13231 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
13232 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
13233 config/sparc/tm-vxsparc.h, config/sparc/vxsparc.mt,
13234 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h: Remove files.
13235 * sparc-linux-tdep.c, sparc-nat.h, sparc-sol2-nat.c,
13236 sparc-sol2-tdep.c, sparc64-linux-nat.c, sparc64-linux-t dep.c,
13237 sparc64-nat.c, sparc64-sol2-tdep.c, sparc64nbsd-tdep.c: New files.
13238 * config/sparc/linux64.mh, config/sparc/linux64.mt,
13239 config/sparc/nm-sol2.h, config/sparc/sol2-64.mt,
13240 config/sparc/sol2.mh, config/sparc/sol2.mt, config/sparc/sparc.mt,
13241 config/sparc/sparc64.mt, config/sparc/tm-sol2.h: New files.
13242
13243 2004-01-02 Andrew Cagney <cagney@redhat.com>
13244
13245 From 2003-12-18 Kazuhiro Inaoka:
13246 * configure.host: Add m32r-linux target.
13247
13248 2004-01-02 Michael Chastain <mec.gnu@mindspring.com>
13249
13250 * top.c (print_gdb_version): Update year to 2004.
13251
13252 2004-01-02 Mark Mitchell <mark@codesourcery.com>
13253
13254 * MAINTAINERS: Add myself to the write-after-approval category.
13255
13256 2004-01-02 Daniel Jacobowitz <drow@mvista.com>
13257
13258 From Bernardo Innocenti <bernie@develer.com>:
13259 * configure.tgt: Add uClinux target.
13260
13261 2004-01-02 Andrew Cagney <cagney@redhat.com>
13262
13263 * utils.c (do_my_cleanups): Make static, add forward declaration.
13264 * defs.h (do_my_cleanups): Delete declaration.
13265
13266 2004-01-02 Eli Zaretskii <eliz@elta.co.il>
13267
13268 * config/djgpp/fnchange.lst: Add lines for gdb/ChangeLog-2003 and
13269 bfd/ChangeLog-0203.
13270
13271 2004-01-02 Mark Kettenis <kettenis@gnu.org>
13272
13273 * configure.in: Check for <machine/reg.h>. Check for `struct reg'
13274 in <machine/reg.h>.
13275 * configure, config.in: Regenerate.
13276
13277 For older changes see ChangeLog-2003, mi/ChangeLog-1999-2003, and
13278 tui/ChangeLog-1998-2003.
13279 \f
13280 Local Variables:
13281 mode: change-log
13282 left-margin: 8
13283 fill-column: 74
13284 version-control: never
13285 End:
This page took 0.304605 seconds and 4 git commands to generate.