* amd64obsd-nat.c: Include "gdbcore.h", "regcache.h",
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2004-05-23 Mark Kettenis <kettenis@gnu.org>
2
3 * amd64obsd-nat.c: Include "gdbcore.h", "regcache.h",
4 <sys/types.h>, <machine/frame.h>, <machine/pcb.h> and "bsd-kvm.h".
5 (amd64obsd_supply_pcb): New function.
6 (_initialize_amd64obsd_nat): Enable libkvm interface.
7 * Makefile.in (amd64obsd-nat.o): Update dependencies.
8 * config/i386/obsd64.mh (NATDEPFILES): Add bsd-kvm.o
9 (LOADLIBES): New variable.
10
11 * sparcnbsd-nat.c: Include "gdbcore.h", "regcache.h",
12 <sys/types.h>, <machine/pcb.h> and "bsd-kvm.h".
13 (sparc32nbsd_supply_pcb): New function.
14 (_initialize_sparcnbsd_nat): Enable libkvm interface.
15 * Makefile.in (sparcnbsd-nat.o): Update dependencies.
16 * config/sparc/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
17 (LOADLIBES): New variable.
18
19 2004-05-22 Mark Kettenis <kettenis@gnu.org>
20
21 * bsd-kvm.c, bsd-kvm.h: New files.
22 * i386fbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
23 "bsd-kvm.h".
24 (i386fbsd_supply_pcb): New function.
25 * Makefile.in (ALLDEPFILES): Add bsd-kvm.c.
26 (i386fbsd-nat.o): Update dependencies.
27 (bsd_kvm_h): New variable.
28 (bsd-kvm.o): New dependency.
29 * config/i386/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
30 (LOADLIBES): New variable.
31
32 * regset.c: Tweak comment.
33 (regset_alloc): Remove descr argument. Use GDBARCH_OBSTACK_ZALLOC
34 macro.
35 * regset.h: Update copyright year.
36 (struct regset): Remove `descr' member, add `gdbarch' member.
37 (regset_alloc): Adjust prototype and comment.
38 * i386-tdep.c (i386_supply_gregset): Get TDEP from REGSET->arch.
39 (i386_supply_fpregset): Likewise.
40 (i386_regset_from_core_section): Update call to regset_alloc.
41 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Get TDEP from
42 REGSET->arch.
43 (i386obsd_aout_regset_from_core_section): Update call to
44 regset_alloc.
45 * i386nbsd-tdep.c (i386nbsd_aout_supply_regset): Get TDEP from
46 REGSET->arch.
47 (i386nbsd_aout_regset_from_core_section): Update call to
48 regset_alloc.
49 * amd64-tdep.c (amd64_supply_fpregset): Get TDEP from
50 REGSET->arch.
51 (amd64_regset_from_core_section): Update call to regset_alloc.
52 * amd64obsd-tdep.c (amd64obsd_supply_regset): Get TDEP from
53 REGSET->arch.
54 (amd64obsd_regset_from_core_section): Update call to regset_alloc.
55 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Directly pass
56 &sparc32nbsd_gregset in sparc32_supply_gregset call.
57 (sparc32nbsd_init_abi): Update call to regset_alloc.
58 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Directly pass
59 &sparc64obsd_core_gregset in sparc64_supply_gregset call.
60 (sparc64obsd_init_abi): Update call to regset_alloc.
61 * sparc64nbsd-tdep.c (sparc64nbsd_supply_gregset): Directly pass
62 &sparc64nbsd_gregset in sparc64_supply_gregset call.
63 (sparc64nbsd_init_abi): Update call to regset_alloc.
64 * sparc64fbsd-tdep.c (sparc64fbsd_supply_gregset): Directly pass
65 &sparc64fbsd_gregset in sparc64_supply_gregset call.
66 (sparc64fbsd_init_abi): Update call to regset_alloc.
67
68 2004-05-22 Jim Blandy <jimb@redhat.com>
69
70 * ppc-tdep.h (spe_register_p): New declaration.
71 (struct gdbarch_tdep): New members: ppc_acc_regnum and
72 ppc_spefscr_regnum.
73 * rs6000-tdep.c (spe_register_p): New function.
74 (rs6000_dwarf2_stab_reg_to_regnum): Recognize numbers for acc and
75 spefscr.
76 (rs6000_gdbarch_init): Initialize the new members of the tdep
77 structure.
78
79 2004-05-21 Jim Blandy <jimb@redhat.com>
80
81 * ppc-linux-nat.c (fetch_register): Move code back to be next
82 to the comment that describes it. (Moved code, instead of
83 comment, for symmetry with store_register.)
84
85 Allocate regset structures in the gdbarch's obstack, not using
86 xmalloc.
87 * regset.c (regset_alloc): Renamed from regset_xmalloc.
88 Add 'arch' argument. Allocate the regset on arch's obstack, not
89 using xmalloc.
90 * regset.h (regset_alloc): Update declaration.
91 * am64-tdep.c (amd64_regset_from_core_section): Update call; pass
92 gdbarch argument.
93 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
94 * i386-tdep.c (i386_regset_from_core_section): Same.
95 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
96 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
97 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
98 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
99 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
100 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
101
102 2004-05-21 Joel Brobecker <brobecker@gnat.com>
103
104 * config/djgpp/fnchange.lst: Undo previous change, was useless.
105
106 2004-05-21 Jim Blandy <jimb@redhat.com>
107
108 * dwarf2expr.c (execute_stack_op): Add 'break' statements after
109 cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
110
111 2004-05-20 Jim Blandy <jimb@redhat.com>
112
113 * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
114
115 2004-05-20 Mark Kettenis <kettenis@gnu.org>
116
117 * regset.h: Make prototype const-correct.
118 * regset.c (regset_xmalloc): Make const-correct.
119
120 2004-05-20 Paul N. Hilfinger <hilfinger@gnat.com>
121
122 * symtab.h (SYMBOL_SEARCH_NAME): New definition.
123 (SYMBOL_MATCHES_SEARCH_NAME): New definition.
124 (symbol_search_name): Declare.
125
126 * dictionary.c (iter_name_first_hashed): Match on SYMBOL_SEARCH_NAME.
127 (iter_name_next_hashed): Ditto.
128 (iter_name_next_linear): Ditto.
129 (insert_symbol_hashed): Hash on SYMBOL_SEARCH_NAME.
130
131 * symtab.c (lookup_partial_symbol): Assume symbols ordered by
132 search name, using SYMBOL_SEARCH_NAME and SYMBOL_MATCHES_SEARCH_NAME.
133 (symbol_search_name): New function.
134
135 * symfile.c (compare_psymbols): Order by SYMBOL_SEARCH_NAME.
136
137 * minsyms.c (build_minimal_symbol_hash_tables): Change
138 test for adding to demangled hash table to check for difference
139 between SYMBOL_SEARCH_NAME and SYMBOL_LINKAGE_NAME.
140
141 2004-05-19 Jim Blandy <jimb@redhat.com>
142
143 Use a constructor function to create regset structures.
144 * regset.h (supply_regset_ftype, collect_regset_ftype): New typedefs.
145 (struct regset): Use supply_regset_ftype. Add new
146 'collect_regset' member.
147 (regset_xmalloc): New declaration.
148 * regset.c: New file.
149 * am64-tdep.c (amd64_regset_from_core_section): Use
150 regset_xmalloc to construct regset structures.
151 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
152 * i386-tdep.c (i386_regset_from_core_section): Same.
153 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
154 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
155 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
156 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
157 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
158 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
159 * Makefile.in (COMMON_OBS): Add regset.o.
160 (regset.o): New rule.
161
162 2004-05-19 Joel Brobecker <brobecker@gnat.com>
163
164 * config/djgpp/fnchange.lst: Add entries for pthread_cond_wait.exp
165 and pthread_cond_wait.c.
166
167 2004-05-18 Jim Blandy <jimb@redhat.com>
168
169 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize tdep fields
170 before the mach-specific switch, and then let the individual cases
171 override the defaults, rather than leaving them uninitialized
172 until the switch and then setting them in each case.
173
174 2004-05-18 Randolph Chung <tausq@debian.org>
175
176 * hppa-tdep.c (hppa_frame_cache): Check for validity of r31 for
177 millicode functions.
178
179 2004-05-18 Randolph Chung <tausq@debian.org>
180
181 * somsolib.c (som_solib_remove_inferior_hook): Make all the size
182 references to dld_flags_buffer consistent.
183
184 2004-05-18 Randolph Chung <tausq@debian.org>
185
186 * hppa-tdep.c (hppa_frame_cache): If a frame pointer is available, use
187 it for unwinding the stack.
188
189 2004-05-18 Randolph Chung <tausq@debian.org>
190
191 * config/pa/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE)
192 Undefine these so we can overide them using gdbarch.
193
194 2004-05-18 Randolph Chung <tausq@debian.org>
195
196 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't do export stub
197 handling for 64-bit HPUX (elf).
198
199 2004-05-18 Daniel Jacobowitz <dan@debian.org>
200
201 * alpha-tdep.c (alpha_gdbarch_init): Use LL suffix for large
202 constants.
203 * amd64-tdep.c (amd64_skip_prologue): Likewise.
204 * ia64-tdep.c (examine_prologue): Likewise.
205 * ns32k-tdep.c (ns32k_fix_call_dummy): Remove unused function.
206 * v850-tdep.c (v850_fix_call_dummy): Likewise.
207
208 2004-05-18 Mark Kettenis <kettenis@gnu.org>
209
210 * vax-tdep.c (vax_return_value): Implement
211 RETURN_VALUE_ABI_RETURNS_ADDRESS.
212
213 2004-05-17 Mark Kettenis <kettenis@gnu.org>
214
215 * vax-tdep.c (vax_return_value): Fix typo.
216
217 2004-05-17 Andrew Cagney <cagney@redhat.com>
218
219 * MAINTAINERS: Mark Salter was also responsible for
220 testsuite/config/
221
222 * NEWS: Mention signal fixes.
223
224 2004-05-17 Randolph Chung <tausq@debian.org>
225
226 * hppa-tdep.c (hppa_stub_frame_unwind_cache): For HPUX stub unwinding,
227 check to see if we are unwinding an export stub. Export stubs clobber
228 the %rp in the call path and stores the original rp in a stack slot.
229
230 2004-05-17 Jim Blandy <jimb@redhat.com>
231
232 * MAINTAINERS: Update address for J.T. Conklin.
233
234 2004-05-17 Randolph Chung <tausq@debian.org>
235
236 * hppa-tdep.c: Remove superfluous #include's.
237 * Makefile.in (hppa-tdep.o): Update dependencies.
238
239 2004-05-17 Randolph Chung <tausq@debian.org>
240
241 * hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
242 (THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
243 (unwind_command, hppa_alignof, prologue_inst_adjust_sp)
244 (is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
245 (read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
246 Remove static function declarations.
247
248 2004-05-17 Mark Kettenis <kettenis@gnu.org>
249
250 * alphabsd-nat.c: Update copyright year.
251 (getregs_supplies): Replace PC_REGNUM with ALPHA_PC_REGNUM.
252
253 * m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM
254 and M68K_A2_REGNUM.
255
256 * m68k-tdep.c (m68k_svr4_return_value): Implement
257 RETURN_VALUE_ABI_RETURNS_ADDRESS.
258
259 2004-05-16 Mark Kettenis <kettenis@gnu.org>
260
261 * sol-thread.c Update copyright year. Fix various coding
262 standards violations. Tweak a few comments.
263 (td_err_string, td_state_string, thread_to_lwp, lwp_to_thread):
264 Delete prototypes.
265
266 2004-05-15 Randolph Chung <tausq@debian.org>
267
268 * hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs
269 as pointer instead of array reference since HPUX compiler does
270 not accept unsized array arguments.
271 * somsolib.c (dld_flags_buffer): Use constant array size.
272
273 2004-05-15 Mark Kettenis <kettenis@gnu.org>
274
275 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimal
276 offset with decimal offset.
277 (amd64obsd_sigcontext_addr): Return correct address for entire
278 signal trampoline.
279
280 * vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
281 instead of get_frame_base.
282
283 * i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.
284 (fill_gregset): Use regcache_raw_collect.
285
286 * config/djgpp/fnchange.lst: Add entries for ppcobsd-nat.c and
287 ppcobsd-tdep.c.
288
289 * config/sparc/tm-nbsd64.h: Remove file.
290 * config/tm-sunos.h: Remove file.
291
292 2004-05-15 Joel Brobecker <brobecker@gnat.com>
293
294 * rs6000-tdep.c (store_param_on_stack_p): New function,
295 an improved version of some code extracted from skip_prologue().
296 (skip_prologue): Use store_param_on_stack_p() to detect
297 instructions saving a parameter on the stack. Detect when r0
298 is used to save a parameter.
299 Do not mark "li rx, SIMM" instructions as part of the prologue,
300 unless the following instruction is also part of the prologue.
301
302 2004-05-14 Andrew Cagney <cagney@redhat.com>
303
304 * infrun.c (handle_inferior_event): Simplify
305 STEP_OVER_UNDEBUGGABLE.
306
307 * infrun.c (handle_step_into_function): Delete function.
308 (handle_inferior_event): Inline calls to
309 handle_step_into_function.
310
311 2004-05-14 Jerome Guitton <guitton@rome.act-europe.fr>
312
313 * rs6000-nat.c: Fix a comment.
314
315 2004-05-12 David Anderson <davea@sgi.com>
316
317 Committed by Jim Blandy <jimb@redhat.com>:
318 * regcache.c (struct regcache_descr): fix comment spelling.
319
320 2004-05-13 J. Brobecker <brobecker@gnat.com>
321
322 * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
323 Fixes a link link failure.
324
325 2004-05-13 J. Brobecker <brobecker@gnat.com>
326
327 * aix-thread.c (store_regs_kernel_thread): Fix a little obvious
328 error that was causing the build to fail.
329
330 2004-05-13 J. Brobecker <brobecker@gnat.com>
331
332 * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.
333 * Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
334
335 2004-05-13 Andrew Cagney <cagney@redhat.com>
336
337 * infrun.c (handle_inferior_event): Check for
338 STEP_OVER_UNDEBUGGABLE after signal trampolines and function
339 calls. Update comments.
340
341 2004-05-13 Jim Blandy <jimb@redhat.com>
342
343 * aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)
344 (fetch_regs_user_thread, fetch_regs_kernel_thread)
345 (store_regs_user_thread, store_regs_kernel_thread): Use
346 ppc_num_gprs and ppc_num_fprs instead of '32' and '31'.
347 * ppc-linux-nat.c (fill_gregset): Same.
348 * ppc-linux-tdep.c (ppc_linux_supply_gregset)
349 (ppc_linux_sigtramp_cache): Same.
350 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg)
351 (ppcnbsd_sigtramp_cache_init): Same.
352 * rs6000-nat.c (fetch_core_registers): Same.
353 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset)
354 (rs6000_frame_cache): Same.
355
356 * aix-thread.c (supply_gprs64, fetch_regs_user_thread)
357 (store_regs_user_thread): Use tdep->ppc_gp0_regnum, instead
358 of assuming that the gprs are numbered starting with zero.
359 * ppc-linux-nat.c (fill_gregset): Same.
360 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Same.
361 * ppcnbsd-nat.c (getregs_supplies): Same.
362 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg): Same.
363 * rs6000-nat.c (fetch_core_registers): Same.
364 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset): Same.
365
366 2004-05-07 Michael Snyder <msnyder@redhat.com>
367
368 * tracepoint.c (scope_info): Add handling for LOC_COMPUTED,
369 LOC_COMPUTED_ARG, and LOC_INDIRECT.
370
371 2004-05-13 Andrew Cagney <cagney@redhat.com>
372
373 * infrun.c (handle_inferior_event): Use frame_unwind_id.
374
375 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
376
377 * dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust
378 base_address for shared libraries.
379
380 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
381
382 * MAINTAINERS (write after approval): Add myself.
383
384 2004-05-13 Ulrich Weigand <uweigand@de.ibm.com>
385
386 * breakpoint.c (bpstat_stop_status): Add new argument
387 STOPPED_BY_WATCHPOINT. Use it instead of testing
388 target_stopped_data_address agaist 0 to check whether
389 or not we stopped due to a hardware watchpoint.
390 * breakpoint.h (bpstat_stop_status): Adapt prototype.
391 * infrun.c (handle_inferior_event): Call bpstat_stop_status
392 with new argument.
393
394 2004-05-12 Jim Blandy <jimb@redhat.com>
395
396 * configure.in: When checking whether we should use the -bbigtoc
397 option, don't forget to restore the original value of LDFLAGS.
398 * configure: Regenerated.
399
400 2004-05-12 Andrew Cagney <cagney@redhat.com>
401
402 * thread.c (load_infrun_state): Delete step_sp.
403 * infrun.c (context_switch): Ditto.
404 * inferior.h (step_sp): Ditto.
405 * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto.
406 * gdbthread.h (struct thread_info, save_infrun_state)
407 (restore_infrun_state): Ditto.
408
409 2004-05-12 Ulrich Weigand <uweigand@de.ibm.com>
410
411 * MAINTAINERS (write after approval): Add myself.
412
413 2004-05-12 Andrew Cagney <cagney@redhat.com>
414
415 * infrun.c (adjust_pc_after_break): Rewrite decr logic,
416 eliminate reference to step_sp.
417 (struct execution_control_state, init_execution_control_state)
418 (handle_inferior_event, keep_going): Delete update_step_sp and
419 step_sp.
420 * infcmd.c (step_sp): Note that variable is unused.
421
422 2004-05-11 Andrew Cagney <cagney@redhat.com>
423
424 * infrun.c (step_over_function): Delete function.
425 (handle_step_into_function): Use insert_step_resume_breakpoint.
426 (insert_step_resume_breakpoint): Fix assertion.
427
428 2004-05-11 Nick Roberts <nickrob@gnu.org>
429
430 * utils.c (defaulted_query): Just use the normal query input type
431 when printing the annotations.
432
433 2004-05-11 Andrew Cagney <cagney@redhat.com>
434
435 * infrun.c (handle_inferior_event): Simplify code handling
436 step-into or return-from a signal trampoline.
437
438 2004-05-11 Andrew Cagney <cagney@redhat.com>
439
440 * ppcnbsd-tdep.c: Include "gdb_assert.h".
441 * Makefile.in (ppcnbsd-tdep.o): Update dependencies.
442
443 2004-05-10 Jim Blandy <jimb@redhat.com>
444
445 * ppc-bdm.c (bdm_ppc_fetch_registers): Replace utterly broken code
446 with a call to internal_error.
447
448 * ppc-tdep.h (struct gdbarch_tdep): Change definition of
449 ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
450 processor variant lacks those registers.
451 (ppc_floating_point_unit_p): Change description to make it clear
452 that this returns info about the ISA, not the ABI.
453 * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
454 return true or false by checking tdep->ppc_fp0_regnum and
455 tdep->ppc_fpscr_regnum. The original code replicated the BFD
456 arch/mach switching done in rs6000_gdbarch_init; it's better to
457 keep that logic there, and just check the results here.
458 (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
459 tdep->ppc_fpscr_regnum to -1 to indicate that we have no
460 floating-point registers.
461 (ppc_supply_fpregset, ppc_collect_fpregset)
462 (rs6000_push_dummy_call, rs6000_extract_return_value)
463 (rs6000_store_return_value): Assert that we have floating-point
464 registers.
465 (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
466 (rs6000_frame_cache): Don't note the locations at which
467 floating-point registers were saved if we have no fprs.
468 * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
469 registers.
470 (fetch_regs_user_thread, fetch_regs_kernel_thread)
471 (store_regs_user_thread, store_regs_kernel_thread): Only call
472 supply_fprs / fill_fprs if we actually have floating-point
473 registers.
474 (special_register_p): Check ppc_fpscr_regnum before matching
475 against it.
476 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
477 supply / collect fpscr if we don't have it.
478 * ppc-bdm.c: #include "gdb_assert.h".
479 (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
480 have floating-point registers, since I can't test this code on
481 FP-free systems to adapt it.
482 * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
483 fpscr and floating point register numbers if they don't exist.
484 (fetch_register): Assert that we have floating-point registers
485 before we reach the code that handles them.
486 (store_register): Same. And use tdep instead of calling
487 gdbarch_tdep again.
488 (fill_fpregset): Don't try to collect FP registers and fpscr if we
489 don't have them.
490 (ppc_linux_sigtramp_cache): Don't record the saved locations of
491 fprs and fpscr if we don't have them.
492 (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
493 don't have them.
494 * ppcnbsd-nat.c: #include "gdb_assert.h".
495 (getfpregs_supplies): Assert that we have floating-point registers.
496 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
497 * ppcobsd-tdep.c: #include "gdb_assert.h".
498 (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
499 have floating-point registers.
500 * rs6000-nat.c (regmap): Don't match against the fpscr and
501 floating point register numbers if they don't exist.
502 (fetch_inferior_registers, store_inferior_registers,
503 fetch_core_registers): Only fetch / store / supply the
504 floating-point registers and the fpscr if we have them.
505 * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
506 (ppcobsd-tdep.o): Update dependencies.
507
508 2004-05-10 Andrew Cagney <cagney@redhat.com>
509
510 * infrun.c (through_sigtramp_breakpoint): Delete variable.
511 (context_switch): Do not switch through_sigtramp_breakpoint.
512 * gdbthread.h (save_infrun_state, load_infrun_state)
513 (struct thread_info): Delete through_sigtramp_breakpoint parameter
514 and structure member.
515 * thread.c (load_infrun_state, save_infrun_state): Update.
516
517 2004-05-10 Mark Kettenis <kettenis@gnu.org>
518
519 * m68kbsd-tdep.c (m68kbsd_elf_init_abi): Call m68k_svr4_init_abi.
520
521 2004-05-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
522
523 * acinclude.m4: Quote macro names being defined by AC_DEFUN
524 throughout.
525 * aclocal.m4: Regenerate.
526
527 2004-05-10 Nathan J. Williams <nathanw@wasabisystems.com>
528
529 * alphanbsd-tdep.c: Fix include of "gdb_string.h".
530
531 2004-05-10 Andrew Cagney <cagney@redhat.com>
532
533 * infrun.c (check_sigtramp2): Delete function.
534 (handle_inferior_event): When single stepping, and taking a
535 signal, set a breakpoint at the signal return address. Delete
536 redundant calls to check_sigtramp2.
537 (insert_step_resume_breakpoint): New function.
538 (through_sigtramp_breakpoint, handle_inferior_event)
539 (follow_exec, wait_for_inferior, fetch_inferior_event)
540 (currently_stepping, keep_going): Delete most uses of
541 through_sigtramp_breakpoint, not that it should be deleted.
542 (delete_breakpoint_current_contents): Delete function.
543
544 2004-05-10 Randolph Chung <tausq@debian.org>
545
546 * config/pa/linux.mt (TM_FILE): Use new tm-linux.h for hppa-linux
547 target.
548 * config/pa/tm-linux.h: New file.
549
550 2004-05-10 Daniel Jacobowitz <drow@mvista.com>
551
552 * cli/cli-setshow.c (cmd_show_list): Check for "show" in the middle
553 of prefixes. Don't print the prefix twice in the CLI.
554
555 2004-05-10 Jim Blandy <jimb@redhat.com>
556
557 * rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do
558 collect all the gprs.
559
560 * rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error in
561 loop collecting gprs.
562
563 2004-05-09 Andrew Cagney <cagney@redhat.com>
564
565 * remote-vx.c (net_step): Delete step-range code.
566 * remote.c (remote_resume, init_all_packet_configs)
567 (set_remote_protocol_E_packet_cmd)
568 (show_remote_protocol_E_packet_cmd)
569 (remote_protocol_E, show_remote_cmd, _initialize_remote)
570 (remote_protocol_e, set_remote_protocol_e_packet_cmd)
571 (show_remote_protocol_e_packet_cmd): Ditto.
572
573 2004-05-09 Mark Kettenis <kettenis@gnu.org>
574
575 * hppa-tdep.h (enum hppa_regnum): Name enum, add HPPA_R1_REGNUM.
576
577 * hppa-tdep.h: Update copyright year.
578 (struct trad_frame_saved_reg): Add opaque declaration.
579
580 * amd64-tdep.c (amd64_return_value): Implement
581 RETURN_VALUE_ABI_RETURNS_ADDRESS.
582
583 * m68k-tdep.c (m68k_convert_register_p, m68k_register_to_value)
584 (m68k_value_to_register): New functions.
585 (m68k_gdbarch_init): Set convert_register_p, register_to_value and
586 value_to_register.
587
588 * defs.h (enum return_value_convention): Add
589 RETURN_VALUE_ABI_RETURNS_ADDRESS and
590 RETURN_VALUE_ABI_PRESERVES_ADDRESS.
591 * infcmd.c (legacy_return_value): New function.
592 (print_return_value): Rwerite to implement
593 RETURN_VALUE_ABI_RETURNS_ADDRESS.
594 * values.c (using_struct_return): Check for inequality to
595 RETURN_VALUE_REGISTER_CONVENTION instead of equality to
596 RETURN_VALUE_STRUCT_CONVENTION.
597 * i386-tdep.c (i386_return_value): Implement
598 RETURN_VALUE_ABI_RETURNS_ADDRESS.
599
600 * vax-tdep.c: Tweak comments. Reorder include files. Don't
601 include "symtab.h", "opcode/vax.h" and "inferior.h".
602 (vax_skip_prologue): Replace calls to read_memory_integer by calls
603 to read_memory_unsigned_integer.
604 (vax_gdbarch_init): Reorder.
605 (_initialize_vax_tdep): Spell out prototype.
606 * Makefile.in (vax-tdep.o): Update dependencies.
607
608 2004-05-08 Andrew Cagney <cagney@redhat.com>
609
610 * infrun.c (resume): Delete call to DO_DEFERRED_STORES.
611 * target.c (target_detach, target_disconnect): Ditto.
612
613 * infcall.c (call_function_by_hand): When no
614 DEPRECATED_SAVE_DUMMY_FRAME_TOS call generic_save_dummy_frame_tos.
615 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set
616 DEPRECATED_SAVE_DUMMY_FRAME_TOS.
617 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
618 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
619
620 * gdbarch.sh (DEPRECATED_FIX_CALL_DUMMY): Delete.
621 * gdbarch.h, gdbarch.c: Re-generate.
622 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
623 deprecated_fix_call_dummy.
624 * v850-tdep.c (v850_gdbarch_init): Ditto.
625 * infcall.c (call_function_by_hand): Do not call
626 DEPRECATED_FIX_CALL_DUMMY.
627
628 * gdbarch.sh (DEPRECATED_CALL_DUMMY_WORDS)
629 (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Delete.
630 * gdbarch.h, gdbarch.c: Re-generate.
631 * arm-linux-tdep.c (arm_linux_call_dummy_words)
632 (arm_linux_init_abi): Do not set deprecated_call_dummy_words or
633 deprecated_sizeof_call_dummy_words.
634 * arm-tdep.c (arm_call_dummy_words, arm_gdbarch_init): Ditto.
635 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
636 * v850-tdep.c (v850_gdbarch_init): Ditto.
637 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
638 * ns32k-tdep.c (ns32k_call_dummy_words, ns32k_gdbarch_init): Ditto.
639 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
640 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
641 * arch-utils.h (legacy_call_dummy_words)
642 (legacy_sizeof_call_dummy_words): Delete declarations.
643 * arch-utils.c (legacy_call_dummy_words)
644 (legacy_sizeof_call_dummy_words): Delete variables.
645
646 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Delete.
647 * gdbarch.h, gdbarch.c: Re-generate.
648 * inferior.h (PUSH_DUMMY_FRAME): Delete macro.
649 * infcall.c (call_function_by_hand): Eliminate call to
650 DEPRECATED_PUSH_DUMMY_FRAME.
651 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
652 push_dummy_frame.
653 (ns32k_push_dummy_frame): Delete function.
654
655 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
656 deprecated_call_dummy_breakpoint_offset or
657 deprecated_call_dummy_start_offset.
658 * dummy-frame.c, arm-tdep.c: Update comments.
659 * gdbarch.sh (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET)
660 (DEPRECATED_CALL_DUMMY_START_OFFSET): Delete.
661 * gdbarch.h, gdbarch.c: Re-generate.
662
663 * infcall.c (legacy_push_dummy_code): Delete function.
664 (push_dummy_code): Delete call.
665
666 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete.
667 * gdbarch.h, gdbarch.c: Re-generate.
668 * blockframe.c (legacy_frame_chain_valid): Simplify by eliminating
669 DEPRECATED_USE_GENERIC_DUMMY_FRAMES.
670 * infcall.c (legacy_push_dummy_code, call_function_by_hand): Ditto.
671 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Ditto.
672
673 * breakpoint.h (deprecated_frame_in_dummy): Delete declaration.
674 (struct frame_info): Delete opaque declaration.
675 * breakpoint.c (deprecated_frame_in_dummy): Delete function.
676 * frame.c (get_frame_type): Delete call.
677
678 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
679 pc_in_call_dummy.
680 * inferior.h (deprecated_pc_in_call_dummy_on_stack): Delete.
681 * blockframe.c (deprecated_pc_in_call_dummy_on_stack): Delete.
682
683 2004-05-08 Mark Kettenis <kettenis@gnu.org>
684
685 * alphanbsd-tdep.c: Include "gdb_string.h".
686 * armnbsd-tdep.c: Update copyright year.
687 Include "gdb_string.h".
688 * Makefile.in (alphanbsd-tdep.o, armnbsd-tdep.o): Update
689 dependencies.
690
691 * delta68-nat.c: Remove file.
692 * m68k-tdep.c (delta68_in_sigtramp, delta68_frame_args_address)
693 (delta68_frame_saved_pc, delta68_frame_num_args): Remove functions.
694 * Makefile.in (ALLDEPFILES): Remove delta68-nat.c.
695 (delta68-nat.o): Remove dependency.
696
697 * m68k-tdep.c (m68k_frameless_function_invocation): Remove
698 function.
699 (m68k_gdbarch_init): Don't set
700 deprecated_frameless_function_invocation.
701
702 2004-05-07 Randolph Chung <tausq@debian.org>
703
704 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
705 read_memory_nobpt for code reading when doing frame unwinding.
706 * hppa-linux-tdep.c (insns_match_pattern): Likewise.
707
708 2004-05-07 Randolph Chung <tausq@debian.org>
709
710 * hppa-linux-tdep.c (hppa_linux_sigtramp_find_sigcontext): Pass in pc
711 instead of sp, handle sigaltstack case.
712 (hppa_linux_sigtramp_frame_unwind_cache): Adjust calls to
713 hppa_linux_sigtramp_find_sigcontext, and set base to the frame of the
714 signal handler and not that of the caller.
715 (hppa_linux_sigtramp_unwind_sniffer): Adjust calls to
716 hppa_linux_sigtramp_find_sigcontext.
717
718 2004-05-07 Randolph Chung <tausq@debian.org>
719
720 * Makefile.in (ALLDEPFILES): Add hppa-linux-tdep.c and
721 hppa-linux-nat.c.
722 (hppa-linux-tdep.o, hppa-linux-nat.o): Define rules.
723 * hppa-linux-nat.c (fetch_register, store_register): Define.
724 (fetch_inferior_registers, store_inferior_registers): Define.
725 (supply_gregset): Add comment and clean up some unneeded code.
726 (fill_gregset): Add comment and fix so that it saves registers in
727 the right place in the gregset.
728 (fill_fpregset): Fix buffer overrun problem.
729 * config/pa/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
730
731 2004-05-07 Randolph Chung <tausq@debian.org>
732
733 * hppa-tdep.c (hppa_frame_prev_register_helper): New function to
734 do common handling of the pcoqt register.
735 (hppa_frame_prev_register, hppa_stub_frame_prev_register): Convert
736 to use helper function.
737 (hppa_frame_unwind_sniffer): Only use if unwind entry is present.
738 (hppa_fallback_frame_cache, hppa_fallback_frame_this_id)
739 (hppa_fallback_frame_prev_register, hppa_fallback_frame_unwind): New
740 generic fallback unwinder when all else fails.
741 (hppa_gdbarch_init): Add fallback sniffer.
742 * hppa-tdep.h (hppa_frame_prev_register_helper): Prototype.
743 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register): Convert
744 to use helper function.
745
746 2004-05-08 Joel Brobecker <brobecker@gnat.com>
747
748 * config/djgpp/fnchange.lst: Add translation rules for
749 gdb.arch/powerpc-aix-prologue.c and gdb.arch/powerpc-aix-prologue.exp.
750
751 2004-05-08 Mark Kettenis <kettenis@gnu.org>
752
753 * frame.c (get_prev_frame_1): Work around GCC bug.
754 * frame.h: Add comment about GCC bug.
755
756 2004-05-07 Andrew Cagney <cagney@redhat.com>
757
758 * observer.c: Include "commands.h" and "gdbcmd.h".
759 (observer_debug, _initialize_observer): Add the
760 command "set/show debug observer".
761 * observer.sh: When observer debugging, log notify calls.
762 * Makefile.in (observer.o): Update dependencies.
763
764 2004-05-07 Jason Molenda (jmolenda@apple.com)
765
766 * cli/cli-decode.c: Fix "SHOW_DOR" comment typeos.
767
768 2004-05-07 Jim Blandy <jimb@redhat.com>
769
770 * aix-thread.c (fetch_regs_kernel_thread, fill_gprs64,
771 fill_gprs32, store_regs_kernel_thread): Use tdep->ppc_gp0_regnum
772 to recognize gpr regnums, instead of assuming that
773 tdep->ppc_fp0_regnum marks the end of the general-purpose
774 registers.
775
776 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Assert that
777 the given architecture has floating-point registers.
778
779 2004-05-07 Andrew Cagney <cagney@redhat.com>
780
781 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Replace with
782 macro defined to 1.
783 * gdbarch.h, gdbarch.c: Re-generate.
784 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
785 deprecated_use_generic_dummy_frames.
786
787 2004-05-07 Brian Ford <ford@vss.fsi.com>
788
789 * NEWS: Mention Cygwin DWARF 2 support.
790
791 2004-05-07 Andrew Cagney <cagney@redhat.com>
792
793 * objfiles.h (struct entry_info): Delete unused fields
794 deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
795 * objfiles.c (init_entry_point_info, objfile_relocate): Update.
796 * mipsread.c (mipscoff_symfile_read): Update.
797 * mdebugread.c (parse_partial_symbols): Update.
798 * dwarfread.c (read_file_scope): Update.
799 * dwarf2read.c (read_file_scope): Update.
800 * dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
801 * coffread.c (complete_symtab): Update.
802
803 2004-05-07 Mark Kettenis <kettenis@gnu.org>
804
805 * infcall.c (_initialize_infcall): Fix typo.
806
807 2004-05-07 Andrew Cagney <cagney@redhat.com>
808
809 * cli/cli-decode.c (add_setshow_zinteger_cmd): New function.
810 * command.h (add_setshow_zinteger_cmd): Declare.
811
812 2004-05-06 Randolph Chung <tausq@debian.org>
813
814 * config/pa/tm-hppa.h (RO_REGNUM, FLAGS_REGNUM, RP_REGNUM)
815 (HPPA_FP_REGNUM, HPPA_SP_REGNUM, SAR_REGNUM, IPSW_REGNUM)
816 (PCOQ_HEAD_REGNUM, PCSQ_HEAD_REGNUM, PCOQ_TAIL_REGNUM, PCSQ_TAIL_REGNUM)
817 (EIEM_REGNUM, IIR_REGNUM, ISR_REGNUM, IOR_REGNUM, SR4_REGNUM)
818 (RCR_REGNUM, PID0_REGNUM, PID1_REGNUM, PID2_REGNUM, PID3_REGNUM)
819 (CCR_REGNUM, TR0_REGNUM, CR27_REGNUM, HPPA_FP0_REGNUM, FP4_REGNUM)
820 (ARG0_REGNUM, ARG1_REGNUM, ARG2_REGNUM, ARG3_REGNUM): Move *_REGNUM
821 definitions ...
822 * hppa-tdep.h: ... to here, with HPPA_ prefix.
823 * Makefile.in (hppah-nat.o): Add $(hppa_tdep_h)
824 * hppa-hpux-tdep.c (hppa32_hpux_frame_find_saved_regs_in_sig)
825 (hppa64_hpux_frame_find_saved_regs_in_sig)
826 (child_get_current_exception_event): Add HPPA_ prefix to *_REGNUM usage.
827 * hppa-linux-nat.c (GR_REGNUM, TR_REGNUM, greg_map): Likewise.
828 * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum)
829 (hppa_linux_target_write_pc, hppa_linux_sigtramp_frame_unwind_cache)
830 (hppa_linux_sigtramp_frame_prev_register): Likewise.
831 * hppa-tdep.c (hppa32_return_value, hppa64_return_value)
832 (hppa32_push_dummy_call, hppa64_push_dummy_call, hppa64_frame_align)
833 (hppa_target_read_pc, hppa_target_write_pc, hppa_frame_cache)
834 (hppa_frame_prev_register, hppa_stub_frame_unwind_cache)
835 (hppa_stub_frame_prev_register, hppa_unwind_dummy_id)
836 (hppa_skip_permanent_breakpoint, hppa_instruction_nullified)
837 (hppa32_register_type, hppa_cannot_store_register)
838 (hppa_fetch_pointer_argument, hppa_pseudo_register_read): Likewise.
839 * hppah-nat.c (store_inferior_registers, fetch_register): Likewise.
840 * hpread.c (hpread_process_one_debug_symbol): Likewise.
841 * pa64solib.c (pa64_solib_have_load_event)
842 (pa64_solib_have_unload_event, pa64_solib_loaded_library_pathname)
843 (pa64_solib_unloaded_library_pathname): Likewise.
844 * somsolib.c (som_solib_have_load_event, som_solib_have_unload_event)
845 (som_solib_library_pathname): Likewise.
846
847 2004-05-05 Jim Ingham <jingham@apple.com>
848
849 * breakpoint.c (create_breakpoints): Copy the ignore count and
850 thread id over from the pended breakpoint to the actual
851 breakpoint.
852
853 2004-05-05 Andrew Cagney <cagney@redhat.com>
854
855 * gdbarch.sh (PARM_BOUNDARY): Delete.
856 gdbarch.h, gdbarch.c: Re-generate.
857 * valops.c (PARM_BOUNDARY): Delete macro.
858 (value_push): Delete PARM_BOUNDARY code.
859 * m68k-tdep.c (m68k_gdbarch_init): Do not set parm_boundary.
860
861 2004-05-04 Jim Blandy <jimb@redhat.com>
862
863 * ppc-linux-nat.c (fetch_ppc_registers, store_ppc_registers):
864 Don't assume that the gprs, fprs, and UISA sprs are
865 contiguous, start at register number zero, and end with fpscr.
866 Instead, use the numbers from the tdep structure.
867
868 * config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
869 should no longer be used in code specific to the RS6000 and its
870 derivatives.
871 * ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
872 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize
873 tdep->ppc_fp0_regnum.
874 (ppc_supply_fpregset, ppc_collect_fpregset)
875 (rs6000_push_dummy_call, rs6000_extract_return_value)
876 (rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
877 (rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
878 FP0_REGNUM.
879 * aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
880 (fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
881 Same.
882 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
883 bdm_ppc_store_registers): Same.
884 * ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
885 (store_register, fill_fpregset): Same.
886 * ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
887 (ppc_linux_supply_fpregset): Same.
888 * ppcnbsd-nat.c (getfpregs_supplies): Same.
889 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
890 Same.
891 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call,
892 do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call,
893 ppc64_sysv_abi_return_value): Same.
894 * rs6000-nat.c (regmap, fetch_inferior_registers)
895 (store_inferior_registers, fetch_core_registers): Same.
896
897 2004-05-01 Mark Kettenis <kettenis@gnu.org>
898
899 * m68knbsd-nat.c: Remove file.
900 * m68knbsd-tdep.c: Remove file.
901 * Makefile.in: (m68knbsd-nat.o, m68knbsd-tdep.o): Remove
902 dependencies.
903 * configure.host: Add m68k-*-netbsdelf*.
904 * configure.tgt (m68k-*-netbsd*): Set gdb_target to nbsd.
905 * config/m68k/nbsdaout.mh (NATDEPFILES): Add m68kbsd-nat.o,
906 solib.o and solib-sunos.o. Remove m68knbsd-nat.o, corelow.o.
907 (XM_FILE): Remove.
908 * config/m68k/nbsdelf.mh: New file.
909 * config/m68k/nbsd.mt: New file.
910 * config/m68k/nbsdaout.mt: Remove file.
911 * config/m68k/tm-nbsd.h: Don't include <sys/param.h>,
912 <machine/vmparam.h> and "m68k/tm-m68k.h". Include "solib.h".
913 (BPT_VECTOR, STACK_END_ADDR): Remove defines.
914 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Likewise.
915 (use_struct_convention): Remove prototype.
916 (USE_STRUCT_CONVENTION): Remove define.
917 * config/m68k/xm-nbsd.h: Remove file.
918
919 2004-05-04 Michael Snyder <msnyder@redhat.com>
920
921 * m68k-tdep.c (m68k_gdbarch_init): Default to using
922 reg_struct_return method (as gcc usually does for cross targets).
923
924 2004-05-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
925
926 Committed by Andrew Cagney.
927 * s390-tdep.c (s390_sigtramp_frame_unwind_cache): Account for
928 alignment padding when accessing ucontext struct members.
929
930 2004-05-04 Jim Blandy <jimb@redhat.com>
931
932 * config/ppc-tdep.h (struct gdbarch_tdep): Delete
933 'ppc_gplast_regnum' member.
934 (ppc_num_gprs): New enum constant.
935 * ppc-linux-nat.c (ppc_register_u_addr): Use tdep->ppc_gp0_regnum
936 and ppc_num_gprs instead of tdep->ppc_gplast_regnum.
937 * rs6000-nat.c (regmap, fetch_inferior_registers,
938 store_inferior_registers): Same.
939 * rs6000-tdep.c (e500_pseudo_register_read)
940 (e500_pseudo_register_write): Same.
941 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gplast_regnum.
942
943 * config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
944 * ppc-tdep.h (ppc_num_fprs): New enum constant.
945 * aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
946 store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
947 FPLAST_REGNUM.
948 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
949 Same.
950 * ppc-linux-nat.c (ppc_register_u_addr): Same.
951 * rs6000-nat.c (regmap, fetch_inferior_registers)
952 (store_inferior_registers): Same.
953
954 * aix-thread.c (fill_fprs): Fix off-by-one error comparing regno
955 with FPLAST_REGNUM.
956
957 2004-05-03 Joel Brobecker <brobecker@gnat.com>
958
959 * dwarf2read.c (dwarf2_create_include_psymtab): Fix build
960 failure detected by recent versions of GCC.
961 (psymtab_to_symtab_1): No longer use the PST_PRIVATE macro
962 to be consistent with the usage in dwarf2_create_include_psymtab.
963
964 2004-05-03 Michael Snyder <msnyder@redhat.com>
965
966 * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
967 (heuristic_proc_start): Whitespace cleanup.
968
969 2004-05-04 Mark Kettenis <kettenis@gnu.org>
970
971 * sun3-nat.c: Remove file.
972 * Makefile.in (tm-sun3.h tm-altos.h tm-sun2.h tm-3b1.h): Remove
973 dependencies.
974 (ALLDEPFILES): Remove sun3-nat.c.
975 (sun3-nat.o): Remove dependencies.
976
977 * i386-interix-nat.c, i386-interix-tdep.c,
978 config/i386/nm-interix.h, config/i386/interix.mh,
979 config/i386/interix.mt: Remove files.
980 * Makefile.in (i386-interix-nat.o, i386-interix-tdep.o): Remove
981 dependencies.
982
983 2004-05-03 Mark Kettenis <kettenis@gnu.org>
984
985 * m68k-tdep.h (struct gdbarch_tdep): Add member
986 struct_value_regnum.
987 (m68k_svr4_init_abi): New prototype.
988 * m68k-tdep.c: Include "floatformat.h". Add comment about all the
989 different calling conventions.
990 (m68k_extract_return_value): Remove code dealing with single-field
991 structs.
992 (m68k_store_return_value): Remove code dealing with single-field
993 structs. Correctly store return values of 5, 6, 7 or 8 bytes.
994 (m68k_extract_struct_value_address): Remove function.
995 (m68k_svr4_extract_return_value,m68k_svr4_store_return_value)
996 (m68k_reg_struct_return_p, m68k_return_value)
997 (m68k_svr4_return_value): New functions.
998 (m68k_use_struct_convention): Remove function.
999 (m68k_push_dummy_call): Use new struct_value_regnum member of
1000 `struct gdbarch_tdep' instead of hardcoded register number to
1001 store STRUCT_ADDR.
1002 (m68k_svr4_init_abi): New function.
1003 (m68k_gdbarch_init): Don't set extract_return_value,
1004 store_return_values, deprecated_extract_struct_value_address and
1005 use_struct_convention. Set return_value instead. Initialize new
1006 struct_value_regnum member of `struct gdbarch_tdep'.
1007 * m68klinux-tdep.c: Update copyright year.
1008 (m68k_linux_extract_return_value, m68k_linux_store_return_value)
1009 (m68k_linux_extract_struct_value_address): Remove function.
1010 (m68k_linux_init_abi): Don't set extract_return_value,
1011 store_return_values, deprecated_extract_struct_value_address and
1012 use_struct_convention. Call m68k_svr4_init_abi but override the
1013 new struct_value_regnum member of `struct gdbarch_tdep'.
1014 * Makefile.in (m68k-tdep.o): Update dependencies.
1015
1016 2004-05-03 J. Brobecker <brobecker@gnat.com>
1017
1018 * dwarf2read.c (line_header): Add new included_p field in
1019 field file_names.
1020 (partial_die_info): New field has_stmt_list. New field line_offset.
1021 (dwarf2_create_include_psymtab): New function.
1022 (dwarf2_build_include_psymtabs): New function.
1023 (add_file_name): Add forward declaration. Initialize new field.
1024 (dwarf_decode_lines): Add new parameter. Enhance this procedure
1025 to be able to determine the list of files included by the
1026 given unit, and build their associated psymtabs.
1027 (dwarf2_build_psymtabs_hard): Build the psymtabs for the included
1028 files as well.
1029 (psymtab_to_symtab_1): Build the symtabs of all dependencies as well.
1030 (read_file_scope): Update call to dwarf_decode_lines.
1031 (read_partial_die): Handle DW_AT_stmt_list attributes.
1032
1033 2004-05-02 Michael Chastain <mec.gnu@mindspring.com>
1034
1035 Unfix PR gdb/1626.
1036 * configure.in: Revert special case for osf5.*.
1037 * configure: Regenerate.
1038
1039 2004-05-02 Jim Blandy <jimb@redhat.com>
1040
1041 Move the symbol-file-from-memory functions into their own file.
1042 * symfile-mem.c, symfile-mem.h: New files.
1043 * symfile.c (symbol_file_add_from_bfd): New function.
1044 (symbol_file_add): Call symbol_file_add_from_bfd.
1045 (symbol_file_add_from_memory, add_symbol_file_from_memory_command):
1046 Moved to symfile-mem.c.
1047 (_initialize_symfile): Move definition of
1048 add-symbol-file-from-memory command to symfile-mem.c.
1049 * symfile.h (symbol_file_add_from_bfd): New declaration.
1050 * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
1051 * config/powerpc/linux.mt (TDEPFILES): Same.
1052 * Makefile.in (SFILES): Add symfile-mem.c.
1053 (symfile_mem_h): New variable.
1054 (HFILES_NO_SRCDIR): Add symfile-mem.h.
1055 (symfile-mem.o): New rule.
1056
1057 2004-05-01 Andrew Cagney <cagney@redhat.com>
1058
1059 * breakpoint.c (insert_bp_location): Use get_frame_id, and
1060 frame_find_by_id instead of frame_relative_level.
1061 (do_enable_breakpoint): Ditto.
1062 * thread.c: Update copyright.
1063 (info_threads_command): Ditto, simplify.
1064
1065 * frame.c (deprecated_generic_get_saved_register): Delete
1066 function, moved to "xstormy16-tdep.c".
1067 * xstormy16-tdep.c (xstormy16_get_saved_register): Inline
1068 deprecated_generic_get_saved_register from "frame.c".
1069 (xstormy16_frame_saved_register): Call
1070 xstormy16_get_saved_register.
1071 * dummy-frame.c (deprecated_find_dummy_frame_regcache): Make
1072 static.
1073 * dummy-frame.h (deprecated_find_dummy_frame_regcache): Delete.
1074 * frame.h (deprecated_generic_get_saved_register): Delete.
1075
1076 2004-05-01 Michael Chastain <mec.gnu@mindspring.com>
1077
1078 * dwarfread.c: Update documentation on the state of dwarf-1.
1079
1080 2004-05-01 Andrew Cagney <cagney@redhat.com>
1081
1082 * stack.c (select_frame_command): Delete call to
1083 frame_relative_level.
1084 (print_frame, set_backtrace_limit_command, backtrace_limit_info):
1085 Delete #if0 code.
1086 (frame_info): Do not print FRAMELESS.
1087 (print_block_frame_labels): Replace DEPRECATED_STREQ.
1088 (catch_info): Delete #if0 code.
1089
1090 * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
1091 * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
1092 of frame_relative_level.
1093 * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
1094 to SENTINEL_FRAME.
1095 * frame.h (enum frame_type): Add SENTINEL_FRAME.
1096 * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
1097 frame_relative_level.
1098
1099 * frame.h (deprecated_set_frame_type): Delete declaration.
1100 * frame.c (deprecated_set_frame_type): Delete function, update
1101 comments.
1102
1103 * gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
1104 * gdbarch.h, gdbarch.c: Re-generate.
1105 * shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
1106 (shnbsd_pc_in_sigtramp): Delete.
1107 * i386-interix-tdep.c (i386_interix_init_abi): Do not set
1108 pc_in_sigtramp.
1109 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
1110 pc_in_sigtramp.
1111 * frame.h: Update comments.
1112 * ppc-linux-tdep.c: Update comments.
1113 * breakpoint.c (bpstat_what): Update comments.
1114
1115 * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix
1116 m68klinux-tdep.o's dependencies, were previously added to
1117 m68klinux-nat.o.
1118
1119 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Use pc_in_sigtramp.
1120 * alpha-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp.
1121 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
1122 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
1123 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
1124
1125 * Makefile.in (m68klinux-nat.o): Update dependencies.
1126 * m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
1127 (m68k_linux_sigtramp_frame_cache)
1128 (m68k_linux_sigtramp_frame_this_id)
1129 (m68k_linux_sigtramp_frame_prev_register)
1130 (m68k_linux_sigtramp_frame_unwind)
1131 (m68k_linux_sigtramp_frame_sniffer)
1132 (struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
1133 m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
1134 names, use trad-frame.h.
1135 * m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
1136 (struct m68k_sigtramp_info): Delete.
1137 * m68k-tdep.c (m68k_sigtramp_frame_cache)
1138 (m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
1139 (m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
1140 (m68k_gdbarch_init): Delete all the sigtramp code, moved to
1141 "m68klinux-tdep.c".
1142
1143 * infrun.c (check_sigtramp2): Delete check for
1144 DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.
1145
1146 2004-05-01 Mark Kettenis <kettenis@gnu.org>
1147
1148 * m68k-tdep.h (m68kbsd_fpreg_offset): New prototype.
1149
1150 2004-05-01 Andrew Cagney <cagney@redhat.com>
1151
1152 * frv-linux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
1153 (frv_linux_sigtramp_frame_cache)
1154 (frv_linux_sigtramp_frame_this_id)
1155 (frv_linux_sigtramp_frame_prev_register)
1156 (frv_linux_sigtramp_frame_unwind)
1157 (frv_linux_sigtramp_frame_sniffer): Copied from frv-tdep.c,
1158 include "linux" in function and variable names, directly call
1159 frv_linux_pc_in_sigtramp and frv_linux_sigcontext_reg_addr, use
1160 the latest trad-frame code.
1161 (frv_linux_init_abi): Append frv_linux_sigtramp_frame_sniffer, do
1162 not set frv_sigcontext_reg_addr or deprecated_pc_in_sigtramp
1163 * Makefile.in (frv-linux-tdep.o): Update dependencies.
1164 * frv-tdep.h (frv_set_sigcontext_reg_addr): Delete declaration.
1165 * frv-tdep.c (frv_sigtramp_frame_cache)
1166 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
1167 (frv_sigtramp_frame_unwind, frv_sigtramp_frame_sniffer): Moved to
1168 frv-linux-tdep.c.
1169 (frv_gdbarch_init): Do not append a sigtramp sniffer.
1170 (struct gdbarch_tdep): Delete sigcontext_reg_addr.
1171 (frv_set_sigcontext_reg_addr): Delete function.
1172
1173 * gdbarch.sh (DEPRECATED_SIGTRAMP_START)
1174 (DEPRECATED_SIGTRAMP_END): Delete.
1175 * gdbarch.h, gdbarch.c: Re-generate.
1176 * arch-utils.c (legacy_pc_in_sigtramp): Simplify.
1177 * config/vax/tm-vaxbsd.h: Update copyright.
1178 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
1179 (DEPRECATED_IN_SIGTRAMP): Define.
1180 * config/m68k/tm-nbsd.h: Update copyright.
1181 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
1182 (DEPRECATED_IN_SIGTRAMP): Define.
1183
1184 2004-05-01 Mark Kettenis <kettenis@gnu.org>
1185
1186 * dwarf2-frame.c (read_encoded_value): Handle DW_EH_PE_funcrel
1187 encondings. Fixes PR gdb/1628.
1188
1189 * dwarf2-frame.c (execute_cfa_program): Complain if we encounter a
1190 DW_CFA_restore state without a matching DW_CFA_remember_state
1191 instead of aborting. Fixes PR backtrace/1589.
1192
1193 2004-04-30 Joel Brobecker <brobecker@gnat.com>
1194
1195 * MAINTAINERS: Add self as AIX maintainer.
1196 Update my e-mail address in write-after-approval section.
1197
1198 2004-04-30 Andrew Cagney <cagney@redhat.com>
1199
1200 * frame.c (frame_type_from_pc): Delete call to PC_IN_SIGTRAMP.
1201 (legacy_get_prev_frame): Ditto.
1202
1203 * mips-tdep.c (mips_pc_in_sigtramp): Delete.
1204 (mips_gdbarch_init): Do not set pc_in_sigtramp.
1205 * mipsread.c (sigtramp_address): Delete extern variable.
1206 (mipscoff_new_init): Delete reference.
1207 * mdebugread.c (sigtramp_address, sigtramp_end): Delete variables.
1208 (fixup_sigtramp): Delete function.
1209 * config/mips/tm-mips.h (sigtramp_address, sigtramp_end)
1210 (fixup_sigtramp): Delete declarations.
1211
1212 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Do not set
1213 deprecated_pc_in_sigtramp.
1214 (ppcnbsd_pc_in_sigtramp): Delete function.
1215
1216 2004-05-01 Mark Kettenis <kettenis@gnu.org>
1217
1218 * config/m68k/nm-nbsd.h: Tweak comments.
1219 * config/m68k/nm-nbsdaout.h: Likewise.
1220
1221 2004-04-30 Andrew Cagney <cagney@redhat.com>
1222
1223 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Call
1224 legacy_pc_in_sigtramp.
1225 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Ditto.
1226
1227 2004-05-01 Mark Kettenis <kettenis@gnu.org>
1228
1229 Add OpenBSD/m68k support.
1230 * NEWS (New native configurations): Mention OpenBSD/m68k.
1231 * m68kbsd-tdep.c: New file.
1232 * m68kbsd-nat.c: New file.
1233 * Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
1234 (m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
1235 * configure.host: Add m68k-*-openbsd.
1236 * configure.tgt: Add m68k-*-openbsd.
1237 * config/m68k/tm-obsd.h: New file.
1238 * config/m68k/obsd.mt: New file.
1239 * config/m68k/obsd.mh: New file.
1240 * config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
1241 m68kbsd-tdep.c.
1242
1243 2004-04-30 Andrew Cagney <cagney@redhat.com>
1244
1245 * mipsnbsd-tdep.c (mipsnbsd_pc_in_sigtramp): Delete function.
1246 (mipsnbsd_init_abi): Do not set pc_in_sigtramp.
1247
1248 2004-04-30 Mark Kettenis <kettenis@gnu.org>
1249
1250 * m68k-tdep.c (REMOTE_BPT_VECTOR): Remove define.
1251 * config/m68k/tm-nbsd.h (REMOTE_BPT_VECTOR): Remove define.
1252
1253 2004-04-30 Brian Ford <ford@vss.fsi.com>
1254
1255 Revert 2004-04-16 change.
1256 * i386-tdep.c (i386_gdbarch_init): Fix comment typos.
1257 (i386_coff_init_abi): Remove.
1258 * i386-tdep.h (i386_coff_init_abi): Remove.
1259 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Remove call to above.
1260
1261 2004-04-30 Andrew Cagney <cagney@redhat.com>
1262
1263 * blockframe.c (find_pc_partial_function): Delete use of
1264 DEPRECATED_PC_IN_SIGTRAMP, DEPRECATED_SIGTRAMP_START and
1265 DEPRECATED_SIGTRAMP_END.
1266
1267 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
1268 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
1269 * config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
1270 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
1271 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
1272
1273 * defs.h (deprecated_inside_entry_file): Delete declaration.
1274 * blockframe.c (deprecated_inside_entry_file): Delete function.
1275 (legacy_frame_chain_valid): Delete call.
1276 * sh64-tdep.c (sh64_frame_chain): Delete call.
1277 * objfiles.h: Update comments.
1278 * i386-interix-tdep.c (i386_interix_frame_chain_valid): Delete
1279 call.
1280 * frame.c (get_prev_frame): Delete call, update comments.
1281
1282 2004-04-30 Brian Ford <ford@vss.fsi.com>
1283
1284 * MAINTAINERS (Write After Approval): Add myself.
1285
1286 2004-04-30 Andrew Cagney <cagney@redhat.com>
1287
1288 * gdbarch.sh (BELIEVE_PCC_PROMOTION_TYPE): Delete.
1289 * gdbarch.h, gdbarch.c: Re-generate.
1290 * stabsread.c (define_symbol): Delete BELIEVE_PCC_PROMOTION_TYPE
1291 code.
1292
1293 2004-04-30 Andrew Cagney <cagney@redhat.com>
1294
1295 * gdb-events.sh (selected_thread_changed)
1296 (selected_frame_level_changed, target_changed): Delete.
1297 * gdb-events.h, gdb-events.c: Re-generate.
1298 * valops.c (value_assign): Update.
1299 * stack.c (select_frame_command, up_silently_base)
1300 (down_silently_base): Update.
1301
1302 2004-04-29 Andrew Cagney <cagney@redhat.com>
1303
1304 * mips-tdep.c (mips_register_type): Re-write, handle 32-bit ABI
1305 registers correctly.
1306 (print_gp_register_row, mips32_heuristic_proc_desc)
1307 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
1308 (mips_o64_push_dummy_call, mips_eabi_push_dummy_call): Eliminate
1309 references to mips_isa_regsize.
1310
1311 2004-04-29 Andrew Cagney <cagney@redhat.com>
1312
1313 * mips-tdep.c (struct gdbarch_tdep): Delete
1314 mips_fp_register_double.
1315 (FP_REGISTER_DOUBLE): Delete macro, replace with test for
1316 mips_abi_regsize.
1317 (mips_gdbarch_init): Do not set mips_fp_register_double.
1318 (mips_dump_tdep): Do not print FP_REGISTER_DOUBLE.
1319
1320 2004-04-29 Joel Brobecker <brobecker@gnat.com>
1321
1322 Committed by Andrew Cagney.
1323 * infrun.c (handle_inferior_event): Rely on frame IDs to detect
1324 function calls.
1325
1326 2004-04-29 Andrew Cagney <cagney@redhat.com>
1327
1328 * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with
1329 gdbarch, use mips_abi, update callers.
1330 (mips_stack_argsize): Replace tdep parameter with gdbarch, use
1331 mips_abi_regsize, update callers.
1332 (struct gdbarch_tdep): Delete mips_default_stack_argsize and
1333 mips_default_abi_regsize.
1334 (mips_gdbarch_init): Do not set mips_default_stack_argsize and
1335 mips_default_abi_regsize.
1336
1337 2004-04-29 Andrew Cagney <cagney@redhat.com>
1338
1339 * mips-tdep.c (mips_abi_regsize): Rename mips_saved_regsize.
1340 (mips_abi_regsize_string): Rename mips_saved_regsize_string.
1341 (struct gdbarch_tdep): Rename mips_default_saved_regsize to
1342 mips_default_abi_regsize.
1343 (mips_isa_regsize): Rename mips_regisze.
1344 * mipsnbsd-tdep.c: Update.
1345 * mips-linux-tdep.c: Update.
1346 * irix5-nat.c: Update.
1347 * mips-tdep.h (mips_isa_regsize): Update.
1348
1349 * gdb-events.sh (WITH_GDB_EVENTS): Delete macro and references.
1350 Delete all disabled code.
1351 * gdb-events.h, gdb-events.c: Re-generate.
1352
1353 2004-04-19 Jerome Guitton <guitton@gnat.com>
1354 Mark Kettenis <kettenis@gnu.org>
1355
1356 * i386-tdep.c (i386_skip_prologue): follow the last jump only if
1357 the function begins with a branch instruction.
1358
1359 2004-04-29 Mark Kettenis <kettenis@gnu.org>
1360
1361 * i386-tdep.c: Fix spelling mistakes.
1362
1363 2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1364 Andrew Cagney <cagney@redhat.com>
1365
1366 * configure.in (mips-sgi-irix5*): Define _KMEMUSER for
1367 <sys/proc.h>.
1368 * acconfig.h: Provide default _KMEMUSER value.
1369 * config.in, configure: Re-generate.
1370 * NEWS: Mention fix.
1371
1372 2004-04-24 Randolph Chung <tausq@debian.org>
1373
1374 * configure.host (hppa*-*-linux*): New target.
1375 * configure.tgt (hppa*-*-linux*): Likewise.
1376 * hppa-tdep.c (hppa_gdbarch_init): Set cannot_fetch_register, move
1377 gdbarch_init_osabi() call earlier so that osabi-specific frame
1378 unwinders can be registered first.
1379 * config/djgpp/fnchange.lst: Add entries for hppa-linux-tdep.c and
1380 hppa-linux-nat.c.
1381 * config/pa/tm-hppa.h (ISR_REGNUM, PID0_REGNUM, PID1_REGNUM)
1382 (PID2_REGNUM, PID3_REGNUM): Add definitions of some register numbers.
1383 * config/pa/linux.mh: New file.
1384 * config/pa/linux.mt: New file.
1385 * config/pa/nm-linux.h: New file.
1386 * config/pa/xm-linux.h: New file.
1387 * hppa-linux-nat.c: New file.
1388 * hppa-linux-tdep.c: New file.
1389
1390 2004-04-28 Randolph Chung <tausq@debian.org>
1391
1392 * hppa-tdep.c (hppa32_return_value): Handle both 4- and 8-byte fp
1393 return values.
1394 (hppa32_push_dummy_call): Fix small struct and floating point argument
1395 passing, and make sure the stack frame is properly aligned.
1396
1397 2004-04-28 Andrew Cagney <cagney@redhat.com>
1398
1399 * stack.c (print_stack_frame): Fix description.
1400
1401 * NEWS: Mention gdb/gdbserver/configure execute permission
1402 changed. PR server/519.
1403
1404 2004-04-28 Andrew Cagney <cagney@redhat.com>
1405
1406 * stack.c (print_stack_frame_stub): Delete declaration.
1407 (struct print_stack_frame_args, print_stack_frame)
1408 (print_frame_info, print_frame): Replace "source" with print what.
1409 Replace "print" with "print_level". Replace "args" with
1410 "print_args".
1411 * frame.h (show_and_print_stack_frame, print_stack_frame)
1412 (print_frame_info): Update declarations.
1413 * stack.c (select_and_print_frame, frame_command)
1414 (current_frame_command, up_command, down_command): Update calls -
1415 use get_selected_frame, pass "enum print_what" for source, do not
1416 call frame_relative_level.
1417 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
1418 * remote-rdp.c (remote_rdp_open): Ditto.
1419 * remote-mips.c (common_open): Ditto.
1420 * remote-e7000.c (e7000_start_remote): Ditto.
1421 * ocd.c (ocd_start_remote): Ditto.
1422 * mi/mi-main.c (mi_cmd_exec_return): Ditto.
1423 * infrun.c (normal_stop): Ditto.
1424 * inflow.c (kill_command): Ditto.
1425 * infcmd.c (finish_command): Ditto.
1426 * corelow.c (core_open): Ditto.
1427 * tracepoint.c (finish_tfind_command): Ditto.
1428 * thread.c (info_threads_command, info_threads_command)
1429 (restore_current_thread, do_captured_thread_select): Ditto.
1430 * ada-tasks.c (task_command): Ditto.
1431
1432 2004-04-26 Orjan Friberg <orjanf@axis.com>
1433
1434 * frame.c: Include "observer.h".
1435 (frame_observer_target_changed): New function.
1436 (_initialize_frame): Attach target_changed observer.
1437 * regcache.c: Include "observer.h".
1438 (regcache_observer_target_changed): New function.
1439 (_initialize_regcache): Attach target_changed observer.
1440 * valops.c: Include "observer.h".
1441 (value_assign): Notify target_changed event when modifying register.
1442 * Makefile.in (frame.o, regcache.o, valops.o): Add $(observer_h).
1443
1444 2004-04-26 Orjan Friberg <orjanf@axis.com>
1445
1446 From Paul Koning <pkoning@equallogic.com>:
1447 * breakpoint.c (free_valchain): New function.
1448 (insert_bp_location, delete_breakpoint): Use free_valchain.
1449 (remove_breakpoint): Do not remove the valchain.
1450 (bpstat_stop_status): If not stopped by watchpoint, skip
1451 watchpoints when generating stop status list.
1452 * infrun.c (handle_inferior_event): Make
1453 stepped_after_stopped_by_watchpoint a global variable.
1454 * remote.c (remote_stopped_data_address): Return watch data
1455 address rather than zero if stepped_after_stopped_by_watchpoint is
1456 set.
1457
1458 2004-04-25 Michael Chastain <mec.gnu@mindspring.com>
1459
1460 Fix PR gdb/1626.
1461 * configure.in: Check for curses after termcap.
1462 On osf5.*, do not check for ncurses.
1463 * configure: Regenerate.
1464
1465 2004-04-25 Mark Kettenis <kettenis@gnu.org>
1466
1467 * ppcobsd-nat.c: Include "ppc-tdep.h".
1468 * Makefile.in (ppcobsd-nat.o): Update dependencies.
1469
1470 * stack.c (return_command): Use CHECK_TYPEDEF on the return type.
1471 Fixes PR tdep/1623 and PR tdep/1624.
1472
1473 2004-04-24 Michael Chastain <mec.gnu@mindspring.com>
1474
1475 * xmodem.h, xmodem.c: Remove files.
1476 * Makefile.in: Remove references to xmodem.h, xmodem.c.
1477
1478 2004-04-23 Randolph Chung <tausq@debian.org>
1479
1480 * hppa-tdep.c (hppa_stub_unwind_cache, hppa_stub_frame_unwind_cache)
1481 (hppa_stub_frame_this_id, hppa_stub_frame_prev_register)
1482 (hppa_stub_frame_unwind, hppa_stub_unwind_sniffer): New stub unwinder
1483 for handling stackless frames.
1484 (hppa_gdbarch_init): Link in hppa_stub_unwind_sniffer.
1485
1486 2004-04-23 Randolph Chung <tausq@debian.org>
1487
1488 * hppa-tdep.c (hppa_frame_cache): Handle the case when frame unwind
1489 starts at a pc before the frame is created.
1490
1491 2004-04-23 Joel Brobecker <brobecker@gnat.com>
1492
1493 * ChangeLog-2002: Fix year in one of the ChangeLog entries.
1494
1495 2004-04-23 Jerome Guitton <guitton@gnat.fr>
1496
1497 * rs6000-tdep.c (rs6000_extract_return_value): When extracting a float,
1498 use convert_typed_floating to get the appropriate format.
1499
1500 2004-04-22 Randolph Chung <tausq@debian.org>
1501
1502 * hppa-tdep.h (find_unwind_entry, hppa_get_field, hppa_extract_5_load)
1503 (hppa_extract_5R_store, hppa_extract_5r_store, hppa_extract_17)
1504 (hppa_extract_21, hppa_extract_14, hppa_low_sign_extend)
1505 (hppa_sign_extend): Add prototype.
1506 * hppa-tdep.c (get_field, extract_5_load, extract_5R_store)
1507 (extract_5r_store, extract_17, extract_21, extract_14, low_sign_extend)
1508 (sign_extend): Rename with hppa_ prefix and make non-static. Other
1509 hppa targets will also use these functions.
1510 (find_unwind_entry): Remove prototype (moved to hppa-tdep.h).
1511 (hppa_in_solib_call_trampoline, hppa_in_solib_return_trampoline)
1512 (hppa_skip_trampoline_code): Move to hppa-hpux-tdep.c
1513 (hppa_gdbarch_init): Remove gdbarch setting of
1514 skip_trampoline_code, in_solib_call_trampoline and
1515 in_solib_return_trampoline.
1516 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
1517 (hppa64_hpux_in_solib_call_trampoline): New functions, split from
1518 hppa_in_solib_call_trampoline.
1519 (hppa_hpux_in_solib_return_trampoline, hppa_hpux_skip_trampoline_code):
1520 Moved from hppa-tdep.c.
1521 (hppa_hpux_init_abi): Set gdbarch for skip_trampoline_code,
1522 in_solib_call_trampoline and in_solib_return_trampoline.
1523
1524 2004-04-22 Randolph Chung <tausq@debian.org>
1525
1526 * hppa-tdep.c (hppa_debug): New variable.
1527 (find_unwind_entry, hppa_frame_cache): Add debug output.
1528 (_initialize_hppa_tdep): Add command to set debug flag.
1529
1530 2004-04-22 Andrew Cagney <cagney@redhat.com>
1531
1532 * ppcnbsd-tdep.c: Update copyright. Include "tramp-frame.h" and
1533 "trad-frame.h".
1534 (ppcnbsd_sigtramp_cache_init, ppcnbsd_sigtramp): Implement a NetBSD
1535 signal trampoline unwinder.
1536 (ppcnbsd_init_abi): Register ppcnbsd_sigtramp.
1537
1538 2004-04-22 Mark Kettenis <kettenis@gnu.org>
1539
1540 Add OpenBSD/powerpc support.
1541 * NEWS (New native configurations): Mention OpenBSD/powerpc.
1542 * ppc-tdep.h (struct ppc_reg_offsets): New structure.
1543 (ppc_supply_gregset, ppc_supply_fpregset, ppc_collect_gregset)
1544 (ppc_collect_fpregset): New prototypes.
1545 * ppcobsd-nat.c: New file.
1546 * ppcobsd-tdep.c: New file.
1547 * ppcobsd-tdep.h: New file.
1548 * rs6000-tdep.c: Include "regset.h".
1549 (ppc_supply_reg, ppc_collect_reg, ppc_supply_gregset)
1550 (ppc_supply_fpregset, ppc_collect_gregset, ppc_collect_fpregset):
1551 New functions.
1552 * Makefile.in (ALLDEPFILES): Add pccobsd-nat.c and ppcobsd-tdep.c.
1553 (ppcobsd-nat.o, ppcobsd-tdep.o): New dependencies.
1554 (rs6000-tdep.o): Update dependencies.
1555 * configure.host: Add powerpc-*-openbsd.
1556 * configure.tgt: Add powerpc-*-openbsd.
1557 * config/powerpc/obsd.mh: New file.
1558 * config/powerpc/nm-obsd.h: New file.
1559 * config/powerpc/obsd.mt: New file.
1560
1561 2004-04-22 Andrew Cagney <cagney@redhat.com>
1562
1563 * frame.h (show_frame_info): Delete declaration.
1564
1565 * arm-tdep.c (arm_prologue_this_id): Delete redundant cycle test.
1566 * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
1567 * m32r-tdep.c (m32r_frame_this_id): Ditto.
1568 * frv-tdep.c (frv_frame_this_id): Ditto.
1569 * avr-tdep.c (avr_frame_this_id): Ditto.
1570
1571 2004-04-22 Elena Zannoni <ezannoni@redhat.com>
1572
1573 * MAINTAINERS: Drop maintenance of gdb.stabs, and linespec.c.
1574
1575 2004-04-22 Jim Blandy <jimb@redhat.com>
1576
1577 * ppc-linux-nat.c (ppc_register_u_addr): Don't assume that r0 is
1578 register number zero.
1579
1580 2004-04-21 Michael Snyder <msnyder@redhat.com>
1581
1582 * mips-tdep.c (heuristic_proc_start):
1583 Warning() already prefixes "Warning: ".
1584
1585 2004-04-21 Andrew Cagney <cagney@redhat.com>
1586
1587 * annotate.h (deprecated_annotate_starting_hook)
1588 (deprecated_annotate_stopped_hook)
1589 (deprecated_annotate_exited_hook)
1590 (deprecated_annotate_signal_hook)
1591 (deprecated_annotate_signalled_hook): Deprecate.
1592 * tracepoint.h (deprecated_create_tracepoint_hook)
1593 (deprecated_delete_tracepoint_hook)
1594 (deprecated_modify_tracepoint_hook)
1595 (deprecated_trace_find_hook)
1596 (deprecated_trace_start_stop_hook): Deprecate.
1597 * target.h (deprecated_target_new_objfile_hook): Deprecate.
1598 * remote.h (deprecated_target_resume_hook)
1599 (deprecated_target_wait_loop_hook): Deprecate.
1600 * gdbcore.h (deprecated_exec_file_display_hook)
1601 (deprecated_file_changed_hook): Deprecate.
1602 * frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
1603 * defs.h (deprecated_modify_breakpoint_hook)
1604 (deprecated_command_loop_hook, deprecated_show_load_progress)
1605 (deprecated_print_frame_info_listing_hook)
1606 (deprecated_query_hook, deprecated_warning_hook)
1607 (deprecated_flush_hook, deprecated_create_breakpoint_hook)
1608 (deprecated_delete_breakpoint_hook)
1609 (deprecated_interactive_hook, deprecated_registers_changed_hook)
1610 (deprecated_readline_begin_hook, deprecated_readline_hook)
1611 (deprecated_readline_end_hook, deprecated_register_changed_hook)
1612 (deprecated_memory_changed_hook, deprecated_init_ui_hook)
1613 (deprecated_context_hook, deprecated_target_wait_hook)
1614 (deprecated_attach_hook, deprecated_detach_hook)
1615 (deprecated_call_command_hook, deprecated_set_hook)
1616 (deprecated_error_hook, deprecated_error_begin_hook)
1617 (deprecated_ui_load_progress_hook): Deprecate.
1618 * valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
1619 * tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
1620 * target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
1621 * remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
1622 * main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
1623 * exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
1624 * cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
1625 * annotate.c, aix-thread.c: Update.
1626
1627 2004-04-21 Andrew Cagney <cagney@redhat.com>
1628
1629 * Makefile.in (vaxnbsd-tdep.o): Update dependencies.
1630 * vaxnbsd-tdep.c: Include "gdb_string.h".
1631
1632 * symfile.c (symbol_file_add_from_memory): #if 0 function.
1633 (add_symbol_file_from_memory_command): #if 0 function body, call
1634 error instead.
1635
1636 2004-04-21 Andrew Cagney <cagney@redhat.com>
1637
1638 * gdbcore.h: Update copyright.
1639 (deprecated_add_core_fns): Rename add_core_fns.
1640 * win32-nat.c (_initialize_core_win32): Update.
1641 * sun3-nat.c (_initialize_core_sun3): Update.
1642 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Update.
1643 * rs6000-nat.c (_initialize_core_rs6000): Update.
1644 * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Update.
1645 * nto-tdep.c (_initialize_nto_tdep): Update.
1646 * ns32knbsd-nat.c (_initialize_ns32knbsd_nat): Update.
1647 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Update.
1648 * mips-nat.c (_initialize_core_mips): Update.
1649 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
1650 * m68knbsd-nat.c (_initialize_m68knbsd_nat): Update.
1651 * m68klinux-nat.c (_initialize_m68k_linux_nat): Update.
1652 * lynx-nat.c (_initialize_core_lynx): Update.
1653 * irix5-nat.c (_initialize_core_irix5): Update.
1654 * i386-interix-nat.c (_initialize_core_interix): Update.
1655 * cris-tdep.c (_initialize_cris_tdep): Update.
1656 * corelow.c (deprecated_add_core_fns): Update.
1657 * core-regset.c (_initialize_core_regset): Update.
1658 * core-aout.c (_initialize_core_aout): Update.
1659 * armnbsd-nat.c (_initialize_arm_netbsd_nat): Update.
1660 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Update.
1661 * alpha-nat.c (_initialize_core_alpha): Update.
1662
1663 2004-04-21 Jim Blandy <jimb@redhat.com>
1664
1665 * rs6000-tdep.c (registers_e500, registers_7400): Doc fixes.
1666
1667 2004-04-19 Daniel Jacobowitz <drow@mvista.com>
1668
1669 * dwarf2read.c (dwarf2_tmp_obstack, dwarf2_free_tmp_obstack):
1670 Delete.
1671 (dwarf_alloc_block): Take a CU argument. Use the comp_unit_obstack.
1672 (read_attribute_value): Update calls to dwarf_alloc_block.
1673 (dwarf2_build_psymtabs_hard): Don't initialize or clean up
1674 dwarf2_tmp_obstack.
1675 (psymtab_to_symtab_1): Likewise. Clean up using
1676 free_stack_comp_unit.
1677 (add_to_cu_func_list): Use the comp_unit_obstack.
1678
1679 2004-04-19 Joel Brobecker <brobecker@gnat.com>
1680
1681 * dwarf2read.c (dwarf2_flag_true_p): New function.
1682 (die_is_declaration): Use the function above. Add some comments.
1683
1684 2004-04-19 Mark Kettenis <kettenis@gnu.org>
1685
1686 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Specify
1687 architecture when registering sparcnbsd_core_osabi_sniffer.
1688 Adjust comment.
1689
1690 2004-04-18 Mark Kettenis <kettenis@gnu.org>
1691
1692 * infcall.c (find_function_addr): Add FUNCTION_START_OFFSET to
1693 return value.
1694
1695 Based on a patch from Brian Ford <ford@vss.fsi.com>:
1696 * i386-tdep.c: Correct register numbering scheme comments
1697 throughout.
1698 (i386_stab_reg_to_regnum): Rename to i386_dbx_reg_to_regnum.
1699 (i386_dwarf_reg_to_regnum): Rename to i386_svr4_reg_to_regnum.
1700 (i386_coff_init_abi, i386_elf_init_abi): Accomodate renames above.
1701 (i386_gdb_arch_init): Likewise.
1702
1703 * Makefile.in (ALLDEPFILES): List ppc-sysv-tdep.c, ppcnbsd-nat.c
1704 and ppcnbsd-tdep.c instead of ppc-sysv-tdep.o, ppcnbsd-nat.o and
1705 ppcnbsd-tdep.o.
1706
1707 * m68k-tdep.h: Tweak comments.
1708 * m68k-tdep.c: Tweak comment.
1709
1710 2004-04-17 Randolph Chung <tausq@debian.org>
1711
1712 * Makefile.in (hppa-hpux-tdep.o): Add $(hppa_tdep_h).
1713 * hppa-hpux-tdep.c (hppa-tdep.h): Include.
1714 (hppa_hpux_som_init_abi): Set is_elf to 0.
1715 (hppa_hpux_elf_init_abi): Set is_elf to 1.
1716 * hppa-tdep.c (low_text_segment_address): Remove global.
1717 (record_text_segment_lowaddr): Pass in low address as parameter. Use
1718 section offset to calculate segment address.
1719 (internalize_unwinds): Define low_text_segment_address as local and
1720 pass to record_text_segment_lowaddr for ELF targets.
1721 (hppa_gdbarch_init): Zero fill tdep structure.
1722 (hppa_dump_tdep): Print tdep structure.
1723 * hppa-tdep.h (gdbarch_tdep): Add is_elf member to tdep structure.
1724
1725 2004-04-17 Randolph Chung <tausq@debian.org>
1726
1727 * hppa-tdep.c (hppa_pseudo_register_read): Define.
1728 (hppa_gdbarch_init): Set pseudo_register_read.
1729 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Remove.
1730 * regcache.c (supply_register): Remove check for
1731 DEPRECATED_CLEAN_UP_REGISTER_VALUE since we've removed the last user.
1732
1733 2004-04-17 Randolph Chung <tausq@debian.org>
1734
1735 * Makefile.in (hpread.o, pa64solib.o, somsolib.o): Add $(hppa_tdep_h)
1736 * hppa-tdep.h (INSTRUCTION_SIZE): Move from tm-hppa.h.
1737 (hpread_adjust_stack_address): Move to hpread.c.
1738 * hppa-tdep.h (unwind_table_entry, unwind_stub_types, obj_unwind_info,
1739 obj_private_struct): Move from tm-hppa.h.
1740 * hpread.c (hppa-tdep.h): Include.
1741 (hpread_adjust_stack_address): Move from hppa-tdep.c.
1742 (hpread_read_function_type, hpread_read_doc_function_type)
1743 (hpread_process_one_debug_symbol): Call hpread_adjust_stack_address
1744 directly.
1745 * pa64solib.c (hppa-tdep.h): Include.
1746 * somsolib.c (hppa-tdep.h): Include.
1747 * config/pa/tm-hppa.h (frame_info, frame_saved_regs, value, type,
1748 inferior_status): Remove unused forward declarations.
1749 (INSTRUCTION_SIZE): Move to hppa-tdep.c.
1750 (unwind_table_entry, unwind_stub_types, obj_unwind_info,
1751 obj_private_struct): Move to hppa-tdep.h.
1752 (HPREAD_ADJUST_STACK_ADDRESS): Remove.
1753
1754 2004-04-17 Randolph Chung <tausq@debian.org>
1755
1756 * hppa-tdep.c (hppa_reg_struct_has_addr, hppa_skip_prologue)
1757 (hppa_skip_trampoline_code, hppa_in_solib_call_trampoline)
1758 (hppa_in_solib_return_trampoline, hppa_cannot_store_register)
1759 (hppa_smash_text_address, hppa_target_read_pc, hppa_target_write_pc):
1760 Remove forward declaration and make static.
1761 (hppa_reg_struct_has_addr): Remove.
1762
1763 2004-04-16 Joel Brobecker <brobecker@gnat.com>
1764
1765 * observer.sh: Move comments in sed command to first column.
1766
1767 2004-04-16 Jason Molenda (jmolenda@apple.com)
1768
1769 * frame.c: Minor typeo corrections in comments.
1770
1771 2004-04-16 Joel Brobecker <brobecker@gnat.com>
1772
1773 * observer.c (observer_test_first_notification_function): Update
1774 function profile.
1775 (observer_test_second_notification_function): Likewise.
1776 (observer_test_third_notification_function): Likewise.
1777
1778 2004-04-16 Mark Kettenis <kettenis@gnu.org>
1779
1780 From Brian Ford <ford@vss.fsi.com>:
1781 * i386-tdep.c (i386_coff_init_abi): New function.
1782 * i386-tdep.h (i386_coff_init_abi): New prototype.
1783 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Call it. Use correct
1784 register number translation functions for DWARF and DWARF 2.
1785
1786 2004-04-16 Joel Brobecker <brobecker@gnat.com>
1787
1788 * dwarf2read.c: Back out my previous change, it was incorrect.
1789
1790 2004-04-16 Daniel Jacobowitz <drow@mvista.com>
1791
1792 * dwarf2read.c: Include "hashtab.h".
1793 (struct dwarf2_cu): Add partial_dies, comp_unit_obstack,
1794 has_namespace_info.
1795 (struct partial_die_info): Add comments. Use bitfields to reduce
1796 memory footprint. Add scope, scope_set, has_specification,
1797 spec_offset, die_parent, die_child, and die_sibling.
1798 (peek_die_abbrev): Add prototype.
1799 (partial_read_comp_unit_head): New function, broken out from
1800 dwarf2_build_psymtabs_hard.
1801 (dwarf2_build_psymtabs_hard): Remove unused variable abbrev_ptr.
1802 Use partial_read_comp_unit_head. Initialize the CU and
1803 comp_unit_obstack. Update calls to read_partial_die and
1804 scan_partial_symbols. Use free_stack_comp_unit and
1805 load_partial_dies.
1806 (scan_partial_symbols): Change PDI to a pointer. Use the child and
1807 sibling pointers to walk partial DIEs. Call fixup_partial_die.
1808 Update calls to helper functions. Remove NAMESPACE argument.
1809 Update comments.
1810 (partial_die_parent_scope, partial_die_full_name): New functions.
1811 (add_partial_symbol): Remove namespace argument. Update call to
1812 pdi_needs_namespace. Use partial_die_full_name. Handle
1813 DW_TAG_namespace. Check has_namespace_info flag.
1814 (pdi_needs_namespace): Remove NAMESPACE argument. Just check the
1815 tag. Handle namespaces.
1816 (add_partial_namespace, add_partial_enumeration): Simplify.
1817 (guess_structure_name): New function, derived from
1818 add_partial_structure.
1819 (add_partial_structure): Remove.
1820 (determine_class_name): Update comment.
1821 (dwarf2_read_abbrevs): Set has_namespace_info flag.
1822 (is_type_tag_for_partial, load_partial_dies): New functions.
1823 (read_partial_die): Pass abbrev and abbrev_len as arguments.
1824 Record specifications instead of following them immediately.
1825 (find_partial_die_in_comp_unit, find_partial_die)
1826 (fixup_partial_die, free_stack_comp_unit)
1827 (hashtab_obstack_allocate, dummy_obstack_deallocate)
1828 (partial_die_hash, partial_die_eq): New functions.
1829 * Makefile.in (hashtab_h): Define.
1830 (dwarf2read.o): Update dependencies.
1831 (observer_inc, observer_h): Move to the correct section.
1832
1833 2004-04-15 Joel Brobecker <brobecker@gnat.com>
1834
1835 * dwarf2read.c (dwarf2_attribute_true_p): New function.
1836 (die_is_declaration): Use the function above. Add comment.
1837
1838 2004-04-15 Joel Brobecker <brobecker@gnat.com>
1839
1840 * dwarf2read.c (read_structure_scope): Identify stub types
1841 using die_is_declaration() only.
1842
1843 2004-04-15 Roland McGrath <roland@redhat.com>
1844
1845 * symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as
1846 argument instead of NAME.
1847 (symbol_file_add, reread_separate_symbols): Call symfile_bfd_open
1848 in call to symbol_file_add_with_addrs_or_offsets.
1849 (build_addr_info): New function, helper for ...
1850 (symbol_file_add_from_memory): New function.
1851 (add_symbol_file_from_memory_command): New function using that.
1852 (_initialize_symfile): Register it for add-symbol-file-from-memory.
1853 (pre_add_symbol_hook): Add const to argument type.
1854 * symfile.h (symbol_file_add_from_memory): Declare it.
1855
1856 2004-04-15 Mark Kettenis <kettenis@gnu.org>
1857
1858 * NEWS (New native configurations): Mention OpenBSD/vax.
1859 * configure.host: Add vax-*-openbsd*.
1860 * config/vax/obsd.mh: New file.
1861 * config/vax/nm-obsd.h: New file.
1862
1863 * vax-tdep.c: Include "regset.h".
1864 (vax_supply_gregset): New function.
1865 (vax_gregset): New variable.
1866 (vax_regset_from_core_section): New function.
1867 (vax_gdbarch_init): Set regset_from_core_section.
1868 * Makefile.in (vax-tdep.o): Update dependencies.
1869
1870 2004-04-15 Andrew Cagney <cagney@redhat.com>
1871
1872 * observer.c (normal_stop_subject, observer_notify_normal_stop)
1873 (observer_normal_stop_notification_stub)
1874 (observer_attach_normal_stop, observer_detach_normal_stop):
1875 Delete, replaced by #include "observer.inc".
1876 * infrun.c (normal_stop): Pass "stop_bpstat" to
1877 observer_notify_normal_stop.
1878 * Makefile.in (observer_inc): Define.
1879 (observer.o): Update dependencies.
1880 (observer.h, observer.inc): New rules.
1881 * observer.h: Delete file.
1882 * observer.sh: New file.
1883
1884 2004-04-15 Mark Kettenis <kettenis@gnu.org>
1885
1886 * vax-tdep.c (vax_frame_cache): Fix typo.
1887
1888 2004-04-14 Mark Kettenis <kettenis@gnu.org>
1889
1890 * NEWS (New native configurations): Mention NetBSD/vax.
1891 * configure.host: Add vax-*-netbsdelf* and vax-*-netbsd*.
1892 * config/vax/nbsdelf.mh: New file.
1893 * config/vax/nbsdaout.mh: New file.
1894 * config/vax/nm-nbsd.h: New file.
1895 * config/vax/nm-nbsdaout.h: New file.
1896
1897 * vaxnbsd-tdep.c: New file.
1898 * Makefile.in (vaxnbsd-tdep.o): New dependency.
1899 * configure.tgt: Add vax-*-netbsd* and vax-*-openbsd*.
1900 * config/vax/nbsd.mt: New file.
1901 * config/vax/tm-nbsd.h: New file.
1902
1903 * Makefile.in (vaxbsd-nat.o): New dependency.
1904
1905 * vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
1906 * vax-tdep.c (vax_store_arguments): Remove struct_return and
1907 struct_addr arguments. Don't push return value address.
1908 (vax_push_dummy_call): Don't pass STRUCT_RETURN and STRUCT_ADDR as
1909 arguments to vax_store_arguments. Store return value address in
1910 R1.
1911 (vax_store_struct_return, vax_extract_return_value)
1912 (vax_store_return_value): Remove functions.
1913 (vax_return_value): New function.
1914 (vax_gdbarch_init): Set return value. Don't set
1915 deprecated_store_struct_return, deprecated_extract_struct_return
1916 and deprecated_store_return_value.
1917
1918 2004-04-14 Andreas Schwab <schwab@suse.de>
1919
1920 * ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
1921 value buffer.
1922 * libunwind-frame.c (libunwind_frame_prev_register): Likewise.
1923
1924 2004-04-14 Mark Kettenis <kettenis@gnu.org>
1925
1926 * vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
1927 (vax_unwind_dummy_id): New functions.
1928 (vax_push_dummy_frame, vax_pop_frame): Remove functions.
1929 (vax_call_dummy_words, sizeof_vax_call_dummy_words): Remove
1930 variables.
1931 (vax_fix_call_dummy): Remove function.
1932 (vax_gdbarch_init): Set push_dummy_call and unwind_dummy_id.
1933 Don't set deprecated_push_dummy_frame, deprecated_pop_frame,
1934 call_dummy_location, deprecated_call_dummy_words,
1935 deprecated_sizeof_call_dummy_words,
1936 deprecated_call_dummy_breakpoint_offset,
1937 deprecated_use_generic_dummy_frames, deprecated_pc_in_call_dummy,
1938 and deprecated_dummy_write_sp.
1939
1940 2004-04-13 David Carlton <carlton@kealia.com>
1941
1942 * MAINTAINERS: Move myself to "paper trail" section.
1943
1944 2004-04-12 Mark Kettenis <kettenis@gnu.org>
1945
1946 * vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
1947 "trad-frame.h".
1948 (vax_frame_init_saved_regs): Remove function.
1949 (vax_sigtramp_saved_pc): Remove function.
1950 (vax_frame_saved_pc): Remove function.
1951 (vax_frame_args_address): Remove function.
1952 (vax_frame_num_args): Rewrite.
1953 (vax_frame_chain): Remove function.
1954 (vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
1955 VAX_FP_REGNUM.
1956 (vax_pop_frame): Likewise.
1957 (vax_saved_pc_after_call): Remove function.
1958 (struct vax_frame_cache): New structure.
1959 (vax_frame_cache): New function.
1960 (vax_frame_this_id): New function.
1961 (vax_frame_prev_register): New function.
1962 (vax_frame_unwind): New variable.
1963 (vax_frame_sniffer): New function.
1964 (vax_frame_base_address): New function.
1965 (vax_frame_args_address): New function.
1966 (vax_frame_base): New variable.
1967 (vax_unwind_pc): New function.
1968 (vax_gdbarch_init): Don't set deprecated_init_frame_pc,
1969 deprecated_fp_regnum, deprecated_saved_pc_after_call,
1970 deprecated_frame_chain, deprecated_frame_saved_pc,
1971 deprecated_frame_args_address and
1972 deprecated_frame_init_saved_regs.
1973 * Makefile.in (vax-tdep.o): Update dependencies.
1974
1975 * vaxbsd-nat.c: New file.
1976
1977 * vax-tdep.h: Update copyright year. Adjust comments.
1978 (VAX_REGISTER_SIZE, VAX_REGISTER_BYTES, VAX_MAX_REGISTER_RAW_SIZE,
1979 VAX_MAX_REGISTER_VIRTUAL_SIZE): Remove macros.
1980 (vax_regnum): New enum. Replacing...
1981 (VAX_AP_REGNUM, VAX_FP_REGNUM, VAX_SP_REGNUM, VAX_PC_REGNUM)
1982 (VAX_PS_REGNUM): ... these removed macros.
1983 * vax-tdep.c (vax_register_name): Remove prototype.
1984 (vax_register_name): Reorganize somewhat. Use ARRAY_SIZE.
1985 (vax_register_byte, vax_register_raw_size,
1986 vax_register_virtual_size, vax_register_virtual_type): Remove
1987 functions.
1988 (vax_register_type): New function.
1989 (vax_breakpoint_from_pc): Reorganize.
1990 (vax_gdbarch_init): Set register_type. Don't set
1991 deprecated_register_size, deprecated_register_bytes,
1992 deprecated_register_byte, deprecated_register_raw_size,
1993 deprecated_max_register_raw_size,
1994 deprecated_register_virtual_size,
1995 deprecated_max_register_virtual_size and
1996 deprecated_register_virtual_type. Add comment on stack direction.
1997
1998 2004-04-11 Mark Kettenis <kettenis@gnu.org>
1999
2000 * amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
2001 AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
2002 AMD64_FS_REGNUM and AMD64_GS_REGNUM.
2003
2004 2004-04-10 Randolph Chung <tausq@debian.org>
2005
2006 * MAINTAINERS (write after approval): Add myself.
2007
2008 2004-04-07 Randolph Chung <tausq@debian.org>
2009
2010 * hppa-tdep.c (hppa_inner_than): Remove.
2011 (is_pa_2): Remove unused static variable.
2012 (hppa_gdbarch_init): Use core_addr_greaterthan instead of own version.
2013
2014 2004-03-10 Paul N. Hilfinger <Hilfinger@gnat.com>
2015
2016 * language.h (language_defn): Add new la_post_parser field.
2017 * parser-defs.h (null_post_parser): New declaration (default for
2018 la_post_parser).
2019
2020 * parse.c (parse_exp_1): Move code to parse_exp_in_context and
2021 insert call to that function.
2022 (parse_exp_in_context): New function, including code formerly in
2023 parse_exp_1. Calls language-dependent post-parser after
2024 prefixification.
2025 (parse_expression_in_context): New exported function.
2026 (null_post_parser): New definition.
2027 * expression.h (parse_expression_in_context): Add declaration.
2028
2029 * p-lang.c (pascal_language_defn): Add trivial post-parser.
2030 * c-lang.c (c_language_defn): Ditto.
2031 (cplus_language_defn): Ditto.
2032 (asm_language_defn): Ditto.
2033 (minimal_language_defn): Ditto.
2034 * f-lang.c (f_language_defn): Ditto.
2035 * jv-lang.c (java_language_defn): Ditto.
2036 * language.c (unknown_language_defn): Ditto.
2037 (auto_language_defn): Ditto.
2038 (local_language_defn): Ditto.
2039 * m2-lang.c (m2_language_defn): Ditto.
2040 * scm-lang.c (scm_language_defn): Ditto.
2041 * obj-lang.c (objc_language_defn): Ditto.
2042
2043 2004-04-10 Mark Kettenis <kettenis@gnu.org>
2044
2045 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Remove function.
2046 (amd64nbsd_mcontext_addr): New function.
2047 (amd64nbsd_init_abi): Initialize TDEP->sigcontext_addr as
2048 amd64nbsd_mcontext_addr. Directly initialize TDEP->sc_reg_offset
2049 with amd64nbsd_r_reg_offset, instead of building it on the fly.
2050
2051 * corelow.c (core_xfer_partial): Fix coding standards violation.
2052 Add support for TARGET_OBJECT_WCOOKIE.
2053
2054 * sparc-linux-tdep.c (sparc32_linux_init_abi): Don't set
2055 deprecated_pc_in_sigtramp.
2056 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Likewise.
2057 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Likewise.
2058 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Likewise.
2059 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Likewise.
2060 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Likewise.
2061 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Likewise.
2062 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
2063
2064 * amd64-linux-tdep.c, amd64nbsd-tdep.c, amd64obsd-tdep.c,
2065 i386-linux-tdep.c, i386-tdep.c, i386nbsd-tdep.c, i386obsd-tdep.c:
2066 Fix typo.
2067
2068 * amd64-tdep.c (amd64_supply_fxsave): Only fiddle with
2069 I387_FISEG_REGNUM and I387_FOSEG_REGNUM in 64-bit mode.
2070 (amd64_collect_fxsave): Likewise.
2071
2072 * i386-sol2-tdep.c: Include "gdb_string.h".
2073 (i386_sol2_sigtramp_p): Recognize signal trampoline based on its
2074 name.
2075 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
2076
2077 2004-04-10 Mark Kettenis <kettenis@gnu.org>
2078
2079 * i386-sol2-tdep.c: Include "solib-svr4.h".
2080 (i386_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
2081 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
2082 * config/i386/tm-i386sol2.h: Include :solib.h".
2083 * config/i386/i386sol2.mh (NATDEPFILES): Remove solib.o,
2084 solib-svr4.o and solib-legacy.o.
2085 * config/i386/i386sol2.mt (TDEPFILES): Add solib.o and
2086 solib-svr4.o.
2087
2088 2004-04-09 Mark Kettenis <kettenis@gnu.org>
2089
2090 * amd64-linux-nat.c (fetch_inferior_registers): Correctly check
2091 whether a register is supplied by PTRACE_GETFPREGS.
2092 (store_inferior_registers): Likewise.
2093 * amd64bsd-nat.c (fetch_inferior_registers): Correctly check
2094 whether a register is supplied by PT_GETFPREGS.
2095 (store_inferior_registers): Likewise.
2096
2097 * config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
2098 * config/i386/linux64.mt (TDEPFILES): Likewise.
2099
2100 * i386-linux-nat.c: Update copyrigth year. Tweak comment.
2101
2102 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
2103 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
2104 the program counter is in the range specified by `struct
2105 gdbarch_tdep'.
2106 * amd64-linux-tdep.c: Include "symtab.h".
2107 (amd64_linux_pc_in_sigtramp): Remove function.
2108 (amd64_linux_sigtramp_p): New function.
2109 (amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
2110 deprecated_pc_in_sigtramp.
2111 * amd64nbsd-tdep.c: Include "symtab.h".
2112 (amd64nbsd_sigtramp_p): New function.
2113 (amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
2114 deprecated_pc_in_sigtramp.
2115 * amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
2116 few comments.
2117 (amd64obsd_pc_in_sigtramp): Remove function.
2118 (amd64obsd_sigtramp_p): New function.
2119 (amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
2120 deprecated_pc_in_sigtramp.
2121 * i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
2122 (i386bsd_pc_ins_sigtramp): Remove prototype.
2123 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
2124 * i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
2125 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
2126 the program counter is in the range specified by `struct
2127 gdbarch_tdep'.
2128 (i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
2129 (i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
2130 (i386_go32_pc_in_sigtramp): Remove function.
2131 (i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
2132 Initialize TDEP->sigtramp_p.
2133 (i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
2134 (i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
2135 deprecated_pc_in_sigtramp.
2136 * i386-linux-tdep.c: Adjust comments.
2137 (i386_linux_pc_in_sigtramp): Remove function.
2138 (i386_linux_sigtramp_p): New function.
2139 (i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
2140 deprecated_pc_in_sigtramp.
2141 * i386-nto-tdep.c: Update copyright year.
2142 (i386nto_pc_in_sigtramp): Remove function.
2143 (i386nto_sigtramp_p): New function.
2144 (i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
2145 SP_REGNUM.
2146 (i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
2147 deprecated_pc_in_sigtramp.
2148 * i386-sol2-tdep.c: Update copyright year.
2149 (i386_sol2_pc_in_sigtramp): Remove function.
2150 (i386_sol2_sigtramp_p): New function.
2151 (i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
2152 deprecated_pc_in_sigtramp.
2153 * i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
2154 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
2155 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
2156 deprecated_sigtramp_start and deprecated_sigtramp_end.
2157 * i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
2158 (i386nbsd_pc_in_sigtramp): Remove function.
2159 (i386nbsd_sigtramp_p): New function.
2160 (i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
2161 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
2162 TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
2163 * i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
2164 (i386obsd_pc_in_sigtramp): Remove function.
2165 (i386obsd_sigtramp_p): New function.
2166 (i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
2167 functions.
2168 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
2169 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
2170 TDEP->sigtramp_p.
2171 * Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
2172 amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
2173 dependencies.
2174
2175 * config/i386/i386aout.mt: Remove file.
2176
2177 * configure.tgt: Remove i[34567]86-*-go32*,
2178 i[34567]86-*-msdosdjgpp*, i[34567]86-*-sco*, i[34567]86-*-sysv*
2179 and i[34567]86-*-isc*. Set gdb_target to i386 for
2180 i[34567]86-*-netware* and i[34567]86-*-*.
2181 * config/i386/i386.mt: New file.
2182 * config/i386/embed.mt: Remove file.
2183 * config/i386/go32.mt: Remove file.
2184 * config/i386/i386nw.mt: Remove file.
2185 * config/i386/i386v.mt: Remove file.
2186 * config/i386/tm-go32.h: Remove file.
2187
2188 * tui/tui-hooks.c: Include "readline/readline.h" after
2189 "gdb_curses.h" instead of before.
2190 * tui/tui-io.c: Likewise.
2191
2192 * tui/tui.c: Fix typo in comment.
2193
2194 * sparc64-tdep.c (sparc_address_from_register): Remove function.
2195
2196 2004-04-08 Andrew Cagney <cagney@redhat.com>
2197
2198 * breakpoint.h (deprecated_exception_catchpoints_are_fragile)
2199 (deprecated_exception_support_initialized): Declare.
2200 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support)
2201 (initialize_hp_cxx_exception_support)
2202 (child_enable_exception_callback): Update.
2203 * breakpoint.c (deprecated_exception_catchpoints_are_fragile)
2204 (deprecated_exception_support_initialized): Rename
2205 deprecated_exception_catchpoints_are_fragile and
2206 deprecated_exception_support_initialized.
2207 (breakpoint_init_inferior, breakpoint_init_inferior): Update.
2208
2209 * symtab.c (deprecated_hp_som_som_object_present): Rename
2210 hp_som_som_object_present.
2211 * symtab.h (deprecated_hp_som_som_object_present): Declare.
2212 * symfile.c (hp_som_som_object_present, RESET_HP_UX_GLOBALS):
2213 Update. Delete extern declaration.
2214 * valops.c (hp_som_som_object_present): Ditto.
2215 * parse.c (deprecated_hp_som_som_object_present)
2216 (parse_nested_classes_for_hpacc): Ditto.
2217 * hpread.c (hp_som_som_object_present, hpread_expand_symtab): Ditto.
2218 * hppa-hpux-tdep.c (hp_som_som_object_present)
2219 (initialize_hp_cxx_exception_support): Ditto.
2220 * eval.c (hp_som_som_object_present, evaluate_subexp_standard): Ditto.
2221 * cp-valprint.c (hp_som_som_object_present)
2222 (cp_print_class_method): Ditto.
2223 * c-typeprint.c (hp_som_som_object_present):
2224 (c_type_print_base): Ditto.
2225 * c-exp.y (hp_som_som_object_present): Ditto.
2226
2227 2004-04-08 Andrew Cagney <cagney@redhat.com>
2228
2229 * frame-unwind.c (struct frame_unwind_table, frame_unwind_init)
2230 (frame_unwind_prepend_unwinder, frame_unwind_append_sniffer)
2231 (frame_unwind_find_by_frame): Re-implement the unwind code so
2232 that it can both prepend and append sniffers. Replace
2233 frame_unwind_register_unwinder with frame_unwind_prepend_unwinder.
2234 * tramp-frame.c (tramp_frame_append): Use
2235 frame_unwind_prepend_unwinder.
2236 * frame-unwind.h (frame_unwind_prepend_unwinder): Replace
2237 frame_unwind_register_unwinder.
2238 * tramp-frame.h (tramp_frame_prepend_unwinder): Rename
2239 tramp_frame_append.
2240 * tramp-frame.c (tramp_frame_prepend_unwinder): Update.
2241 * mips-linux-tdep.c (mips_linux_init_abi, mips_linux_init_abi)
2242 (mips_linux_init_abi): Update.
2243
2244 2004-04-08 Kevin Buettner <kevinb@redhat.com>
2245
2246 * ppc-linux-tdep.c (ELF_NREG, ELF_NFPREG, ELF_NVRREG)
2247 (ELF_FPREGSET_SIZE): Delete constants formerly used in core
2248 file support.
2249
2250 2004-04-07 Kevin Buettner <kevinb@redhat.com>
2251
2252 * ia64-tdep.c (elf.h): Don't include.
2253 (elf/ia64.h) [HAVE_LIBUNWIND_IA64_H]: Include.
2254
2255 2004-04-07 Jason Molenda (jmolenda@apple.com)
2256
2257 * frame.h: Typeo corrections in comments.
2258
2259 2004-04-07 Jim Blandy <jimb@redhat.com>
2260
2261 * i386-tdep.c (i386_stab_reg_to_regnum): Correct numbering for
2262 %esp and %ebp
2263
2264 2004-04-07 Mark Kettenis <kettenis@gnu.org>
2265
2266 * config/sparc/linux.mt (TDEPFILES): Remove solib-legacy.o.
2267 * config/sparc/linux64.mt (TDEPFILES): Likewise.
2268 * config/sparc/sol2.mt (TDEPFILES): Add solib.o and solib-svr4.o.
2269 * config/sparc/sol2.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
2270 and solib-legacy.o.
2271 * config/sparc/sol2-64.mt (TDEPFILES): Add solib.o and
2272 solib-svr4.o.
2273 * config/sparc/tm-sol2.h: Update copyright year. Include
2274 "solib.h".
2275
2276 * sparc-sol2-tdep.c: Update copyright year. Include
2277 "solib-svr4.h".
2278 (sparc32_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
2279 * sparc64-sol2-tdep.c: Include "solib-svr4.h".
2280 (sparc64_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
2281 * Makefile.in (sparc-sol2-tdep.o, sparc64-sol2-tdep.o): Update
2282 dependencies.
2283
2284 2004-04-06 Andrew Cagney <cagney@redhat.com>
2285
2286 * infttrace.c: Include "infttrace.h".
2287 * infttrace.h: Include "target.h".
2288 * Makefile.in (infttrace_h): Update.
2289 (infttrace.o): Update.
2290
2291 2004-04-06 Andrew Cagney <cagney@redhat.com>
2292
2293 * hppah-nat.c (hpux_has_forked, hpux_has_vforked)
2294 (hpux_has_execd, hpux_has_syscall_event): Include "infttrace.h",
2295 move extern declarations from here ...
2296 * infttrace.h: ... to here.
2297 * Makefile.in (hppah-nat.o): Update dependencies.
2298
2299 * hppa-tdep.c (hppa_breakpoint_from_pc): Make static.
2300 (hppa_gdbarch_init): Set gdbarch_breakpoint_from_pc
2301 * config/pa/tm-hppa.h (BREAKPOINT_FROM_PC, BREAKPOINT32):
2302 (hppa_breakpoint_from_pc): Delete.
2303
2304 * MAINTAINERS: Mark hppa-elf as buildable with -Werror.
2305
2306 2004-04-05 Andrew Cagney <cagney@redhat.com>
2307
2308 * hppa-tdep.c: Do not include <sys/types.h>, <sys/param.h>,
2309 <signal.h>, <sys/ptrace.h>, #include "a.out.encap.h",
2310 <sys/file.h>.
2311
2312 2004-04-06 Randolph Chung <tausq@debian.org>
2313
2314 Committed by Andrew Cagney (mechanical change).
2315 * hppa-tdep.c: (args_for_find_stub, hp_som_som_object_present,
2316 exception_catchpoints_are_fragile, find_stub_with_shl_get,
2317 cover_find_stub_with_shl_get, initialize_hp_cxx_exception_support,
2318 child_enable_exception_callback, current_ex_event,
2319 null_symtab_and_line, child_get_current_exception_event,
2320 HP_ACC_EH_notify_hook, HP_ACC_EH_set_hook_value,
2321 HP_ACC_EH_notify_callback, HP_ACC_EH_break, HP_ACC_EH_catch_throw,
2322 HP_ACC_EH_catch_catch, __eh_notification, hp_cxx_exception_support,
2323 hp_cxx_exception_support_initialized, eh_notify_hook_addr,
2324 eh_notify_callback_addr, eh_break_addr, eh_catch_catch_addr,
2325 eh_catch_throw_addr, break_callback_sal, setup_d_pid_in_inferior):
2326 Move hpux-specific definitions ...
2327 * hppa-hpux-tdep.c: ... to here.
2328
2329 2004-04-05 Andrew Cagney <cagney@redhat.com>
2330
2331 * hppa-tdep.c (hppa_frame_cache): Pass the frame's func to
2332 skip_prologue_using_sal.
2333
2334 2004-04-05 Andrew Cagney <cagney@redhat.com>
2335
2336 * config/i386/tm-i386.h: Delete file.
2337 * config/i386/tm-vxworks.h: Update copyright, do not include
2338 "tm-i386.h".
2339 * config/i386/tm-nto.h, config/i386/tm-linux.h: Ditto.
2340 * config/i386/tm-i386sol2.h, config/i386/tm-i386lynx.h: Ditto.
2341 * config/i386/tm-go32.h, config/i386/tm-cygwin.h: Ditto.
2342 * config/i386/ncr3000.mt (TM_FILE): Delete.
2343 * config/i386/interix.mt (TM_FILE): Delete.
2344 * config/i386/i386v.mt (TM_FILE): Delete.
2345 * config/i386/i386nw.mt (TM_FILE): Delete.
2346 * config/i386/i386gnu.mt (TM_FILE): Delete.
2347 * config/i386/i386aout.mt (TM_FILE): Delete.
2348 * config/i386/embed.mt (TM_FILE): Delete.
2349
2350 2004-04-05 Kevin Buettner <kevinb@redhat.com>
2351
2352 * frv-tdep.h (fsr0_regnum, acc0_regnum, acc7_regnum, accg0123_regnum)
2353 (accg4567_regnum, msr0_regnum, msr1_regnum, gner0_regnum)
2354 (gner1_regnum, fner0_regnum, fner1_regnum, accg0_regnum)
2355 (accg7_regnum): New constants.
2356 (last_spr_regnum, last_pseudo_regnum): Update.
2357 * frv-tdep.c (new_variant): Initialize names for fsr0, acc0-acc7,
2358 accg0-accg7, msr0, msr1, gner0, gner1, fner0, and fner1.
2359 (frv_pseudo_register_read, frv_pseudo_register_write): Add support
2360 for accg registers.
2361 (frv_register_sim_regno): Update spr_map[].
2362
2363 2004-04-04 Andrew Cagney <cagney@redhat.com>
2364
2365 * config/mips/xm-riscos.h: Delete.
2366 * config/mips/xm-mipsv4.h, config/mips/xm-mips.h: Delete.
2367 * config/mips/tm-mipsv4.h, config/mips/riscos.mh: Delete.
2368 * config/mips/nm-riscos.h, config/mips/nm-news-mips.h: Delete.
2369 * config/mips/nm-mips.h, config/mips/news-mips.mh: Delete.
2370 * config/mips/news-mips.mh, config/m68k/tm-m68kv4.h: Delete.
2371 * config/mips/decstation.mh, config/mips/littlemips.mh: Delete.
2372 * config/mips/mipsv4.mt, config/m68k/tm-sun3.h: Delete.
2373 * config/m68k/xm-sun3os4.h, config/m68k/xm-sun3.h: Delete.
2374 * config/m68k/xm-sun2.h, config/m68k/xm-m68kv4.h: Delete.
2375 * config/m68k/xm-dpx2.h, config/m68k/xm-delta68.h: Delete.
2376 * config/m68k/xm-3b1.h, config/m68k/tm-sun3os4.h: Delete.
2377 * config/m68k/tm-m68klynx.h, config/m68k/tm-dpx2.h: Delete.
2378 * config/m68k/tm-delta68.h, config/m68k/tm-3b1.h: Delete.
2379 * config/m68k/sun3os4.mt, config/m68k/nm-sysv4.h: Delete.
2380 * config/m68k/nm-sun3.h, config/m68k/sun3os4.mh: Delete.
2381 * config/m68k/sun2os3.mh, config/m68k/nm-sun2.h: Delete.
2382 * config/m68k/nm-m68klynx.h, config/m68k/sun3os3.mt: Delete.
2383 * config/m68k/nm-dpx2.h, config/m68k/sun2os3.mt: Delete.
2384 * config/m68k/dpx2.mh, config/m68k/sun3os3.mh: Delete.
2385 * config/m68k/sun2os4.mh, config/m68k/nm-delta68.h: Delete.
2386 * config/m68k/m68kv4.mt, config/m68k/m68klynx.mt: Delete.
2387 * config/m68k/3b1.mt, config/m68k/m68klynx.mh: Delete.
2388 * config/m68k/m68kv4.mh, config/m68k/sun2os4.mt: Delete.
2389 * config/m68k/tm-sun2os4.h, config/m68k/3b1.mh: Delete.
2390 * config/m68k/dpx2.mt, config/m68k/delta68.mt: Delete.
2391 * config/m68k/tm-sun2.h, config/m68k/delta68.mh: Delete.
2392
2393 * configure.tgt: Remove m68000-*-sunos3*, m68000-*-sunos4*,
2394 m68*-bull-sysv*, m68*-att-*, m68*-motorola-*, m68*-*-lynxos*,
2395 m68*-*-sunos3*, m68*-*-sunos4*, m68*-*-sysv4*, mips*-*-sysv4*.
2396 * configure.host: Remove m680[01]0-sun-sunos3*,
2397 m680[01]0-sun-sunos4*, m68*-att-*, m68*-bull*-sysv*,
2398 m68*-*-lynxos*, m68*-*-sysv4*, m68*-motorola-*, m68*-sun-sunos3*,
2399 m68*-sun-sunos4*, m68*-sun-*, mips-dec-*, mips-little-*,
2400 mips-sony-*, mips-*-mach3*, mips-*-sysv4*, mips-*-sysv*,
2401 mips-*-riscos*.
2402 * NEWS: Mention removed systems.
2403
2404 2004-04-04 Andrew Cagney <cagney@redhat.com>
2405
2406 GDB 6.1 release created from 6.1 branch.
2407
2408 2004-04-04 Andrew Cagney <cagney@redhat.com>
2409
2410 * gnu-nat.c (gnu_wait): Use memcpy instead of bcopy.
2411 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
2412 * remote-vx68.c (vx_read_register, vx_write_register): Ditto.
2413
2414 * config/vax/xm-vax.h (FAULT_CODE_ORIGIN, INIT_STACK): Delete.
2415 * config/alpha/xm-alphaosf.h (NO_SIGINTERRUPT): Delete.
2416 * config/alpha/xm-alphalinux.h (NO_SIGINTERRUPT): Delete.
2417
2418 2004-04-03 Jim Blandy <jimb@redhat.com>
2419
2420 * MAINTAINERS: Chris Faylor has changed employers; add him to
2421 "paper trail" section, and update his E-mail address.
2422
2423 2004-04-03 Andrew Cagney <cagney@redhat.com>
2424
2425 * frame-unwind.c (frame_unwind_find_by_frame): Delete check for
2426 generic dummy frames.
2427 * dummy-frame.c: Update copyright.
2428 (dummy_frame_sniffer): Delete check for generic dummy frames.
2429
2430 * config/pa/tm-hppa.h (REG_PARM_STACK_SPACE): Delete.
2431 * config/pa/tm-hppa64.h (PA20W_CALLING_CONVENTIONS)
2432 (REG_PARM_STACK_SPACE): Delete.
2433 * hppa-tdep.c (hppa64_push_dummy_call, hppa32_push_dummy_call):
2434 Inline reference to REG_PARM_STACK_SPACE.
2435
2436 * config/pa/tm-hppah.h (FRAME_SAVED_PC_IN_SIGTRAMP)
2437 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
2438 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
2439 (FRAME_BASE_BEFORE_SIGTRAMP)
2440 (hppa32_hpux_frame_base_before_sigtramp)
2441 (hppa32_hpux_frame_saved_pc_in_sigtramp): Delete.
2442 * config/pa/tm-hppa64.h (hppa64_hpux_frame_saved_pc_in_sigtramp)
2443 (hppa64_hpux_frame_find_saved_regs_in_sigtramp)
2444 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
2445 (FRAME_BASE_BEFORE_SIGTRAMP)
2446 (hppa64_hpux_frame_base_before_sigtramp)
2447 (FRAME_SAVED_PC_IN_SIGTRAMP): Delete.
2448
2449 2004-04-03 Andrew Cagney <cagney@redhat.com>
2450
2451 * PROBLEMS: Mention that GDB doesn't build on HP/UX 11.00.
2452
2453 2004-04-02 Andrew Cagney <cagney@redhat.com>
2454
2455 * sh64-tdep.c (sh64_init_extra_frame_info): Replace
2456 DEPRECATED_CALL_DUMMY_LENGTH with 0, simplify.
2457 * dummy-frame.h: Delete out-of-date comments.
2458 * gdbarch.sh (DEPRECATED_CALL_DUMMY_LENGTH): Delete.
2459 * gdbarch.h, gdbarch.c: Re-generate.
2460
2461 2004-04-02 Joel Brobecker <brobecker@gnat.com>
2462
2463 Committed by Andrew Cagney <cagney@redhat.com>.
2464 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Do not take
2465 into account an instruction saving a register if we have already
2466 seen an earlier instruction saving that same register.
2467
2468 2004-04-02 Andrew Cagney <cagney@redhat.com>
2469
2470 * gdbarch.sh (DEPRECATED_INIT_FRAME_PC_FIRST): Delete.
2471 * gdbarch.h, gdbarch.c: Re-generate.
2472 * frame.c (legacy_get_prev_frame): Delete references to
2473 DEPRECATED_INIT_FRAME_PC_FIRST.
2474
2475 * infrun.c (pc_in_sigtramp): Delete function.
2476 (check_sigtramp2): Inline call to pc_in_sigtramp, use
2477 get_frame_type.
2478
2479 2004-04-02 Andrew Cagney <cagney@redhat.com>
2480
2481 * infrun.c (handle_step_into_function): Delete code conditional on
2482 legacy_frame_p.
2483 (handle_inferior_event, step_over_function): Ditto.
2484
2485 2004-04-02 Andrew Cagney <cagney@redhat.com>
2486
2487 * frame.c (get_prev_frame_1): Exclude signal trampolines from the
2488 "previous frame inner to this frame" test.
2489
2490 2004-04-02 Andrew Cagney <cagney@redhat.com>
2491
2492 * frame.c (safe_frame_unwind_memory): New function.
2493 * frame.h (safe_frame_unwind_memory): Declare. Update description
2494 of /safe_/ methods.
2495 * tramp-frame.c (tramp_frame_start): Re-order parmeters, add
2496 "next_frame". Use safe_frame_unwind_memory.
2497 (tramp_frame_sniffer): Update call to tramp_frame_start.
2498
2499 2004-04-01 Daniel Jacobowitz <drow@mvista.com>
2500
2501 * dwarf2read.c (dwarf2_objfile_data_key): New.
2502 (struct dwarf2_per_objfile, dwarf2_per_objfile): New.
2503 (dwarf_info_size, dwarf_abbrev_size, dwarf_line_size)
2504 (dwarf_pubnames_size, dwarf_aranges_size, dwarf_loc_size)
2505 (dwarf_macinfo_size, dwarf_str_size, dwarf_ranges_size)
2506 (dwarf_frame_size, dwarf_eh_frame_size, dwarf_info_buffer)
2507 (dwarf_abbrev_buffer, dwarf_line_buffer, dwarf_str_buffer)
2508 (dwarf_macinfo_buffer, dwarf_ranges_buffer, dwarf_loc_buffer):
2509 Remove variables.
2510 (struct dwarf2_pinfo): Remove per-objfile members. Update comments.
2511 (DWARF_ABBREV_SIZE, DWARF_LINE_SIZE)
2512 (DWARF_LOC_SIZE, DWARF_MACINFO_SIZE, DWARF_STR_SIZE)
2513 (DWARF_RANGES_SIZE, DWARF_INFO_BUFFER)
2514 (DWARF_ABBREV_BUFFER, DWARF_LINE_BUFFER, DWARF_STR_BUFFER)
2515 (DWARF_MACINFO_BUFFER, DWARF_RANGES_BUFFER, DWARF_LOC_BUFFER):
2516 Remove macros.
2517 (dwarf2_has_info): Take an objfile argument. Allocate per-objfile
2518 data.
2519 (dwarf2_locate_sections, dwarf2_build_psymtabs)
2520 (dwarf2_build_psymtabs_easy, dwarf2_build_psymtabs_hard)
2521 (skip_one_die, dwarf2_get_pc_bounds, dwarf2_read_abbrevs)
2522 (read_partial_die, read_full_die, read_indirect_string)
2523 (dwarf_decode_line_header, dwarf_decode_macros)
2524 (dwarf2_symbol_mark_computed): Remove use of removed macros.
2525 Update uses of removed variables.
2526 (psymtab_to_symtab_1): Restore per-objfile data pointer. Remove use
2527 of removed macros.
2528 (_initialize_dwarf2_read): New function.
2529 * symfile.h (dwarf2_has_info): Update prototype.
2530 * coffread.c (coff_symfile_read): Update call to dwarf2_has_info.
2531 * elfread.c (elf_symfile_read): Likewise.
2532
2533 2004-04-01 Jim Blandy <jimb@redhat.com>
2534
2535 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): New, unified
2536 function for register numbers on all the rs6000-derived targets.
2537 (rs6000_gdbarch_init): Don't register a separate
2538 gdbarch_dwarf2_reg_to_regnum function for the E500. Use
2539 rs6000_dwarf2_stab_reg_to_regnum for both Dwarf 2 and stabs on all
2540 variants.
2541
2542 * i386-tdep.c: Add FIXME regarding STABS vs. Dwarf 2 register
2543 numbering.
2544
2545 2004-04-01 Paul N. Hilfinger <Hilfinger@gnat.com>
2546
2547 * valarith.c: Update copyright notice.
2548 (value_add): Handle range types.
2549 (value_sub): Ditto.
2550 (value_equal): Ditto.
2551 (value_less): Ditto.
2552 (value_neg): Ditto.
2553 (value_complement): Ditto.
2554 (value_binop): Simplify slightly by using is_integral_type and
2555 eliminiating unnecessary COERCE_ENUMs.
2556
2557 2004-03-31 Andrew Cagney <cagney@redhat.com>
2558
2559 * frame.h (frame_unwind_id): Declare.
2560 * frame.c (frame_unwind_id): New function.
2561 (get_prev_frame_1): New function.
2562 (frame_debug_got_null_frame): New function.
2563 (get_prev_frame): Use frame_debug_got_null_frame. Move unwind
2564 code proper to prev_frame, update description.
2565 * infrun.c (step_over_function): Use frame_unwind_id.
2566
2567 2004-04-31 J. Brobecker <brobecker@gnat.com>
2568
2569 * hppa-tdep.c (hppa32_push_dummy_call): Set the Stack Pointer.
2570 (hppa64_push_dummy_call): Likewise.
2571
2572 2004-03-30 Jim Blandy <jimb@redhat.com>
2573
2574 From Ulrich Weigand:
2575 * utils.c (query): Do not use a va_list variable multiple times.
2576
2577 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
2578
2579 * Makefile.in (linux_nat_h): Update dependencies.
2580 * configure.in: Check for <gnu/libc-version.h>.
2581 * configure: Regenerate.
2582 * config.in: Regenerate.
2583 * linux-nat.h: Include "target.h". Add waitstatus field to
2584 struct lwp_info.
2585 * lin-lwp.c (add_lwp): Initialize waitstatus.kind.
2586 (lin_lwp_attach_lwp): Don't attach to LWPs we have already attached
2587 to.
2588 (lin_lwp_handle_extended): New function. Handle clone events.
2589 (wait_lwp): Use lin_lwp_handle_extended. Update comment about
2590 thread exit events.
2591 (child_wait): Handle clone events.
2592 (lin_lwp_wait: Use lin_lwp_handle_extended and handle clone events.
2593 * linux-nat.c (linux_enable_event_reporting): Turn on
2594 PTRACE_O_TRACECLONE.
2595 (linux_handle_extended_wait): Handle clone events.
2596 * thread-db.c: Include <gnu/libc-version.h>.
2597 (struct private_thread_info): Add dying flag.
2598 (enable_thread_event_reporting): Enable TD_DEATH for glibc 2.2 and
2599 higher.
2600 (attach_thread): Update comments. Handle dying threads.
2601 (detach_thread): Set the dying flag.
2602 (check_event): Always call attach_thread.
2603
2604 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
2605
2606 * mips-tdep.c (mips_pdr_data): New.
2607 (non_heuristic_proc_desc): Use objfile_data and set_objfile_data.
2608 (_initialize_mips_tdep): Initialize mips_pdr_data.
2609
2610 2004-03-29 Corinna Vinschen <vinschen@redhat.com>
2611
2612 * minsyms.c (install_minimal_symbols): Move dropping leading
2613 char from linkage name from here...
2614 (prim_record_minimal_symbol_and_info): ...to here. Simplify
2615 test for "__gnu_compiled*" symbols.
2616
2617 2004-03-28 Jim Blandy <jimb@redhat.com>
2618
2619 * rs6000-tdep.c (skip_prologue): Recognize moves from argument
2620 registers to temp register r0 and byte stores as prologue
2621 instructions.
2622
2623 2004-03-28 Andrew Cagney <cagney@redhat.com>
2624
2625 * PROBLEMS (Stack backtraces): Rewrite. Remove reference to
2626 arm*-*-*.
2627
2628 2004-03-28 Stephane Carrez <stcarrez@nerim.fr>
2629
2630 * tui/tui-regs.c (tui_show_registers): Make sure the TUI is active
2631 and switch the layout to force a display of register window.
2632
2633 2004-02-26 J. Brobecker <brobecker@gnat.com>
2634
2635 * amd64-tdep.c (amd64_classify): make RANGE_TYPE objects be part
2636 of the INTEGER class.
2637
2638 2004-03-26 Jim Blandy <jimb@redhat.com>
2639
2640 * ppc-linux-tdep.c (ppc_linux_init_abi): Long doubles are eight
2641 bytes long on PPC GNU/Linux.
2642
2643 2004-03-26 David Carlton <carlton@kealia.com>
2644
2645 * PROBLEMS: Refer to gdb/1588 instead of gdb/826.
2646
2647 2004-03-25 Andrew Cagney <cagney@redhat.com>
2648
2649 * PROBLEMS: Add general section titles, remove references to
2650 specific releases.
2651
2652 2004-03-25 Daniel Jacobowitz <drow@mvista.com>
2653
2654 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE): Define to
2655 INT_REGISTER_SIZE.
2656 (arm_linux_push_arguments): Use TARGET_DOUBLE_BIT instead of
2657 FP_REGISTER_VIRTUAL_SIZE.
2658 * arm-tdep.c (arm_make_sigtramp_cache): Use register_size instead
2659 of DEPRECATED_REGISTER_RAW_SIZE.
2660 (arm_register_type): Add gdbarch argument.
2661 (arm_register_raw_size, arm_register_virtual_size): Delete.
2662 (arm_register_byte, arm_extract_return_value)
2663 (arm_store_return_value, arm_get_longjmp_target): Update references
2664 to INT_REGISTER_RAW_SIZE and FP_REGISTER_RAW_SIZE.
2665 (arm_gdbarch_init): Likewise. Don't set
2666 deprecated_register_raw_size, deprecated_register_virtual_size,
2667 deprecated_max_register_raw_size,
2668 deprecated_max_register_virtual_size, or
2669 deprecated_max_register_virtual_type. Do set register_type.
2670 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE)
2671 (ARM_MAX_REGISTER_VIRTUAL_SIZE, INT_REGISTER_VIRTUAL_SIZE)
2672 (FP_REGISTER_VIRTUAL_SIZE): Delete.
2673 (INT_REGISTER_RAW_SIZE): Rename to INT_REGISTER_SIZE.
2674 (FP_REGISTER_RAW_SIZE): Rename to FP_REGISTER_SIZE.
2675 * arm-linux-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Define to
2676 INT_REGISTER_SIZE.
2677 * remote-rdp.c (remote_rdp_fetch_register): Use MAX_REGISTER_SIZE.
2678 (remote_rdp_store_register): Likewise.
2679
2680 2004-03-24 Daniel Jacobowitz <drow@mvista.com>
2681
2682 * Makefile.in (mips-linux-tdep.o): Update dependencies.
2683 * mips-tdep.c (mips_gdbarch_init): Move frame predicates
2684 to after osabi initialization.
2685 * mips-linux-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
2686 (mips_linux_o32_sigframe_init, mips_linux_n32n64_sigframe_init): New
2687 functions.
2688 (mips_linux_o32_sigframe, mips_linux_o32_rt_sigframe)
2689 (mips_linux_n32_rt_sigframe, mips_linux_n64_rt_sigframe): New
2690 variables.
2691 (mips_linux_init_abi): Append signal trampoline unwinders.
2692
2693 2004-03-24 Andrew Cagney <cagney@redhat.com>
2694
2695 * tramp-frame.h (TRAMP_SENTINEL_INSN): Define, document.
2696 * tramp-frame.c: Include "gdb_assert.h".
2697 (tramp_frame_start): Use TRAMP_SENTINEL_INSN. Use ULONGEST and
2698 correct sizeof.
2699 (tramp_frame_append): Validate the tramp frame's instructions.
2700 * Makefile.in (tramp-frame.o): Update dependencies.
2701
2702 2004-03-23 Andrew Cagney <cagney@redhat.com>
2703
2704 * trad-frame.h (trad_frame_set_reg_addr): Declare.
2705
2706 2004-03-23 Andrew Cagney <cagney@redhat.com>
2707
2708 * MAINTAINERS (Past Maintainers): Add Mark Salter and Fernando
2709 Nasser as past testsuite/lib/ (and other) maintainers.
2710
2711 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
2712
2713 * infcmd.c (attach_command): Reread symbols if we already have
2714 an exec file.
2715
2716 2004-03-23 Andrew Cagney <cagney@redhat.com>
2717
2718 * rs6000-tdep.c (frame_get_saved_regs): Delete unused function.
2719
2720 2004-03-23 Andrew Cagney <cagney@redhat.com>
2721
2722 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): Deprecate.
2723 * gdbarch.h, gdbarch.c: Re-generate.
2724 * i386obsd-tdep.c (i386obsd_init_abi): Update.
2725 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
2726 * i386bsd-tdep.c (i386bsd_init_abi): Update.
2727 * config/vax/tm-vaxbsd.h (DEPRECATED_SIGTRAMP_END)
2728 (DEPRECATED_SIGTRAMP_START): Update.
2729 * config/m68k/tm-nbsd.h (DEPRECATED_SIGTRAMP_END)
2730 (DEPRECATED_SIGTRAMP_START): Update.
2731 * blockframe.c (find_pc_sect_partial_function): Update.
2732 * arch-utils.c (legacy_pc_in_sigtramp): Update.
2733
2734 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
2735
2736 * remote.c (remote_open_1): Reopen the exec file and reread symbols
2737 if necessary.
2738
2739 2004-03-23 Andrew Cagney <cagney@redhat.com>
2740
2741 * gdbarch.sh (PC_IN_SIGTRAMP): Change to a function with
2742 predicate, deprecate.
2743 * gdbarch.h, gdbarch.c: Re-generate.
2744 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
2745 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
2746 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Update.
2747 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
2748 * alphanbsd-tdep.c (alphanbsd_init_abi): Update.
2749 * amd64-linux-tdep.c (amd64_linux_init_abi): Update.
2750 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Update.
2751 * amd64nbsd-tdep.c (amd64nbsd_init_abi): Update.
2752 * amd64obsd-tdep.c (amd64obsd_init_abi): Update.
2753 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Update.
2754 * blockframe.c (find_pc_partial_function): Update.
2755 * breakpoint.c (bpstat_what): Update.
2756 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update.
2757 * frv-linux-tdep.c (frv_linux_init_abi): Update.
2758 * frv-tdep.c (frv_sigtramp_frame_sniffer): Update.
2759 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Update.
2760 * i386-interix-tdep.c (i386_interix_init_abi): Update.
2761 * i386-linux-tdep.c (i386_linux_init_abi): Update.
2762 * i386-nto-tdep.c (i386nto_init_abi): Update.
2763 * i386-sol2-tdep.c (i386_sol2_init_abi): Update.
2764 * i386-tdep.c (i386_sigtramp_frame_sniffer)
2765 (i386_svr4_init_abi, i386_go32_init_abi, i386_gdbarch_init): Update.
2766 * i386bsd-tdep.c (i386bsd_init_abi): Update.
2767 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
2768 * i386obsd-tdep.c (i386obsd_init_abi): Update.
2769 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Update.
2770 * infrun.c (pc_in_sigtramp): Update.
2771 * m68k-tdep.c (m68k_sigtramp_frame_sniffer): Update.
2772 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
2773 * mips-tdep.c (mips_gdbarch_init): Update.
2774 * mipsnbsd-tdep.c (mipsnbsd_init_abi): Update.
2775 * ppc-linux-tdep.c: Update comment.
2776 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Update.
2777 * shnbsd-tdep.c (shnbsd_init_abi): Update.
2778 * sparc-linux-tdep.c (sparc32_linux_init_abi): Update.
2779 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Update.
2780 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Update.
2781 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Update.
2782 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Update.
2783 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Update.
2784 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Update.
2785 * sparcobsd-tdep.c (sparc32obsd_init_abi): Update.
2786
2787 2004-03-23 Andrew Cagney <cagney@redhat.com>
2788
2789 * tramp-frame.h, tramp-frame.h: New files.
2790 * Makefile.in (SFILES, tramp_frame_h, COMMON_OBS, tramp-frame.o):
2791 Update rules to include "tramp-frame.h" and "tramp-frame.c".
2792
2793 * Makefile.in: Update all dependencies.
2794
2795 2004-03-23 Andrew Cagney <cagney@redhat.com>
2796
2797 * Makefile.in (trad_frame_h): Add $(frame_h).
2798 * trad-frame.h: Update copyright. Include "frame.h".
2799 (struct trad_frame_cache, trad_frame_cache_zalloc): Declare.
2800 (trad_frame_set_id, trad_frame_get_id): Declare.
2801 (trad_frame_set_reg_addr, trad_frame_get_register): Declare.
2802 * trad-frame.c: Update copyright.
2803 (struct trad_frame_cache): Define.
2804 (trad_frame_cache_zalloc): New function.
2805 (trad_frame_set_id, trad_frame_get_id): New functions.
2806 (trad_frame_set_reg_addr, trad_frame_get_register): New functions.
2807
2808 2004-03-22 Andrew Cagney <cagney@redhat.com>
2809
2810 * s390-tdep.c (struct s390_stub_unwind_cache): Rename
2811 s390_pltstub_unwind_cache.
2812 (s390_stub_frame_unwind_cache): Rename
2813 s390_pltstub_frame_unwind_cache.
2814 (s390_stub_frame_this_id): Rename s390_pltstub_frame_this_id.
2815 (s390_stub_frame_prev_register): Rename
2816 s390_pltstub_frame_prev_register.
2817 (s390_stub_frame_unwind): Rename s390_pltstub_frame_unwind.
2818 (s390_stub_frame_sniffer): Rename s390_stub_frame_sniffer.
2819
2820 From Ulrich Weigand:
2821 * s390-tdep.c (s390_pltstub_frame_sniffer): Handle invalid function
2822 pointer calls like PLT calls.
2823
2824 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
2825
2826 * mips-tdep.c (non_heuristic_proc_desc): Search using the specified
2827 PC rather than the partial function start address. Use the start
2828 address to sanity check the found PDR.
2829
2830 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
2831
2832 * lin-lwp.c (lin_lwp_wait): Pass the LWP ID to
2833 linux_handle_extended_wait.
2834
2835 2004-03-22 Andrew Cagney <cagney@redhat.com>
2836
2837 * rs6000-tdep.c (frame_initial_stack_address): Delete unused
2838 function.
2839
2840 * frame.h (generic_pop_current_frame): Delete declaration.
2841 (deprecate_pop_dummy_frame): Deprecate
2842 generic_pop_dummy_frame.
2843 * dummy-frame.c (deprecated_pop_dummy_frame): Update.
2844 (generic_pop_current_frame): Delete function.
2845 * mn10300-tdep.c (mn10300_pop_frame): Eliminate call to
2846 generic_pop_current_frame.
2847 * v850-tdep.c (v850_pop_frame): Update.
2848 * mcore-tdep.c (mcore_pop_frame): Update.
2849 * sh64-tdep.c (sh64_pop_frame): Update.
2850 * h8300-tdep.c (h8300_pop_frame): Update.
2851
2852 2004-03-22 Andrew Cagney <cagney@redhat.com>
2853
2854 * frame.h (deprecated_pc_in_call_dummy): Rename
2855 generic_pc_in_call_dummy.
2856 * dummy-frame.h (pc_in_dummy_frame): Delete declaration.
2857 * dummy-frame.c (deprecated_pc_in_call_dummy): Rename
2858 generic_pc_in_call_dummy.
2859 (pc_in_dummy_frame): Make static.
2860 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Update.
2861 * gdbarch.h, gdbarch.c: Re-generate.
2862 * dummy-frame.c (dummy_frame_sniffer): Simplify.
2863 * frame.c (frame_type_from_pc): Call deprecated_pc_in_call_dummy.
2864 (legacy_get_prev_frame): Ditto.
2865 * inferior.h: Delete reference to generic_pc_in_call_dummy in
2866 comment.
2867
2868 2004-03-21 Andrew Cagney <cagney@redhat.com>
2869
2870 * inferior.h (deprecated_pc_in_call_dummy_at_entry_point): Delete
2871 declaration and out-of-date comment.
2872 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
2873 Delete function.
2874 * mn10300-tdep.c (mn10300_gdbarch_init): Do not set
2875 deprecated_pc_in_call_dummy.
2876
2877 * infrun.c (handle_inferior_event): For non legacy frames, use the
2878 frame ID and frame type to identify a signal trampoline. Update
2879 comments.
2880
2881 2004-03-21 Nathan J. Williams <nathanw@wasabisystems.com>
2882
2883 * mipsnbsd-tdep.c: Update copyright. Include "mips-tdep.h".
2884 * Makefile.in (mipsnbsd-tdep.o): Update dependencies.
2885
2886 2004-03-21 Andrew Cagney <cagney@redhat.com>
2887
2888 * frame-unwind.h: Update copyright.
2889 (struct frame_data): Add opaque declaration.
2890 (frame_sniffer_ftype): Declare.
2891 (struct frame_unwind): Add "unwind_data" and "sniffer".
2892 (frame_unwind_register_unwinder): Declare.
2893 (frame_unwind_find_by_frame): Add parameter "this_cache".
2894 * frame.c (get_frame_id, create_new_frame, legacy_get_prev_frame)
2895 (legacy_get_prev_frame, legacy_get_prev_frame)
2896 (get_frame_type): Pass the prologue_cache to
2897 frame_unwind_find_by_frame.
2898 * frame-unwind.c (struct frame_unwind_table_entry): Add field
2899 "unwinder".
2900 (frame_unwind_register_unwinder): New function.
2901 (frame_unwind_find_by_frame): Handle an unwind sniffer.
2902
2903 2004-03-20 Paul Hilfinger <hilfingr@nile.gnat.com>
2904
2905 * bcache.c (print_percentage): Use floating point to avoid
2906 incorrect results when portion*100 overflows.
2907
2908 2004-03-19 Kevin Buettner <kevinb@redhat.com>
2909
2910 * ppc_tdep.h (ppc_linux_frame_saved_pc)
2911 (ppc_linux_init_extra_frame_info)
2912 (ppc_linux_frameless_function_invocation)
2913 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain)
2914 (rs6000_frame_saved_pc, rs6000_init_extra_frame_info)
2915 (rs6000_frameless_function_invocation, rs6000_frame_init_saved_regs)
2916 (rs6000_frame_chain): Delete declarations.
2917 * ppc-linux-tdep.c (ppc_linux_frame_saved_pc)
2918 (ppc_linux_init_extra_frame_info)
2919 (ppc_linux_frameless_function_invocation)
2920 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain): Delete.
2921 (ppc_linux_init_abi): Remove registration of above deleted functions.
2922 * rs6000-tdep.c (rs6000_init_extra_frame_info)
2923 (rs6000_frame_init_saved_regs, rs6000_init_frame_pc_first)
2924 (rs6000_frame_args_address, rs6000_saved_pc_after_call)
2925 (rs6000_pop_frame, rs6000_frameless_function_invocation)
2926 (rs6000_frame_saved_pc, rs6000_frame_chain): Delete.
2927 (rs6000_gdbarch_init): Remove registration of above deleted functions.
2928 Use rs6000_unwind_pc(), rs6000_frame_sniffer(),
2929 rs6000_unwind_dummy_id(), and rs6000_frame_base_sniffer() for
2930 frame management for all OSABIs.
2931
2932 2004-03-19 Andrew Cagney <cagney@redhat.com>
2933
2934 Committed by Kevin Buettner <kevinb@redhat.com>.
2935
2936 * ppc-linux-tdep.c: Include "trad-frame.h", and "frame-unwind.h".
2937 Update copyright.
2938 (struct ppc_linux_sigtramp_cache, ppc_linux_sigtramp_cache)
2939 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
2940 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
2941 (ppc_linux_init_abi): Add both 32- and 64-bit signal trampoline
2942 unwinders. #ifdef legacy frame code.
2943 * rs6000-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
2944 "frame-base.h".
2945 (rs6000_unwind_pc, rs6000_unwind_dummy_id)
2946 (struct rs6000_frame_cache, rs6000_frame_cache)
2947 (rs6000_frame_this_id, rs6000_frame_prev_register)
2948 (rs6000_frame_sniffer, rs6000_frame_unwind)
2949 (rs6000_frame_base_address, rs6000_frame_base_sniffer)
2950 (rs6000_frame_base): Implement a traditional frame unwinder.
2951 (rs6000_gdbarch_init): When unknown, NetBSD, or GNU/Linux use the
2952 frame unwinder.
2953
2954 2004-03-19 Kevin Buettner <kevinb@redhat.com>
2955
2956 * breakpoint.c (adjust_breakpoint_address): Don't adjust
2957 breakpoint address for watchpoints or the catch eventpoints.
2958 Add new paramter ``bptype''. Adjust all callers.
2959
2960 2004-03-19 Andrew Cagney <cagney@redhat.com>
2961
2962 * config/pa/tm-hppa.h (GDB_TARGET_IS_HPPA): Delete unused macro.
2963
2964 * PROBLEMS: Delete note that ARM does not use frame code, problem
2965 fixed.
2966
2967 2004-03-18 Andrew Cagney <cagney@redhat.com>
2968
2969 * stack.c (return_command): Delete code wrapped in #ifdef
2970 DEPRECATED_CALL_DUMMY_HAS_COMPLETED, macro no longer defined.
2971
2972 * rs6000-tdep.c (skip_prologue): Record only the first LR save.
2973
2974 2004-03-18 Andrew Cagney <cagney@redhat.com>
2975
2976 * config/mips/tm-nbsd.h: Replace IN_SIGTRAMP with
2977 DEPRECATED_IN_SIGTRAMP.
2978 * config/powerpc/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
2979 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP) Ditto.
2980 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Ditto.
2981 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Ditto.
2982 * config/ia64/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
2983 * config/ia64/tm-aix.h (DEPRECATED_IN_SIGTRAMP): Ditto.
2984 * config/arm/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
2985 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Ditto.
2986 * arch-utils.c (legacy_pc_in_sigtramp): Ditto.
2987 * arch-utils.h: Remove reference to IN_SIGTRAMP in comment.
2988
2989 2004-03-18 Andrew Cagney <cagney@redhat.com>
2990
2991 * frame-base.c: Update copyright. Include "gdb_obstack.h".
2992 (struct frame_base_table_entry): Define.
2993 (struct frame_base_table): Re-implement as a linked list.
2994 (frame_base_init): Re-implement.
2995 (frame_base_table): Delete function.
2996 (append_predicate): Delete function.
2997 (frame_base_append_sniffer): Update.
2998 (frame_base_set_default): Update.
2999 (frame_base_find_by_frame): Update.
3000 (_initialize_frame_base): Use gdbarch_data_register_pre_init.
3001 * Makefile.in (frame-base.o): Update dependencies.
3002
3003 2004-03-17 Andrew Cagney <cagney@redhat.com>
3004
3005 * frame.c (legacy_get_prev_frame): Pass correct frame to
3006 frame_unwind_find_by_frame.
3007
3008 2004-03-17 David Carlton <carlton@kealia.com>
3009
3010 * NEWS: Mention C++ nested types and namespaces
3011
3012 2004-03-16 Michael Chastain <mec.gnu@mindspring.com>
3013
3014 * PROBLEMS: Add section headers, "Regressions since gdb 6.0"
3015 and "Regressions since gdb 5.3.". Add known regressions since
3016 gdb 6.0.
3017
3018 2004-03-16 David Carlton <carlton@kealia.com>
3019
3020 * dwarf2read.c (process_structure_scope): Process children even
3021 when we're a declaration.
3022
3023 2004-03-16 Andrew Cagney <cagney@redhat.com>
3024
3025 * symtab.h (find_pc_sect_partial_function): Delete declaration.
3026 * blockframe.c (find_pc_partial_function)
3027 (find_pc_sect_partial_function): Merge into a single
3028 find_pc_partial_function.
3029
3030 2004-03-16 Mark Kettenis <kettenis@gnu.org>
3031
3032 * i386bsd-nat.c: s/regno/regnum/g.
3033 (fetch_inferior_registers): Use I386_ST0_REGNUM instead of
3034 FP0_REGNUM.
3035 (store_inferior_registers): Likewise.
3036
3037 2004-03-16 Mark Kettenis <kettenis@gnu.org>
3038
3039 * i386bsd-nat.c (fill_fpregset): Call i387_collect_fsave instead
3040 of i387_fill_fsave.
3041 (store_inferior_registers): Call i387_collect_fsave and
3042 i387_collect_fxsave instead of i387_fill_fsave and
3043 i387_fill_fxsave.
3044
3045 2004-03-15 Andrew Cagney <cagney@redhat.com>
3046
3047 * Makefile.in (frame-unwind.o): Update dependencies.
3048 * frame-unwind.c: Include "gdb_obstack.h".
3049 (frame_unwind_init): Replace "gdbarch" parameter with an "obstack"
3050 parameter.
3051 (append_predicate): Delete function.
3052 (struct frame_unwind_table_entry): New structure.
3053 (struct frame_unwind_table): Replace "sniffer" with "head" and
3054 "tail".
3055 (frame_unwind_append_sniffer): Update.
3056 (frame_unwind_find_by_frame): Update.
3057 (_initialize_frame_unwind): Registe frame_unwind_init using
3058 gdbarch_data_register_pre_init.
3059
3060 2004-03-15 Mark Kettenis <kettenis@gnu.org>
3061
3062 * i386bsd-nat.c: Update copyright year.
3063 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Undefine and then
3064 define unconditionally.
3065
3066 2004-03-15 Mark Kettenis <kettenis@gnu.org>
3067
3068 * i387-tdep.h (i387_collect_fsave): New prototype.
3069 * i387-tdep.c (i387_collect_fsave): New function containing most
3070 of the code from i387_fill_fsave.
3071 (i387_fill_fsave): Call i387_collect_fsave.
3072
3073 2004-03-15 Mark Kettenis <kettenis@gnu.org>
3074
3075 * i386-linux-tdep.c: Update copyright year.
3076 (i386_linux_svr4_fetch_link_map_offsets): Remove function.
3077 (i386_linux_init_abi): Set solib_svr4_fetch_link_maop_offsets to
3078 svr4_ilp32_link_map_offsets instead of
3079 i386_linux_svr4_fetch_link_map_offsets.
3080
3081 2004-03-15 David Carlton <carlton@kealia.com>
3082
3083 Fix for PR c++/1553:
3084 * dwarf2read.c (read_structure_type): Determine type name by
3085 calling determine_class_name.
3086 (determine_class_name): New.
3087 (determine_prefix): Look at TYPE_TAG_NAME and call
3088 determine_class_name when appropriate.
3089 (determine_prefix_aux, class_name): Delete.
3090 (read_namespace): Set die->type.
3091
3092 2004-03-15 Kevin Buettner <kevinb@redhat.com>
3093
3094 * breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
3095 unused macro definition. The definition in target.h (or perhaps
3096 elsewhere) takes precedence.
3097
3098 2004-03-15 Andrew Cagney <cagney@redhat.com>
3099
3100 * ppc-tdep.h: Update copyright.
3101 (ppc_linux_supply_gregset, ppc_linux_supply_fpregset): Change
3102 function signatures to match "regsets.h".
3103 * ppc-linux-tdep.c: Include "regset.h".
3104 (ELF_GREGSET_SIZE): Delete.
3105 (right_supply_register): New function.
3106 (ppc_linux_supply_fpregset, ppc_linux_supply_gregset): Rewrite
3107 using right_supply_register.
3108 (ppc32_linux_supply_gregset, ppc64_linux_supply_gregset): New
3109 functions.
3110 (ppc64_linux_gregset, ppc32_linux_gregset): Define.
3111 (ppc_linux_init_abi): Register ppc_linux_regset_from_core_section.
3112 (_initialize_ppc_linux_tdep): Do not register
3113 ppc_linux_regset_core_fns.
3114 (ppc_linux_regset_from_core_section): Replace
3115 fetch_core_registers.
3116 (ppc_linux_regset_core_fns): Delete.
3117 * ppc-linux-nat.c: (right_fill_reg): New function.
3118 (supply_gregset): Update call to ppc_linux_supply_gregset.
3119 (fill_gregset): Clear the register set, use right_fill_reg.
3120 (supply_fpregset): Update call to ppc_linux_supply_fpregset.
3121 (fill_fpregset): Use right_fill_reg, correctly compute FP offsets.
3122
3123 * rs6000-tdep.c (rs6000_register_virtual_type): Make registers
3124 unsigned.
3125
3126 2004-03-15 Andrew Cagney <cagney@redhat.com>
3127
3128 * gdbarch.sh (gdbarch_data_pre_init_fytpe)
3129 (gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
3130 (gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
3131 and register_gdbarch_data.
3132 (deprecated_set_gdbarch_data): Rename set_gdbarch_data.
3133 (struct gdbarch_data): Replace "init" by "pre_init" and
3134 "post_init".
3135 * gdbarch.h, gdbarch.c: Re-generate.
3136 * dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
3137 with"obstack", use OBSTACK_ZALLOC.
3138 (dwarf2_frame_ops): Delete.
3139 (dwarf2_frame_set_init_reg): Use gdbarch_data.
3140 (dwarf2_frame_init_reg): Use gdbarch_data.
3141 (_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
3142 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets)
3143 (_initialize_svr4_solib): Update.
3144 * user-regs.c (_initialize_user_regs): Update.
3145 * reggroups.c (_initialize_reggroup): Update.
3146 * regcache.c (_initialize_regcache): Update.
3147 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
3148 * libunwind-frame.c (_initialize_libunwind_frame): Update.
3149 * gnu-v3-abi.c (init_gnuv3_ops): Update.
3150 * frame-unwind.c (_initialize_frame_unwind): Update.
3151 * frame-base.c (_initialize_frame_base): Update.
3152 * user-regs.c (user_reg_add): Update.
3153 * reggroups.c (reggroup_add): Update.
3154 * mips-linux-tdep.c (set_mips_linux_register_addr): Update.
3155 * libunwind-frame.c (libunwind_frame_set_descr): Update.
3156 * frame-unwind.c (frame_unwind_append_sniffer): Update.
3157 * frame-base.c (frame_base_table): Update.
3158 * remote.c (_initialize_remote): Update.
3159 * gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
3160
3161 2004-03-15 Andrew Cagney <cagney@redhat.com>
3162
3163 * cris-tdep.c (bfd_lookup_symbol): Delete unused function.
3164
3165 2004-03-15 Kevin Buettner <kevinb@redhat.com>
3166
3167 * Makefile.in (frv-linux-tdep.o): Add dependencies.
3168 * frv-linux-tdep.c: New file.
3169 * frv-tdep.c (struct gdbarch_tdep): Add new field
3170 ``sigcontext_reg_addr''.
3171 (frv_set_sigcontext_reg_addr, frv_sigtramp,frame_cache)
3172 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
3173 (frv_sigramp_frame_sniffer): New functions.
3174 (frv_sigtramp_frame_unwind): New static global.
3175 (frv_gdbarch_init): Hook in ABI-specific overrides. Hook up frame
3176 sniffers.
3177 * frv-tdep.h (frv_set_sigcontext_reg_addr): New function.
3178 * config/frv/frv.mt (TDEPFILES): Add frv-linux-tdep.o.
3179
3180 2004-03-15 Kevin Buettner <kevinb@redhat.com>
3181
3182 * frv-tdep.c (frv_analyze_prologue): Terminate prologue scan,
3183 but not via a call to error(), when unable to read memory.
3184
3185 2004-03-15 Kevin Buettner <kevinb@redhat.com>
3186
3187 * frv-tdep.c (frv_call_dummy_words): Delete.
3188 (frv_frame_unwind_cache): Delete unused variable, ``prev_sp''.
3189
3190 2004-03-15 Andrew Cagney <cagney@redhat.com>
3191
3192 * infrun.c (handle_step_into_function, step_over_function): Only
3193 update and use STEP_FRAME_ID when the system is using legacy
3194 frames. Update comments.
3195
3196 2004-03-14 Mark Kettenis <kettenis@gnu.org>
3197
3198 * amd64-linux-tdep.h: Remove file.
3199 * amd64-linux-tdep.c: Don't include "inferior.h" and
3200 "amd64-linux-tdep.h". Include "frame.h" and "solib-svr4.h".
3201 (USER_R15, USER_R14, USER_R13, USER_R12, USER_RBP, USER_RBX)
3202 (USER_R11, USER_R10, USER_R9, USER_R8, USER_RAX, USER_RCX)
3203 (USER_RDX, USER_RSI, USER_RDI, USER_RIP, USER_CS, USER_EFLAGS)
3204 (USER_RSP, USER_SS, USER_DS, USER_ES, USER_FS, USER_GS): Remove
3205 macros.
3206 (user_to_gdb_regmap): Remove variable.
3207 (amd64_linux_gregset_reg_offset): New variable.
3208 (amd64_core_fns): Remove variable.
3209 (fetch_core_registers): Remove function.
3210 (amd64_linux_supply_gregset, amd64_linux_fill_gregset): Remove
3211 functions.
3212 (_initialize_amd64_linux_tdep): Don't set add_core_fns.
3213 * amd64-linux-nat.c: Don't include "amd64-linux-tdep.h".
3214 * Makefile.in (amd64_linux_tdep_h): Remove.
3215 (amd64-linux-nat.o): Update dependencies.
3216 (amd64-linux-tdep.o): Update dependencies.
3217
3218 * amd64-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
3219 (fetch_regs, fetch_fpregs, store_regs, store_fpregs): Remove
3220 functions.
3221 (fetch_inferior_registers, store_inferior_registers): Rewrite.
3222
3223 * amd64-tdep.h (amd64_fill_fxsave): Remove prototype.
3224 * amd64-tdep.c (amd64_fill_fxsave): Remove function.
3225
3226 2004-03-14 Daniel Jacobowitz <drow@mvista.com>
3227
3228 * dwarf2read.c (read_structure_type): Rename from
3229 read_structure_scope. Don't create a symbol or call process_die.
3230 Return immediately if die->type is set. Call read_type_die before
3231 dwarf2_add_member_fn.
3232 (process_structure_scope): New function.
3233 (read_enumeration_type, process_enumeration_scope): New functions,
3234 broken out from read_enumeration. Don't create the enumeration
3235 type if it has already been created.
3236 (read_enumeration): Removed.
3237 (process_die): Call read_structure_type, process_structure_scope,
3238 read_enumeration_type, and process_enumeration_scope. Just call
3239 new_symbol for base and subrange types. Add a comment about other
3240 type dies.
3241 (read_type_die): Call read_enumeration_type.
3242 (add_partial_structure, new_symbol): Update comments.
3243
3244 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
3245
3246 * m68hc11-tdep.c (m68hc11_register_name): Get soft reg information.
3247
3248 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
3249
3250 * tui/tui-win.h (tui_get_cmd_list): Declare.
3251 * tui/tui-win.c (tui_command): New function.
3252 (tui_get_cmd_list): New function.
3253 (_initialize_tui_win): Moved initialization of tui command in
3254 tui_get_cmd_list.
3255
3256 * tui/tui-data.c (init_content_element): Setup new data members.
3257 (init_win_info): Likewise.
3258 (free_content_elements): Free it.
3259 * tui/tui-data.h (struct tui_data_element): Store the register
3260 content to print.
3261 (struct tui_data_info): Keep the current register group.
3262
3263 * tui/tui-layout.c (tui_set_layout): Update call to tui_show_registers.
3264
3265 * tui/tui-regs.h (tui_show_registers): Update prototype.
3266 (tui_toggle_float_regs, tui_calculate_regs_column_count): Remove.
3267 (tui_resize_all): No need to calculate anything for register window.
3268 * tui/tui-regs.c (tui_calculate_regs_column_count): Remove.
3269 (tui_set_register_element, tui_set_general_regs_content): Remove.
3270 (tui_set_special_regs_content): Remove.
3271 (tui_set_general_and_special_regs_content): Remove.
3272 (tui_set_float_regs_content): Remove.
3273 (tui_reg_value_has_changed, tui_get_register_raw_value): Remove.
3274 (tui_set_regs_content): Remove.
3275 (tui_toggle_float_regs, _tui_toggle_float_regs_command): Remove.
3276 (tui_v_show_registers_command_support): Remove.
3277 (tui_show_registers): Use a reggroup to specify the registers to show.
3278 (tui_show_register_group): New function.
3279 (tui_display_registers_from): Compute the layout of register window
3280 and refresh with new API; be sure to delete old register windows.
3281 (tui_check_register_values): Update to use tui_get_register and
3282 tui_display_data.
3283 (tui_display_register): Just refresh the register window part.
3284 (tui_register_format): Format registers and save in tui_data_element.
3285 (tui_get_register): New to combine tui_reg_value_has_changed and
3286 tui_get_register_raw_value; fix to use the new gdb API.
3287 (tui_show_float_command): Renamed tui_reg_float_command.
3288 (tui_show_general_command): Renamed tui_reg_general_command.
3289 (tui_show_special_command): Renamed tui_reg_system_command.
3290 (_initialize_tui_regs): Remove unused commands.
3291
3292 2004-03-13 Mark Kettenis <kettenis@gnu.org>
3293
3294 * NEWS (New native configurations): Mention OpenBSD/amd64.
3295
3296 * config/i386/nm-fbsd.h: Include "config/nm-bsd.h".
3297 (PTRACE_ARG3_TYPE, FETCH_INFERIOR_REGISTERS, ATTACH_DETACH):
3298 Remove defines.
3299 * config/i386/nm-fbsd64.h: Likewise.
3300 * config/i386/nm-obsd.h: Likewise.
3301 * config/sparc/nm-fbsd.h: Likewise. Update copyright year.
3302 * config/alpha/nm-fbsd.h: Likewise. Update copyright year.
3303
3304 2004-03-12 Kevin Buettner <kevinb@redhat.com>
3305
3306 * frv-tdep.c (set_variant_scratch_registers): New function.
3307 * frv-tdep.h (scr0_regnum, scr1_regnum, scr2_regnum, scr3_regnum):
3308 New constants.
3309
3310 From Richard Sandiford <rsandifo@redhat.com>:
3311 * frv-tdep.c (frv_gdbarch_init): Add FR450 support.
3312
3313 2004-03-12 Kevin Buettner <kevinb@redhat.com>
3314
3315 * frv-tdep.c, frv-tdep.h (first_gpr_regnum, sp_regnum, fp_regnum)
3316 (struct_return_regnum, last_gpr_regnum, first_fpr_regnum)
3317 (last_fpr_regnum, pc_regnum, first_spr_regnum, psr_regnum, ccr_regnum)
3318 (cccr_regnum, fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum)
3319 (tbr_regnum, brr_regnum, dbar0_regnum, dbar1_regnum, dbar2_regnum)
3320 (dbar3_regnum, lr_regnum, lcr_regnum, iacc0h_regnum, iacc0l_regnum)
3321 (last_spr_regnum, frv_num_regs, first_pseudo_regnum, iacc0_regnum)
3322 (last_pseudo_regnum, frv_num_pseudo_regs): Move constant (enum)
3323 definitions from frv-tdep.c to frv-tdep.h.
3324
3325 2004-03-12 Kevin Buettner <kevinb@redhat.com>
3326
3327 Add shared library support for FR-V FDPIC ABI:
3328 * Makefile.in (solib-frv.o): Add dependencies.
3329 * frv-tdep.c (find_func_descr, frv_convert_from_func_ptr_addr):
3330 New functions.
3331 (frv_push_dummy_call): Add support for FDPIC ABI.
3332 (frv_gdbarch_init): Call set_gdbarch_convert_from_func_ptr_addr()
3333 for FDPIC ABI.
3334 * frv-tdep.h (frv_fdpic_find_global_pointer): Declare.
3335 (frv_fdpic_find_canonical_descriptor): Declare.
3336 * solib-frv.c: New file.
3337 * config/frv/frv.mt (TDEPFILES): Add solib.o and solib-frv.o.
3338 * config/frv/tm-frv.h (solib.h): Include.
3339
3340 2004-03-12 Kevin Buettner <kevinb@redhat.com>
3341
3342 * Makefile.in (elf_frv_h, frv_tdep_h): Define.
3343 (frv-tdep.o): Update dependencies.
3344 * frv-tdep.h: New file.
3345 * frv-tdep.c (elf-bfd.h, elf/frv.h, osabi.h, frv-tdep.h): Include.
3346 (fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum): New
3347 constants.
3348 (struct gdbarch_tdep): Add new member ``frv_abi''.
3349 (frv_abi, frv_fdpic_loadmap_addresses, set_variant_abi_fdpic): New
3350 functions.
3351 (new_variant): Set ``frv_abi'' field.
3352 (gdb_arch_init): Detect FDPIC executables.
3353
3354 2004-03-12 Mark Kettenis <kettenis@gnu.org>
3355
3356 * solib-svr4.h: Change SOLIB_SVR4 wrapper into SOLIB_SVR4_H
3357 wrapper.
3358
3359 2004-03-11 Andrew Cagney <cagney@redhat.com>
3360
3361 * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper.
3362
3363 2004-03-11 Kevin Buettner <kevinb@redhat.com>
3364
3365 * solist.h (master_so_list): New function.
3366 * solib.c (master_so_list): Likewise.
3367 * solib-svr4.c (enable_break): Iterate over so_list entries
3368 obtained from master list instead of entries obtained directly
3369 via svr4_current_sos().
3370
3371 2004-03-10 Ben Elliston <bje@gnu.org>
3372
3373 * MAINTAINERS: Update my mail address.
3374
3375 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com>
3376
3377 * remote-m32r-sdi.c: Support hardware watchpoint.
3378
3379 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
3380
3381 * user-regs.c: Update copyright years.
3382 (struct user_regs): Rename to gdb_user_regs.
3383 (append_user_reg, builtin_user_regs, user_regs_init)
3384 (user_reg_add, user_reg_map_name_to_regnum)
3385 (usernum_to_user_reg): Update.
3386
3387 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
3388
3389 * dwarf2read.c (skip_leb128, peek_die_abbrev, skip_one_die)
3390 (skip_children): New functions.
3391 (locate_pdi_sibling): Call skip_children.
3392
3393 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
3394
3395 * arm-tdep.c (arm_use_struct_convention): Look through typedefs.
3396 * gdbtypes.c (check_typedef): Update comments.
3397
3398 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
3399
3400 * dwarf2read.c (struct comp_unit_head): Remove dwarf2_abbrevs array.
3401 (struct dwarf2_cu): Add abbrev_obstack and dwarf2_abbrevs
3402 pointer. Update comment about comp_unit_head.
3403 (struct abbrev_info): Shorten two int flags.
3404 (dwarf_alloc_abbrev): Take a CU argument.
3405 (dwarf2_build_psymtabs_hard): Call dwarf2_free_abbrev_table
3406 each time through the loop. Update cleanup argument.
3407 (psymtab_to_symtab_1): Update cleanup call.
3408 (dwarf2_read_abbrevs, dwarf2_alloc_abbrev): Allocate on the
3409 abbrev_obstack.
3410 (dwarf2_free_abbrev_table): Renamed from dwarf2_empty_abbrev_table.
3411 Just call obstack_free and clear the pointer.
3412
3413 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
3414
3415 * infrun.c (handle_inferior_event): Remove short-circuit code for
3416 events in a different thread.
3417
3418 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
3419
3420 * target.c (debug_to_xfer_memory): If targetdebug is 1, don't
3421 print the whole transfer.
3422 (initialize_targets): Update description of "set debug target".
3423
3424 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
3425
3426 * arm-tdep.c (thumb_get_next_pc): Handle Thumb BLX.
3427
3428 2004-03-08 Nathan J. Williams <nathanw@wasabisystems.com>
3429
3430 * MAINTAINERS (write after approval): Add myself.
3431
3432 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
3433
3434 * sh-tdep.c (sh_print_registers_info): Use for loop.
3435 Don't skip multiple registers when a float register is encountered.
3436
3437 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
3438
3439 Fix PR tdep/1291.
3440 * sh-tdep.c (sh_analyze_prologue): Align PC relative addressing
3441 to official SH documentation.
3442
3443 2004-03-07 Andrew Cagney <cagney@redhat.com>
3444
3445 * ppc-linux-nat.c (ppc_ptrace_cannot_fetch_store_register): Delete
3446 unused function.
3447
3448 2004-03-07 Daniel Jacobowitz <drow@mvista.com>
3449
3450 * arm-tdep.c (thumb_get_next_pc): Handle BX.
3451 (arm_get_next_pc): Handle BX and BLX.
3452
3453 2004-03-07 Andrew Cagney <cagney@redhat.com>
3454
3455 * hppa-tdep.c: Replace DEPRECATED_FP_REGNUM with HPPA_FP_REGNUM,
3456 FP0_REGNUM with HPPA_FP0_REGNUM, and SP_REGNUM with
3457 HPPA_SP_REGNUM.
3458 (hppa_register_raw_size, hppa_register_byte, hppa_read_fp)
3459 (hppa_target_read_fp): Delete.
3460 (hppa_gdbarch_init): Do not set deprecated register_raw_size,
3461 register_virtual_size, max_register_raw_size,
3462 max_register_virtual_size, register_byte, register_size,
3463 target_read_fp, fp_regnum, and register_bytes. Set register_type
3464 instead of register_virtual_type.
3465 (hppa32_register_type, hppa64_register_type): Replace
3466 hppa32_register_virtual_type and hppa64_register_virtual_type.
3467 * config/pa/tm-hppa.h (HPPA_FP0_REGNUM, HPPA_SP_REGNUM)
3468 (HPPA_FP_REGNUM): Define.
3469
3470 * hppa-tdep.c (hppa_gdbarch_init): Add missing "break".
3471
3472 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO)
3473 (pa_do_registers_info): Delete.
3474 * hppa-tdep.c (pa_do_registers_info, pa_do_strcat_registers_info)
3475 (pa_print_registers, pa_print_fp_reg, pa_strcat_registers)
3476 (pa_strcat_fp_reg, pa_register_look_aside): Delete.
3477
3478 * infcall.c (legacy_push_dummy_code): Delete #ifdef
3479 GDB_TARGET_IS_HPPA code.
3480 * config/pa/tm-hppa.h (DEPRECATED_FIX_CALL_DUMMY)
3481 (hppa_fix_call_dummy, DEPRECATED_CALL_DUMMY_HAS_COMPLETED)
3482 (DEPRECATED_DUMMY_WRITE_SP, CALL_DUMMY): Delete.
3483 * config/pa/tm-hppa64.h (CALL_DUMMY): Delete.
3484 * hppa-tdep.c (hppa_frame_chain, hppa_frame_chain_valid)
3485 (hppa_push_dummy_frame, hppa_pop_frame, hppa_push_arguments)
3486 (hppa_fix_call_dummy, hppa64_stack_align, hppa_frame_saved_pc)
3487 (hppa_init_extra_frame_info, hppa_saved_pc_after_call)
3488 (hppa64_call_dummy_breakpoint_offset, hppa_frame_init_saved_regs)
3489 (hppa_frameless_function_invocation, hppa64_store_return_value)
3490 (hppa_store_struct_return, hppa64_extract_return_value)
3491 (hppa64_use_struct_convention, hppa_frame_find_saved_regs)
3492 (hppa32_call_dummy_length, hppa64_call_dummy_length)
3493 (find_dummy_frame_regs, FUNC_LDIL_OFFSET, FUNC_LDO_OFFSET)
3494 (find_proc_framesize, deposit_21, restore_pc_queue)
3495 (find_return_regnum, pc_in_interrupt_handler, deposit_14)
3496 (rp_saved, pc_in_linker_stub): Delete.
3497
3498 Unconditionally enable 64-bit frame and ABI code.
3499 * hppa-tdep.c (hppa_gdbarch_init): Do not set deprecated
3500 call_dummy_breakpoint_offset, call_dummy_length, stack_align,
3501 push_dummy_frame, fix_call_dummy, push_arguments,
3502 call_dummy_location, extract_return_value, use_struct_convention,
3503 store_return_value, store_struct_return, saved_pc_after_call,
3504 init_frame_pc, frame_init_saved_regs, init_extra_frame_info,
3505 frame_chain, frame_chain_valid, frameless_function_invocation,
3506 frame_saved_pc, and pop_frame.
3507
3508 * hppa-tdep.c: Replace PC_REGNUM with PCOQ_HEAD_REGNUM.
3509 (hppa64_return_value, hppa64_push_dummy_call): Rewrite.
3510 (hppa_gdbarch_init): Do not set PC_REGNUM.
3511
3512 2004-03-06 Mark Kettenis <kettenis@gnu.org>
3513
3514 * config/alpha/tm-fbsd.h: Remove file.
3515 * config/alpha/fbsd.mt: Tweak comment.
3516 (TM_FILE): Set to tm-alpha.h.
3517
3518 2004-03-05 Andrew Cagney <cagney@redhat.com>
3519
3520 * infrun.c (step_over_function): When non-legacy code, and no
3521 step_frame_id, use the unwinder to get the caller's frame ID.
3522
3523 2004-03-05 Mark Kettenis <kettenis@gnu.org>
3524
3525 * i386bsd-tdep.c (_initialize_i386bsd_tdep): Register
3526 i386bsd_core_osabi_sniffer for bfd_arch_i386 instead of
3527 bfd_arch_unknown. Adjust comment.
3528
3529 * i386-nat.c: Fix typo in comment. Re-introduce paranoiac.
3530 * i386obsd-tdep.c: Correct spelling in comment.
3531 * i386nbsd-tdep.c: Correct spelling in comment.
3532 * sparc-tdep.c: Correct spelling in comments.
3533
3534 2004-03-05 David Carlton <carlton@kealia.com>
3535
3536 * cp-namespace.c (cp_lookup_transparent_type_loop): Fix recursion
3537 bug.
3538
3539 2004-03-05 Mark Kettenis <kettenis@gnu.org>
3540
3541 * sparc-tdep.c: Fix typo in comment.
3542
3543 2004-03-04 J. Brobecker <brobecker@gnat.com>
3544
3545 * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
3546
3547 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
3548
3549 * dwarf2read.c: Add comment describing memory lifetimes.
3550 (struct dwarf2_pinfo): Update comment.
3551 (dwarf2_add_field, dwarf2_add_member_fn, read_structure_scope)
3552 (read_enumeration, new_symbol): Don't use obsavestring.
3553
3554 2004-03-04 Mark Kettenis <kettenis@gnu.org>
3555
3556 * amd64-linux-nat.c (fill_fpregset): Call amd64_colletc_fxsave
3557 instead of amd64_fill_fxsave.
3558 * amd64bsd-nat.c (store_inferior_registers): Likewise.
3559 * amd64fbsd-nat.c (fill_fpregset): Likewise.
3560
3561 * sparc-tdep.c (sparc_frame_cache): Don't bail out if %fp is zero.
3562 Reorganize code a bit.
3563
3564 2004-03-04 Orjan Friberg <orjanf@axis.com>
3565
3566 * cris-tdep.c (cris_scan_prologue): Save the frame pointer's offset
3567 when the frame pointer is pushed. Don't set the frame pointer's
3568 address on the stack unless it's actually located there.
3569 Set the SRP's address on the stack correctly when the PC is still in
3570 the prologue.
3571 (cris_return_value): New function.
3572 (cris_gdbarch_init): Clear deprecated store_return_value,
3573 extract_return_value.
3574
3575 2004-03-02 Jim Blandy <jimb@redhat.com>
3576
3577 * stabsread.c (reg_value_complaint): The maximum register number
3578 is one less than the number of registers.
3579
3580 2004-03-02 Andrew Cagney <cagney@redhat.com>
3581
3582 * i386-tdep.h (enum i386_regnum): Add I386_DS_REGNUM,
3583 I386_ES_REGNUM, I386_FS_REGNUM, and I386_GS_REGNUM. Remove
3584 trailing comma and redundant assignment of I386_ST0_REGNUM.
3585 * amd64-nat.c (amd64_collect_native_gregset): Zero-extend the
3586 32-bit segment registers.
3587
3588 2004-03-01 Andrew Cagney <cagney@redhat.com>
3589
3590 * rs6000-tdep.c (rs6000_init_frame_pc_first): Fix compiler error,
3591 use frame_relative_level and get_next_frame.
3592
3593 2004-02-29 Andrew Cagney <cagney@redhat.com>
3594
3595 * rs6000-tdep.c (rs6000_init_frame_pc_first): New function.
3596 (rs6000_gdbarch_init): Set deprecated_init_frame_pc_first.
3597 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST):
3598 Delete macro.
3599
3600 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3601
3602 * inflow.c (terminal_inferior): Don't give up the terminal if we
3603 previously couldn't get the inferior's terminal state.
3604
3605 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
3606
3607 * regcache.c (read_pc_pid): Restore inferior_ptid after reading
3608 PC_REGNUM.
3609
3610 2004-02-28 Andrew Cagney <cagney@redhat.com>
3611
3612 * NEWS: Refer to GDB 6.1.
3613 * README: Refer to GDB 6.1.
3614 * PROBLEMS: Refer to GDB 6.1.
3615
3616 2004-02-28 Daniel Jacobowitz <drow@mvista.com>
3617
3618 * thread-db.c (disable_thread_signals): Remove unused function.
3619
3620 2004-02-28 Mark Kettenis <kettenis@gnu.org>
3621
3622 * amd64-nat.c: Include "gdb_string.h".
3623 (amd64_collect_native_gregset): Zero-extend the 32-bit
3624 general-purpose registers and %eip.
3625
3626 * amd64-tdep.h: (amd64_collect_fxsave): New prototype.
3627 * amd64-tdep.c (amd64_collect_fxsave): New function.
3628 (amd64_fill_fxsave): Simply call amd64_collect_fxsave.
3629
3630 * i387-tdep.h: Update copyright year.
3631 (i387_collect_fxsave): New prototype.
3632 * i387-tdep.c: Update copyright year.
3633 (i387_collect_fxsave): New function containing most of the code
3634 from i387_fill_fxsave.
3635 (i387_fill_fxsave): Call i387_collect_fxsave.
3636
3637 2004-02-28 Andrew Cagney <cagney@redhat.com>
3638
3639 * amd64-linux-nat.c (ps_get_thread_area): When architecture is
3640 i386 use PTRACE_GET_THREAD_AREA. Suggested by Roland McGrath.
3641
3642 2004-02-28 Mark Kettenis <kettenis@gnu.org>
3643
3644 * amd64-tdep.c (amd64_frame_cache): Fix comment.
3645
3646 2004-02-28 Andrew Cagney <cagney@redhat.com>
3647
3648 * utils.c: Use "", instead of <>, to include readline.
3649 tui/tui-win.c, tui/tui.c, tui/tui-hooks.c: Ditto.
3650 * tracepoint.c, top.c, symmisc.c, symfile.c: Ditto.
3651 * source.c, solib.c, exec.c, event-top.c: Ditto.
3652 * corelow.c, completer.c, cli/cli-setshow.c: Ditto.
3653 * cli/cli-dump.c, cli/cli-cmds.c: Ditto.
3654 * Makefile.in: Update all dependencies.
3655 (readline_tilde_h, readline_history_h): Define.
3656 (readline_headers): Delete.
3657
3658 2004-02-28 Mark Kettenis <kettenis@gnu.org>
3659
3660 * config/djgpp/fnchange.lst: Rename "config/i386/nm-linux64.h" to
3661 "config/i386/nm-lx64.h" and "config/i386/tm-linux64.h" to
3662 "config/i386/tm-lx64.h".
3663
3664 * config/djgpp/fnchange.lst: Rename "amd64-linux-tdep.c" to
3665 "amd64-ltdep.c" and "amd64-linux-nat.c" to "amd64-lnat.c". Remove
3666 rules for "x86-64-linux-tdep.c" and "x86-64-linux-nat.c".
3667
3668 2004-02-28 Andrew Cagney <cagney@redhat.com>
3669
3670 * dwarf2-frame.h (struct gdbarch): Add opaque declaration.
3671
3672 * breakpoint.c (_initialize_breakpoint): Use
3673 "add_setshow_auto_boolean_cmd. Better word-wrap help messages.
3674 Add help to show command.
3675
3676 2004-02-28 Mark Kettenis <kettenis@gnu.org>
3677
3678 * i386-nat.c: Reformat to be closer to coding standards.
3679 (i386_handle_nonaligned_watchpoint): Rename local variable `rv' to
3680 `retval'. Make variables `align' and `size' local to while-loop.
3681 (i386_stopped_data_address): Rename local variable `ret' to `addr'.
3682 (_initialize_i386_nat): New prototype.
3683
3684 * tui/tui.c: Include <readline/readline.h> instead of
3685 "readline/readline.h". Include it after <term.h> and
3686 "gdb_curses.h".
3687
3688 2004-02-27 Andrew Cagney <cagney@redhat.com>
3689
3690 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always use
3691 the new frame unwind code.
3692 (hppa_frame_cache): Use PCOQ_HEAD_REGNUM instead of PC_REGNUM.
3693 (hppa_frame_prev_register): Compute PCOQ_TAIL_REGNUM from
3694 PCOQ_HEAD_REGNUM.
3695
3696 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always
3697 "return_value" and "push_dummy_call".
3698 (hppa32_use_struct_convention): Delete unused function.
3699 (hppa32_store_return_value): Delete unused function.
3700 (hppa32_extract_return_value): Delete unused function.
3701 (hppa32_stack_align): Delete function.
3702
3703 2004-02-27 Eli Zaretskii <eliz@elta.co.il>
3704
3705 * coffread.c (enter_linenos): Don't let rawptr reference memory
3706 outside linetab[]'s limits.
3707
3708 2004-02-27 Andrew Cagney <cagney@redhat.com>
3709
3710 * hppa-tdep.c (hppa32_push_dummy_call): Fix code reserving
3711 inferior stack space - the stack needs to grow upwards.
3712 (hppa32_frame_align): New function.
3713 (hppa64_frame_align): Replace hppa_frame_align.
3714 (hppa_gdbarch_init): Update.
3715
3716 2004-02-26 Orjan Friberg <orjanf@axis.com>
3717
3718 * cris-tdep.c (frame_unwind.h, frame-base.h, trad-frame.h)
3719 (dwarf2-frame.h): Include.
3720 (enum cris_regnums): New enum CRIS_FP_REGNUM.
3721 Remove static variables related to ABI setting.
3722 (struct gdbarch_tdep): Remove cris_abi member.
3723 (struct frame_extra_info): Remove.
3724 (cris_unwind_cache, stack_item): New structs.
3725 (cris_frame_unwind, cris_frame_base): New variables.
3726 (push_stack_item, pop_stack_item)
3727 (cris_frame_unwind_cache, cris_frame_this_id)
3728 (cris_frame_prev_register, cris_unwind_dummy_id, cris_frame_align)
3729 (cris_push_dummy_code, cris_push_dummy_call, cris_frame_sniffer)
3730 (cris_frame_base_address, cris_scan_prologue, cris_unwind_pc)
3731 (cris_unwind_sp, cris_store_return_value, cris_extract_return_value)
3732 (cris_reg_struct_has_addr): New functions.
3733 (cris_examine, cris_frame_init_saved_regs, cris_frame_chain)
3734 (cris_frame_saved_pc, cris_saved_pc_after_call,
3735 (cris_store_struct_return, cris_frameless_function_invocation)
3736 (cris_pop_frame, cris_skip_prologue_main)
3737 (cris_abi_original_store_return_value)
3738 (cris_abi_v2_store_return_value)
3739 (cris_abi_original_extract_return_value)
3740 (cris_abi_v2_extract_return_value)
3741 (cris_abi_original_reg_struct_has_addr)
3742 (cris_abi_v2_reg_struct_has_addr)
3743 (cris_abi_original_push_arguments, cris_abi_v2_push_arguments)
3744 (cris_push_return_address, cris_abi_update): Remove.
3745 (_initialize_cris_tdep): Remove ABI command.
3746 (cris_dump_tdep): Ditto.
3747 (cris_gdbarch_init): Remove ABI command.
3748 Set store_return_value, extract_return_value, push_dummy_code,
3749 push_dummy_call, frame_align, unwind_pc, unwind_sp, unwind_dummy_id,
3750 frame_unwind_append_sniffer, frame_base_set_default.
3751 Clear deprecated init_frame_pc, push_arguments, store_return_value,
3752 extract_return_value, fp_regnum, pc_in_call_dummy, call_dummy_words,
3753 sizeof_call_dummy_words, get_saved_register, push_return_address,
3754 pop_frame, store_struct_return, frame_init_saved_regs,
3755 init_extra_frame_info, frameless_function_invocation, frame_chain,
3756 frame_saved_pc, saved_pc_after_call, save_dummy_frame_tos,
3757 dummy_write_sp.
3758
3759 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
3760
3761 * valprint.h (print_hex_chars, print_char_chars): New prototypes.
3762 * valprint.c (print_hex_chars): Change from static to external.
3763 (print_char_chars): New function.
3764 * printcmd.c (print_scalar_formatted): For integer and enum types
3765 that are longer than LONGEST, perform processing via appropriate
3766 print_*_chars routines.
3767
3768 2004-02-26 Andrew Cagney <cagney@redhat.com>
3769
3770 * Makefile.in: Update dependencies.
3771 Changes from Ulrich Weigand,
3772 * s390-tdep.c: Include "dwarf2-frame.h".
3773 (s390_dwarf2_frame_init_reg): New function.
3774 (s390_gdbarch_init): Install dwarf2_frame_sniffer and
3775 dwarf2_frame_base_sniffer. Call dwarf2_frame_set_init_reg.
3776
3777 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
3778
3779 * breakpoint.c (pending_break_support): New setting variable.
3780 (break_command_1): Account for pending_break_support setting
3781 when creating pending breakpoints.
3782 (set_breakpoint_cmd, show_breakpoint_cmd): New functions.
3783 (_initialize_breakpoint): Add "set breakpoint pending" and
3784 "show breakpoint pending" commands.
3785
3786 2004-02-26 Andrew Cagney <cagney@redhat.com>
3787
3788 Fix PR i18n/1570.
3789 * charset.c (backslashable, backslashed, represented): Remove 'e'
3790 from list of escaped characters, not part of ISO-C.
3791
3792 2004-02-25 J. Brobecker <brobecker@gnat.com>
3793
3794 From Peter Schauer <schauer@pdf.de>:
3795 * tui/tui.c: Move system header includes after local includes.
3796 Fixes a build failure on solaris systems.
3797
3798 2004-02-25 J. Brobecker <brobecker@gnat.com>
3799
3800 * configure.in: Refine the previous change.
3801 * configure: Regenerate.
3802
3803 2004-02-25 Mark Kettenis <kettenis@gnu.org>
3804
3805 * amd64-tdep.h: Renamed from x86-64-tdep.h.
3806 * amd64-tdep.c: Renamed from x86-64-tdep.c. Include
3807 "amd64-tdep.h" instead of "x86-64-tdep.h".
3808 * amd64-nat.c: Include "amd64-tdep.h" instead of "x86-64-tdep.h".
3809 * amd64-linux-tdep.h: Renamed from x86-64-linux.h.
3810 * amd64-linux-tdep.c: Renamed from x86-64-linux-tdep.c. Include
3811 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
3812 and "x86-64-tdep.c".
3813 * amd64-linux-nat.c: Renamed from x86-64-linux-nat.c. Include
3814 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
3815 and "x86-64-tdep.c".
3816 * amd64bsd-nat.c: Update copyright year.
3817 Include "amd64-tdep.h" instead of "x86-64-tdep.h".
3818 * amd64fbsd-tdep.c: Include "amd64-tdep.h" instead of
3819 "x86-64-tdep.h".
3820 * amd64fbsd-nat.c: Include "amd64-tdep.h" instead of
3821 "x86-64-tdep.h".
3822 * amd64nbsd-tdep.c: Include "amd64-tdep.h" instead of
3823 "x86-64-tdep.h".
3824 * amd64nbsd-nat.c: Include "amd64-tdep.h" instead of
3825 "x86-64-tdep.h".
3826 * amd64obsd-tdep.c: Include "amd64-tdep.h" instead of
3827 "x86-64-tdep.h".
3828 * amd64obsd-nat.c: Include "amd64-tdep.h" instead of
3829 "x86-64-tdep.h".
3830 * configure.host: (x86_64-*-linux*): Set gdb_target to linux64.
3831 * configure.tgt (x86_64-*-linux*): Set gdb_target to linux64.
3832 * Makefile.in (amd64_linux_tdep_h): Renamed from
3833 x86_64_linux_tdep_h.
3834 (amd64_tdep_h): Renamed from x86_64_tdep_h.
3835 (amd64bsd-nat.o, amd64fbsd-nat.o, amd64fbsd-tdep.o, amd64-nat.o)
3836 (amd64nbsd-nat.o, amd64nbsd-tdep.o, amd64obsd-nat.o)
3837 (amd64obsd-tdep.o): Update dependencies.
3838 (amd64-tdep.o, amd64-linux-nat.o, amd64-linux-tdep.o): New
3839 dependencies.
3840 (x86-64-linux-nat.o, x86-64-linux-tdep.o, x86-64-tdep.o): Remove
3841 dependencies.
3842 (ALLDEPFILES): Add amd64-tdep.c, amd64obsd-nat.c, amd64obsd-nat.c,
3843 amd64-linux-nat.c amd64-linux-tdep.c.
3844 * config/i386/tm-linux64.h: Renamed from tm-x86-64linux.h
3845 * config/i386/nm-linux64.h: Renamed from nm-x86-64linux.h.
3846 * config/i386/linux64.mt: Renamed from x86-64linux.mt.
3847 (TDEPFILES): Replace x86-64-tdep.o and x86-64-linux-tdep.o with
3848 amd64-tdep.o and amd64-linux-tdep.o.
3849 (TM_FILE): Set to tm-linux64.h.
3850 * config/i386/linux64.mh: Renamed from x86-64linux.mh.
3851 (NAT_FILE): Set to nm-linux64.h.
3852 (NATDEPFILES): Replace x86-64-linux-nat.o with amd64-linux-nat.o.
3853 * config/i386/fbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
3854 amd64-tdep.o.
3855 * config/i386/nbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
3856 amd64-tdep.o.
3857 * config/i386/obsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
3858 amd64-tdep.o.
3859
3860 2004-02-25 Roland McGrath <roland@redhat.com>
3861
3862 * remote.c (remote_protocol_qPart_auxv): New variable.
3863 (init_all_packet_configs): Initialize it.
3864 (set_remote_protocol_qPart_auxv_packet_cmd): New function.
3865 (show_remote_protocol_qPart_auxv_packet_cmd): New function.
3866 (show_remote_cmd): Call it.
3867 (_initialize_remote): Initialize commands.
3868 (remote_xfer_partial): If enabled, use qPart:auxv:read:... query to
3869 service TARGET_OBJECT_AUXV requests.
3870
3871 2004-02-25 J. Brobecker <brobecker@gnat.com>
3872
3873 * configure.in: Make sure that the wborder function is available.
3874 Otherwise, search for it in the cur_colr library.
3875 * configure: Regenerate.
3876
3877 2004-02-25 Andrew Cagney <cagney@redhat.com>
3878
3879 * hppa-tdep.c (hppa32_push_dummy_call): Rewrite.
3880
3881 2004-02-25 Mark Kettenis <kettenis@gnu.org>
3882
3883 * config/i386/tm-x86-64linux.h: Tweak comments.
3884
3885 2004-02-25 Richard Sandiford <rsandifo@redhat.com>
3886
3887 * MAINTAINERS: Add self to write-after-approval list.
3888
3889 2004-02-25 Andrew Cagney <cagney@redhat.com>
3890
3891 PR cli/1566. Problem found, and fix suggested by David Allan.
3892 * cli/cli-script.c (execute_control_command): Unconditionally
3893 install a cleanup. Default "ret" to "invalid_control". Use
3894 "break" instead of "return" to escape from the switch.
3895
3896 2004-02-24 J. Brobecker <brobecker@gnat.com>
3897
3898 * tui/tui-disasm.c: %s/lines/asm_lines/g to avoid a collision
3899 with the lines macro defined in term.h on AiX.
3900 * tui/tui-regs.c: %s/label_width/tui_label_width/g, to avoid
3901 a collision with the label_width macro defined in term.h on AiX.
3902
3903 2004-02-23 David Mosberger <davidm@hpl.hp.com>
3904
3905 Committed by Kevin Buettner <kevinb@redhat.com>.
3906
3907 * ia64-tdep.h (ia64_write_pc, ia64_linux_write_pc): Declare.
3908 * ia64-tdep.c (ia64_write_pc): Make it a global function.
3909 (ia64_gdbarch_init): For Linux targets, use ia64_linux_write_pc()
3910 instead of ia64_write_pc().
3911 * ia64-linux-tdep.c (regcache.h): Include.
3912 (ia64_linux_write_pc): New function.
3913
3914 2004-02-23 Roland McGrath <roland@redhat.com>
3915
3916 * auxv.c (info_auxv_command): Fix typos in error messages.
3917
3918 2004-02-23 Mark Kettenis <kettenis@gnu.org>
3919
3920 * x86-64-tdep.h: Tweak comment.
3921 (enum amd64_regnum): New.
3922 (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM)
3923 (X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM)
3924 (X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM)
3925 (X86_64_XMM1_REGNUM): Removed.
3926 (AMD64_NUM_GREGS): Renamed from X86_64_NUM_GREGS.
3927 (amd64_init_abi, amd64_supply_fxsave, amd64_fill_fxsave): Adjust
3928 prototypes for renamed functions.
3929 * x86-64-tdep.c: Fix typo.
3930 (amd64_dwarf_regmap): Use constants from `enum amd64_regnum' for
3931 register numbers.
3932 (amd64_return_value, amd64_push_arguments, amd64_push_dummy_call):
3933 Use constants from `enum amd64_regnum' for register numbers.
3934 (AMD64_NUM_SAVED_REGS): Adjust for renamed macros.
3935 (amd64_analyze_prologue, amd64_frame_cache,
3936 amd64_sigtramp_frame_cache): Use constants from `enum
3937 amd64_regnum' for register numbers.
3938 (amd64_supply_fpregset): Adjust for renamed functions.
3939 (amd64_init_abi): Rename from x86_64_init_abi. Use constants from
3940 `enum amd64_regnum' for register numbers.
3941 (I387_ST0_REGNUM): Use constant from `enum amd64_regnum'.
3942 (amd64_supply_fxsave): Rename from x86_64_supply_fxsave.
3943 (amd64_fill_fxsave): Rename fro x86_64_fill_fxsave.
3944 * x86-64-linux-tdep.c (amd64_linux_supply_gregset)
3945 (amd64_linux_fill_gregset): Adjust for renamed macros.
3946 (fetch_core_registers): Adjust for renamed functions.
3947 (amd64_linux_init_abi): Adjust for renamed functions.
3948 * x86-64-linux-nat.c (supply_gregset, fill_gregset): Adjust for
3949 renamed functions.
3950 * amd64-nat.c: Adjust for renamed macros.
3951 * amd64bsd-nat.c (fetch_inferior_registers)
3952 (store_inferior_registers): Use constants from `enum amd64_regnum'
3953 for register numbers. Adjust for renamed variables.
3954 * amd64fbsd-nat.c (supply_gregset, fill_gregset): Adjust for
3955 renamed variables.
3956 (_initialize_amd64fbsd_nat): Use constants from `enum
3957 amd64_regnum' for register numbers.
3958 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use constants from
3959 `enum amd64_regnum' for register numbers.
3960 (amd64fbsd_init_abi): Adjust for renamed functions.
3961 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Use constants from
3962 `enum amd64_regnum' for register numbers.
3963 (amd64nbsd_init_abi): Adjust for renamed functions.
3964 (_initialize_amd64nbsd_ndep): Adjust for renamed macros.
3965 * amd64obsd-tdep.c (amd64obsd_sigcontext_addr): Use constants from
3966 `enum amd64_regnum' for register numbers.
3967 (amd64obsd_init_abi): Adjust for renamed functions.
3968 (_initialize_amd64obsd_ndep): Adjust for renamed macros.
3969
3970 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
3971
3972 * breakpoint.c (print_one_breakpoint): Do not output spaces
3973 after printing <PENDING> for a pending breakpoint.
3974
3975 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
3976
3977 * printcmd.c (print_scalar_formatted): Initialize val_long
3978 to remove compiler warning message.
3979
3980 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
3981
3982 * defs.h (nquery, yquery): New prototypes.
3983 * breakpoint.c (break_command_1): Use new nquery interface.
3984 * utils.c (defaulted_query, nquery, yquery): New functions.
3985
3986 2004-02-23 Andrew Cagney <cagney@redhat.com>
3987
3988 * hppa-tdep.c (hppa_frame_align): New function.
3989 (hppa32_push_dummy_call): New function.
3990 (hppa64_push_dummy_call): New function.
3991 (hppa_gdbarch_init): Set frame_align and push_dummy_call; keep
3992 disabled.
3993
3994 * infcall.c (legacy_push_dummy_code): Don't call deprecated
3995 FIX_CALL_DUMMY when push_dummy_call is available.
3996 (call_function_by_hand, push_dummy_code): Ditto.
3997
3998 2004-02-22 Andrew Cagney <cagney@redhat.com>
3999
4000 * config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Delete macro.
4001 (DEPRECATED_PC_IN_CALL_DUMMY): Delete macro.
4002 (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete macro.
4003 * hppa-tdep.c (hppa_gdbarch_init): Clear deprecated
4004 use_generic_dummy_frames, set deprecated pc_in_call_dummy, set
4005 call_dummy_location to ON_STACK.
4006
4007 2004-02-22 Mark Kettenis <kettenis@gnu.org>
4008
4009 * x86-64-linux-tdep.c: Tweak comment.
4010 (amd64_linux_supply_gregset): Renamed from
4011 x86_64_linux_supply_gresget.
4012 (amd64_linux_fill_gregset): Renamed from
4013 x86_64_linux_fill_gregset.
4014 (fetch_core_registers): Adjust for renamed functions.
4015 (amd64_core_fns): Renamed from x86_64_core_fns.
4016 (amd64_linux_sigtramp_start): Renamed from
4017 x86_64_linux_sigtramp_start.
4018 (amd64_linux_pc_in_sigtramp): Renamed from
4019 x86_64_linux_pc_in_sigtramp. Adjust for renamed functions.
4020 (AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Renamed from
4021 X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET.
4022 (amd64_linux_sigcontext_addr): Renamed from
4023 x86_64_linux_sigcontext_addr.
4024 (amd64_linux_sc_reg_offset): Renamed from
4025 x86_64_linux_sc_reg_offset.
4026 (amd64_linux_init_abi): Renamed from x86_64_linux_init_abi.
4027 Adjust for renamed functions and variables.
4028 (_initialize_amd64_linux_tdep): Renamed from
4029 _initialize_x86_64_linux_tdep. Adjust for renamed functions and
4030 variables.
4031 * x86-64-linux-tdep.h: Update copyright year. Tweak comment.
4032 Adjust for renamed functions.
4033
4034 * x86-64-linux-nat.c (amd64_linux_gregset64_reg_offset): Rename
4035 from x86_64_linux_gregset64_reg_offset.
4036 (amd64_linux_gregset32_reg_offset): Rename from
4037 x86_64_linux_gregset64_reg_offset.
4038 (amd64_linux_dr_get): Renamed from x86_64_linux_dr_get.
4039 (amd64_linux_dr_set): Renamed from x86_64_linux_dr_set.
4040 (amd64_linux_dr_set_control): Renamed from
4041 x86_64_linux_dr_set_control. Adjust for renamed functions.
4042 (amd64_linux_dr_set_addr): Renamed from x86_64_linux_dr_set_addr.
4043 Adjust for renamed functions.
4044 (amd64_linux_dr_reset_addr): Renamed from
4045 x86_64_linux_dr_reset_addr. Adjust for renamed functions.
4046 (amd64_linux_dr_get_status): Renamed from
4047 x86_64_linux_dr_get_status. Adjust for renamed functions.
4048 (_initialize_amd64_linux_nat): Renamed from
4049 _initialize_x86_64_linux_nat. Adjust for renamed variables and
4050 functions.
4051 * config/i386/nm-x86-64linux.h: Update copyright year.
4052 Adjust for renamed functions.
4053
4054 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_start_addr): Renamed from
4055 amd64fbsd_sigtramp_start.
4056 (amd64fbsd_sigtramp_end_addr): Renamed from
4057 amd64fbsd_sigtramp_end.
4058 (amd64fbsd_init_abi): Adjust for renamed variables.
4059 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Adjust for renamed
4060 variables.
4061 * x86-64-tdep.h (amd64fbsd_sigtramp_start_addr): Renamed from
4062 amd64fbsd_sigtramp_start.
4063 (amd64fbsd_sigtramp_end_addr): Renamed from
4064 amd64fbsd_sigtramp_end.
4065
4066 2004-02-22 Andrew Cagney <cagney@redhat.com>
4067
4068 * hppa-tdep.c (hppa32_return_value): New function.
4069 (hppa64_return_value): New function.
4070 (hppa_gdbarch_init): Set return_value; keep disabled.
4071
4072 * hppa-tdep.c (hppa_gdbarch_init): Re-order separating
4073 struct-return and inferior function call methods.
4074
4075 * hppa-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
4076 "frame-base.h".
4077 (struct hppa_frame_cache): Define.
4078 (hppa_frame_cache, hppa_frame_this_id): New functions.
4079 (hppa_frame_prev_register): New function.
4080 (hppa_frame_unwind, hppa_frame_base): New variables.
4081 (hppa_frame_unwind_sniffer): New function.
4082 (hppa_frame_base_address, hppa_unwind_pc): New function.
4083 (hppa_gdbarch_init): Set unwind_dummy_id, unwind_pc, frame unwind
4084 sniffer, and frame base sniffer; keep disabled.
4085 (hppa_frame_base_sniffer, hppa_unwind_dummy_id): New functions.
4086 * Makefile.in: Update dependencies, fix s/nbsd/obsd/ typo.
4087
4088 * frame-unwind.c (frame_unwind_find_by_frame): Add legacy_frame_p
4089 to predicates for "seriously old code".
4090
4091 * hppa-tdep.c (hppa_gdbarch_init): Convert compile time #if0s into
4092 runtime if(0).
4093
4094 * hppa-tdep.c (hppa_breakpoint_from_pc): Make "breakpoint"
4095 unsigned.
4096 (hppa_frame_find_saved_regs): Fix "std" instruction pattern
4097
4098 * config/pa/tm-hppa.h: Update copyright.
4099 (DEPRECATED_INIT_FRAME_PC): Delete macro.
4100 (deprecated_init_frame_pc_default): Delete declaration.
4101 (hppa_frame_init_saved_regs): Delete declaration.
4102 (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
4103 * hppa-tdep.c: Include "arch-utils.h".
4104 (hppa_gdbarch_init): Set deprecated init_frame_pc
4105 and deprecated frame_init_saved_regs.
4106 (hppa_frame_init_saved_regs): Make static.
4107
4108 2004-02-22 Mark Kettenis <kettenis@gnu.org>
4109
4110 Remove old 386BSD support.
4111 * NEWS (REMOVED configurations and files): Add i[3456]86-*-bsd*.
4112 * configure.host: Remove i[34567]86-*-bsd*.
4113 * configure.tgt: Remove i[34567]86-*-bsd*.
4114 * i386b-nat.c: Removed.
4115 * Makefile.in (ALLDEPFILES): Remove i386b-nat.c.
4116 (i386b-nat.o): Remove dependencies.
4117
4118 * config/i386/i386bsd.mh: Removed.
4119 * config/i386/i386bsd.mt: Removed.
4120 * config/i386/nm-i386bsd.h: Removed.
4121 * config/i386/tm-i386bsd.h: Removed.
4122 * config/i386/xm-i386bsd.h: Removed.
4123
4124 * x86-64-tdep.h (amd64obsd_r_reg_offset): New extern declaration.
4125
4126 * amd64fbsd-tdep.c: Include "solib-svr4.h".
4127 (amd64fbsd_init_abi): Set link map offsets.
4128 * amd64nbsd-tdep.c: Include "slib-svr4.h".
4129 (amd64nbsd_init_abi): Set link map offsets.
4130 * amd64obsd-tdep.c: Include "solib-svr4.h".
4131 (amd64obsd_init_abi): Set link map offsets.
4132 * i386fbsd-tdep.c: Include "solib-svr4.h".
4133 (i386fbsd_init_abi): Set link map offsets.
4134 * i386nbsd-tdep.c: Include "solib-svr4.h".
4135 (i386nbsdelf_init_abi): Set link map offsets.
4136 * Makefile.in (amd64fbsd-tdep.o, amd64nbsd-tdep.o)
4137 (amd64obsd-tdep.o, i386fbsd-tdep.o): Update dependencies.
4138 * config/i386/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o,
4139 solib-legacy.o and core-aout.o. Reformat.
4140 * config/i386/fbsd64.mh (NATDEPFILES): Remove solib.o,
4141 solib-svr4.o, solib-legacy.o. Reformat.
4142 * config/i386/nbsdaout.mh (NATDEPFILES): Add solib.o. Reformat.
4143 * config/i386/nbsdelf.mh: Reformat.
4144 * config/i386/nbsd64.mh (NATDEPFILES): Remove solib.o,
4145 solib-svr4.o, solib-legacy.o and corelow.o.
4146 * config/i386/obsd.mh, config/i386/obsdaout.mh: Reformat.
4147 * config/i386/obsd64.mh (NATDEPFILES): Remove solib.o,
4148 solib-svr4.o, solib-legacy.o and corelow.o. Reformat.
4149 * config/i386/fbsd.mt (TDEPFILES): Add solib.o, solib-svr4.o.
4150 * config/i386/fbsd64.mt (TDEPFILES): Add solib.o, solib-svr4.o.
4151 (TM_FILE): Set to tm-fbsd.h.
4152 * config/i386/nbsd.mt (TDEPFILES): Reformat.
4153 * config/i386/nbsd64.mt (TDEPFILES): Add corelow.o, solib.o and
4154 solib-svr4.o.
4155 * config/i386/obsd.mt (TDEPFILES): Add corelow.o, solib.o and
4156 solib-svr4.o.
4157 (TM_FILE): Set to nm-nbsd.h.
4158 * config/i386/nm-fbsd.h: Update copyright year. Tweak comments.
4159 Simplify shared library support. Don't include "elf/common.h".
4160 (SVR4_SHARED_LIBS): Don't define.
4161 * config/i386/nm-fbsd64.h: Update copyright year. Don't include
4162 "solib.h".
4163 * config/i386/nm-nbsd.h, config/i386/nm-nbsdaout.h,
4164 config/i386/nm-obsd.h: Update copyright year. Tweak comments.
4165 * config/i386/tm-fbsd.h: Update copyright tear. Tweak comments.
4166 Don't include "i386/tm-i386.h". Include "solib.h".
4167 * config/i386/tm-nbsd.h: Update copyright year. Tweak comments.
4168 Don't include "i386/tm-i386.h".
4169 * config/i386/xm-i386.h: Update copyright year. Tweak comments.
4170 * config/i386/xm-nbsd.h: Update copyright year. Tweak comments.
4171 Include "i386/xm-i386.h".
4172 (HOST_LONG_DOUBLE_FORMAT): Remove.
4173
4174 Fix OpenBSD/i386 sigtramp recognition.
4175 * i386-tdep.h: Update copyright year.
4176 (i386bsd_pc_in_sigtramp, i386bsd_sigtramp_start)
4177 (i386bsd_sigtramp_end): New prototypes.
4178 (i386fbsd_sigtramp_start_addr): Renamed from
4179 i386fbsd_sigtramp_start.
4180 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
4181 (i386obsd_sigtramp_start_addr): Renamed from
4182 i386obsd_sigtramp_start.
4183 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
4184 * i386bsd-tdep.c: Update copyright year.
4185 (i386bsd_pc_in_sigtramp): Make public.
4186 * i386fbsd-nat.c: Update copyright year.
4187 (_initialize_i386fbsd_nat): Adjust for renamed variables.
4188 * i386fbsd-tdep.c: Update copyright year.
4189 (i386fbsd_sigtramp_start_addr): Renamed from
4190 i386fbsd_sigtramp_start.
4191 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
4192 (i386fbsdaout_init_abi): Adjust for renamed variables.
4193 * i386obsd-nat.c: Update copyright year.
4194 (_initialize_i386obsd_nat): Adjust for renamed variables.
4195 * i386obsd-tdep.c: Include "target.h".
4196 (i386obsd_page_size): New variable.
4197 (i386obsd_pc_in_sigtramp, i386obsd_sigtramp_start)
4198 (i386obsd_sigtramp_end): New functions.
4199 (i386obsd_sigtramp_start_addr): Renamed from
4200 i386obsd_sigtramp_start.
4201 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
4202 (i386obsd_init_abi): Adjust for renamed variables. Set
4203 pc_in_sigtramp, sigtramp_start and sigtramp_end.
4204 * Makefile.in (i386obsd-tdep.o): Update dependencies.
4205
4206 * amd64obsd-tdep.c (amd64obsd_pc_in_sigtramp): Adjust for signal
4207 trampoline change in OpenBSD kernel.
4208
4209 * amd64-nat.c: Update copyright year.
4210 (amd64_supply_native_gregset, amd64_collect_native_gregset): Use
4211 architecture from REGCACHE.
4212
4213 * x86-64-linux-nat.c (x86_64_linux_gregset32_reg_offset): Use
4214 symbolic constants from <sys/reg.h> instead of hard-coded numbers.
4215
4216 2004-02-21 Mark Kettenis <kettenis@gnu.org>
4217
4218 * configure.host: Add i[34567]86-*-openbsd[0-2].* and
4219 i[34567]86-*-openbsd3.[0-3].
4220 * config/i386/obsdaout.mh: New file.
4221
4222 * config/i386/obsd.mh (MH_FLAGS): Remove.
4223
4224 Fix PR build/1549.
4225 * i386obsd-tdep.c: Update copyright years. Include
4226 "solib-svr4.h".
4227 (i386obsd_init_abi): Don't set regset_from_core_section here.
4228 (i386obsd_aout_init_abi): New function. Set
4229 regset_from_core_section here.
4230 (i386obsd_elf_init_abi): New function.
4231 (_initialize_i386obsd_tdep): Register OS/ABI for OpenBSD ELF.
4232 * Makefile.in (i386obsd-tdep.o): Update dependecies.
4233 * config/i386/obsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
4234 (TM_FILE): Set to tm-nbsd.h.
4235
4236 * config/i386/obsd.mh (NATDEPFILES): Remove solib.o and
4237 solib-sunos.o.
4238
4239 * solib-svr4.h: Update copyright year.
4240 (svr4_ilp32_fetch_link_map_offsets)
4241 (svr4_lp64_fetch_link_map_offsets): New prototype.
4242 * solib-svr4.c: Update copyright year.
4243 (svr4_ilp32_fetch_link_map_offsets)
4244 (svr4_lp64_fetch_link_map_offsets): New function.
4245
4246 2004-02-20 Daniel Jacobowitz <drow@mvista.com>
4247
4248 * dwarf2read.c (add_partial_symbol): Fix typo in adding enumerators
4249 to the partial symbol table.
4250
4251 2004-02-20 J. brobecker <brobecker@gnat.com>
4252
4253 * PROBLEMS: Add description of problem documented under gdb/1560.
4254
4255 2004-02-20 Mark Kettenis <kettenis@gnu.org>
4256
4257 * amd64obsd-tdep.c: Include "regset.h" and "i387-tdep.h". Fix
4258 comments.
4259 (amd64obsd_supply_regset, amd64obsd_regset_from_core_section): New
4260 functions.
4261 (amd64obsd_init_abi): Reorder initializations. Use
4262 amd64obsd_r_reg_offset to initialize the general-purpose register
4263 set details. Set regset_from_core_section.
4264 (_initialize_amd64obsd_tdep): Rename from
4265 _initialize_amd64obsd_ndep. Add OS ABI handler for core dumps.
4266 * Makefile.in (amd64obsd-tdep.o): Update dependencies.
4267 * config/i386/obsd64.mt (TDEPFILES): Add i386-tdep.o.
4268
4269 * NEWS (New native configurations): Mention OpenBSD/alpha.
4270 * configure.tgt: Add alpha*-*-openbsd*.
4271 * configure.host: Add alpha*-*-openbsd*.
4272 * alphanbsd-tdep.c: Update copyright year.
4273 (_initialize_alphanbsd_tdep): Register OS ABI for OpenBSD ELF.
4274
4275 2004-02-20 Andrew Cagney <cagney@redhat.com>
4276
4277 Fix PR tdep/1372.
4278 * configure.tgt: Delete target "none-*-*".
4279 * configure.host: Delete host "none-*-*".
4280 * config/none/none.mh: Delete file.
4281 * config/none/none.mt: Delete file.
4282 * config/none/xm-none.h: Delete file.
4283 * config/none/tm-none.h: Delete file.
4284 * config/none/nm-none.h: Delete file.
4285
4286 2004-02-19 Fred Fish <fnf@redhat.com>
4287
4288 * sh-tdep.c (sh_analyze_prologue): Eliminate useless test of
4289 cache->uses_fp prior to setting it.
4290
4291 2004-02-19 Fred Fish <fnf@redhat.com>
4292
4293 Fix for PR breakpoint/1558.
4294 * sh-tdep.c (IS_JSR): New macro.
4295 (sh_analyze_prologue): Use IS_JSR to terminate prologue scan.
4296
4297 2004-02-19 Jim Blandy <jimb@redhat.com>
4298
4299 * findvar.c (value_from_register): Doc fix.
4300
4301 2004-02-19 Jeff Johnston <jjohnstn@redhat.com>
4302
4303 * printcmd.c (print_scalar_formatted): Do not check for sizeof
4304 type being greater than sizeof of host's LONGEST. Always use
4305 unpack_long() unless format 'f' chosen.
4306
4307 2004-02-19 Joel Brobecker <brobecker@gnat.com>
4308
4309 Committed by Elena Zannoni <ezannoni@redhat.com>
4310
4311 * symtab.c (find_pc_sect_psymtab): Return the psymtab that
4312 contains a symbol wich is the best, non-exact match for the given
4313 pc. Update comments.
4314
4315 2004-02-19 Elena Zannoni <ezannoni@redhat.com>
4316
4317 * event-top.c (async_request_quit): Remove uses of REQUEST_QUIT
4318 macro, which was part of the now removed Mach 3 port.
4319 * utils.c (request_quit): Ditto.
4320
4321 2004-02-18 Mark Kettenis <kettenis@gnu.org>
4322
4323 * config/djgpp/fnchange.lst: Rename "amd64obsd-tdep.c" and
4324 "amd64obsd-nat.c" to "a64ob-tdep.c" and "a64ob-nat.c".
4325
4326 2004-02-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4327
4328 Committed by Mark Kettenis <kettenis@gnu.org>.
4329
4330 * config/s390/nm-linux.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT):
4331 Define.
4332
4333 2004-02-18 Andrew Cagney <cagney@redhat.com>
4334
4335 * configure.in: Add a TUI target to CONFIG_ALL, CONFIG_CLEAN,
4336 CONFIG_INSTALL and CONFIG_UNINSTALL.
4337 * configure: Re-generate.
4338 * interps.h (INTERP_TUI): Define.
4339 * Makefile.in: Update dependencies.
4340 (TUI): New macro.
4341 (tui-main.o): Specify dependencies.
4342 (install-tui, uninstall-tui, clean-tui, all-tui): New rules.
4343 * tui/tui-main.c: New file.
4344
4345 2004-02-18 Mark Kettenis <kettenis@gnu.org>
4346
4347 * amd64obsd-tdep.c, amd64obsd-nat.c: New files.
4348 * Makefile.in (amd64obsd-nat.o, amd64obsd-tdep.o): New
4349 dependencies.
4350 * configure.host: Add x86_64-*-openbsd*.
4351 * configure.tgt: Add x86_64-*-openbsd*.
4352 * config/i386/obsd64.mt, config/i386/obsd64.mh: New files.
4353
4354 * tui/tui.c: Don't include <malloc.h>.
4355
4356 * Makefile.in (ALLDEPFILES): Add amd64-nat.c, amd64bsd-nat.c,
4357 amdfbsd-nat.c, amd64-fbsd-tdep.c, amd64nbsd-nat.c and
4358 amd64nbsd-tdep.c.
4359
4360 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Make
4361 static. Remove extraneous whitespace.
4362 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Make
4363 static.
4364
4365 2004-02-17 Jim Blandy <jimb@redhat.com>
4366
4367 * findvar.c (value_from_register): Doc fix.
4368
4369 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
4370
4371 Committed by Jim Blandy <jimb@redhat.com>.
4372
4373 * eval.c (evaluate_subexp_standard, case OP_OBJC_MSGCALL): Use
4374 CORE_ADDR as type for selectors. Correct types for GNU run time
4375 message lookup function to use double indirection.
4376 * objc-lang.c (lookup_child_selector): Use CORE_ADDR as return type.
4377 * objc-lang.h (lookup_child_selector): Adapt prototype.
4378
4379 * s390-nat.c (SUBOFF): New macro.
4380 (supply_gregset, fill_gregset): Use it to handle debugging
4381 of 32-bit exectuables running under a 64-bit kernel.
4382 * s390-tdep.c: Include "solib-svr4.h".
4383 (s390_svr4_fetch_link_map_offset): New function.
4384 (s390x_svr_fetch_link_map_offset): Likewise.
4385 (s390_gdbarch_init): Call set_solib_svr4_fetch_link_map_offsets.
4386 * Makefile.in (s390-tdep.o): Update dependencies.
4387
4388 * s390-tdep.c: Include "trad-frame.h", "frame-base.h", and
4389 "frame-unwind.h".
4390 (s390_readinstruction): Reformat. Use read_memory_nobpt.
4391 (GDB_TARGET_IS_ESAME, S390_GPR_SIZE, S390_FPR_SIZE): Remove.
4392 (S390_SYSCALL_OPCODE, S390_SYSCALL_SIZE): Remove.
4393 (S390_SIGCONTEXT_SREGS_OFFSET, S390X_SIGCONTEXT_SREGS_OFFSET,
4394 S390_SIGREGS_FP0_OFFSET, S390X_SIGREGS_FP0_OFFSET,
4395 S390_UC_MCONTEXT_OFFSET, S390X_UC_MCONTEXT_OFFSET,
4396 S390_SIGNAL_FRAMESIZE,
4397 s390_NR_sigreturn, s390_NR_rt_sigreturn): Remove.
4398 (struct frame_extra_info): Remove.
4399 (s390_memset_extra_info): Remove.
4400 (op1_ag, op1_ay, op1_brasl, op1_brc, op1_brcl, op1_lay, op1_lg)
4401 (op1_lmy, op1_ly, op1_sg, op1_stmy, op1_sty, op1_sy, op_a)
4402 (op_agr, op_bas, op_bc, op_bcr, op_sgr, op_sr): New opcodes.
4403 (is_rse): Renamed to ...
4404 (is_rsy): ... this. Support long displacements.
4405 (is_rxe): Renamed to ...
4406 (is_rxy): ... this. Support long displacements.
4407 (compute_x_addr): Support long displacements.
4408 (struct s390_prologue_data): New data type.
4409 (s390_on_stack): Change API to use struct s390_prologue_data.
4410 (s390_store): Reimplement.
4411 (s390_load): New function.
4412 (s390_get_signal_frame_info): Remove.
4413 (s390_get_frame_info): Remove, replace by ...
4414 (s390_analyze_prolog): ... this new function.
4415 (s390_check_function_end): Remove.
4416 (s390_function_start): Remove.
4417 (s390_frameless_function_invokation): Remove.
4418 (s390_is_sigreturn): Remove.
4419 (s390_init_frame_pc_first): Remove.
4420 (s390_init_frame_extra_info): Remove.
4421 (s390_frame_init_saved_regs): Remove.
4422 (s390_frame_saved_pc_nofix): Remove.
4423 (s390_frame_saved_pc): Remove.
4424 (s390_frame_chain): Remove.
4425 (s390_fp_regnum, s390_read_fp): Remove.
4426 (s390_pop_frame_regular, s390_pop_frame): Remove.
4427 (s390_saved_pc_after_call): Remove.
4428 (s390_skip_prologue): Reimplement.
4429 (s390_in_function_epilogue_p): Support long displacements.
4430 (struct s390_unwind_cache): New data structure.
4431 (s390_frame_unwind_cache): New function.
4432 (s390_prologue_frame_unwind_cache): Likewise.
4433 (s390_backchain_frame_unwind_cache): Likewise.
4434 (s390_frame_this_id, s390_frame_prev_register): Likewise.
4435 (s390_frame_unwind): Define.
4436 (s390_frame_sniffer): New function.
4437 (struct s390_pltstub_unwind_cache): New data structure.
4438 (s390_pltstub_frame_unwind_cache): New function.
4439 (s390_pltstub_frame_this_id): Likewise.
4440 (s390_pltstub_frame_prev_register): Likewise.
4441 (s390_pltstub_frame_unwind): Define.
4442 (s390_pltstub_frame_sniffer): New function.
4443 (struct s390_sigtramp_unwind_cache): New data structure.
4444 (s390_sigtramp_frame_unwind_cache): New function.
4445 (s390_sigtramp_frame_this_id): Likewise.
4446 (s390_sigtramp_frame_prev_register): Likewise.
4447 (s390_sigtramp_frame_unwind): Define.
4448 (s390_sigtramp_frame_sniffer): New function.
4449 (s390_frame_base_address, s390_local_base_address): New functions.
4450 (s390_frame_base): Define.
4451 (s390_unwind_pc, s390_unwind_sp): New function.
4452 (s390_push_dummy_call): Use new frame base location.
4453 (s390_unwind_dummy_id): Likewise.
4454 (s390_gdbarch_init): Remove calls to:
4455 set_gdbarch_frameless_function_invocation,
4456 set_gdbarch_deprecated_init_frame_pc,
4457 set_gdbarch_deprecated_frame_chain,
4458 set_gdbarch_deprecated_frame_init_saved_regs,
4459 set_gdbarch_deprecated_pop_frame,
4460 set_gdbarch_deprecated_init_extra_frame_info,
4461 set_gdbarch_deprecated_init_frame_pc_first,
4462 set_gdbarch_deprecated_target_read_fp,
4463 set_gdbarch_deprecated_frame_saved_pc,
4464 set_gdbarch_deprecated_saved_pc_after_call,
4465 set_gdbarch_deprecated_fp_regnum.
4466 Add calls to:
4467 set_gdbarch_in_solib_call_trampoline,
4468 frame_unwind_append_sniffer,
4469 frame_base_set_default,
4470 set_gdbarch_unwind_pc,
4471 set_gdbarch_unwind_sp.
4472 * Makefile.in (s390-tdep.o): Update dependencies.
4473
4474 * s390-tdep.c (struct gdbarch_tdep): Add 'abi' member.
4475 (S390_STACK_FRAME_OVERHEAD): Remove.
4476 (S390_STACK_PARAMETER_ALIGNMENT): Remove.
4477 (S390_NUM_FP_PARAMETER_REGISTERS): Remove.
4478 (s390_promote_integer_argument): Remove.
4479 (s390_cannot_extract_struct_value_address): Remove.
4480 (s390_use_struct_convention, s390_store_struct_return): Remove.
4481 (s390_extract_return_value, s390_store_return_value): Remove.
4482 (s390_return_value_convention, s390_return_value): New functions.
4483 (is_float_singleton): Handle typedefs.
4484 (is_double_or_float, is_double_arg, is_simple_arg, pass_by_copy_ref):
4485 Remove, replace by ...
4486 (s390_function_arg_pass_by_reference, s390_function_arg_float,
4487 s390_function_arg_integer): ... these new functions.
4488 (s390_push_arguments, s390_push_return_address): Remove, replace by ...
4489 (s390_push_dummy_call, s390_unwind_dummy_id): ... these new functions.
4490 (s390_gdbarch_init): Remove s390_call_dummy_words and elf_flags.
4491 Fill in tdep->abi.
4492 Remove calls to:
4493 set_gdbarch_deprecated_store_struct_return,
4494 set_gdbarch_deprecated_extract_return_value,
4495 set_gdbarch_deprecated_store_return_value,
4496 set_gdbarch_use_struct_convention,
4497 set_gdbarch_extract_struct_value_address,
4498 set_gdbarch_deprecated_pc_in_call_dummy,
4499 set_gdbarch_deprecated_push_arguments,
4500 set_gdbarch_deprecated_save_dummy_frame_tos,
4501 set_gdbarch_deprecated_push_return_address,
4502 set_gdbarch_deprecated_sizeof_call_dummy_words,
4503 set_gdbarch_deprecated_call_dummy_words,
4504 set_gdbarch_deprecated_dummy_write_sp.
4505 Add calls to:
4506 set_gdbarch_push_dummy_call,
4507 set_gdbarch_unwind_dummy_id,
4508 set_gdbarch_return_value.
4509
4510 * config/s390/nm-linux.h: Update comments.
4511 (target_insert_watchpoint, target_remove_watchpoint): Redefine.
4512 (STOPPED_BY_WATCHPOINT): Redefine.
4513 (TARGET_CAN_USE_HARDWARE_WATCHPOINT): Redefine to 1.
4514 (s390_insert_watchpoint, s390_remove_watchpoint): Update prototype.
4515 (s390_stopped_by_watchpoint): Likewise.
4516 (watch_area_cnt): Remove.
4517 * s390-nat.c: Update comments.
4518 (watch_area): Remove typedef.
4519 Global replace watch_area by struct watch_area.
4520 (watch_area_cnt, watch_lo_addr, watch_hi_addr): Remove.
4521 (s390_stopped_by_watchpoint): Remove pid argument,
4522 use s390_inferior_tid. Add short-cut for the no watchpoint case.
4523 (s390_fix_watch_points): Remove pid argument,
4524 use s390_inferior_tid. Recompute area spanned by watchpoints.
4525 (s390_insert_watchpoint, s390_remove_watchpoint): Remove pid
4526 argument. Reimplement.
4527
4528 * config/s390/nm-linux.h: Update comments. Do not include "solib.h".
4529 (KERNEL_U_ADDR, REGISTER_U_ADDR, U_REGS_OFFSET): Remove.
4530 (FETCH_INFERIOR_REGISTERS): Define.
4531 * config/s390/s390.mh (NATDEPFILES): Remove core-aout.o and
4532 core-regset.o.
4533 * config/s390/s390x.mt: Remove.
4534 * config/s390/tm-s390.h: Remove.
4535 * config/s390/tm-linux.h: Do not include "s390/tm-s390.h".
4536 (TARGET_ELF64): Remove.
4537 (SKIP_TRAMPOLINE_CODE): Do not undefine.
4538 * configure.tgt [s390-*-*, s390x-*-*]: Merge into single
4539 s390*-*-* case; always set gdb_target to s390.
4540 * regformats/reg-s390.dat: Remove control registers.
4541 * regformats/reg-s390x.dat: Likewise.
4542 * s390-tdep.h: New file.
4543 * s390-nat.c: Do not include <asm/processor.h> or <value.h>.
4544 Include "inferior.h" and "s390-tdep.h".
4545 Remove private definition of offsetof.
4546 (s390_register_u_addr): Remove.
4547 (regmap_gregset, regmap_fpregset): Define.
4548 (supply_gregset, fill_gregset): Reimplement.
4549 (supply_fpregset, fill_fpregset): Likewise.
4550 (s390_inferior_tid): New function.
4551 (fetch_regs, store_regs, fetch_fpregs, store_fpregs): Likewise.
4552 (fetch_inferior_registers, store_inferior_registers): Likewise.
4553 * s390-tdep.c: Do not define S390_TDEP. Include "defs.h" instead
4554 of <defs.h>. Include "reggroups.h", "regset.h", and "s390-tdep.h".
4555 Global replace of S390_GP0_REGNUM by S390_R0_REGNUM.
4556 Global replace of S390_FP0_REGNUM by S390_F0_REGNUM.
4557 (struct gdbarch_tdep): Define.
4558 (struct s390_register_info): Define.
4559 (s390_register_info): New variable.
4560 (s390_register_name): Reimplement.
4561 (s390_register_type): New function.
4562 (s390_register_raw_size, s390x_register_raw_size): Remove.
4563 (s390_cannot_fetch_register): Remove.
4564 (s390_register_byte): Remove.
4565 (s390_register_virtual_type, s390x_register_virtual_type): Remove.
4566 (s390_dwarf_regmap): New variable.
4567 (s390_dwarf_reg_to_regnum): New function.
4568 (s390_stab_reg_to_regnum): Remove.
4569 (s390_pseudo_register_read, s390_pseudo_register_write): New functions.
4570 (s390x_pseudo_register_read, s390x_pseudo_register_write): Likewise.
4571 (s390_convert_register_p): Likewise.
4572 (s390_register_to_value, s390_value_to_register): Likewise.
4573 (s390_register_reggroup_p): Likewise.
4574 (s390_regmap_gregset, s390x_regmap_gregset, s390_regmap_fpregset,
4575 s390_gregset, s390x_gregset, s390_fpregset): New variables.
4576 (s390_supply_regset, s390_regset_from_core_section): New functions.
4577 (GDB_TARGET_IS_ESAME): Move here from tm-s390.h.
4578 (S390_FPR_SIZE): Likewise.
4579 (S390_GPR_SIZE): Likewise. Redefine in terms of GDB_TARGET_IS_ESAME.
4580 Global replace of DEPRECATED_REGISTER_SIZE by S390_GPR_SIZE.
4581 (S390_NUM_GPRS): Move here from tm-s390.h.
4582 (S390_NUM_FPRS): Likewise.
4583 (s390_in_function_epilogue_p): New function.
4584 (s390_is_sigreturn): Replace S390_PSW_ADDR_SIZE by S390_GPR_SIZE.
4585 Replace S390_PC_REGNUM by S390_PSWA_REGNUM.
4586 (s390_gdbarch_init): Allocate and set up gdbarch_tdep structure.
4587 Replace s390_stab_reg_to_regnum by s390_dwarf_reg_to_regnum.
4588 Replace S390_FP_REGNUM by S390_SP_REGNUM.
4589 Remove calls to:
4590 set_gdbarch_deprecated_max_register_raw_size,
4591 set_gdbarch_deprecated_max_register_virtual_size,
4592 set_gdbarch_deprecated_register_byte,
4593 set_gdbarch_cannot_fetch_register,
4594 set_gdbarch_cannot_store_register,
4595 set_gdbarch_deprecated_register_size,
4596 set_gdbarch_deprecated_register_raw_size,
4597 set_gdbarch_deprecated_register_virtual_size,
4598 set_gdbarch_deprecated_register_virtual_type,
4599 set_gdbarch_deprecated_register_bytes.
4600 Add calls to:
4601 set_gdbarch_num_pseudo_regs,
4602 set_gdbarch_register_type,
4603 set_gdbarch_convert_register_p,
4604 set_gdbarch_register_to_value,
4605 set_gdbarch_value_to_register,
4606 set_gdbarch_register_reggroup_p,
4607 set_gdbarch_regset_from_core_section,
4608 set_gdbarch_pseudo_register_read,
4609 set_gdbarch_pseudo_register_write,
4610 set_gdbarch_in_function_epilogue_p.
4611 * Makefile.in (s390-nat.o, s390-tdep.o): Update dependencies.
4612 (s390_tdep_h): New variable.
4613
4614 2004-02-17 Jim Blandy <jimb@redhat.com>
4615
4616 * findvar.c (value_from_register): If the type has no length, just
4617 return an acceptable value --- don't report an internal error.
4618
4619 * stabsread.c (read_type): If we find any type numbers that are
4620 forward references, complain if the references aren't resolved by
4621 the time we're finished reading.
4622 (cleanup_undefined_types): Make error message more appropriate for
4623 a complaint.
4624
4625 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
4626
4627 * Makefile.in (defs_h): Remove dependency on progress_h.
4628 * defs.h (QUIT): Remove use of PROGRESS macro. Remove include of
4629 progress.h.
4630 * main.c (captured_main): Delete use of START_PROGRESS and
4631 END_PROGRESS.
4632
4633 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
4634
4635 * objfiles.c (terminate_minimal_symbol_table): Add back
4636 initialization of MSYMBOL_TYPE.
4637
4638 2004-02-17 David Mosberger <davidm@hpl.hp.com>
4639
4640 Committed by Andrew Cagney.
4641 * Makefile.in (ia64_tdep_h): New macro.
4642 (ia64-linux-tdep.o): Mention $(ia64_tdep_h).
4643 (ia64-tdep.o): Likewise.
4644 * ia64-tdep.h: New file.
4645 * ia64-tdep.c: Update copyright notice. Include "ia64-tdep.h".
4646 (ia64_linux_sigcontext_register_address): Move decl to ia64-tdep.h.
4647 (ia64_aix_sigcontext_register_address): Likewise.
4648 (ia64_linux_getunwind_table): Delete declaration.
4649 * ia64-linux-tdep.c: Likewise.
4650
4651 2004-02-17 Corinna Vinschen <vinschen@redhat.com>
4652
4653 * sh-tdep.c (sh_dsp_register_sim_regno): Use DSP_Rx_BANK_REGNUM.
4654 * sh-tdep.h: Rename R0_BANK_REGNUM and R7_BANK_REGNUM to
4655 DSP_R0_BANK_REGNUM and DSP_R7_BANK_REGNUM.
4656
4657 2004-02-17 Andrew Cagney <cagney@redhat.com>
4658
4659 * symtab.c (skip_prologue_using_sal): New function.
4660 * symtab.h (skip_prologue_using_sal): Declare.
4661 * frv-tdep.c: Include "symtab.h".
4662 (skip_prologue_using_sal): Delete function.
4663 * mips-tdep.c (skip_prologue_using_sal): Delete function.
4664 * rs6000-tdep.c (refine_prologue_limit): Mention
4665 skip_prologue_using_sal.
4666 * ia64-tdep.c (refine_prologue_limit): Ditto.
4667 * Makefile.in: Update dependencies.
4668
4669 2004-02-16 Andrew Cagney <cagney@redhat.com>
4670
4671 * config/alpha/tm-nbsd.h: Update copyright, delete #undef
4672 START_INFERIOR_TRAPS_EXPECTED.
4673 * config/alpha/tm-fbsd.h: Update copyright, delete #undef
4674 START_INFERIOR_TRAPS_EXPECTED.
4675 * config/alpha/tm-alphalinux.h (START_INFERIOR_TRAPS_EXPECTED):
4676 Delete macro.
4677 * config/alpha/tm-alpha.h (START_INFERIOR_TRAPS_EXPECTED): Delete
4678 macro, moved to "nm-osf.h". Update copyright.
4679 * config/alpha/nm-osf.h (START_INFERIOR_TRAPS_EXPECTED): Define,
4680 update copyright.
4681
4682 * gdbarch.sh (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION): Predicate
4683 and function replacing FRAMELESS_FUNCTION_INVOCATION.
4684 * blockframe.c (legacy_frameless_look_for_prologue): Rename
4685 frameless_look_for_prologue.
4686 * frame.h (legacy_frameless_look_for_prologue): Rename
4687 frameless_look_for_prologue.
4688 * gdbarch.h, gdbarch.c: Re-generate.
4689 * sh64-tdep.c (sh64_gdbarch_init): Update.
4690 * sh-tdep.c (sh_gdbarch_init): Update.
4691 * s390-tdep.c (s390_gdbarch_init): Update.
4692 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4693 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
4694 * m68k-tdep.c (m68k_gdbarch_init): Update.
4695 (delta68_frame_args_address): Update.
4696 * m32r-tdep.c (m32r_gdbarch_init): Update.
4697 * hppa-tdep.c (hppa_gdbarch_init): Update.
4698 * h8300-tdep.c (h8300_gdbarch_init): Update.
4699 * frv-tdep.c (frv_gdbarch_init): Update.
4700 (frv_frameless_function_invocation): Update.
4701 * cris-tdep.c (cris_gdbarch_init): Update.
4702 (cris_frameless_function_invocation): Update.
4703 * avr-tdep.c (avr_gdbarch_init): Update.
4704 * arm-tdep.c (arm_gdbarch_init): Update.
4705 * stack.c (frame_info): Update, call predicate.
4706 * rs6000-tdep.c (rs6000_frame_chain): Update, call predicate..
4707 * frame.c (legacy_get_prev_frame): Update, call predicate..
4708 * arch-utils.c (generic_frameless_function_invocation_not): Delete.
4709 * arch-utils.h (generic_frameless_function_invocation_not): Delete.
4710 * alpha-tdep.c (alpha_gdbarch_init): Do not set frameless function
4711 invocation.
4712 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4713 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
4714 * vax-tdep.c (vax_gdbarch_init): Ditto.
4715
4716 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): Delete unused
4717 function.
4718
4719 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
4720
4721 * objfiles.c (terminate_minimal_symbol_table): Remove unnecessary
4722 initializations.
4723
4724 2004-02-16 Andrew Cagney <cagney@redhat.com>
4725
4726 * tui/tui-windata.c: Include "gdb_string.h".
4727 * tui/tui-source.c, tui/tui-winsource.c: Ditto.
4728 * tui/tui-layout.c, tui/tui-command.c: Ditto.
4729 * Makefile.in: Update dependencies.
4730
4731 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
4732
4733 * Makefile.in (infrun.o): Add $(gdb_assert_h).
4734 * infrun.c: Include "gdb_assert.h".
4735 (singlestep_ptid, saved_singlestep_ptid)
4736 (stepping_past_singlestep_breakpoint): New variables.
4737 (resume): Set singlestep_ptid. Check for singlestep thread
4738 hop.
4739 (init_wait_for_inferior): Clear stepping_past_singlestep_breakpoint.
4740 (handle_inferior_event): Handle singlestep thread hop.
4741
4742 2004-02-16 Andrew Cagney <cagney@redhat.com>
4743
4744 * dwarf2-frame.c (dwarf2_frame_ops): New function.
4745 (dwarf2_frame_set_init_reg): Use, instead of gdbarch_data.
4746 (dwarf2_frame_init_reg): Ditto.
4747
4748 * printcmd.c (display_command): Check that EXP isn't NULL. Fix
4749 suggested by Joshua Neuheisel
4750
4751 * configure.in: Always check for curses, including pdcurses.
4752 Warn, instead of error, when no curses are found. Enable TUI when
4753 curses is available.
4754 * configure: Re-generate.
4755
4756 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
4757
4758 * sh-tdep.c (sh_register_convert_to_virtual): Rename from
4759 sh_sh4_register_convert_to_virtual.
4760 (sh_register_convert_to_raw): Rename from
4761 sh_sh4_register_convert_to_raw.
4762 (sh_pseudo_register_read): Accomodate above name change.
4763 (sh_pseudo_register_write): Ditto.
4764
4765 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
4766
4767 * sh-tdep.c (sh_generic_register_name): Remove.
4768 (sh_gdbarch_init): Use sh_sh_register_name in default case.
4769
4770 2004-02-15 Andrew Cagney <cagney@redhat.com>
4771
4772 * configure.in (build_warnings): Add -Wunused-function.
4773 * configure: Re-generate.
4774
4775 * config/tm-lynx.h (START_INFERIOR_TRAPS_EXPECTED): Delete macro.
4776 * config/rs6000/tm-rs6000.h (START_INFERIOR_TRAPS_EXPECTED): Ditto.
4777
4778 * procfs.c (procfs_init_inferior): Assume that
4779 START_INFERIOR_TRAPS_EXPECTED is defined.
4780 * config/ns32k/nbsdaout.mt (TM_FILE): Set to tm-ns32k.h.
4781 * config/ns32k/tm-nbsd.h: Delete file,
4782 START_INFERIOR_TRAPS_EXPECTED already defined as 2.
4783
4784 * config/vax/tm-vaxbsd.h: Do not include "tm-vax.h".
4785 * config/vax/tm-vax.h: Delete file.
4786
4787 * config/mips/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
4788 * config/i386/tm-i386bsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
4789 * config/arm/tm-linux.h (SIGCONTEXT_PC_OFFSET): Delete macro.
4790 * config/vax/tm-vaxbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
4791 * vax-tdep.c (vax_sigtramp_saved_pc): Inline only reference.
4792 * config/ns32k/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
4793 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): Inline only reference.
4794
4795 2004-02-15 Mark Kettenis <kettenis@gnu.org>
4796
4797 * dwarf2-frame.h (dwarf2_frame_set_init_reg): New prototype.
4798 * dwarf2-frame.c (dwarf2_frame_data): New variable.
4799 (struct dwarf2_frame_ops): New.
4800 (dwarf2_frame_default_init_reg): New function, based on
4801 dwarf2_frame_init_reg.
4802 (dwarf2_frame_init, dwarf2_frame_set_init_reg): New function.
4803 (dwarf2_frame_init_reg): Call architecture-specific function.
4804 (dwarf2_frame_objfile_data): Renamed from dwarf2_frame_data.
4805 (dwarf2_frame_find_fde, add_fde): Use dwarf2_frame_objfile_data
4806 instead of dwarf2_frame_data.
4807 (_initialize_dwarf2_frame): Initailize new dwarf2_frame_data.
4808 Initialize dwarf2_frame_objfile instead of old dwarf2_frame_data.
4809
4810 2004-02-15 Andrew Cagney <cagney@redhat.com>
4811
4812 * gdbarch.sh (deprecated_register_gdbarch_swap): Rename
4813 register_gdbarch_swap.
4814 (DEPRECATED_REGISTER_GDBARCH_SWAP): Rename REGISTER_GDBARCH_SWAP.
4815 * f-lang.c (_initialize_f_language): Update, use
4816 DEPRECATED_REGISTER_GDBARCH_SWAP.
4817 * remote.c (_initialize_remote): Ditto.
4818 * regcache.c (_initialize_regcache): Ditto.
4819 * parse.c (_initialize_parse): Ditto.
4820 * infrun.c (_initialize_infrun): Ditto.
4821 * mi/mi-main.c (_initialize_mi_main): Ditto.
4822 * gdbtypes.c (_initialize_gdbtypes): Ditto.
4823
4824 * solib.c (solib_map_sections): Use bfd_set_cacheable instead of
4825 poking .cacheable directly.
4826 * symfile.c (symfile_bfd_open): Ditto.
4827
4828 * Makefile.in: Update all dependencies.
4829
4830 * Makefile.in: (.SUFFIXES): Add ".l" and ".y".
4831 (.y.c, .l.c): Specify implicit rule. Instead of .tab.c, generate
4832 .c. Update references. Delete unnecessary .tab.c and -lex.c rules.
4833 (ada-exp.o, c-exp.o, f-exp.o): Replace ada-exp.tab.o et.al. rule.
4834 (jv-exp.o, m2-exp.o, objc-exp.o, p-exp.o): Similar.
4835
4836 2004-02-14 Andrew Cagney <cagney@redhat.com>
4837
4838 * arch-utils.c (legacy_convert_register_p): Check
4839 DEPRECATED_REGISTER_CONVERTIBLE_P.
4840 * findvar.c (value_of_register): Ditto.
4841
4842 * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Add predicate.
4843 * gdbarch.h, gdbarch.c: Re-generate.
4844 * arch-utils.c (deprecated_register_convertible_not): Delete.
4845 * arch-utils.h (deprecated_register_convertible_not): Delete.
4846 * mi/mi-main.c (get_register): Update. Update copyright.
4847 * infcmd.c (default_print_registers_info): Update.
4848
4849 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
4850 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Delete.
4851 (DEPRECATED_CALL_DUMMY_ADDRESS): Delete.
4852 * gdbarch.h, gdbarch.c: Re-generate.
4853 * frame.c (deprecated_get_next_frame_hack): Delete function.
4854 * frame.h (deprecated_get_next_frame_hack): Delete declaration.
4855 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
4856 Update.
4857 * infcall.c (call_function_by_hand): Update.
4858
4859 2004-02-14 Elena Zannoni <ezannoni@redhat.com>
4860
4861 * symfile.c (init_entry_point_info, entry_point_address): Move
4862 from here...
4863 * objfiles.c (init_entry_point_info, entry_point_address):..to
4864 here.
4865 * symfile.h (init_entry_point_info, entry_point_address): Remove
4866 prototypes.
4867 * objfiles.h (init_entry_point_info, entry_point_address):Add
4868 prototypes.
4869 * cris-tdep.c: Remove include of symfile.h. Add include of
4870 objfiles.h.
4871 * infcall.c: Ditto.
4872 * mcore-tdep.c: Ditto.
4873 * mn10300-tdep.c: Ditto.
4874 * sh64-tdep.c: Ditto.
4875 * v850-tdep.c: Ditto.
4876 * arm-tdep.c: Remove include of symfile.h.
4877 * blockframe.c: Ditto.
4878 * coffread.c: Ditto.
4879 * dbxread.c: Ditto.
4880 * dwarf2read.c: Ditto.
4881 * dwarfread.c: Ditto.
4882 * frv-tdep.c: Ditto.
4883 * ia64-tdep.c: Ditto.
4884 * mdebugread.c: Ditto.
4885 * mipsread.c: Ditto.
4886 * rs6000-tdep.c: Ditto.
4887 * s390-tdep.c: Ditto.
4888 * sh-tdep.c: Ditto.
4889 * xstormy16-tdep.c: Ditto.
4890 * gdbarch.sh: Remove include of symfile.h.
4891 * gdbarch.c: Regenerate.
4892 * solib-irix.c (enable_break): Use entry_point_address().
4893 Add comment about include file.
4894 * xcoffread.c: Add comment about include file.
4895 * Makefile.in (arm-tdep.o, blockframe.o, coffread.o, cris-tdep.o)
4896 (dbxread.o, dwarf2read.o, dwarfread.o, frv-tdep.o, gdbarch.o)
4897 (ia64-tdep.o, infcall.o, mcore-tdep.o, mdebugread.o, mipsread.o)
4898 (mn10300-tdep.o, rs6000-nat.o, s390-tdep.o, sh64-tdep.o)
4899 (sh-tdep.o, v850-tdep.o, xstormy16-tdep.o): Update dependencies.
4900
4901 2004-02-13 Andrew Cagney <cagney@redhat.com>
4902
4903 * corelow.c (core_xfer_partial): Use "struct bfd_section".
4904 * config/sparc/nm-nbsd.h (struct target_ops): Declare, update
4905 copyright.
4906 * mips-linux-tdep.c: Use "GNU/Linux", update copyright.
4907
4908 2004-02-12 Fred Fish <fnf@redhat.com>
4909
4910 * m68hc11-tdep.c (m68hc11_gdbarch_init): Remove duplicate call to
4911 set_gdbarch_store_return_value.
4912
4913 2004-02-12 Andrew Cagney <cagney@redhat.com>
4914
4915 * remote-rdi.c (arm_rdi_start_remote): Delete unused function.
4916 (arm_rdi_interrupt, arm_rdi_interrupt_twice): Ditto.
4917 (interrupt_query): Ditto.
4918 (ofunc): Delete unused variable.
4919 * cris-tdep.c (cris_abi): Delete unused function.
4920 (reg_pop_op, move_reg_to_mem_index_inc_op): Ditto.
4921 (cris_get_wide_opcode, cris_get_short_size): Ditto.
4922 (cris_get_asr_quick_shift_steps): Ditto.
4923 (cris_skip_prologue_frameless_p): Ditto.
4924 * arm-tdep.c (arm_push_return_address): Delete unused function.
4925 (arm_push_dummy_frame, arm_fix_call_dummy): Ditto.
4926 * rs6000-tdep.c (rs6000_pc_in_call_dummy): Delete unused function.
4927 * s390-tdep.c (s390_function_start): Delete unused function.
4928
4929 2004-02-12 Andrew Cagney <cagney@redhat.com>
4930
4931 * gdbarch.sh (PROLOGUE_FRAMELESS_P): Delete.
4932 gdbarch.h, gdbarch.c: Re-generate.
4933 * cris-tdep.c (cris_gdbarch_init): Do not set prologue_frameless_p
4934 to generic_prologue_frameless_p.
4935 * arch-utils.h (generic_prologue_frameless_p): Delete declaration.
4936 * arch-utils.c (generic_prologue_frameless_p): Delete function.
4937
4938 2004-02-11 Daniel Jacobowitz <drow@mvista.com>
4939
4940 * mips-linux-tdep.c: Include "frame.h".
4941 (mips_linux_in_dynsym_stub, mips_linux_in_dynsym_resolve_code)
4942 (mips_linux_skip_resolver): New functions.
4943 (mips_linux_init_abi): Call set_gdbarch_skip_solib_resolver
4944 and set_gdbarch_in_solib_call_trampoline.
4945 * mips-tdep.c (mips_gdbarch_init): Move gdbarch_init_osabi call
4946 to after set_gdbarch_in_solib_return_trampoline. Only set the
4947 solib hooks to mips16 functions if the OS ABI is unknown.
4948 * config/mips/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Undefine after
4949 including "config/tm-linux.h".
4950 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Define.
4951 * Makefile.in (mips-linux-tdep.o): Update.
4952
4953 2004-02-11 David Carlton <carlton@kealia.com>
4954
4955 * linespec.c (decode_compound): Only look for a class symbol when
4956 considering all but the rightmost component.
4957
4958 2004-02-11 Andrew Cagney <cagney@redhat.com>
4959
4960 * hppa-tdep.c (hppa_gdbarch_init): Re-order so that the frame and
4961 abi code are are separatly grouped.
4962
4963 2004-02-11 Andrew Cagney <cagney@redhat.com>
4964
4965 * gdbarch.sh (FRAME_ARGS_SKIP): Default to 0.
4966 * gdbarch.h, gdbarch.c: Re-generate.
4967 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4968 * v850-tdep.c (v850_gdbarch_init): Update.
4969 * sh64-tdep.c (sh64_gdbarch_init): Update.
4970 * sh-tdep.c (sh_gdbarch_init): Update.
4971 * s390-tdep.c (s390_gdbarch_init): Update.
4972 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
4973 * mips-tdep.c (mips_gdbarch_init): Update.
4974 * mcore-tdep.c (mcore_gdbarch_init): Update.
4975 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4976 * m32r-tdep.c (m32r_gdbarch_init): Update.
4977 * ia64-tdep.c (ia64_gdbarch_init): Update.
4978 * hppa-tdep.c (hppa_gdbarch_init): Update.
4979 * h8300-tdep.c (h8300_gdbarch_init): Update.
4980 * frv-tdep.c (frv_gdbarch_init): Update.
4981 * d10v-tdep.c (d10v_gdbarch_init): Update.
4982 * cris-tdep.c (cris_gdbarch_init): Update.
4983 * avr-tdep.c (avr_gdbarch_init): Update.
4984 * arm-tdep.c (arm_gdbarch_init): Update.
4985 * alpha-tdep.c (alpha_gdbarch_init): Update.
4986
4987 2004-02-11 Corinna Vinschen <vinschen@redhat.com>
4988
4989 * sh-tdep.c (sh_sh3_dsp_register_name): Fix formatting. Add missing
4990 comma.
4991 (sh_sh4al_dsp_register_name): Ditto.
4992
4993 2004-02-10 Andrew Cagney <cagney@redhat.com>
4994
4995 * mips-tdep.c (mips_gdbarch_init): Delete deprecated frame code.
4996 (mips_init_frame_pc_first): Delete function.
4997 (mips_frame_saved_pc): Delete function.
4998 (mips_frame_chain): Delete function.
4999 (mips_init_extra_frame_info): Delete function.
5000 (mips_xfer_register): Delete unused variable "reg".
5001 (mips_n32n64_push_dummy_call): Delete unused variable "valbuf".
5002 (mips_n32n64_return_value): Delete unused variable "reg".
5003 (mips_n32n64_return_value): Delete unused variable "pos".
5004 (mips_o32_push_dummy_call): Delete unused variable "valbuf".
5005 (mips_o32_return_value): Delete unused variable "pos".
5006 (mips_o64_push_dummy_call): Delete unused variable "valbuf".
5007 (mips_print_fp_register): Delete unused variable "namelen"
5008 (mips_print_fp_register): Delete unused variable "flt2"
5009 (get_frame_pointer): Delete function.
5010 (cached_proc_desc): Delete static variable.
5011 (mips_pop_frame): Delete function.
5012 (mips_find_saved_regs): Delete function.
5013 (mips_get_saved_register): Delete function.
5014 (mips_saved_pc_after_call): Delete function.
5015 (SIGFRAME_BASE): Delete macro.
5016 (SIGFRAME_FPREGSAVE_OFF): Delete macro.
5017 (SIGFRAME_PC_OFF): Delete macro.
5018 (SIGFRAME_REGSAVE_OFF): Delete macro.
5019 (mips_dump_tdep): Do not print deleted macro definitions.
5020
5021 2004-02-10 Andrew Cagney <cagney@redhat.com>
5022
5023 * Makefile.in (SFILES): Remove explictly listed tui files.
5024 (SUBDIR_GDBTK_SRCS): Fix path to gdbtk-interp.c.
5025
5026 2004-02-10 Jeff Johnston <jjohnstn@redhat.com>
5027
5028 * ia64-tdep.c (ia64_frame_this_id): Fix tracing print statement
5029 to use paddr functions to format ia64 addresses and long values.
5030 (ia64_frame_prev_register, ia64_sigtramp_frame_this_id): Ditto.
5031 (ia64_sigtramp_frame_prev_register, ia64_access_reg): Ditto.
5032 (get_kernel_table, ia64_find_proc_info_x): Ditto.
5033 (ia64_get_dyn_info_list, ia64_libunwind_this_frame_id): Ditto.
5034 (ia64_libunwind_frame_prev_register, ia64_unwind_dummy_id): Ditto.
5035
5036 2004-02-10 Andrew Cagney <cagney@redhat.com>
5037
5038 * defs.h: Do not include "tui.h".
5039 * gdb_curses.h: New file.
5040 * tui/tui-hooks.h: New file.
5041 * tui/tui.h (tui_update_all_exec_infos): Delete declaration.
5042 (tui_install_hooks, tui_remove_hooks): Delete declarations.
5043 (tui_initialize_io): Delete declaration.
5044 (tui_initialize_readline: Delete redundant declaration.
5045 (struct tui_point): Delete definition.
5046 * tui/tui-data.h (struct tui_point): Define.
5047 * cli/cli-decode.c [TUI]: Include "tui/tui.h".
5048 * utils.c: Include "tui/tui.h".
5049 * tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
5050 * printcmd.c [TUI]: Include "tui/tui.h".
5051 * cli/cli-cmds.c [TUI]: Include "tui/tui.h".
5052 * tui/tui-command.c: Include "gdb_curses.h".
5053 * tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
5054 * tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
5055 * tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
5056 * tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
5057 * tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
5058 * Makefile.in: Update all dependencies.
5059 (tui_hooks_h, gdb_curses_h): Define.
5060 (SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
5061
5062 2004-02-10 Elena Zannoni <ezannoni@redhat.com>
5063
5064 * objfiles.h (struct objfile): Remove unused fields auxf1 and
5065 auxf2. Add comments about some other rarely used fields.
5066
5067 2004-02-10 Andrew Cagney <cagney@redhat.com>
5068
5069 * Makefile.in (init.c): Fix script removing duplicates. Problem
5070 reported by Peter Schauer.
5071
5072 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
5073
5074 * bcache.c (bcache_xmalloc): Use obstack_init instead of
5075 obstack_specify_allocation.
5076 * objfiles.c (allocate_objfile): Ditto.
5077 * solib-sunos.c (solib_add_common_symbols)
5078 (allocate_rt_common_objfile): Ditto.
5079 * symfile.c (reread_symbols): Ditto.
5080 * gdb_obstack.h: Add comment.
5081
5082 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
5083
5084 * linespec.c (decode_line_1, locate_first_half)
5085 (decode_compound, lookup_prefix_sym): Update comments. Delete old
5086 commented out code.
5087
5088 2004-02-09 Daniel Jacobowitz <drow@mvista.com>
5089
5090 * cp-namespace.c (check_one_possible_namespace_symbol): Don't use
5091 obstack_free.
5092
5093 2004-02-09 Andrew Cagney <cagney@redhat.com>
5094
5095 * blockframe.c (find_pc_partial_function): If find_pc_overlay
5096 fails, try find_pc_section. Fix PR c++/1267.
5097 * minsyms.c (lookup_minimal_symbol_by_pc): Use find_pc_section
5098 instead of find_pc_mapped_section.
5099 (lookup_minimal_symbol_by_pc_section): If the SECTION is NULL, do
5100 not default to the section containing PC. Fix PR symtab/1519.
5101
5102 2004-02-09 Andrew Cagney <cagney@redhat.com>
5103
5104 * Makefile.in (mips-tdep.o): Update dependencies.
5105 * mips-tdep.c: Include "frame-unwind.h", "frame-base.h" and
5106 "trad-frame.h".
5107 (mips_unwind_pc): Return the pseudo PC register.
5108 (mips_unwind_dummy_id): New function.
5109 (mips16_fetch_instruction): New function.
5110 (mips32_fetch_instruction): New function.
5111 (struct mips_frame_cache): Define.
5112 (mips_mdebug_frame_cache): New function.
5113 (mips_mdebug_frame_this_id): New function.
5114 (mips_mdebug_frame_prev_register): New function.
5115 (mips_mdebug_frame_unwind): Define.
5116 (mips_mdebug_frame_sniffer): New function.
5117 (mips_mdebug_frame_base_address): New function.
5118 (mips_mdebug_frame_base): Define.
5119 (mips_mdebug_frame_base_sniffer): New function.
5120 (mips_gdbarch_init): Append unwind and base sniffers. Set
5121 unwind_dummy_id.
5122
5123 2004-02-08 Andrew Cagney <cagney@redhat.com>
5124
5125 * frame.c: Print both the register number and name.
5126
5127 * Makefile.in (init.c): Eliminate duplicates. Combine two greps
5128 and a sed into a single sed. Make .c and .o patterns more robust.
5129 (OBS): Delete.
5130 (INIT_FILES): Replace OBS with COMMON_OBS.
5131 (COMMON_OBS): Move DEPFILES and YYOBJ to start of definition.
5132
5133 2004-02-08 Mark Kettenis <kettenis@gnu.org>
5134
5135 * sparc-nat.c (sparc_xfer_wcookie): Try to fetch the cookie using
5136 the PT_WCOOKIE request.
5137
5138 2004-02-08 Andrew Cagney <cagney@redhat.com>
5139
5140 * mips-tdep.c (mips_unwind_pc): New function.
5141 (mips_gdbarch_init): Set mips_unwind_pc.
5142
5143 * frame.c (legacy_saved_regs_this_id): Return a null frame ID.
5144 (get_frame_id): Allow the UNKNOWN_FRAME.
5145 (frame_register_unwind, get_frame_type): Ditto.
5146
5147 * frame.c (legacy_frame_p): Check for DEPRECATED_TARGET_READ_FP_P
5148 and DEPRECATED_FP_REGNUM. Don't assume that the lack of
5149 unwind_dummy_id indicates a legacy frame.
5150
5151 * configure.in (CONFIG_LIB_OBS): Replace with CONFIG_OBS.
5152 * configure: Re-generate.
5153
5154 * mips-tdep.c (mips_gdbarch_init): Group deprecated frame unwind
5155 methods.
5156
5157 2004-02-08 Andrew Cagney <cagney@redhat.com>
5158
5159 * configure.in (CONFIG_ALL): Set to Makefile target, and not
5160 makefile macro.
5161 * configure: Re-generate.
5162 (CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Ditto.
5163 * Makefile.in (SUBDIR_CLI_CLEAN): Delete.
5164 (SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): Delete.
5165 (SUBDIR_CLI_ALL, SUBDIR_GDBTK_ALL): Delete.
5166 (SUBDIR_GDBTK_CLEAN, SUBDIR_GDBTK_INSTALL): Delete.
5167 (SUBDIR_GDBTK_UNINSTALL, SUBDIR_MI_ALL): Delete.
5168 (SUBDIR_MI_CLEAN, SUBDIR_MI_INSTALL): Delete.
5169 (SUBDIR_MI_UNINSTALL, SUBDIR_TUI_ALL): Delete.
5170 (SUBDIR_TUI_CLEAN, SUBDIR_TUI_INSTALL): Delete.
5171 (SUBDIR_TUI_UNINSTALL, SUBDIR_CLI_CLEAN): Delete.
5172
5173 2004-02-07 Andrew Cagney <cagney@redhat.com>
5174
5175 * Makefile.in: Update all dependencies.
5176
5177 * configure.in (CONFIG_INITS, CONFIG_LIB_OBS): Delete.
5178 * configure: Re-generate.
5179 * Makefile.in (INIT_FILES): Replace CONFIG_INITS with CONFIG_SRCS.
5180 (CONFIG_LIB_OBS, CONFIG_INITS): Delete.
5181 (COMMON_OBS): Add "main.o" and "annotate.o".
5182 (ANNOTATE_OBS): Delete.
5183 (OBS): Remove ANNOTATE_OBS.
5184 (DEPFILES): Replace CONFIG_LIB_OBS with CONFIG_LIB_OBS, remove
5185 CONFIG_INITS.
5186 (gdb$(EXEEXT), insight$(EXEEXT)): Do not depend on, or link
5187 against CONFIG_OBS and "main.o".
5188 (SUBDIR_CLI_INITS, SUBDIR_MI_INITS): Delete.
5189 (SUBDIR_TUI_INITS, SUBDIR_GDBTK_INITS): Delete.
5190
5191 * tui/tui-command.c: Include "gdb_string.h", delete register
5192 attribute, use ISO-C function signatures.
5193 * tui/tui-disasm.c, tui/tui-file.c, tui/tui-io.c: Ditto.
5194 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
5195 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Ditto.
5196 * tui/tui.c: Ditto.
5197
5198 * tui/tui-command.c: Change variable and function names to lower
5199 case.
5200 * tui/tui-data.c, tui/tui-disasm.c: Ditto.
5201 * tui/tui-hooks.c, tui/tui-io.c, tui/tui-layout.c: Ditto.
5202 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
5203 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
5204 * tui/tui-winsource.c, tui/tui.c: Ditto.
5205
5206 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
5207
5208 * buildsym.c (free_pending_blocks, finish_block)
5209 (record_pending_block, make_blockvector, end_symtab): Replace
5210 symbol_obstack with objfile_obstack.
5211 * coffread.c (process_coff_symbol, coff_read_struct_type)
5212 (coff_read_enum_type): Ditto.
5213 * cp-namespace.c (initialize_namespace_symtab)
5214 (check_one_possible_namespace_symbol): Ditto.
5215 * dwarf2read.c (new_symbol, dwarf2_const_value, macro_start_file)
5216 (dwarf2_symbol_mark_computed): Ditto.
5217 * dwarfread.c (enum_type, new_symbol, synthesize_typedef): Ditto.
5218 * elfread.c (elf_symtab_read): Ditto.
5219 * hpread.c (hpread_symfile_init, hpread_symfile_init)
5220 (hpread_read_enum_type, hpread_read_function_type)
5221 (hpread_read_doc_function_type, hpread_process_one_debug_symbol):
5222 Ditto.
5223 * jv-lang.c (get_java_class_symtab, add_class_symbol)
5224 (java_link_class_type): Ditto.
5225 * mdebugread.c (parse_symbol, psymtab_to_symtab_1, new_symtab)
5226 (new_symbol): Ditto.
5227 * minsyms.c (install_minimal_symbols): Ditto.
5228 * objfiles.c (allocate_objfile): Remove init of symbol_obstack.
5229 (terminate_minimal_symbol_table): Replace symbol_obstack with
5230 objfile_obstack.
5231 (free_objfile): Remove freeing of symbol_obstack.
5232 * objfiles.h: Remove symbol_obstack field.
5233 * pa64solib.c (add_to_solist): Replace symbol_obstack with
5234 objfile_obstack.
5235 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
5236 symbol_obstack.
5237 (solib_add_common_symbols): Replace symbol_obstack with
5238 objfile_obstack.
5239 * somsolib.c (som_solib_add): Ditto.
5240 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
5241 (common_block_start, common_block_end): Ditto.
5242 * symfile.c (reread_symbols): Remove freeing and init of
5243 symbol_obstack.
5244 (allocate_symtab): Rename symbol_obstack to objfile_obstack.
5245 * symfile.h: Update comment.
5246 * symmisc.c (print_objfile_statistics): Remove symbol_obstack
5247 stats printing.
5248 * symtab.c (symbol_set_names): Replace symbol_obstack with
5249 objfile_obstack.
5250 * symtab.h (struct general_symbol_info, struct minimal_symbol):
5251 Update comments.
5252 * xcoffread.c (read_xcoff_symtab, SYMBOL_DUP, SYMNAME_ALLOC)
5253 (init_stringtab, xcoff_initial_scan): Replace symbol_obstack with
5254 objfile_obstack.
5255
5256 2004-02-07 Andrew Cagney <cagney@redhat.com>
5257
5258 * tui/tui.h: Do not include <stdarg.h>, <string.h>, and
5259 "ansidecl.h". Do not undef "reg" and "chtype". Fix case of
5260 fields and variables.
5261 * tui/tui-wingeneral.h (m_beVisible): Delete macro.
5262 (m_beInvisible): Delete macro.
5263 * tui/tui-data.h: Fix case case fields and variables.
5264 (m_genWinPtrIsNull): Delete macro.
5265 (tui_win_list): Rename winList.
5266 (TUI_SRC_WIN): Rename srcWin.
5267 (TUI_DISASM_WIN): Rename disassemWin.
5268 (TUI_DATA_WIN): Rename dataWin.
5269 (TUI_CMD_WIN): Rename cmdWin.
5270 (m_genWinPtrNotNull): Delete macro.
5271 (m_winPtrIsNull): Delete macro.
5272 (m_winPtrNotNull): Delete macro.
5273 (tui_win_is_source_type): Replace m_winIsSourceType
5274 (tui_win_is_auxillary): Replace m_winIsAuzillary.
5275 (tui_win_has_locator): Replace m_hasLocator.
5276 (tui_set_win_highlight): Replace m_setWinHighlightOn and
5277 m_setWinHighlightOff.
5278 * tui/tui-data.c: Update references.
5279 (tui_win_is_source_type, tui_set_win_highlight): New functions.
5280 (tui_win_has_locator, tui_win_is_auxillary): New functions.
5281 * tui/tui-command.c, tui/tui-disasm.c: Update references.
5282 * tui/tui-io.c, tui/tui-layout.c, tui/tui-regs.c: Ditto.
5283 * tui/tui-regs.h, tui/tui-source.c, tui/tui-stack.c: Ditto.
5284 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
5285 * tui/tui-winsource.c, tui/tui.c: Ditto.
5286
5287 2004-02-07 Mark Kettenis <kettenis@gnu.org>
5288
5289 * sparc-tdep.h (sparc_fetch_wcookie): New prototype.
5290 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Handle
5291 StackGhost.
5292
5293 * sparc-tdep.c (sparc32_frame_prev_register): Rename local
5294 variable `i6' to `i7'.
5295 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
5296
5297 2004-02-07 Andrew Cagney <cagney@redhat.com>
5298
5299 * tui/tui.h (Opaque, OpaquePtr OpaqueList): Delete definition.
5300 (TuiPoint, TuiPointPtr): Ditto.
5301 (TuiStatus, TuiStatusPtr): Ditto.
5302 (TuiWinType, TuiWinTypePtr): Ditto.
5303 (struct tui_point): Rename _TuiPoint.
5304 (tui_get_low_disassembly_address): Rename
5305 tuiGetLowDisassemblyAddress.
5306 (tui_update_all_exec_infos): Rename tuiUpdateAllExecInfos.
5307 (tuiFree): Delete declaration.
5308 (OpaqueFuncPtr, TuiOpaqueFuncPtr): Delete definitions.
5309 (TuiVoidFuncPtr, TuiIntFuncPtr): Delete definitions.
5310 * tui/tui.c (tuiFree): Delete function.
5311 * cli/cli-cmds.c (disassemble_command): Update references.
5312 * tui/tui-data.c, tui/tui-data.h, tui/tui-disasm.c: Ditto.
5313 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
5314 * tui/tui-stack.c, tui/tui-win.c, tui/tui-wingeneral.c: Ditto.
5315 * tui/tui-winsource.c: Ditto.
5316
5317 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
5318
5319 * dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
5320 coffstab_build_psymtabs, elfstab_build_psymtabs)
5321 (stabsect_build_psymtabs): Replace psymbol_obstack with
5322 objfile_obstack.
5323 * dwarf2-frame.c (decode_frame_entry_1): Ditto.
5324 * dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
5325 Ditto.
5326 * dwarfread.c (scan_compilation_units): Ditto.
5327 * elfread.c (elfstab_offset_sections): Ditto.
5328 * hppa-tdep.c (read_unwind_info): Ditto.
5329 * hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
5330 (hpread_end_psymtab): Ditto.
5331 * mdebugread.c (mdebug_build_psymtabs, add_pending)
5332 (parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
5333 Ditto.
5334 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
5335 * objfiles.c (add_to_objfile_sections)
5336 (build_objfile_section_table): Ditto.
5337 (allocate_objfile): Remove init of psymbol_obstack.
5338 (free_objfile): Remove freeing of psymbol_obstack.
5339 * objfiles.h (struct objfile): Remove field
5340 psymbol_obstack. Update comments.
5341 * pa64solib.c (pa64_solib_add_solib_objfile): Replace
5342 psymbol_obstack with objfile_obstack.
5343 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
5344 psymbol_obstack.
5345 * somread.c (som_symfile_offsets, init_import_symbols)
5346 (init_export_symbols): Replace psymbol_obstack with
5347 objfile_obstack.
5348 * somsolib.c (som_solib_add_solib_objfile): Ditto.
5349 * symfile.c (default_symfile_offsets, syms_from_objfile)
5350 (reread_symbols): Remove freeing and init of psymbol_obstack.
5351 (cashier_psymtab): Update comment.
5352 * symmisc.c (print_objfile_statistics): Don't report stats for
5353 psymbol obstack.
5354 * symtab.h (struct general_symbol_info, struct partial_symtab):
5355 Update comments.
5356 * xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
5357 (xcoff_symfile_offsets): Replace psymbol_obstack with
5358 objfile_obstack.
5359
5360 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
5361
5362 * objfiles.h (struct objfile): Add objfile_obstack field.
5363 Remove type_obstack field.
5364
5365 * dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
5366 read_structure_scope read_enumeration, new_symbol): Replace
5367 type_obstack with objfile_obstack.
5368 * dwarfread.c (struct_type, enum_type): Ditto.
5369 * gdbtypes.c (alloc_type, alloc_type_instance, init_type)
5370 (lookup_fundamental_type): Ditto.
5371 * gdbtypes.h (TYPE_ALLOC): Ditto.
5372 * hpread.c (hpread_read_enum_type, hpread_read_function_type)
5373 (hpread_read_doc_function_type, hpread_read_struct_type)
5374 (fix_static_member_physnames, hpread_read_array_type)
5375 (hpread_read_subrange_type, hpread_type_lookup): Ditto.
5376 * jv-lang.c (java_lookup_class, type_from_class, type_from_class)
5377 (java_link_class_type): Ditto.
5378 * mdebugread.c (parse_type): Ditto.
5379 * objfiles.c (allocate_objfile, free_objfile): Ditto.
5380 * solib-sunos.c (solib_add_common_symbols): Ditto.
5381 * stabsread.c (define_symbol, read_type, read_member_functions,
5382 read_cpp_abbrev, read_one_struct_field): Ditto.
5383 * symfile.c (reread_symbols): Ditto.
5384 * symmisc.c (print_objfile_statistics): Ditto.
5385
5386 2004-02-07 Andrew Cagney <cagney@redhat.com>
5387
5388 * tui/tui-data.h (tui_win_element): Rename TuiWinElement.
5389 (tui_exec_info_content): Rename TuiExecInfoContent.
5390 (TuiGenWinInfo, TuiGenWinInfoPtr): Delete definitions.
5391 (TuiWinInfo, TuiWinInfoPtr): Ditto.
5392 (TuiScrollDirection, TuiScrollDirectionPtr): Ditto.
5393 (TuiList, TuiListPtr): Ditto.
5394 (TuiLayoutType, TuiLayoutTypePtr): Ditto.
5395 (TuiDataType, TuiDataTypePtr): Ditto.
5396 (TuiRegisterDisplayType, TuiRegisterDisplayTypePtr): Ditto.
5397 (TuiLineOrAddress, TuiLineOrAddressPtr): Ditto.
5398 (TuiLayoutDef, TuiLayoutDefPtr): Ditto.
5399 (TuiSourceElement, TuiSourceElementPtr): Ditto.
5400 (TuiDataElement, TuiDataElementPtr): Ditto.
5401 (TuiWinElement, TuiWinElementPtr): Ditto.
5402 (TuiDataInfo, TuiDataInfoPtr): Ditto.
5403 (TuiCommandElement, TuiCommandElementPtr): Ditto.
5404 (TuiLocatorElement, TuiLocatorElementPtr): Ditto.
5405 (TuiWhichElement, TuiWhichElementPtr): Ditto.
5406 (TuiSourceInfo, TuiSourceInfoPtr): Ditto.
5407 (TuiCommandInfo, TuiCommandInfoPtr): Ditto.
5408 * tui/tui-command.c, tui/tui-data.c: Update references.
5409 * tui/tui-data.h, tui/tui-disasm.c, tui/tui-layout.c: Ditto.
5410 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
5411 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
5412 * tui/tui-winsource.c, tui/tui.c: Ditto.
5413
5414 2004-02-07 Mark Kettenis <kettenis@gnu.org>
5415
5416 * dwarf2-frame.h: Update copyright.
5417 (enum dwarf2_frame_reg_rule): New.
5418 (struct dwarf2_frame_state_reg): New.
5419 (dwarf2_frame_sniffer, dwarf2_frame_base_sniffer): Make extern.
5420 * dwarf2-frame.c: Update copyright.
5421 (enum dwarf2_reg_rule): Remove.
5422 (struct dwarf2_frame_state): Remove defenition of `struct
5423 dwarf2_frame_state_reg'.
5424 (read_reg): Call get_frame_arch to get the architecture instead of
5425 using CURRENT_GDBARCH.
5426 (execute_cfa_program): Prefix old `enum dwarf2_reg_rule' tags with
5427 DWARF2_FRAME_.
5428 (dwarf2_frame_init_reg): New function.
5429 (dwarf2_frame_cache): Call get_frame_arch to get the architecture
5430 instead of using CURRENT_GDBARCH. Call dwarf2_frame_init_reg to
5431 initialize the register state. Prefix old `enum dwarf2_reg_rule'
5432 tags with DWARF2_FRAME_.
5433 (dwarf2_frame_prev_register): Call get_frame_arch to get the
5434 architecture instead of using CURRENT_GDBARCH. Prefix old `enum
5435 dwarf2_reg_rule' tags with DWARF2_FRAME_.
5436
5437 2004-02-06 Andrew Cagney <cagney@redhat.com>
5438
5439 * tui/tui-data.h (struct tui_list): Rename _TuiList.
5440 (enum tui_data_type): Rename _TuiDataType.
5441 (struct tui_layout_def): Rename _TuiLayoutDef.
5442 (struct tui_source_element): Rename _TuiSourceElement.
5443 (struct tui_data_element): Rename _TuiDataElement.
5444 (struct tui_command_element): Rename _TuiCommandElement.
5445 (struct tui_locator_element): Rename _TuiLocatorElement.
5446 (union tui_which_element): Define.
5447 (struct tui_win_element): Rename _TuiWinElement.
5448 (struct tui_data_info): Rename _TuiDataInfo.
5449 (struct tui_source_info): Rename _TuiSourceInfo.
5450 (struct tui_command_info): Rename _TuiCommandInfo.
5451 (tui_initialize_static_data): Rename initializeStaticData.
5452 (tui_alloc_generic_win_info): Rename allocGenericWinInfo.
5453 (tui_alloc_win_info): Rename allocWinInfo.
5454 (tui_init_generic_part): Rename initGenericPart.
5455 (tui_init_win_info): Rename initWinInfo.
5456 (tui_alloc_content): Rename allocContent.
5457 (tui_add_content_elements): Rename addContentElements.
5458 (tui_init_content_element): Rename initContentElement.
5459 (tui_free_window): Rename freeWindow.
5460 (tui_free_win_content): Rename freeWinContent.
5461 (tui_free_data_content): Rename freeDataContent.
5462 (tui_free_all_source_wins_content): Rename
5463 freeAllSourceWinsContent.
5464 (tui_del_window): Rename tuiDelWindow.
5465 (tui_del_data_windows): Rename tuiDelDataWindows.
5466 (tui_partial_win_by_name): Rename partialWinByName.
5467 (tui_win_name): Rename winName.
5468 (tui_current_layout): Rename currentLayout.
5469 (tui_set_current_layout_to): Rename setCurrentLayoutTo.
5470 (tui_term_height): Rename termHeight.
5471 (tui_set_term_height_to): Rename setTermHeightTo.
5472 (tui_term_width): Rename termWidth.
5473 (tui_set_term_width_to): Rename setTermWidthTo.
5474 (tui_set_gen_win_origin): Rename setGenWinOrigin.
5475 (tui_locator_win_info_ptr): Rename locatorWinInfoPtr.
5476 (tui_source_exec_info_win_ptr): Rename tui_gen_win_info.
5477 (tui_disassem_exec_info_win_ptr): Rename disassemExecInfoWinPtr.
5478 (tui_source_windows): Rename sourceWindows.
5479 (tui_clear_source_windows): Rename clearSourceWindows.
5480 (tui_clear_source_windows_detail): Rename
5481 clearSourceWindowsDetail.
5482 (tui_clear_win_detail): Rename clearWinDetail.
5483 (tui_add_to_source_windows): Rename tuiAddToSourceWindows.
5484 (tui_default_tab_len): Rename tuiDefaultTabLen.
5485 (tui_set_default_tab_len): Rename tuiSetDefaultTabLen.
5486 (tui_win_with_focus): Rename tuiWinWithFocus.
5487 (tui_set_win_with_focus): Rename tuiSetWinWithFocus.
5488 (tui_layout_def): Rename tuiLayoutDef.
5489 (tui_win_resized): Rename tuiWinResized.
5490 (tui_set_win_resized_to): Rename tuiSetWinResizedTo.
5491 (tui_next_win): Rename tuiNextWin.
5492 (tui_prev_win): Rename tuiPrevWin.
5493 (tui_add_to_source_windows): Rename addToSourceWindows.
5494 * tui/tui-winsource.c, tui/tui-win.c: Update references.
5495 * tui/tui-layout.c, tui/tui-source.c: Ditto.
5496 * tui/tui-stack.c, tui/tui-io.c: Ditto.
5497 * tui/tui.c, tui/tui-data.c: Ditto.
5498 * tui/tui-interp.c, tui/tui-data.c: Ditto.
5499 * tui/tui-disasm.c, tui/tui-command.c: Ditto.
5500
5501 * tui/tui-source.h: Update copyright. Include "tui-data.h".
5502 (struct symtab): Declare.
5503 (tui_set_source_content): Rename tuiSetSourceContent.
5504 (tui_show_symtab_source): Rename tuiShowSource.
5505 (tui_source_is_displayed): Rename tuiSourceIsDisplayed.
5506 (tui_vertical_source_scroll): Rename tuiVerticalSourceScroll.
5507 * tui/tui-source.c: Update copyright. Update references.
5508 * tui/tui-win.c, tui/tui-winsource.c: Update references.
5509 * tui/tui-stack.c: Update references.
5510
5511 * tui/tui-win.h: Update copyright. Include "tui-data.h".
5512 (struct tui_win_info): Declare.
5513 (tui_scroll_forward): Rename tuiScrollForward.
5514 (tui_scroll_backward): Rename tuiScrollBackward.
5515 (tui_scroll_left): Rename tuiScrollLeft.
5516 (tui_scroll_right): Rename tuiScrollRight.
5517 (tui_set_win_focus_to): Rename tuiSetWinFocusTo.
5518 (tui_resize_all): Rename tuiResizeAll.
5519 (tui_refresh_all_win): Rename tuiRefreshAll.
5520 (tui_sigwinch_handler): Rename tuiSigwinchHandler.
5521 * tui/tui-layout.c, * tui/tui-io.c: Update references.
5522 * tui/tui-wingeneral.h, * tui/tui.c: Update references.
5523 * tui/tui-disasm.c, * tui/tui-command.c: Update references.
5524
5525 * tui/tui-windata.h: Update copyright. Include "tui-data.h".
5526 (tui_erase_data_content): Rename tuiEraseDataContent.
5527 (tui_display_all_data): Rename tuiDisplayAllData.
5528 (tui_check_data_values): Rename tuiCheckDataValues.
5529 (tui_display_data_from_line): Rename tuiDisplayDataFromLine.
5530 (tui_first_data_item_displayed): Rename tuiFirstDataItemDisplayed.
5531 (tui_first_data_element_no_in_line): Rename
5532 tuiFirstDataElementNoInLine.
5533 (tui_delete_data_content_windows): Rename
5534 tuiDeleteDataContentWindows.
5535 (tui_refresh_data_win): Rename tuiRefreshDataWin.
5536 (tui_display_data_from): Rename tuiDisplayDataFrom.
5537 (tui_vertical_data_scroll): Rename tuiVerticalDataScroll.
5538 * tui/tui-windata.c, tui/tui-hooks.c: Update references.
5539 * tui/tui-win.c, tui/tui-regs.c: Update references.
5540 * tui/tui-layout.c, tui/tui.c: Update references.
5541
5542 * tui/tui-wingeneral.h: Update copyright.
5543 (m_allBeVisible): Delete macro.
5544 (m_allBeInvisible): Delete macro.
5545 (struct tui_gen_win_info): Declare.
5546 (struct tui_win_info): Declare.
5547 (tui_unhighlight_win): Rename unhighlightWin.
5548 (tui_make_visible, tui_make_invisible): Replace makeVisible.
5549 (tui_make_all_visible, tui_make_all_invisible): Replace makeAllVisible.
5550 (tui_make_window): Rename makeWindow.
5551 (tui_copy_win): Rename copyWin.
5552 (tui_box_win): Rename boxWin.
5553 (tui_highlight_win): Rename highlightWin.
5554 (tui_check_and_display_highlight_if_needed): Rename
5555 checkAndDisplayHighlightIfNeeded.
5556 (tui_refresh_all): Rename refreshAll.
5557 (tui_delete_win): Rename tuiDelwin.
5558 (tui_refresh_win): Rename tuiRefreshWin.
5559 * tui/tui-wingeneral.c (make_visible): Rename makeVisible.
5560 (tui_make_visible, tui_make_invisible): New functions.
5561 (tui_make_all_visible, tui_make_all_invisible): New functions.
5562 (make_all_visible): Rename makeAllVisible.
5563 * tui/tui-winsource.c, tui/tui-windata.c: Update references.
5564 * tui/tui-data.c, tui/tui-winsource.c: Update references.
5565 * tui/tui-windata.c, tui/tui-win.c: Update references.
5566 * tui/tui-regs.c, tui/tui-layout.c: Update references.
5567 * tui/tui-data.h (struct tui_gen_win_info): Rename _TuiGenWinInfo.
5568
5569 2004-02-06 Mark Kettenis <kettenis@gnu.org>
5570
5571 * proc-api.c (write_with_trace): Initialize local variable to
5572 silence compiler warning.
5573
5574 2004-02-06 Andrew Cagney <cagney@redhat.com>
5575
5576 * tui/tui-source.h: Do not include "defs.h".
5577 (struct tui_win_info): Declare.
5578 (tui_set_source_content_nil): Declare.
5579 * tui/tui-data.h (struct tui_win_info): Rename _TuiWinInfo.
5580 (union tui_line_or_address): Rename _TuiLineOrAddress.
5581 * tui/tui-winsource.h: Update copyright. Include "tui-data.h".
5582 (tui_update_source_window): Rename tuiUpdateSourceWindow.
5583 (tui_update_source_window_as_is): Rename
5584 tuiUpdateSourceWindowAsIs.
5585 (tui_update_source_windows_with_addr): Rename
5586 tuiUpdateSourceWindowsWithAddr.
5587 (tui_update_source_windows_with_line): Rename
5588 tuiUpdateSourceWindowsWithLine.
5589 (tui_clear_source_content): Rename tuiClearSourceContent.
5590 (tui_erase_source_content): Rename tuiEraseSourceContent.
5591 (tui_set_source_content_nil): Rename tuiSetSourceContentNil.
5592 (tui_show_source_content): Rename tuiShowSourceContent.
5593 (tui_horizontal_source_scroll): Rename tuiHorizontalSourceScroll.
5594 (tui_set_exec_info_content): Rename tuiSetExecInfoContent.
5595 (tui_show_exec_info_content): Rename tuiShowExecInfoContent.
5596 (tui_erase_exec_info_content): Rename tuiEraseExecInfoContent.
5597 (tui_clear_exec_info_content): Rename tuiClearExecInfoContent.
5598 (tui_update_exec_info): Rename tuiUpdateExecInfo.
5599 (tui_set_is_exec_point_at): Rename tuiSetIsExecPointAt.
5600 (tui_alloc_source_buffer): Rename tuiAllocSourceBuffer.
5601 (tui_line_is_displayed): Rename tuiLineIsDisplayed.
5602 (tui_addr_is_displayed): Rename tuiAddrIsDisplayed.
5603 (struct tui_win_info): Declare.
5604 * tui/tui-stack.c: Update references.
5605 * tui/tui-layout.c, tui/tui-winsource.c: Ditto.
5606 * tui/tui-win.c, tui/tui-source.c: Ditto.
5607 * tui/tui.c, tui/tui-disasm.c: Ditto.
5608
5609 2004-02-06 Mark Kettenis <kettenis@gnu.org>
5610
5611 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Fix calculation
5612 of UCONTEXT_ADDR. Fixes PR backtrace/1545.
5613
5614 2004-02-05 Mark Kettenis <kettenis@gnu.org>
5615
5616 * infrun.c (handle_inferior_event): Allow for breakpoint
5617 instructions to generate a SIGSEGV in addition to SIGTRAP, SIGILL
5618 and SIGEMT. Update comments.
5619 * NEWS (Revised SPARC target): Mention support for non-executable
5620 stack.
5621
5622 2004-02-04 Mark Kettenis <kettenis@gnu.org>
5623
5624 * target.h (target_object): Add TARGET_OBJECT_WCOOKIE.
5625 * inftarg.c: Update copyright year.
5626 (child_xfer_partial): Add support for TARGET_OBJECT_WCOOKIE.
5627 * sparc-nat.c: Include "target.h" and "gdb_assert.h".
5628 (sparc_xfer_wcookie): New function.
5629 * sparc-tdep.c (sparc_fetch_wcookie): New function.
5630 * Makefile.in (sparc-nat.o): Update dependencies.
5631 * config/sparc/nm-nbsd.h: Include "target.h".
5632 (NATIVE_XFER_WCOOKIE): New define.
5633 (sparc_xfer_wcookie): New prototype.
5634
5635 2004-02-04 Andrew Cagney <cagney@redhat.com>
5636
5637 * m68k-tdep.c (m68k_saved_pc_after_call): Delete #ifdef
5638 SYSCALL_TRAP function.
5639 (m68k_gdbarch_init): Delete #ifdef SYSCALL_TRAP code.
5640
5641 2004-02-04 Andrew Cagney <cagney@redhat.com>
5642 Daniel Jacobowitz <drow@mvista.com>
5643
5644 * objfiles.h: Delete comments refering to inside_entry_func and
5645 DEPRECATED_FRAME_CHAIN_VALID.
5646 * defs.h (inside_entry_func): Update prototype..
5647 * blockframe.c (inside_entry_func): Rename to
5648 legacy_inside_entry_func. Add new inside_entry_func taking a frame.
5649 * frame.c (get_prev_frame): Pass the frame to inside_entry_func.
5650
5651 2004-02-03 Jeff Johnston <jjohnstn@redhat.com>
5652
5653 * breakpoint.c (struct captured_parse_breakpoint_args): Move
5654 outside of #ifdef SOLIB_ADD region.
5655 (do_restore_lang_radix_cleanup): Ditto.
5656 (resolve_pending_breakpoint): Ditto.
5657
5658 2004-02-03 Andrew Cagney <cagney@redhat.com>
5659
5660 * ia64-tdep.c (read_sigcontext_register): Delete unused function.
5661 (process_note_abi_tag_sections): Delete unused function.
5662 (ia64_read_fp): Delete unused function.
5663 (gdbarch_extract_struct_value_address): Delete declaration.
5664
5665 2004-02-02 Andrew Cagney <cagney@redhat.com>
5666
5667 * vax-tdep.c (vax_frame_chain): Delete call to
5668 deprecated_inside_entry_file.
5669 * ns32k-tdep.c (ns32k_frame_chain): Ditto.
5670
5671 2004-02-02 Mark Kettenis <kettenis@gnu.org>
5672
5673 * dwarf2-frame.c (dwarf2_frame_cache): Deal with a return address
5674 column that's "empty" or "same value" when eliminating REG_RA
5675 rules.
5676
5677 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
5678
5679 * NEWS: Add information about new pending breakpoint support.
5680
5681 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
5682
5683 * breakpoint.h (struct breakpoint): Add new flag, from_tty,
5684 and pending fields for pending breakpoint support.
5685 * breakpoint.c (breakpoint_enabled): Add check for not pending.
5686 (condition_command): Only parse condition if not a pending
5687 breakpoint.
5688 (print_one_breakpoint): Add support for pending breakpoints.
5689 (describe_other_breakpoints): Add checks to verify we are not
5690 dealing with pending breakpoints.
5691 (check_duplicates): Don't check pending breakpoints.
5692 (set_raw_breakpoint): Initialize pending flag.
5693 (do_restore_lang_radix_cleanup): New cleanup routine.
5694 (resolve_pending_breakpoint): New function.
5695 (re_enable_breakpoints_in_shlibs): Try and resolve any
5696 pending breakpoints via resolve_pending_breakpoint.
5697 (mention): Add pending breakpoint support.
5698 (parse_breakpoint_sals): Add new parameter to pass to
5699 decode_line_1 to indicate silent errors when files or functions
5700 are not found. Change all callers.
5701 (do_captured_parse_breakpoint): New function.
5702 (break_command_1): Change prototype to return an rc value and to
5703 take an optional pending breakpoint pointer. Support creating
5704 a pending breakpoint if a "not found" form of error occurs when
5705 parsing the breakpoint. Also support resolving an existing pending
5706 breakpoint and be silent if the resolution fails.
5707 (create_breakpoints): Change prototype to take pending breakpoint
5708 pointer. When resolving a pending breakpoint, use the new pointer
5709 to provide a conditional or commands added by the end-user.
5710 (delete_breakpoint): Add appropriate check for pending.
5711 (breakpoint_re_set_one): Ditto.
5712 (do_enable_breakpoint): Ditto.
5713
5714 2004-02-02 David Carlton <carlton@kealia.com>
5715
5716 * valops.c (enum oload_classification): New.
5717 (find_overload_match): Break implementation into separate
5718 functions; delete #if 0'd code; look for symbols within
5719 namespaces.
5720 (find_oload_champ_namespace,find_oload_champ_namespace_loop)
5721 (find_oload_champ,oload_method_static,classify_oload_match): New.
5722 * cp-support.h: Add declaration for cp_func_name; update
5723 declaration for make_symbol_overload_list.
5724 * cp-support.c (cp_func_name): New.
5725 (overload_list_add_symbol): Fix comment, use
5726 SYMBOL_LINKAGE_NAME and SYMBOL_NATURAL_NAME.
5727 (make_symbol_overload_list): Take a function name and a namespace
5728 instead of a symbol; change implementation.
5729 (make_symbol_overload_list_using): New.
5730 (make_symbol_overload_list_qualified, read_in_psymtabs): New.
5731
5732 2004-02-02 Fred Fish <fnf@redhat.com>
5733
5734 * main.c (gdb_stdtarg): Move definition to group with other
5735 gdb_stdtarg definitions and update copyright years.
5736 * remote-sim.c (gdb_os_write_stderr): Write output to
5737 gdb_stdtargerr stream instead of gdb_stdtarg stream.
5738 (gdb_os_flush_stderr): Flush gdb_stdtargerr steam instead of
5739 gdb_stderr stream and update copyright years.
5740
5741 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
5742
5743 * Makefile.in (mips-linux-nat.o): Update dependencies.
5744 * mips-linux-nat.c: Include mips-tdep.h.
5745
5746 2004-02-01 Roland McGrath <roland@redhat.com>
5747
5748 * sol-thread.c (sol_thread_xfer_partial): New function.
5749 (init_sol_thread_ops): Use that for to_xfer_partial hook.
5750 (init_sol_core_ops): Likewise.
5751
5752 * procfs.c (procfs_xfer_partial): New function.
5753 (init_procfs_ops): Use that for procfs_ops.to_xfer_partial.
5754 * Makefile.in (procfs.o): Add $(auxv_h) dep.
5755
5756 * config/nm-linux.h (NATIVE_XFER_AUXV): New macro, uses auxv.c's
5757 procfs_xfer_auxv function.
5758
5759 * procfs.c (procfs_make_note_section): If we can read
5760 TARGET_OBJECT_AUXV data, add an NT_AUXV note containing it.
5761 * linux-proc.c (linux_make_note_section): Likewise.
5762
5763 * auxv.h: New file.
5764 * auxv.c: New file.
5765 * Makefile.in (auxv_h): New variable.
5766 (COMMON_OBS): Add auxv.o here.
5767 (auxv.o): New target.
5768
5769 * corelow.c (core_xfer_partial): New function.
5770 (init_core_ops): Use it for core_ops.to_xfer_partial.
5771
5772 * target.h (enum target_object): Add TARGET_OBJECT_AUXV.
5773 * inftarg.c (child_xfer_partial): Support it using NATIVE_XFER_AUXV
5774 macro if that is defined.
5775
5776 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
5777
5778 * breakpoint.c (bpstat_stop_status): Take a ptid_t argument,
5779 and check the specified thread for each breakpoint.
5780 * breakpoint.h (bpstat_stop_status): Update prototype.
5781 * infrun.c (handle_inferior_event): Update calls to
5782 bpstat_stop_status.
5783
5784 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
5785
5786 * Makefile.in (cli-cmds.o): Add $(readline_h).
5787
5788 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
5789
5790 * cli/cli-cmds.c: Include readline.h.
5791 (complete_command): Pass the start of the last word to
5792 complete_line.
5793
5794 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
5795
5796 * breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
5797 argument, and change first argument to a CORE_ADDR.
5798 * breakpoint.h (bpstat_stop_status): Update prototype.
5799 * infrun.c (adjust_pc_after_break): Add a new comment.
5800 (handle_inferior_event): Update calls to bpstat_stop_status.
5801
5802 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
5803
5804 * breakpoint.h: Update copyright years.
5805
5806 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
5807
5808 * breakpoint.c (software_breakpoint_inserted_here_p): New function.
5809 (bpstat_stop_status): Don't decrement PC.
5810 * breakpoint.h (software_breakpoint_inserted_here_p): Add
5811 prototype.
5812 * infrun.c (adjust_pc_after_break): New function.
5813 (handle_inferior_event): Call it, early. Remove later references
5814 to DECR_PC_AFTER_BREAK.
5815 (normal_stop): Add commentary.
5816
5817 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
5818
5819 * breakpoint.c (breakpoint_re_set_one): Add missing chunk of
5820 2004-01-27 double-free fix.
5821
5822 2004-01-31 Mark Kettenis <kettenis@gnu.org>
5823
5824 * sparc-tdep.c (sparc_fetch_wcookie): New function.
5825 (sparc32_frame_prev_register): Handle StackGhost.
5826 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
5827
5828 2004-01-29 Roland McGrath <roland@redhat.com>
5829
5830 * configure.in (NEW_PROC_API): Also match solaris2.9 for this test.
5831 * configure: Regenerated.
5832
5833 * procfs.c: Include gdb_string.h for str* decls, otherwise warnings.
5834 * Makefile.in (procfs.o): Add dep.
5835
5836 2004-01-28 Andrew Cagney <cagney@redhat.com>
5837
5838 * tui/tui-stack.h: Update copyright.
5839 (struct frame_info): Add opaque declaration.
5840 (tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
5841 (tui_show_locator_content): Rename tuiShowLocatorContent.
5842 (tui_show_frame_info): Rename tuiShowFrameInfo.
5843 * tui/tui-stack.c: Update copyright. Update references.
5844 * tui/tui-winsource.c: Update references.
5845 * tui/tui-win.c: Update references.
5846 * tui/tui-layout.c: Update references.
5847 * tui/tui-hooks.c: Update copyright, update references.
5848 * tui/tui.c: Update copyright, update references.
5849 * tui/tui-disasm.c: Update references.
5850
5851 2004-01-28 David Carlton <carlton@kealia.com>
5852
5853 * dwarf2read.c (add_partial_structure): Use demangled name if
5854 namespace equals "".
5855
5856 2004-01-27 Jim Blandy <jimb@redhat.com>
5857
5858 Clean up misapplied patch:
5859 * dwarf2read.c (determine_prefix): Change one of the two forward
5860 declarations for 'determine_prefix_aux' to a declaration for this.
5861 (read_func_scope): Use cu->language, not cu_language. Pass 'cu'
5862 argument to 'die_specification'.
5863
5864 * dwarf2read.c (read_func_scope): Re-indent comment.
5865
5866 2004-01-27 Paul N. Hilfinger <hilfinger@gnat.com>
5867
5868 * breakpoint.c (breakpoint_re_set_one): Set b->cond, b->val, and
5869 b->exp to NULL after freeing so that error during re-parsing or
5870 evaluation of expressions associated with breakpoint don't
5871 eventually lead to re-freeing of storage.
5872 Committed by Andrew Cagney.
5873
5874 2004-01-27 Andrew Cagney <cagney@redhat.com>
5875
5876 * source.c (ambiguous_line_spec): Delete undefined declaration.
5877 * m32r-rom.c (m32r_set_board_address): Delete unused function.
5878 (m32r_set_server_address, m32r_set_download_path): Ditto.
5879 * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
5880
5881 2004-01-27 Daniel Jacobowitz <drow@mvista.com>
5882
5883 * dwarf2read.c: Update calls to changed and renamed functions, and
5884 references to moved variables.
5885
5886 (struct dwarf2_cu): Add first_fn, last_fn, cached_fn,
5887 language, language_defn, list_in_scope, and ftypes members.
5888 (cu_first_fn, cu_last_fn, cu_cached_fn, cu_language)
5889 (cu_language_defn, list_in_scope, ftypes, cu_header_offset)
5890 (baseaddr): Remove globals.
5891
5892 (dwarf_attr): Renamed to dwarf2_attr. Add CU argument.
5893 (set_cu_language, die_is_declaration, die_specification)
5894 (determine_prefix, determin_prefix_aux, class_name, namespace_name)
5895 (dwarf2_linkage_name, dwarf2_name, dwarf2_extension)
5896 (dwarf2_get_ref_die_offset, dwarf2_fundamental_type)
5897 (initialize_cu_func_list, add_to_cu_func_list): Add CU argument.
5898
5899 (dwarf2_build_psymtabs_hard): Add local baseaddr. Initialize
5900 cu.list_in_scope. Don't initialize cu_header_offset.
5901 (add_partial_symbol): Add local baseaddr.
5902 (psymtab_to_symtab_1): Add local baseaddr. Use
5903 objfile->section_offsets for consistency. Don't initialize
5904 cu_header_offset; do initialize cu.header.offset and
5905 cu.list_in_scope.
5906 (read_file_scope, read_func_scope, read_lexical_block_scope)
5907 (dwarf_decode_lines, new_symbol): Add local baseaddr.
5908
5909 2004-01-27 Michael Chastain <mec.gnu@mindspring.com>
5910
5911 * PROBLEMS: Add gdb/1516.
5912
5913 2003-12-29 Robert Millan <robertmh@gnu.org>
5914
5915 Patch committed by Andrw Cagney.
5916 * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
5917 * configure.tgt: Match knetbsd*-gnu.
5918
5919 2004-01-26 Andrew Cagney <cagney@redhat.com>
5920
5921 * breakpoint.c (catch_command_1): Delete #ifdef code.
5922 (catch_fork_command_1): Delete #ifdef wrapper.
5923 (catch_exec_command_1): Ditto.
5924 (catch_load_command_1): Ditto.
5925 (catch_unload_command_1): Ditto.
5926
5927 * breakpoint.c (watchpoint_check): Delete #if0ed variable.
5928 (catch_breakpoint): Delete #if0ed function.
5929 (disable_catch_breakpoint): Ditto.
5930 (delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
5931 (disable_catch, enable_catch, delete_catch): Ditto.
5932
5933 2004-01-26 Andrew Cagney <cagney@redhat.com>
5934
5935 * remote.c (echo_check, quit_flag): Delete variables.
5936 (cisco_kernel_mode): Delete variable.
5937 (minitelnet_return, tty_input, escape_count): Delete variables.
5938 (remote_cisco_mode): Delete variable.
5939 (remote_cisco_open, remote_cisco_close): Delete function.
5940 (remote_cisco_mourn, remote_cisco_wait): Delete function.
5941 (init_remote_cisco_ops): Delete function.
5942 (_initialize_remote): Do not install "remote cisco" code.
5943 (read_frame): Delete cisco specific code.
5944 (remote_info_process): Delete function.
5945 (remote_wait): Delete cisco specific code.
5946 (remote_cisco_section_offsets): Delete function.
5947 (remote_cisco_objfile_relocate): Delete function.
5948 (remote_async_wait): Delete cisco specific code.
5949 (minitelnet, readtty, readsocket): Delete function.
5950
5951 2004-01-26 Andrew Cagney <cagney@redhat.com>
5952
5953 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS): Deprecate. Add
5954 comments mentioning extract_returned_value_address.
5955 * infcmd.c (print_return_value): Update. Add comments on
5956 extract_returned_value_address.
5957 * stack.c (return_command): Add comments on
5958 extract_returned_value_address.
5959 * values.c: Update comment.
5960 * m32r-tdep.c: Update comment.
5961 * sparc-tdep.c: Update comment.
5962 * ia64-tdep.c (ia64_use_struct_convention): Update comment.
5963 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5964 * sh64-tdep.c (sh64_gdbarch_init): Update.
5965 * sh-tdep.c (sh_gdbarch_init): Update.
5966 * s390-tdep.c (s390_gdbarch_init): Update.
5967 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5968 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
5969 * m68k-tdep.c (m68k_gdbarch_init): Update.
5970 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5971 * m32r-tdep.c (m32r_gdbarch_init): Update.
5972 * ia64-tdep.c (ia64_gdbarch_init): Update.
5973 * h8300-tdep.c (h8300_gdbarch_init): Update.
5974 * frv-tdep.c (frv_gdbarch_init): Update.
5975 * arm-tdep.c (arm_gdbarch_init): Update.
5976 * alpha-tdep.c (alpha_gdbarch_init): Update.
5977
5978 2004-01-26 Andrew Cagney <cagney@redhat.com>
5979
5980 * dwarf2loc.c (dwarf_expr_frame_base): Use SYMBOL_OPS instead of
5981 SYMBOL_LOCATION_FUNCS
5982 (dwarf2_loclist_funcs, dwarf2_locexpr_funcs): Change type to
5983 "struct symbol_ops".
5984 * dwarf2loc.h (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Change
5985 type to "struct symbol_ops".
5986 * symtab.h (struct symbol_ops): Rename "struct location_funcs".
5987 (struct symbol): Replace ".aux_value.loc.funcs" and
5988 ".aux_value.loc.baton" with ".ops" and ".aux_value.ptr".
5989 (SYMBOL_OBJFILE): Delete macro.
5990 (SYMBOL_LOCATION_FUNCS): Delete macro.
5991 (SYMBOL_LOCATION_BATON): Update.
5992 * dwarf2read.c (dwarf2_symbol_mark_computed): Set SYMBOL_OPS
5993 intead of SYMBOL_LOCATION_FUNCS.
5994 * ax-gdb.c (gen_var_ref): Ditto.
5995 * printcmd.c (address_info): Ditto.
5996 * findvar.c (read_var_value): Ditto.
5997 (symbol_read_needs_frame): Ditto.
5998
5999 2004-01-26 Andrew Cagney <cagney@redhat.com>
6000
6001 * dwarf2read.c (read_func_scope): Document frame-base hack.
6002
6003 2004-01-25 Mark Kettenis <kettenis@gnu.org>
6004
6005 * infcmd.c (print_return_value): Plug memory leak; delete
6006 ui_stream object. Rename argument `structure_return' to
6007 `struct_return'.
6008
6009 2004-01-25 Mark Kettenis <kettenis@gnu.org>
6010
6011 * infcmd.c (print_return_value): Wrap long lines.
6012 (finish_command_continuation, finish_command): Remove unused
6013 variable `funcaddr'. Fix some coding-standards problems.
6014
6015 * sparc-tdep.c (sparc_regset_from_core_section): Check whether
6016 SECT_SIZE is large enough, not whether it's exactly the right size.
6017 (sparc32_gdbarch_init): Initialize TDEP->sizeof_gregset and
6018 TDEP->fpregset to zero.
6019
6020 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Also supply the
6021 floating-point registers for traditional NetBSD core files.
6022 (sparc32nbsd_init_abi): Initialize TDEP->sizeof_gregset and
6023 TDEP->sizeof_fpregset here.
6024
6025 2004-01-25 Mark Kettenis <kettenis@gnu.org>
6026
6027 * sparc-tdep.h (sparc32nbsd_sigcontext_saved_regs): New prototype.
6028 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): New
6029 function with code split out from
6030 sparc32nbsd_sigcontext_frame_cache.
6031 (sparc32nbsd_sigcontext_frame_cache): Use
6032 sparc32nbsd_sigcontext_saved_regs.
6033 (_initialize_sparc32nbsd_tdep): Don't register OS ABI handler for
6034 OpenBSD.
6035 * sparcobsd-tdep.c: New file.
6036 * Makefile.in (ALLDEPFILES): Add sparcobsd-tdep.c.
6037 (sparcobsd-tdep.o): New dependency.
6038 * configure.tgt (sparc-*-openbsd*): Set gdb_target to obsd.
6039 * config/sparc/obsd.mt: New file.
6040
6041 * sparc-tdep.c (sparc32_gdbarch_init): Don't require
6042 TDEP->fpregset to be initialized to enable core file register
6043 sets.
6044
6045 2004-01-24 Mark Kettenis <kettenis@gnu.org>
6046
6047 * sparc64-tdep.h (struct frame_info, struct trad_frame_saved_reg):
6048 Add opaque declarations.
6049 (sparc64nbsd_sigcontext_saved_regs): New prototype.
6050 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): New
6051 function with code split out from
6052 sparc64nbsd_sigcontext_frame_cache.
6053 (sparc64nbsd_sigcontext_frame_cache): Use
6054 sparc64nbsd_sigcontext_saved_regs.
6055 (_initialize_sparc64nbsd_tdep): Don't register OS ABI handler for
6056 OpenBSD.
6057 * sparc64obsd-tdep.c: New file.
6058 * Makefile.in (ALLDEPFILES): Add sparc64obsd-tdep.c.
6059 (sparc64obsd-tdep.o): New dependency.
6060 * configure.tgt (sparc64-*-openbsd*): Set gdb_target to obsd64 and
6061 gdb_osabi to GDB_OSABI_OPENBSD_ELF.
6062 * config/sparc/obsd64.mt: New file.
6063
6064 * sparc-tdep.c (sparc_fetch_instruction): Return zero if we can't
6065 read the instruction at PC.
6066
6067 * sparcnbsd-tdep.c (GDB_OSABI_NETBSD_CORE): Define, based on the
6068 value of GDB_OSABI_DEFAULT.
6069 (sparcnbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_CORE
6070 instead of GDB_OSABI_NETBSD_AOUT.
6071
6072 2004-01-24 Nick Roberts <nick@nick.uklinux.net>
6073
6074 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-cmds.h: Update
6075 copyright.
6076
6077 2004-01-23 Andrew Cagney <cagney@redhat.com>
6078
6079 * printcmd.c (display_command): Replace tui_set_display call with
6080 tui_set_layout_for_display_command.
6081 * tui/tui.h (enum tui_win_type): Define.
6082 (tui_set_layout): Delete declaration.
6083 (tui_set_layout_for_display_command): Rename set_tui_layout.
6084 * tui/tui-data.h (enum tui_layout_type): Define.
6085 * tui/tui-layout.h: Update copyright. Include "tui-data.h" and
6086 "tui.h".
6087 (tui_add_win_to_layout): Rename tuiAddWinToLayout.
6088 (tui_default_win_height): Rename tuiDefaultWinHeight.
6089 (tui_default_win_viewport_height): Rename
6090 tuiDefaultWinViewportHeight.
6091 (tui_set_layout): RenametuiSetLayout.
6092 * tui/tui-layout.c: Update references.
6093 * tui/tui.c: Update references.
6094 * tui/tui-disasm.c: Update references.
6095
6096 2004-01-23 David Carlton <carlton@kealia.com>
6097
6098 Partial workaround for PR c++/1511:
6099 * cp-namespace.c: Include frame.h.
6100 (cp_lookup_transparent_type): New
6101 (cp_lookup_transparent_type_loop): New.
6102 * cp-support.h: Declare cp_lookup_transparent_type.
6103 * symtab.c (basic_lookup_transparent_type): Renamed from
6104 lookup_transparent_type.
6105 (lookup_transparent_type): Replace old body by a call to
6106 current_language->la_lookup_transparent_type.
6107 * symtab.h: Update copyright. Declare
6108 basic_lookup_transparent_type.
6109 * language.h: Update copyright.
6110 (struct language_defn): Add la_lookup_transparent_type.
6111 * language.c: Update copyright.
6112 (unknown_language_defn): Add basic_lookup_transparent_type.
6113 (auto_language_defn): Add basic_lookup_transparent_type.
6114 (local_language_defn): Add basic_lookup_transparent_type.
6115 * ada-lang.c: Update copyright.
6116 (ada_language_defn): Add basic_lookup_transparent_type.
6117 * c-lang.c: Update copyright.
6118 (c_language_defn): Add basic_lookup_transparent_type.
6119 (cplus_language_defn): Add basic_lookup_transparent_type.
6120 (asm_language_defn): Add basic_lookup_transparent_type.
6121 (minimal_language_defn): Add basic_lookup_transparent_type.
6122 * f-lang.c: Update copyright.
6123 (f_language_defn): Add basic_lookup_transparent_type.
6124 * jv-lang.c: Update copyright.
6125 (java_language_defn): Add basic_lookup_transparent_type.
6126 * m2-lang.c: Update copyright.
6127 (m2_language_defn): Add basic_lookup_transparent_type.
6128 * objc-lang.c: Update copyright.
6129 (objc_language_defn): Add basic_lookup_transparent_type.
6130 * p-lang.c: Update copyright.
6131 (p_language_defn): Add basic_lookup_transparent_type.
6132 * scm-lang.c: Update copyright.
6133 (scm_language_defn): Add basic_lookup_transparent_type.
6134 * Makefile.in (cp-namespace.o): Depend on frame.h.
6135
6136 2004-01-23 David Carlton <carlton@kealia.com>
6137
6138 Patch for PR c++/1520:
6139 * dwarf2read.c (read_func_scope): Set processing_current_prefix
6140 properly if we have a specification die.
6141 (determine_prefix_aux): Rename from determine_prefix.
6142 (determine_prefix): Like the old determine_prefix, but never
6143 returns NULL.
6144
6145 2004-01-23 Theodore A. Roth <troth@openavr.org>
6146
6147 * avr-tdep.c: Update copyright.
6148 (avr_iaddr_p): Delete unused function.
6149 (avr_saddr_p): Delete unused function.
6150
6151 2004-01-23 David Carlton <carlton@kealia.com>
6152
6153 * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
6154 Fix for PR symtab/1534.
6155
6156 2004-01-23 Mark Kettenis <kettenis@gnu.org>
6157
6158 * NEWS (New native configurations): Mention OpenBSD/sparc and
6159 OpenBSD/sparc64.
6160 * configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*.
6161 * configure.host: Likewise.
6162 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI
6163 handler for OpenBSD.
6164 * sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
6165
6166 2004-01-22 Mark Kettenis <kettenis@gnu.org>
6167
6168 * sparcnbsd-tdep.c (sparcnbsd_core_osabi_sniffer): New function.
6169 (_initialize_sparnbsd_tdep): Register sparcnbsd_core_osabi_sniffer.
6170
6171 * ser-pipe.c (pipe_open): Use proper null pointer in execl call.
6172 * cli/cli-cmds.c (shell_escape): Likewise.
6173
6174 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Recognize
6175 OpenBSD .note.openbsd.ident sections.
6176
6177 2004-01-22 David Carlton <carlton@kealia.com>
6178
6179 * dwarf2read.c (psymtab_to_symtab_1): Calculate lowpc, highpc via
6180 get_scope_pc_bounds.
6181 (read_file_scope): Ditto.
6182 (get_scope_pc_bounds): New function, produced by extracting code
6183 from the above two functions, consolidating it, and adding support
6184 for DW_TAG_namespace.
6185
6186 2004-01-22 Mark Kettenis <kettenis@gnu.org>
6187
6188 * osabi.c (MAX_NOTESZ): New define.
6189 (check_note): New function.
6190 (generic_elf_osabi_sniff_abi_tag_sections): Reorganize code using
6191 check_note.
6192
6193 2004-01-21 Roland McGrath <roland@redhat.com>
6194
6195 * MAINTAINERS (write after approval): Add myself.
6196
6197 2004-01-21 Eli Zaretskii <eliz@gnu.org>
6198
6199 * utils.c (init_page_info): Move declarations of `rows' and
6200 `cols' before the __GO32__-specific code. Move the closing brace
6201 outside the #ifdef __GO32__..#endif block.
6202 [__GO32__]: Use `rows' and `cols' to avoid compiler warnings.
6203
6204 2004-01-21 Paul Brook <paul@codesourcery.com>
6205
6206 * infrun.c (handle_inferior_event): Check stop_stack_dummy if handling
6207 BPSTAT_WHAT_CHECK_SHLIBS.
6208
6209 2004-01-21 Paul Brook <paul@codesourcery.com>
6210
6211 * MAINTAINERS: Add myself to write-after-approval.
6212
6213 2004-01-20 Andrew Cagney <cagney@redhat.com>
6214
6215 * ax-gdb.c (print_axs_value): Delete unused function.
6216 * jv-lang.c (java_lookup_type): Delete unused function.
6217 * cli/cli-dump.c (dump_filetype): Delete unused function.
6218 * remote-mips.c (remote_mips_insert_hw_breakpoint)
6219 (remote_mips_remove_hw_breakpoint): Delete unused functions.
6220 (mips_getstring): Delete unused function.
6221 (pmon_insert_breakpoint): Delete #if0ed function.
6222 (PMON_MAX_BP): Delete #if0ed MACRO.
6223 (mips_pmon_bp_info): Delete #if0ed variable.
6224 (pmon_remove_breakpoint): Delete #if0ed function.
6225 * monitor.c (monitor_write_even_block): Delete unused function.
6226 (monitor_write_memory_block): Delete #if0ed code.
6227 * dink32-rom.c (dink32_load): Delete unused function.
6228 (_initialize_dink32_rom): Delete #if0ed code.
6229 * d10v-tdep.c (d10v_daddr_p): Delete unused function.
6230
6231 * tui/tui-command.c: Update references.
6232 * tui/tui-io.c: Update references.
6233 * tui/tui-command.h: Update copyright.
6234 (tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.
6235
6236 * source.c (ambiguous_line_spec): Delete never-defined function.
6237 * remote-rdi.c (arm_rdi_mourn, arm_rdi_send): Ditto.
6238 * gdbtypes.c (add_name, add_mangled_type): Ditto.
6239 * cli/cli-cmds.c (validate_comname): Ditto.
6240
6241 * tui/tui-disasm.h: Update copyright. Include "tui.h" and
6242 "tui-data.h".
6243 (tui_set_disassem_content): Rename tuiSetDisassemContent.
6244 (tui_show_disassem): Rename tuiShowDisassem.
6245 (tui_show_disassem_and_update_source): Rename
6246 tuiVerticalDisassemScroll.
6247 (tui_vertical_disassem_scroll): Rename tuiVerticalDisassemScroll.
6248 (tui_get_begin_asm_address): Rename tuiGetBeginAsmAddress.
6249 * tui/tui.h: Update copyright.
6250 (enum tui_status): Define.
6251 * tui/tui-data.h (enum tui_scroll_direction): Define.
6252 * tui/tui-disasm.c: Update copyright. Update references.
6253 * tui/tui-winsource.c: Update copyright. Update references.
6254 * tui/tui-win.c: Update references.
6255 * tui/tui-layout.c: Update references.
6256
6257 2004-01-20 Andrew Cagney <cagney@redhat.com>
6258
6259 * mi/mi-cmd-stack.c (list_args_or_locals): Move declaration of
6260 sym2 to start of block.
6261
6262 2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
6263
6264 * MAINTAINERS: Delete mmalloc.
6265 * Makefile.in: Delete MMALLOC, MMALLOC_CFLAGS, -lmmalloc, mmalloc_h.
6266 * NEWS: Mention removal of --with-malloc.
6267 * acconfig.h: Delete USE_MMALLOC, MMCHECK_FORCE.
6268 * config.in: Regenerate.
6269 * configure: Regenerate.
6270 * configure.in: Delete MMALLOC_CFLAGS, MMALLOC, --with-mmalloc,
6271 USE_MMALLOC, MMCHECK_FORCE.
6272 * gdbinit.in: Remove mmalloc.
6273 * utils.c: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE, malloc_botch.
6274 * config/alpha/alpha-linux.mh: Delete MMALLOC, MMALLOC_CFLAGS.
6275 * config/i386/go32.mh: Likewise.
6276 * config/i386/interix.mh: Likewise.
6277 * config/powerpc/xm-linux.h: Delete MMAP_BASE_ADDRESS, MMAP_INCREMENT.
6278
6279 2004-01-19 Jeff Johnston <jjohnstn@redhat.com>
6280
6281 * linespec.c (decode_variable, symtab_from_filename): Call
6282 error_silent with error message instead of throwing an exception
6283 directly.
6284 * defs.h (error_silent, error_output_message): Add prototypes.
6285 (catch_exceptions_with_msg): Ditto.
6286 * utils.c (error_silent, error_output_message): New functions.
6287 * top.c (catch_exceptions_with_msg): New function.
6288
6289 2004-01-20 Nick Roberts <nick@nick.uklinux.net>
6290
6291 * mi/mi-cmds.h (enum print_values): Add definition.
6292
6293 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Print the name,
6294 type and value for simple data types and just the name and type
6295 for complex ones, if required.
6296
6297 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Print the values of the
6298 children, if required.
6299
6300 2004-01-19 Kevin Buettner <kevinb@redhat.com>
6301
6302 * frv-tdep.c (frv_push_arguments, frv_saved_pc_after_call): Delete
6303 unused declarations.
6304
6305 2004-01-19 Andrew Cagney <cagney@redhat.com>
6306
6307 * top.h (mapped_symbol_files): Delete declaration.
6308 * main.c (captured_main): Delete option "m" and "mapped".
6309 * objfiles.c (mapped_symbol_files): Delete variable.
6310 * symfile.c (symbol_file_command): Delete mmap code.
6311 (symbol_file_add_with_addrs_or_offsets): Ditto.
6312 (add_symbol_file_command, reread_separate_symbols): Ditto.
6313 * objfiles.h (OBJF_MAPPED): Delete.
6314 * objfiles.c (allocate_objfile) [USE_MMALLOC]: Delete.
6315 (free_objfile) [USE_MMALLOC]: Ditto.
6316 (open_existing_mapped_file): Delete function.
6317 (open_mapped_file): Delete function.
6318 (map_to_file): Delete function.
6319
6320 2004-01-19 Kevin Buettner <kevinb@redhat.com>
6321
6322 * infrun.c (step_into_function): Account for possible breakpoint
6323 adjustment when computing ``stop_func_start''.
6324
6325 2004-01-19 Kevin Buettner <kevinb@redhat.com>
6326
6327 * target.c (default_region_size_ok_for_hw_watchpoint): Compare
6328 the region size against the size of a pointer, not the size of
6329 a register as given by DEPRECATED_REGISTER_SIZE.
6330
6331 2004-01-19 Andrew Cagney <cagney@redhat.com>
6332
6333 * tui/tui-regs.h: Include "tui-data.h".
6334 (tuiFirstRegElementNoInLine): Delete declaration.
6335 (tui_display_registers_from): Rename tuiDisplayRegistersFrom.
6336 (tui_last_regs_line_no): Rename tuiLastRegsLineNo.
6337 (tui_line_from_reg_element_no): Rename tuiLineFromRegElementNo.
6338 (tui_calculate_regs_column_count): Rename
6339 tuiCalculateRegsColumnCount.
6340 (tui_check_register_values): Rename tuiCheckRegisterValues.
6341 (tui_show_registers): Rename tuiShowRegisters.
6342 (tui_display_registers_from_line): Rename
6343 tuiDisplayRegistersFromLine.
6344 (tui_first_reg_element_inline): Rename tuiFirstRegElementInLine.
6345 (tui_toggle_float_regs): Rename tuiToggleFloatRegs.
6346 (tui_first_reg_element_no_inline): Rename
6347 tuiFirstRegElementNoInLine.
6348 * tui/tui-data.h: Update copyright.
6349 (enum tui_register_display_type): Rename _TuiRegisterDisplayType.
6350 * tui/tui-windata.c: Update copyright, update references.
6351 * tui/tui-regs.c: Update copyright, update references.
6352 * tui/tui-win.c: Update copyright, update references.
6353 * tui/tui-layout.c: Update copyright, update references.
6354
6355 2004-01-18 Andrew Cagney <cagney@redhat.com>
6356
6357 * tui/tui-io.c: Update copyright.
6358 (key_is_end_sequence, key_is_backspace): New functions.
6359 (key_is_command_char, key_is_start_sequence): New function.
6360 (tui_getc): Update references.
6361 * tui/tui-io.h: Update copyright.
6362 (m_tuiStartNewLine): Delete macro.
6363 (m_isBackspace, m_isDeleteChar): Delete macros.
6364 (m_isDeleteLine, m_isDeleteToEol): Delete macros.
6365 (m_isNextPage, m_isPrevPage): Delete macros.
6366 (m_isLeftArrow, m_isRightArrow): Delete macros.
6367 (m_isXdbStyleCommandChar): Delete macro.
6368 (key_is_start_sequence): Declare, replace m_isStartSequence.
6369 (key_is_end_sequence): Declare, replace m_isEndSequence.
6370 (key_is_backspace): Declare ,replace m_isBackspace.
6371 (key_is_command_char): Declare, replace m_isCommandChar.
6372 * tui/tui-command.c: Update copyright.
6373 (tuiDispatchCtrlChar): Update references.
6374
6375 * config/djgpp/fnchange.lst: Delete tui/tuiSourceWin.c and
6376 tuiSourceWin.h.
6377
6378 * tui/tui-command.c: Rename tui/tuiCommand.c.
6379 * tui/tui-command.h: Rename tui/tuiCommand.h.
6380 * tui/tui-data.c: Rename tui/tuiData.c.
6381 * tui/tui-data.h: Rename tui/tuiData.h.
6382 * tui/tui-disasm.c: Rename tui/tuiDisassem.c.
6383 * tui/tui-disasm.h: Rename tui/tuiDisassem.h.
6384 * tui/tui-io.c: Rename tui/tuiIO.c.
6385 * tui/tui-io.h: Rename tui/tuiIO.h.
6386 * tui/tui-layout.c: Rename tui/tuiLayout.c.
6387 * tui/tui-layout.h: Rename tui/tuiLayout.h.
6388 * tui/tui-regs.c: Rename tui/tuiRegs.c.
6389 * tui/tui-regs.h: Rename tui/tuiRegs.h.
6390 * tui/tui-source.c: Rename tui/tuiSource.c.
6391 * tui/tui-source.h: Rename tui/tuiSource.h.
6392 * tui/tui-stack.c: Rename tui/tuiStack.c.
6393 * tui/tui-stack.h: Rename tui/tuiStack.h.
6394 * tui/tui-win.c: Rename tui/tuiWin.c.
6395 * tui/tui-win.h: Rename tui/tuiWin.h.
6396 * tui/tui-windata.c: Rename tui/tuiDataWin.c.
6397 * tui/tui-windata.h: Rename tui/tuiDataWin.h.
6398 * tui/tui-wingeneral.c: Rename tui/tuiGeneralWin.c.
6399 * tui/tui-wingeneral.h: Rename tui/tuiGeneralWin.h.
6400 * tui/tui-winsource.c: Rename tui/tuiSourceWin.c.
6401 * tui/tui-winsource.h: Rename tui/tuiSourceWin.h.
6402 * tui/tui-file.c: Update includes.
6403 * tui/tui-hooks.c: Update includes.
6404 * tui/tui-interp.c: Update includes.
6405 * tui/tui.c: Update includes.
6406 * Makefile.in: Update all tui/ dependencies.
6407 (SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS): Update file names.
6408
6409 * Makefile.in: Update copyright. Update dependencies.
6410
6411 * tui/tuiSourceWin.c (tui_update_breakpoint_info): Fix compile
6412 problem.
6413
6414 2004-01-18 Andrew Cagney <cagney@redhat.com>
6415
6416 * mn10300-tdep.c (_initialize_mn10300_tdep): Call gdbarch_register
6417 instead of register_gdbarch_init.
6418
6419 * remote-sds.c (tohex): Delete unused function. Update copyright.
6420 * xstormy16-tdep.c (xstormy16_register_virtual_size): Ditto.
6421 * v850-tdep.c (v850_register_virtual_size): Ditto.
6422 * target.c (normal_target_post_startup_inferior): Ditto.
6423 * source.c (ambiguous_line_spec): Ditto.
6424 * remote.c (adapt_remote_get_threadinfo): Ditto.
6425 * mi/mi-out.c (out_field_fmt): Ditto.
6426 * mi/mi-interp.c (mi_interp_read_one_line_hook): Ditto.
6427 (output_control_change_notification): Ditto.
6428 * m68k-tdep.c (m68k_register_byte): Ditto.
6429 (m68k_remote_breakpoint_from_pc): Ditto.
6430 * ui-out.c (init_ui_out_state): Delete unused declaration.
6431 * stabsread.c (search_value): Ditto.
6432 * mi/mi-cmd-env.c (env_cli_command): Ditto.
6433 * maint.c (print_section_table): Ditto.
6434 * infrun.c (set_follow_fork_mode_command): Ditto.
6435
6436 2004-01-18 Mark Kettenis <kettenis@gnu.org>
6437
6438 * dwarf2-frame.c (execute_cfa_program): Move DWA_CFA_nop before
6439 DW_CFA_def_cfa_exporession. Add support for
6440 DW_CFA_offset_extendend_sf, DW_CFA_def_cfa_sf and
6441 DW_CFA_def_cfa_offset_sf. This should fix PR backtrace/1391.
6442
6443 2004-01-18 Andrew Cagney <cagney@redhat.com>
6444
6445 * ocd.c: Update copyright.
6446 (bdm_read_register_command): Delete unused function.
6447 (_initialize_remote_ocd): Delete commented out reference.
6448 (get_quoted_char, reset_packet): Delete #if0ed function.
6449 (output_packet, put_quoted_char): Delete #if0ed function.
6450 (stu_put_packet, stu_get_packet): Delete #if0ed function.
6451 (ocd_start_remote): Delete #if0ed code, remove #if1 wrapper.
6452 (BDM_BREAKPOINT): Delete #if0ed macro.
6453 (remote_timeout): Delete #if0ed variable.
6454
6455 2004-01-18 Mark Kettenis <kettenis@gnu.org>
6456
6457 * Makefile.in (ALLDEPFILES): Remove core-sol2.c.
6458 (core-sol2.o): Remove dependency.
6459 * core-sol2.c: Remove file.
6460
6461 2004-01-17 Andrew Cagney <cagney@redhat.com>
6462
6463 * mdebugread.c (compare_blocks): Make addr_diff a LONGEST.
6464 * block.h: Make GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOOCK
6465 enums.
6466
6467 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
6468
6469 * remote.c: Update copyright years.
6470
6471 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
6472
6473 * remote.c (remote_vcont_resume): Use xstrprintf instead of sprintf.
6474
6475 2004-01-17 Andrew Cagney <cagney@redhat.com>
6476
6477 * mdebugread.c: Update copyright.
6478 (parse_symbol): Replace DEPRECATED_STREQ with strcmp.
6479 (parse_type, parse_procedure): Ditto.
6480 (parse_partial_symbols, psymtab_to_symtab_1): Ditto.
6481
6482 * cris-tdep.c (cris_store_struct_return): Put back accidently
6483 deleted function.
6484
6485 * gdbarch.sh: Update copyright year.
6486 * gdbarch.h, gdbarch.c: Re-generate.
6487
6488 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
6489
6490 Suggested by George Anzinger.
6491 * dwarf2expr.c (execute_stack_op): Fetch the second item from the
6492 correct stack offset. Include unknown opcode numbers in the error
6493 message.
6494
6495 2004-01-17 Andrew Cagney <cagney@redhat.com>
6496
6497 * x86-64-tdep.c (x86_64_init_abi): No need to clear
6498 extract_struct_value_address, i386 does not set it.
6499 * sparc64-tdep.c (sparc64_init_abi): Do not set
6500 extract_struct_value_address, never called.
6501 (sparc64_extract_struct_value_address): Delete function.
6502 * m68hc11-tdep.c: Update copyright.
6503 (m68hc11_gdbarch_init): Delete redundant assignment of
6504 extract_struct_value_address.
6505 * i386-tdep.c: Update copyright.
6506 (i386_gdbarch_init): Do not set extract_struct_value_address,
6507 never called.
6508 (i386_extract_struct_value_address): Delete function.
6509 * sparc-tdep.c (sparc32_gdbarch_init): Do not set
6510 extract_struct_value_address, never called.
6511 (sparc32_extract_struct_value_address): #if 0 function. Add
6512 comments explaining its future.
6513
6514 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
6515
6516 * arm-tdep.c (arm_write_pc): New function.
6517 (arm_gdbarch_init): Call set_gdbarch_write_pc.
6518
6519 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
6520
6521 * breakpoint.c (must_shift_inst_regs): Delete.
6522 (bpstat_stop_status): Delete references to DECR_PC_AFTER_HW_BREAK
6523 and SHIFT_INST_REGS.
6524 * infcmd.c (step_1, step_1_continuation): Delete references to
6525 SHIFT_INST_REGS.
6526 * infrun.c (keep_going): Likewise.
6527 * target.h (DECR_PC_AFTER_HW_BREAK): Don't define.
6528 * config/i386/nm-i386.h (DECR_PC_AFTER_HW_BREAK): Likewise.
6529
6530 2004-01-17 Andrew Cagney <cagney@redhat.com>
6531
6532 * gdbarch.sh (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
6533 * gdbarch.h, gdbarch.c: Re-generate.
6534 * infcmd.c (print_return_value): Delete reference to
6535 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
6536
6537 * cris-tdep.c (cris_gdbarch_init): Do not set
6538 deprecated_extract_struct_value_address.
6539
6540 * xstormy16-tdep.c: Update copyright.
6541 (xstormy16_extract_struct_value_address): Update to current
6542 extract struct value address interface.
6543 (xstormy16_gdbarch_init): Set extract_struct_value_address.
6544 * sh64-tdep.c (sh64_extract_struct_value_address): Update to
6545 current extract struct value address interface.
6546 (sh64_gdbarch_init): Set extract_struct_value_address.
6547
6548 * cris-tdep.c: Update copyright.
6549 (cris_extract_struct_value_address): Delete function.
6550 (struct_return_address): Delete variable.
6551 (cris_store_struct_return): Do not set struct_return_address.
6552
6553 * mcore-tdep.c: Update copyright.
6554 (mcore_extract_struct_value_address): Delete function. Update
6555 comments.
6556 (mcore_gdbarch_init): Update.
6557 * mn10300-tdep.c: Update copyright.
6558 (mn10300_extract_struct_value_address): Delete function.
6559 (mn10300_gdbarch_init): Update.
6560 * v850-tdep.c: Update copyright.
6561 (v850_extract_struct_value_address): Delete.
6562 (v850_gdbarch_init): Update.
6563 * ns32k-tdep.c: Update copyright.
6564 (ns32k_extract_struct_value_address): Delete.
6565 (ns32k_gdbarch_init): Update.
6566 * hppa-tdep.c (hppa_extract_struct_value_address): Delete.
6567 (hppa_gdbarch_init): Update.
6568 * vax-tdep.c: Update copyright.
6569 (vax_extract_struct_value_address): Delete.
6570 (vax_gdbarch_init): Update.
6571
6572 * gdbarch.sh (DEPRECATED_NPC_REGNUM): Delete.
6573 * gdbarch.h, gdbarch.c: Re-generate.
6574 * procfs.c (procfs_fetch_registers): Delete reference to
6575 DEPRECATED_NPC_REGNUM.
6576 (procfs_store_registers): Ditto.
6577 * regcache.c (generic_target_write_pc): Simplify.
6578 * lynx-nat.c: Delete #ifdef SPARC code. Not used.
6579
6580 * core-sol2.c (fetch_core_registers): Replace
6581 DEPRECATED_NPC_REGNUM with equivalent tdep value.
6582
6583 * hppa-tdep.c: Update copyright year.
6584 (hppa_target_write_pc): Use PCOQ_TAIL_REGNUM instead of
6585 NPC_REGNUM.
6586 (hppa_gdbarch_init): Do not set deprecated_npc_regnum.
6587
6588 * mips-tdep.c (mips_write_pc): New function.
6589 (mips_gdbarch_init): Set "write_pc" to "mips_write_pc".
6590 (mips_read_pc): Use mips_regnum instead of PC_REGNUM.
6591 (mips_find_saved_regs, mips_software_single_step: Ditto.
6592 (mips_frame_saved_pc, mips_frame_saved_pc): Ditto.
6593 mips_init_extra_frame_info, mips_pop_frame): Ditto.
6594
6595 2004-01-17 Andrew Cagney <cagney@redhat.com>
6596
6597 * mips-tdep.c: Re-indent. Group functions by ABI.
6598
6599 2004-01-17 Andrew Cagney <cagney@redhat.com>
6600
6601 * gdbarch.sh (DECR_PC_AFTER_BREAK): Make zero the default.
6602 * gdbarch.c: Re-generate.
6603 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
6604 DECR_PC_AFTER_BREAK to zero.
6605 * vax-tdep.c (vax_gdbarch_init): Ditto.
6606 * v850-tdep.c (v850_gdbarch_init): Ditto.
6607 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
6608 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
6609 * sh-tdep.c (sh_gdbarch_init): Ditto.
6610 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6611 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
6612 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6613 * mips-tdep.c (mips_gdbarch_init): Ditto.
6614 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6615 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
6616 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
6617 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
6618 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
6619 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
6620 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6621 * frv-tdep.c (frv_gdbarch_init): Ditto.
6622 * cris-tdep.c (cris_gdbarch_init): Ditto.
6623 * avr-tdep.c (avr_gdbarch_init): Ditto.
6624 * arm-tdep.c (arm_gdbarch_init): Ditto.
6625 * i386-nto-tdep.c (i386nto_init_abi): Add comment.
6626
6627 2004-01-17 J. Brobecker <brobecker@gnat.com>
6628
6629 * dwarf2read.c (dwarf2_non_const_array_bound_ignored_complaint):
6630 Delete, no longer used.
6631 (read_subrange_type): New function, mostly extracted from
6632 read_array_type().
6633 (read_array_type): Replace extracted code by call to
6634 read_subrange_type().
6635 (dwarf2_get_attr_constant_value): New function.
6636 (scan_partial_symbols): Add handling for DW_TAG_subrange_type.
6637 (add_partial_symbol): Likewise.
6638 (process_die): Likewise.
6639 (new_symbol): Likewise.
6640 (read_type_die): Likewise.
6641
6642 2004-01-16 Andrew Cagney <cagney@redhat.com>
6643
6644 * symfile.c: Update copyright year.
6645 (compare_symbols): Delete unused function.
6646 * stabsread.c: Update copyright year.
6647 (lrs_general_complaint): Delete unused function.
6648 (ref_search_value): Ditto.
6649 (get_substring): Delete declaration.
6650 * sh64-tdep.c: Update copyright year.
6651 (sh64_get_gdb_regnum): Delete unused function.
6652 * dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint):
6653 Delete unused function.
6654
6655 2004-01-17 Mark Kettenis <kettenis@gnu.org>
6656
6657 * defs.h (gdb_osabi): Add GDB_OSABI_OPENBSD_ELF.
6658 * osabi.c (gdb_osabi_names): Add "OpenBSD ELF".
6659
6660 2004-01-16 Andrew Cagney <cagney@redhat.com>
6661
6662 Changes from Peter Schauer.
6663 * rs6000-tdep.c: Update copyright year.
6664 (rs6000_push_dummy_call): Update the stack pointer before
6665 accessing the corresponding stack region.
6666 * rs6000-nat.c: Update copyright year.
6667 (set_host_arch): Set "info.abfd" to "exec_bfd".
6668
6669 2004-01-15 Mark Kettenis <kettenis@gnu.org>
6670
6671 * blockframe.c: Update copyright year.
6672 (inside_entry_func): Don't treat a zero PC specially.
6673
6674 2004-01-14 Elena Zannoni <ezannoni@redhat.com>
6675
6676 * gcore.c (gcore_copy_callback): Use paddr_d to print size
6677 variable.
6678 (gcore_create_callback): Ditto. Skip any memory segment that has
6679 no permissions set.
6680
6681 2004-01-14 David Carlton <carlton@kealia.com>
6682
6683 Change symbols for C++ nested types to contain the fully qualified
6684 name, if possible. (At least in the DWARF-2 case.) Partial fix
6685 for PR's c++/57, c++/488, c++/539, c++/573, c++/609, c++/832,
6686 c++/895.
6687 * c-exp.y (qualified_type): Handle types nested within classes.
6688 * cp-namespace.c: Update comments.
6689 (cp_set_block_scope): Delete #if 0.
6690 (cp_lookup_nested_type): Handle types nested within classes.
6691 * dwarf2read.c: (scan_partial_symbols): Call add_partial_structure
6692 when appropriate.
6693 (add_partial_symbol): Add the name of the enclosing namespace to
6694 types.
6695 (pdi_needs_namespace): New.
6696 (add_partial_namespace): Tweak comment.
6697 (add_partial_structure): New.
6698 (psymtab_to_symtab_1): Initialize processing_current_prefix
6699 here...
6700 (process_die): instead of here.
6701 (read_structure_scope): Try to figure out the name of the class or
6702 namespace that the structure might be defined within.
6703 (read_enumeration): Generate fully-qualified names, if possible.
6704 (read_namespace): Don't set name to NULL.
6705 (die_specification): New.
6706 (new_symbol): Generate fully-qualified names for types.
6707 (read_type_die): Determine appropriate prefix.
6708 (determine_prefix): New.
6709 (typename_concat): New.
6710 (class_name): New.
6711 * valops.c (value_aggregate_elt): Pass NOSIDE to
6712 value_struct_elt_for_reference.
6713 (value_struct_elt_for_reference): Make static, add NOSIDE
6714 parameter, call value_maybe_namespace_elt as a last resort.
6715 (value_namespace_elt): Break out code into
6716 value_maybe_namespace_elt.
6717 (value_maybe_namespace_elt): New.
6718
6719 2004-01-12 Andrew Cagney <cagney@redhat.com>
6720
6721 * mips-tdep.c (mips_convert_register_p): Handle both raw and
6722 cooked floating-point registers.
6723 (mips_gdbarch_init): Set convert_register_p, register_to_value,
6724 and value_to_register.
6725
6726 2004-01-13 Andrew Cagney <cagney@redhat.com>
6727
6728 * gdbarch.sh (FUNCTION_START_OFFSET): Make zero the default.
6729 * gdbarch.c: Re-generate.
6730 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
6731 FUNCTION_START_OFFSET.
6732 * v850-tdep.c (v850_gdbarch_init): Ditto.
6733 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
6734 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
6735 * sh-tdep.c (sh_gdbarch_init): Ditto.
6736 * s390-tdep.c (s390_gdbarch_init): Ditto.
6737 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6738 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
6739 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6740 * mips-tdep.c (mips_gdbarch_init): Ditto.
6741 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6742 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
6743 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
6744 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
6745 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
6746 * i386-tdep.c (i386_gdbarch_init): Ditto.
6747 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
6748 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6749 * frv-tdep.c (frv_gdbarch_init): Ditto.
6750 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
6751 * cris-tdep.c (cris_gdbarch_init): Ditto.
6752 * avr-tdep.c (avr_gdbarch_init): Ditto.
6753 * arm-tdep.c (arm_gdbarch_init): Ditto.
6754 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
6755
6756 2004-01-13 Daniel Jacobowitz <drow@mvista.com>
6757
6758 * infrun.c (follow_fork_mode_ask): Remove.
6759 (follow_fork_mode_kind_names): Remove follow_fork_mode_ask.
6760 (follow_fork): Simplify and remove internal error for
6761 follow_fork_mode_ask.
6762 (_initialize_infrun): Update "set follow-fork-mode" help text.
6763
6764 2004-01-13 Andrew Cagney <cagney@redhat.com>
6765
6766 * configure.in: Update copyright year.
6767 (build_warnings): Add -Wunused-label.
6768 * configure: Re-generate.
6769
6770 2004-01-12 Andrew Cagney <cagney@redhat.com>
6771
6772 * exec.h (exec_ops): Make "extern".
6773
6774 * mips-tdep.c (mips_pseudo_register_read): Don't return a value,
6775 the function is void.
6776 (mips_pseudo_register_write): Ditto.
6777
6778 2004-01-12 Andrew Cagney <cagney@redhat.com>
6779
6780 * stack.c (frame_info): Delete DEPRECATED_PRINT_EXTRA_FRAME_INFO
6781 call. Never defined.
6782 * sparc-tdep.h (struct frame_info): Add opaque declaration.
6783 * sparc64-tdep.h (struct gdbarch): Add opaque declaration.
6784 (struct sparc_gregset, struct regcache): Ditto.
6785 * sparc-nat.c: Update copyright. Specify "GNU/Linux".
6786
6787 2004-01-12 Andrew Cagney <cagney@redhat.com>
6788
6789 * mi/ChangeLog: Delete file. Renamed to ...
6790 * mi/ChangeLog-1999-2003: New file.
6791 * tui/ChangeLog: Delete file. Renamed to ...
6792 * tui/ChangeLog-1998-2003: New file.
6793
6794 2004-01-11 Mark Kettenis <kettenis@gnu.org>
6795
6796 * sparc64nbsd-tdep.c: Include "regset.h".
6797 (sparc64nbsd_sizeof_struct_reg, sparc64nbsd_sizeof_struct_fpreg):
6798 Remove variables.
6799 (fetch_core_registers): Remove function.
6800 (sparc64nbsd_core_fns): Remove variable.
6801 (sparc64nbsd_supply_gregset, sparc64nbsd_supply_fpregset): New
6802 functions.
6803 (sparc64nbsd_init_abi): Initialize TDEP->gregset,
6804 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
6805 (_initialize_sparc64nbsd_tdep): Remove call to add_core_fns.
6806
6807 * sparc-tdep.c (sparc32_extract_struct_value_address): Rename from
6808 sparc_extract_struct_value_address.
6809 (sparc32_gdbarch_init): Set extract_struct_value_address.
6810 * sparc64-tdep.c (sparc64_extract_struct_value_address): New
6811 function.
6812 (sparc64_init_abi): Set extract_struct_value_address. Don't set
6813 return_value_on_stack.
6814
6815 * NEWS: Mention that %cs and %ss have been added to the AMD64
6816 configurations
6817
6818 * frame.c: Update copyright year.
6819 (get_prev_frame): Improve comment.
6820
6821 * sparc64fbsd-tdep.c: Include "regset.h".
6822 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
6823 Remove variables.
6824 (fetch_core_registers): Remove function.
6825 (sparc64fbsd_core_fns): Remove variable.
6826 (sparc64fbsd_supply_gregset, sparc64fbsd_supply_fpregset): New
6827 functions.
6828 (sparc64fbsd_init_abi): Initialize TDEP->gregset,
6829 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
6830 (_initialize_sparc64fbsd_tdep): Remove call to add_core_fns.
6831
6832 * sparcnbsd-tdep.c: Include "regset.h".
6833 (fetch_core_registers): Remove function.
6834 (sparcnbsd_core_fns, sparcnbsd_elfcore_fns): Remove varaibles.
6835 (sparc32nbsd_supply_gregset, sparc32nbsd_supply_fpregset): New
6836 functions.
6837 (sparc32nbsd_init_abi): Initialize TDEP->gregset and
6838 TDEP->fpregset.
6839 (_initialize_sparcnbsd_tdep): Remove calls to add_core_fns.
6840
6841 * sparc-tdep.h (struct regset): Provide opaque declaration.
6842 (struct gdbarch_tdep): Add gregset, sizeof_gregset,
6843 fpregset and sizeof_fpregset members.
6844 * sparc-tdep.c (struct regset): Provide opaque declaration.
6845 (sparc_regset_from_core_section): New function.
6846 (sparc32_gdbarch_init): Initialize TDEP->gregset,
6847 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_fpregset.
6848 Set regset_from_core_section when appropriate.
6849
6850 2004-01-10 Mark Kettenis <kettenis@gnu.org>
6851
6852 * x86-64-tdep.c (amd64_non_pod_p): New function.
6853 (amd64_classify_aggregate): Return class memory for non-POD
6854 C++ structure types.
6855
6856 * x86-64-tdep.c (amd64_push_arguments): Add struct_return
6857 argument. Use it to reserve a register if necessary.
6858 (amd64_push_dummy_call): Pass STRUCT_RETURN in call to
6859 amd64_push_arguments.
6860
6861 * x86-64-tdep.c (amd64_classify_aggregate): Ignore static fields.
6862
6863 * x86-64-tdep.c (amd64_register_info): Add %cs and %ss. Adjust
6864 register numbers in comments.
6865 * x86-64-tdep.h: Update copyright year.
6866 (X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM, X86_64_XMM1_REGNUM):
6867 Adjust for addition of %cs and %ss.
6868 * amd64fbsd-nat.c: Update copyright year.
6869 (reg_offset): Add register offsets for %cs and %ss.
6870 * amd64fbsd-tdep.c: Update copyright year.
6871 (amd64fbsd_r_reg_offset): Add register offsets for %cs and %ss.
6872 (amd64fbsd_sc_reg_offset): Likewise.
6873 * x86-64-linux-nat.c: Update copyright year.
6874 (x86_64_linux_gregset64_reg_offset): Add register offsets for %cs
6875 and %ss.
6876 * amd64nbsd-nat.c: Update copyright year.
6877 (amd64nbsd32_r_reg_offset): Add register offsets for %cs and %ss.
6878 * amd64nbsd-tdep.c: Update copyright year.
6879 (amd64nbsd_r_reg_offset): Add register offsets for %cs and %ss.
6880 * x86-64-linux-tdep.c: Update copyright year.
6881 (user_to_gdb_regmap): Add mapping for %cs and %ss.
6882 (x86_64_linux_sc_reg_offset): Adjust for addition of %cs and %ss.
6883 * regformats/reg-x86-64.dat: Add %cs and %ss.
6884
6885 * blockframe.c (inside_entry_func): Reformat. Introduce new local
6886 variables to prevent long lines. Update comments to reflect
6887 reality.
6888
6889 2004-01-09 David Carlton <carlton@kealia.com>
6890
6891 Checked in by Elena Zannoni <ezannoni@redhat.com>.
6892 * dwarf2read.c (read_namespace): Pull out name-generating code
6893 into namespace_name. Rename previous_namespace to previous_prefix
6894 and processing_current_namespace to processing_current_prefix..
6895 (namespace_name): New function.
6896 (add_partial_symbol): Substitute uses of pdi->name with
6897 actual_name.
6898 * cp-support.h: Rename processing_current_namespace to
6899 processing_current_prefix.
6900 Update copyright year.
6901 * cp-namespace.c: Rename processing_current_namespace to
6902 processing_current_prefix.
6903 Update copyright year.
6904
6905 2004-01-09 Andrew Cagney <cagney@redhat.com>
6906
6907 * jv-valprint.c, ser-unix.c: Add missing copyright years.
6908
6909 2004-01-09 Mark Kettenis <kettenis@gnu.org>
6910
6911 * dbxread.c (read_dbx_symtab): Ignore N_PATCH stabs instead of
6912 complaining.
6913 (process_one_symbol): Deal with N_PATCH stabs.
6914
6915 2004-01-09 Elena Zannoni <ezannoni@redhat.com>
6916
6917 * dwarf2read.c (read_array_type): Discard FORTRAN_HACK macro and
6918 ifdeffed code.
6919 Update copyright year.
6920
6921 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
6922
6923 * config/pa/tm-hppa.h: Update extern declarations for
6924 hppa32_hpux_frame_saved_pc_in_sigtramp,
6925 hppa32_hpux_frame_base_before_sigtramp, and
6926 hppa32_hpux_frame_find_saved_regs_in_sigtramp.
6927
6928 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
6929
6930 * config/pa/tm-hppah.h: Update copyright years.
6931
6932 2004-01-08 Andrew Cagney <cagney@redhat.com>
6933
6934 * mips-tdep.c (mips_n32n64_reg_struct_has_addr): Delete function.
6935 (mips_o32_reg_struct_has_addr): Delete function.
6936 (mips_gdbarch_init): Update.
6937 (mips_extract_struct_value_address): Delete function.
6938
6939 2004-01-08 David Mosberger <davidm@hpl.hp.com>
6940
6941 * ia64-linux-tdep.c: Update GATE_AREA_END value to reflect
6942 reality.
6943
6944 2004-01-07 Andrew Cagney <cagney@redhat.com>
6945
6946 * mips-tdep.c (mips_gdbarch_init): Set elf_flags to the previous
6947 architecture's elf flags (when available).
6948
6949 * mips-tdep.c (mips_gdbarch_init): Move code determining the MIPS
6950 FPU to the start, check the MIPS FPU when looking for an old
6951 architecture.
6952 (set_mipsfpu_single_command): Update the architecture.
6953 (set_mipsfpu_double_command, set_mipsfpu_none_command): Ditto.
6954
6955 * mips-tdep.c (MIPS_DEFAULT_MASK_ADDRESS_P): Delete macro.
6956 (mips_mask_address_p): Add "tdep" parameter.
6957 (show_mask_address, mips_addr_bits_remove): Update.
6958 (mips_dump_tdep): Update.
6959 (MIPS_DEFAULT_STACK_ARGSIZE): Delete macro.
6960 (MIPS_STACK_ARGSIZE): Delete macro.
6961 (mips_stack_argsize, mips_eabi_push_dummy_call): Update.
6962 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call): Update.
6963 (mips_o64_push_dummy_call, mips_o32_return_value): Update.
6964 (mips_dump_tdep): Update.
6965 (MIPS_SAVED_REGSIZE): Delete macro.
6966 (MIPS_DEFAULT_SAVED_REGSIZE): Delete macro.
6967 (mips_saved_regsize, mips_eabi_use_struct_convention): Update.
6968 (mips_eabi_reg_struct_has_addr, mips_find_saved_regs): Update.
6969 (mips_frame_saved_pc, mips16_heuristic_proc_desc): Update.
6970 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call): Update.
6971 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update.
6972 (mips_pop_frame, return_value_location): Update.
6973 (mips_n32n64_return_value, mips_dump_tdep): Update.
6974
6975 * mips-tdep.c (mips_gdbarch_init): Clean up code selecting the
6976 MIPS ABI.
6977
6978 * mips-tdep.c: Update copyright.
6979 (mips_gdbarch_init): Merge two code blocks handling the register
6980 name and number layout.
6981
6982 2004-01-02 Pawel Ostrowski <pasza@zodiac.mimuw.edu.pl>
6983
6984 * tracepoint.c (validate_actionline): Fix segv at EOF
6985
6986 2004-01-07 Michael Chastain <mec.gnu@mindspring.com>
6987
6988 * hpread.c (hpread_read_struct_type): Call SET_FIELD_PHYSNAME
6989 properly for static fields.
6990
6991 2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
6992 Jason Molenda <jmolenda@apple.com>
6993
6994 * disasm.c: Update copyright to include 2004.
6995 (do_mixed_source_and_assembly): For uiout asm list
6996 and tuple cleanups, initialize to null_cleanup instead of
6997 NULL and do so prior to loop. Only reset when we close off
6998 the tuple/list. Move check for whether to close off the
6999 asm tuple/list to after dump_insns call where it will be run
7000 on each loop iteration.
7001
7002 2004-01-05 Andrew Cagney <cagney@redhat.com>
7003
7004 * ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
7005 should be a switch case and not a label.
7006 * mips-tdep.c (mips32_next_pc): Delete unused labels
7007 "greater_equal_branch" and "less_zero_branch".
7008 * jv-valprint.c (java_print_value_fields): Delete unused label
7009 "flush_it".
7010
7011 * target.c (unpush_target): Only close a target that is in the
7012 target stack.
7013
7014 2004-01-05 Mark Kettenis <kettenis@gnu.org>
7015
7016 * sparc-tdep.c (sparc_extract_struct_value_address): Get the
7017 address from [sp + 64] instead of %o2.
7018
7019 * frame.c (get_prev_frame): Don't try to unwind the PC. This
7020 fixes PR backtrace/1476.
7021
7022 2004-01-05 Andrew Cagney <cagney@redhat.com>
7023
7024 * libunwind-frame.h (struct frame_id): Add opaque declaration,
7025 move to start of file.
7026 * i386-tdep.h (struct regcache): Add opaque declaration.
7027 * config/ia64/nm-linux.h (struct target_ops): Add opaque
7028 declaration.
7029 * ia64-tdep.c (ia64_find_proc_info_x): Do not use __FUNCTION__.
7030 (ia64_gdbarch_init): Use "GNU/Linux" in comment.
7031 * win32-nat.c (fake_create_process): Use ISO C style definition.
7032 * stabsread.c (define_symbol): Delete #ifndef
7033 DEPRECATED_USE_REGISTER_NOT_ARG wrapper around
7034 stabs_argument_has_addr call, macro never defined.
7035
7036 2004-01-04 Michael Chastain <mec.gnu@mindspring.com>
7037
7038 * op50-rom.c: Delete.
7039 * w89k-rom.c: Delete.
7040 * Makefile.in: Remove references.
7041
7042 2004-01-04 Mark Kettenis <kettenis@gnu.org>
7043
7044 * x86-64-tdep.c: Update copyright year.
7045 (struct amd64_register_info): Rename from x86_64_register_info.
7046 (amd64_register_info): Rename from x86_64_register_info.
7047 (AMD64_NUM_REGS): Rename from X86_64_NUM_REGS.
7048 (amd64_register_name): Rename from x86_64_register_name.
7049 (amd64_register_type): Rename from x86_64_register_type.
7050 (amd64_dwarf_regmap): Rename from x86_64_dwarf_regmap.
7051 (amd64_dwarf_regmap_len): Rename from x86_64_dwarf_regmap_len.
7052 (amd64_dwarf_reg_to_regnum): Rename from
7053 x86_64_dwarf_reg_to_regnum.
7054 (amd64_convert_register_p): Rename from x86_64_convert_register_p.
7055 (amd64_push_dummy_call): Rename from x86_64_push_dummy_call.
7056 (AMD64_NUM_SAVED_REGS): Rename from X86_64_NUM_SAVED_REGS.
7057 (struct amd64_frame_cache): Renamed from x86_64_frame_cache.
7058 (amd64_alloc_frame_cache): Renamed from x86_64_alloc_frame_cache.
7059 (amd64_analyze_prologue): Rename from x86_64_analyze_prologue.
7060 (amd64_skip_prologue): Rename from x86_64_skip_prologue.
7061 (amd64_frame_cache): Rename from x86_64_frame_cache.
7062 (amd64_frame_this_id): Rename from x86_64_frame_this_id.
7063 (amd64_frame_prev_register): Rename from
7064 x86_64_frame_prev_register.
7065 (amd64_frame_unwind): Rename from x86_64_frame_unwind.
7066 (amd64_frame_sniffer): Rename from x86_64_frame_sniffer.
7067 (amd64_sigtramp_frame_cache): Rename from
7068 x86_64_sigtramp_frame_cache.
7069 (amd64_sigtramp_frame_prev_register): Rename from
7070 x86_64_sigtramp_frame_prev_register.
7071 (amd64_sigtramp_frame_unwind): Rename from
7072 x86_64_sigtramp_frame_unwind.
7073 (amd64_sigtramp_frame_sniffer): Rename from
7074 x86_64_sigtramp_frame_sniffer.
7075 (amd64_frame_base_address): Rename from x86_64_frame_base_address.
7076 (amd64_frame_base): Rename from x86_64_frame_base.
7077 (amd64_unwind_dummy_id): Rename from x86_64_unwind_dummy_id.
7078 (amd64_frame_align): Rename from x86_64_frame_align.
7079 (amd64_supply_fpregset): Rename from x86_64_supply_fpregset.
7080 (amd64_regset_from_core_section): Rename from
7081 x86_64_regset_from_core_section.
7082 (x86_64_init_abi): Update comments.
7083
7084 2004-01-04 Nick Roberts <nick@nick.uklinux.net>
7085
7086 * MAINTAINERS (write after approval): Add myself.
7087
7088 2004-01-04 Mark Kettenis <kettenis@gnu.org>
7089
7090 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
7091 `float' arguments.
7092
7093 2004-01-04 Mark Kettenis <kettenis@gnu.org>
7094
7095 * sparc64-tdep.c (sparc64_store_floating_fields): Update comment
7096 such that it mentions a specific version of GCC that exhibits this
7097 bug.
7098
7099 2004-01-03 Mark Kettenis <kettenis@gnu.org>
7100
7101 * sparc64-tdep.c (sparc64_store_floating_fields): If TYPE is a
7102 structure that has a single `float' member, store it in %f1 in
7103 addition to %f0.
7104
7105 * sparc-sol2-nat.c: Add missing '\'.
7106
7107 * sparc-tdep.c (sparc32_return_value): New function.
7108 (sparc32_use_struct_convention, sparc32_return_value_on_stack):
7109 Remove functions.
7110 (sparc32_gdbarch_init): Set return_value, don't set
7111 extract_return_value, store_return_value, use_struct_convention
7112 and return_value_on_stack.
7113
7114 * sparc-sol2-nat.c: Add missing ')'.
7115
7116 2004-01-03 J. Brobecker <brobecker@gnat.com>
7117
7118 * infrun.c (handle_step_into_function): New function.
7119 (handle_inferior_event): Extract out some code into the new
7120 function above.
7121
7122 2004-01-03 J. Brobecker <brobecker@gnat.com>
7123
7124 * infrun.c (handle_inferior_event): Move the declaration of
7125 real_stop_pc inside the if blocks where it is used.
7126
7127 2004-01-03 Mark Kettenis <kettenis@gnu.org>
7128
7129 * sparc64-tdep.c (sparc64_16_byte_align_p)
7130 (sparc64_store_floating_fields, sparc64_store_floating_fields):
7131 Use check_typedef to get subtypes of structures and unions.
7132 (sparc64_store_return_value): Fix calculation of the appropriate
7133 offset into VALBUF when storing a structure or union.
7134 (sparc64_return_value): New function.
7135 (sparc64_use_struct_convention): Remove function.
7136 (sparc64_init_abi): Set return_value, don't set
7137 extract_return_value, store_return_value and
7138 use_struct_convention.
7139
7140 2004-01-03 Eli Zaretskii <eliz@elta.co.il>
7141
7142 * config/djgpp/fnchange.lst: Add lines for COPYING.LIBGLOSS,
7143 bfd/doc/ChangeLog-9103, bfd/elf32-m68hc1x.c,
7144 gdb/config/alpha/xm-alphaosf.h,
7145 gdb/config/powerpc/tm-ppcle-eabi.h,
7146 gdb/config/rs6000/tm-rs6000-aix4.h, gdb/gdbtk/ChangeLog-2001,
7147 gdb/gdbtk/ChangeLog-2002, gdb/gdbtk/ChangeLog-2003,
7148 gdb/gdbtk/plugins/intel-pentium/intel-pentium.tcl.in,
7149 gdb/gdbtk/plugins/rhabout/rhabout.tcl.in, gdb/i386-linux-nat.c,
7150 gdb/ia64-aix-nat.c, gdb/ia64-aix-tdep.c, gdb/ia64-linux-nat.c,
7151 gdb/ia64-linux-nat.c, gdb/ppc-linux-tdep.c, gdb/ppc-linux-nat.c,
7152 gdb/sparc64nbsd-nat.c, gdb/sparc64nbsd-tdep.c,
7153 gdb/sparc64-linux-nat.c, gdb/sparc64-linux-tdep.c,
7154 gdb/sparc64-nat.c, gdb/sparc64-tdep.c, gdb/sparc64-sol2-tdep.c,
7155 gdb/sparc-sol2-nat.c, gdb/sparc-sol2-tdep.c,
7156 gdb/testsuite/gdb.gdbtk/, gdb/testsuite/gdb.mi/mi-var-child.exp,
7157 nclude/ChangeLog-9103, include/coff/ChangeLog-9103,
7158 include/elf/ChangeLog-9103, include/opcode/ChangeLog-9103,
7159 opcodes/ChangeLog-0001, opcodes/ChangeLog-0203,
7160 opcodes/openrisc-dis.c, opcodes/openrisc-desc.h,
7161 sim/frv/profile-fr550.c, sim/frv/profile-fr550.h,
7162 sim/sh64/sem-compact-switch.c, sim/sh64/sem-media-switch.c,
7163 sim/testsuite/sim/sh64/compact/ldsl-mach.cgs,
7164 sim/testsuite/sim/sh64/compact/ldsl-macl.cgs,
7165 sim/testsuite/sim/sh64/compact/stsl-mach.cgs, and
7166 sim/testsuite/sim/sh64/compact/stsl-macl.cgs.
7167 Remove lines for .cvsignore files.
7168
7169 2004-01-03 J. Brobecker <brobecker@gnat.com>
7170
7171 * infrun.c: Back out the previous change.
7172
7173 2004-01-03 Mark Kettenis <kettenis@gnu.org>
7174
7175 * NEWS: Mention revised SPARC target. Add sparc-*-lynxos* and
7176 sparc-*-sunos4* to the list of REMOVED configurations.
7177
7178 * configure.tgt: Add back sparc-*-vxworks*.
7179 * remote-vxsparc.c: Remove all includes except for "defs.h",
7180 "regcache.h", "vx-share/ptrace.h" and "vx-share/regPacket.h".
7181 Include "sparc-tdep.h".
7182 (SPARC_R_G1): New define.
7183 (vxsparc_gregset): New variable.
7184 (ext_format_sparc): Remove extern declaration.
7185 (vx_read_register): Rewrite to use sparc32_supply_gregset and
7186 sparc32_supply_fpregset.
7187 (vx_write_register): Rewrite to use sparc32_collect_gregset,
7188 sparc_collect_rwindow and sparc32_collect_fpregset.
7189 * config/sparc/tm-vxworks.h: New file, based on recently removed
7190 tm-vxsparc.h.
7191 * config/sparc/vxworks.mt: New file, based on recently removed
7192 vxworks.mt.
7193
7194 2004-01-03 J. Brobecker <brobecker@gnat.com>
7195
7196 * infrun.c (handle_step_into_function): New function.
7197 (handle_inferior_event): Extract out some code into the new
7198 function above.
7199
7200 2004-01-02 Mark Kettenis <kettenis@gnu.org>
7201
7202 * Makefile.in (ALLDEPFILES): Remove sparc-linux-nat.c and
7203 sparcl-tdep.c. Add sparc-linux-tdep.c, sparc-sol2-nat.c,
7204 sparc-sol2-tdep.c, sparc-sol2-nat.c, sparc-sol2-tdep.c,
7205 sparc64-linux-nat.c, sparc64-linux-tdep.c, sparc64-nat.c,
7206 sparc64-sol2-tdep.c, sparc64-tdep.c, sparc64fbsd-nat.c,
7207 sparc64fbsd-tdep.c, sparcnbsd-nat.c, sparcnbsd-tdep.c.
7208 (sparc_nat_h): New variable.
7209 (sparcbsd_nat_h, sparcnbsd_tdep_h): Remove variables.
7210 (tm-sun4os4.h): Remove dependency.
7211 (sparcbsd-nat.o, sparc-linux-nat.o): Remove dependencies.
7212 (sparc64fbsd-nat.o, sparc64fbsd-tdep.o, sparc64nbsd-nat.o,
7213 sparc64-tdep.o, sparc-nat.o, sparcnbsd-nat.o, sparcnbsd-tdep.o,
7214 sparc-tdep.o): Update dependencies.
7215 (sparc-linux-tdep.o, sparc-sol2-nat.o, sparc-sol2-tdep.o,
7216 sparc64-linux-nat.o, sparc64-linux-tdep.o, sparc64-nat.o,
7217 sparc64-sol2-tdep.o, sparc64-tdep.o, sparc64nbsd-tdep.o): New
7218 dependencies.
7219 * configure.host: Remove existing sparc-*-lynxos*,
7220 sparc-*-solaris*, sparc-*-sunos4*, sparc-*-sunos5*, sparc-*-*,
7221 ultrasparc-*-freebsd, sparcv9-*-freebsd, sparc64-*-linux*,
7222 sparcv9-*-* and sparc64-*-* triplets. Add new sparc64-*-linux*,
7223 sparc-*-solaris2*, sparcv9-*-solaris2* and sparc64-*-solaris2*
7224 triplets.
7225 * configure.tgt: Remove exitsing sparc-*-aout*, sparc-*-coff*,
7226 sparc-*-elf*, sparc*-lynxos*, sparc-*-solars2*, sparc-*-sunos4*,
7227 sparc-*-sunos5*, sparc-*-vxworks*, sparc64-*linux*, sparc64-*-*,
7228 sparcv9-*-* and commented out sparc64-*-solars2* triplets. Add
7229 new sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*,
7230 sparc64-*-linux, sparc-*-solaris2*, sparcv9-*-solaris*,
7231 sparc64-*-solaris2* and sparc64-*-* triplets.
7232 * sparc64-tdep.c: Update copyright year. Include "inferior.h",
7233 "symtab.h" and "objfiles.h".
7234 (BIAS): Remove define.
7235 (X_OP, X_RD, X_A, X_COND, X_OP2, X_IMM22, X_OP3, X_I, X_DISP22)
7236 (X_DISP19): Remove macros.
7237 (sparc_fetch_instruction): Remove function.
7238 (struct gdbarch_tdep): Remove definition.
7239 (SPARC64_NUM_REGS, SPARC64_NUM_PSEUDO_REGS): Use ARRAY_SIZE.
7240 (sparc_breakpoint_from_pc): Remove function.
7241 (struct sparc64_frame_cache): Remove definition.
7242 (sparc64_alloc_frame_cache, sparc64_analyze_prologue,
7243 sparc64_unwind_pc): Remove functions.
7244 (sparc64_skip_prologue): Use `struct sparc_frame_cache' instead of
7245 `struct sparc64_frame_cache. Call sparc_analyze_prologue instead
7246 of sparc64_analyze_prologue. Mark constant as ULL instead of UL.
7247 (sparc64_frame_cache): Change return type to `struct
7248 sparc_frame_cache *'. Simply call sparc_frame_cache.
7249 (sparc64_frame_this_id, sparc64_frame_prev_register,
7250 sparc64_frame_base_address): Use `struct sparc_frame_cache'
7251 instead of `struct sparc64_frame_cache.
7252 (sparc_unwind_dummy_id, sparc_extract_struct_value_address,
7253 sparc_analyze_control_transfer, sparc_software_single_step,
7254 sparc64_gdbarch_init, sparc_supply_rwindow, sparc_fill_rwindow,
7255 _initialize_sparc64_tdep): Remove functions.
7256 (TSTATE_CWP, TSTATE_ICC, TSTATE_XCC): New macros.
7257 (PSR_S, PSR_ICC, PSR_VERS, PSR_IMPL, PSR_V8PLUS, PSR_XCC): New
7258 macros.
7259 (sparc64_supply_gregset, sparc64_collect_gregset,
7260 sparc64_supply_fpregset, sparc64_collect_fpregset): New functions.
7261 (sparc64_init_abi): New function.
7262 * sparc64-tdep.h: Update copyright year. Fix typo in multiple
7263 inclusion guard. Include "sparc-tdep.h".
7264 (BIAS): Define.
7265 (r_tstate_offset, r_fprs_offset): New defines.
7266 (enum sparc_regnum): Remove defenition.
7267 (enum sparc64_regnum): Reformat.
7268 (sparc_supply_rwindow, sparc_fill_rwindow): Remove prototypes.
7269 (sparc64_init_abi, sparc64_supply_gregset,
7270 sparc64_collect_gregset, sparc64_supply_fpregset,
7271 sparc64_collect_fpregset): New prototypes.
7272 (sparc64_sol2_gregset, sparc64nbsd_gregset, sparc64fbsd_gregset):
7273 Add extern declarations.
7274 (sparc64_sol2_init_abi): New prototype.
7275 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
7276 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
7277 prototypes.
7278 * sparc64fbsd-nat.c: Include "sparc-nat.h", don't include
7279 "sparnbsd-nat.h".
7280 (sparc64fbsd_reg_supplies_p, sparc64fbsd_fpreg_supplies_p): Remove
7281 functions.
7282 (_initialize_sparc64fbsd_nat): Remove initialization of
7283 sparcbsd_supply_reg, sparcbsd_fill_reg, sparcbsd_supply_fpreg,
7284 sparcbsd_fill_fpreg, sparcbsd_reg_supplies_p,
7285 sparcbsd_fpreg_supplies_p. Initialize sparc_gregset.
7286 * sparc64fbsd-tdep.c: Update copyright year. Include "frame.h",
7287 "frame-unwind.h", "trad-frame.h" and "gdb_assert.h".
7288 (sparc64fbsd_r_global_offset, sparc64fbsd_r_out_offset)
7289 (sparc64fbsd_r_fprs_offset, sparc64fbsd_r_tnpc_offset)
7290 (sparc64fbsd_r_tpc_offset, sparc64fbsd_r_tstate_offset)
7291 (sparc64fbsd_r_y_offset): Remove variables.
7292 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
7293 Make static and const.
7294 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
7295 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
7296 functions.
7297 (sparc64fbsd_gregset): New variable.
7298 (fetch_core_registers): Replace calls to sparc64fbsd_supply_reg
7299 and sparc64fbsd_supply_fpreg with calls to sparc64_supply_gregset
7300 and sparc64_supply_fpregset.
7301 (sparc64fbsd_pc_in_sigtramp, sparc64fbsd_sigtramp_frame_cache)
7302 (sparc64fbsd_sigtramp_frame_this_id)
7303 (sparc64fbsd_sigtramp_frame_prev_register): New functions.
7304 (sparc64fbsd_sigtramp_frame_unwind): New variable.
7305 (sparc64fbsd_sigtramp_frame_sniffer): New function.
7306 (sparc64fbsd_init_abi): Set pc_in_sigtramp, append
7307 sparc64fbsd_sigtramp_frame_sniffer. Call sparc64_init_abi.
7308 * sparcnbsd-tdep.c: Update copyright year. Include
7309 "floatformat.h", "frame.h", "frame-unwind.h", "symtab.h",
7310 "trad-frame.h" and "gdb_assert.h", don't include "target.h",
7311 "value.h" and "sparcnbsd-tdep.h".
7312 (REG32_OFFSET_PSR, REG32_OFFSET_PC, REG32_OFFSET_NPC)
7313 (REG32_OFFSET_Y, REG32_OFFSET_GLOBAL, REG32_OFFSET_OUT)
7314 (REG64_OFFSET_TSTATE, REG64_OFFSET_PC, REG64_OFFSET_NPC)
7315 (REG64_OFFSET_Y, REG64_OFFSET_GLOBAL, REG64_OFFSET_OUT): Remove
7316 defines.
7317 (sparcnbsd_gregset): New variable.
7318 (sparcnbsd_supply_reg32, sparcnbsd_supply_reg64)
7319 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64)
7320 (sparcnbsd_supply_fpreg32, sparcnbsd_supply_fpreg64)
7321 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64): Remove functions.
7322 (sparc32nbsd_sigtramp_start, sparc32nbsd_sigtramp_end): New
7323 variables.
7324 (sparc32nbsd_pc_in_sigtramp, sparc32nbsd_sigcontext_frame_cache)
7325 (sparc32nbsd_sigcontext_frame_this_id)
7326 (sparc32nbsd_sigcontext_frame_prev_register): New functions.
7327 (sparc32nbsd_sigcontext_frame_unwind): New variable.
7328 (sparc32nbsd_sigtramp_frame_sniffer): New function.
7329 (sparcnbsd_get_longjmp_target_32,
7330 sparcnbsd_get_longjmp_target_64): Remove functions.
7331 (sparcnbsd_aout_in_solib_call_trampoline): Rewrite.
7332 (sparcnbsd_init_abi_common, sparcnbsd_init_aout,
7333 sparcnbsd_init_elf): Remove.
7334 (sparcnbsd_init_abi, sparcnbsd_aout_init_abi)
7335 (sparcnbsd_elf_init_abi): New functions.
7336 (_initialize_sparcnbsd_tdep): New prototype.
7337 (_initialize_sparnbsd_tdep): Update.
7338 * config/sparc/fbsd.mh (NATDEPFILES): Remove sparcbsd-nat.o and
7339 corelow.o. Add sparc64-nat.o and sparc-nat.o.
7340 * config/sparc/fbsd.mt (TDEPFILES): Add sparc-tdep.o and corelow.o.
7341 * config/sparc/linux.mh: Update comment.
7342 (XM_FILE, HOST_IPC): Remove variables.
7343 (NATDEPFILES): Add sparc-sol2-nat.o and core-regset.o. Remove
7344 sparc-linux-nat.o.
7345 * config/sparc/linux.mt: Update comment.
7346 (TDEPFILES): Add sparc-sol2-tdep.o and sparc-linux-tdep.o.
7347 * config/sparc/nbsd.mt: Reformat.
7348 * config/sparc/nbsd64.mh: Update comment.
7349 (NATDEPFILES): Add sparc-nat.o.
7350 * config/sparc/nbsd64.mt: Update comment.
7351 (TDEPFILES): Add sparc64-tdep.o and sparc64nbsd-tdep.o.
7352 (TM_FILE): Set to tm-nbsd.h.
7353 * config/sparc/nbsdelf.mh: Update comment.
7354 (NATDEPFILES): Add sparc-nat.o.
7355 (XM_FILE): Delete.
7356 * config/sparc/nbsdaout.mh: Update comment.
7357 (NATDEPFILES): Add sparc-nat.o
7358 (XM_FILE): Delete.
7359 * config/sparc/nm-linux.h: Update copyright year. Don't include
7360 "config/nm-svr4.h" and "solib.h". Add protection against multiple
7361 inclusion.
7362 (KERNEL_U_SIZE): Remove define.
7363 (kernel_u_size): Remove prototype.
7364 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define.
7365 * config/sparc/nm-nbsd.h: Update copyright. Don't include
7366 "regcache.h".
7367 (CHILD_PREPARE_TO_STORE): Remove define.
7368 * config/sparc/nm-nbsdaout.h: Tweak some comments.
7369 * sparc-nat.c, sparc-tdep.c, sparc-tdep.h, sparc64nbsd-nat.c,
7370 sparcnbsd-nat.c: Rewrite files.
7371 * config/sparc/tm-linux.h, config/sparc/tm-nbsd.h: Rewrite files.
7372 * sparc-linux-nat.c, sparcbsd-nat.c, sparcbsd-nat.h,
7373 sparcnbsd-tdep.h: Remove files.
7374 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4os4.h,
7375 config/sparc/nm-sun4sol2.h, config/sparc/sp64.mt,
7376 config/sparc/sp64linux.mt, config/sparc/sp64sol2.mt,
7377 config/sparc/sparc-em.mt, config/sparc/sparclynx.mh,
7378 config/sparc/sparclynx.mt, config/sparc/sun4os4.mh,
7379 config/sparc/sun4os4.mt, config/sparc/sun4sol2.mh,
7380 config/sparc/sun4sol2.mt, config/sparc/tm-sp64.h,
7381 config/sparc/tm-sp64linux.h, config/sparc/tm-sparc.h,
7382 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
7383 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
7384 config/sparc/tm-vxsparc.h, config/sparc/vxsparc.mt,
7385 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h: Remove files.
7386 * sparc-linux-tdep.c, sparc-nat.h, sparc-sol2-nat.c,
7387 sparc-sol2-tdep.c, sparc64-linux-nat.c, sparc64-linux-t dep.c,
7388 sparc64-nat.c, sparc64-sol2-tdep.c, sparc64nbsd-tdep.c: New files.
7389 * config/sparc/linux64.mh, config/sparc/linux64.mt,
7390 config/sparc/nm-sol2.h, config/sparc/sol2-64.mt,
7391 config/sparc/sol2.mh, config/sparc/sol2.mt, config/sparc/sparc.mt,
7392 config/sparc/sparc64.mt, config/sparc/tm-sol2.h: New files.
7393
7394 2004-01-02 Andrew Cagney <cagney@redhat.com>
7395
7396 From 2003-12-18 Kazuhiro Inaoka:
7397 * configure.host: Add m32r-linux target.
7398
7399 2004-01-02 Michael Chastain <mec.gnu@mindspring.com>
7400
7401 * top.c (print_gdb_version): Update year to 2004.
7402
7403 2004-01-02 Mark Mitchell <mark@codesourcery.com>
7404
7405 * MAINTAINERS: Add myself to the write-after-approval category.
7406
7407 2004-01-02 Daniel Jacobowitz <drow@mvista.com>
7408
7409 From Bernardo Innocenti <bernie@develer.com>:
7410 * configure.tgt: Add uClinux target.
7411
7412 2004-01-02 Andrew Cagney <cagney@redhat.com>
7413
7414 * utils.c (do_my_cleanups): Make static, add forward declaration.
7415 * defs.h (do_my_cleanups): Delete declaration.
7416
7417 2004-01-02 Eli Zaretskii <eliz@elta.co.il>
7418
7419 * config/djgpp/fnchange.lst: Add lines for gdb/ChangeLog-2003 and
7420 bfd/ChangeLog-0203.
7421
7422 2004-01-02 Mark Kettenis <kettenis@gnu.org>
7423
7424 * configure.in: Check for <machine/reg.h>. Check for `struct reg'
7425 in <machine/reg.h>.
7426 * configure, config.in: Regenerate.
7427
7428 For older changes see ChangeLog-2003, mi/ChangeLog-1999-2003, and
7429 tui/ChangeLog-1998-2003.
7430 \f
7431 Local Variables:
7432 mode: change-log
7433 left-margin: 8
7434 fill-column: 74
7435 version-control: never
7436 End:
This page took 0.211085 seconds and 4 git commands to generate.