a2aeda23fcaec3d966edd5d924f35369eaa2dcc6
[binutils-gdb.git] / gdb / ChangeLog
1 2004-09-30 Joel Brobecker <brobecker@gnat.com>
2
3 * mips-tdep.c (mips32_decode_reg_save): Remove, unused.
4 (mips32_fetch_instruction): Remove, unused.
5
6 2004-09-30 Joel Brobecker <brobecker@gnat.com>
7
8 * mips-tdep.c (mips_insn16_frame_cache): Remove dead code or
9 conditions that will always be true.
10
11 2004-09-30 Mark Kettenis <kettenis@gnu.org>
12
13 * vaxbsd-nat.c: Include "target,h" and "inf-ptrace.h".
14 (vaxbsd_fetch_inferior_registers): Rename from
15 fetch_inferior_registers. Make static.
16 (vaxbsd_store_inferior_registers): Rename from
17 store_inferior_registers. Make static.
18 (_initialize_vaxbsd_nat): Construct and add target vector.
19 * config/vax/nbsdaout.mh (NATDEPFILES): Remove infptrace.o and
20 inftarg.o. Add inf-child.o and inf-ptrace.o.
21 * config/vax/nbsdelf.mh (NATDEPFILES): Remove infptrace.o and
22 inftarg.o. Add inf-child.o and inf-ptrace.o.
23 (NAT_FILE): Remove.
24 * config/vax/obsd.mh (NATDEPFILES): Remove infptrace.o and
25 inftarg.o. Add inf-child.o and inf-ptrace.o.
26 (NAT_FILE): Remove.
27 * Makefile.in (vaxbsd-nat.o): Update dependencies.
28
29 * m88kbsd-nat.c: Include "target.h" and "inf-ptrace.h".
30 (m88kbsd_fetch_inferior_registers): Rename from
31 fetch_inferior_registers. Make static.
32 (m88kbsd_store_inferior_registers): Rename from
33 store_inferior_registers. Make static.
34 (_initialize_m88kbsd_nat): New prototype and function.
35 * config/m88k/obsd.mh (NATDEPFILES): Remove infptrace.o and
36 inftarg.o. Add inf-child.o and inf-ptrace.o.
37 (NAT_FILE): Remove.
38 * Makefile.in (m88kbsd-nat.o): Update dependencies.
39
40 2004-09-30 Andrew Cagney <cagney@gnu.org>
41
42 * target.c (target_xfer_partial): New function.
43 (target_read_memory_partial, target_write_memory_partial)
44 (default_xfer_partial, target_read_partial, target_write_partial)
45 (xfer_using_stratum): Use.
46 (debug_to_xfer_partial): Delete function.
47 (setup_target_debug): Do not override to_xfer_partial.
48
49 2004-09-30 Mark Kettenis <kettenis@chello.nl>
50
51 * fork-child.c: Update copyright year. Fix coding style.
52
53 2004-09-29 Mark Kettenis <kettenis@gnu.org>
54
55 * defs.h (msavestring, mstrsave): Remove prototypes.
56 * utils.c (msavestring, mstrsave): Remove functions.
57 * objfiles.c (allocate_objfile): Use xstrdup instead of mstrsave.
58 * solib-sunos.c (allocate_rt_common_objfile): Use xstrdup instead
59 of mstrsave.
60 * source.c (find_and_open_source): Use xstrdup instead of
61 mstrsave.
62
63 2004-09-30 Andrew Cagney <cagney@gnu.org>
64
65 * inf-ptrace.c (inf_ptrace_target): Do not set to_xfer_memory.
66 (inf_ptrace_xfer_memory): Delete.
67 * target.c (target_xfer_partial_p, xfer_using_stratum): New.
68 (target_read_memory, target_write_memory): Use xfer_using_stratum
69 when target_xfer_partial_p.
70 (debug_target): Move to start of file.
71 (target_read_memory_partial, target_write_memory_partial): Use
72 to_xfer_partial when target_xfer_partial_p.
73
74 * inf-ptrace.c (inf_ptrace_xfer_partial): Replace call to
75 inf_ptrace_xfer_memory with equivalent code.
76 * inftarg.c (child_xfer_partial): When performing a write, pass
77 writebuf to child_xfer_memory.
78
79 * target.c (target_read_string): Use target_read_memory instead of
80 target_xfer_memory.
81
82 2004-09-29 Andrew Cagney <cagney@gnu.org>
83
84 * infptrace.c (kill_inferior): Fix typo, in previous inline. Pass
85 the address of status.
86
87 * infptrace.c (ptrace_wait): Mention problem with HPUX.
88 (kill_inferior): Inline ptrace_wait call.
89 * linux-nat.c (kill_inferior): Inline ptrace_wait call.
90 * inftarg.c (child_wait): Inline ptrace_wait call.
91
92 * target.h (struct target_ops): Delete field to_post_wait.
93 (target_post_wait): Delete macro.
94 (child_post_wait): Delete declaration.
95 * target.c (update_current_target, update_current_target)
96 (debug_to_post_wait, setup_target_debug): Delete functions and
97 references.
98 * infttrace.c (ptrace_wait): Delete call to target_post_wait.
99 * inftarg.c (child_post_wait): Delete.
100 (init_child_ops): Do not set to_post_wait.
101 * infptrace.c (ptrace_wait): Delete call to target_post_wait.
102 * inf-ptrace.c (inf_ptrace_wait): Delete call to target_post_wait.
103 * inf-child.c (inf_child_post_wait): Delete.
104 (inf_child_target): Do not set to_post_wait.
105 * inf-ptrace.c (inf_ptrace_post_wait): Delete.
106 (inf_ptrace_target): Do not set to_post_wait.
107
108 * wince.c (child_ops): Delete.
109 * win32-nat.c (child_ops): Delete.
110
111 * inftarg.c (inftarg_set_find_memory_regions)
112 (inftarg_set_make_corefile_notes): Delete functions.
113 (_initialize_linux_nat): Inline calls.
114
115 * target.h (child_ops): Declare.
116 * inftarg.c (child_ops): Move from here ...
117 * target.c (child_ops): ... to here.
118 * wince.c (child_ops): Delete extern declaration.
119 * win32-nat.c (child_ops): Delete extern declaration.
120 * linux-nat.c (child_ops): Delete extern declaration.
121 * hpux-thread.c (child_ops): Delete extern declaration.
122
123 2004-09-28 Mark Kettenis <kettenis@gnu.org>
124
125 * configure.tgt: Set default OS/ABI for OpenBSD ELF targets.
126
127 2004-09-28 Mark Kettenis <kettenis@gnu.org>
128
129 * configure.in: Only set host_makefile_frag when building a native
130 debugger.
131 * configure: Regenerate.
132
133 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Register OS/ABI
134 for OpenBSD ELF.
135
136 2004-09-28 Andrew Cagney <cagney@gnu.org>
137
138 Problem identified by Paul Hilfinger.
139 * Makefile.in (ada_lex_c): Define.
140 (ada-lex.o): Delete rule.
141
142 * linux-proc.c: Delete file.
143 * Makefile.in: Update.
144 * config/sparc/linux64.mh (NATDEPFILES):
145 * config/sparc/linux.mh (NATDEPFILES): Update.
146 * config/s390/s390.mh (NATDEPFILES): Update.
147 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Update.
148 * config/powerpc/linux.mh (NATDEPFILES): Update.
149 * config/pa/linux.mh (NATDEPFILES): Update.
150 * config/mips/linux.mh (NATDEPFILES): Update.
151 * config/m68k/linux.mh (NATDEPFILES): Update.
152 * config/ia64/linux.mh (NATDEPFILES): Update.
153 * config/i386/linux64.mh (NATDEPFILES): Update.
154 * config/i386/linux.mh (NATDEPFILES): Update.
155 * config/arm/linux.mh (NATDEPFILES): Update.
156 * config/alpha/alpha-linux.mh (NATDEPFILES): Update.
157 * linux-nat.c: Update copyright. Include <sys/param.h>,
158 <sys/procfs.h>, "elf-bfd.h", "gregset.h", <ctype.h>,
159 "gdbthread.h", "gdb_stat.h", <fcntl.h>.
160 (O_LARGEFILE): Possibly define.
161 (_initialize_linux_nat, linux_proc_pending_signals)
162 (add_line_to_sigset, linux_proc_xfer_memory)
163 (linux_nat_info_proc_cmd, linux_nat_make_corefile_notes)
164 (linux_nat_do_registers, linux_nat_corefile_thread_callback)
165 (struct linux_corefile_thread_data)
166 (linux_nat_do_thread_registers, linux_nat_find_memory_regions)
167 (child_pid_to_exec_file): Insert code previously in linux-proc.c.
168
169 2004-09-16 Andrew Cagney <cagney@gnu.org>
170
171 * lin-lwp.c: Delete file.
172 * linux-nat.c: Include "gdb_assert.h", "gdb_string.h", <unistd.h>,
173 <sys/syscall.h>, "gdbthread.h", "gdbcmd.h", "regcache.h".
174 (status_to_str, init_lwp_list, add_lwp, delete_lwp)
175 (find_lwp_pid, iterate_over_lwps, lin_lwp_attach_lwp)
176 (linux_nat_attach, detach_callback, linux_nat_detach)
177 (resume_callback, resume_clear_callback, linux_nat_resume)
178 (kill_lwp, linux_nat_handle_extended, wait_lwp, stop_callback)
179 (stop_wait_callback, linux_nat_has_pending, flush_callback)
180 (status_callback, running_callback, count_events_callback)
181 (select_singlestep_lwp_callback, select_event_lwp_callback)
182 (cancel_breakpoints_callback, select_event_lwp, resumed_callback)
183 (child_wait, stop_and_resume_callback, linux_nat_wait)
184 (kill_callback, kill_wait_callback, linux_nat_kill)
185 (linux_nat_create_inferior, linux_nat_mourn_inferior)
186 (linux_nat_xfer_memory, linux_nat_thread_alive)
187 (linux_nat_pid_to_str, init_linux_nat_ops, sigchld_handler)
188 (_initialize_linux_nat): New functions.
189 * Makefile.in: Update all dependencies.
190 * config/sparc/linux64.mh (NATDEPFILES): Remove lin-lwp.o.
191 * config/sparc/linux.mh (NATDEPFILES): Remove lin-lwp.o.
192 * config/s390/s390.mh (NATDEPFILES): Remove lin-lwp.o.
193 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Remove lin-lwp.o.
194 * config/powerpc/linux.mh (NATDEPFILES): Remove lin-lwp.o.
195 * config/pa/linux.mh (NATDEPFILES): Remove lin-lwp.o.
196 * config/mips/linux.mh (NATDEPFILES): Remove lin-lwp.o.
197 * config/m68k/linux.mh (NATDEPFILES): Remove lin-lwp.o.
198 * config/ia64/linux.mh (NATDEPFILES): Remove lin-lwp.o.
199 * config/i386/linux64.mh (NATDEPFILES): Remove lin-lwp.o.
200 * config/i386/linux.mh (NATDEPFILES): Remove lin-lwp.o.
201 * config/arm/linux.mh (NATDEPFILES): Remove lin-lwp.o.
202 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove lin-lwp.o.
203
204 2004-09-27 Mark Kettenis <kettenis@gnu.org>
205
206 * config/i386/fbsd64.mh, config/i386/nbsd64.mh,
207 config/i386/obsd64.mh (NAT_FILE): Remove variable.
208
209 * configure.in: Don't comment out NATDEPFILES in the generated
210 Makefile if NAT_FILE is unset.
211 * configure: Regenerate.
212
213 2004-09-27 Andrew Cagney <cagney@gnu.org>
214
215 * infrun.c (check_for_old_step_resume_breakpoint): Delete.
216 (insert_step_resume_breakpoint): Delete.
217 (insert_step_resume_breakpoint_at_frame): New function.
218 (insert_step_resume_breakpoint_at_sal): New function.
219 (handle_inferior_event, step_into_function)
220 (insert_step_resume_breakpoint): Simplify by using same.
221
222 * gdb_indent.sh (types): Add caddr_t to list of predefined types.
223
224 2004-09-26 Mark Kettenis <kettenis@gnu.org>
225
226 * fbsd-proc.c: Remove file.
227 * Makefile.in (fbsd-proc.o): Remove dependency.
228
229 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Group target related
230 code together.
231
232 * config/i386/nm-fbsd64.h: Remove file.
233 * config/i386/fbsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
234
235 2004-09-26 Mark Kettenis <kettenis@gnu.org>
236
237 * amd64-nat.h: Update copyright year.
238 (amd64bsd_target): New prototype.
239 * amd64bsd-nat.c: Include "target.h" and "inf-ptrace.h".
240 (amd64bsd_target): New function.
241 (amd64bsd_fetch_inferior_registers): Rename from
242 fetch_inferior_registers. Make static.
243 (amd64bsd_store_inferior_registers): Rename from
244 store_inferior_registers. Make static.
245 * amd64fbsd-nat.c: Include "target.h" and "fbsd-nat.h".
246 (_initialize_amd64fbsd_nat): Construct and add target vector.
247 * amd64nbsd-nat.o: Include "target.h".
248 (_initialize_amd64nbsd_nat): Construct and add target vector.
249 * amd64obsd-nat.c: Include "target.h".
250 (_initialize_amd64obsd_nat): Construct and add target vector.
251 * config/i386/nm-fbsd64.h (CHILD_PID_TO_EXEC_FILE): Remove define.
252 * config/i386/fbsd64.mh (NATDEPFILES): Remove infptrace.o,
253 inftarg.o and fbsd-proc.o. Add inf-child.o, inf-ptrace.o and
254 fbsd-nat.o.
255 * config/i386/nbsd64.mh, config/i386/obsd64.mh (NATDEPFILES):
256 Remove infptrace.o and inftarg.o. Add inf-child.o and
257 inf-ptrace.o.
258 * Makefile.in (amd64bsd-nat.o, amd64fbsd-nat.o, amd64nbsd-nat.o)
259 (amd64obsd-nat.o): Update dependencies.
260
261 2004-09-25 Mark Kettenis <kettenis@gnu.org>
262
263 * config/i386/fbsd.mh (NATDEPFILES): Remove infptrace.o.
264 * config/i386/nbsdaout.mh (NATDEPFILES): Remove infptrace.o.
265 * config/i386/nbsdelf.mh (NATDEPFILES): Remove infptrace.o.
266 * config/i386/obsd.mh (NATDEPFILES): Remove infptrace.o.
267 * config/i386/obsdaout.mh (NATDEPFILES): Remove infptrace.o.
268
269 * inf-ptrace.c (inf_ptrace_attach): Remove redundant parenthesis.
270 Inline attach call.
271 (inf_ptrace_detach): Inline detach call.
272
273 * configure.in: Check for waddstr instead of mvwaddstr when
274 searching for curses library. Check for wborder.
275 * configure, config.in: Regenerate.
276 * tui/tui-wingeneral.c (box_win): Use box if wborder isn't
277 available.
278
279 * inf-ptrace.c (inf_ptrace_xfer_memory): Fix gdb_indent.sh wart.
280
281 2004-09-24 Robert Picco <Robert.Picco@hp.com>
282
283 Committed by Andrew Cagney.
284 * remote.c (set_remote_protocol_p_packet_cmd, remote_protocol_p)
285 (show_remote_protocol_p_packet_cmd): New. Implement 'p' packet.
286 configuration.
287 (fetch_register_using_p): Implement 'p' packet. Based on code by
288 Fernando Nasser.
289 (remote_fetch_registers): Call fetch_register_using_p.
290 (init_all_packet_configs, show_remote_cmd)
291 (_initialize_remote): Add p-packet.
292
293 2004-09-24 Mark Kettenis <kettenis@gnu.org>
294
295 * inf-ptrace.c (inf_ptrace_kill_inferior): Call ptrace directly
296 instead of call_ptrace. Call wait directly instead of
297 ptrace_wait.
298 (inf_ptrace_me): Call ptrace directly instead of call_ptrace.
299 (inf_ptrace_wait): Inline ptrace_wait call.
300
301 2004-09-24 Paul Hilfinger <hilfingr@nile.gnat.com>
302
303 * Makefile.in (.y.c): Revert previous change. ../ylwrap was
304 rolled back instead.
305
306 2004-09-24 Paul Hilfinger <hilfingr@nile.gnat.com>
307
308 * Makefile.in (.y.c): Modify $(YLWRAP) invocation to use
309 the new argument order.
310
311 2004-09-23 Corinna Vinschen <vinschen@redhat.com>
312
313 * MAINTAINERS: Remove "broken" from XStormy16 entry.
314 * xstormy16-tdep.c: Convert XStormy16 target to latest GDB methods.
315 (struct gdbarch_tdep): Remove.
316 (struct xstormy16_frame_cache): New frame cache structure.
317 (xstormy16_register_byte, xstormy16_register_raw_size)
318 (xstormy16_reg_virtual_type, xstormy16_register_type)
319 (xstormy16_push_arguments, xstormy16_push_return_address)
320 (xstormy16_pop_frame, xstormy16_store_struct_return)
321 (xstormy16_store_return_value, xstormy16_extract_struct_value_address)
322 (xstormy16_frame_saved_register, xstormy16_get_saved_register)
323 (xstormy16_scan_prologue, xstormy16_frame_init_saved_regs)
324 (xstormy16_frame_saved_pc, xstormy16_init_extra_frame_info)
325 (xstormy16_frame_chain, xstormy16_frame_chain_valid,
326 (xstormy16_saved_pc_after_call, xstormy16_save_dummy_frame_to): Remove.
327 (xstormy16_use_struct_convention): Drop gcc_p parameter.
328 (xstormy16_extract_return_value, xstormy16_store_return_value):
329 Regcachify. Drop useless struct convention handling.
330 (xstormy16_register_type, xstormy16_return_value)
331 (xstormy16_push_dummy_call, xstormy16_analyze_prologue)
332 (xstormy16_alloc_frame_cache, xstormy16_frame_cache)
333 (xstormy16_frame_prev_register, xstormy16_frame_this_id)
334 (xstormy16_frame_base_address, xstormy16_frame_sniffer)
335 (xstormy16_unwind_sp, xstormy16_unwind_pc)
336 (xstormy16_unwind_dummy_id) : New functions.
337 (xstormy16_skip_prologue): Call xstormy16_analyze_prologue instead
338 of xstormy16_scan_prologue.
339 (xstormy16_frame_unwind): New frame_unwind structure.
340 (xstormy16_frame_base): New frame_base structure.
341 (xstormy16_gdbarch_init): Accomodate all of the above changes.
342 Reshuffle for better readability. Also add dwarf2_frame_sniffer.
343
344 2004-09-22 Mark Kettenis <kettenis@gnu.org>
345
346 * language.c (language_gdbarch_post_init): Fix off-by one error.
347
348 2004-09-21 Daniel Jacobowitz <dan@debian.org>
349
350 * dwarf2read.c (struct dwarf2_per_cu_data): New field type_hash.
351 (struct dwarf2_offset_and_type): New.
352 (set_die_type, reset_die_and_siblings_types, get_die_type)
353 (offset_and_type_hash, offset_and_type_eq): New functions.
354 (read_structure_type, read_enumeration_type, read_array_type)
355 (read_namespace, read_tag_pointer_type, read_tag_ptr_to_member_type)
356 (read_tag_reference_type, read_tag_const_type)
357 (read_tag_volatile_type, read_tag_string_type, read_subroutine_type)
358 (read_typedef, read_base_type, read_subrange_type): Use
359 set_die_type.
360
361 2004-09-20 Daniel Jacobowitz <dan@debian.org>
362
363 * Makefile.in (dwarf2read.o): Update dependencies.
364 * dwarf2read.c: Include "command.h" and "gdbcmd.h".
365 (struct dwarf2_per_objfile): Add all_comp_units, n_comp_units,
366 and read_in_chain.
367 (struct dwarf2_cu): Add read_in_chain, per_cu, last_used,
368 mark, and has_form_ref_addr.
369 (struct dwarf2_per_cu_data): New.
370 (dwarf2_max_cache_age): New.
371 (dwarf2_build_psymtabs_hard): Free cached compilation units
372 after loading. Create and manage the list of compilation units.
373 Remove unnecessary NULL initialization. Fix indentation.
374 (psymtab_to_symtab_1): Initialize all of CU.
375 (dwarf2_read_abbrevs): Set has_form_ref_addr.
376 (find_partial_die): Use dwarf2_find_containing_comp_unit
377 and load_comp_unit.
378 (free_stack_comp_unit): Update comments. Clear the per-cu
379 pointer. Handle aging.
380 (dwarf2_find_containing_comp_unit, free_cached_comp_units)
381 (age_cached_comp_units, free_one_cached_comp_unit)
382 (dwarf2_mark, dwarf2_clear_marks, create_all_comp_units)
383 (load_comp_unit, dwarf2_find_comp_unit, free_one_comp_unit)
384 (set_dwarf2_cmdlist, show_dwarf2_cmdlist, set_dwarf2_cmd)
385 (show_dwarf2_cmd): New.
386 (_initialize_dwarf2_read): Provide "maint set dwarf2 max-cache-age"
387 and "maint show dwarf2 max-cache-age".
388 * gdbcmd.h (maintenance_set_cmdlist, maintenance_show_cmdlist): New
389 externs.
390 * maint.c (maintenance_set_cmdlist, maintenance_show_cmdlist): Make
391 global.
392
393 2004-09-20 Jeff Johnston <jjohnstn@redhat.com>
394
395 * dwarf2read.c (typename_concat): Change prototype to accept obstack
396 and dwarf2_cu struct pointer as arguments. Change function to use
397 obstack if provided and use dwarf2_cu to determine language-specific
398 separator.
399 (partial_die_parent_scope): Change comment to include java. Use
400 new version of typename_concat instead of obconcat.
401 (partial_die_full_name): Use typename_concat.
402 (read_namespace): Ditto.
403 (read_enumeration_type): Use typename_concat instead of obconcat.
404 (new_symbol): Ditto.
405 (add_partial_symbol): Enhance tests for C++ to also test for Java.
406 (guess_structure_name): Ditto.
407 (read_subroutine_type): Ditto.
408 (read_structure_type): Ditto.
409 (is_vtable_name): Add Java support.
410 (determine_class_name): Switch to new typename_concat call.
411 (determine_prefix): Switch to new typename_concat call.
412 * jv-exp.y (FuncStart): New pattern.
413 (MethodInvocation): Add support for simple function calls. Change
414 warning message for other forms of inferior call currently not
415 supported.
416 * valarith.c (value_subscript): Treat an array with upper-bound
417 of -1 as unknown size.
418
419 2004-09-20 Daniel Jacobowitz <dan@debian.org>
420
421 * symtab.c (lookup_partial_symtab): Use psymtab_to_fullname.
422 (lookup_partial_symtab): Use symtab_to_fullname.
423
424 2004-09-19 Jim Blandy <jimb@redhat.com>
425
426 * minsyms.c (lookup_minimal_symbol): Doc fix.
427
428 2004-09-20 Andrew Cagney <cagney@gnu.org>
429
430 * config/nm-lynx.h (DEPRECATED_CHILD_RESUME): Deprecate
431 CHILD_RESUME.
432 * config/i386/nm-linux.h (DEPRECATED_CHILD_RESUME): Ditto.
433 * config/nm-linux.h (DEPRECATED_KILL_INFERIOR): Deprecate
434 KILL_INFERIOR.
435 * infptrace.c: Update.
436
437 2004-09-19 Daniel Jacobowitz <dan@debian.org>
438
439 * symtab.c (output_source_filename): Mark first argument as const.
440 (sources_info): Use symtab_to_fullname and psymtab_to_fullname
441 for "info sources" output.
442
443 2004-09-20 Mark Kettenis <kettenis@gnu.org>
444
445 * config/i386/nm-fbsd.h, config/i386/nm-obsd.h: Don't include
446 <machine/vmparam.h>.
447 (KERNEL_U_ADDR, REGISTER_U_ADDR): Remove defines.
448 (register_u_addr): Remove prototype.
449
450 2004-09-19 Mark Kettenis <kettenis@gnu.org>
451
452 * i386bsd-nat.c: Include "i386bsd-nat.h" and "inf-ptrace.h".
453 (i386bsd_fetch_inferior_registers): Rename from
454 fetch_inferior_registers. Make static.
455 (i386bsd_store_inferior_registers): Rename from
456 store_inferior_registers. Make static.
457 (i386bsd_target): New function.
458 * i386bsd-nat.h: New file.
459 * i386fbsd-nat.c: Include "target.h", "fbsd-nat.h" and
460 "i386bsd-nat.h".
461 (i386fbsd_resume): Rename from child_resume. Make static.
462 (_initialize_i386fbsd_nat): Construct and add target vector.
463 * i386nbsd-nat.c: Include "target.h" and "i386bsd-nat.h".
464 (_initialize_i386nbsd_nat): Construct and add target vector.
465 * config/i386/nm-fbsd.h: (CHILD_RESUME, CHILD_PID_TO_EXEC_FILE):
466 Remove defines.
467 * config/i386/fbsd.mh (NATDEPFILES): Add inf-child.o, inf-ptrace.o
468 and fbsd-nat.o. Remove inftarg.o and fbsd-proc.o.
469 * config/i386/nbsdaout.mh (NATDEPFILES): Add inf-child.o,
470 inf-ptrace.o, i386bsd-nat.o and bsd-kvm.o. Remove inftarg.o.
471 (LOADLIBES): New variable.
472 * config/i386/nbsdelf.mh (NATDEPFILES): Add inf-child.o and
473 inf-ptrace.o. Remove inftarg.o.
474 * config/i386/obsd.mh (NATDEPFILES): Add inf-child.o and
475 inf-ptrace.o. Remove inftarg.o.
476 * config/i386/obsdaout.mh (NATDEPFILES): Add inf-child.o,
477 inf-ptrace.o, i386nbsd-nat.o and bsd-kvm.o. Remove inftarg.o.
478 (LOADLIBES): New variable.
479 * Makefile.in (i386bsd_nat_h): New variable.
480 (i386bsd-nat.o, i386fbsd-nat.o, i386nbsd-nat.o): Update
481 dependencies.
482
483 * sparc64nbsd-tdep.c: Include "objfiles.h".
484 (sparc64nbsd_init_abi): Set in_solib_call_trampoline and
485 skip_trampoline_code. Set solib_svr4_fetch_link_map_offsets to
486 svr4_lp64_fetch_link_map_offsets.
487 * sparc64obsd-tdep.c: Include "objfiles.h". Don't include
488 "nbsd-tdep.h".
489 (sparc64obsd_init_abi): Set in_solib_call_trampoline and
490 skip_trampoline_code. Set solib_svr4_fetch_link_map_offsets to
491 svr4_lp64_fetch_link_map_offsets.
492 * Makefile.in (sparc64nbsd-tdep.o, sparc64obsd-tdep.o): Update
493 dependencies.
494
495 * fbsd-nat.c: New files with cleaned up contents of fbsd-proc.c.
496 * fbsd-nat.h: New file.
497 * Makefile.in (ALLDEPFILES): Add fbsd-nat.c.
498 (fbsd_nat_h): New variable.
499 (fbsd-nat.o): New dependency.
500
501 * config/sparc/nbsd64.mt, config/sparc/obsd.mt,
502 config/sparc/obsd64.mt (DEPRECATED_TM_FILE): Set to solib.h.
503
504 * inf-child.c (inf_child_post_wait): Remove stray whitespace in
505 comment.
506
507 2004-09-18 Paul N. Hilfinger <hilfinger@gnat.com>
508
509 * ada-exp.y (type_int): New function to add layer of abstraction
510 around references to expression types.
511 (type_long): Ditto.
512 (type_long_long): Ditto.
513 (type_float): Ditto.
514 (type_double): Ditto.
515 (type_long_double): Ditto.
516 (type_char): Ditto.
517 (type_system_address): Ditto.
518 (simple_exp): Use type_* functions in place of builtin_*
519 variables.
520 (exp): Ditto.
521 (write_var_from_name): Ditto.
522 (write_object_renaming): Ditto.
523 * ada-lang.c (ada_create_fundamental_type): Remove redundant
524 declaration.
525 (build_ada_types): Remove, replacing with...
526 (ada_language_arch_info): New function to initialize primitive
527 type vector in language_arch_info.
528 (ada_array_length): Remove use of builtin_type_ada_int.
529 (value_pos_atr): Ditto.
530 (ada_evaluate_subexp): Ditto.
531 (builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
532 builtin_type_ada_long_long, builtin_type_ada_char,
533 builtin_type_ada_float, builtin_type_ada_double,
534 builtin_type_ada_long_double, builtin_type_ada_natural,
535 builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
536 (ada_builtin_types): Remove.
537 (ada_language_defn): Remove entries for la_builtin_type_vector and
538 string_char_type and use ada_language_arch_info.
539 (_initialize_ada_language): Do type-vector initialization along
540 the lines of c-lang.c.
541 (ada_create_fundamental_type): Break up line.
542 (ada_dump_symtab): Remove unused function.
543 (enum ada_primitive_types): Define.
544 * ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
545 builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
546 builtin_type_ada_float, builtin_type_ada_double,
547 builtin_type_ada_long_double, builtin_type_ada_natural,
548 builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
549 * ada-lex.l: Use type_* functions in place of builtin_* variables.
550 (processInt): Ditto.
551 (processReal): Ditto.
552 (name_lookup): Ditto.
553 * ada-typeprint.c (print_range): Use builtin_type_int, not
554 builtin_type_ada_int.
555
556 2004-09-18 Mark Kettenis <kettenis@gnu.org>
557
558 * i386-tdep.c (i386_register_name): Rename regno to regnum.
559
560 * config/pa/hpux1020.mh (MH_CFLAGS): Remove -D__HP_CURSES.
561 * config/pa/hpux11.mh (MH_CFLAGS): Likewise.
562 * config/pa/hpux11w.mh (MH_CFLAGS): Likewise.
563 * configure.in: Improve checks for curses library by checking for
564 mvwaddstr instead of initscr. Drop HP curses in favour of
565 standard curses on HP-UX.
566 * configure: Regenerated.
567
568 2004-09-18 Paul N. Hilfinger <hilfinger@gnat.com>
569
570 * ada-lang.c: (ada_main_name, ada_value_slice_ptr, ada_value_slice,
571 ada_breakpoint_rewrite, ada_template_to_fixed_record_type_1):
572 Minor formatting changes.
573 (empty_array): Slight rewrite for formatting.
574 (emit_char,parse,ada_language_defn,build_ada_types,
575 ada_is_exception_sym, _initialize_ada_language): Move
576 definitions around.
577 (ada_dump_symtab): Remove unused definition.
578 (ada_maybe_exception_partial_symbol): Remove unused definition.
579
580 2004-09-16 Andrew Cagney <cagney@gnu.org>
581
582 * inf-child.c: Include "gdb_string.h".
583 (inf_child_core_file_to_sym_file): Delete.
584 (inf_child_target): Set to_fetch_registers and to_store_registers.
585 * inf-ptrace.c: Include "gdb_string.h".
586 * Makefile.in: Update all dependencies.
587
588 * Makefile.in (gnu-v3-abi.o): Add explict rule to avoid -Werror
589 problem.
590
591 2004-09-14 Joel Brobecker <brobecker@gnat.com>
592
593 * mips-tdep.c (mips_insn32_frame_cache): Pass frame cache in
594 call to heuristic_proc_desc. Remove code that became redundant
595 as a consequence.
596 (read_next_frame_reg): Remove special case for SP_REGNUM.
597 (set_reg_offset): Fix small typo.
598 (reset_saved_regs): New procedure.
599 (mips32_heuristic_proc_desc): No longer compute a fake
600 procedure descriptor. Compute the full frame cache instead.
601 Some minor comment reformatting.
602
603 2004-09-14 Andrew Cagney <cagney@gnu.org>
604
605 * MAINTAINERS: Add Michael Chastain as the backup gdb.threads
606 maintainer.
607
608 * thread-db.c (thread_db_new_objfile): Assume that there is a
609 child process.
610
611 2004-09-13 Jim Blandy <jimb@redhat.com>
612
613 * valops.c (value_assign): Move 'buffer' to the enclosing block,
614 so that its storage isn't referenced after its lifetime ends.
615
616 * valops.c (value_assign): 'use_buffer' is initialized to zero,
617 and never assigned to. Delete it, and the 'if (use_buffer)'
618 clauses. Delete 'raw_buffer', since it is now unused.
619
620 2004-09-13 Andrew Cagney <cagney@gnu.org>
621
622 * configure.in (frags): Replace TM_FILE with DEPRECATED_TM_FILE.
623 * configure: Re-generate.
624 * nlm/Makefile.in (TAGS): Update.
625 * Makefile.in (TAGS): Update.
626 * config/vax/nbsd.mt (TM_FILE): Update.
627 * config/sparc/vxworks.mt (TM_FILE): Update.
628 * config/sparc/sol2.mt (TM_FILE): Update.
629 * config/sparc/sol2-64.mt (TM_FILE): Update.
630 * config/sparc/obsd64.mt (TM_FILE): Update.
631 * config/sparc/obsd.mt (TM_FILE): Update.
632 * config/sparc/nbsd64.mt (TM_FILE): Update.
633 * config/sparc/nbsd.mt (TM_FILE): Update.
634 * config/sparc/linux64.mt (TM_FILE): Update.
635 * config/sparc/linux.mt (TM_FILE): Update.
636 * config/sparc/fbsd.mt (TM_FILE): Update.
637 * config/sh/wince.mt (TM_FILE): Update.
638 * config/sh/nbsd.mt (TM_FILE): Update.
639 * config/sh/linux.mt (TM_FILE): Update.
640 * config/sh/embed.mt (TM_FILE): Update.
641 * config/s390/s390.mt (TM_FILE): Update.
642 * config/rs6000/rs6000lynx.mt (TM_FILE): Update.
643 * config/rs6000/rs6000.mt (TM_FILE): Update.
644 * config/rs6000/aix4.mt (TM_FILE): Update.
645 * config/powerpc/vxworks.mt (TM_FILE): Update.
646 * config/powerpc/ppc-sim.mt (TM_FILE): Update.
647 * config/powerpc/ppc-eabi.mt (TM_FILE): Update.
648 * config/powerpc/obsd.mt (TM_FILE): Update.
649 * config/powerpc/nbsd.mt (TM_FILE): Update.
650 * config/powerpc/linux.mt (TM_FILE): Update.
651 * config/powerpc/aix.mt (TM_FILE): Update.
652 * config/pa/obsd.mt (TM_FILE): Update.
653 * config/pa/linux.mt (TM_FILE): Update.
654 * config/pa/hppahpux.mt (TM_FILE): Update.
655 * config/pa/hppa64.mt (TM_FILE): Update.
656 * config/pa/hppa.mt (TM_FILE): Update.
657 * config/ns32k/nbsdaout.mt (TM_FILE): Update.
658 * config/mips/wince.mt (TM_FILE): Update.
659 * config/mips/vxmips.mt (TM_FILE): Update.
660 * config/mips/nbsd.mt (TM_FILE): Update.
661 * config/mips/linux.mt (TM_FILE): Update.
662 * config/mips/irix6.mt (TM_FILE): Update.
663 * config/mips/irix5.mt (TM_FILE): Update.
664 * config/mips/embed.mt (TM_FILE): Update.
665 * config/m68k/vxworks68.mt (TM_FILE): Update.
666 * config/m68k/st2000.mt (TM_FILE): Update.
667 * config/m68k/os68k.mt (TM_FILE): Update.
668 * config/m68k/obsd.mt (TM_FILE): Update.
669 * config/m68k/nbsd.mt (TM_FILE): Update.
670 * config/m68k/monitor.mt (TM_FILE): Update.
671 * config/m68k/linux.mt (TM_FILE): Update.
672 * config/m68k/cisco.mt (TM_FILE): Update.
673 * config/ia64/linux.mt (TM_FILE): Update.
674 * config/ia64/aix.mt (TM_FILE): Update.
675 * config/ia64/ia64.mt (TM_FILE): Update.
676 * config/i386/vxworks.mt (TM_FILE): Update.
677 * config/i386/obsd64.mt (TM_FILE): Update.
678 * config/i386/obsd.mt (TM_FILE): Update.
679 * config/i386/nto.mt (TM_FILE): Update.
680 * config/i386/nbsd64.mt (TM_FILE): Update.
681 * config/i386/nbsd.mt (TM_FILE): Update.
682 * config/i386/linux64.mt (TM_FILE): Update.
683 * config/i386/linux.mt (TM_FILE): Update.
684 * config/i386/i386sol2.mt (TM_FILE): Update.
685 * config/i386/i386lynx.mt (TM_FILE): Update.
686 * config/i386/fbsd64.mt (TM_FILE): Update.
687 * config/i386/fbsd.mt (TM_FILE): Update.
688 * config/i386/cygwin.mt (TM_FILE): Update.
689 * config/h8300/h8300.mt (TM_FILE): Update.
690 * config/frv/frv.mt (TM_FILE): Update.
691 * config/cris/cris.mt (TM_FILE): Update.
692 * config/arm/wince.mt (TM_FILE): Update.
693 * config/arm/nbsd.mt (TM_FILE): Update.
694 * config/arm/linux.mt (TM_FILE): Update.
695 * config/arm/embed.mt (TM_FILE): Update.
696 * config/alpha/nbsd.mt (TM_FILE): Update.
697 * config/alpha/fbsd.mt (TM_FILE): Update.
698 * config/alpha/alpha.mt (TM_FILE): Update.
699 * config/alpha/alpha-osf1.mt (TM_FILE): Update.
700 * config/alpha/alpha-linux.mt (TM_FILE): Update.
701
702 Eliminate event_loop_p, always has the value 1.
703 * defs.h (event_loop_p): Delete macro.
704 * breakpoint.c (until_break_command): Simplify.
705 * utils.c (prompt_for_continue): Simplify.
706 * tracepoint.c (read_actions): Simplify.
707 * top.c (throw_exception, execute_command, gdb_readline_wrapper)
708 (gdb_rl_operate_and_get_next, command_line_input, get_prompt)
709 (set_prompt, init_main): Simplify.
710 (init_signals, disconnect): Delete, unused.
711 * remote.c (remote_async_resume)
712 (extended_remote_async_create_inferior): Simplify.
713 * mi/mi-interp.c (mi_input): Delete, unused.
714 (mi_interpreter_resume, mi_command_loop): Simplify.
715 * interps.c (current_interp_command_loop): Simplify.
716 * infrun.c (proceed): Simplify.
717 * infcmd.c (run_command, continue_command, step_1, jump_command)
718 (until_command, advance_command, finish_command)
719 (interrupt_target_command): Simplify.
720 * event-top.c (gdb_setup_readline, gdb_disable_readline): Simplify.
721
722 * config/i386/nm-i386.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
723 * config/s390/nm-linux.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
724 * config/pa/nm-hppah.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
725 * config/ia64/nm-linux.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
726 * config/frv/tm-frv.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
727 * mips-tdep.c (mips_dump_tdep): Do not print same.
728
729 2004-09-12 Andrew Cagney <cagney@gnu.org>
730
731 * valprint.c (print_longest): Use fputs_filtered. Make "val"
732 const.
733 * Makefile.in (valprint.o): Delete explict rule.
734
735 * config/m68k/nbsdelf.mh: Add missing trailing newline. Problem
736 reported by Dave Anderson.
737
738 * target.c (target_info): Delete #ifdef call to FILES_INFO_HOOK.
739
740 * inferior.h (STORE_STRUCT_RETURN): Delete macro.
741
742 2004-09-12 Salvador E. Tropea <set@users.sf.net>
743 Andrew Cagney <cagney@gnu.org>
744
745 * mi/mi-main.c (mi_cmd_data_list_changed_registers)
746 (mi_cmd_data_list_register_values)
747 (mi_cmd_data_write_register_values): Include the PSEUDO_REGS in
748 the register number computation.
749
750 2004-09-12 Andrew Cagney <cagney@gnu.org>
751
752 * ppcnbsd-nat.c: Include "inf-ptrace.h".
753 (ppcnbsd_fetch_inferior_registers): Rename fetch_inferior_registers.
754 (ppcnbsd_store_inferior_registers): Rename store_inferior_registers.
755 (_initialize_ppcnbsd_nat): Create and add a NetBSD/PPC ptrace
756 target.
757 * config/powerpc/nbsd.mh (NATDEPFILES): Replace and inftarg.o with
758 inf-ptrace.o and inf-child.o.
759 * inf-ptrace.h, inf-ptrace.c, inf-child.h, inf-child.c: New files.
760 * Makefile.in: Update dependencies.
761
762 2004-09-11 Andrew Cagney <cagney@gnu.org>
763
764 * language.c (hex_string, hex_string_custom): Move from here ...
765 * utils.c (hex_string, hex_string_custom): ... to here, rewrite.
766 (CELLSIZE): Increase to 50.
767 * language.h (hex_string, hex_string_custom): Move from here ...
768 * defs.h: ... to here.
769 * Makefile.in: Update all dependencies.
770
771 2004-09-11 Paul N. Hilfinger <hilfinger@gnat.com>
772
773 * language.c (local_hex_format_custom): Remove.
774 (local_hex_string): Rename to hex_string, use C format, and move to
775 utils.c
776 (local_hex_string_custom): Rename to hex_string_custom and change
777 interface. Now uses C format. Move to utils.c
778 (local_octal_format_custom): Remove.
779 (local_decimal_format_custom): Remove.
780 (unknown_language_defn): Remove language-specific number
781 formatting entries.
782 (auto_language_defn): Ditto.
783 (local_language_defn): Ditto.
784 * language.h (struct language_format_info): Delete declaration.
785 (struct language_defn): Remove language_format_info fields
786 la_binary_format, la_octal_format, la_decimal_format, la_hex_format.
787 (local_binary_format): Remove macro.
788 (local_binary_format_prefix): Remove macro.
789 (local_binary_format_specifier): Remove macro.
790 (local_binary_format_suffix): Remove macro.
791 (local_octal_format): Remove macro.
792 (local_octal_format_prefix): Remove macro.
793 (local_octal_format_specifier): Remove macro.
794 (local_octal_format_suffix): Remove macro.
795 (local_decimal_format): Remove macro.
796 (local_decimal_format_prefix): Remove macro.
797 (local_decimal_format_specifier): Remove macro.
798 (local_decimal_format_suffix): Remove macro.
799 (local_hex_format): Remove macro.
800 (local_hex_format_prefix): Remove macro.
801 (local_hex_format_specifier): Remove macro.
802 (local_hex_format_suffix): Remove macro.
803 (local_decimal_format_custom): Remove.
804 (local_octal_format_custom): Remove.
805 (local_hex_format_custom): Remove.
806 (local_hex_string): Rename to hex_string and move to defs.h.
807 (local_hex_string_custom): Rename to hex_string_custom, change
808 interface, and move to defs.h.
809 * utils.c: (int_string): New function.
810 (hex_string): New function (from language.c).
811 (hex_string_custom): New function (from language.c).
812 (octal2str): New function.
813 (decimal2str): Add width parameter.
814 (paddr_u): Use new decimal2str interface.
815 (paddr_d): Ditto.
816 * defs.h (hex_string): Declare.
817 (hex_string_custom): Declare.
818 (int_string): Declare.
819 * printcmd.c (print_scalar_formatted): Remove localized binary
820 formatting.
821 * valprint.c (print_longest): Use int_string.
822 (print_floating): Use C hex format.
823 (print_hex_chars): Ditto.
824 (print_binary_chars): Remove language-specific formatting.
825 (print_octal_chars): Use C octal format.
826 (print_decimal_chars): Delocalize format.
827 (print_decimal): Remove.
828 * ada-lang.c (ada_language_defn): Remove language-specific number
829 formatting entries.
830 * p-lang.c (pascal_language_defn): Ditto.
831 * c-lang.c (c_language_defn): Ditto.
832 (cplus_language_defn): Ditto.
833 (asm_language_defn): Ditto.
834 (minimal_language_defn): Ditto.
835 * f-lang.c (f_language_defn): Ditto.
836 * jv-lang.c (java_language_defn): Ditto.
837 * m2-lang.c (m2_language_defn): Ditto.
838 * scm-lang.c (scm_language_defn): Ditto.
839 * objc-lang.c (objc_language_defn): Ditto.
840 * memattr.c (mem_info_command): Use renamed hex_string_custom with
841 new interface.
842 * pa64solib.c (pa64_sharedlibrary_info_command): Ditto.
843 * ui-out.c (ui_out_field_core_addr): Ditto.
844 * breakpoint.c (breakpoint_adjustment_warning): Ditto.
845 * exec.c (print_section_info): Ditto.
846 * i387-tdep.c (print_i387_status_word): Ditto.
847 (print_i387_control_word): Ditto.
848 (i387_print_float_info): Ditto.
849 * maint.c (maint_print_section_info): Ditto.
850 * solib.c (info_sharedlibrary_command): Ditto.
851 * somsolib.c (som_sharedlibrary_info_command): Ditto.
852 * symtab.c (print_msymbol_info): Ditto.
853 * tracepoint.c (tracepoints_info): Ditto.
854 * solib-frv.c (lm_base): Ditto.
855 (frv_current_sos): Ditto.
856 (enable_break2): Ditto.
857 (enable_break): Ditto.
858 * dbxread.c (read_dbx_symtab): Use renamed hex_string.
859 (process_one_symbol): Ditto.
860 * infcmd.c (program_info): Ditto.
861 * mdebugread.c (parse_partial_symbols): Ditto.
862 * symfile.c (add_symbol_file_command): Ditto.
863 * cli/cli-cmds.c (edit_command): Ditto.
864 (list_command): Ditto.
865 * infcall.c (call_function_by_hand): Ditto.
866 * remote-vx.c (vx_run_files_info): Ditto.
867 (vx_wait): Ditto.
868 (vx_attach): Ditto.
869 (vx_detach): Ditto.
870 (vx_kill): Ditto.
871 * aix-thread.c (pdc_symbol_addrs): Ditto.
872 (pdc_read_regs): Ditto.
873 (pdc_write_regs): Ditto.
874 (pdc_read_data): Ditto.
875 (pdc_write_data): Ditto.
876 * d10v-tdep.c (display_trace): Ditto.
877 * rs6000-nat.c (find_toc_address): Ditto.
878 * aix-thread.c: Don't include language.h.
879 * buildsym.c: Ditto.
880 * dbxread.c: Ditto.
881 * mdebugread.c: Ditto.
882 * rs6000-nat.c: Ditto.
883 * buildsym.c (make_blockvector): Use renamed hex_string.
884
885 2004-09-10 Jason Molenda (jmolenda@apple.com)
886
887 * cli/cli-script.c (read_next_line): Accept zero or more whitespace
888 chars after 'if' or 'while' commands in user-defined commands.
889
890 2004-09-08 Jim Blandy <jimb@redhat.com>
891
892 Fix bug reported and analyzed by Olivier Crete:
893 * symfile.c (copy_section_addr_info): New function.
894 (symbol_file_add_with_addrs_or_offsets): Use it to save the
895 original set of address arguments, instead of handwritten code
896 that uses one length to allocate and a different length to
897 initialize. Use make_cleanup_free_section_addr_info.
898 * symfile.h (copy_section_addr_info): New declaration.
899 * utils.c: #include "symfile.h".
900 (do_free_section_addr_info, make_cleanup_free_section_addr_info):
901 New functions.
902 * defs.h (make_cleanup_free_section_addr_info): New declaration.
903 * Makefile.in (utils.o): Update dependencies.
904
905 2004-09-08 Andrew Cagney <cagney@gnu.org>
906
907 * thread-db.c (keep_thread_db): Delete.
908 (thread_db_new_objfile, thread_db_create_inferior)
909 (thread_db_mourn_inferior): Simplify assuming !keep_thread_db.
910
911 2004-09-08 Mark Kettenis <kettenis@gnu.org>
912
913 * i386-tdep.h (FPC_REGNUM, FCTRL_REGNUM, FSTAT_REGNUM, FTAG_REGNUM)
914 (FISEG_REGNUM, FIOFF_REGNUM, FOSEG_REGNUM, FOOFF_REGNUM)
915 (FOP_REGNUM, XMM0_REGNUM, MXCSR_REGNUM): Remove macros.
916 (i386_frameless_signal_p): Remove prototype.
917 * i386-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
918 (GETFPXREGS_SUPPLIES): Define using I386_ST0_REGNUM and
919 I386_SSE_NUM_REGS.
920 * i386-nto-tdep.c (i386nto_supply_gregset): Use I386_NUM_GREGS
921 instead of FP0_REGNUM.
922 (i386nto_regset_id): Use I386_NUM_GREGS and I386_NUM_FREGS instead
923 of FP0_REGNUM and FPC_REGNUM.
924
925 * solib-sunos.c (sunos_relocate_main_executable): Remove function.
926 (sunos_solib_create_inferior_hook): Don't call
927 sunos_relocate_main_executable.
928
929 * sparcnbsd-tdep.c (sparc32nbsd_elf_init_abi): Set
930 solib_svr4_fetch_link_map_offsets to
931 svr4_ilp32_fetch_link_map_offsets.
932 * sparcobsd-tdep.c: Don't include "nbsd-tdep.h".
933 (sparc32obsd_init_abi): Set solib_svr4_fetch_link_map_offsets to
934 svr4_ilp32_fetch_link_map_offsets.
935 * Makefile.in (sparcobsd-tdep.o): Update dependencies.
936
937 2004-09-07 Jim Blandy <jimb@redhat.com>
938
939 * frame.h (frame_register): Doc fix.
940
941 2004-09-07 Andrew Cagney <cagney@gnu.org>
942
943 * vx-share/wait.h: Delete #ifdef USG.
944 * utils.c (request_quit): Ditto.
945 * tui/tui.c (tui_reset): Ditto.
946 * remote.c: Ditto.
947 * remote-sds.c: Ditto.
948 * remote-rdi.c: Ditto.
949 * mdebugread.c: Ditto.
950 * m68klinux-nat.c: Ditto.
951 * infttrace.c: Ditto.
952 * infptrace.c: Ditto.
953 * i386v-nat.c: Ditto.
954 * exec.c: Ditto.
955 * dbxread.c: Ditto.
956 * core-aout.c: Ditto.
957
958 2004-09-05 Joel Brobecker <brobecker@gnat.com>
959
960 * mips-tdep.c (mips_insn16_frame_cache): Fix parameter in call to
961 heuristic_proc_desc.
962 (mips_insn32_frame_cache): Likewise.
963
964 2004-09-04 Joel Brobecker <brobecker@gnat.com>
965
966 * mips-tdep.c (mips32_heuristic_proc_desc): Remove code that was
967 left behind by error.
968
969 2004-09-04 Joel Brobecker <brobecker@gnat.com>
970
971 * config/alpha/nm-osf.h (PTRACE_ARG3_TYPE): Remove define.
972 * config/powerpc/nm-aix.h (PTRACE_ARG3_TYPE): Likewise.
973
974 2004-09-04 Joel Brobecker <brobecker@gnat.com>
975
976 * config/rs6000/xm-aix4.h: Remove this file.
977 * config/rs6000/aix4.mh (XM_FILE): Delete.
978
979 2004-09-04 Joel Brobecker <brobecker@gnat.com>
980
981 * config/rs6000/xm-rs6000.h: Remove this file.
982 * config/rs6000/rs6000.mh (XM_FILE): Remove.
983
984 2004-09-03 Andrew Cagney <cagney@gnu.org>
985
986 * mips-tdep.c (PROC_DESC_IS_DUMMY, SET_PROC_DESC_IS_DUMMY)
987 (_PROC_MAGIC_, after_prologue, mips_dump_tdep): Delete macros and
988 only use.
989
990 * mips-tdep.c (temp_saved_regs): Delete.
991 (set_reg_offset): Replace saved_regs parameter with this_cache.
992 (heuristic_proc_desc, mips16_heuristic_proc_desc)
993 (mips32_heuristic_proc_desc): Add this_cache parameter.
994 (mips_insn32_frame_cache, mips_insn16_frame_cache)
995 (after_prologue): Pass a NULL this_cache.
996
997 * mips-tdep.c (mips_mdebug_frame_cache): Delete code handling
998 non-kernel trap prologues.
999
1000 * mips-tdep.c (find_proc_desc): Delete function.
1001 (mips_mdebug_frame_cache): Inline call to find_proc_desc,
1002 simplify.
1003 (mips_insn16_frame_cache): Replace find_proc_desc with code from
1004 mips_insn32_frame_cache.
1005
1006 * mips-tdep.c (after_prologue): Inline call to find_proc_desc.
1007 Simplify as NEXT_FRAME is NULL.
1008 (find_proc_desc): Simplify as NEXT_FRAME is non-NULL.
1009
1010 * mips-tdep.c (after_prologue): Replace proc_desc parameter with
1011 local variable.
1012 (mips_skip_prologue): Update.
1013
1014 * mips-tdep.c (find_proc_desc, heuristic_proc_desc): Delete
1015 "cur_frame" parameter.
1016 (after_prologue, mips_mdebug_frame_cache, mips_insn16_frame_cache):
1017 (mips_insn32_frame_cache, find_proc_desc): Update
1018
1019 * config/vax/nm-obsd.h: Delete file.
1020 * config/vax/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1021 * config/vax/nm-nbsd.h: Delete file.
1022 * config/vax/nm-nbsdaout.h: Include config/nm-nbsd.h.
1023 * config/vax/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1024 * config/sh/nm-nbsd.h: Delete file.
1025 * config/sh/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1026 * config/rs6000/nm-rs6000ly.h: Delete file.
1027 * config/djgpp/fnchange.lst: Do not rename nm-rs6000ly.h.
1028 * config/rs6000/rs6000lynx.mh (NAT_FILE): Set to config/nm-lynx.h.
1029 * config/powerpc/nm-obsd.h: Delete file.
1030 * config/powerpc/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1031 * config/powerpc/nm-nbsd.h: Delete file.
1032 * config/powerpc/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1033 * config/pa/nm-obsd.h: Delete file.
1034 * config/pa/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1035 * config/mips/nm-nbsd.h: Delete file.
1036 * config/mips/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1037 * config/m88k/nm-obsd.h: Delete file.
1038 * config/m88k/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1039 * config/m68k/nm-nbsd.h: Delete file.
1040 * config/m68k/nm-nbsdaout.h: Include config/nm-nbsd.h.
1041 * config/m68k/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1042 * config/i386/nm-nbsd.h: Delete file.
1043 * config/i386/nm-nbsdaout.h: Include config/nm-nbsd.h.
1044 * config/i386/obsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
1045 * config/i386/nbsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
1046 * config/i386/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1047 * config/i386/nm-i386lynx.h: Delete file.
1048 * config/i386/i386lynx.mh (NAT_FILE): Set to config/nm-lynx.h.
1049 * config/arm/nm-nbsd.h: Delete file.
1050 * config/arm/nm-nbsdaout.h: Include config/nm-nbsd.h.
1051 * config/arm/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1052
1053 * config/i386/tm-fbsd.h: Delete file.
1054 * config/i386/fbsd64.mt (TM_FILE): Set to solib.h.
1055 * config/i386/fbsd.mt (TM_FILE): Set to solib.h.
1056
1057 * config/rs6000/tm-rs6000-aix4.h: Delete file.
1058 * config/djgpp/fnchange.lst: Do not rename tm-rs6000-aix4.h.
1059 * config/rs6000/aix4.mt (TM_FILE): Set to
1060 config/rs6000/tm-rs6000.h.
1061 * config/powerpc/tm-ppc-aix.h: Delete file.
1062 * config/powerpc/aix.mt (TM_FILE): Set to
1063 config/rs6000/tm-rs6000.h.
1064 * config/m68k/tm-linux.h: Delete file.
1065 * config/m68k/linux.mt (TM_FILE): Set to solib.h
1066 * config/i386/tm-linux64.h: Delete file.
1067 * config/i386/linux64.mt (TM_FILE): Set to solib.h.
1068 * config/djgpp/fnchange.lst: Do not rename tm-linux.h.
1069
1070 * config/m68k/tm-linux.h (SVR4_SHARED_LIBS): Delete.
1071 * config/i386/tm-linux64.h (SVR4_SHARED_LIBS): Delete.
1072 * config/i386/nm-i386sco5.h (SVR4_SHARED_LIBS): Delete.
1073 * config/tm-linux.h (SVR4_SHARED_LIBS): Delete.
1074 * config/nm-sysv4.h (SVR4_SHARED_LIBS): Delete.
1075 * config/nm-linux.h (SVR4_SHARED_LIBS): Delete.
1076 * config/nm-gnu.h (SVR4_SHARED_LIBS): Delete.
1077 * sh64-tdep.c [SVR4_SHARED_LIBS]: Delete #ifdef wrapper.
1078 * sh-tdep.c [SVR4_SHARED_LIBS]: Delete #ifdef wrapper.
1079
1080 * configure.in (GDB_TM_FILE): Fix typo, use gdb_target_cpu and not
1081 gdb_host_cpu.
1082
1083 2004-09-02 Joel Brobecker <brobecker@gnat.com>
1084
1085 * mips-tdep.c (mips_insn32_frame_cache): Remove some dead code.
1086 Minor reformatting. Some code factoring.
1087
1088 2004-09-02 Andrew Cagney <cagney@gnu.org>
1089
1090 * config/vax/nbsd.mt (TM_FILE): Set to solib.h.
1091 * config/vax/tm-nbsd.h: Delete file.
1092 * config/sparc/vxworks.mt (TM_FILE): Set to config/tm-vxworks.h.
1093 * config/sparc/tm-vxworks.h: Delete file.
1094 * config/sparc/nbsd.mt (TM_FILE): Set to solib.h.
1095 * config/sparc/tm-nbsd.h: Delete file.
1096 * config/sparc/linux64.mt (TM_FILE): Set to solib.h.
1097 * config/sparc/linux.mt (TM_FILE): Set to solib.h.
1098 * config/sparc/tm-linux.h: Delete file.
1099 * config/s390/s390.mt (TM_FILE): Set to config/tm-linux.h
1100 * config/s390/tm-linux.h: Delete file.
1101 * config/pa/obsd.mt (TM_FILE): Set to solib.h.
1102 * config/pa/tm-bsd.h: Delete file.
1103 * config/m68k/obsd.mt (TM_FILE): Set to solib.h.
1104 * config/m68k/tm-obsd.h: Delete file.
1105 * config/m68k/nbsd.mt (TM_FILE): Set to solib.h.
1106 * config/m68k/tm-nbsd.h: Delete file.
1107 * config/i386/vxworks.mt (TM_FILE): Set to config/tm-vxworks.h.
1108 * config/i386/tm-vxworks.h: Delete file.
1109 * config/i386/obsd64.mt (TM_FILE): Set to solib.h.
1110 * config/i386/obsd.mt (TM_FILE): Set to solib.h.
1111 * config/i386/nbsd64.mt (TM_FILE): Set to solib.h.
1112 * config/i386/nbsd.mt (TM_FILE): Set to solib.h.
1113 * config/i386/tm-nbsd.h: Delete file.
1114 * config/i386/i386lynx.mt (TM_FILE): Set to config/tm-lynx.h.
1115 * config/i386/tm-i386lynx.h: Delete file.
1116 * config/cris/cris.mt (TM_FILE): Set to solib.h.
1117 * config/cris/tm-cris.h: Delete file.
1118
1119 * configure.in: Let TM_FILE, XM_FILE and NAT_FILE specify a path.
1120 * configure: Re-generate.
1121 * config/arm/nbsd.mt (TM_FILE): Set to "solib.h".
1122 * config/arm/tm-nbsd.h: Delete file.
1123
1124 * config/powerpc/tm-ppcle-sim.h: Delete.
1125 * config/powerpc/tm-ppcle-eabi.h: Delete.
1126 * config/powerpc/tm-nbsd.h: Delete.
1127 * config/powerpc/nbsd.mt (TM_FILE): Set to tm-ppc-eabi.h.
1128 * config/djgpp/fnchange.lst: Do not rename tm-ppcle-sim.h or
1129 tm-ppcle-eabi.h.
1130
1131 * config/i386/nto.mh (NAT_FILE): Delete.
1132 * config/i386/nm-nto.h: Delete.
1133
1134 * config/m68k/tm-vx68.h: Do not include "tm-m68k.h".
1135 * config/m68k/tm-os68k.h: Ditto.
1136 * config/m68k/tm-monitor.h: Ditto.
1137 * config/m68k/tm-cisco.h: Ditto.
1138 * config/m68k/st2000.mt (TM_FILE): Delete.
1139 * config/m68k/tm-vx68.h (GET_LONGJMP_TARGET): Delete.
1140 * config/m68k/tm-cisco.h (GET_LONGJMP_TARGET): Delete.
1141 * config/m68k/tm-m68k.h (m68k_get_longjmp_target): Delete file.
1142 * m68k-tdep.c (m68k_get_longjmp_target): Make static.
1143
1144 * config/m68k/tm-st2000.h: Delete.
1145 * config/m68k/st2000.mt (TM_FILE): Set to tm-m68k.h.
1146 * config/sparc/fbsd.mt (TM_FILE): Delete.
1147 * config/sparc/tm-fbsd.h: Delete.
1148
1149 * acconfig.h (GDB_MULTI_ARCH): Delete undef.
1150 * defs.h (GDB_MULTI_ARCH_PARTIAL, GDB_MULTI_ARCH_TM)
1151 (GDB_MULTI_ARCH_PURE, GDB_MULTI_ARCH): Delete macros.
1152
1153 * gdbarch.sh: Instead of GDB_MULTI_ARCH print GDB_NM_FILE,
1154 GDB_TM_FILE and GDB_XM_FILE.
1155 * gdbarch.c: Re-generate.
1156 * configure.in (GDB_XM_FILE, GDB_NM_FILE, GDB_TM_FILE): Include
1157 quotes in macro definition.
1158 * configure.in: Re-generate.
1159
1160 * gdbarch.sh: Delete check for GDB_MULTI_ARCH_PARTIAL when
1161 validating architecture methods.
1162 * gdbarch.c: Re-generate.
1163
1164 * gdbarch.sh: Delete check for consistency between GDB_MULTI_ARCH
1165 and GDB_TM_FILE. Check for GDB_TM_FILE instead of
1166 GDB_MULTI_ARCH_PARTIAL.
1167 * gdbarch.h: Re-generate.
1168
1169 * config/sparc/tm-vxworks.h (GDB_MULTI_ARCH): Delete.
1170 * config/sparc/tm-sol2.h (GDB_MULTI_ARCH): Delete.
1171 * config/sparc/tm-nbsd.h (GDB_MULTI_ARCH): Delete.
1172 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Delete.
1173 * config/sparc/tm-fbsd.h (GDB_MULTI_ARCH): Delete.
1174 * config/sh/tm-sh.h (GDB_MULTI_ARCH): Delete.
1175 * config/rs6000/tm-rs6000.h (GDB_MULTI_ARCH): Delete.
1176 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): Delete.
1177 * config/mips/tm-mips.h (GDB_MULTI_ARCH): Delete.
1178 * config/ia64/tm-ia64.h (GDB_MULTI_ARCH): Delete.
1179 * config/cris/tm-cris.h (GDB_MULTI_ARCH): Delete.
1180 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Delete.
1181
1182 2004-09-01 Andrew Cagney <cagney@gnu.org>
1183
1184 * objfiles.h (struct entry_info): Delete fields main_func_lowpc
1185 and main_func_highpc.
1186 (INVALID_ENTRY_LOWPC, INVALID_ENTRY_HIGHPC): Delete macros.
1187 * objfiles.c (init_entry_point_info, objfile_relocate): Update
1188 * nlmread.c (nlm_symfile_read): Update.
1189
1190 2004-09-01 Joel Brobecker <brobecker@gnat.com>
1191
1192 * mips-tdep.c (linked_proc_desc_table): Delete, not used.
1193 (mips_insn32_frame_cache): Inline call to find_proc_desc.
1194 (find_proc_desc): Remove dead code.
1195
1196 2004-09-01 Joel Brobecker <brobecker@gnat.com>
1197
1198 * mips-tdep.c (mips_mdebug_frame_cache): Minor reformatting.
1199
1200 2004-09-01 Jeff Johnston <jjohnstn@redhat.com>
1201
1202 * observer.sh: Add struct so_list declaration.
1203 * Makefile.in: Add dependencies on observer.h for solib.c and
1204 breakpoint.c.
1205 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): New
1206 function.
1207 (_initialize_breakpoint): Register
1208 disable_breakpoints_in_unloaded_shlib as an observer of the
1209 "solib unloaded" observation event.
1210 (re_enable_breakpoints_in_shlibs): For bp_shlib_disabled breakpoints,
1211 call decode_line_1 so unfound breakpoint errors are silent.
1212 * solib.c (update_solib_list): When a solib is discovered to have
1213 been unloaded by the program, notify all observers of the
1214 "solib unloaded" observation event.
1215
1216 2004-09-01 Andrew Cagney <cagney@gnu.org>
1217
1218 * frame.c: Include "objfiles.h".
1219 (inside_main_func): New function.
1220 (get_prev_frame): Use new inside_main_func.
1221 * Makefile.in (frame.o): Update dependencies.
1222 * defs.h (inside_main_func): Delete declaration.
1223 * blockframe.c (inside_main_func): Delete function.
1224
1225 2004-08-31 Jim Blandy <jimb@redhat.com>
1226
1227 * dwarf2read.c (is_vtable_name): New function, based on logic from
1228 read_structure_type, but passing the correct length to strncmp,
1229 and using 'sizeof' instead of 'strlen'.
1230 (read_structure_type): Call it.
1231
1232 2004-08-31 Joel Brobecker <brobecker@gnat.com>
1233
1234 * config/powerpc/aix.mh: Add comment.
1235
1236 2004-08-31 Paul GIlliam <pgilliam@us.ibm.com>
1237
1238 * MAINTAINERS: Add self to Write-After-Approval.
1239
1240 2004-08-30 Manoj Iyer <manjo@austin.ibm.com>
1241
1242 * MAINTAINERS: Add self to Write-After-Approval.
1243
1244 2004-08-30 Andrew Cagney <cagney@gnu.org>
1245
1246 Fix PR breakpoints/1757.
1247 * infrun.c (struct execution_control_state): Replace
1248 remove_breakpoints_on_following_step with
1249 step_after_step_resume_breakpoint.
1250 (init_execution_control_state): Update.
1251 (handle_inferior_event): For signals, when stepping off a
1252 breakpoint, set step_after_step_resume_breakpoint. When
1253 BPSTAT_WHAT_STEP_RESUME, do a single-step off the breakpoint.
1254 (keep_going): Delete code handling
1255 remove_breakpoints_on_following_step.
1256
1257 2004-08-29 David Lecomber <david@streamline-computing.com>
1258
1259 Fix PR gdb/648
1260 * language.h (enum array_ordering): New enum.
1261 * language.h (struct language_defn): New la_array_ordering
1262 attribute.
1263 * language.c (unknown_language_defn, auto_language_defn)
1264 (local_language_defn): Ditto.
1265 * ada-lang.c (ada_language_defn): Ditto.
1266 * c-lang.c (c_language_defn, cplus_language_defn)
1267 (asm_language_defn, minimal_language_defn): Ditto.
1268 * f-lang.c (f_language_defn): Ditto.
1269 * jv-lang.c (java_language_defn): Ditto.
1270 * m2-lang.c (f_language_defn): Ditto.
1271 * objc-lang.c (objc_language_defn): Ditto.
1272 * p-lang.c (pascal_language_defn): Ditto.
1273 * scm-lang.c (scm_language_defn): Ditto.
1274 * eval.c (evaluate_subexp_standard): Assume Fortran arrays are
1275 oriented large to small in type structure.
1276 * dwarf2read.c (read_array_order): New function.
1277 (read_array_type): Use read_array_order to check row/column
1278 major ordering.
1279
1280 2004-08-27 Nathan J. Williams <nathanw@wasabisystems.com>
1281
1282 * target.c (target_resize_to_sections): Check
1283 current_target.to_sections for an old value when updating.
1284
1285 2004-08-27 Joel Brobecker <brobecker@gnat.com>
1286
1287 * procfs.c (dbx_link_bpt_addr): New static global variable.
1288 (dbx_link_shadow_contents): New static global variable.
1289 (procfs_wait, case <PR_SYSEXIT>): Handle syssgi events.
1290 (procfs_wait, case <FLTBPT>): Remove the __dbx_link brekapoint
1291 if we just hit it.
1292 (procfs_init_inferior): Enable syssgi() syscall trace if appropriate.
1293 Reset dbx_link_bpt_addr as the address of __dbx_link() may change
1294 from run to run.
1295 (procfs_create_inferior): Remove syssgi syscall-exit notifications
1296 after the inferior has been forked.
1297 (remove_dbx_link_breakpoint): New function.
1298 (dbx_link_addr): New function.
1299 (insert_dbx_link_bpt_in_file): New function.
1300 (insert_dbx_link_bpt_in_region): New function.
1301 (insert_dbx_link_breakpoint): New function.
1302 (proc_trace_syscalls_1): New function, extracted from
1303 proc_trace_syscalls.
1304 (proc_trace_syscalls): Replace extract code by call to
1305 proc_trace_syscalls_1.
1306 * solib-irix.c (disable_break): Remove stop_pc assertion, as it
1307 is no longer valid.
1308
1309 2004-08-25 Jim Blandy <jimb@redhat.com>
1310
1311 * gdbtypes.h (TYPE_CODE_ARRAY): Doc fix.
1312
1313 2004-08-25 Andrew Cagney <cagney@gnu.org>
1314
1315 * infrun.c (struct execution_control_state): Delete field
1316 "stepping_through_sigtramp".
1317 (init_execution_control_state): Do not set same.
1318 (context_switch): Do not pass same to save_infrun_state and
1319 load_infrun_state.
1320 * gdbthread.h (struct thread_info): Delete field
1321 stepping_through_sigtramp.
1322 (save_infrun_state, load_infrun_state): Delete parameter
1323 stepping_through_sigtramp.
1324 * thread.c (load_infrun_state, save_infrun_state): Update.
1325
1326 * infrun.c: Re-indent. Move expression operators to the beginning
1327 of the line. Remove long disabled #if 0 code.
1328
1329 2004-08-24 Andrew Cagney <cagney@gnu.org>
1330
1331 * doublest.h (floatformat_ieee_quad): Rename
1332 floatformat_ia64_quad.
1333 * doublest.c (floatformat_ieee_quad): Rename
1334 floatformat_ia64_quad.
1335 (_initialize_doublest): Update.
1336
1337 2004-08-24 Jim Blandy <jimb@redhat.com>
1338
1339 * dwarf2expr.h (struct dwarf_expr_context): New members
1340 'num_pieces' and 'pieces', for returning the result of an
1341 expression that uses DW_OP_piece.
1342 (struct dwarf_expr_piece): New struct type.
1343 * dwarf2expr.c (new_dwarf_expr_context): Initialize num_pieces and
1344 pieces.
1345 (free_dwarf_expr_context): Free pieces, if any.
1346 (add_piece): New function.
1347 (execute_stack_op): Implement DW_OP_piece.
1348 * dwarf2loc.c (dwarf2_evaluate_loc_desc): If the result of the
1349 expression is a list of pieces, print an error message.
1350 (dwarf2_loc_desc_needs_frame): If the expression yields
1351 pieces, and any piece is in a register, then we need a frame.
1352
1353 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Wait to fetch the top of
1354 the stack until we've decided what sort of result the evaluation
1355 has produced. Use separate variables, with more specific names.
1356
1357 2004-08-23 Richard Earnshaw <rearnsha@arm.com>
1358
1359 * armnbsd-tdep.c (arm_nbsd_arm_be_breakpoint): Define.
1360 (arm_nbsd_thumb_[lb]e_breakpoint): Define.
1361 (arm_netbsd_init_abi_common): Register them.
1362
1363 2004-08-22 Mark Kettenis <kettenis@gnu.org>
1364
1365 * config/vax/vax.mh (NATDEPFILES): Add vax-nat.c.
1366
1367 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Use
1368 safe_frame_unwind_memory instead of target_read_memory.
1369
1370 * infptrace.c: Remove #ifdef'ed out inclusion of gdb_stat.h.
1371 Reorder includes.
1372 (fetch_register, store_register): Remove prototypes.
1373 (child_resume): Reorganize code and comments such that it is
1374 grouped a bit more logically.
1375 (attach): Explicitly compare errno against 0.
1376 (detach): Likewise. Use perror_with_name instead of
1377 print_sys_errmsg.
1378 * Makefile.in (infptrace.o): Update dependencies.
1379
1380 * ia64-linux-nat.c: Update copyright year.
1381 (fetch_debug_register, store_debug_register)
1382 (ia64_linux_stopped_by_watchpoint): Replace PTRACE_ARG3_TYPE with
1383 PTRACE_TYPE_ARG3.
1384 * config/ia64/nm-linux.h: Update copyright year.
1385 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove defines.
1386
1387 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Change argument
1388 from CORE_ADDR to struct frame_info *. Use
1389 safe_frame_unwind_memory instead of deprecated_read_memory_nobpt.
1390 (amd64_linux_sigtramp_p): Adjust for changed signature of
1391 and64_linux_sigtramp_start
1392
1393 * gdb_ptrace.h: GNU/Linux.
1394
1395 * config/alpha/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
1396 Remove defines.
1397
1398 * infptrace.c: Include "gdb_assert.h".
1399 (PTRACE_XFER_TYPE): Remove define.
1400 (offsetof): Only define if U_REGS_OFFSET isn't defined.
1401 (fetch_register, store_register): Rewrite to use PTRACE_TYPE_RET.
1402 Tweak comment.
1403 (fetch_inferior_registers, store_inferior_registers): Remove
1404 redundant culry braces. Tweak comment. s/regno/regnum.
1405 * Makefile.in (infptrace.o): Update dependencies.
1406
1407 * configure.in: Change test for return type of ptrace to default
1408 to `long' instead of `int'.
1409 * configure: Regenerate.
1410
1411 2004-08-21 Mark Kettenis <kettenis@gnu.org>
1412
1413 * config/alpha/alpha-linux.mh (LOADLIBES): New variable.
1414
1415 * configure.in: Check for ttrace function.
1416 * configure, config.in: Regenerate.
1417
1418 * gdb_ptrace.h: New file.
1419 * infptrace.c: Include "gdb_ptrace.h" instead of <ptrace.h> or
1420 <sys/ptrace.h>.
1421 (PT_READ_I, PT_READ_D, PT_READ_U, PT_WRITE_I, PT_WRITE_D)
1422 (PT_WRITE_U, PT_CONTINUE, PT_STEP, PT_KILL): Remove defines.
1423 (attach): Don't define PT_ATTACH.
1424 (detach): Don't define PT_DETACH.
1425 * Makefile.in (gdb_ptrace_h): New variable.
1426 (infptrace.o): Update dependencies.
1427
1428 2004-08-16 Mark Kettenis <kettenis@gnu.org>
1429
1430 * inferior.h (PTRACE_ARG3_TYPE): Define as PTRACE_TYPE_ARG3
1431 instead of `int' if not already defined.
1432 (call_ptrace): Revert change that replaced PTRACE_ARG3_TYPE with
1433 PTRACE_TYPE_ARG3.
1434 * infptrace.c (call_ptrace): Revert change that replaced
1435 PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1436
1437 2004-08-15 Mark Kettenis <kettenis@gnu.org>
1438
1439 * config/i386/nm-linux64.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
1440 Remove defines.
1441
1442 * linux-nat.c (kill_inferior): Add missing third and fourth
1443 arguments to ptrace call. Don't use PTRACE_ARG3_TYPE.
1444
1445 * infptrace.c (child_xfer_memory): Replace PTRACE_XFER_TYPE with
1446 PTRACE_TYPE_RET.
1447
1448 * proc-why.c (proc_prettyfprint_why): Fix format string.
1449
1450 * solib-osf.c (osf_current_sos): Remove unsused label.
1451
1452 * configure.in: Add <ncurses/ncurses.h> to the list of possible
1453 curses headers.
1454 * configure, config.in: Regenerate.
1455 * gdb_curses.h [HAVE_NCURSES_NCURSES_H]: Include
1456 <ncurses/ncurses.h>.
1457
1458 * config/nm-bsd.h (PTRACE_ARG3_TYPE): Remove define.
1459 * config/nm-nbsd.h: Update copyright year.
1460 (PTRACE_ARG3_TYPE): Remove define.
1461
1462 * sparc-nat.c (fetch_inferior_registers)
1463 (store_inferior_registers, sparc_xfer_wcookie):
1464 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1465
1466 * alphabsd-nat.c (fetch_inferior_registers):
1467 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1468 PTRACE_TYPE_ARG3.
1469 * amd64bsd-nat.c (fetch_inferior_registers)
1470 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1471 PTRACE_TYPE_ARG3.
1472 * armnbsd-nat.c: Update copyright year.
1473 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs)
1474 (store_register, store_regs, store_fp_register, store_fp_regs):
1475 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1476 * hppabsd-nat.c (fetch_inferior_registers)
1477 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1478 PTRACE_TYPE_ARG3.
1479 * i386bsd-nat.c (fetch_inferior_registers)
1480 (store_inferior_registers, i386bsd_dr_set, i386bsd_dr_get_status):
1481 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1482 * m68kbsd-nat.c (fetch_inferior_registers)
1483 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1484 PTRACE_TYPE_ARG3.
1485 * m88kbsd-nat.c (fetch_inferior_registers)
1486 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1487 PTRACE_TYPE_ARG3.
1488 * mipsnbsd-nat.c: Update copyright year.
1489 (fetch_inferior_registers, store_inferior_registers):
1490 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1491 * ns32knbsd-nat.c: Update copyright year.
1492 (fetch_inferior_registers, store_inferior_registers):
1493 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1494 * ppcnbsd-nat.c (fetch_inferior_registers):
1495 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1496 PTRACE_TYPE_ARG3.
1497 * ppcobsd-nat.c (fetch_inferior_registers):
1498 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1499 PTRACE_TYPE_ARG3.
1500 * shnbsd-nat.c: Update copyright year.
1501 (fetch_inferior_registers, store_inferior_registers):
1502 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1503 * vaxbsd-nat.c (fetch_inferior_registers)
1504 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1505 PTRACE_TYPE_ARG3.
1506
1507 * inferior.h (call_ptrace): Replace PTRACE_ARG3_TYPE with
1508 PTRACE_TYPE_ARG3.
1509 * infptrace.c (call_ptrace, child_resume, attach, detach)
1510 (U_REGS_OFFSET, fetch_register, store_register, child_xfer_memory)
1511 (udot_info): Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1512 * inftarg.c (ptrace_me): Replace PTRACE_ARG3_TYPE with
1513 PTRACE_TYPE_ARG3.
1514
1515 2004-08-14 Mark Kettenis <kettenis@gnu.org>
1516
1517 * defs.h: Remove out-of-date comment.
1518 [!FCLOSE_PROVIDED] (fclose): Remove prototype.
1519 [!GETENV_PROVIDED] (getenv): Remove prototype.
1520
1521 * standalone.c: Remove file.
1522 * Makefile.in (standalone.o): Remove dependency.
1523
1524 * i386-linux-nat.c (dummy_sse_values): Remove function and
1525 prototype.
1526 (i386_linux_dr_get): Fix typo in comment.
1527 (LINUX_SYSCALL_REGNUM): Define as I386_EAX_REGNUM.
1528
1529 * config/i386/obsd64.mt (TDEPFILES): Add i386obsd-tdep.o.
1530
1531 * defs.h (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
1532 from declaration.
1533 * top.c (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
1534 from definition.
1535
1536 2004-08-13 Mark Kettenis <kettenis@gnu.org>
1537
1538 * configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
1539 parenthesis in definition.
1540 * configure: Regenerated.
1541
1542 2004-08-12 Michael Chastain <mec.gnu@mindspring.com>
1543
1544 * PROBLEMS: Mention build/1411.
1545
1546 2004-08-09 Robert Millan <robertmh@gnu.org>
1547
1548 Committed by Nathanael Nerode.
1549 * configure.host: Match kfreebsd*-gnu and knetbsd*-gnu.
1550 * configure.tgt: Match kfreebsd*-gnu and knetbsd*-gnu.
1551
1552 2004-08-12 Andrew Cagney <cagney@gnu.org>
1553
1554 * NEWS: Mention fixes in GDB 6.2.1.
1555 * PROBLEMS: Remove mention of mips-irix.
1556
1557 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1558
1559 * config/powerpc/xm-aix.h: Delete.
1560 * config/powerpc/aix.mh (MH_FILE): Remove.
1561 * config/powerpc/aix432.mh (MH_FILE): Remove.
1562
1563 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1564
1565 * config/powerpc/aix.mh: Remove obsolete comment.
1566 * config/powerpc/aix432.mh: Likewise.
1567
1568 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1569
1570 * config/powerpc/xm-aix.h (UINT_MAX): Remove undef.
1571
1572 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1573
1574 * config/rs6000/xm-aix4.h: Remove "config/xm-aix4.h" include,
1575 this file is now empty.
1576 * config/xm-aix4.h: Remove, this file is no longer included
1577 anywhere.
1578
1579 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1580
1581 * config/powerpc/xm-aix.h: Remove "config/xm-aix4.h" include,
1582 that file is now empty.
1583 (termdef): Remove prototype, function no longer used.
1584
1585 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1586
1587 * doc/gdbint.texinfo (Host Definition): Remove documentation
1588 for USE_O_NOCTTY, no longer used.
1589 * config/xm-aix4.h (USE_O_NOCTTY): Remove, no longer used.
1590 * config/rs6000/xm-rs6000.h (USE_O_NOCTTY): Likewise.
1591
1592 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1593
1594 * config/xm-aix4.h (FIVE_ARG_PTRACE): Remove, no longer used.
1595 * config/pa/nm-hppah.h (FIVE_ARG_PTRACE): Likewise.
1596 * config/rs6000/xm-rs6000.h (FIVE_ARG_PTRACE): Likewise.
1597
1598 2004-08-11 Mark Kettenis <kettenis@gnu.org>
1599
1600 * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5
1601 instead of FIVE_ARG_PTRACE.
1602
1603 * inflow.c (O_NOCTTY): Define to zero if not already defined.
1604 (new_tty): Use O_NOCTTY unconditionally.
1605
1606 2004-08-10 Mark Kettenis <kettenis@gnu.org>
1607
1608 * procfs.c (procfs_detach): Cleanup. Print process ID, not LWP
1609 ID. Use comma in output. Use gdb_flush on gdb_stdout instead of
1610 fflush on stdout.
1611
1612 2004-08-10 Joel Brobecker <brobecker@gnat.com>
1613
1614 * xcoff_symfile_finish: Replace last call to xmfree by call
1615 to xfree.
1616
1617 2004-08-10 Andrew Cagney <cagney@gnu.org>
1618
1619 * main.c (captured_main): Delete call to init_malloc.
1620 * defs.h (init_malloc): Delete declaration.
1621 * utils.c (mmalloc, mrealloc, mcalloc, mfree)
1622 (init_malloc): Delete functions.
1623
1624 * defs.h (xmfree): Delete.
1625 * utils.c (xmfree): Delete function.
1626 (xfree): Inline calls to xmfree and mfree.
1627 * symmisc.c (free_symtab_block, free_symtab): Use xfree.
1628 * symfile.c (reread_symbols, init_psymbol_list): Ditto.
1629 * source.c (forget_cached_source_info, find_and_open_source): Ditto.
1630 * somread.c (som_symfile_finish): Ditto.
1631 * objfiles.c (allocate_objfile, free_objfile):
1632 * nlmread.c (nlm_symfile_finish): Ditto.
1633 * hpread.c (hpread_symfile_finish): Ditto.
1634 * elfread.c (free_elfinfo, elf_symfile_finish): Ditto.
1635 * dbxread.c (dbx_symfile_finish, free_bincl_list): Ditto.
1636 * coffread.c (coff_symfile_finish): Ditto.
1637
1638 * defs.h (xmcalloc): Delete declaration.
1639 * utils.c (xmcalloc): Delete.
1640 (xcalloc): Inline calls to xmcalloc and mcalloc.
1641 * ada-lang.c (_initialize_ada_language): Use htab_create_alloc,
1642 xcalloc and xfree.
1643 * symtab.c (create_demangled_names_hash): Ditto.
1644
1645 * defs.h (xmrealloc): Delete.
1646 * utils.c (xmrealloc): Delete.
1647 (xrealloc): Inline calls to xmrealloc, mmalloc and mrealloc.
1648 * symmisc.c (extend_psymbol_list): Use xrealloc.
1649 * source.c (find_source_lines): Ditto.
1650 * hpread.c (hpread_lookup_type): Ditto.
1651 * dbxread.c (add_bincl_to_list): Ditto.
1652
1653 * utils.c (xmmalloc): Delete.
1654 (xmalloc): Inline xmmalloc and mmalloc calls.
1655 (msavestring): Use xmalloc.
1656 * defs.h (xmmalloc): Delete declaration.
1657 * xcoffread.c (xcoff_symfile_init): Use xmalloc instead of
1658 xmmalloc.
1659 * symmisc.c (extend_psymbol_list): Ditto.
1660 * symfile.c (init_psymbol_list): Ditto.
1661 * source.c (find_source_lines): Ditto.
1662 * hpread.c (hpread_symfile_init, hpread_lookup_type): Ditto.
1663 * elfread.c (elf_symtab_read): Ditto.
1664 * dbxread.c (dbx_symfile_init, init_bincl_list): Ditto.
1665 * coffread.c (coff_symfile_init): Ditto.
1666
1667 2004-08-10 David Carlton <carlton@bactrian.org>
1668
1669 * MAINTAINERS: Remove David Carlton from c++ testsuite
1670 maintainers.
1671
1672 2004-08-10 Jerome Guitton <guitton@gnat.com>
1673
1674 * symfile.c (symbol_file_add_with_addrs_or_offsets): Make sure to
1675 print a line feed before the prompt.
1676
1677 2004-08-10 Mark Kettenis <kettenis@gnu.org>
1678
1679 * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP.
1680
1681 2004-08-09 Joel Brobecker <brobecker@gnat.com>
1682
1683 General cleanup of the AIX xm include file:
1684 * config/xm-aix4.h (fd_set): Remove undefine.
1685 Remove include of <sys/select.h>.
1686 (HAVE_TERMIO): Remove define.
1687 (USG): Likewise.
1688 (NULL): Remove redefine.
1689 (alloca): Remove #pragma.
1690 (vfork): Remove define.
1691 (termdef): Remove.
1692 (SIGWINCH_HANDLER): Remove.
1693 (SIGWINCH_HANDLER_BODY): Remove.
1694
1695 2004-08-09 Mark Kettenis <kettenis@gnu.org>
1696
1697 * configure.tgt (x86_64-*-openbsd*): Set gdb_osabi to
1698 GDB_OSABI_OPENBSD_ELF.
1699
1700 2004-08-07 Robert Millan <robertmh@gnu.org>
1701
1702 * bsd-kvm.c: Check for nlist.h before including it.
1703
1704 2004-08-09 Mark Kettenis <kettenis@gnu.org>
1705
1706 * i386bsd-nat.c (_initialize_i386bsd_nat): Remove `struct
1707 sigcontext' offset consistency checks for ancient BSD.
1708
1709 * gdb_curses.h [HAVE_CURSESX_H]: Include <cursesX.h>
1710
1711 * configure.in: Check for <sys/types.h>. Check return and
1712 argument types of ptrace.
1713 * configure, config.in: Regenerate.
1714
1715 2004-08-09 Jim Blandy <jimb@redhat.com>
1716
1717 * rs6000-tdep.c (set_sim_regno, init_sim_regno_table,
1718 rs6000_register_sim_regno): Doc fixes.
1719
1720 2004-08-08 Joel Brobecker <brobecker@gnat.com>
1721
1722 * mips-tdep.c: Include "floatformat.h".
1723 (n32n64_floatformat_always_valid): New function.
1724 (floatformat_n32n64_long_double_big): New constant.
1725 (mips_gdbarch_init): Set size and format of long double
1726 for N32 and N64 ABIs.
1727 * Makefile.in (mips-tdep.o): Update dependencies.
1728
1729 2004-08-08 Andrew Cagney <cagney@gnu.org>
1730
1731 * gdbarch.sh: Delete "fmt" and "attrib" fields. Always use %s to
1732 print. Improve script's error messages.
1733 * gdbarch.h: Re-generate.
1734
1735 * gdbarch.sh (pformat): New function.
1736 (float_format, double_format, long_double_format): List with bit
1737 members. Use pformat when printing.
1738 * gdbarch.c, gdbarch.h: Re-generate.
1739
1740 2004-08-08 Nathan J. Williams <nathanw@wasabisystems.com>
1741
1742 * ppcnbsd-nat.c: Include <machine/frame.h>, <machine/pcb.h>,
1743 "gdbcore.h", "regcache.h", and "bsd-kvm.h".
1744 (ppcnbsd_supply_pcb): New function.
1745 (_initialize_ppcnbsd_nat): New prototype and function.
1746 * config/powerpc/nbsd.mh (NATDEPFILES): Add bsd-kvm.o.
1747 (LOADLIBES): New variable.
1748 * Makefile.in (ppcnbsd-nat.o): Update dependencies.
1749
1750 2004-08-08 Andrew Cagney <cagney@gnu.org>
1751
1752 * gdbtypes.c (builtin_type_arm_ext, builtin_type_ieee_single)
1753 (builtin_type_ieee_double, builtin_type_ia64_quad)
1754 (builtin_type_ia64_spill, _initialize_gdbtypes): Add tables of
1755 BE/LE floating-point types.
1756 * gdbtypes.h (builtin_type_arm_ext, builtin_type_ieee_single)
1757 (builtin_type_ieee_double, builtin_type_ia64_quad)
1758 (builtin_type_ia64_spill): Declare.
1759 * doublest.c (_initialize_doublest, floatformat_ieee_single)
1760 (floatformat_ieee_double, floatformat_arm_ext)
1761 (floatformat_ia64_spill, floatformat_ia64_quad): Add tables
1762 of LE/BE floatformats.
1763 * doublest.h: (struct floatformat, floatformat_ieee_single)
1764 (floatformat_ieee_double, floatformat_arm_ext)
1765 (floatformat_ia64_spill, floatformat_ia64_quad): Declare.
1766
1767 2004-08-08 Mark Kettenis <kettenis@gnu.org>
1768
1769 * i386gnu-nat.c (gnu_store_registers): Fix typo.
1770
1771 * i386gnu-nat.c (gnu_store_registers): Use regcache_raw_collect
1772 instead of regcache_raw_supply when storing the registers.
1773
1774 * i386gnu-nat.c: Update copyright year.
1775 (gnu_store_registers): Don't use deprecated_registers and
1776 deprecated_registers_valid. Use regcache_valid_p and
1777 regcache_raw_supply instead.
1778
1779 * vax-tdep.c (vax_frame_this_id): Use frame_func_unwind instead of
1780 frame_pc_unwind.
1781
1782 * procfs.c (procfs_pid_to_str): Remove redundant and unused
1783 variables. Incapitalized "process".
1784
1785 * configure.in: Add cursesX to the list of possible curses libs.
1786 Add cursesX.h to the list of possible curses headers.
1787 * configure, config.in: Regenerate.
1788
1789 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
1790
1791 * configure.in: Test for struct lwp in <sys/lwp.h>.
1792 * bsd-kvm.c (bsd_kvm_proc_cmd): If HAVE_STRUCT_LWP is defined, use
1793 the offset of l_addr in struct lwp.
1794
1795 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
1796
1797 * bsd-kvm.c: Include "gdbcore.h"
1798 (bsd_kvm_open): Use get_exec_file() to set 'execfile'.
1799
1800 2004-08-07 Andrew Cagney <cagney@gnu.org>
1801
1802 * gdbtypes.c (build_flt, build_complex): New functions.
1803 (gdbtypes_post_init): Use.
1804
1805 * doublest.c (floatformat_from_length): Fix tipo, "*" not "&".
1806
1807 * gdbtypes.c (_initialize_gdbtypes): Do not swap builtin_type_int8
1808 through to builtin_type_uint128.
1809
1810 * c-exp.y: Use builtin_type function to obtain builtin types.
1811
1812 * gdbtypes.h (struct builtin_type): Delete builtin_int0 through to
1813 builtin_uint128.
1814 * gdbtypes.c (gdbtypes_post_init): Update.
1815 (build_gdbtypes): Move initialization of builtin_type_int0
1816 through to builtin_type_uint128 from here ...
1817 (_initialize_gdbtypes): ... to here.
1818 * d10v-tdep.c (d10v_register_type): Update.
1819
1820 * doublest.c: Update copyright.
1821 (floatformat_from_length): Call error when floatformat is NULL.
1822 (extract_floating_by_length): Remove NULL fmt check.
1823 (store_floating_by_length): Ditto.
1824
1825 2004-08-07 Andrew Cagney <cagney@gnu.org>
1826
1827 * regcache.c (regcache_raw_read): For the moment, #ifdef assert
1828 that the register is valid.
1829
1830 2004-08-05 Mark Kettenis <kettenis@chello.nl>
1831
1832 * i386-linux-tdep.c (i386_linux_sigtramp_start)
1833 (i386_linux_rt_sigtramp_start): Change argument from CORE_ADDR to
1834 struct frame_info *. Use safe_frame_unwind_memory instead of
1835 deprecated_read_memory_nobpt.
1836 (i386_linux_sigtramp_p, i386_linux_sigcontext_addr): Adjust for
1837 changed signature of i386_linux_sigtramp_start and
1838 i386_linux_rt_sigtramp_start.
1839
1840 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Change argument from
1841 CORE_ADDR to struct frame_info *. Use safe_frame_unwind_memory
1842 instead of deprecated_read_memory_nobpt.
1843 (i386nbsd_sigtramp_p): Adjust for changed signature of
1844 i386nbsd_sigtramp_offset.
1845
1846 * i386obsd-tdep.c (i386obsd_sigtramp_p): Use
1847 safe_frame_unwind_memory instead of target_read_memory.
1848
1849 * infptrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
1850 !NO_SYS_FILE.
1851 [KERNEL_U_ADDR_BSD]: Don't include <a.out.h>.
1852 [KERNEL_U_ADDR_BSD] (kernel_u_addr): Remove variable.
1853 (_initialize_kernel_u_addr): Remove prototype and function.
1854 * infttrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
1855 !NO_SYS_FILE.
1856 * xcoffread.c: Likewise.
1857
1858 2004-08-06 Mark Kettenis <kettenis@gnu.org>
1859
1860 * vax-nat.c: New file.
1861 * vaxbsd-nat.c: Tweak comment.
1862 * Makefile.in (ALLDEPFILES): Add vax-nat.c, vaxbsd-nat.c and
1863 vaxnbsd-tdep.c.
1864 (vax-nat.o): New dependency.
1865 * configure.host (vax-*-bsd*, vax-*-ultrix*): Set gdb_host to vax.
1866 (vax-*-ultrix2*): Remove.
1867 * config/vax/vax.mh: New file.
1868 * config/vax/nm-vax.h (vax_kernel_u_addr): New extern declaration.
1869 (KERNEL_U_ADDR): Define as vax_kernel_u_addr.
1870 (vax_register_u_addr): New prototype.
1871 (REGISTER_U_ADDR): Define using vax_register_u_addr.
1872 * config/vax/vaxult2.mh: Remove file.
1873 * config/vax/vaxult.mh: Remove file.
1874 * config/vax/vaxbsd.mh: Remove file.
1875 * config/vax/vax.mt (TM_FILE): Remove.
1876 * config/vax/tm-vaxbsd.h: Remove file.
1877
1878 2004-08-06 Joel Brobecker <brobecker@gnat.com>
1879
1880 * aix-thread.c (get_signaled_thread): New function.
1881 (iter_trap): Delete, no longer used.
1882 (iter_tid): New function.
1883 (pd_update): Find the thread that received the SIGTRAP signal
1884 by first locating the kernel thread, and then finding its
1885 associated thread.
1886
1887 2004-08-06 Ulrich Weigand <uweigand@de.ibm.com>
1888
1889 * lin-lwp.c (child_wait): Continue inferior after processing
1890 PTRACE_EVENT_CLONE event.
1891
1892 2004-08-05 Nathanael Nerode <neroden@gcc.gnu.org>
1893
1894 * MAINTAINERS: Add self to Write-After-Approval.
1895
1896 2004-08-05 Jeff Johnston <jjohnstn@redhat.com>
1897
1898 * libunwind-frame.c (LIBUNWIND_SO): Change to be of form:
1899 libunwind-xxxx.so" where xxxx is UNW_TARGET.
1900
1901 2004-08-05 Andrew Cagney <cagney@gnu.org>
1902
1903 * config/xm-sysv4.h: Delete file.
1904 * config/mips/xm-irix5.h: Delete file.
1905 * config/mips/irix6.mh (XM_FILE, XM_CLIBS): Delete.
1906 * config/mips/irix5.mh (XM_FILE, XM_CLIBS): Delete.
1907 * config/ia64/xm-aix.h: Delete file.
1908 * config/ia64/aix.mh (XM_FILE): Delete.
1909 * config/pa/xm-hppah.h: Delete file.
1910 * config/pa/hpux11w.mh (XM_FILE): Delete.
1911 * config/pa/hpux11.mh (XM_FILE): Delete.
1912 * config/pa/hpux1020.mh (XM_FILE): Delete.
1913 * config/pa/hppahpux.mh (XM_FILE): Delete.
1914
1915 * config/alpha/xm-alphalinux.h: Delete file.
1916 * config/djgpp/fnchange.lst: Do not fix xm-alphalinux.h.
1917 * config/alpha/alpha-linux.mh (XM_FILE, LOADLIBES): Delete.
1918 * config/alpha/xm-alphaosf.h: Delete file.
1919 * config/djgpp/fnchange.lst: Do not fix xm-alphaosf.h.
1920 * config/alpha/alpha-osf3.mh (XM_FILE): Delete.
1921 * config/alpha/alpha-osf2.mh (XM_FILE): Delete.
1922 * config/alpha/alpha-osf1.mh (XM_FILE): Delete.
1923
1924 * config/i386/xm-i386v.h: Delete file.
1925 * config/i386/i386v.mh (XM_FILE, XM_CLIBS): Delete.
1926 * config/i386/i386sco5.mh (XM_FILE, XM_CLIBS): Delete.
1927 * config/i386/xm-i386sco.h: Delete file.
1928 * config/i386/i386sco4.mh (XM_FILE, XM_CLIBS, MH_CFLAGS): Delete.
1929 * config/i386/i386sco.mh (XM_FILE, XM_CLIBS, CC): Delete.
1930 * config/i386/xm-i386v4.h: Delete file.
1931 * config/djgpp/fnchange.lst: Do not fix xm-i386v4.h.
1932 * config/i386/ncr3000.mh (CC, CFLAGS, XM_FILE): Delete.
1933 * config/i386/i386v42mp.mh (XM_FILE, XM_CLIBS): Delete.
1934 * config/i386/i386v4.mh (XM_FILE, XM_CLIBS): Delete.
1935
1936 * config/vax/xm-vax.h: Delete file.
1937 * Makefile.in (xm-vaxult.h, xm-vaxbsd.h): Delete.
1938 * config/vax/xm-vaxult2.h: Delete file.
1939 * config/djgpp/fnchange.lst: Do not fix xm-vaxult2.h.
1940 * config/vax/vaxult2.mh (XM_FILE): Delete.
1941 * config/vax/xm-vaxult.h: Delete file.
1942 * config/vax/vaxult.mh (XM_FILE): Delete.
1943 * config/vax/xm-vaxbsd.h: Delete file.
1944 * config/vax/vaxbsd.mh (XM_FILE): Delete.
1945
1946 * gdbarch.sh (deprecated_frame_saved_pc): Delete.
1947 * gdbarch.h, gdbarch.c: Re-generate.
1948 * regcache.c (deprecated_read_fp, deprecated_write_sp): Delete.
1949 * inferior.h (deprecated_read_fp, deprecated_write_sp): Delete.
1950 * frame.h: Delete deprecated_read_fp from comments.
1951 * arch-utils.c (deprecated_init_frame_pc_default): Delete.
1952 * arch-utils.h (deprecated_init_frame_pc_default): Delete.
1953
1954 2004-08-04 Mark Kettenis <kettenis@gnu.org>
1955
1956 * i386obsd-tdep.c (i386obsd_sigtramp_p): Adjust for changed signal
1957 trampoline in OpenBSD 3.5-current.
1958
1959 * i387-tdep.c (i387_supply_fsave): Provide summy values for the
1960 SSE registers.
1961
1962 * Makefile.in: Remove embedded page breaks.
1963
1964 2004-08-04 Jim Blandy <jimb@redhat.com>
1965
1966 * regcache.c (regcache_raw_read): Assert that, after calling
1967 target_fetch_registers, the register we're reading is cached.
1968
1969 * ppc-linux-nat.c (fetch_register): Replace 'gdb_assert (0)' with
1970 a call to 'internal_error', with a more helpful error message.
1971 * rs6000-tdep.c (e500_pseudo_register_read,
1972 e500_pseudo_register_write, rs6000_store_return_value): Same.
1973
1974 2004-08-04 Andrew Cagney <cagney@gnu.org>
1975
1976 * Makefile.in: Update dependencies.
1977
1978 2004-08-04 Jim Blandy <jimb@redhat.com>
1979
1980 Change the layout of the PowerPC E500 raw register cache to allow
1981 the lower 32-bit halves of the GPRS to be their own raw registers,
1982 not pseudoregisters.
1983 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_gprs_pseudo_p flag;
1984 add ppc_ev0_upper_regnum flag.
1985 * rs6000-tdep.c: #include "reggroups.h".
1986 (spe_register_p): Recognize the ev upper half registers as SPE
1987 registers.
1988 (init_sim_regno_table): Build gdb->sim mappings for the upper-half
1989 registers.
1990 (e500_move_ev_register): New function.
1991 (e500_pseudo_register_read, e500_pseudo_register_write): The 'ev'
1992 vector registers are the pseudo-registers now, formed by splicing
1993 together the gprs and the upper-half registers.
1994 (e500_register_reggroup_p): New function.
1995 (P): Macro deleted.
1996 (P8, A4): New macro.
1997 (PPC_EV_REGS, PPC_GPRS_PSEUDO_REGS): Macros deleted.
1998 (PPC_SPE_GP_REGS, PPC_SPE_UPPER_GP_REGS, PPC_EV_PSEUDO_REGS): New
1999 macros.
2000 (registers_e500): Rearrange register set so that the raw register
2001 set contains 32-bit GPRs and upper-half registers, and the SPE
2002 vector registers become pseudo-registers.
2003 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gprs_pseudo_p;
2004 it has been deleted. Initialize ppc_ev0_upper_regnum. Many other
2005 register numbers are now the same for the E500 as they are for
2006 other PowerPC variants. Register e500_register_reggroup_p as the
2007 register group function for the E500.
2008 * Makefile.in (rs6000-tdep.o): Update dependencies.
2009
2010 Adapt PPC E500 native support to the new raw regcache layout.
2011 * ppc-linux-nat.c (struct gdb_evrregset_t): Doc fixes.
2012 (read_spliced_spe_reg, write_spliced_spe_reg): Deleted.
2013 (fetch_spe_register, store_spe_register): Handle fetching/storing
2014 all the SPE registers at once, if regno == -1. These now take
2015 over the job of fetch_spe_registers and store_spe_registers.
2016 (fetch_spe_registers, store_spe_registers): Deleted.
2017 (fetch_ppc_registers, store_ppc_registers): Fetch/store gprs
2018 unconditionally; they're always raw. Fetch/store SPE upper half
2019 registers, if present, instead of ev registers.
2020 (fetch_register, store_register): Remove sanity checks: gprs are
2021 never pseudo-registers now, so we never need to even mention any
2022 registers that are ever pseudoregisters.
2023
2024 Use a fixed register numbering when communicating with the PowerPC
2025 simulator.
2026 * ppc-tdep.h (struct gdbarch_tdep): New member: 'sim_regno'.
2027 * rs6000-tdep.c: #include "sim-regno.h" and "gdb/sim-ppc.h".
2028 (set_sim_regno, init_sim_regno_table, rs6000_register_sim_regno):
2029 New functions.
2030 (rs6000_gdbarch_init): Register rs6000_register_sim_regno. Call
2031 init_sim_regno_table.
2032 * Makefile.in (gdb_sim_ppc_h): New variable.
2033 (rs6000-tdep.o): Update dependencies.
2034
2035 2004-08-02 Andrew Cagney <cagney@gnu.org>
2036
2037 * cris-tdep.c (cris_register_size): Restore function, still used
2038 locally.
2039
2040 * gdbarch.sh (deprecated_target_read_fp)
2041 (deprecated_frame_locals_address, deprecated_frame_args_address)
2042 (deprecated_frame_chain_valid, deprecated_frame_chain)
2043 (deprecated_init_extra_frame_info, deprecated_pop_frame)
2044 (deprecated_frame_init_saved_regs, deprecated_get_saved_register)
2045 (deprecated_do_registers_info, deprecated_init_frame_pc): Delete.
2046 * gdbarch.h, gdbarch.c: Re-generate.
2047 * regcache.c (deprecated_read_fp): Do not call
2048 DEPRECATED_TARGET_READ_FP_P.
2049 * infcmd.c (default_print_registers_info): Do not call
2050 DEPRECATED_DO_REGISTERS_INFO.
2051 * frame-base.c (default_frame_locals_address): Do not call
2052 DEPRECATED_FRAME_LOCALS_ADDRESS.
2053 (default_frame_args_address): Do not call
2054 DEPRECATED_FRAME_ARGS_ADDRESS.
2055
2056 * gdbarch.sh (deprecated_register_raw_size)
2057 (deprecated_register_virtual_size:int): Delete.
2058 * gdbarch.h, gdbarch.c: Re-generate.
2059 * cris-tdep.c (cris_register_size): Delete.
2060 (cris_gdbarch_init): Update.
2061 * alpha-tdep.c (alpha_register_raw_size)
2062 (alpha_register_virtual_size): Delete.
2063 (alpha_gdbarch_init): Update.
2064
2065 * gdbarch.sh (deprecated_register_virtual_type)
2066 (deprecated_save_dummy_frame_tos, deprecated_push_return_address)
2067 (deprecated_dummy_write_sp): Delete.
2068 * gdbarch.h, gdbarch.c: Re-generate.
2069
2070 * gdbarch.sh (deprecated_register_bytes): Delete.
2071 * gdbarch.h, gdbarch.c: Re-generate.
2072 * regcache.c (deprecated_register_bytes): New function.
2073 * regcache.h (deprecated_register_bytes): Declare.
2074 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2075 * v850-tdep.c (v850_gdbarch_init): Update.
2076 * sh64-tdep.c (sh64_gdbarch_init): Update.
2077 * ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
2078 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2079 * mcore-tdep.c (mcore_gdbarch_init): Update.
2080 * cris-tdep.c (cris_gdbarch_init): Update.
2081 * arm-tdep.c (arm_gdbarch_init): Update.
2082 * remote.c (init_remote_state): Update.
2083 * remote-vx.c (vx_prepare_to_store): Update.
2084 * remote-sds.c (sds_fetch_registers, sds_prepare_to_store): Update.
2085 * irix5-nat.c (fetch_core_registers): Update.
2086 * cris-tdep.c (cris_register_bytes_ok): Update.
2087 * config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
2088
2089 * mips-tdep.c (mips_gdbarch_init, mips_insn16_frame_cache)
2090 (mips_insn16_frame_this_id, mips_insn16_frame_prev_register)
2091 (mips_insn16_frame_unwind, mips_insn16_frame_sniffer)
2092 (mips_insn16_frame_base_address, mips_insn16_frame_base)
2093 (mips_insn16_frame_base_sniffer, mips_insn32_frame_cache)
2094 (mips_insn32_frame_this_id, mips_insn32_frame_prev_register)
2095 (mips_insn32_frame_unwind, mips_insn32_frame_sniffer)
2096 (mips_insn32_frame_base_address, mips_insn32_frame_base)
2097 (mips_insn32_frame_base_sniffer): Replace mips16 / mips32 prefix
2098 with mips_insn16 and mips_insn32.
2099
2100 Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
2101 * rs6000-tdep.c (rs6000_push_dummy_call)
2102 (rs6000_extract_return_value): Use register_size.
2103 * xstormy16-tdep.c (xstormy16_get_saved_register)
2104 (xstormy16_extract_return_value): Ditto.
2105 * valops.c (value_assign): Ditto.
2106 * v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
2107 * v850-tdep.c (v850_extract_return_value): Ditto.
2108 * tracepoint.c (collect_symbol): Ditto.
2109 * target.c (debug_print_register): Ditto.
2110 * stack.c (frame_info): Ditto.
2111 * rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
2112 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
2113 * remote.c (struct packet_reg, remote_wait, remote_async_wait)
2114 (store_register_using_P): Ditto.
2115 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
2116 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
2117 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
2118 * remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
2119 * regcache.c (deprecated_read_register_bytes)
2120 (deprecated_write_register_bytes, read_register)
2121 (write_register): Ditto.
2122 * ppc-linux-nat.c (fetch_altivec_register, fetch_register)
2123 (supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
2124 * monitor.c (monitor_supply_register, monitor_fetch_register)
2125 (monitor_store_register): Ditto.
2126 * mn10300-tdep.c (mn10300_pop_frame_regular)
2127 (mn10300_print_register): Ditto.
2128 * mipsv4-nat.c (fill_fpregset): Ditto.
2129 * mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
2130 (mips64_fill_fpregset): Ditto.
2131 * mi/mi-main.c (register_changed_p, get_register)
2132 (mi_cmd_data_write_register_values): Ditto.
2133 * lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
2134 * irix5-nat.c (fill_gregset, fetch_core_registers):
2135 * infrun.c (write_inferior_status_register): Ditto.
2136 * infptrace.c (fetch_register, store_register): Ditto.
2137 * infcmd.c (default_print_registers_info): Ditto.
2138 * ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
2139 * ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
2140 * i386gnu-nat.c (gnu_store_registers, fill): Ditto.
2141 * hpux-thread.c (hpux_thread_fetch_registers)
2142 (hpux_thread_store_registers): Ditto.
2143 * hppah-nat.c (store_inferior_registers, fetch_register):
2144 * findvar.c (value_from_register): Ditto.
2145 * dve3900-rom.c (fetch_bitmapped_register):
2146 * cris-tdep.c (cris_gdbarch_init): Ditto.
2147 * alpha-tdep.h: Ditto.
2148 * aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
2149
2150 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_SIZE and
2151 DEPRECATED_REGISTER_RAW_SIZE from comments.
2152 * regcache.c (init_regcache_descr, regcache_dump): Do not check or
2153 use DEPRECATED_REGISTER_VIRTUAL_SIZE and
2154 DEPRECATED_REGISTER_RAW_SIZE.
2155 * findvar.c (value_of_register): Simplify by assuming that the
2156 registers raw and virtual sizes are identical.
2157 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_TYPE in
2158 comment.
2159 * arch-utils.c (generic_register_size): Simplify by assuming
2160 register_type.
2161
2162 * regcache.c (legacy_read_register_gen, real_register)
2163 (legacy_write_register_gen): Delete, not used.
2164
2165 * regcache.c (struct regcache_descr): Delete legacy_p.
2166 (init_legacy_regcache_descr): Delete function.
2167 (init_regcache_descr): Delete call to init_legacy_regcache_descr.
2168 Do not use deprecated register functions.
2169 (regcache_raw_read, deprecated_write_register_gen):
2170 (deprecated_read_register_gen, regcache_raw_write): Delete code
2171 predicated on legacy_p.
2172 (register_size): Delete check against register raw size.
2173
2174 * cris-tdep.c (cris_register_type): Replace
2175 cris_register_virtual_type.
2176 (cris_gdbarch_init): Update, set register_type.
2177
2178 * gdbarch.sh (deprecated_frameless_function_invocation): Delete.
2179 * gdbarch.h, gdbarch.c: Re-generate.
2180 * arm-tdep.c (arm_frameless_function_invocation): Delete.
2181 (arm_gdbarch_init) Do not set frameless function invocation.
2182 * frame.h (legacy_frameless_look_for_prologue): Delete declaration.
2183 * blockframe.c (legacy_frameless_look_for_prologue): Delete function.
2184 * frv-tdep.c (frv_frameless_function_invocation): Delete.
2185 (frv_gdbarch_init): Do not set frameless function invocation.
2186 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
2187 * sh-tdep.c (sh_gdbarch_init): Ditto.
2188 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
2189 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
2190 * avr-tdep.c (avr_gdbarch_init): Ditto.
2191
2192 * blockframe.c (legacy_frame_chain_valid): Delete function.
2193
2194 * dummy-frame.c (struct dummy_frame): Delete call_lo, call_hi, top
2195 and pc. Update comments.
2196 (pc_in_dummy_frame): Delete function.
2197 (deprecated_pc_in_call_dummy): Inline old pc_in_dummy_frame code,
2198 use the "id".
2199 (dummy_frame_push, dummy_frame_sniffer): Instead of call_lo,
2200 call_hi, top and pc, use the id.
2201 (fprint_dummy_frames): Do not print call_lo, call_hi, top and pc.
2202
2203 * dummy-frame.c: Include "gdb_string.h".
2204 (generic_save_call_dummy_addr, generic_push_dummy_frame)
2205 (generic_save_dummy_frame_tos): Delete.
2206 (dummy_frame_push): New function, replaces above.
2207 * dummy-frame.h: Update copyright.
2208 (dummy_frame_push): Declare.
2209 * frame.h (generic_save_dummy_frame_tos, generic_push_dummy_frame)
2210 (generic_save_call_dummy_addr): Delete declarations.
2211 * infcall.c: Include "dummy-frame.h".
2212 (call_function_by_hand): Add locals caller_regcache,
2213 caller_regcache_cleanup and dummy_id. Replace push_dummy_frame
2214 with call to frame_save_as_regcache plus cleanup. Delete calls to
2215 generic_save_call_dummy_addr and generic_save_dummy_frame_tos.
2216 Move clear_proceed_status to just before the resume, add call to
2217 dummy_frame_push (discard cleanup).
2218 * Makefile.in (infcall.o): Add $(dummy_frame_h).
2219 (dummy-frame.o): Add $(gdb_string_h).
2220
2221 2004-08-01 Andrew Cagney <cagney@gnu.org>
2222
2223 * dummy-frame.h (dummy_frame_unwind): Replace dummy_frame_sniffer.
2224 * frame-unwind.c (frame_unwind_init): Use dummy_frame_unwind.
2225 * dummy-frame.c (find_dummy_frame): Delete.
2226 (struct dummy_frame_cache, dummy_frame_sniffer)
2227 (dummy_frame_prev_register, dummy_frame_this_id)
2228 (dummy_frame_unwinder, dummy_frame_unwind): Re-implement dummy
2229 frame unwinder using a dummy_frame_cache.
2230
2231 2004-08-01 Andrew Cagney <cagney@gnu.org>
2232
2233 * frame.h (frame_save_as_regcache): Declare.
2234 * frame.c (frame_save_as_regcache): New function.
2235 (do_frame_read_register): Replace do_frame_unwind_register.
2236 (frame_pop): Use frame_save_as_regcache.
2237 * dummy-frame.c (generic_push_dummy_frame): Use
2238 frame_save_as_regcache.
2239
2240 2004-08-01 Joel Brobecker <brobecker@gnat.com>
2241
2242 * dwarf2read.c (dwarf_decode_lines): Do not consider the current
2243 file as included until we record the first line in the linetable.
2244
2245 2004-08-01 Andrew Cagney <cagney@gnu.org>
2246
2247 * frame.h (deprecated_pop_dummy_frame)
2248 (deprecated_read_register_dummy)
2249 (deprecated_generic_find_dummy_frame): Delete.
2250 * dummy-frame.c (deprecated_generic_find_dummy_frame)
2251 (deprecated_read_register_dummy)
2252 (deprecated_find_dummy_frame_regcache)
2253 (discard_innermost_dummy)
2254 (deprecated_pop_dummy_frame): Delete.
2255 (dummy_frame_this_id): Simplify.
2256 (struct dummy_frame): Delete "fp" and "sp".
2257 (find_dummy_frame): Simplify.
2258 (generic_push_dummy_frame): Do not set "fp" or "sp".
2259 (fprint_dummy_frames): Do not print "fp" and "sp"
2260
2261 2004-08-01 Mark Kettenis <kettenis@gnu.org>
2262
2263 * i386-tdep.c (I386_MAX_INSN_LEN): New define.
2264 (struct i386_insn): New structure.
2265 (i386_match_insn): New function.
2266 (i386_frame_setup_skip_insns): New variable.
2267 (i386_analyze_frame_setup): Change to use i386_match_insn and the
2268 array i386_frame_setup_insns of instructions that should be
2269 skipped inside the frame setup sequence.
2270
2271 2004-08-01 Andrew Cagney <cagney@gnu.org>
2272
2273 * frame.h (deprecated_frame_xmalloc_with_cleanup)
2274 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
2275 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
2276 * stack.c (frame_info): Delete references to
2277 DEPRECATED_FRAME_INIT_SAVED_REGS and
2278 deprecated_get_frame_saved_regs.
2279 * frame.c (struct frame_info): Delete saved_regs and extra_info.
2280 (frame_pc_unwind): Do not use DEPRECATED_FRAME_SAVED_PC.
2281 (frame_register): Do not use DEPRECATED_GET_SAVED_REGISTER.
2282 (frame_unwind_register_signed)
2283 (frame_unwind_register_unsigned)
2284 (frame_unwind_unsigned_register): Use register_size.
2285 (create_new_frame): Do not use DEPRECATED_INIT_EXTRA_FRAME_INFO.
2286 (deprecated_frame_xmalloc_with_cleanup)
2287 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
2288 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
2289
2290 * sh-tdep.c (sh_gdbarch_init): Disable call to sh64_gdbarch_init.
2291 * config/sh/nbsd.mt (TDEPFILES): Remove sh64-tdep.o.
2292 * config/sh/linux.mt (TDEPFILES): Remove sh64-tdep.o.
2293 * config/sh/embed.mt (TDEPFILES): Remove sh64-tdep.o.
2294
2295 * infcall.c (call_function_by_hand): Do not use
2296 DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP,
2297 DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_TARGET_READ_FP,
2298 DEPRECATED_FP_REGNUM, DEPRECATED_STORE_STRUCT_RETURN, and
2299 DEPRECATED_STACK_ALIGN.
2300
2301 2004-07-30 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
2302
2303 Committed by Andrew Cagney.
2304 * arm-tdep.c: Remove references to add_setshow_cmd_full for apcs32 .
2305
2306 2004-08-01 Andrew Cagney <cagney@gnu.org>
2307
2308 * mips-tdep.c (mips16_frame_cache)
2309 (mips16_frame_this_id, mips16_frame_prev_register)
2310 (mips16_frame_unwind, mips16_frame_sniffer)
2311 (mips16_frame_base_address, mips16_frame_base)
2312 (mips16_frame_base_sniffer, mips32_frame_cache)
2313 (mips32_frame_this_id, mips32_frame_prev_register)
2314 (mips32_frame_unwind, mips32_frame_sniffer)
2315 (mips32_frame_base_address, mips32_frame_base)
2316 (mips32_frame_base_sniffer): Clone the mdebug unwinder into
2317 separate heuristic mips16 and mips32 unwinders.
2318 (mips_stub_frame_cache, mips_stub_frame_this_id)
2319 (mips_stub_frame_prev_register)
2320 (mips_stub_frame_unwind, mips_stub_frame_sniffer)
2321 (mips_stub_frame_base_address, mips_stub_frame_base)
2322 (mips_stub_frame_base_sniffer): Add a simple stub unwinder.
2323 (mips_mdebug_frame_base_sniffer, mips_mdebug_frame_sniffer): Only
2324 match true mdebug frames.
2325 (non_heuristic_proc_desc): Add forward declaration.
2326
2327 2004-08-01 Andrew Cagney <cagney@gnu.org>
2328
2329 * config/mips/tm-irix6.h: Delete file.
2330 * config/mips/tm-irix5.h: Delete file.
2331 * config/mips/irix5.mt (TM_FILE): Set to tm-mips.h
2332 * config/mips/irix6.mt (TM_FILE): Set to tm-mips.h
2333
2334 * config/ia64/tm-linux.h (IA64_GNULINUX_TARGET): Delete.
2335 * config/alpha/nm-osf2.h (PROCFS_SIGPEND_OFFSET): Delete.
2336 * config/nm-gnu.h (NO_CORE_OPS): Delete.
2337 * config/pa/nm-hppah.h (MAY_SWITCH_FROM_INFERIOR_PID): Delete.
2338 * config/i386/nm-i386v4.h (LOSING_POLL): Delete.
2339 * config/alpha/nm-osf2.h (LOSING_POLL): Delete.
2340 * config/tm-nto.h (RAW_SIGNAL_LO, RAW_SIGNAL_HI): Delete.
2341 * config/m68k/tm-vx68.h (VX_SIZE_FPREGS): Delete.
2342 * config/nm-linux.h (USE_THREAD_STEP_NEEDED): Delete.
2343 * config/pa/nm-hppah.h (USE_THREAD_STEP_NEEDED): Delete.
2344 * config/tm-nto.h (TARGET_SIGNAL_RAW_TABLE) Delete.
2345 (TARGET_SIGNAL_RAW_VALUES): Delete.
2346 * config/pa/nm-hppah.h (TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT):
2347 Delete.
2348 * config/frv/tm-frv.h (TARGET_HW_BREAK_LIMIT)
2349 (TARGET_HW_WATCH_LIMIT): Delete.
2350 * Makefile.in (minimon_h, HFILES_NO_SRCDIR): Remove minimon.h.
2351 * minimon.h: Delete file.
2352
2353 * trad-frame.c (trad_frame_get_this_base)
2354 (trad_frame_set_this_base, trad_frame_set_reg_realreg): New
2355 functions.
2356 * trad-frame.h (trad_frame_set_this_base)
2357 (trad_frame_get_this_base, trad_frame_set_reg_realreg): Declare.
2358
2359 2004-07-31 Andrew Cagney <cagney@gnu.org>
2360
2361 * trad-frame.c (trad_frame_get_prev_register): Rename
2362 trad_frame_get_prev_register.
2363 * vax-tdep.c (vax_frame_prev_register): Update.
2364 * trad-frame.h: Update.
2365 * trad-frame.c (trad_frame_get_register): Update.
2366 * sparcobsd-tdep.c (sparc32obsd_frame_prev_register): Update.
2367 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_prev_register):
2368 Update.
2369 * sparc64obsd-tdep.c (sparc64obsd_frame_prev_register): Update.
2370 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_prev_register):
2371 Update.
2372 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_prev_register):
2373 Update.
2374 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_prev_register):
2375 Update.
2376 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_prev_register):
2377 Update.
2378 * sparc-linux-tdep.c (sparc32_linux_sigtramp_frame_prev_register):
2379 Update.
2380 * s390-tdep.c (s390_frame_prev_register)
2381 (s390_stub_frame_prev_register)
2382 (s390_sigtramp_frame_prev_register): Update.
2383 * rs6000-tdep.c (rs6000_frame_prev_register): Update.
2384 * ppc-linux-tdep.c (ppc_linux_sigtramp_prev_register): Update.
2385 * mips-tdep.c (mips_mdebug_frame_prev_register): Update.
2386 * m88k-tdep.c (m88k_frame_prev_register)
2387 * m68hc11-tdep.c (m68hc11_frame_prev_register)
2388 * m32r-tdep.c (m32r_frame_prev_register): Update.
2389 * hppa-tdep.c (hppa_frame_prev_register_helper)
2390 * frv-tdep.c (frv_frame_prev_register): Update.
2391 * d10v-tdep.c (d10v_frame_prev_register): Update.
2392 * cris-tdep.c (cris_frame_prev_register): Update.
2393 * avr-tdep.c (avr_frame_prev_register): Update.
2394 * arm-tdep.c (arm_prologue_prev_register)
2395 (arm_sigtramp_prev_register): Update.
2396
2397 2004-07-31 Andrew Cagney <cagney@gnu.org>
2398
2399 * frame.h (legacy_saved_regs_unwind)
2400 (legacy_frame_chain_valid, legacy_frame_p)
2401 (enum frame_type): Delete UNKNOWN_FRAME.
2402 * dummy-frame.c (dummy_frame_this_id): Simplify.
2403 * frame-unwind.c (frame_unwind_find_by_frame): Simplify.
2404 * frame.c (struct frame_info): Delete the field "type".
2405 (legacy_saved_regs_prev_register, legacy_get_prev_frame)
2406 (legacy_saved_regs_this_id, legacy_saved_regs_unwinder)
2407 (legacy_saved_regs_unwind, legacy_frame_p)
2408 (frame_type_from_pc): Delete.
2409 (get_frame_id, frame_pop, frame_register_unwind, get_prev_frame_1)
2410 (fprint_frame, create_new_frame, fprint_frame_type): Simplify.
2411
2412 2004-07-31 Mark Kettenis <kettenis@gnu.org>
2413
2414 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Fix
2415 indentation.
2416
2417 * mips-nat.c: Remove file.
2418 * Makefile.in (ALLDEPFILES): Remove mips-nat.c
2419 (mips-nat.o): Remove dependency.
2420
2421 * infptrace.c: Update copyright year.
2422 (fetch_register): Pass NULL in regcache_raw_supply call instead of
2423 explicitly setting the buffer to all zeroes.
2424
2425 * sparc64obsd-tdep.c (sparc64obsd_sigreturn_offset): New variable.
2426 (sparc64obsd_pc_in_sigtramp): Reorganize to avoid goto.
2427
2428 2004-07-30 Andrew Cagney <cagney@gnu.org>
2429
2430 * GDB 6.2 released from gdb_6_2-branch.
2431
2432 2004-07-30 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
2433
2434 * defs.h (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH): New macros.
2435
2436 * exec.c (exec_file_attach):
2437 * nto-tdep.c (nto_find_and_open_solib):
2438 * pa64solib.c (pa64_solib_sizeof_symbol_table):
2439 * solib.c (solib_open):
2440 * somsolib.c (som_solib_sizeof_symbol_table):
2441 * source.c (is_regular_file, openp, open_source_file):
2442 * symfile.c (symfile_bfd_open):
2443 * wince.c (upload_to_device): Differentiate between the search for
2444 binary and source files.
2445
2446 2004-07-30 Andrew Cagney <cagney@gnu.org>
2447
2448 * complaints.c (_initialize_complaints): Pass NULL to
2449 add_setshow_zinteger_cmd for help_doc.
2450 * cli/cli-decode.c (add_setshow_cmd_full): Handle a NULL help_doc.
2451
2452 2004-07-30 Andrew Cagney <cagney@gnu.org>
2453
2454 Fix PR i18n/761.
2455 * Makefile.in (.SUFFIXES): Add po .gmo, and .pox.
2456 (.PHONY): Add all-po install-po, uninstall-po, clean-po,
2457 $(PACKAGE).pot and update-po.
2458 (all-po, .po.gmo, .po.pox, install-po, $(PACKAGE).pot)
2459 (po/$(PACKAGE).pot, clean-po, uninstall-po, install-po)
2460 (update-po): New rules.
2461 (localedir): Define using autoconf.
2462 (diststuff): Add $(PACKAGE).pot and $(CATALOGS)
2463 (GDB_CFLAGS): Define LOCALEDIR using $(localedir).
2464 (XGETTEXT, GMSGFMT, MSGMERGE, PACKAGE, CATALOGS): Define.
2465 * configure.in: Generate CATALOGS and LINGUAS from contents of
2466 src/gdb/po/ directory. Set @localedir@ in Makefile.in.
2467 * configure: Re-generate.
2468 * po/gdbtext: New file
2469
2470 2004-07-30 Jerome Guitton <guitton@gnat.com>
2471
2472 * MAINTAINERS: Reorder Write After Approval list in alphabetical
2473 order.
2474
2475 2004-07-30 David Lecomber <dsl@sources.redhat.com>
2476
2477 * dwarf2read.c (read_file_scope): Set producer if attribute
2478 present.
2479 (struct dwarf2_cu): Added new member producer.
2480
2481 2004-07-30 Jerome Guitton <guitton@gnat.com>
2482
2483 * inflow.c (kill_command): release file handles in BFD.
2484 * exec.c (exec_file_attach): Ditto.
2485 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
2486
2487 2004-07-29 Andrew Cagney <cagney@gnu.org>
2488
2489 * PROBLEMS (mips-irix): Note that it is broken.
2490
2491 2004-07-29 Andrew Cagney <cagney@gnu.org>
2492
2493 * config/mips/xm-irix5.h (REGISTER_U_ADDR): Move from here ...
2494 * config/mips/nm-irix5.h (REGISTER_U_ADDR): ... to here.
2495
2496 * config/xm-nbsd.h: Delete file.
2497 * config/arm/xm-nbsd.h: Delete file.
2498 * config/i386/xm-nbsd.h: Delete file.
2499 * config/ns32k/xm-nbsd.h: Delete file.
2500 * config/ns32k/nbsdaout.mh (XM_FILE): Delete.
2501 * config/i386/nbsdelf.mh (XM_FILE): Delete.
2502 * config/i386/nbsdaout.mh (XM_FILE): Delete.
2503 * config/arm/nbsdelf.mh (XM_FILE): Delete.
2504 * config/arm/nbsdaout.mh (XM_FILE): Delete.
2505
2506 * config/i386/xm-i386v.h (KERNEL_U_ADDR): Move from here ...
2507 * config/i386/nm-i386v42mp.h (KERNEL_U_ADDR): ... to here, ...
2508 * config/i386/nm-i386v4.h (KERNEL_U_ADDR): ... here, ...
2509 * config/i386/nm-i386v.h (KERNEL_U_ADDR): ... and here.
2510 * config/vax/xm-vax.h (KERNEL_U_ADDR): Move from here ...
2511 * config/vax/nm-vax.h (KERNEL_U_ADDR): ... to here.
2512
2513 * config/powerpc/xm-linux.h: Delete empty file.
2514 * config/powerpc/ppc64-linux.mh (XM_FILE): Delete.
2515 * config/powerpc/linux.mh (XM_FILE): Delete.
2516 * config/m68k/xm-linux.h: Delete empty file.
2517 * config/m68k/linux.mh (XM_FILE): Delete.
2518 * config/ia64/xm-linux.h: Delete empty file.
2519 * config/ia64/linux.mh (XM_FILE): Delete.
2520 * config/arm/xm-linux.h: Delete empty file.
2521 * config/arm/linux.mh (XM_FILE): Delete.
2522
2523 * config/powerpc/xm-linux.h (KERNEL_U_ADDR): Move from here ...
2524 * config/powerpc/nm-linux.h (KERNEL_U_ADDR): ... to here.
2525 * config/m68k/xm-linux.h (KERNEL_U_ADDR): Move from here ...
2526 * config/m68k/nm-linux.h (KERNEL_U_ADDR): ... to here.
2527 * config/ia64/xm-linux.h (KERNEL_U_ADDR): Move from here ...
2528 * config/ia64/nm-linux.h (KERNEL_U_ADDR): ... to here.
2529 * config/arm/xm-linux.h (KERNEL_U_ADDR): Move from here ...
2530 * config/arm/nm-linux.h (KERNEL_U_ADDR): ... to here.
2531
2532 * config/m68k/xm-m68k.h: Delete file.
2533 * config/m68k/xm-linux.h: Do not include "m68k/xm-m68k.h". Update
2534 copyright.
2535 (HOST_LONG_DOUBLE_FORMAT): Delete macro.
2536 * config/pa/xm-linux.h: Delete empty file.
2537 * config/pa/linux.mh (XM_FILE): Delete.
2538 * config/i386/xm-i386.h: Delete empty file.
2539 * config/i386/xm-nbsd.h, config/i386/xm-go32.h: Do not include
2540 "i386/xm-i386.h".
2541 * config/i386/obsdaout.mh (XM_FILE): Delete.
2542 * config/i386/obsd64.mh (XM_FILE): Delete.
2543 * config/i386/fbsd64.mh (XM_FILE): Delete.
2544 * config/i386/nto.mh (XM_FILE): Delete.
2545 * config/i386/obsd.mh (XM_FILE): Delete.
2546 * config/i386/linux64.mh (XM_FILE): Delete.
2547 * config/i386/linux.mh (XM_FILE): Delete.
2548 * config/i386/i386sol2.mh (XM_FILE): Delete.
2549 * config/i386/i386gnu.mh (XM_FILE): Delete.
2550 * config/i386/fbsd.mh (XM_FILE): Delete.
2551 * config/i386/nbsd64.mh (XM_FILE): Delete.
2552
2553 2004-07-29 Andrew Cagney <cagney@gnu.org>
2554
2555 * config/pa/xm-linux.h: Do not include "floatformat.h".
2556 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
2557 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
2558 * config/i386/xm-i386.h: Do not include "floatformat.h".
2559 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
2560 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
2561 * doublest.c (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
2562 (HOST_LONG_DOUBLE_FORMAT): Delete macros. Use
2563 GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT and
2564 GDB_HOST_LONG_DOUBLE_FORMAT instead.
2565 * configure.in (GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT)
2566 (GDB_HOST_LONG_DOUBLE_FORMAT): Define.
2567 * configure, config.in: Regenerate.
2568 * configure.host (gdb_host_float_format, gdb_host_double_format)
2569 (gdb_host_long_double_format): Set according to the host.
2570
2571 2004-07-29 Andrew Cagney <cagney@gnu.org>
2572
2573 * Makefile.in (CONFIG_CLEAN): Delete duplicate definition.
2574
2575 2004-07-28 Andrew Cagney <cagney@gnu.org>
2576
2577 * PROBLEMS: Mention threads/1650.
2578 * NEWS: Mention the NPTL fix.
2579
2580 2004-07-28 Andrew Cagney <cagney@gnu.org>
2581
2582 * cli/cli-decode.c (add_setshow_cmd): Delete function.
2583 (add_setshow_cmd_full): Make static.
2584 * command.h (add_setshow_cmd, add_setshow_cmd_full): Delete.
2585 (add_setshow_filename_cmd, add_setshow_string_cmd): Declare.
2586 * cli/cli-decode.c (add_setshow_filename_cmd)
2587 (add_setshow_string_cmd): New functions.
2588 * nto-tdep.c (_initialize_nto_tdep): Update. Fix parameters.
2589 * mips-tdep.c (_initialize_mips_tdep): Update.
2590 * m32r-rom.c (_initialize_m32r_rom): Update. Update copyright.
2591 * cli/cli-logging.c (_initialize_cli_logging): Update.
2592 * complaints.c (_initialize_complaints): Update.
2593 * remote.c (_initialize_remote): Update.
2594
2595 2004-07-28 Andrew Cagney <cagney@gnu.org>
2596
2597 * cli/cli-decode.c (add_setshow_zinteger_cmd)
2598 (add_setshow_cmd, add_setshow_auto_boolean_cmd)
2599 (add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
2600 print parameters. Make string parameters constant.
2601 * command.h: Update. Update copyright.
2602 * remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
2603 * observer.c (_initialize_observer): Ditto.
2604 * frame.c (_initialize_frame): Ditto.
2605 * complaints.c (_initialize_complaints): Ditto.
2606 * maint.c (_initialize_maint_cmds): Ditto.
2607 * target.c (initialize_targets): Ditto.
2608 * cli/cli-logging.c (_initialize_cli_logging): Ditto.
2609 * infcall.c (_initialize_infcall): Ditto.
2610 * arm-tdep.c (_initialize_arm_tdep): Ditto.
2611 * m32r-rom.c (_initialize_m32r_rom): Ditto.
2612 * remote-rdi.c (_initialize_remote_rdi): Ditto.
2613 * d10v-tdep.c (_initialize_d10v_tdep): Ditto.
2614 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2615
2616 2004-07-28 Andrew Cagney <cagney@gnu.org>
2617
2618 * gdbtypes.c (lookup_primitive_typename): Delete function.
2619 * gdbtypes.h (lookup_primitive_typename): Delete declaration.
2620 * ada-lex.l: Use language_lookup_primitive_type_by_name.
2621 * gdbtypes.c (lookup_typename): Ditto.
2622 * f-exp.y (yylex): Ditto.
2623 * c-exp.y (yylex): Ditto, eliminate assignment in "if".
2624
2625 * scm-lang.c (c_builtin_types): Delete extern declaration.
2626 (scm_language_defn): Replace
2627 string_char_type and primitive_type_vector with
2628 la_language_arch_info.
2629 * jv-lang.c (java_language_defn): Replace
2630 string_char_type and primitive_type_vector with
2631 la_language_arch_info.
2632 * config/i386/i386sco4.mh (NATDEPFILES): Remove reference to
2633 c_builtin_types in comment.
2634 * c-lang.h (struct language_arch_info): Declare opaque.
2635 (c_language_arch_info): Declare.
2636 (c_builtin_types): Delete declaration.
2637 * c-lang.c (c_language_arch_info): Set string_char_type to
2638 builtin_char, not builtin_true_char. Make global.
2639 (c_builtin_types): Delete array.
2640 (asm_language_defn, minimal_language_defn): Replace
2641 string_char_type and primitive_type_vector with
2642 la_language_arch_info.
2643
2644 2004-07-28 Andrew Cagney <cagney@gnu.org>
2645
2646 * gdbtypes.h (struct builtin_type): Rename true_char to
2647 builtin_true_char.
2648 * gdbtypes.c (gdbtypes_post_init): Update.
2649 * c-lang.c (arch_info): New function.
2650 (enum c_primitive_types): New enum.
2651 (c_language_defn): Instead of string_char_type and
2652 primitive_type_vector set la_language_arch_info.
2653
2654 2004-07-28 Andrew Cagney <cagney@gnu.org>
2655
2656 * language.h (struct language_arch_info): Fix typo
2657 s/primative/primitive/.
2658 * gdbtypes.c (lookup_primitive_typename): Ditto.
2659 * language.c (language_lookup_primitive_type_by_name)
2660 (unknown_language_arch_info): Ditto.
2661
2662 2004-07-27 Andrew Cagney <cagney@gnu.org>
2663
2664 * defs.h (enum language): Add nr_languages.
2665 * language.h (struct language_arch_info): Define.
2666 (struct language_defn): Add la_language_arch_info.
2667 (language_lookup_primative_type_by_name): Declare.
2668 (language_string_char_type): Declare.
2669 * language.c (_initialize_language, language_gdbarch_post_init)
2670 (struct language_gdbarch, language_gdbarch_data): Implement
2671 per-architecture language information.
2672 (unknown_language_arch_info, language_string_char_type)
2673 (language_lookup_primative_type_by_name): New functions.
2674 (unknown_language_defn, auto_language_defn)
2675 (local_language_defn): Set la_language_arch_info to
2676 unknown_language_arch_info.
2677 (unknown_builtin_types): Delete.
2678 * gdbtypes.c (lookup_primitive_typename): Use
2679 language_lookup_primative_type_by_name.
2680 (create_string_type): Use language_string_char_type.
2681 * values.c (value_from_string): Use language_string_char_type.
2682 * scm-lang.c (scm_language_defn): Add NULL la_language_arch_info.
2683 * p-lang.c (pascal_language_defn): Ditto.
2684 * m2-lang.c (m2_language_defn): Ditto.
2685 * jv-lang.c (java_language_defn): Ditto.
2686 * objc-lang.c (objc_language_defn): Ditto.
2687 * f-lang.c (f_language_defn): Ditto.
2688 * c-lang.c (c_language_defn, cplus_language_defn)
2689 (asm_language_defn, minimal_language_defn): Ditto.
2690
2691 2004-07-27 Andrew Cagney <cagney@gnu.org>
2692
2693 * gdbtypes.h (struct builtin_type): Declare.
2694 (builtin_type): Declare.
2695 * d10v-tdep.c (d10v_register_type): Use builtin_type.
2696 * gdbtypes.c (_initialize_gdbtypes): Register gdbtypes_post_init.
2697 (gdbtypes_post_init): New function.
2698 (builtin_type): New function.
2699
2700 2004-07-27 Kei Sakamoto <sakamoto.kei@renesas.com>
2701
2702 * remote-m32r-sdi.c: Fix breakpoint bug.
2703 (send_cmd, send_one_arg_cmd, send_two_arg_cmd, send_three_arg_cmd,
2704 recv_char_data, recv_long_data): New functions to replace communication
2705 sequences.
2706
2707 2004-07-26 Michael Chastain <mec.gnu@mindspring.com>
2708
2709 Document PR threads/1650.
2710 * PROBLEMS (Threads): Document problem with many threads
2711
2712 2004-07-26 Andrew Cagney <cagney@gnu.org>
2713
2714 * gdb-mi.el: Move from here ...
2715 * mi/gdb-mi.el: ... to here.
2716
2717 2004-07-26 Andrew Cagney <cagney@gnu.org>
2718
2719 Problem reported by Ashley Pittman <ashley@quadrics.com>.
2720 * main.c (captured_main): When in batch mode always detach.
2721
2722 2004-07-26 Andrew Cagney <cagney@gnu.org>
2723
2724 * MAINTAINERS: Mark the xstormy16, sh64, ns32k, mn10300, mcore,
2725 and h8300 as broken.
2726 * NEWS: END-OF-LIFE frame compatibility module.
2727 * PROBLEMS: For "Stack backtraces", remove powerpc, hppa and mips
2728 specific comments.
2729
2730 2004-07-26 Andrew Cagney <cagney@gnu.org>
2731
2732 * cli/cli-decode.c (deprecated_add_show_from_set): Deprecate.
2733 * xcoffsolib.c (_initialize_xcoffsolib): Update.
2734 * wince.c (_initialize_wince): Update.
2735 * win32-nat.c (_initialize_win32_nat): Update.
2736 * varobj.c (_initialize_varobj): Update.
2737 * valops.c (_initialize_valops): Update.
2738 * utils.c (initialize_utils, initialize_utils): Update.
2739 * tui/tui-win.c (_initialize_tui_win): Update.
2740 * top.c (init_main): Update.
2741 * symfile.c (_initialize_symfile): Update.
2742 * source.c (_initialize_source): Update.
2743 * somsolib.c (_initialize_som_solib): Update.
2744 * solib.c (_initialize_solib): Update.
2745 * solib-frv.c (_initialize_frv_solib): Update.
2746 * serial.c (_initialize_serial): Update.
2747 * ser-go32.c (_initialize_ser_dos, _initialize_ser_dos): Update.
2748 * remote.c (_initialize_remote, _initialize_remote): Update.
2749 * remote-vx.c (_initialize_vx): Update.
2750 * remote-utils.c (_initialize_sr_support): Update.
2751 * remote-sds.c (_initialize_remote_sds): Update.
2752 * remote-mips.c (_initialize_remote_mips): Update.
2753 * remote-e7000.c (_initialize_remote_e7000): Update.
2754 * proc-api.c (_initialize_proc_api): Update.
2755 * printcmd.c: Update.
2756 * parse.c (_initialize_parse): Update.
2757 * pa64solib.c (_initialize_pa64_solib): Update.
2758 * p-valprint.c (_initialize_pascal_valprint): Update.
2759 * monitor.c (_initialize_remote_monitors): Update.
2760 * mips-tdep.c (_initialize_mips_tdep): Update.
2761 * mcore-tdep.c (_initialize_mcore_tdep): Update.
2762 * maint.c (_initialize_maint_cmds): Update.
2763 * lin-lwp.c (_initialize_lin_lwp): Update.
2764 * language.c (_initialize_language): Update.
2765 * kod.c (_initialize_kod): Update.
2766 * infrun.c (set_schedlock_func, _initialize_infrun): Update.
2767 * i386-tdep.c (_initialize_i386_tdep): Update.
2768 * gdbtypes.c (build_gdbtypes, _initialize_gdbtypes): Update.
2769 * gdbarch.sh: Update.
2770 * gdbarch.c: Re-generate.
2771 * gdb-events.sh: Update.
2772 * gdb-events.c: Re-generate.
2773 * frame.c (_initialize_frame): Update.
2774 * exec.c: Update.
2775 * demangle.c (_initialize_demangler): Update.
2776 * dcache.c (_initialize_dcache): Update.
2777 * cris-tdep.c (_initialize_cris_tdep, cris_version_update): Update.
2778 * cp-valprint.c (_initialize_cp_valprint): Update.
2779 * corefile.c (_initialize_core): Update.
2780 * command.h: Update.
2781 * cli/cli-decode.h: Update.
2782 * cli/cli-cmds.c (init_cli_cmds): Update.
2783 * charset.c (_initialize_charset): Update.
2784 * breakpoint.c (_initialize_breakpoint): Update.
2785 * arm-tdep.c (_initialize_arm_tdep_initialize_arm_tdep): Update.
2786 * alpha-tdep.c (_initialize_alpha_tdep): Update.
2787 * aix-thread.c (_initialize_aix_thread): Update.
2788
2789 2004-07-24 Mark Kettenis <kettenis@gnu.org>
2790
2791 Partial fix for PR backtrace/1718.
2792 * i386-tdep.c (i386_analyze_frame_setup): Handle more instructions
2793 that GCC migrates into the prolugue. Don't handle any
2794 instructions that clobber %ebx.
2795
2796 2004-07-23 Andrew Cagney <cagney@gnu.org>
2797
2798 Use regcache_raw_collect instead of regcache_collect.
2799 * regcache.h (regcache_collect): Delete declaration.
2800 * regcache.c (regcache_colect): Delete function.
2801 * win32-nat.c (do_child_store_inferior_registers): Update.
2802 * sol-thread.c (sol_thread_store_registers): Update.
2803 * shnbsd-tdep.c (shnbsd_fill_reg): Update.
2804 * rs6000-nat.c (store_register): Update.
2805 * remote.c (store_register_using_P, remote_store_registers): Update.
2806 * ppcnbsd-tdep.c (ppcnbsd_fill_reg): Update.
2807 * ppc-linux-nat.c (store_altivec_register, store_spe_register)
2808 (fill_vrregset, store_spe_registers, fill_gregset)
2809 (fill_gregset): Update.
2810 * nto-procfs.c (procfs_store_registers): Update.
2811 * mipsnbsd-tdep.c (mipsnbsd_fill_reg): Update.
2812 * mips-linux-tdep.c (fill_gregset, mips64_fill_gregset): Update.
2813 * m68klinux-nat.c (store_register, fill_gregset): Update.
2814 * m68k-tdep.c (fill_gregset): Update.
2815 * infptrace.c (store_register): Update.
2816 * i386-nto-tdep.c (i386nto_regset_fill): Update.
2817 * i386-linux-nat.c (store_register, fill_gregset): Update.
2818 * hppa-linux-nat.c (fill_gregset): Update.
2819 * go32-nat.c (store_register): Update.
2820 * armnbsd-nat.c (store_register, store_regs, store_fp_register)
2821 (store_fp_regs): Update.
2822 * arm-linux-nat.c (store_nwfpe_single, store_nwfpe_double)
2823 (store_nwfpe_extended, store_fpregister, store_fpregs)
2824 (store_register, store_regs, fill_gregset, fill_fpregset): Update.
2825 * alpha-tdep.c (alpha_fill_int_regs, alpha_fill_fp_regs): Update.
2826 * aix-thread.c (fill_gprs64, fill_fprs, fill_sprs64, fill_sprs32)
2827 (store_regs_user_thread, store_regs_kernel_thread): Update.
2828
2829 2004-07-24 Mark Kettenis <kettenis@gnu.org>
2830
2831 * dwarf2-frame.c (struct dwarf2_cie): Delete `addr_size' member.
2832 (decode_frame_entry_1): Use DW_EH_PE_absptr as default for CIE
2833 encoding.
2834 (dwarf2_build_frame_info): Adjust for removal of `addr_size'
2835 member of `struct comp_unit'.
2836
2837 2004-07-23 Andrew Cagney <cagney@gnu.org>
2838
2839 * infrun.c (handle_inferior_event): Separate the STEP_OVER_ALL and
2840 DEPRECATED_IGNORE_HELPER_CALL cases, only #ifdef the latter.
2841
2842 2004-07-23 Martin Hunt <hunt@redhat.com>
2843 Kevin Buettner <kevinb@redhat.com>
2844
2845 * dwarf2-frame.c (execute_cfa_program): Fix typo in which the
2846 alignment was being added to the offset instead of multiplied.
2847
2848 2004-07-23 Mark Kettenis <kettenis@gnu.org>
2849
2850 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Adjust for
2851 changed signal trampoline in OpenBSD 3.5-current.
2852
2853 * sparc64nbsd-nat.c: Include "regcache.h", <sys/types.h>,
2854 <machine/pcb.h> and "bsd-kvm.h".
2855 (sparc64nbsd_supply_pcb): New function.
2856 (_initialize_sparc64nbsd_nat): Renamed from
2857 _initialize_sparcnbsd_nat. Enable libkvm interface.
2858 * Makefile.in (sparc64nbsd-nat.o): Update dependencies.
2859 * config/sparc/nbsd64.mh (NATDEPFILES): Add bsd-kvm.o
2860 (LOADLIBES): New variable.
2861
2862 * config/sparc/obsd64.mt (TDEPFILES): Add sparcobsd-tdep.o.
2863
2864 * sparcnbsd-nat.c (sparc32nbsd_supply_pcb): Fix typo in comment.
2865
2866 2004-07-21 Andrew Cagney <cagney@gnu.org>
2867
2868 Use regcache_raw_supply instead of supply_register.
2869 * regcache.h (supply_register): Delete declaration.
2870 * regcache.c (supply_register): Delete function.
2871 * wince.c (do_child_fetch_inferior_registers): Update.
2872 * win32-nat.c (do_child_fetch_inferior_registers)
2873 (fetch_elf_core_registers): Update.
2874 * v850ice.c (v850ice_fetch_registers): Update.
2875 * thread-db.c (thread_db_store_registers): Update.
2876 * sol-thread.c (sol_thread_store_registers): Update.
2877 * shnbsd-tdep.c (shnbsd_supply_reg): Update.
2878 * rs6000-nat.c (fetch_register): Update.
2879 * rom68k-rom.c (rom68k_supply_one_register): Update.
2880 * remote.c (remote_wait, remote_async_wait): Update.
2881 * remote-st.c (get_hex_regs): Update.
2882 * remote-sim.c (gdbsim_fetch_register): Update.
2883 * remote-sds.c (sds_fetch_registers): Update.
2884 * remote-rdp.c (remote_rdp_fetch_register): Update.
2885 * remote-rdi.c (arm_rdi_fetch_registers): Update.
2886 * remote-mips.c (mips_wait, mips_fetch_registers): Update.
2887 * remote-m32r-sdi.c (m32r_fetch_register): Update.
2888 * remote-hms.c (init_hms_cmds): Update.
2889 * remote-est.c (init_est_cmds): Update.
2890 * remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
2891 (e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
2892 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
2893 * ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
2894 (fetch_register, supply_vrregset, supply_vrregset)
2895 (fetch_spe_registers): Update.
2896 * ppc-bdm.c (bdm_ppc_fetch_registers): Update.
2897 * monitor.c (monitor_supply_register): Update.
2898 * mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
2899 * mipsnbsd-tdep.c (mipsnbsd_supply_reg)
2900 (mipsnbsd_supply_fpreg): Update.
2901 * mips-nat.c (fetch_inferior_registers)
2902 (fetch_core_registers): Update.
2903 * mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
2904 (supply_fpregset, mips64_supply_gregset)
2905 (mips64_supply_fpregset): Update.
2906 * m68klinux-nat.c (fetch_register, supply_gregset)
2907 (supply_fpregset): Update.
2908 * m68k-tdep.c (supply_gregset, supply_fpregset): Update.
2909 * m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
2910 * lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
2911 * irix5-nat.c (supply_gregset, supply_fpregset): Update.
2912 * infptrace.c (fetch_register): Update.
2913 * ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
2914 * ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
2915 * i386gnu-nat.c (fetch_fpregs, supply_gregset)
2916 (gnu_fetch_registers, gnu_store_registers): Update.
2917 * i386-nto-tdep.c (i386nto_supply_gregset): Update.
2918 * i386-linux-nat.c (fetch_register, supply_gregset)
2919 (dummy_sse_values): Update.
2920 * hpux-thread.c (hpux_thread_fetch_registers): Update.
2921 * hppah-nat.c (fetch_register): Update.
2922 * hppa-linux-nat.c (fetch_register, supply_gregset)
2923 (supply_fpregset): Update.
2924 * go32-nat.c (fetch_register): Update.
2925 * dve3900-rom.c (fetch_bitmapped_register)
2926 (_initialize_r3900_rom): Update.
2927 * cris-tdep.c (supply_gregset): Update.
2928 * abug-rom.c (init_abug_cmds): Update.
2929 * core-aout.c (fetch_core_registers): Update.
2930 * armnbsd-nat.c (supply_gregset, supply_fparegset)
2931 (fetch_register, fetch_fp_register): Update.
2932 * arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
2933 (fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
2934 (fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
2935 * alphanbsd-tdep.c (fetch_core_registers): Update.
2936 * alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
2937 * alpha-nat.c (fetch_osf_core_registers)
2938 (fetch_osf_core_registers, fetch_osf_core_registers): Update.
2939 * aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
2940 (supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2941
2942 2004-07-21 Andrew Cagney <cagney@gnu.org>
2943
2944 * PROBLEMS: Mention breakpoints/1702.
2945 * NEWS: For signal trampolines, cite s390 GNU/Linux as a system
2946 that is known to work.
2947
2948 2004-07-21 Andrew Cagney <cagney@gnu.org>
2949
2950 * config/mips/tm-mips.h (DEPRECATED_IGNORE_HELPER_CALL): Deprecate.
2951 * mips-tdep.c (mips_dump_tdep, mips_ignore_helper): Update.
2952 * infrun.c (DEPRECATED_IGNORE_HELPER_CALL): Delete macro.
2953 (handle_inferior_event): Wrap call to deprecated
2954 IGNORE_HELPER_CALL in #ifdef.
2955 * config/mips/tm-nbsd.h: Update.
2956
2957 2004-07-20 Jim Blandy <jimb@redhat.com>
2958
2959 * rs6000-tdep.c (rs6000_gdbarch_init): The register set used for
2960 bfd_mach_ppc has no segment registers.
2961
2962 Include PowerPC SPR numbers for special-purpose registers.
2963 * rs6000-tdep.c (struct reg): Add new member, 'spr_num'.
2964 (R, R4, R8, R16, F, P, R32, R64, R0): Include value for
2965 new member in initializer.
2966 (S, S4, SN4, S64): New macros for defining special-purpose
2967 registers.
2968 (PPC_UISA_SPRS, PPC_UISA_NOFP_SPRS, PPC_OEA_SPRS, registers_power,
2969 registers_403, registers_403GC, registers_505, registers_860,
2970 registers_601, registers_602, registers_603, registers_604,
2971 registers_750, registers_e500): Use them.
2972
2973 * rs6000-tdep.c (rs6000_gdbarch_init): Delete variable 'power';
2974 replace references with expression used to initialize variable.
2975
2976 2004-07-20 Andrew Cagney <cagney@gnu.org>
2977
2978 * breakpoint.c (deprecated_read_memory_nobpt): Rename
2979 read_memory_nobpt.
2980 * sparc-linux-tdep.c (sparc_linux_sigtramp_start): Update.
2981 * s390-tdep.c (s390_readinstruction, s390_in_function_epilogue_p)
2982 (s390_sigtramp_frame_sniffer): Update.
2983 * mn10300-tdep.c (mn10300_analyze_prologue): Update.
2984 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Update.
2985 * mips-tdep.c (mips_fetch_instruction, mips16_fetch_instruction)
2986 (mips32_fetch_instruction): Update.
2987 * mcore-tdep.c (get_insn): Update.
2988 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Update.
2989 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Update.
2990 * i386ly-tdep.c (i386lynx_saved_pc_after_call): Update.
2991 * i386-linux-tdep.c (i386_linux_sigtramp_start)
2992 (i386_linux_rt_sigtramp_start): Update.
2993 * i386-linux-nat.c (child_resume): Update.
2994 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Update.
2995 * hppa-linux-tdep.c (insns_match_pattern): Update.
2996 * gdbcore.h: Update.
2997 * frv-tdep.c (frv_gdbarch_adjust_breakpoint_address): Update.
2998 * frame.c (safe_frame_unwind_memory): Update.
2999 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Update.
3000 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Update.
3001 * alpha-tdep.c (alpha_read_insn): Update.
3002
3003 2004-07-20 Andrew Cagney <cagney@gnu.org>
3004
3005 * tramp-frame.h (struct tramp_frame): Change "insn" to a struct
3006 containing both bytes and mask. Add "frame_type".
3007 * tramp-frame.c (tramp_frame_start): Update.
3008 (tramp_frame_prepend_unwinder): Update.
3009 * mips-linux-tdep.c (mips_linux_o32_sigframe)
3010 (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
3011 (mips_linux_n64_rt_sigframe): Update. Make "static const".
3012 * ppcnbsd-tdep.c (tramp_frame ppcnbsd_sigtramp): Update.
3013
3014 2004-07-19 Eli Zaretskii <eliz@gnu.org>
3015
3016 * config/djgpp/fnchange.lst: Add remapping for bfd/elf32-cr*.c,
3017 bfd/elf32-sh-symbian.c, bfd/elf32-sh64-com.c,
3018 sim/testsuite/sim/mips/hilo-hazard-[123].s, and
3019 sim/testsuite/sim/mips/fpu64-ps-sb1.s.
3020
3021 2004-07-17 Andrew Cagney <cagney@gnu.org>
3022
3023 * NEWS, PROBLEMS: Update for 6.2.
3024
3025 * README: Update to 6.2.
3026
3027 * utils.c (xvasprintf): Call xstrvprintf.
3028
3029 * parse.c: Update copyright.
3030 (null_post_parser): Eliminate ARGSUSED.
3031
3032 * ppc-linux-nat.c (store_spe_registers): Eliminate K&R C.
3033 * tui/tui-win.c (tui_get_cmd_list): Ditto.
3034 * symfile-mem.c (_initialize_symfile_mem): Ditto.
3035
3036 * ppc-linux-tdep.c (ppc_linux_init_abi): Add [sic] to Linux.
3037 * ppc-linux-nat.c: Use "Linux kernel".
3038 * hppa-linux-tdep.c: Use GNU/Linux.
3039 * hppa-linux-nat.c: Use GNU/Linux.
3040 * dwarfread.c: Add [sic] to use of Linux.
3041
3042 * hppa-linux-nat.c: Do not include <string.h>.
3043 (supply_fpregset): Remove "register" attribute.
3044
3045 * solib-frv.c (fetch_loadmap): Use xfree, not free.
3046
3047 2004-07-17 Mark Kettenis <kettenis@gnu.org>
3048
3049 * configure.in: Define _MSE_INT_H on Solaris 9 too.
3050 * configure, config.in: Regenerated.
3051
3052 * vaxbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
3053 "bsd-kvm.h".
3054 (vaxbsd_supply_pcb): New function.
3055 (_initialize_vaxbsd_nat): New prototype and function.
3056 * config/vax/nbsdaout.mh (NATDEPFILES): Add bsd-kvm.o, solib.o and
3057 solib-sunos.o.
3058 (LOADLIBES): New variable.
3059 * config/vax/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
3060 (LOADLIBES): New variable.
3061 * config/vax/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
3062 (LOADLIBES): New variable.
3063 * Makefile.in (vaxbsd-nat.o): Update dependencies.
3064
3065 2004-07-16 Andrew Cagney <cagney@gnu.org>
3066
3067 * defs.h (event_loop_p): Replace variable declaration with macro,
3068 always 1.
3069 * main.c (captured_main): Delete options "-async" and "-noasync".
3070 (event_loop_p): Delete variable.
3071 * NEWS: Mention that "-async" and "-noasync" were removed.
3072
3073 2004-07-16 Andrew Cagney <cagney@gnu.org>
3074
3075 * remote-m32r-sdi.c: Re-indent.
3076
3077 2004-07-16 Jim Blandy <jimb@redhat.com>
3078
3079 * ppc-tdep.h (ppc_spr_asr): Add missing OEA SPR.
3080 (ppc_spr_mi_dbcam, ppc_spr_mi_dbram0, ppc_spr_mi_dbram1)
3081 (ppc_spr_md_cam, ppc_spr_md_ram0, ppc_spr_md_ram1): Add
3082 missing MPC823 SPRs.
3083 (ppc_spr_m_twb): Renamed from ppc_spr_md_twb; the old name was
3084 incorrect. (This was corrected in GDB's register name tables on
3085 2004-07-14.)
3086
3087 * rs6000-tdep.c (registers_602): Correct register name: "esassr"
3088 should be "esasrr" ("ESA Save and Restore Register").
3089
3090 2004-07-16 Andrew Cagney <cagney@gnu.org>
3091
3092 * infrun.c (insert_step_resume_breakpoint): Delete gdb_assert
3093 calls, no longer applicable. Update comments and rename parameter
3094 "step_frame" to "return_frame".
3095
3096 2004-07-16 Andrew Cagney <cagney@gnu.org>
3097
3098 * frame.c (fprint_field): New function.
3099 (fprint_frame_id): Use fprint_field.
3100
3101 2004-07-15 Joel Brobecker <brobecker@gnat.com>
3102
3103 * ada-lang.c (ada_language_defn): Remove commented out code.
3104
3105 2004-07-15 Jim Blandy <jimb@redhat.com>
3106
3107 * ppc-tdep.h (struct gdbarch_tdep): New member: ppc_sr0_regnum.
3108 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it.
3109
3110 2004-07-14 Jim Blandy <jimb@redhat.com>
3111
3112 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): Delete; unused.
3113
3114 * ppc-tdep.h (ppc_num_vrs): New enum constant.
3115
3116 * ppc-tdep.h (ppc_num_srs): New enum constant.
3117
3118 * ppc-tdep.h (ppc_spr_mq, ppc_spr_xer, ppc_spr_rtcu, ppc_spr_rtcl)
3119 (ppc_spr_lr, ppc_spr_ctr, ppc_spr_cnt, ppc_spr_dsisr, ppc_spr_dar)
3120 (ppc_spr_dec, ppc_spr_sdr1, ppc_spr_srr0, ppc_spr_srr1)
3121 (ppc_spr_eie, ppc_spr_eid, ppc_spr_nri, ppc_spr_sp, ppc_spr_cmpa)
3122 (ppc_spr_cmpb, ppc_spr_cmpc, ppc_spr_cmpd, ppc_spr_icr)
3123 (ppc_spr_der, ppc_spr_counta, ppc_spr_countb, ppc_spr_cmpe)
3124 (ppc_spr_cmpf, ppc_spr_cmpg, ppc_spr_cmph, ppc_spr_lctrl1)
3125 (ppc_spr_lctrl2, ppc_spr_ictrl, ppc_spr_bar, ppc_spr_vrsave)
3126 (ppc_spr_sprg0, ppc_spr_sprg1, ppc_spr_sprg2, ppc_spr_sprg3)
3127 (ppc_spr_ear, ppc_spr_tbl, ppc_spr_tbu, ppc_spr_pvr)
3128 (ppc_spr_spefscr, ppc_spr_ibat0u, ppc_spr_ibat0l, ppc_spr_ibat1u)
3129 (ppc_spr_ibat1l, ppc_spr_ibat2u, ppc_spr_ibat2l, ppc_spr_ibat3u)
3130 (ppc_spr_ibat3l, ppc_spr_dbat0u, ppc_spr_dbat0l, ppc_spr_dbat1u)
3131 (ppc_spr_dbat1l, ppc_spr_dbat2u, ppc_spr_dbat2l, ppc_spr_dbat3u)
3132 (ppc_spr_dbat3l, ppc_spr_ic_cst, ppc_spr_ic_adr, ppc_spr_ic_dat)
3133 (ppc_spr_dc_cst, ppc_spr_dc_adr, ppc_spr_dc_dat, ppc_spr_dpdr)
3134 (ppc_spr_dpir, ppc_spr_immr, ppc_spr_mi_ctr, ppc_spr_mi_ap)
3135 (ppc_spr_mi_epn, ppc_spr_mi_twc, ppc_spr_mi_rpn, ppc_spr_mi_cam)
3136 (ppc_spr_mi_ram0, ppc_spr_mi_ram1, ppc_spr_md_ctr, ppc_spr_m_casid)
3137 (ppc_spr_md_ap, ppc_spr_md_epn, ppc_spr_md_twb, ppc_spr_md_twc)
3138 (ppc_spr_md_rpn, ppc_spr_m_tw, ppc_spr_md_dbcam, ppc_spr_md_dbram0)
3139 (ppc_spr_md_dbram1, ppc_spr_ummcr0, ppc_spr_upmc1, ppc_spr_upmc2)
3140 (ppc_spr_usia, ppc_spr_ummcr1, ppc_spr_upmc3, ppc_spr_upmc4)
3141 (ppc_spr_zpr, ppc_spr_pid, ppc_spr_mmcr0, ppc_spr_pmc1)
3142 (ppc_spr_sgr, ppc_spr_pmc2, ppc_spr_dcwr, ppc_spr_sia)
3143 (ppc_spr_mmcr1, ppc_spr_pmc3, ppc_spr_pmc4, ppc_spr_sda)
3144 (ppc_spr_tbhu, ppc_spr_tblu, ppc_spr_dmiss, ppc_spr_dcmp)
3145 (ppc_spr_hash1, ppc_spr_hash2, ppc_spr_icdbdr, ppc_spr_imiss)
3146 (ppc_spr_esr, ppc_spr_icmp, ppc_spr_dear, ppc_spr_rpa)
3147 (ppc_spr_evpr, ppc_spr_cdbcr, ppc_spr_tsr, ppc_spr_602_tcr)
3148 (ppc_spr_403_tcr, ppc_spr_ibr, ppc_spr_pit, ppc_spr_esasrr)
3149 (ppc_spr_tbhi, ppc_spr_tblo, ppc_spr_srr2, ppc_spr_sebr)
3150 (ppc_spr_srr3, ppc_spr_ser, ppc_spr_hid0, ppc_spr_dbsr)
3151 (ppc_spr_hid1, ppc_spr_iabr, ppc_spr_dbcr, ppc_spr_iac1)
3152 (ppc_spr_dabr, ppc_spr_iac2, ppc_spr_dac1, ppc_spr_dac2)
3153 (ppc_spr_l2cr, ppc_spr_dccr, ppc_spr_ictc, ppc_spr_iccr)
3154 (ppc_spr_thrm1, ppc_spr_pbl1, ppc_spr_thrm2, ppc_spr_pbu1)
3155 (ppc_spr_thrm3, ppc_spr_pbl2, ppc_spr_fpecr, ppc_spr_lt)
3156 (ppc_spr_pir, ppc_spr_pbu2): New enum constants for PowerPC
3157 special-purpose register numbers.
3158
3159 * rs6000-tdep.c (registers_860): Correct register name. (No PPC
3160 manual mentions 'md_twb', but many mention 'm_twb', and at that
3161 point in the register list.)
3162
3163 2004-07-14 Andrew Cagney <cagney@gnu.org>
3164
3165 * utils.c (internal_warning_problem): Fix typo, "internal-warning"
3166 instead of "internal-error".
3167
3168 2004-07-10 Joel Brobecker <brobecker@gnat.com>
3169
3170 * hppa-hpux-tdep.c: Fix a compilation failure due to a comment
3171 that was inserted inside a comment.
3172
3173 2004-07-10 Randolph Chung <tausq@debian.org>
3174
3175 * hppa-hpux-tdep.c (hppa_hpux_som_find_global_pointer): New
3176 function.
3177 (hppa_hpux_push_dummy_code): New function.
3178 (hppa_hpux_init_abi): Set push_dummy_code and call_dummy_location.
3179 Set find_global_pointer method.
3180
3181 2004-07-10 Mark Kettenis <kettenis@gnu.org>
3182
3183 * NEWS: Mention BSD libkvm interface.
3184
3185 2004-07-10 Michael Snyder <msnyder@redhat.com>
3186
3187 * symfile.c (generic_load): Comment typo.
3188 * stack.c (get_selected_block): Ditto.
3189 * regcache.c (regcache_cooked_read): Ditto.
3190 * monitor.c (monitor_debug): Ditto.
3191 * mips-tdep.c (mips_read_pc): Ditto.
3192 * i386-linux-nat.c (ps_get_thread_area): Ditto.
3193 * gdb_mbuild.sh: Ditto.
3194 * gdbarch.sh: Ditto.
3195 * gdbarch.h: Ditto.
3196
3197 2004-07-09 Paul N. Hilfinger <Hilfinger@gnat.com>
3198
3199 * ada-tasks.c: Remove file.
3200
3201 Remove ARI problems:
3202
3203 * ada-exp.y (write_var_from_sym): Reformat to put operator at
3204 beginning of line.
3205
3206 * ada-lang.c (MAX_OF_SIZE): Rename max_of_size.
3207 Add comment.
3208 Add comment concerning MAX_OF_TYPE and MIN_OF_TYPE.
3209 (MIN_OF_SIZE): Rename min_of_size. Add comment.
3210 (UMAX_OF_SIZE): Renmae umax_of_size. Add comment.
3211 (UMIN_OF_SIZE): Remove.
3212 (max_of_type): New function to replace orphan macro in gdbtypes.h
3213 (min_of_type): Ditto.
3214 (discrete_type_high_bound): Use max_of_type.
3215 (discrete_type_low_bound): Use min_of_type.
3216 (possible_user_operator_p): Move operator to beginning of line.
3217 (ada_is_variant_part): Ditto.
3218 (ensure_lval): Rewrite to avoid deprecated operations.
3219 (ada_finish_decode_line_1): Use gdbarch_convert_from_func_ptr_addr
3220 rather than adding DEPRECATED_FUNCTION_START_OFFSET.
3221 (ada_enum_name): Remove assignments in 'if' statements.
3222 (build_ada_types): Add gdbarch parameter.
3223 (_initialize_ada_language): Replace deprecated_register_gdbarch_swap
3224 with gdbarch_data_register_post_init.
3225 Use add_setshow_uinteger_cmd rather than add_set_cmd and
3226 add_show_from_set.
3227
3228 * ada-valprint.c (inspect_it): Remove declaration.
3229 (repeat_count_threshold): Remove declaration.
3230 (ada_print_floating): Remove assignments in 'if' statements.
3231 (print_str): Move operator to beginning of line.
3232
3233 2004-07-08 Jim Blandy <jimb@redhat.com>
3234
3235 * rs6000-tdep.c (registers_powerpc_nofp): Unused; deleted.
3236
3237 2004-07-08 Bob Rossi <bob@brasko.net>
3238
3239 * symtab.c (lookup_symtab): check return value of symtab_to_fullname
3240
3241 2004-07-06 Jeff Johnston <jjohnstn@redhat.com>
3242
3243 * language.h (struct_language_defn): Add new function pointer:
3244 la_class_name_from_physname. Also add new prototype for
3245 language_class_name_from_physname.
3246 * language.c (language_class_name_from_physname): New function.
3247 (unk_lang_class_name): Ditto.
3248 (unknown_language_defn, auto_language_defn): Change
3249 to add unk_lang_class_name function pointer for
3250 la_class_name_from_physname.
3251 (local_language_defn): Ditto.
3252 * dwarf2read.c (guess_structure_name): Change to call
3253 language_class_name_from_physname.
3254 (determine_class_name): Ditto.
3255 * cp-support.c (class_name_from_physname): Renamed.
3256 (cp_class_name_from_physname): New name of function.
3257 * cp-support.h: Ditto.
3258 * c-lang.c (c_language_defn): Change to add NULL
3259 for class_name_from_physname function pointer.
3260 (cplus_language_defn): Change to add cp_class_name_from_physname.
3261 * jv-lang.c (java_class_name_physname): New function.
3262 (java_find_last_component): New static routine.
3263 (java_language_defn): Add java_class_name_from_physname pointer.
3264 * ada-lang.c (ada_language_defn): Change to add NULL
3265 for class_name_from_physname function pointer.
3266 * f-lang.c (f_language_defn): Ditto.
3267 * m2-lang.c (m2_language_defn): Ditto.
3268 * objc-lang.c (objc_language_defn): Ditto.
3269 * p-lang.c (pascal_language_defn): Ditto.
3270 * scm-lang.c (scm_language_defn): Ditto.
3271
3272 2004-07-06 Andrew Cagney <cagney@gnu.org>
3273
3274 Patch from Bart Robinson.
3275 * corelow.c (core_open): Add variable "flags", or in O_LARGEFILE.
3276 (O_LARGEFILE): Define to 0, if not defined.
3277
3278 2004-07-03 Mark Kettenis <kettenis@gnu.org>
3279
3280 * m68kbsd-nat.c: Include "gdbcore.h", <sys/types.h>,
3281 <machine/pcb.h> and "bsd-kvm.h".
3282 (PCB_REGS_FP, PCB_REGS_SP): Define if not already defined.
3283 (m68kbsd_supply_pcb): New function.
3284 (_initialize_m68kbsd_nat): New prototype and function.
3285 * Makefile.in (m68kbsd-nat.o): Update dependencies.
3286 * config/m68k/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
3287 (LOADLIBES): New variable.
3288 * config/m68k/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
3289 (LOADLIBES): New variable.
3290
3291 * bsd-kvm.c (bsd_kvm_cmdlist): Remove unecessary initialization.
3292
3293 2004-07-03 Mark Kettenis <kettenis@gnu.org>
3294
3295 * bsd-kvm.c: Include "cli/cli-cmds.h", "command.h", "value.h" and
3296 <sys/proc.h>.
3297 (bsd_kvm_cmdlist): New variable.
3298 (bsd_kvm_cmd, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd): New functions.
3299 (bsd_kvm_add_target): Register "kvm" command prefix, "kvm pcb"
3300 command and "kvm proc" command.
3301 * Makefile.in (bsd-kvm.o): Update dependencies.
3302
3303 2004-07-02 Mark Kettenis <kettenis@gnu.org>
3304
3305 * osabi.c: Update copyright year.
3306 (generic_elf_osabi_sniffer): Tweak comment. Look for OS-specific
3307 notes if EI_OSABI is set to ELFOSABI_HPUX.
3308
3309 2004-07-01 Michael Snyder <msnyder@redhat.com>
3310
3311 * win32-nat.c (core_dll_symbols_add): Re-indent a small section
3312 that seems to have gotten whacked out of line.
3313
3314 2004-07-01 Mark Kettenis <kettenis@gnu.org>
3315
3316 * dbxread.c (process_one_symbol) [PCC_SOL_BROKEN]: Remove dead
3317 code.
3318
3319 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
3320
3321 * ada-lang.c (decode_packed_array): Minor change to comment.
3322 (ada_value_slice_ptr): New function.
3323 (ada_value_slice): New function.
3324 (ada_evaluate_subexp): Remove XVS-suffix code from subscripting
3325 test. Don't know why it is there.
3326 Change slice code to use ada_value_slice_ptr and ada_value_slice, and
3327 to avoid dereferencing huge arrays from which one is slicing.
3328 (empty_array): Correct to return an array rather than
3329 a subrange value.
3330 * ada-valprint.c (print_optional_low_bound): Don't print lower bound
3331 on empty arrays (let'em use 'FIRST instead).
3332
3333 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
3334
3335 Address complaints from gdb_ari.sh:
3336
3337 * ada-exp.y: Include gdb_string.h rather than string.h.
3338 (convert_char_literal): Reformat declaration.
3339 * ada-lang.h: Include opaque struct declaration for struct frame_info.
3340 * ada-lex.l: Change use of free to xfree (the macro would do so
3341 anyway, but this is harmless).
3342 Include gdb_string.h rather than string.h.
3343 * ada-valprint.c (ada_val_print_stub): Change PTR => void*.
3344
3345 * ada-lang.c (parse): Remove K&Rism in parameter list.
3346 (is_name_suffix): Correct Linux => GNU/Linux in comment.
3347
3348 2004-06-30 Mark Kettenis <kettenis@gnu.org>
3349
3350 * dbxread.c (process_one_symbol) [SUN_FIXED_LBRAC_BUG]: Remove
3351 dead code.
3352
3353 2004-06-30 Mark Kettenis <kettenis@gnu.org>
3354
3355 * alphabsd-nat.c: Update copyright year.
3356 (getregs_supplies): Use ALPHA_PC_REGNUM instead of PC_REGNUM.
3357
3358 2004-06-29 Joel Brobecker <brobecker@gnat.com>
3359
3360 * i386-cygwin-tdep.c (i386_cygwin_skip_trampoline_code): New function.
3361 (i386_cygwin_in_solib_call_trampoline): New function.
3362 (i386_cygwin_init_abi): Initialize the in_solib_call_trampoline
3363 and skip_trampoline_code gdbarch methods.
3364
3365 2004-06-29 Jim Blandy <jimb@redhat.com>
3366
3367 * Makefile.in (gdb_callback_h): Renamed from callback_h to the
3368 name actually used in the dependency lists.
3369
3370 2004-06-29 Randolph Chung <tausq@debian.org>
3371
3372 * NEWS (New native configurations): Mention GNU/Linux/hppa.
3373
3374 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
3375
3376 * win32-nat.c (child_pid_to_exec_file): New function.
3377 (init_child_ops): Add child_pid_to_exec_file as to_pid_to_exec_file
3378 functionality.
3379
3380 2004-06-28 Andrew Cagney <cagney@gnu.org>
3381
3382 * defs.h (xstrvprintf): Declare.
3383 * utils.c (xstrvprintf): New function.
3384 (internal_vproblem, xstrprintf, xasprintf)
3385 (vfprintf_maybe_filtered, vfprintf_unfiltered): Use xstrvprintf.
3386 * serial.c (serial_printf): Ditto.
3387 * complaints.c (vcomplaint): Ditto.
3388
3389 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
3390
3391 * infcmd.c (attach_command): Move call to target_terminal_inferior
3392 behind loading symbol table.
3393
3394 2004-06-28 Andrew Cagney <cagney@gnu.org>
3395
3396 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Revert 2004-06-24
3397 change - add back extern deprecated_ui_loop_hook declaration.
3398
3399 2004-06-28 Andrew Cagney <cagney@gnu.org>
3400
3401 * xcoffsolib.c (xcoff_solib_address): Replace xasprintf with
3402 xstrprintf.
3403 * varobj.c (varobj_gen_name, create_child, c_name_of_child)
3404 (c_value_of_variable): Ditto.
3405 * utils.c (internal_vproblem): Ditto.
3406 * solib-aix5.c (build_so_list_from_mapfile): Ditto.
3407 * remote.c (add_packet_config_cmd): Ditto.
3408 * remote-rdp.c (rdp_set_command_line): Ditto.
3409 * regcache.c (regcache_dump): Ditto.
3410 * frv-tdep.c (new_variant, new_variant): Ditto.
3411 * fbsd-proc.c (child_pid_to_exec_file): Ditto.
3412 (fbsd_find_memory_regions): Ditto.
3413 * breakpoint.c (create_thread_event_breakpoint)
3414 (create_breakpoints): Ditto.
3415 * aix-thread.c (aix_thread_pid_to_str): Ditto.
3416 * ada-lang.c (is_package_name): Ditto. Also delete xmalloc call.
3417
3418 2004-06-28 Joel Brobecker <brobecker@gnat.com>
3419
3420 * ada-lang.c: Re-indent file, with some massaging to help indent
3421 a bit when the result is otherwise really too ugly.
3422
3423 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
3424
3425 * frame.h (struct frame_id): Change bit field type of stack_addr_p,
3426 code_addr_p and special_addr_p to 'unsigned int'.
3427
3428 2004-06-27 Mark Kettenis <kettenis@gnu.org>
3429
3430 * i386v4-nat.c: Update copyright year and tweak comment.
3431 (regmap): Remove trailing comma.
3432 (supply_gregset): Rename local variable i to regnum. Call
3433 regcache_raw_supply instead of supply_register.
3434 (fill_gregset): Rename argument regno to regnum. Call
3435 regcache_raw_collect instead of regcache_collect.
3436
3437 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
3438
3439 * frame.h (struct frame_id): New fields stack_addr_p, code_addr_p
3440 and special_addr_p.
3441 (frame_id_build, frame_id_build_special): Update comments.
3442 (frame_id_build_wild): New prototype.
3443 * frame.c (frame_id_build, frame_id_build_special): Fill in new
3444 struct frame_id fields.
3445 (frame_id_build_wild): New function.
3446 (frame_id_eq, frame_id_inner): Use new struct frame_id fields.
3447
3448 2004-06-27 Mark Kettenis <kettenis@gnu.org>
3449
3450 * config/djgpp/fnchange.lst: Add entries for hppabsd-nat.c and
3451 hppabsd-tdep.c.
3452
3453 2004-06-27 Joel Brobecker <brobecker@gnat.com>
3454
3455 * ada-lang.c: Minor reformatting to conform to GNU coding standards.
3456
3457 2004-06-27 Joel Brobecker <brobecker@gnat.com>
3458
3459 * ada-lang.c: Re-indent file.
3460
3461 2004-06-27 Joel Brobecker <brobecker@gnat.com>
3462
3463 * ada-lang.c (symtab_symbol_info): Remove unused declaration.
3464 (no_symtab_msg): Likewise.
3465
3466 2004-06-27 Andreas Schwab <schwab@suse.de>
3467
3468 * source.c: Fix whitespace.
3469
3470 2004-06-27 Mark Kettenis <kettenis@gnu.org>
3471
3472 * configure.in: Include <sys/param.h> for td_pcb test.
3473 * configure: Regenerated.
3474
3475 * i386nbsd-nat.c: New file.
3476 * Makefile.in (ALLDEPFILES): Add i386nbsd-nat.c, i386nbsd-tdep.c,
3477 i386obsd-nat.c and i386obsd-tdep.c.
3478 (i386nbsd-nat.o): New dependency.
3479 * config/i386/obsd.mh (NATDEPFILES): Add i386nbsd-nat.o and
3480 bsd-kvm.o.
3481 (LOADLIBES): New variable.
3482 * config/i386/nbsdelf.mh (NATDEPFILES): Add i386nbsd-nat.o and
3483 bsd-kvm.o.
3484 (LOADLIBES): New variable.
3485
3486 * config/i386/fbsd64.mh (NATDEPFILES): Add bsd-kvm.o.
3487 (LOADLIBES): New variable.
3488
3489 * bsd-kvm.c (bsd_kvm_fetch_registers): Directly return after
3490 fetching from BSD_KVM_PADDR. Correctly lookup address for
3491 "_thread0".
3492
3493 * amd64fbsd-nat.c: Include <sys/types.h, <machine/pcb.h> and
3494 "bsd-kvm.h".
3495 (amd64fbsd_supply_pcb): New funcion.
3496 (_initialize_amd64fbsd_nat): Enable libkvm interface.
3497
3498 2004-06-27 <david@streamline-computing.com>
3499
3500 Partial fix for PR cli/1056.
3501 * valarith.c: Check for zero in division and remainder
3502 evaluation.
3503
3504 2004-06-27 Mark Kettenis <kettenis@gnu.org>
3505
3506 * i387-tdep.c: Remove excessive whitespace.
3507
3508 2004-06-26 Andrew Cagney <cagney@gnu.org>
3509
3510 * gdb-events.sh (deprecated_set_gdb_event_hooks): Deprecated.
3511 * gdb-events.h, gdb-events.c: Re-generate.
3512 * tui/tui-hooks.c (tui_install_hooks): Update.
3513 (tui_remove_hooks): Update.
3514 * mi/mi-cmd-break.c (mi_cmd_break_insert): Update.
3515
3516 2004-06-26 Mark Kettenis <kettenis@gnu.org>
3517
3518 * amd64fbsd-nat.c: Don't include <sys/procfs.h> and "gregset.h".
3519 (gregset_t, fpregset_t): Remove typedefs.
3520 (REG_OFFSET): Rename argument.
3521 (amd64bsd_r_reg_offset): Rename from reg_offset.
3522 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
3523 Remove functions.
3524 (_initialize_amd64fbsd_nat): Use amd64fbsd64_r_reg_offset instead
3525 of reg_offset.
3526 * Makefile.in (amd64fbsd-nat.o): Update dependencies.
3527
3528 * amd64-nat.c (amd64_supply_native_gregset): Fix comment.
3529
3530 * vax-tdep.c: Tweak comment.
3531
3532 Add OpenBSD/hppa support.
3533 * NEWS (New native configurations): Mention OpenBSD/hppa.
3534 * hppabsd-nat.c, hppabsd-tdep.c, config/pa/obsd.mh,
3535 config/pa/obsd.mt, config/pa/nm-obsd.h, config/pa/tm-bsd.h: New
3536 files.
3537 * Makefile.in (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
3538 (hppabsd-nat.o, hppabsd-tdep.c): New dependencies.
3539 * configure.host: Add hppa*-*-openbsd*.
3540 * configure.tgt: Add hppa*-*-openbsd*.
3541
3542 2004-06-25 Andrew Cagney <cagney@gnu.org>
3543
3544 * defs.h (deprecated_ui_loop_hook): Deprecated.
3545 * wince.c (child_wait): Update.
3546 * win32-nat.c (child_wait): Update.
3547 * v850ice.c (v850ice_wait): Update.
3548 * top.c (deprecated_ui_loop_hook): Update.
3549 * serial.h: Update.
3550 * ser-unix.c (do_hardwire_readchar, do_hardwire_readchar)
3551 (do_unix_readchar): Update.
3552 * ser-tcp.c (net_open): Update.
3553 * remote-sim.c (gdb_os_poll_quit): Update.
3554 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Update.
3555
3556 2004-06-24 Andrew Cagney <cagney@gnu.org>
3557
3558 * defs.h (deprecated_pre_add_symbol_hook)
3559 (deprecated_post_add_symbol_hook): Deprecated.
3560 * symfile.c (symbol_file_add_with_addrs_or_offsets)
3561 (symbol_file_add_with_addrs_or_offsets): Update references.
3562
3563 2004-06-24 Andrew Cagney <cagney@gnu.org>
3564
3565 * defs.h (post_add_symbol_hook, pre_add_symbol_hook)
3566 (ui_loop_hook, selected_frame_level_changed_hook): Declare.
3567 * wince.c (ui_loop_hook): Delete extern declaration.
3568 * win32-nat.c (ui_loop_hook): Delete extern declaration..
3569 * v850ice.c (ui_loop_hook): Delete extern declaration..
3570 * ser-unix.c (ui_loop_hook): Delete extern declaration..
3571 * ser-tcp.c (ui_loop_hook): Delete extern declaration..
3572 * remote-sim.c (ui_loop_hook): Delete extern declaration..
3573 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Delete extern.
3574 ui_loop_hook declaration.
3575
3576 2004-06-24 Andrew Cagney <cagney@gnu.org>
3577
3578 * objfiles.h (struct entry_info): Delete entry_func_lowpc and
3579 entry_func_highpc fields.
3580 * objfiles.c (init_entry_point_info): Do not clear
3581 entry_func_lowpc and entry_func_highpc.
3582 (objfile_relocate): Do not relocate entry_func_lowpc and
3583 entry_func_highpc.
3584 * dwarfread.c (read_func_scope): Do not set entry_func_lowpc and
3585 entry_func_highpc.
3586 * dwarf2read.c (read_func_scope): Do not set entry_func_lowpc and
3587 entry_func_highpc.
3588 * blockframe.c (legacy_frame_chain_valid): Replace tests against
3589 entry_func_lowpc and entry_func_highpc with call to
3590 inside_entry_func.
3591
3592 2004-06-24 Mark Kettenis <kettenis@gnu.org>
3593
3594 * sparc64-tdep.c (sparc64_store_arguments): Fix passing
3595 quad-precision floating point arguments in registers.
3596
3597 2004-06-24 Mark Kettenis <kettenis@gnu.org>
3598
3599 From Michael Mueller <m.mueller99@kay-mueller.de>:
3600 * sparc64-tdep.c (sparc64_frame_base_address): Take BIAS into
3601 account.
3602
3603 2004-06-22 Jeff Johnston <jjohnstn@redhat.com>
3604
3605 * infrun.c (handle_inferior_event): Initialize stopped_by_watchpoint
3606 to -1.
3607 * breakpoint.c (bpstat_stop_status): Move check for ignoring
3608 untriggered watchpoints to a separate if clause. Update function
3609 comment regarding STOPPED_BY_WATCHPOINT argument.
3610
3611 2004-06-22 Jim Blandy <jimb@redhat.com>
3612
3613 * gdbarch.sh: Doc fix.
3614
3615 2004-06-21 Martin Hunt <hunt@redhat.com>
3616 Kevin Buettner <kevinb@redhat.com>
3617
3618 * config/mips/tm-mips.h (SP_REGNUM): Delete define.
3619 * mips-tdep.h (MIPS_SP_REGNUM): Define.
3620 * mips-tdep.c (mips_gdbarch_init): Set SP_REGNUM via call
3621 to set_gdbarch_sp_regnum(). Use cooked register number.
3622 (SP_REGNUM): Replace all occurrences with MIPS_SP_REGNUM.
3623
3624 2004-06-21 Andrew Cagney <cagney@gnu.org>
3625
3626 * gdbarch.sh: When the macro field is empty, do not generate a
3627 macro definition. When the macro field is "=", generate the macro
3628 name from the upper-case function name.
3629 (NUM_REGS, NUM_PSEUDO_REGS, SP_REGNUM, PC_REGNUM, PS_REGNUM)
3630 (FP0_REGNUM, STAB_REG_TO_REGNUM, ECOFF_REG_TO_REGNUM)
3631 (DWARF_REG_TO_REGNUM, SDB_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM)
3632 (REGISTER_NAME, DEPRECATED_REGISTER_VIRTUAL_TYPE)
3633 (DEPRECATED_REGISTER_BYTES, DEPRECATED_REGISTER_BYTE)
3634 (DEPRECATED_REGISTER_RAW_SIZE, DEPRECATED_REGISTER_VIRTUAL_SIZE)
3635 (DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_FP_REGNUM)
3636 (DEPRECATED_TARGET_READ_FP, DEPRECATED_PUSH_ARGUMENTS)
3637 (DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP)
3638 (DEPRECATED_REGISTER_SIZE, CALL_DUMMY_LOCATION)
3639 (DEPRECATED_DO_REGISTERS_INFO, REGISTER_SIM_REGNO)
3640 (REGISTER_BYTES_OK, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER)
3641 (GET_LONGJMP_TARGET, DEPRECATED_INIT_FRAME_PC)
3642 (BELIEVE_PCC_PROMOTION, DEPRECATED_GET_SAVED_REGISTER)
3643 (CONVERT_REGISTER_P, REGISTER_TO_VALUE, VALUE_TO_REGISTER)
3644 (POINTER_TO_ADDRESS, ADDRESS_TO_POINTER, INTEGER_TO_ADDRESS)
3645 (DEPRECATED_POP_FRAME, DEPRECATED_STORE_STRUCT_RETURN)
3646 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE)
3647 (DEPRECATED_EXTRACT_RETURN_VALUE, DEPRECATED_STORE_RETURN_VALUE)
3648 (DEPRECATED_USE_STRUCT_CONVENTION)
3649 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
3650 (DEPRECATED_FRAME_INIT_SAVED_REGS)
3651 (DEPRECATED_INIT_EXTRA_FRAME_INFO, SKIP_PROLOGUE, INNER_THAN)
3652 (BREAKPOINT_FROM_PC, MEMORY_INSERT_BREAKPOINT)
3653 (MEMORY_REMOVE_BREAKPOINT, DECR_PC_AFTER_BREAK)
3654 (DEPRECATED_FUNCTION_START_OFFSET, FRAME_ARGS_SKIP)
3655 (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION, DEPRECATED_FRAME_CHAIN)
3656 (DEPRECATED_FRAME_CHAIN_VALID, DEPRECATED_FRAME_SAVED_PC)
3657 (DEPRECATED_FRAME_ARGS_ADDRESS, DEPRECATED_FRAME_LOCALS_ADDRESS)
3658 (DEPRECATED_SAVED_PC_AFTER_CALL, FRAME_NUM_ARGS)
3659 (DEPRECATED_STACK_ALIGN, DEPRECATED_REG_STRUCT_HAS_ADDR)
3660 (FRAME_RED_ZONE_SIZE, ADDR_BITS_REMOVE, SMASH_TEXT_ADDRESS)
3661 (SOFTWARE_SINGLE_STEP, SKIP_TRAMPOLINE_CODE)
3662 (IN_SOLIB_CALL_TRAMPOLINE, IN_SOLIB_RETURN_TRAMPOLINE)
3663 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL)
3664 (NAME_OF_MALLOC, CANNOT_STEP_BREAKPOINT)
3665 (HAVE_NONSTEPPABLE_WATCHPOINT, ADDRESS_CLASS_TYPE_FLAGS)
3666 (FETCH_POINTER_ARGUMENT): Replace the macro name with "=".
3667
3668 2004-06-21 Andrew Cagney <cagney@gnu.org>
3669
3670 * gdbarch.sh: For gdbarch_dump, print the "function" rather than
3671 macro name, and the function rather than macro value. Only wrap
3672 macro print statements in #ifdef. Move format logic to where it
3673 is needed.
3674 * gdbarch.c: Re-generate.
3675
3676 * gdbarch.sh (read): Delete "print_p" and "description", add
3677 "garbage_at_eol". Check for non-empty garbage at end-of-line.
3678 Delete references to print_p.
3679 (TARGET_ARCHITECTURE): Delete print predicate.
3680 * gdbarch.c: Re-generate.
3681
3682 * gdbarch.sh: Check that multi-arch methods do not provide a
3683 macro.
3684 (register_type, unwind_dummy_id, push_dummy_call, push_dummy_code)
3685 (print_registers_info, print_float_info, print_vector_info)
3686 (adjust_breakpoint_address, remote_translate_xfer_address)
3687 (construct_inferior_arguments, skip_solib_resolver, unwind_pc)
3688 (address_class_type_flags_to_name, unwind_sp): Remove the macro
3689 name from the multi-arch definition.
3690
3691 2004-06-20 Andrew Cagney <cagney@gnu.org>
3692
3693 * gdbarch.sh: Sort by the function, instead of macro name.
3694 * gdbarch.c: Re-generate.
3695
3696 2004-06-20 Andrew Cagney <cagney@gnu.org>
3697
3698 * gdbarch.sh: Use the function, instead of macro name in
3699 errors and the log file.
3700 (return_value): Remove stray ":" in spec.
3701
3702 * gdbarch.sh (RETURN_VALUE): Default to legacy_return_value.
3703 * gdbarch.h, gdbarch.c: Re-generate.
3704 * Makefile.in (arch-utils.o): Update dependencies.
3705 * values.c (using_struct_return): Move code calling
3706 USE_STRUCT_CONVENTION to legacy_return_value, simplify.
3707 * stack.c (return_command): Move code calling STORE_RETURN_VALUE
3708 to legacy_return_value, simplify.
3709 * infcmd.c (print_return_value): Move code calling
3710 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_RETURN_VALUE
3711 to legacy_return_value, simplify.
3712 * infcall.c (call_function_by_hand): Move code calling
3713 EXTRACT_RETURN_VALUE to legacy_return_value, simplify.
3714 * arch-utils.c: Update copyright. Include "gdbcore.h".
3715 (legacy_return_value): New function.
3716 * arch-utils.h: Update copyright.
3717 (legacy_return_value): Declare.
3718
3719 2004-06-20 Andrew Cagney <cagney@gnu.org>
3720
3721 * gdbarch.sh (DEPRECATED_USE_STRUCT_CONVENTION): Deprecated.
3722 * gdbarch.h, gdbarch.c: Re-generate.
3723 * values.c (using_struct_return): Update call.
3724 * mcore-tdep.c: Update comment.
3725 * infcall.c (call_function_by_hand): Update comment.
3726 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
3727 * arch-utils.h (always_use_struct_convention): Update.
3728 * v850-tdep.c (v850_gdbarch_init): Update.
3729 * sh64-tdep.c (sh64_gdbarch_init): Update.
3730 * sh-tdep.c (sh_gdbarch_init): Update.
3731 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
3732 * mips-tdep.c (mips_gdbarch_init): Update.
3733 * mcore-tdep.c (mcore_gdbarch_init): Update.
3734 * m32r-tdep.c (m32r_gdbarch_init): Update.
3735 * ia64-tdep.c (ia64_gdbarch_init): Update.
3736 * h8300-tdep.c (h8300_gdbarch_init): Update.
3737 * frv-tdep.c (frv_gdbarch_init): Update.
3738 * cris-tdep.c (cris_gdbarch_init): Update.
3739 * arm-tdep.c (arm_gdbarch_init): Update.
3740 * alpha-tdep.c (alpha_gdbarch_init): Update.
3741
3742 2004-06-18 Michael Chastain <mec.gnu@mindspring.com>
3743
3744 * PROBLEMS: Add more specific information, and a work-around,
3745 for PR gdb/1458.
3746
3747 2004-06-18 Andrew Cagney <cagney@gnu.org>
3748
3749 * gdbarch.sh (DEPRECATED_FUNCTION_START_OFFSET): Deprecated.
3750 * gdbarch.h, gdbarch.c: Re-generate.
3751 * ada-lang.c (ada_finish_decode_line_1): Update.
3752 * infrun.c (handle_inferior_event): Update.
3753 * infcall.c (find_function_addr): Update.
3754 * linespec.c (minsym_found): Update.
3755 * symtab.c (find_function_start_sal, skip_prologue_using_sal):
3756 Update.
3757 * blockframe.c (legacy_frameless_look_for_prologue): Update.
3758 * cli/cli-cmds.c (disassemble_command): Update.
3759 * vax-tdep.c (vax_gdbarch_init): Update.
3760
3761 2004-06-18 Mark Kettenis <kettenis@gnu.org>
3762
3763 * i386-tdep.c (i386_collect_fpregset): Fix comment.
3764
3765 2004-06-17 Andrew Cagney <cagney@gnu.org>
3766
3767 GDB 6.1.1 released from the GDB 6.1 branch.
3768 * NEWS: Merge in 6.1.1 NEWS from 6.1 branch.
3769 * PROBLEMS: Ditto.
3770
3771 2004-06-16 Daniel Jacobowitz <dan@debian.org>
3772
3773 PR gdb/1658
3774 * dwarf2read.c (dwarf_decode_lines): Read the length of the extended
3775 operation as a uleb128. Found by Michael Coulter.
3776
3777 2004-06-16 Paul N. Hilfinger <Hilfinger@gnat.com>
3778
3779 * ada-tasks.c: Rename build_task_list to ada_build_task_list, and
3780 make it non-static.
3781 * ada-lang.h (task_control_block): declaration moved from ada-task.c
3782 to ada-lang.h; this is needed to be able to implement the kill command
3783 in multi-task mode.
3784 (task_ptid): Ditto.
3785 (task_entry): Ditto.
3786 (task_list): Ditto.
3787 (ada_build_task_list): Ditto.
3788
3789 * ada-lang.c: Conditionalize routines and data structures related
3790 to breakpoints, exceptions, completion, and symbol caching on
3791 GNAT_GDB, since these are not yet used in the submitted public sources.
3792 (ada_main_name): Editorial: Move definition out of exception-related
3793 code.
3794
3795 2004-06-15 Andrew Cagney <cagney@gnu.org>
3796
3797 * mips-tdep.c (non_heuristic_proc_desc): Delete call to
3798 deprecated_pc_in_call_dummy.
3799
3800 2004-06-15 Alan Modra <amodra@bigpond.net.au>
3801
3802 * dsrec.c (load_srec, make_srec): Use bfd_get_section_size instead of
3803 bfd_get_section_size_before_reloc or _raw_size.
3804 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3805 * dwarf2read.c (dwarf2_locate_sections): Likewise.
3806 (dwarf2_read_section): Likewise.
3807 * elfread.c (elf_locate_sections): Likewise.
3808 * gcore.c (derive_heap_segment): Likewise.
3809 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
3810 * remote-e7000.c (e7000_load): Likewise.
3811 * remote-m32r-sdi.c (m32r_load): Likewise.
3812 * remote-mips.c (mips_load_srec): Likewise.
3813 (pmon_load_fast): Likewise.
3814 * remote.c (compare_sections_command): Likewise.
3815 * symfile.c (add_section_size_callback): Likewise.
3816 (load_section_callback): Likewise.
3817 (pc_in_unmapped_range): Likewise.
3818 (pc_in_mapped_range): Likewise.
3819 (sections_overlap): Likewise.
3820 (list_overlays_command): Likewise.
3821 (simple_overlay_update_1): Likewise.
3822 (simple_overlay_update): Likewise.
3823 * tracepoint.c (remote_set_transparent_ranges): Likewise.
3824 * win32-nat.c (core_section_load_dll_symbols): Likewise.
3825
3826 2004-06-14 Randolph Chung <tausq@debian.org>
3827
3828 * Makefile.in (hppa-hpux-tdep.o): Update dependency.
3829 * hppa-hpux-tdep.c (hp_cxx_exception_support_initialized): Make
3830 static.
3831 (hppa_hpux_inferior_created): New function.
3832 (hppa_hpux_init_abi): Register observer.
3833 * symfile.c (hp_cxx_exception_support_initialized)
3834 (RESET_HP_UX_GLOBALS): Remove HPUXHPPA specific hacks.
3835 (symbol_file_add_main_1, symbol_file_clear): Likewise.
3836
3837 2004-06-14 Randolph Chung <tausq@debian.org>
3838
3839 * MAINTAINERS (Write After Approval): Alphabetize my entry
3840 correctly.
3841
3842 2004-06-14 Andrew Cagney <cagney@gnu.org>
3843
3844 * MAINTAINERS (testsuite): List Michael Chastain as the lead
3845 testsuite maintainer.
3846
3847 2004-06-13 Andrew Cagney <cagney@gnu.org>
3848
3849 * infcmd.c (print_return_value): Fix logic, allow
3850 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS when struct_return.
3851
3852 * gdbarch.sh: For predicates, do not check GDB_MULTI_ARCH when
3853 defining any macros.
3854 * gdbarch.h: Re-generate.
3855
3856 * gdbarch.sh: Delete "level" attribute. Only check for a macro
3857 redefinition when multi-arch greater than GDB_MULTI_ARCH_PARTIAL.
3858 * gdbarch.h: Re-generate.
3859
3860 * values.c (generic_use_struct_convention): Don't check gcc_p.
3861
3862 * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE)
3863 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Delete.
3864 * gdbarch.h, gdbarch.c: Regenerate.
3865 * ns32k-tdep.h (NS32K_MAX_REGISTER_RAW_SIZE)
3866 (NS32K_MAX_REGISTER_VIRTUAL_SIZE): Delete macros.
3867 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
3868 deprecated_max_register_raw_size and
3869 deprecated_max_register_virtual_size.
3870 * v850-tdep.c (v850_gdbarch_init): Ditto.
3871 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
3872 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
3873 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
3874 * cris-tdep.c (cris_gdbarch_init): Ditto.
3875
3876 * gdbarch.sh (RETURN_VALUE_ON_STACK): Delete method.
3877 * gdbarch.h, gdbarch.c: Re-generate.
3878 * m68hc11-tdep.c (m68hc11_return_value_on_stack): Delete function.
3879 (m68hc11_use_struct_convention): Delete function.
3880 (m68hc11_extract_struct_value_address): Delete function.
3881 (m68hc11_return_value): New function.
3882 (m68hc11_gdbarch_init): Instead of store_return_value,
3883 extract_return_value, return_value_on_stack,
3884 deprecated_extract_struct_value_address and use_struct_convention,
3885 set return_value.
3886 * values.c (using_struct_return): Do not call
3887 RETURN_VALUE_ON_STACK.
3888 * arch-utils.h (generic_return_value_on_stack_not): Delete
3889 declaration.
3890 * arch-utils.c (generic_return_value_on_stack_not): Delete
3891 function.
3892
3893 2004-06-12 Andrew Cagney <cagney@gnu.org>
3894
3895 * values.c (register_value_being_returned): Delete function.
3896 * infcmd.c (legacy_return_value): Delete function.
3897 * infcall.c (call_function_by_hand): Inline
3898 "register_value_being_returned", simplify.
3899 * values.c (using_struct_return): Update comment, refer to
3900 print_return_value instead of register_value_being_returned.
3901 * infcmd.c (print_return_value): Inline calls to
3902 register_value_being_returned and legacy_return_value. Simplify.
3903
3904 2004-06-11 Randolph Chung <tausq@debian.org>
3905
3906 * somread.c (som_symtab_read): Exclude gcc local symbols.
3907
3908 2004-06-11 Randolph Chung <tausq@debian.org>
3909
3910 * infrun.c (handle_inferior_event): Handle the case when a
3911 trampoline ends up in the runtime resolver, and if the trampoline
3912 has no name. Rearrange the code so that all the trampoline
3913 processing happens before other step-out-of-range handling.
3914
3915 2004-06-11 Martin Hunt <hunt@redhat.com>
3916
3917 * mips-tdep.c (mips_gdbarch_init): Recognize vr4120
3918 has no fpu.
3919
3920 2004-06-10 Andrew Cagney <cagney@gnu.org>
3921
3922 * blockframe.c (legacy_inside_entry_func): Delete.
3923 (legacy_frame_chain_valid): Inline call to
3924 legacy_inside_entry_func, simplify.
3925
3926 2004-06-10 Bob Rossi <bob@brasko.net>
3927
3928 * dbxread.c (read_dbx_symtab): Set pst->dirname when known.
3929 * dwarf2read.c (partial_die_info): Add dirname field.
3930 (dwarf2_build_psymtabs_hard): Set pst->dirname when known.
3931 (read_partial_die): Save away DW_AT_comp_dir.
3932 * defs.h (symtab_to_filename): Removed.
3933 * source.c (find_and_open_source): Added.
3934 (open_source_file): Just calls find_and_open_source.
3935 (symtab_to_filename): Removed.
3936 (symtab_to_fullname, psymtab_to_fullname): Added.
3937 * source.h (psymtab_to_fullname,symtab_to_fullname): Added.
3938 * symtab.c (lookup_symtab): Call symtab_to_fullname instead of
3939 symtab_to_filename.
3940 * symtab.h (partial_symtab): Add dirname field.
3941 * mi/mi-cmd-file.c (FILENAME,FULLNAME): Added.
3942 (mi_cmd_file_list_exec_source_file): Call new function
3943 symtab_to_fullname to find fullname.
3944 (mi_cmd_file_list_exec_source_files): Added.
3945 * mi/mi-cmds.c (mi_cmd_mi_cmds): Add -file-list-exec-source-files.
3946 * mi/mi-cmds.h (mi_cmd_file_list_exec_source_files): Added.
3947
3948 2004-06-10 Andrew Cagney <cagney@gnu.org>
3949
3950 * avr-tdep.c (avr_gdbarch_init): Do not set use_struct_convention
3951 to generic_use_struct_convention, the default value.
3952
3953 * mn10300-tdep.c (mn10300_type_align): Call internal_error instead
3954 of abort.
3955
3956 * ns32k-tdep.c (ns32k_push_arguments): New function.
3957 (ns32k_gdbarch_init): Set deprecated_push_arguments.
3958 * infcall.c (call_function_by_hand): Call error instead of
3959 legacy_push_arguments.
3960 * value.h (legacy_push_arguments): Delete declaration.
3961 * valops.c (legacy_push_arguments): Delete function.
3962 (value_push): Delete function.
3963
3964 2004-06-10 Brian Ford <ford@vss.fsi.com>
3965
3966 * coffread.c (coff_symfile_read): Prevent mixed debugging formats
3967 from corrupting/reinitializing the psymtab. Support DWARF 2 frame
3968 info.
3969 * dbxread.c (elfstab_build_psymtabs): Remove bogus comment.
3970
3971 2004-06-10 Andrew Cagney <cagney@gnu.org>
3972
3973 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Delete.
3974 * gdbarch.h, gdbarch.c: Re-generate.
3975 * frame.h (deprecated_pc_in_call_dummy): Delete "sp" and "fp"
3976 parameters.
3977 * dummy-frame.c (deprecated_pc_in_call_dummy): Update.
3978 * arm-tdep.c (arm_pc_is_thumb_dummy): Call
3979 deprecated_pc_in_call_dummy instead of
3980 DEPRECATED_PC_IN_CALL_DUMMY.
3981 (arm_skip_prologue): Ditto.
3982 * xstormy16-tdep.c (xstormy16_pop_frame, xstormy16_scan_prologue)
3983 (xstormy16_frame_saved_pc, xstormy16_frame_chain): Ditto.
3984 * v850-tdep.c (v850_find_callers_reg, v850_frame_chain)
3985 (v850_pop_frame, v850_frame_saved_pc, v850_frame_init_saved_regs):
3986 Ditto.
3987 * sh64-tdep.c (sh64_frame_chain, sh64_get_saved_pr)
3988 (sh64_init_extra_frame_info, sh64_get_saved_register)
3989 (sh64_pop_frame): Ditto.
3990 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
3991 * mcore-tdep.c (mcore_find_callers_reg, mcore_frame_saved_pc)
3992 (mcore_pop_frame, mcore_init_extra_frame_info): Ditto.
3993 * h8300-tdep.c (h8300_frame_chain, h8300_frame_saved_pc)
3994 (h8300_pop_frame): Ditto.
3995 * blockframe.c (legacy_inside_entry_func)
3996 (legacy_frame_chain_valid): Ditto.
3997 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update call
3998 to deprecated_pc_in_call_dummy.
3999
4000 2004-06-09 Andrew Cagney <cagney@gnu.org>
4001
4002 * gdbarch.sh (REGISTER_TO_VALUE, VALUE_TO_REGISTER): Do not
4003 provide a default value.
4004 (CONVERT_REGISTER_P): Default to generic_convert_register_p.
4005 * gdbarch.h, gdbarch.c: Re-generate.
4006 * arch-utils.c (generic_convert_register_p): Rename
4007 legacy_convert_register_p
4008 (legacy_register_to_value, legacy_value_to_register): Delete
4009 functions.
4010 * arch-utils.h (generic_convert_register_p): Rename
4011 legacy_convert_register_p.
4012 (legacy_register_to_value, legacy_value_to_register): Delete
4013 declarations.
4014
4015 * gdbarch.sh (DEPRECATED_REGISTER_CONVERT_TO_RAW)
4016 (DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL)
4017 (DEPRECATED_REGISTER_CONVERTIBLE): Delete.
4018 * gdbarch.h, gdbarch.c: Re-generate.
4019 * infcmd.c (default_print_registers_info): Simplify.
4020 * findvar.c (value_of_register): Simplify.
4021 * mi/mi-main.c (get_register): Simplify.
4022 * arch-utils.c (legacy_convert_register_p): Always return 0.
4023 (legacy_register_to_value, legacy_value_to_register): Always call
4024 internal_error.
4025
4026 * infptrace.c (child_xfer_memory) [CLEAR_INSN_CACHE]: Delete
4027 #ifdef CLEAR_INSN_CACHE code.
4028 * target.c (generic_mourn_inferior) [CLEAR_DEFERRED_STORES]:
4029 Delete #ifdef CLEAR_DEFERRED_STORES code.
4030
4031 * solib-svr4.c [HANDLE_SVR4_EXEC_EMULATORS]: Delete #ifdef code.
4032
4033 * config/ia64/tm-linux.h (TARGET_ELF64): Delete macro, Update
4034 copyright.
4035 * config/ia64/tm-aix.h (TARGET_ELF64): Ditto.
4036
4037 * config/mips/mipsv4.mh: Delete file.
4038
4039 * config/pa/tm-hppa64.h (HPREAD_ADJUST_STACK_ADDRESS): Delete
4040 unreferenced macro.
4041 (hpread_adjust_stack_address): Delete declaration.
4042
4043 2004-06-08 Andrew Cagney <cagney@gnu.org>
4044
4045 * infptrace.c [ATTACH_DETACH]: Remove #ifdef wrappers.
4046 (attach, detach): When neither PT_ATTACH / PT_DETACH nor
4047 PTRACE_ATTACH / PTRACE_DETACH available call error.
4048 (PT_ATTACH, PT_DETACH): Move definition to attach / detach.
4049 * infttrace.c (update_thread_state_after_attach, attach, detach):
4050 Remove #ifdef wrappers.
4051 * inftarg.c (child_attach, child_detach): Remove #ifdef wrappers.
4052 * gnu-nat.c [ATTACH_DETACH]: Remove #ifdef wrappers.
4053 * config/nm-bsd.h (ATTACH_DETACH): Delete.
4054 * config/nm-sysv4.h (ATTACH_DETACH): Delete.
4055 * config/nm-nbsd.h (ATTACH_DETACH): Delete.
4056 * config/nm-linux.h (ATTACH_DETACH): Delete.
4057 * config/rs6000/nm-rs6000.h (ATTACH_DETACH): Delete.
4058 * config/pa/nm-hppah.h (ATTACH_DETACH): Delete.
4059 * config/i386/nm-i386sco5.h (ATTACH_DETACH): Delete.
4060 * config/i386/nm-i386sco4.h (ATTACH_DETACH): Delete.
4061 * config/i386/nm-i386gnu.h (ATTACH_DETACH): Delete.
4062
4063 2004-06-08 Corinna Vinschen <vinschen@redhat.com>
4064
4065 * configure.in: Set $configdir to the right OS specific value.
4066 Use value when setting $tcldir and $tkdir.
4067 * configure: Regenerate.
4068
4069 2004-06-06 Paul Brook <paul@codesourcery.com>
4070
4071 * gdb/dwarf2-frame.c (decode_frame_entry_1): Decode version 3 CIE
4072 records.
4073
4074 2004-06-08 Paul N. Hilfinger <Hilfinger@gnat.com>
4075
4076 * ada-lang.c (lookup_symbol_in_language): New function to allow
4077 re-use of another language's symbol lookup code. (Placed here
4078 temporarily while Ada support is being integrated into the public
4079 tree).
4080 (restore_language): New auxiliary function for
4081 lookup_symbol_in_language.
4082 * ada-lang.h (lookup_symbol_in_language): Declare (Placed here
4083 temporarily while Ada support is being integrated into the public
4084 tree).
4085
4086 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
4087
4088 * Makefile.in (check//%): New.
4089
4090 * mn10300-tdep.c (mn10300_extract_return_value): Rewrite.
4091 (mn10300_store_return_value): Rewrite.
4092 (mn10300_type_align): New.
4093 (mn10300_use_struct_convention): Rewrite.
4094 (mn10300_return_value): New, using all of the above.
4095 (mn10300_pop_frame_regular): Add saved_regs_size.
4096 (mn10300_gdbarch_init): Remove deprecated rewritten entry points.
4097
4098 * mn10300-tdep.c (mn10300_analyze_prologue): Don't compute saved
4099 regs if PC is on movm.
4100
4101 2004-06-07 Jim Blandy <jimb@redhat.com>
4102
4103 Add native Linux support for the PowerPC E500.
4104 * ppc-tdep.h (struct gdbarch_tdep): New member: 'ppc_gprs_pseudo_p'.
4105 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it to false on
4106 all architectures except the E500.
4107 * ppc-linux-nat.c: (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): New
4108 #definitions.
4109 (struct gdb_evrregset_t): New type.
4110 (have_ptrace_getsetevrregs): New variable.
4111 (get_spe_registers, read_spliced_spe_reg, fetch_spe_register,
4112 fetch_spe_registers): New functions.
4113 (fetch_register): Call fetch_spe_register as appropriate.
4114 Assert that we're only passed raw register numbers.
4115 (fetch_ppc_registers): Call fetch_spe_registers as appropriate.
4116 Don't fetch gprs if they're pseudoregisters.
4117 (set_spe_registers, write_spliced_spe_reg, store_spe_register,
4118 store_spe_registers): New functions.
4119 (store_register): Call store_spe_register as appropriate.
4120 Assert that we're only passed raw register numbers.
4121 (store_ppc_registers): Call store_spe_registers as appropriate.
4122 Don't store gprs if they're pseudoregisters.
4123
4124 2004-06-07 Jeff Johnston <jjohnstn@redhat.com>
4125
4126 * thread-db.c (thread_get_info_callback): Fill in the thread_info
4127 struct if one exists, even if we are dealing with a zombie thread.
4128
4129 2004-06-07 Andrew Cagney <cagney@gnu.org>
4130
4131 * target.h (PC_REQUIRES_RUN_BEFORE_USE): Delete definition.
4132 * config/pa/tm-hppa.h (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE):
4133 Rename PC_REQUIRES_RUN_BEFORE_USE.
4134 * breakpoint.c (breakpoint_sals_to_pc): Update. Wrap reference in
4135 #ifdef.
4136
4137 2004-06-07 Randolph Chung <tausq@debian.org>
4138
4139 * hppa-tdep.c (hppa_frame_cache): Handle the cases when we start
4140 unwinding after sp has been saved to the stack but before the end
4141 of the prologue, and after the fp has been modified but before it has
4142 been saved to the stack.
4143 (hppa_frame_base_address, hppa_frame_base, hppa_frame_base_sniffer):
4144 Remove superfluous definitions.
4145 (hppa_gdbarch_init): Remove superfluous frame base sniffer.
4146
4147 2004-06-07 Guy Martin <gmsoft@gentoo.org>
4148
4149 Committed by Randolph Chung.
4150 * hppa-linux-nat.c: Include the correct version of the header file
4151 depending on the kernel version.
4152
4153 2004-06-06 Randolph Chung <tausq@debian.org>
4154
4155 * infrun.c (trap_expected_after_continue): Remove HP_OS_BUG workaround.
4156 (proceed, init_wait_for_inferior, handle_inferior_event): Likewise.
4157
4158 2004-06-06 Randolph Chung <tausq@debian.org>
4159
4160 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
4161 (hppa_hpux_skip_trampoline_code): Don't cache symbol values.
4162 * hppa-linux-tdep.c (hppa_linux_in_dyncall): Likewise.
4163 * hppa-tdep.c (hppa_symbol_address): New function definition.
4164 * hppa-tdep.h (hppa_symbol_address): New function declaration.
4165
4166 2004-06-06 Randolph Chung <tausq@debian.org>
4167
4168 * hppa-tdep.h (struct value): Forward declaration.
4169 (gdbarch_tdep): Define tdep find_global_pointer method.
4170 * hppa-tdep.c (hppa32_push_dummy_call): Find the global pointer
4171 associated with the function we are trying to call, and write it
4172 to the gp register.
4173 (hppa32_convert_from_funct_ptr_addr): New function.
4174 (hppa_find_global_pointer): New function.
4175 (hppa_gdbarch_init): Set default find_global_pointer method; set
4176 convert_from_func_ptr_addr method.
4177 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): New function.
4178 (hppa_linux_init_abi): Set find_global_pointer method.
4179 * Makefile.in (hppa-linux-tdep.o): Add value.h dependency.
4180
4181 2004-06-06 Randolph Chung <tausq@debian.org>
4182
4183 * gdbarch.sh (PUSH_DUMMY_CALL): Change CORE_ADDR func_addr argument
4184 to struct value *function.
4185 * gdbarch.c: Regenerate.
4186 * gdbarch.h: Likewise.
4187 * infcall.c (call_function_by_hand): Pass entire function value
4188 to push_dummy_call.
4189
4190 * Makefile.in (alpha-tdep.o, frv-tdep.o, ia64-tdep.o, mips-tdep.o)
4191 (ppc-sysv-tdep.o, rs6000-tdep.o): Update dependencies.
4192 * alpha-tdep.c (alpha_push_dummy_call): Update call signature.
4193 * amd64-tdep.c (amd64_push_dummy_call): Likewise.
4194 * arm-tdep.c (arm_push_dummy_call): Likewise.
4195 * avr-tdep.c (avr_push_dummy_call): Likewise.
4196 * cris-tdep.c (cris_push_dummy_call): Likewise.
4197 * d10v-tdep.c (d10v_push_dummy_call): Likewise.
4198 * frv-tdep.c (frv_push_dummy_call): Likewise.
4199 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
4200 * hppa-tdep.c (hppa32_push_dummy_call)
4201 (hppa64_push_dummy_call): Likewise.
4202 * i386-tdep.c (i386_push_dummy_call): Likewise.
4203 * ia64-tdep.c (ia64_push_dummy_call): Likewise.
4204 * m32r-tdep.c (m32r_push_dummy_call): Likewise.
4205 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
4206 * m68k-tdep.c (m68k_push_dummy_call): Likewise.
4207 * m88k-tdep.c (m88k_push_dummy_call): Likewise.
4208 * mips-tdep.c (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
4209 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Likewise.
4210 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
4211 (ppc64_sysv_abi_push_dummy_call): Likewise.
4212 * ppc-tdep.h (ppc_sysv_abi_push_dummy_call)
4213 (ppc64_sysv_abi_push_dummy_call): Likewise.
4214 * rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
4215 * s390-tdep.c (s390_push_dummy_call): Likewise.
4216 * sh-tdep.c (sh_push_dummy_call_fpu)
4217 (sh_push_dummy_call_nofpu): Likewise.
4218 * sparc-tdep.c (sparc32_push_dummy_call): Likewise.
4219 * sparc64-tdep.c (sparc64_push_dummy_call): Likewise.
4220 * vax-tdep.c (vax_push_dummy_call): Likewise.
4221
4222 2004-06-04 Jim Blandy <jimb@redhat.com>
4223
4224 * ppc-linux-nat.c (fetch_register): Don't forget to pass the
4225 gdbarch argument to register_size.
4226
4227 * rs6000-tdep.c (rs6000_store_return_value): Use
4228 regcache_cooked_write_part instead of
4229 deprecated_write_register_bytes.
4230 (rs6000_gdbarch_init): Register it for gdbarch_store_return_value,
4231 not gdbarch_deprecated_store_return_value.
4232
4233 * ppc-linux-nat.c (store_register, fetch_register): Remove
4234 incorrect assertions. Simplify and generalize handling of
4235 transfers whose sizes are not multiples of, or less than, sizeof
4236 (PTRACE_XFER_TYPE).
4237
4238 2004-06-04 Jeff Johnston <jjohnstn@redhat.com>
4239
4240 * infrun.c (handle_inferior_event): Don't treat an invalid ptid
4241 as a new thread event.
4242 * thread-db.c (thread_get_info_callback): If the thread is a
4243 zombie, return TD_THR_ZOMBIE.
4244 (thread_from_lwp): If thread_get_info_callback returns
4245 TD_THR_ZOMBIE, check if the thread is still on the thread list
4246 and return a -1 ptid if not found.
4247 (thread_db_wait): If thread_from_lwp returns a -1 ptid, then
4248 change the status to TARGET_WAITKIND_SPURIOUS.
4249
4250 2004-06-03 Corinna Vinschen <vinschen@redhat.com>
4251
4252 * sh-tdep.c (sh3e_sh4_store_return_value): Correctly store
4253 double values in little endian mode.
4254
4255 2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>
4256
4257 Committed by Andrew Cagney.
4258 * gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
4259 after last enum constant to avoid error from IBM C
4260 compiler.
4261
4262 2004-06-02 Jim Blandy <jimb@redhat.com>
4263
4264 * ppc-linux-nat.c (store_register, fetch_register): Rename 'mess'
4265 to 'message', and make it local to the lone block that uses it.
4266
4267 * ppc-linux-nat.c (store_register): Remove unused local 'offset'.
4268
4269 2004-06-02 Paul N. Hilfinger <hilfinger@gnat.com>
4270
4271 * ada-exp.y: Update copyright notice.
4272 Include block.h.
4273
4274 Replace REGNAME, LAST, INTERNAL_VARIABLE with
4275 SPECIAL_VARIABLE and unify the treatment of these cases.
4276
4277 (write_attribute_call0): Remove.
4278 (write_attribute_call1): Remove.
4279 (write_attribute_calln): Remove.
4280 (save_qualifier): Add missing semicolon.
4281
4282 (simple_exp,exp): Decomment (i.e., reactivate) code that was
4283 temporarily disabled to allow compilation with FSF head version.
4284
4285 (simple_exp syntax): Remove use of OP_ADA_ATTRIBUTE and
4286 use individual operators (OP_*) for all attributes.
4287 (exp syntax): Use write_int.
4288 Handle STRING literals with OP_STRING.
4289 (variable syntax): Add limit parameter to calls to
4290 write_object_renaming.
4291
4292 (temp_parse_space): New definition to hold entities that need
4293 only live until the next call to ada_parse.
4294 (string_to_operator): Rename fields of ada_opname_table entries.
4295
4296 (write_var_from_sym): Record block.
4297 (write_var_from_name): Minor reformatting.
4298 Make sure saved name is properly encoded in the case of multiple
4299 matches, and set its language to Ada.
4300 Update comment.
4301 Modify to indicate unresolved name as symbol in the UNRESOLVED
4302 namespace, allocated in temp_parse_space.
4303 (write_int): New function.
4304
4305 (write_object_renaming): Add max_depth parameter to limit
4306 chains of object renamings.
4307 Handle case where root of renaming expression is itself a renaming.
4308 Use temp_parse_space for temporary name buffer.
4309 Handle renamings to dereferenced pointers (___XEXA suffices).
4310
4311 (ada_parse, yyerror, string_to_operator,
4312 write_var_from_sym, write_var_from_name, write_attribute_call0,
4313 write_attribute_call1, write_attribute_calln,
4314 write_object_renaming): Protoize.
4315
4316 (_initialize_ada_exp): New function.
4317
4318 * ada-lang.c: Update copyright notice.
4319 General terminology change to conform to GNAT compiler usage:
4320 mangle => encode, demangle => decode
4321 Include gdb_obstack.h.
4322 Include gdb_regex.h
4323 Include frame.h
4324 Include hashtab.h
4325 Include completer.h
4326 Include gdb_stat.h
4327 Include block.h
4328 Include infcall.h
4329
4330 (ADA_RETAIN_DOTS): Make sure this is defined.
4331 (TRUNCATION_TOWARDS_ZERO): Define.
4332 (struct string_vector): Define.
4333 (unresolved_names): Remove definition.
4334 (xnew_string_vector): New function.
4335 (string_vector_append): New function.
4336 (extract_string): Make static.
4337 (ada_unqualified_name): New function.
4338 (add_angle_brackets): New function.
4339 (function_name_from_pc): New function.
4340 (place_on_stack): Rename to ensure_lval.
4341
4342 (ensure_lval): Renamed from place_on_stack.
4343 Make identity on lvals.
4344 Update comment.
4345 (is_nonfunction): New interface.
4346 Only symbols in LOC_CONST class can be enumerals.
4347 (fill_in_ada_prototype): Remove; now independent of language.
4348 (add_defn_to_vec): Add obstack and symtab arguments.
4349 Use obstack to hold collected definitions.
4350 (num_defns_collected): New function.
4351 (defns_collected): New function.
4352 (ada_resolve_subexp): Rename to resolve_subexp.
4353 (resolve_subexp): Renamed from ada_resolve_subexp.
4354 (ada_op_name): Return non-const result.
4355 (ada_decoded_op_name): Renamed from ada_op_name, now used for
4356 other purposes.
4357
4358 (to_fixed_array_type): Add declaration.
4359 (coerce_unspec_val_to_type): Remove offset parameter.
4360 (find_sal_from_funcs_and_line): New interface.
4361 (find_line_in_linetable): Ditto.
4362
4363 (all_sals_for_line): Rename to ada_sals_for_line and make
4364 global.
4365 Add new parameter. When set, do not ask the user to choose the
4366 instance, but use the first one found instead.
4367 Use given line number in returned sals.
4368 Fix comment.
4369 Skip the prologue if funfirstline is set.
4370 Correct for memory leak when 0 lines found.
4371
4372 (value_pos_atr): Use pos_atr.
4373 (pos_atr): New function.
4374 (standard_lookup): Add block parameter.
4375
4376 (makeTimeStart): Remove declaration and uses.
4377 (makeTimeStop): Remove declaration and uses.
4378
4379 (ada_completer_word_break_characters): Allow for VMS.
4380 (ADA_MAIN_PROGRAM_SYMBOL_NAME): Make into constant.
4381 (raise_sym_name): New constant.
4382 (raise_unhandled_sym_name): New constant.
4383 (raise_assert_sym_name): New constant.
4384 (process_raise_exception_name): New constant.
4385 (longest_exception_template): New constant.
4386 (warning_limit): New variable to limit warnings during expression
4387 evaluation.
4388 (warnings_issued): New variable to keep track of warnings issued.
4389 (known_runtime_file_name_patterns): New constant.
4390 (known_auxiliary_function_name_patterns): New constant.
4391 (symbol_list_obstack): New variable.
4392
4393 (field_name_match,is_suffix,is_suppressed_name,ada_encode,
4394 ada_decode,ada_match_name,encoded_ordered_before,equiv_types,
4395 lesseq_defined_than,is_nondebugging_type,is_name_suffix,wild_match,
4396 find_sal_from_funcs_and_line, ada_breakpoint_rewrite,
4397 ada_is_tagged_type, ada_is_parent_field, ada_is_wrapper_field,
4398 ada_variant_discrim_name, field_alignment, dynamic_template_type,
4399 ada_is_character_type, ada_is_aligner_type, ada_is_vax_floating_type):
4400 Replace use of deprecated STREQ and STREQN macros by calls to strncmp
4401 and strcmp.
4402
4403 (ada_get_field_index): New function.
4404 (lim_warning): New function.
4405 (ada_translate_error_message): New function.
4406 (MAX_OF_SIZE): New function.
4407 (MIN_OF_SIZE): New function.
4408 (UMAX_OF_SIZE): New function.
4409 (UMIN_OF_SIZE): New function.
4410 (discrete_type_high_bound): New function.
4411 (discrete_type_low_bound): New function.
4412 (base_type): New function.
4413 (do_command): Remove.
4414
4415 (ada_update_initial_language): Use language_ada, not language_unknown.
4416 (ada_encode): Renamed from ada_mangle.
4417 Obey ADA_RETAIN_DOTS.
4418 (ada_decode): Renamed from ada_demangle.
4419 Update coding conventions.
4420 (decoded_names_store): New hash table.
4421 (ada_decode_symbol): New function.
4422 (ada_la_decode): New function.
4423
4424 (modify_general_field): Correct computations of offset and bit
4425 position.
4426 (desc_base_type): Handle ref types, too.
4427 (ada_is_direct_array_type): New function.
4428
4429 (ada_is_simple_array): Rename to ada_is_simple_array_type.
4430 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
4431 (ada_is_bogus_array_descriptor,ada_type_of_array,
4432 ada_coerce_to_simple_array_ptr,ada_coerce_to_simple_array,
4433 ada_type_match,convert_actual,ada_evaluate_subexp): Use renamed
4434 ada_is_array_descriptor_type.
4435
4436 (ada_coerce_to_simple_array_type): Fix incorrect value freeing.
4437 (ada_is_packed_array_type): Handle pointers or
4438 references to packed arrays as well.
4439 (packed_array_type): Uncomment use of TYPE_FLAG_FIXED_INSTANCE.
4440 (decode_packed_array_type): Search for the packed array type
4441 symbol in the currently selected block and associated
4442 superblocks too.
4443 Use lookup_symbol again.
4444
4445 (decode_packed_array): Handle pointers and references.
4446 Update call to coerce_unspec_val_to_type.
4447 (decode_packed_array_type,value_subscript_packed): Limit warnings.
4448 (ada_value_primitive_packed_val): Improve comment.
4449
4450 (ada_index_type): Substitute int type for "undefined".
4451 (ada_index_type,ada_array_bound_from_type,ada_array_bound,
4452 ada_array_langth, ada_is_string_type): Use renamed
4453 ada_is_simple_array_type.
4454 (empty_array): New function.
4455
4456 (ada_resolve): Rename to resolve.
4457 (resolve): Make static.
4458 Call renamed resolve_subexp.
4459 Update comment.
4460 (ada_resolve_subexp): Rename to resolve_subexp.
4461 (resolve_subexp): Update comment.
4462 Decomment disabled code.
4463 Add LOC_COMPUTED* cases.
4464 Modify to use temporary struct symbols (marked as being in
4465 UNDEF_NAMESPACE) to indicate unresolved names, instead of
4466 OP_UNRESOLVED_VALUE.
4467 Remove OP_ATTRIBUTE; use individual opcodes for attributes.
4468 Add OP_STRING case.
4469 Remove OP_ARRAY.
4470 Use SYMBOL_PRINT_NAME instead of ada_demangle.
4471 Use new ada_lookup_symbol_list interface.
4472 Use new ada_resolve_function interface.
4473 Remove OP_TYPE case.
4474
4475 (ada_args_match): Idiot proof against null actuals.
4476 Use intermediate variables to clarify.
4477 (ada_resolve_function): Update comment and interface.
4478 (mangled_ordered_before): Rename to encoded_ordered_before and
4479 update comment.
4480 (sort_choices): Update comment and interface.
4481 Use SYMBOL_LINKAGE_NAME in place of SYMBOL_NAME.
4482 (user_select_syms): New interface.
4483 Use new sort_choices interface.
4484 Use SYMBOL_PRINT_NAME rather than SYMBOL_SOURCE_NAME.
4485 (possible_user_operator_p): Idiot-proof against null values.
4486 (ada_simple_renamed_entity): Don't make cleanup; rely on
4487 caller to free result string.
4488 Remove const from return type.
4489 (make_array_descriptor): Rename uses of place_on_stack to
4490 ensure_lval.
4491 Make sure that arrays are on stack.
4492
4493 (HASH_SIZE): Define.
4494 (struct cache_entry): Define.
4495 (cache_space): Define.
4496 (cache): Define.
4497 (clear_ada_sym_cache): New function.
4498 (find_entry): New function.
4499 (lookup_cached_symbol): New function.
4500 (defn_vector_size): Define.
4501 (cache_symbol): New function.
4502 (defn_symbols): Remove.
4503
4504 (standard_lookup): Use lookup_symbol_in_language to get effect of
4505 C lookup.
4506 Cache results.
4507
4508 (symbol_completion_match): New function.
4509 (symbol_completion_add): New function.
4510 (ada_make_symbol_completion_list): New function.
4511
4512 (ada_lookup_partial_symbol,ada_lookup_simple_minsym,
4513 add_symbols_from_enclosing_procs,remove_extra_symbols): Replace
4514 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
4515 (symtab_for_sym): Handle LOC_COMPUTED, LOC_COMPUTED_ARG.
4516
4517 (ada_lookup_simple_minsym): New function.
4518 (ada_lookup_minimal_symbol): Use ada_lookup_simple_minsym.
4519
4520 (add_symbols_from_enclosing_procs): New interface.
4521 Conditionalize more helpfully.
4522 Don't bother if program isn't running.
4523 Use new interface to get_frame_block.
4524 Limit number of levels searched with MAX_LEXICAL_LEVELS, just in case.
4525
4526 (remove_extra_symbols): New interface.
4527 (xget_renaming_scope): New function.
4528 (is_package_name): New function.
4529 (renaming_is_visible): New function.
4530 (remove_out_of_scope_renamings): New function.
4531
4532 (ada_lookup_symbol_list): New interface.
4533 Properly reinitialize the symbol list obstack.
4534 Don't call add_symbols_from_enclosing_procs if we start from a
4535 static or global block.
4536 Use new interfaces to ada_add_block_symbols, add_defn_to_vec,
4537 add_symbols_from_enclosing_procs.
4538 Add symtab data to cached entries.
4539 Handle symbols prefixed with
4540 "standard__" specially; strip prefix and don't look in local symbols.
4541 Do not include out of scope renaming symbols in list of
4542 symbols returned.
4543 Add const to block parameter.
4544 Move check for non-local, non-global symbols earlier.
4545 Remove timing stuff.
4546 (ada_lookup_symbol): New interface.
4547 Find symtab as well.
4548 (ada_lookup_symbol_nonlocal): New function.
4549
4550 (is_name_suffix): Enhance suffix detection to recognize
4551 an optional "__[:digit:]+" before any "\.[:digit:]+" suffix.
4552 (is_dot_digits_suffix): New function.
4553 (wild_match): Ignore ".[:digit:]*" suffixes during matches.
4554
4555 (ada_add_block_symbols): New interface. Use obstack to return results
4556 in a vector of struct ada_symbol_infos. Add symtab argument.
4557 Use new interface to add_defn_to_vec.
4558 Remove calls to fill_in_ada_prototype.
4559 Use BLOCK_BUCKETS, BLOCK_BUCKET.
4560
4561 (ada_finish_decode_line_1): Add const qualification to local to fix
4562 warning.
4563 Start looking in static block for functions to avoid attempts
4564 to search frame chain for up-level variables.
4565 Adapt to new ada_sals_for_line interface.
4566 Use new interfaces to ada_lookup_symbol_list and user_select_syms.
4567 Handle quoting of the function name inside the spec string.
4568 Skip prologue when funfirstline is set and update the
4569 function documentation to that effect.
4570
4571 (debug_print_lines, debug_print_block, debug_print_blocks,
4572 debug_print_symtab): Remove.
4573
4574 (ada_main_name): New function.
4575 (ada_exception_breakpoint_type): New function.
4576 (is_known_support_routine): New function.
4577 (ada_find_printable_frame): Renamed from find_printable_frame and made
4578 global.
4579 Remove level parameter.
4580 Use new interface to select_frame.
4581
4582 (begin_command): Remove.
4583 (ada_adjust_exception_stop): New function.
4584 (ada_print_exception_stop): New function.
4585 (exception_name_from_cond): New function.
4586 (ada_report_exception_break): Replace disabled code with
4587 conditionalization on GNAT_GDB.
4588 Get the exception name from the condition string.
4589 Remove and move functionality into new functions
4590 ada_print_exception_breakpoint_task and
4591 ada_print_exception_breakpoint_nontask.
4592 (error_breakpoint_runtime_sym_not_found): New function.
4593 (is_runtime_sym_defined): New function.
4594 (ada_breakpoint_rewrite): Uncomment suppressed code.
4595 Use symbolic error-message and runtime-symbol names.
4596 Surround runtime symbol names in quotes.
4597 Allow non-specific breakpoints on exceptions and assertions before
4598 program starts.
4599
4600 (ada_is_tagged_type): Add parameter.
4601 (ada_is_tag_type): New function.
4602 (ada_tag_type): Use new ada_lookup_struct_elt_type interface.
4603 (ada_variant_discrim_type): Ditto.
4604 (value_tag_from_contents_and_address): New function.
4605 (type_from_tag): New function.
4606 (struct tag_args): New structure used to communicate with
4607 ada_tag_name_1.
4608 (ada_tag_name_1): New function.
4609 (ada_tag_name): New function.
4610
4611 (ada_scan_number): Update comment.
4612 (find_struct_field): New function.
4613 (ada_search_struct_field): Make static.
4614 (ada_value_struct_elt): New version that returns references when
4615 given pointers or references to structs.
4616 (ada_lookup_struct_elt_type): Add 'refok' parameter.
4617 (ada_which_variant_applies): Use new ada_lookup_struct_elt_type
4618 interface.
4619 (ada_value_ind): Use new ada_to_fixed_value interface.
4620 (ada_coerce_ref): Ditto.
4621 (field_offset): Remove.
4622
4623 (ada_find_any_symbol): New function, extracted from ada_find_any_type.
4624 (ada_find_renaming_symbol): New function.
4625 (ada_prefer_type): Prefer named types over unnamed ones.
4626 (variant_field_index): New function.
4627 (contains_variant_part): Removed: subsumed by variant_field_index.
4628 (ada_template_to_fixed_record_type): New function, mostly from
4629 template_to_fixed_record_type.
4630 (template_to_fixed_record_type):
4631 Do not scan the type fields beyond the last one; prevents a
4632 potential SEGV.
4633 Handle case where variant field is listed BEFORE discriminant it
4634 depends on.
4635 Fix calculation of record length when bit length is
4636 not evenly divisible by char length.
4637 Move code to ada_template_to_fixed_record_type and call it.
4638
4639 (template_to_static_fixed_type): Revise comment.
4640 Modify to work on ordinary record types as well as templates,
4641 so as to handle fields that use ___XVE or ___XVU encodings.
4642 (to_record_with_fixed_variant_part): Fill out comment.
4643 Initialize C++ stuff in right type.
4644 Allow case where DVAL is null.
4645 Handle case where variant field is not last.
4646 Fix typo concerning record length.
4647 (to_fixed_record_type): Decomment disabled code.
4648 (to_fixed_record_type): Use variant_field_index instead of
4649 contains_variant_part.
4650 (to_fixed_variant_branch_type): Ditto.
4651 (to_fixed_array_type): Decomment disabled code.
4652 (ada_to_fixed_type): Convert tagged types to the specific type.
4653 Deactivate the size-check for array types in order to avoid
4654 some false size alarms.
4655 (to_static_fixed_type): Decomment disabled code.
4656 Modify to call template_to_static_fixed_type
4657 on ordinary structs, not just ___XVE- and ___XVU-encoded fields.
4658 (ada_to_fixed_value_create): Renamed version of old ada_to_fixed_value.
4659 Remove valaddr argument, as it is never really used.
4660 (ada_to_fixed_value): Change interface to act on single struct value*
4661 operand.
4662 (adjust_pc_past_prologue): New function.
4663 (ada_attribute_name): Modify to take enum exp_opcode argument.
4664
4665 (ada_enum_name): Recognize new homonym-distinguishing convention.
4666 Adjust local variable's type to remove compiler warning.
4667 Fix a small problem in the part that unqualifies the enumeration name.
4668 (ada_value_binop): New function.
4669 (ada_value_equal): New function.
4670
4671 (ada_evaluate_subexp): Use new ada_lookup_struct_elt_type interface.
4672 Don't give error message when not doing normal evaluation
4673 and a tagged type doesn't seem to contain a structure member.
4674 Give error message for packed arrays.
4675 For indexing arrays, handle pointers to packed arrays correctly.
4676 Handle case of 'first and 'last attributes of bare integral type
4677 without encoded subtype info.
4678 Remove some unnecessary casts.
4679 Fix uninitialized value of type in computing 'first, 'last, or 'length
4680 of array object.
4681 Add BINOP_EQUAL and BINOP_NOTEQUAL cases.
4682 Remove binop_user_defined_p tests and value_x_binop and value_x_unop
4683 calls.
4684 Attributes are now exp_opcode values.
4685 Correct treatment of 'modulus.
4686 Better error message for taking 'length of wrong kind of type;
4687 improve comment.
4688 Change EVAL_NORMAL to noside for consistency.
4689 Use ada_value_binop for DIV, MOD, REM.
4690 Make special case out of array of length 0, since an argument
4691 of 0 upsets some platforms' malloc.
4692 Use OP_STRING instead of OP_ARRAY.
4693 For slice, add check that we have an array type before extracting
4694 a slice out of it. Avoids a SEGV.
4695 When evaluating an array slice, if the array type is a reference to
4696 an aligner type, then replace the aligner type by the actual type.
4697 Decomment disabled code.
4698 Remove some dead code.
4699 Use temporary struct symbols (marked as being in UNDEF_NAMESPACE)
4700 to indicate unresolved names, instead of OP_UNRESOLVED_VALUE.
4701 Rename BINOP_MBR to BINOP_IN_BOUNDS, TERNOP_MBR to TERNOP_IN_RANGE,
4702 and UNOP_MBR to UNOP_IN_RANGE.
4703 If an array type has a parallel ___XVE type, then use it.
4704 Turn arrays into pointers for lvalue arrays.
4705 Change TERNOP_SLICE code to work even when bounds are unknown, ignoring
4706 bounds error and handle 0-length slices.
4707 Use lim_warning.
4708 When selecting fields, apply ada_to_fixed_value (because the fields
4709 might have ___XVU or ___XVE encodings even if not dynamic.)
4710 Use ada_to_fixed_value_create and new ada_to_fixed_value interface.
4711 (ada_is_system_address_type): New function.
4712
4713 (get_var_value): Use new interface to ada_lookup_symbol_list.
4714 (get_int_var_value): New interface.
4715 (to_fixed_range_type): Allow unknown bound, with warning.
4716 (ada_is_modular_type): Decomment disabled code.
4717 (ADA_OPERATORS): New definition.
4718 (ada_operator_length): New function.
4719 (ada_expr_op_name): New function.
4720 (ada_forward_operator_length): New function.
4721 (ada_dump_subexp_body): New function.
4722 (ada_print_subexp): New function.
4723 (ada_exp_descriptor): New constant.
4724 (ada_op_print_tab): Add 'size. Remove FIXMEs.
4725 (ada_language_defn): Add ada_exp_descriptor entry.
4726 Change ada_parse => parse.
4727 Add post-parser entry.
4728 Use ada-specific non-local symbol lookup.
4729 Don't use C-style arrays.
4730 String lower-bound is 1.
4731 Decomment disabled code.
4732 (parse): New function.
4733 New fields ada_translate_error_message, ada_lookup_symbol,
4734 ada_lookup_minimal_symbol.
4735
4736 * ada-lang.h: Update copyright dates.
4737 Replace the mangle/demangle terminology throughout by the
4738 more appropriate encode/decode one.
4739 Include breakpoint.h.
4740 Forward declare struct partial_symbol, struct block.
4741 (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Define.
4742 (EXTRACT_ADDRESS): Remove.
4743 (EXTRACT_INT): Remove.
4744 (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Define.
4745 (MAX_ENCLOSING_FRAME_LEVELS): Define.
4746 (MAX_RENAMING_CHAIN_LENGTH): Define.
4747 (struct ada_opname_map): mangled => decoded, demangled=>encoded.
4748
4749 (enum task_states): Remove.
4750 ada_task_states: Remove.
4751 (fat_string): Remove.
4752 (struct entry_call): Remove.
4753 (struct task_fields): Remove.
4754 (struct task_entry): Remove.
4755
4756 (struct ada_symbol_info): Define.
4757 (enum ada_attribute): Remove.
4758 (enum ada_operator): Define.
4759
4760 (ada_get_field_index): Declare.
4761 (ada_coerce_to_simple_array): Rename to ada_coerce_to_simple_array_ptr.
4762 (ada_is_simple_array): Rename to ada_is_simple_array_type.
4763 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
4764 (ada_lookup_symbol_list): New interface.
4765 (ada_decode_symbol): Declare.
4766 (ada_decode): Declare.
4767 (ada_lookup_symbol): New interface.
4768 (ada_update_initial_language): Declare.
4769 (ada_lookup_simple_minsym): Declare.
4770 (user_select_syms): New interface.
4771 (ada_sals_for_line): Declare.
4772 (ada_is_tagged_type): New interface.
4773 (ada_tag_name): Declare.
4774 (ada_lookup_struct_elt_type): Remove declaration.
4775 (ada_search_struct_field): Remove declaration.
4776 (ada_attribute_name): New interface.
4777 (ada_is_system_address_type): Declare.
4778 (ada_to_fixed_value): Remove declaration.
4779 (ada_template_to_fixed_record_type_1): Declare.
4780 (get_int_var_value): New interface.
4781 (ada_find_any_symbol): Declare.
4782 (ada_find_renaming_symbol): Declare.
4783 (ada_mangle): Rename to ada_encode.
4784 (ada_simple_renamed_entity): Remove const.
4785 (ada_main_name): Declare.
4786 (get_current_task): Rename to ada_get_current_task.
4787 (get_entry_number): Remove declaration.
4788 (ada_report_exception_break): Remove declaration.
4789 (ada_print_exception_breakpoint_nontask): Declare.
4790 (ada_print_exception_breakpoint_task): Declare.
4791 (ada_find_printable_frame): Declare.
4792
4793 * ada-lex.l: Update copyright notices.
4794 Use xmalloc and xfree instead of malloc and free.
4795 Use new interface to name_lookup.
4796 Use new interface to
4797 ada_mangle=>ada_encode.
4798 Redo handling of '$...' variable to parallel current treatment
4799 in c-exp.y.
4800 (resize_tempbuf, canonicalizeNumeral, is_digit_in_base,
4801 digit_to_int, strtoulst, processInt, processReal, processId,
4802 block_lookup, name_lookup, find_dot_all, subseqMatch, processAttribute,
4803 yywrap): Protoize.
4804
4805 (processInt): Use cast to remove harmless warning.
4806 (processReal): Modify to get rid of compiler warning on scan formats.
4807
4808 (processId): Replace xmalloc with obstack_alloc for name and remove
4809 call to ada_name_string_cleanup.
4810 Remove obsolete disabled code.
4811 (name_lookup): Ditto.
4812 New interface.
4813 Use obsavestring on temp_parse_space instead of savestring
4814 on name, and remove call to ada_name_string_cleanup.
4815 Free string returned from ada_simple_renamed_entity.
4816 Use new interface to ada_lookup_symbol_list.
4817 Decomment disabled code.
4818 Treat LOC_COMPUTED and LOC_COMPUTED_ARG symbols as variables,
4819 not types.
4820 When a type name lookup succeeds as a result of
4821 lookup_primitive_typename, check for regular type entry that has not
4822 yet been read in.
4823 Limit length of chain of renamed symbols we are willing to follow.
4824 Do not break names beginning with "standard__" into segments.
4825 (block_lookup): Use new interface to ada_lookup_symbol_list.
4826
4827 * ada-typeprint.c: Update copyright notice.
4828 (demangled_type_name): Rename to decoded_type_name.
4829 (ada_typedef_print): Use SYMBOL_PRINT_NAME.
4830 (print_range_bound): Correct handling of negative
4831 bounds that make the index type looked unsigned under STABS.
4832 (print_dynamic_range_bound): Use new interface to get_int_var_value.
4833 (print_range_type_named): Use the builtin int type if no type
4834 corresponding to the given type name could be found.
4835 (print_array_type): ada_is_simple_array => ada_is_simple_array_type.
4836 Add some bullet-proofing.
4837 (print_variant_clauses): Allow for variant branches with ___XVU
4838 encodings that are not dynamic fields.
4839 Use new interface to ada_is_tagged_type.
4840 (print_record_type): Allow for fields with ___XVE encodings that
4841 are not dynamic fields.
4842 Use new interface to ada_is_tagged_type.
4843 (ada_print_type): ada_is_array_descriptor =>
4844 ada_is_array_descriptor_type.
4845
4846 * ada-valprint.c: Update copyright notice.
4847 Include gdb_string.h
4848 Include infcall.h
4849 (ui_memcpy): New function.
4850 (ada_print_floating): New function.
4851 (ada_print_str): Order arguments correctly.
4852 Correct handling of empty arrays and arrays of 0-length items.
4853 ada_is_array_descriptor => ada_is_array_descriptor_type
4854 Print values of type System.Address in hexadecimal format.
4855 Use ada_print_floating to print floating-point numbers in Ada format.
4856 Print class tag values with type names.
4857 No longer print the address of reference values. Avoids
4858 a potential confusion.
4859 (ada_value_print): Stop printing the object type for reference
4860 values, but preserve that behavior for access types. Avoids
4861 a potential confusion.
4862 Simplify one conditional expression, as the first part is now
4863 necessarily true.
4864 ada_is_array_descriptor => ada_is_array_descriptor_type
4865 Add check for arrays for null records, and print them by hand.
4866
4867 2004-06-01 Jim Blandy <jimb@redhat.com>
4868
4869 * ppc-tdep.h: Delete unused 'regoff' member.
4870 * rs6000-tdep.c (rs6000_gdbarch_init): Don't initialize it.
4871
4872 2004-06-01 Michael Chastain <mec.gnu@mindspring.com>
4873
4874 Fix PR symtab/1661.
4875 * hpread.c (hpread_pxdb_needed): Call memset after alloca.
4876 (hpread_read_struct_type): Likewise.
4877
4878 2004-06-01 Andrew Cagney <cagney@gnu.org>
4879
4880 * mi/mi-cmd-env.c (env_execute_cli_command): Use xstrprintf
4881 instead of xasprintf.
4882 * mi/mi-main.c (mi_error_last_message, mi_cmd_exec_interrupt)
4883 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
4884 (mi_cmd_data_list_register_names)
4885 (mi_cmd_data_list_changed_registers)
4886 (mi_cmd_data_list_register_values)
4887 (get_register, mi_cmd_data_write_register_values)
4888 (mi_cmd_data_write_register_values)
4889 (mi_cmd_data_assign, mi_cmd_data_evaluate_expression)
4890 (mi_cmd_target_download, mi_cmd_target_select)
4891 (mi_cmd_data_read_memory, mi_cmd_data_write_memory)
4892 (mi_execute_cli_command, mi_execute_async_cli_command)
4893 (mi_execute_async_cli_command): Ditto.
4894 * mi/mi-interp.c (mi_cmd_interpreter_exec) Ditto.
4895 * mi/mi-cmd-var.c (mi_cmd_var_create): Ditto.
4896
4897 * mi/mi-cmds.h (mi_error_last_message): Delete declaration.
4898 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call
4899 error_last_message instead of mi_error_last_message.
4900 * mi/mi-main.c (mi_error_last_message): Delete function.
4901
4902 * mi/mi-main.c (mi_cmd_data_read_memory): Add missing return for
4903 "invalid number of columns" error. Delete redundant "out of
4904 memory" check.
4905
4906 2004-05-31 Mark Kettenis <kettenis@gnu.org>
4907
4908 * i386bsd-nat.c: Don't include <sys/procfs.h>.
4909 (gregset_t, fpregset_t): Remove typedefs.
4910 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Remove macros.
4911 (REG_OFFSET): Rename argument.
4912 (i386bsd_r_reg_offset): Rename from reg_offset.
4913 (REG_ADDR): Remove macro.
4914 (cannot_fetch_register, supply_gregset, fill_gregset): Remove
4915 functions.
4916 (i386bsd_supply_gregset, i386bsd_collect_gregset): New functions.
4917 (fetch_inferior_registers): Use `struct reg' and `struct fpreg'
4918 instead of gregset_t and fpregset_t. Use i386bsd_supply_gregset
4919 instead of supply_gregset.
4920 (store_inferior_registers): Use `struct reg' and `struct fpreg'
4921 instead of gregset_t and fpregset_t. Use i386bsd_collect_gregset
4922 instead of fill_gregset.
4923 (register_u_addr): Use i386_r_reg_offset instead of REG_ADDR.
4924
4925 * i386bsd-nat.c: Don't include "gregset.h".
4926 (supply_gregset, fill_gregset): Make static.
4927 (supply_fpregset, fill_fpregset): Remove.
4928 * Makefile.in (i386bsd-nat.o): Update dependencies.
4929
4930 2004-05-30 Mark Kettenis <kettenis@gnu.org>
4931
4932 * fbsd-proc.c: Include "regcache.h", "regset.h" and
4933 "gdb_assert.h". Con't include "gregset.h".
4934 (fbsd_make_corefile_notes): Use regset-based core file support
4935 instead off fill_gregset and fill_fpregset.
4936 * Makefile.in (fbsd-proc.o): Update dependencies.
4937
4938 * m88k-tdep.c (m88k_analyze_prologue): Fix handling of branch
4939 instructions.
4940 (m88k_frame_prev_register): Simplify code a bit.
4941
4942 * amd64-tdep.c (amd64_supply_fpregset): Adjust comment.
4943 (amd64_collect_fpregset): New function.
4944 (amd64_regset_from_core_section): Use amd64_collect_fpregset.
4945
4946 * hppa-tdep.h (hppa_regnum): Add HPPA_R31_REGNUM.
4947
4948 * i386-tdep.c (i386_supply_gregset): Adjust comment.
4949 (i386_collect_gregset): New function.
4950 (i386_supply_fpregset): Adjust comment.
4951 (i386_collect_fpregset): New function.
4952 (i386_regset_from_core_section): Use i386_collect_gregset and
4953 i386_collect_fpregset.
4954
4955 * hppa-tdep.c (hppa_frame_prev_register_helper): Reimplement to
4956 handle VALUEP being null.
4957
4958 * regset.h (collect_regset_ftype): Unconstify fourth argument.
4959
4960 2004-05-29 Mark Kettenis <kettenis@gnu.org>
4961
4962 * MAINTAINERS: Undelete m88k. Add myself as maintainer.
4963
4964 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Adjust for new
4965 assembler in OpenBSD 3.5-current.
4966 (amd64obsd_sigcontext_addr): Likewise.
4967
4968 2004-05-28 Jim Blandy <jimb@redhat.com>
4969
4970 * rs6000-tdep.c: Use the modern gdbarch methods for handling the
4971 register set, so our regcache isn't declared "legacy" and our E500
4972 pseudoregister read and write functions aren't ignored.
4973 (rs6000_register_byte, rs6000_register_raw_size,
4974 rs6000_register_virtual_type, rs6000_register_convertible,
4975 rs6000_register_convert_to_virtual,
4976 rs6000_register_convert_to_raw): Deleted.
4977 (rs6000_register_type, rs6000_convert_register_p,
4978 rs6000_register_to_value, rs6000_value_to_register): New
4979 functions.
4980 (rs6000_gdbarch_init): Don't register
4981 gdbarch_deprecated_register_size,
4982 gdbarch_deprecated_register_bytes,
4983 gdbarch_deprecated_register_byte,
4984 gdbarch_deprecated_register_raw_size,
4985 gdbarch_deprecated_register_virtual_type,
4986 gdbarch_deprecated_register_convertible,
4987 gdbarch_deprecated_register_convert_to_virtual, or
4988 gdbarch_deprecated_register_convert_to_raw methods. Instead,
4989 register gdbarch_register_type, gdbarch_convert_register_p,
4990 gdbarch_register_to_value, and gdbarch_value_to_register methods.
4991
4992 2004-05-26 Jim Blandy <jimb@redhat.com>
4993
4994 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): Deleted.
4995 (rs6000_stab_reg_to_regnum, rs6000_dwarf2_reg_to_regnum): New
4996 functions, updated to match the register numberings used in GCC.
4997 (rs6000_gdbarch_init): Register rs6000_stab_reg_to_regnum and
4998 rs6000_dwarf2_reg_to_regnum as register number conversions
4999 functions for STABS and Dwarf2.
5000
5001 2004-05-26 Randolph Chung <tausq@debian.org>
5002
5003 * infttrace.h (target_waitkind): Forward declare type instead of pulling
5004 in header file.
5005
5006 2004-05-25 Joel Brobecker <brobecker@gnat.com>
5007
5008 * NEWS: Document new "start" command.
5009
5010 2004-05-25 Randolph Chung <tausq@debian.org>
5011
5012 * hppa-linux-tdep.c (hppa_linux_init_abi): sizeof(long double) == 8 on
5013 hppa-linux.
5014
5015 2004-05-25 Randolph Chung <tausq@debian.org>
5016
5017 * hppa-hpux-tdep.c (offsetof): Define.
5018 (hppa_hpux_pc_in_sigtramp, hppa32_hpux_frame_saved_pc_in_sigtramp)
5019 (hppa32_hpux_frame_base_before_sigtramp)
5020 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
5021 (hppa64_hpux_frame_saved_pc_in_sigtramp)
5022 (hppa64_hpux_frame_base_before_sigtramp)
5023 (hppa64_hpux_frame_find_saved_regs_in_sigtramp): Remove unused
5024 functions.
5025 (struct hppa_hpux_sigtramp_unwind_cache, hppa_hpux_tramp_reg)
5026 (hppa_hpux_sigtramp_frame_unwind_cache)
5027 (hppa_hpux_sigtramp_frame_this_id)
5028 (hppa_hpux_sigtramp_frame_prev_register)
5029 (hppa_hpux_sigtramp_frame_unwind)
5030 (hppa_hpux_sigtramp_unwind_sniffer): New signal trampoline unwinder.
5031 (hppa_hpux_init_abi): Register sigtramp unwinder.
5032 * Makefile.in (hppa-hpux-tdep.o): Update dependencies.
5033
5034 2004-05-25 Randolph Chung <tausq@debian.org>
5035
5036 * hppa-tdep.c (hppa_fallback_frame_cache): Handle stack adjustment,
5037 and multiple stack unwinds.
5038 (hppa_stub_unwind_sniffer): Handle unwind from pc == 0.
5039
5040 2004-05-25 Andrew Cagney <cagney@gnu.org>
5041
5042 * symfile.h (symbol_file_add_from_memory): Delete declaration.
5043 * symfile-mem.h: Delete file.
5044 * symfile-mem.c: Do not include "symfile-mem.h".
5045 (symbol_file_add_from_memory): Make static. Use "struct bfd" and
5046 "struct bfd_section". When an error do not bother returning NULL.
5047 (add_symbol_file_from_memory_command): Use "struct bfd" and
5048 "struct bfd_section".
5049 * Makefile.in (symfile_mem_h): Delete.
5050 (symfile-mem.o): Update dependencies.
5051
5052 2004-05-25 Nick Roberts <nickrob@gnu.org>
5053
5054 * gdb-mi.el: New file.
5055
5056 2004-05-25 Andrew Cagney <cagney@gnu.org>
5057
5058 * inftarg.c: Include "observer.h".
5059 (child_attach, child_create_inferior): Notify inferior_created.
5060 * corelow.c: Include "observer.h".
5061 (core_open): Notify inferior_created.
5062 * Makefile.in (inftarg.o, corelow.o): Update dependencies.
5063
5064 2004-05-25 Andrew Cagney <cagney@gnu.org>
5065
5066 * target.h (struct target_ops): Add from_tty to
5067 to_create_inferior.
5068 (target_create_inferior, find_default_create_inferior): Update.
5069 * infcmd.c (run_command): Update.
5070 * wince.c (child_create_inferior): Update.
5071 * win32-nat.c (child_create_inferior): Update.
5072 * uw-thread.c (uw_thread_create_inferior): Update.
5073 * thread-db.c (thread_db_create_inferior): Update.
5074 * target.c (debug_to_create_inferior)
5075 (find_default_create_inferior): Update.
5076 (maybe_kill_then_create_inferior): Update.
5077 * sol-thread.c (sol_thread_create_inferior): Update.
5078 * remote.c (extended_remote_async_create_inferior)
5079 (extended_remote_create_inferior): Update.
5080 * remote-vx.c (vx_create_inferior): Update.
5081 * remote-st.c (st2000_create_inferior): Update.
5082 * remote-sim.c (gdbsim_create_inferior): Update.
5083 * remote-sds.c (sds_create_inferior): Update.
5084 * remote-rdp.c (remote_rdp_create_inferior): Update.
5085 * remote-rdi.c (arm_rdi_create_inferior): Update.
5086 * remote-m32r-sdi.c (m32r_create_inferior): Update.
5087 * remote-e7000.c (e7000_create_inferior): Update.
5088 * procfs.c (procfs_create_inferior): Update.
5089 * ocd.c (ocd_create_inferior): Update.
5090 * ocd.h (ocd_create_inferior): Update.
5091 * nto-procfs.c (procfs_create_inferior): Update.
5092 * monitor.c (monitor_create_inferior): Update.
5093 * lin-lwp.c (lin_lwp_create_inferior): Update.
5094 * inftarg.c (child_create_inferior): Update.
5095 * hpux-thread.c (hpux_thread_create_inferior): Update.
5096 * gnu-nat.c (gnu_create_inferior): Update.
5097
5098 2004-05-25 Andrew Cagney <cagney@gnu.com>
5099
5100 * MAINTAINERS: Update e-mail address.
5101
5102 2004-05-24 Randolph Chung <tausq@debian.org>
5103
5104 * thread.c (info_threads_command, thread_apply_all_command)
5105 (thread_apply_command, thread_command, do_captured_thread_select):
5106 Remove HPUXHPPA-specific code.
5107
5108 2004-05-24 Randolph Chung <tausq@debian.org>
5109
5110 * hppa-tdep.c (SR4EXPORT_LDIL_OFFSET, SR4EXPORT_LDO_OFFSET): Remove
5111 unused symbols.
5112 * hppa-tdep.h (HPPA_INSTRUCTION_SIZE): Remove, since there are no more
5113 references.
5114
5115 2004-05-24 Joel Brobecker <brobecker@gnat.com>
5116
5117 * infcmd.c (kill_if_already_running): New function, extracted
5118 from run_command().
5119 (run_command): Replace extracted code by call to
5120 kill_if_already_running().
5121 (start_command): New function.
5122 (_initialize_infcmd): Add "start" command.
5123
5124 2004-05-24 Mark Kettenis <kettenis@gnu.org>
5125
5126 Add OpenBSD/m88k support.
5127 * NEWS (New native configurations): Mention OpenBSD/m88k.
5128 * m88k-tdep.c, m88k-tdep.h, m88kbsd-nat.c, config/m88k/nm-obsd.h,
5129 config/m88k/obsd.mh, config/m88k/obsd.mt: New files.
5130 * Makefile.in (m88k_tdep_h): New variable.
5131 (ALLDEPFILES): Add m88k-tdep.c and m88kbsd-nat.c.
5132 (m88kbsd-nat.o, m88k-tdep.o): New dependencies.
5133 * configure.host: Add m88*-*-openbsd*.
5134 * configure.tgt: Add m88*-*-openbsd*.
5135
5136 2004-05-24 Jim Blandy <jimb@redhat.com>
5137
5138 * MAINTAINERS (tracing bytecode stuff): Allow global maintainers
5139 to approve changes.
5140
5141 2004-05-24 Kevin Buettner <kevinb@redhat.com>
5142
5143 * symtab.c (fixup_section): Search section table when lookup by
5144 name fails.
5145
5146 2004-05-24 Randolph Chung <tausq@debian.org>
5147
5148 * hppa-tdep.c: Fix handling of 8-byte structures; they should not
5149 be "small_struct".
5150
5151 2004-05-24 Mark Kettenis <kettenis@gnu.org>
5152
5153 * m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct
5154 register number in regcache_raw_collect call.
5155 (m68kbsd_collect_fpregset): Likewise.
5156 * vaxbsd-nat.c (vaxbsd_collect_gregset): Likewise.
5157
5158 * regset.h (struct regset): Add back `regset' member.
5159
5160 2004-05-23 Mark Kettenis <kettenis@gnu.org>
5161
5162 * configure.in: Check for td_pcb in `struct thread'.
5163 * configure, config.in: Regenerated.
5164
5165 * dpx2-nat.c: Remove file.
5166 * Makefile.in (ALLDEPFILES): Remove dpx2-nat.c.
5167 (dpx2-nat.o): Remove dependencies.
5168
5169 * amd64obsd-nat.c: Include "gdbcore.h", "regcache.h",
5170 <sys/types.h>, <machine/frame.h>, <machine/pcb.h> and "bsd-kvm.h".
5171 (amd64obsd_supply_pcb): New function.
5172 (_initialize_amd64obsd_nat): Enable libkvm interface.
5173 * Makefile.in (amd64obsd-nat.o): Update dependencies.
5174 * config/i386/obsd64.mh (NATDEPFILES): Add bsd-kvm.o
5175 (LOADLIBES): New variable.
5176
5177 * sparcnbsd-nat.c: Include "gdbcore.h", "regcache.h",
5178 <sys/types.h>, <machine/pcb.h> and "bsd-kvm.h".
5179 (sparc32nbsd_supply_pcb): New function.
5180 (_initialize_sparcnbsd_nat): Enable libkvm interface.
5181 * Makefile.in (sparcnbsd-nat.o): Update dependencies.
5182 * config/sparc/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
5183 (LOADLIBES): New variable.
5184
5185 2004-05-22 Mark Kettenis <kettenis@gnu.org>
5186
5187 * bsd-kvm.c, bsd-kvm.h: New files.
5188 * i386fbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
5189 "bsd-kvm.h".
5190 (i386fbsd_supply_pcb): New function.
5191 * Makefile.in (ALLDEPFILES): Add bsd-kvm.c.
5192 (i386fbsd-nat.o): Update dependencies.
5193 (bsd_kvm_h): New variable.
5194 (bsd-kvm.o): New dependency.
5195 * config/i386/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
5196 (LOADLIBES): New variable.
5197
5198 * regset.c: Tweak comment.
5199 (regset_alloc): Remove descr argument. Use GDBARCH_OBSTACK_ZALLOC
5200 macro.
5201 * regset.h: Update copyright year.
5202 (struct regset): Remove `descr' member, add `gdbarch' member.
5203 (regset_alloc): Adjust prototype and comment.
5204 * i386-tdep.c (i386_supply_gregset): Get TDEP from REGSET->arch.
5205 (i386_supply_fpregset): Likewise.
5206 (i386_regset_from_core_section): Update call to regset_alloc.
5207 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Get TDEP from
5208 REGSET->arch.
5209 (i386obsd_aout_regset_from_core_section): Update call to
5210 regset_alloc.
5211 * i386nbsd-tdep.c (i386nbsd_aout_supply_regset): Get TDEP from
5212 REGSET->arch.
5213 (i386nbsd_aout_regset_from_core_section): Update call to
5214 regset_alloc.
5215 * amd64-tdep.c (amd64_supply_fpregset): Get TDEP from
5216 REGSET->arch.
5217 (amd64_regset_from_core_section): Update call to regset_alloc.
5218 * amd64obsd-tdep.c (amd64obsd_supply_regset): Get TDEP from
5219 REGSET->arch.
5220 (amd64obsd_regset_from_core_section): Update call to regset_alloc.
5221 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Directly pass
5222 &sparc32nbsd_gregset in sparc32_supply_gregset call.
5223 (sparc32nbsd_init_abi): Update call to regset_alloc.
5224 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Directly pass
5225 &sparc64obsd_core_gregset in sparc64_supply_gregset call.
5226 (sparc64obsd_init_abi): Update call to regset_alloc.
5227 * sparc64nbsd-tdep.c (sparc64nbsd_supply_gregset): Directly pass
5228 &sparc64nbsd_gregset in sparc64_supply_gregset call.
5229 (sparc64nbsd_init_abi): Update call to regset_alloc.
5230 * sparc64fbsd-tdep.c (sparc64fbsd_supply_gregset): Directly pass
5231 &sparc64fbsd_gregset in sparc64_supply_gregset call.
5232 (sparc64fbsd_init_abi): Update call to regset_alloc.
5233
5234 2004-05-22 Jim Blandy <jimb@redhat.com>
5235
5236 * ppc-tdep.h (spe_register_p): New declaration.
5237 (struct gdbarch_tdep): New members: ppc_acc_regnum and
5238 ppc_spefscr_regnum.
5239 * rs6000-tdep.c (spe_register_p): New function.
5240 (rs6000_dwarf2_stab_reg_to_regnum): Recognize numbers for acc and
5241 spefscr.
5242 (rs6000_gdbarch_init): Initialize the new members of the tdep
5243 structure.
5244
5245 2004-05-21 Jim Blandy <jimb@redhat.com>
5246
5247 * ppc-linux-nat.c (fetch_register): Move code back to be next
5248 to the comment that describes it. (Moved code, instead of
5249 comment, for symmetry with store_register.)
5250
5251 Allocate regset structures in the gdbarch's obstack, not using
5252 xmalloc.
5253 * regset.c (regset_alloc): Renamed from regset_xmalloc.
5254 Add 'arch' argument. Allocate the regset on arch's obstack, not
5255 using xmalloc.
5256 * regset.h (regset_alloc): Update declaration.
5257 * am64-tdep.c (amd64_regset_from_core_section): Update call; pass
5258 gdbarch argument.
5259 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
5260 * i386-tdep.c (i386_regset_from_core_section): Same.
5261 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
5262 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
5263 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
5264 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
5265 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
5266 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
5267
5268 2004-05-21 Joel Brobecker <brobecker@gnat.com>
5269
5270 * config/djgpp/fnchange.lst: Undo previous change, was useless.
5271
5272 2004-05-21 Jim Blandy <jimb@redhat.com>
5273
5274 * dwarf2expr.c (execute_stack_op): Add 'break' statements after
5275 cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
5276
5277 2004-05-20 Jim Blandy <jimb@redhat.com>
5278
5279 * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
5280
5281 2004-05-20 Mark Kettenis <kettenis@gnu.org>
5282
5283 * regset.h: Make prototype const-correct.
5284 * regset.c (regset_xmalloc): Make const-correct.
5285
5286 2004-05-20 Paul N. Hilfinger <hilfinger@gnat.com>
5287
5288 * symtab.h (SYMBOL_SEARCH_NAME): New definition.
5289 (SYMBOL_MATCHES_SEARCH_NAME): New definition.
5290 (symbol_search_name): Declare.
5291
5292 * dictionary.c (iter_name_first_hashed): Match on SYMBOL_SEARCH_NAME.
5293 (iter_name_next_hashed): Ditto.
5294 (iter_name_next_linear): Ditto.
5295 (insert_symbol_hashed): Hash on SYMBOL_SEARCH_NAME.
5296
5297 * symtab.c (lookup_partial_symbol): Assume symbols ordered by
5298 search name, using SYMBOL_SEARCH_NAME and SYMBOL_MATCHES_SEARCH_NAME.
5299 (symbol_search_name): New function.
5300
5301 * symfile.c (compare_psymbols): Order by SYMBOL_SEARCH_NAME.
5302
5303 * minsyms.c (build_minimal_symbol_hash_tables): Change
5304 test for adding to demangled hash table to check for difference
5305 between SYMBOL_SEARCH_NAME and SYMBOL_LINKAGE_NAME.
5306
5307 2004-05-19 Jim Blandy <jimb@redhat.com>
5308
5309 Use a constructor function to create regset structures.
5310 * regset.h (supply_regset_ftype, collect_regset_ftype): New typedefs.
5311 (struct regset): Use supply_regset_ftype. Add new
5312 'collect_regset' member.
5313 (regset_xmalloc): New declaration.
5314 * regset.c: New file.
5315 * am64-tdep.c (amd64_regset_from_core_section): Use
5316 regset_xmalloc to construct regset structures.
5317 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
5318 * i386-tdep.c (i386_regset_from_core_section): Same.
5319 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
5320 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
5321 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
5322 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
5323 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
5324 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
5325 * Makefile.in (COMMON_OBS): Add regset.o.
5326 (regset.o): New rule.
5327
5328 2004-05-19 Joel Brobecker <brobecker@gnat.com>
5329
5330 * config/djgpp/fnchange.lst: Add entries for pthread_cond_wait.exp
5331 and pthread_cond_wait.c.
5332
5333 2004-05-18 Jim Blandy <jimb@redhat.com>
5334
5335 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize tdep fields
5336 before the mach-specific switch, and then let the individual cases
5337 override the defaults, rather than leaving them uninitialized
5338 until the switch and then setting them in each case.
5339
5340 2004-05-18 Randolph Chung <tausq@debian.org>
5341
5342 * hppa-tdep.c (hppa_frame_cache): Check for validity of r31 for
5343 millicode functions.
5344
5345 2004-05-18 Randolph Chung <tausq@debian.org>
5346
5347 * somsolib.c (som_solib_remove_inferior_hook): Make all the size
5348 references to dld_flags_buffer consistent.
5349
5350 2004-05-18 Randolph Chung <tausq@debian.org>
5351
5352 * hppa-tdep.c (hppa_frame_cache): If a frame pointer is available, use
5353 it for unwinding the stack.
5354
5355 2004-05-18 Randolph Chung <tausq@debian.org>
5356
5357 * config/pa/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE)
5358 Undefine these so we can overide them using gdbarch.
5359
5360 2004-05-18 Randolph Chung <tausq@debian.org>
5361
5362 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't do export stub
5363 handling for 64-bit HPUX (elf).
5364
5365 2004-05-18 Daniel Jacobowitz <dan@debian.org>
5366
5367 * alpha-tdep.c (alpha_gdbarch_init): Use LL suffix for large
5368 constants.
5369 * amd64-tdep.c (amd64_skip_prologue): Likewise.
5370 * ia64-tdep.c (examine_prologue): Likewise.
5371 * ns32k-tdep.c (ns32k_fix_call_dummy): Remove unused function.
5372 * v850-tdep.c (v850_fix_call_dummy): Likewise.
5373
5374 2004-05-18 Mark Kettenis <kettenis@gnu.org>
5375
5376 * vax-tdep.c (vax_return_value): Implement
5377 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5378
5379 2004-05-17 Mark Kettenis <kettenis@gnu.org>
5380
5381 * vax-tdep.c (vax_return_value): Fix typo.
5382
5383 2004-05-17 Andrew Cagney <cagney@redhat.com>
5384
5385 * MAINTAINERS: Mark Salter was also responsible for
5386 testsuite/config/
5387
5388 * NEWS: Mention signal fixes.
5389
5390 2004-05-17 Randolph Chung <tausq@debian.org>
5391
5392 * hppa-tdep.c (hppa_stub_frame_unwind_cache): For HPUX stub unwinding,
5393 check to see if we are unwinding an export stub. Export stubs clobber
5394 the %rp in the call path and stores the original rp in a stack slot.
5395
5396 2004-05-17 Jim Blandy <jimb@redhat.com>
5397
5398 * MAINTAINERS: Update address for J.T. Conklin.
5399
5400 2004-05-17 Randolph Chung <tausq@debian.org>
5401
5402 * hppa-tdep.c: Remove superfluous #include's.
5403 * Makefile.in (hppa-tdep.o): Update dependencies.
5404
5405 2004-05-17 Randolph Chung <tausq@debian.org>
5406
5407 * hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
5408 (THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
5409 (unwind_command, hppa_alignof, prologue_inst_adjust_sp)
5410 (is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
5411 (read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
5412 Remove static function declarations.
5413
5414 2004-05-17 Mark Kettenis <kettenis@gnu.org>
5415
5416 * alphabsd-nat.c: Update copyright year.
5417 (getregs_supplies): Replace PC_REGNUM with ALPHA_PC_REGNUM.
5418
5419 * m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM
5420 and M68K_A2_REGNUM.
5421
5422 * m68k-tdep.c (m68k_svr4_return_value): Implement
5423 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5424
5425 2004-05-16 Mark Kettenis <kettenis@gnu.org>
5426
5427 * sol-thread.c Update copyright year. Fix various coding
5428 standards violations. Tweak a few comments.
5429 (td_err_string, td_state_string, thread_to_lwp, lwp_to_thread):
5430 Delete prototypes.
5431
5432 2004-05-15 Randolph Chung <tausq@debian.org>
5433
5434 * hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs
5435 as pointer instead of array reference since HPUX compiler does
5436 not accept unsized array arguments.
5437 * somsolib.c (dld_flags_buffer): Use constant array size.
5438
5439 2004-05-15 Mark Kettenis <kettenis@gnu.org>
5440
5441 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimal
5442 offset with decimal offset.
5443 (amd64obsd_sigcontext_addr): Return correct address for entire
5444 signal trampoline.
5445
5446 * vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
5447 instead of get_frame_base.
5448
5449 * i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.
5450 (fill_gregset): Use regcache_raw_collect.
5451
5452 * config/djgpp/fnchange.lst: Add entries for ppcobsd-nat.c and
5453 ppcobsd-tdep.c.
5454
5455 * config/sparc/tm-nbsd64.h: Remove file.
5456 * config/tm-sunos.h: Remove file.
5457
5458 2004-05-15 Joel Brobecker <brobecker@gnat.com>
5459
5460 * rs6000-tdep.c (store_param_on_stack_p): New function,
5461 an improved version of some code extracted from skip_prologue().
5462 (skip_prologue): Use store_param_on_stack_p() to detect
5463 instructions saving a parameter on the stack. Detect when r0
5464 is used to save a parameter.
5465 Do not mark "li rx, SIMM" instructions as part of the prologue,
5466 unless the following instruction is also part of the prologue.
5467
5468 2004-05-14 Andrew Cagney <cagney@redhat.com>
5469
5470 * infrun.c (handle_inferior_event): Simplify
5471 STEP_OVER_UNDEBUGGABLE.
5472
5473 * infrun.c (handle_step_into_function): Delete function.
5474 (handle_inferior_event): Inline calls to
5475 handle_step_into_function.
5476
5477 2004-05-14 Jerome Guitton <guitton@gnat.com>
5478
5479 * rs6000-nat.c: Fix a comment.
5480
5481 2004-05-12 David Anderson <davea@sgi.com>
5482
5483 Committed by Jim Blandy <jimb@redhat.com>:
5484 * regcache.c (struct regcache_descr): fix comment spelling.
5485
5486 2004-05-13 J. Brobecker <brobecker@gnat.com>
5487
5488 * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
5489 Fixes a link link failure.
5490
5491 2004-05-13 J. Brobecker <brobecker@gnat.com>
5492
5493 * aix-thread.c (store_regs_kernel_thread): Fix a little obvious
5494 error that was causing the build to fail.
5495
5496 2004-05-13 J. Brobecker <brobecker@gnat.com>
5497
5498 * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.
5499 * Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
5500
5501 2004-05-13 Andrew Cagney <cagney@redhat.com>
5502
5503 * infrun.c (handle_inferior_event): Check for
5504 STEP_OVER_UNDEBUGGABLE after signal trampolines and function
5505 calls. Update comments.
5506
5507 2004-05-13 Jim Blandy <jimb@redhat.com>
5508
5509 * aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)
5510 (fetch_regs_user_thread, fetch_regs_kernel_thread)
5511 (store_regs_user_thread, store_regs_kernel_thread): Use
5512 ppc_num_gprs and ppc_num_fprs instead of '32' and '31'.
5513 * ppc-linux-nat.c (fill_gregset): Same.
5514 * ppc-linux-tdep.c (ppc_linux_supply_gregset)
5515 (ppc_linux_sigtramp_cache): Same.
5516 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg)
5517 (ppcnbsd_sigtramp_cache_init): Same.
5518 * rs6000-nat.c (fetch_core_registers): Same.
5519 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset)
5520 (rs6000_frame_cache): Same.
5521
5522 * aix-thread.c (supply_gprs64, fetch_regs_user_thread)
5523 (store_regs_user_thread): Use tdep->ppc_gp0_regnum, instead
5524 of assuming that the gprs are numbered starting with zero.
5525 * ppc-linux-nat.c (fill_gregset): Same.
5526 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Same.
5527 * ppcnbsd-nat.c (getregs_supplies): Same.
5528 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg): Same.
5529 * rs6000-nat.c (fetch_core_registers): Same.
5530 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset): Same.
5531
5532 2004-05-07 Michael Snyder <msnyder@redhat.com>
5533
5534 * tracepoint.c (scope_info): Add handling for LOC_COMPUTED,
5535 LOC_COMPUTED_ARG, and LOC_INDIRECT.
5536
5537 2004-05-13 Andrew Cagney <cagney@redhat.com>
5538
5539 * infrun.c (handle_inferior_event): Use frame_unwind_id.
5540
5541 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
5542
5543 * dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust
5544 base_address for shared libraries.
5545
5546 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
5547
5548 * MAINTAINERS (write after approval): Add myself.
5549
5550 2004-05-13 Ulrich Weigand <uweigand@de.ibm.com>
5551
5552 * breakpoint.c (bpstat_stop_status): Add new argument
5553 STOPPED_BY_WATCHPOINT. Use it instead of testing
5554 target_stopped_data_address agaist 0 to check whether
5555 or not we stopped due to a hardware watchpoint.
5556 * breakpoint.h (bpstat_stop_status): Adapt prototype.
5557 * infrun.c (handle_inferior_event): Call bpstat_stop_status
5558 with new argument.
5559
5560 2004-05-12 Jim Blandy <jimb@redhat.com>
5561
5562 * configure.in: When checking whether we should use the -bbigtoc
5563 option, don't forget to restore the original value of LDFLAGS.
5564 * configure: Regenerated.
5565
5566 2004-05-12 Andrew Cagney <cagney@redhat.com>
5567
5568 * thread.c (load_infrun_state): Delete step_sp.
5569 * infrun.c (context_switch): Ditto.
5570 * inferior.h (step_sp): Ditto.
5571 * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto.
5572 * gdbthread.h (struct thread_info, save_infrun_state)
5573 (restore_infrun_state): Ditto.
5574
5575 2004-05-12 Ulrich Weigand <uweigand@de.ibm.com>
5576
5577 * MAINTAINERS (write after approval): Add myself.
5578
5579 2004-05-12 Andrew Cagney <cagney@redhat.com>
5580
5581 * infrun.c (adjust_pc_after_break): Rewrite decr logic,
5582 eliminate reference to step_sp.
5583 (struct execution_control_state, init_execution_control_state)
5584 (handle_inferior_event, keep_going): Delete update_step_sp and
5585 step_sp.
5586 * infcmd.c (step_sp): Note that variable is unused.
5587
5588 2004-05-11 Andrew Cagney <cagney@redhat.com>
5589
5590 * infrun.c (step_over_function): Delete function.
5591 (handle_step_into_function): Use insert_step_resume_breakpoint.
5592 (insert_step_resume_breakpoint): Fix assertion.
5593
5594 2004-05-11 Nick Roberts <nickrob@gnu.org>
5595
5596 * utils.c (defaulted_query): Just use the normal query input type
5597 when printing the annotations.
5598
5599 2004-05-11 Andrew Cagney <cagney@redhat.com>
5600
5601 * infrun.c (handle_inferior_event): Simplify code handling
5602 step-into or return-from a signal trampoline.
5603
5604 2004-05-11 Andrew Cagney <cagney@redhat.com>
5605
5606 * ppcnbsd-tdep.c: Include "gdb_assert.h".
5607 * Makefile.in (ppcnbsd-tdep.o): Update dependencies.
5608
5609 2004-05-10 Jim Blandy <jimb@redhat.com>
5610
5611 * ppc-bdm.c (bdm_ppc_fetch_registers): Replace utterly broken code
5612 with a call to internal_error.
5613
5614 * ppc-tdep.h (struct gdbarch_tdep): Change definition of
5615 ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
5616 processor variant lacks those registers.
5617 (ppc_floating_point_unit_p): Change description to make it clear
5618 that this returns info about the ISA, not the ABI.
5619 * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
5620 return true or false by checking tdep->ppc_fp0_regnum and
5621 tdep->ppc_fpscr_regnum. The original code replicated the BFD
5622 arch/mach switching done in rs6000_gdbarch_init; it's better to
5623 keep that logic there, and just check the results here.
5624 (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
5625 tdep->ppc_fpscr_regnum to -1 to indicate that we have no
5626 floating-point registers.
5627 (ppc_supply_fpregset, ppc_collect_fpregset)
5628 (rs6000_push_dummy_call, rs6000_extract_return_value)
5629 (rs6000_store_return_value): Assert that we have floating-point
5630 registers.
5631 (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
5632 (rs6000_frame_cache): Don't note the locations at which
5633 floating-point registers were saved if we have no fprs.
5634 * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
5635 registers.
5636 (fetch_regs_user_thread, fetch_regs_kernel_thread)
5637 (store_regs_user_thread, store_regs_kernel_thread): Only call
5638 supply_fprs / fill_fprs if we actually have floating-point
5639 registers.
5640 (special_register_p): Check ppc_fpscr_regnum before matching
5641 against it.
5642 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
5643 supply / collect fpscr if we don't have it.
5644 * ppc-bdm.c: #include "gdb_assert.h".
5645 (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
5646 have floating-point registers, since I can't test this code on
5647 FP-free systems to adapt it.
5648 * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
5649 fpscr and floating point register numbers if they don't exist.
5650 (fetch_register): Assert that we have floating-point registers
5651 before we reach the code that handles them.
5652 (store_register): Same. And use tdep instead of calling
5653 gdbarch_tdep again.
5654 (fill_fpregset): Don't try to collect FP registers and fpscr if we
5655 don't have them.
5656 (ppc_linux_sigtramp_cache): Don't record the saved locations of
5657 fprs and fpscr if we don't have them.
5658 (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
5659 don't have them.
5660 * ppcnbsd-nat.c: #include "gdb_assert.h".
5661 (getfpregs_supplies): Assert that we have floating-point registers.
5662 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
5663 * ppcobsd-tdep.c: #include "gdb_assert.h".
5664 (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
5665 have floating-point registers.
5666 * rs6000-nat.c (regmap): Don't match against the fpscr and
5667 floating point register numbers if they don't exist.
5668 (fetch_inferior_registers, store_inferior_registers,
5669 fetch_core_registers): Only fetch / store / supply the
5670 floating-point registers and the fpscr if we have them.
5671 * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
5672 (ppcobsd-tdep.o): Update dependencies.
5673
5674 2004-05-10 Andrew Cagney <cagney@redhat.com>
5675
5676 * infrun.c (through_sigtramp_breakpoint): Delete variable.
5677 (context_switch): Do not switch through_sigtramp_breakpoint.
5678 * gdbthread.h (save_infrun_state, load_infrun_state)
5679 (struct thread_info): Delete through_sigtramp_breakpoint parameter
5680 and structure member.
5681 * thread.c (load_infrun_state, save_infrun_state): Update.
5682
5683 2004-05-10 Mark Kettenis <kettenis@gnu.org>
5684
5685 * m68kbsd-tdep.c (m68kbsd_elf_init_abi): Call m68k_svr4_init_abi.
5686
5687 2004-05-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
5688
5689 * acinclude.m4: Quote macro names being defined by AC_DEFUN
5690 throughout.
5691 * aclocal.m4: Regenerate.
5692
5693 2004-05-10 Nathan J. Williams <nathanw@wasabisystems.com>
5694
5695 * alphanbsd-tdep.c: Fix include of "gdb_string.h".
5696
5697 2004-05-10 Andrew Cagney <cagney@redhat.com>
5698
5699 * infrun.c (check_sigtramp2): Delete function.
5700 (handle_inferior_event): When single stepping, and taking a
5701 signal, set a breakpoint at the signal return address. Delete
5702 redundant calls to check_sigtramp2.
5703 (insert_step_resume_breakpoint): New function.
5704 (through_sigtramp_breakpoint, handle_inferior_event)
5705 (follow_exec, wait_for_inferior, fetch_inferior_event)
5706 (currently_stepping, keep_going): Delete most uses of
5707 through_sigtramp_breakpoint, not that it should be deleted.
5708 (delete_breakpoint_current_contents): Delete function.
5709
5710 2004-05-10 Randolph Chung <tausq@debian.org>
5711
5712 * config/pa/linux.mt (TM_FILE): Use new tm-linux.h for hppa-linux
5713 target.
5714 * config/pa/tm-linux.h: New file.
5715
5716 2004-05-10 Daniel Jacobowitz <drow@mvista.com>
5717
5718 * cli/cli-setshow.c (cmd_show_list): Check for "show" in the middle
5719 of prefixes. Don't print the prefix twice in the CLI.
5720
5721 2004-05-10 Jim Blandy <jimb@redhat.com>
5722
5723 * rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do
5724 collect all the gprs.
5725
5726 * rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error in
5727 loop collecting gprs.
5728
5729 2004-05-09 Andrew Cagney <cagney@redhat.com>
5730
5731 * remote-vx.c (net_step): Delete step-range code.
5732 * remote.c (remote_resume, init_all_packet_configs)
5733 (set_remote_protocol_E_packet_cmd)
5734 (show_remote_protocol_E_packet_cmd)
5735 (remote_protocol_E, show_remote_cmd, _initialize_remote)
5736 (remote_protocol_e, set_remote_protocol_e_packet_cmd)
5737 (show_remote_protocol_e_packet_cmd): Ditto.
5738
5739 2004-05-09 Mark Kettenis <kettenis@gnu.org>
5740
5741 * hppa-tdep.h (enum hppa_regnum): Name enum, add HPPA_R1_REGNUM.
5742
5743 * hppa-tdep.h: Update copyright year.
5744 (struct trad_frame_saved_reg): Add opaque declaration.
5745
5746 * amd64-tdep.c (amd64_return_value): Implement
5747 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5748
5749 * m68k-tdep.c (m68k_convert_register_p, m68k_register_to_value)
5750 (m68k_value_to_register): New functions.
5751 (m68k_gdbarch_init): Set convert_register_p, register_to_value and
5752 value_to_register.
5753
5754 * defs.h (enum return_value_convention): Add
5755 RETURN_VALUE_ABI_RETURNS_ADDRESS and
5756 RETURN_VALUE_ABI_PRESERVES_ADDRESS.
5757 * infcmd.c (legacy_return_value): New function.
5758 (print_return_value): Rwerite to implement
5759 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5760 * values.c (using_struct_return): Check for inequality to
5761 RETURN_VALUE_REGISTER_CONVENTION instead of equality to
5762 RETURN_VALUE_STRUCT_CONVENTION.
5763 * i386-tdep.c (i386_return_value): Implement
5764 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5765
5766 * vax-tdep.c: Tweak comments. Reorder include files. Don't
5767 include "symtab.h", "opcode/vax.h" and "inferior.h".
5768 (vax_skip_prologue): Replace calls to read_memory_integer by calls
5769 to read_memory_unsigned_integer.
5770 (vax_gdbarch_init): Reorder.
5771 (_initialize_vax_tdep): Spell out prototype.
5772 * Makefile.in (vax-tdep.o): Update dependencies.
5773
5774 2004-05-08 Andrew Cagney <cagney@redhat.com>
5775
5776 * infrun.c (resume): Delete call to DO_DEFERRED_STORES.
5777 * target.c (target_detach, target_disconnect): Ditto.
5778
5779 * infcall.c (call_function_by_hand): When no
5780 DEPRECATED_SAVE_DUMMY_FRAME_TOS call generic_save_dummy_frame_tos.
5781 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set
5782 DEPRECATED_SAVE_DUMMY_FRAME_TOS.
5783 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
5784 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
5785
5786 * gdbarch.sh (DEPRECATED_FIX_CALL_DUMMY): Delete.
5787 * gdbarch.h, gdbarch.c: Re-generate.
5788 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
5789 deprecated_fix_call_dummy.
5790 * v850-tdep.c (v850_gdbarch_init): Ditto.
5791 * infcall.c (call_function_by_hand): Do not call
5792 DEPRECATED_FIX_CALL_DUMMY.
5793
5794 * gdbarch.sh (DEPRECATED_CALL_DUMMY_WORDS)
5795 (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Delete.
5796 * gdbarch.h, gdbarch.c: Re-generate.
5797 * arm-linux-tdep.c (arm_linux_call_dummy_words)
5798 (arm_linux_init_abi): Do not set deprecated_call_dummy_words or
5799 deprecated_sizeof_call_dummy_words.
5800 * arm-tdep.c (arm_call_dummy_words, arm_gdbarch_init): Ditto.
5801 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
5802 * v850-tdep.c (v850_gdbarch_init): Ditto.
5803 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
5804 * ns32k-tdep.c (ns32k_call_dummy_words, ns32k_gdbarch_init): Ditto.
5805 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
5806 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
5807 * arch-utils.h (legacy_call_dummy_words)
5808 (legacy_sizeof_call_dummy_words): Delete declarations.
5809 * arch-utils.c (legacy_call_dummy_words)
5810 (legacy_sizeof_call_dummy_words): Delete variables.
5811
5812 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Delete.
5813 * gdbarch.h, gdbarch.c: Re-generate.
5814 * inferior.h (PUSH_DUMMY_FRAME): Delete macro.
5815 * infcall.c (call_function_by_hand): Eliminate call to
5816 DEPRECATED_PUSH_DUMMY_FRAME.
5817 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
5818 push_dummy_frame.
5819 (ns32k_push_dummy_frame): Delete function.
5820
5821 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
5822 deprecated_call_dummy_breakpoint_offset or
5823 deprecated_call_dummy_start_offset.
5824 * dummy-frame.c, arm-tdep.c: Update comments.
5825 * gdbarch.sh (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET)
5826 (DEPRECATED_CALL_DUMMY_START_OFFSET): Delete.
5827 * gdbarch.h, gdbarch.c: Re-generate.
5828
5829 * infcall.c (legacy_push_dummy_code): Delete function.
5830 (push_dummy_code): Delete call.
5831
5832 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete.
5833 * gdbarch.h, gdbarch.c: Re-generate.
5834 * blockframe.c (legacy_frame_chain_valid): Simplify by eliminating
5835 DEPRECATED_USE_GENERIC_DUMMY_FRAMES.
5836 * infcall.c (legacy_push_dummy_code, call_function_by_hand): Ditto.
5837 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Ditto.
5838
5839 * breakpoint.h (deprecated_frame_in_dummy): Delete declaration.
5840 (struct frame_info): Delete opaque declaration.
5841 * breakpoint.c (deprecated_frame_in_dummy): Delete function.
5842 * frame.c (get_frame_type): Delete call.
5843
5844 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
5845 pc_in_call_dummy.
5846 * inferior.h (deprecated_pc_in_call_dummy_on_stack): Delete.
5847 * blockframe.c (deprecated_pc_in_call_dummy_on_stack): Delete.
5848
5849 2004-05-08 Mark Kettenis <kettenis@gnu.org>
5850
5851 * alphanbsd-tdep.c: Include "gdb_string.h".
5852 * armnbsd-tdep.c: Update copyright year.
5853 Include "gdb_string.h".
5854 * Makefile.in (alphanbsd-tdep.o, armnbsd-tdep.o): Update
5855 dependencies.
5856
5857 * delta68-nat.c: Remove file.
5858 * m68k-tdep.c (delta68_in_sigtramp, delta68_frame_args_address)
5859 (delta68_frame_saved_pc, delta68_frame_num_args): Remove functions.
5860 * Makefile.in (ALLDEPFILES): Remove delta68-nat.c.
5861 (delta68-nat.o): Remove dependency.
5862
5863 * m68k-tdep.c (m68k_frameless_function_invocation): Remove
5864 function.
5865 (m68k_gdbarch_init): Don't set
5866 deprecated_frameless_function_invocation.
5867
5868 2004-05-07 Randolph Chung <tausq@debian.org>
5869
5870 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
5871 read_memory_nobpt for code reading when doing frame unwinding.
5872 * hppa-linux-tdep.c (insns_match_pattern): Likewise.
5873
5874 2004-05-07 Randolph Chung <tausq@debian.org>
5875
5876 * hppa-linux-tdep.c (hppa_linux_sigtramp_find_sigcontext): Pass in pc
5877 instead of sp, handle sigaltstack case.
5878 (hppa_linux_sigtramp_frame_unwind_cache): Adjust calls to
5879 hppa_linux_sigtramp_find_sigcontext, and set base to the frame of the
5880 signal handler and not that of the caller.
5881 (hppa_linux_sigtramp_unwind_sniffer): Adjust calls to
5882 hppa_linux_sigtramp_find_sigcontext.
5883
5884 2004-05-07 Randolph Chung <tausq@debian.org>
5885
5886 * Makefile.in (ALLDEPFILES): Add hppa-linux-tdep.c and
5887 hppa-linux-nat.c.
5888 (hppa-linux-tdep.o, hppa-linux-nat.o): Define rules.
5889 * hppa-linux-nat.c (fetch_register, store_register): Define.
5890 (fetch_inferior_registers, store_inferior_registers): Define.
5891 (supply_gregset): Add comment and clean up some unneeded code.
5892 (fill_gregset): Add comment and fix so that it saves registers in
5893 the right place in the gregset.
5894 (fill_fpregset): Fix buffer overrun problem.
5895 * config/pa/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
5896
5897 2004-05-07 Randolph Chung <tausq@debian.org>
5898
5899 * hppa-tdep.c (hppa_frame_prev_register_helper): New function to
5900 do common handling of the pcoqt register.
5901 (hppa_frame_prev_register, hppa_stub_frame_prev_register): Convert
5902 to use helper function.
5903 (hppa_frame_unwind_sniffer): Only use if unwind entry is present.
5904 (hppa_fallback_frame_cache, hppa_fallback_frame_this_id)
5905 (hppa_fallback_frame_prev_register, hppa_fallback_frame_unwind): New
5906 generic fallback unwinder when all else fails.
5907 (hppa_gdbarch_init): Add fallback sniffer.
5908 * hppa-tdep.h (hppa_frame_prev_register_helper): Prototype.
5909 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register): Convert
5910 to use helper function.
5911
5912 2004-05-08 Joel Brobecker <brobecker@gnat.com>
5913
5914 * config/djgpp/fnchange.lst: Add translation rules for
5915 gdb.arch/powerpc-aix-prologue.c and gdb.arch/powerpc-aix-prologue.exp.
5916
5917 2004-05-08 Mark Kettenis <kettenis@gnu.org>
5918
5919 * frame.c (get_prev_frame_1): Work around GCC bug.
5920 * frame.h: Add comment about GCC bug.
5921
5922 2004-05-07 Andrew Cagney <cagney@redhat.com>
5923
5924 * observer.c: Include "commands.h" and "gdbcmd.h".
5925 (observer_debug, _initialize_observer): Add the
5926 command "set/show debug observer".
5927 * observer.sh: When observer debugging, log notify calls.
5928 * Makefile.in (observer.o): Update dependencies.
5929
5930 2004-05-07 Jason Molenda (jmolenda@apple.com)
5931
5932 * cli/cli-decode.c: Fix "SHOW_DOR" comment typeos.
5933
5934 2004-05-07 Jim Blandy <jimb@redhat.com>
5935
5936 * aix-thread.c (fetch_regs_kernel_thread, fill_gprs64,
5937 fill_gprs32, store_regs_kernel_thread): Use tdep->ppc_gp0_regnum
5938 to recognize gpr regnums, instead of assuming that
5939 tdep->ppc_fp0_regnum marks the end of the general-purpose
5940 registers.
5941
5942 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Assert that
5943 the given architecture has floating-point registers.
5944
5945 2004-05-07 Andrew Cagney <cagney@redhat.com>
5946
5947 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Replace with
5948 macro defined to 1.
5949 * gdbarch.h, gdbarch.c: Re-generate.
5950 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
5951 deprecated_use_generic_dummy_frames.
5952
5953 2004-05-07 Brian Ford <ford@vss.fsi.com>
5954
5955 * NEWS: Mention Cygwin DWARF 2 support.
5956
5957 2004-05-07 Andrew Cagney <cagney@redhat.com>
5958
5959 * objfiles.h (struct entry_info): Delete unused fields
5960 deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
5961 * objfiles.c (init_entry_point_info, objfile_relocate): Update.
5962 * mipsread.c (mipscoff_symfile_read): Update.
5963 * mdebugread.c (parse_partial_symbols): Update.
5964 * dwarfread.c (read_file_scope): Update.
5965 * dwarf2read.c (read_file_scope): Update.
5966 * dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
5967 * coffread.c (complete_symtab): Update.
5968
5969 2004-05-07 Mark Kettenis <kettenis@gnu.org>
5970
5971 * infcall.c (_initialize_infcall): Fix typo.
5972
5973 2004-05-07 Andrew Cagney <cagney@redhat.com>
5974
5975 * cli/cli-decode.c (add_setshow_zinteger_cmd): New function.
5976 * command.h (add_setshow_zinteger_cmd): Declare.
5977
5978 2004-05-06 Randolph Chung <tausq@debian.org>
5979
5980 * config/pa/tm-hppa.h (RO_REGNUM, FLAGS_REGNUM, RP_REGNUM)
5981 (HPPA_FP_REGNUM, HPPA_SP_REGNUM, SAR_REGNUM, IPSW_REGNUM)
5982 (PCOQ_HEAD_REGNUM, PCSQ_HEAD_REGNUM, PCOQ_TAIL_REGNUM, PCSQ_TAIL_REGNUM)
5983 (EIEM_REGNUM, IIR_REGNUM, ISR_REGNUM, IOR_REGNUM, SR4_REGNUM)
5984 (RCR_REGNUM, PID0_REGNUM, PID1_REGNUM, PID2_REGNUM, PID3_REGNUM)
5985 (CCR_REGNUM, TR0_REGNUM, CR27_REGNUM, HPPA_FP0_REGNUM, FP4_REGNUM)
5986 (ARG0_REGNUM, ARG1_REGNUM, ARG2_REGNUM, ARG3_REGNUM): Move *_REGNUM
5987 definitions ...
5988 * hppa-tdep.h: ... to here, with HPPA_ prefix.
5989 * Makefile.in (hppah-nat.o): Add $(hppa_tdep_h)
5990 * hppa-hpux-tdep.c (hppa32_hpux_frame_find_saved_regs_in_sig)
5991 (hppa64_hpux_frame_find_saved_regs_in_sig)
5992 (child_get_current_exception_event): Add HPPA_ prefix to *_REGNUM usage.
5993 * hppa-linux-nat.c (GR_REGNUM, TR_REGNUM, greg_map): Likewise.
5994 * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum)
5995 (hppa_linux_target_write_pc, hppa_linux_sigtramp_frame_unwind_cache)
5996 (hppa_linux_sigtramp_frame_prev_register): Likewise.
5997 * hppa-tdep.c (hppa32_return_value, hppa64_return_value)
5998 (hppa32_push_dummy_call, hppa64_push_dummy_call, hppa64_frame_align)
5999 (hppa_target_read_pc, hppa_target_write_pc, hppa_frame_cache)
6000 (hppa_frame_prev_register, hppa_stub_frame_unwind_cache)
6001 (hppa_stub_frame_prev_register, hppa_unwind_dummy_id)
6002 (hppa_skip_permanent_breakpoint, hppa_instruction_nullified)
6003 (hppa32_register_type, hppa_cannot_store_register)
6004 (hppa_fetch_pointer_argument, hppa_pseudo_register_read): Likewise.
6005 * hppah-nat.c (store_inferior_registers, fetch_register): Likewise.
6006 * hpread.c (hpread_process_one_debug_symbol): Likewise.
6007 * pa64solib.c (pa64_solib_have_load_event)
6008 (pa64_solib_have_unload_event, pa64_solib_loaded_library_pathname)
6009 (pa64_solib_unloaded_library_pathname): Likewise.
6010 * somsolib.c (som_solib_have_load_event, som_solib_have_unload_event)
6011 (som_solib_library_pathname): Likewise.
6012
6013 2004-05-05 Jim Ingham <jingham@apple.com>
6014
6015 * breakpoint.c (create_breakpoints): Copy the ignore count and
6016 thread id over from the pended breakpoint to the actual
6017 breakpoint.
6018
6019 2004-05-05 Andrew Cagney <cagney@redhat.com>
6020
6021 * gdbarch.sh (PARM_BOUNDARY): Delete.
6022 gdbarch.h, gdbarch.c: Re-generate.
6023 * valops.c (PARM_BOUNDARY): Delete macro.
6024 (value_push): Delete PARM_BOUNDARY code.
6025 * m68k-tdep.c (m68k_gdbarch_init): Do not set parm_boundary.
6026
6027 2004-05-04 Jim Blandy <jimb@redhat.com>
6028
6029 * ppc-linux-nat.c (fetch_ppc_registers, store_ppc_registers):
6030 Don't assume that the gprs, fprs, and UISA sprs are
6031 contiguous, start at register number zero, and end with fpscr.
6032 Instead, use the numbers from the tdep structure.
6033
6034 * config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
6035 should no longer be used in code specific to the RS6000 and its
6036 derivatives.
6037 * ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
6038 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize
6039 tdep->ppc_fp0_regnum.
6040 (ppc_supply_fpregset, ppc_collect_fpregset)
6041 (rs6000_push_dummy_call, rs6000_extract_return_value)
6042 (rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
6043 (rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
6044 FP0_REGNUM.
6045 * aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
6046 (fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
6047 Same.
6048 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
6049 bdm_ppc_store_registers): Same.
6050 * ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
6051 (store_register, fill_fpregset): Same.
6052 * ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
6053 (ppc_linux_supply_fpregset): Same.
6054 * ppcnbsd-nat.c (getfpregs_supplies): Same.
6055 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
6056 Same.
6057 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call,
6058 do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call,
6059 ppc64_sysv_abi_return_value): Same.
6060 * rs6000-nat.c (regmap, fetch_inferior_registers)
6061 (store_inferior_registers, fetch_core_registers): Same.
6062
6063 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6064
6065 * m68knbsd-nat.c: Remove file.
6066 * m68knbsd-tdep.c: Remove file.
6067 * Makefile.in: (m68knbsd-nat.o, m68knbsd-tdep.o): Remove
6068 dependencies.
6069 * configure.host: Add m68k-*-netbsdelf*.
6070 * configure.tgt (m68k-*-netbsd*): Set gdb_target to nbsd.
6071 * config/m68k/nbsdaout.mh (NATDEPFILES): Add m68kbsd-nat.o,
6072 solib.o and solib-sunos.o. Remove m68knbsd-nat.o, corelow.o.
6073 (XM_FILE): Remove.
6074 * config/m68k/nbsdelf.mh: New file.
6075 * config/m68k/nbsd.mt: New file.
6076 * config/m68k/nbsdaout.mt: Remove file.
6077 * config/m68k/tm-nbsd.h: Don't include <sys/param.h>,
6078 <machine/vmparam.h> and "m68k/tm-m68k.h". Include "solib.h".
6079 (BPT_VECTOR, STACK_END_ADDR): Remove defines.
6080 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Likewise.
6081 (use_struct_convention): Remove prototype.
6082 (USE_STRUCT_CONVENTION): Remove define.
6083 * config/m68k/xm-nbsd.h: Remove file.
6084
6085 2004-05-04 Michael Snyder <msnyder@redhat.com>
6086
6087 * m68k-tdep.c (m68k_gdbarch_init): Default to using
6088 reg_struct_return method (as gcc usually does for cross targets).
6089
6090 2004-05-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
6091
6092 Committed by Andrew Cagney.
6093 * s390-tdep.c (s390_sigtramp_frame_unwind_cache): Account for
6094 alignment padding when accessing ucontext struct members.
6095
6096 2004-05-04 Jim Blandy <jimb@redhat.com>
6097
6098 * config/ppc-tdep.h (struct gdbarch_tdep): Delete
6099 'ppc_gplast_regnum' member.
6100 (ppc_num_gprs): New enum constant.
6101 * ppc-linux-nat.c (ppc_register_u_addr): Use tdep->ppc_gp0_regnum
6102 and ppc_num_gprs instead of tdep->ppc_gplast_regnum.
6103 * rs6000-nat.c (regmap, fetch_inferior_registers,
6104 store_inferior_registers): Same.
6105 * rs6000-tdep.c (e500_pseudo_register_read)
6106 (e500_pseudo_register_write): Same.
6107 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gplast_regnum.
6108
6109 * config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
6110 * ppc-tdep.h (ppc_num_fprs): New enum constant.
6111 * aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
6112 store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
6113 FPLAST_REGNUM.
6114 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
6115 Same.
6116 * ppc-linux-nat.c (ppc_register_u_addr): Same.
6117 * rs6000-nat.c (regmap, fetch_inferior_registers)
6118 (store_inferior_registers): Same.
6119
6120 * aix-thread.c (fill_fprs): Fix off-by-one error comparing regno
6121 with FPLAST_REGNUM.
6122
6123 2004-05-03 Joel Brobecker <brobecker@gnat.com>
6124
6125 * dwarf2read.c (dwarf2_create_include_psymtab): Fix build
6126 failure detected by recent versions of GCC.
6127 (psymtab_to_symtab_1): No longer use the PST_PRIVATE macro
6128 to be consistent with the usage in dwarf2_create_include_psymtab.
6129
6130 2004-05-03 Michael Snyder <msnyder@redhat.com>
6131
6132 * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
6133 (heuristic_proc_start): Whitespace cleanup.
6134
6135 2004-05-04 Mark Kettenis <kettenis@gnu.org>
6136
6137 * sun3-nat.c: Remove file.
6138 * Makefile.in (tm-sun3.h tm-altos.h tm-sun2.h tm-3b1.h): Remove
6139 dependencies.
6140 (ALLDEPFILES): Remove sun3-nat.c.
6141 (sun3-nat.o): Remove dependencies.
6142
6143 * i386-interix-nat.c, i386-interix-tdep.c,
6144 config/i386/nm-interix.h, config/i386/interix.mh,
6145 config/i386/interix.mt: Remove files.
6146 * Makefile.in (i386-interix-nat.o, i386-interix-tdep.o): Remove
6147 dependencies.
6148
6149 2004-05-03 Mark Kettenis <kettenis@gnu.org>
6150
6151 * m68k-tdep.h (struct gdbarch_tdep): Add member
6152 struct_value_regnum.
6153 (m68k_svr4_init_abi): New prototype.
6154 * m68k-tdep.c: Include "floatformat.h". Add comment about all the
6155 different calling conventions.
6156 (m68k_extract_return_value): Remove code dealing with single-field
6157 structs.
6158 (m68k_store_return_value): Remove code dealing with single-field
6159 structs. Correctly store return values of 5, 6, 7 or 8 bytes.
6160 (m68k_extract_struct_value_address): Remove function.
6161 (m68k_svr4_extract_return_value,m68k_svr4_store_return_value)
6162 (m68k_reg_struct_return_p, m68k_return_value)
6163 (m68k_svr4_return_value): New functions.
6164 (m68k_use_struct_convention): Remove function.
6165 (m68k_push_dummy_call): Use new struct_value_regnum member of
6166 `struct gdbarch_tdep' instead of hardcoded register number to
6167 store STRUCT_ADDR.
6168 (m68k_svr4_init_abi): New function.
6169 (m68k_gdbarch_init): Don't set extract_return_value,
6170 store_return_values, deprecated_extract_struct_value_address and
6171 use_struct_convention. Set return_value instead. Initialize new
6172 struct_value_regnum member of `struct gdbarch_tdep'.
6173 * m68klinux-tdep.c: Update copyright year.
6174 (m68k_linux_extract_return_value, m68k_linux_store_return_value)
6175 (m68k_linux_extract_struct_value_address): Remove function.
6176 (m68k_linux_init_abi): Don't set extract_return_value,
6177 store_return_values, deprecated_extract_struct_value_address and
6178 use_struct_convention. Call m68k_svr4_init_abi but override the
6179 new struct_value_regnum member of `struct gdbarch_tdep'.
6180 * Makefile.in (m68k-tdep.o): Update dependencies.
6181
6182 2004-05-03 J. Brobecker <brobecker@gnat.com>
6183
6184 * dwarf2read.c (line_header): Add new included_p field in
6185 field file_names.
6186 (partial_die_info): New field has_stmt_list. New field line_offset.
6187 (dwarf2_create_include_psymtab): New function.
6188 (dwarf2_build_include_psymtabs): New function.
6189 (add_file_name): Add forward declaration. Initialize new field.
6190 (dwarf_decode_lines): Add new parameter. Enhance this procedure
6191 to be able to determine the list of files included by the
6192 given unit, and build their associated psymtabs.
6193 (dwarf2_build_psymtabs_hard): Build the psymtabs for the included
6194 files as well.
6195 (psymtab_to_symtab_1): Build the symtabs of all dependencies as well.
6196 (read_file_scope): Update call to dwarf_decode_lines.
6197 (read_partial_die): Handle DW_AT_stmt_list attributes.
6198
6199 2004-05-02 Michael Chastain <mec.gnu@mindspring.com>
6200
6201 Unfix PR gdb/1626.
6202 * configure.in: Revert special case for osf5.*.
6203 * configure: Regenerate.
6204
6205 2004-05-02 Jim Blandy <jimb@redhat.com>
6206
6207 Move the symbol-file-from-memory functions into their own file.
6208 * symfile-mem.c, symfile-mem.h: New files.
6209 * symfile.c (symbol_file_add_from_bfd): New function.
6210 (symbol_file_add): Call symbol_file_add_from_bfd.
6211 (symbol_file_add_from_memory, add_symbol_file_from_memory_command):
6212 Moved to symfile-mem.c.
6213 (_initialize_symfile): Move definition of
6214 add-symbol-file-from-memory command to symfile-mem.c.
6215 * symfile.h (symbol_file_add_from_bfd): New declaration.
6216 * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
6217 * config/powerpc/linux.mt (TDEPFILES): Same.
6218 * Makefile.in (SFILES): Add symfile-mem.c.
6219 (symfile_mem_h): New variable.
6220 (HFILES_NO_SRCDIR): Add symfile-mem.h.
6221 (symfile-mem.o): New rule.
6222
6223 2004-05-01 Andrew Cagney <cagney@redhat.com>
6224
6225 * breakpoint.c (insert_bp_location): Use get_frame_id, and
6226 frame_find_by_id instead of frame_relative_level.
6227 (do_enable_breakpoint): Ditto.
6228 * thread.c: Update copyright.
6229 (info_threads_command): Ditto, simplify.
6230
6231 * frame.c (deprecated_generic_get_saved_register): Delete
6232 function, moved to "xstormy16-tdep.c".
6233 * xstormy16-tdep.c (xstormy16_get_saved_register): Inline
6234 deprecated_generic_get_saved_register from "frame.c".
6235 (xstormy16_frame_saved_register): Call
6236 xstormy16_get_saved_register.
6237 * dummy-frame.c (deprecated_find_dummy_frame_regcache): Make
6238 static.
6239 * dummy-frame.h (deprecated_find_dummy_frame_regcache): Delete.
6240 * frame.h (deprecated_generic_get_saved_register): Delete.
6241
6242 2004-05-01 Michael Chastain <mec.gnu@mindspring.com>
6243
6244 * dwarfread.c: Update documentation on the state of dwarf-1.
6245
6246 2004-05-01 Andrew Cagney <cagney@redhat.com>
6247
6248 * stack.c (select_frame_command): Delete call to
6249 frame_relative_level.
6250 (print_frame, set_backtrace_limit_command, backtrace_limit_info):
6251 Delete #if0 code.
6252 (frame_info): Do not print FRAMELESS.
6253 (print_block_frame_labels): Replace DEPRECATED_STREQ.
6254 (catch_info): Delete #if0 code.
6255
6256 * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
6257 * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
6258 of frame_relative_level.
6259 * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
6260 to SENTINEL_FRAME.
6261 * frame.h (enum frame_type): Add SENTINEL_FRAME.
6262 * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
6263 frame_relative_level.
6264
6265 * frame.h (deprecated_set_frame_type): Delete declaration.
6266 * frame.c (deprecated_set_frame_type): Delete function, update
6267 comments.
6268
6269 * gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
6270 * gdbarch.h, gdbarch.c: Re-generate.
6271 * shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
6272 (shnbsd_pc_in_sigtramp): Delete.
6273 * i386-interix-tdep.c (i386_interix_init_abi): Do not set
6274 pc_in_sigtramp.
6275 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
6276 pc_in_sigtramp.
6277 * frame.h: Update comments.
6278 * ppc-linux-tdep.c: Update comments.
6279 * breakpoint.c (bpstat_what): Update comments.
6280
6281 * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix
6282 m68klinux-tdep.o's dependencies, were previously added to
6283 m68klinux-nat.o.
6284
6285 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Use pc_in_sigtramp.
6286 * alpha-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp.
6287 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
6288 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
6289 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
6290
6291 * Makefile.in (m68klinux-nat.o): Update dependencies.
6292 * m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
6293 (m68k_linux_sigtramp_frame_cache)
6294 (m68k_linux_sigtramp_frame_this_id)
6295 (m68k_linux_sigtramp_frame_prev_register)
6296 (m68k_linux_sigtramp_frame_unwind)
6297 (m68k_linux_sigtramp_frame_sniffer)
6298 (struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
6299 m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
6300 names, use trad-frame.h.
6301 * m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
6302 (struct m68k_sigtramp_info): Delete.
6303 * m68k-tdep.c (m68k_sigtramp_frame_cache)
6304 (m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
6305 (m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
6306 (m68k_gdbarch_init): Delete all the sigtramp code, moved to
6307 "m68klinux-tdep.c".
6308
6309 * infrun.c (check_sigtramp2): Delete check for
6310 DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.
6311
6312 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6313
6314 * m68k-tdep.h (m68kbsd_fpreg_offset): New prototype.
6315
6316 2004-05-01 Andrew Cagney <cagney@redhat.com>
6317
6318 * frv-linux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
6319 (frv_linux_sigtramp_frame_cache)
6320 (frv_linux_sigtramp_frame_this_id)
6321 (frv_linux_sigtramp_frame_prev_register)
6322 (frv_linux_sigtramp_frame_unwind)
6323 (frv_linux_sigtramp_frame_sniffer): Copied from frv-tdep.c,
6324 include "linux" in function and variable names, directly call
6325 frv_linux_pc_in_sigtramp and frv_linux_sigcontext_reg_addr, use
6326 the latest trad-frame code.
6327 (frv_linux_init_abi): Append frv_linux_sigtramp_frame_sniffer, do
6328 not set frv_sigcontext_reg_addr or deprecated_pc_in_sigtramp
6329 * Makefile.in (frv-linux-tdep.o): Update dependencies.
6330 * frv-tdep.h (frv_set_sigcontext_reg_addr): Delete declaration.
6331 * frv-tdep.c (frv_sigtramp_frame_cache)
6332 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
6333 (frv_sigtramp_frame_unwind, frv_sigtramp_frame_sniffer): Moved to
6334 frv-linux-tdep.c.
6335 (frv_gdbarch_init): Do not append a sigtramp sniffer.
6336 (struct gdbarch_tdep): Delete sigcontext_reg_addr.
6337 (frv_set_sigcontext_reg_addr): Delete function.
6338
6339 * gdbarch.sh (DEPRECATED_SIGTRAMP_START)
6340 (DEPRECATED_SIGTRAMP_END): Delete.
6341 * gdbarch.h, gdbarch.c: Re-generate.
6342 * arch-utils.c (legacy_pc_in_sigtramp): Simplify.
6343 * config/vax/tm-vaxbsd.h: Update copyright.
6344 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
6345 (DEPRECATED_IN_SIGTRAMP): Define.
6346 * config/m68k/tm-nbsd.h: Update copyright.
6347 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
6348 (DEPRECATED_IN_SIGTRAMP): Define.
6349
6350 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6351
6352 * dwarf2-frame.c (read_encoded_value): Handle DW_EH_PE_funcrel
6353 encondings. Fixes PR gdb/1628.
6354
6355 * dwarf2-frame.c (execute_cfa_program): Complain if we encounter a
6356 DW_CFA_restore state without a matching DW_CFA_remember_state
6357 instead of aborting. Fixes PR backtrace/1589.
6358
6359 2004-04-30 Joel Brobecker <brobecker@gnat.com>
6360
6361 * MAINTAINERS: Add self as AIX maintainer.
6362 Update my e-mail address in write-after-approval section.
6363
6364 2004-04-30 Andrew Cagney <cagney@redhat.com>
6365
6366 * frame.c (frame_type_from_pc): Delete call to PC_IN_SIGTRAMP.
6367 (legacy_get_prev_frame): Ditto.
6368
6369 * mips-tdep.c (mips_pc_in_sigtramp): Delete.
6370 (mips_gdbarch_init): Do not set pc_in_sigtramp.
6371 * mipsread.c (sigtramp_address): Delete extern variable.
6372 (mipscoff_new_init): Delete reference.
6373 * mdebugread.c (sigtramp_address, sigtramp_end): Delete variables.
6374 (fixup_sigtramp): Delete function.
6375 * config/mips/tm-mips.h (sigtramp_address, sigtramp_end)
6376 (fixup_sigtramp): Delete declarations.
6377
6378 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Do not set
6379 deprecated_pc_in_sigtramp.
6380 (ppcnbsd_pc_in_sigtramp): Delete function.
6381
6382 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6383
6384 * config/m68k/nm-nbsd.h: Tweak comments.
6385 * config/m68k/nm-nbsdaout.h: Likewise.
6386
6387 2004-04-30 Andrew Cagney <cagney@redhat.com>
6388
6389 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Call
6390 legacy_pc_in_sigtramp.
6391 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Ditto.
6392
6393 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6394
6395 Add OpenBSD/m68k support.
6396 * NEWS (New native configurations): Mention OpenBSD/m68k.
6397 * m68kbsd-tdep.c: New file.
6398 * m68kbsd-nat.c: New file.
6399 * Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
6400 (m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
6401 * configure.host: Add m68k-*-openbsd.
6402 * configure.tgt: Add m68k-*-openbsd.
6403 * config/m68k/tm-obsd.h: New file.
6404 * config/m68k/obsd.mt: New file.
6405 * config/m68k/obsd.mh: New file.
6406 * config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
6407 m68kbsd-tdep.c.
6408
6409 2004-04-30 Andrew Cagney <cagney@redhat.com>
6410
6411 * mipsnbsd-tdep.c (mipsnbsd_pc_in_sigtramp): Delete function.
6412 (mipsnbsd_init_abi): Do not set pc_in_sigtramp.
6413
6414 2004-04-30 Mark Kettenis <kettenis@gnu.org>
6415
6416 * m68k-tdep.c (REMOTE_BPT_VECTOR): Remove define.
6417 * config/m68k/tm-nbsd.h (REMOTE_BPT_VECTOR): Remove define.
6418
6419 2004-04-30 Brian Ford <ford@vss.fsi.com>
6420
6421 Revert 2004-04-16 change.
6422 * i386-tdep.c (i386_gdbarch_init): Fix comment typos.
6423 (i386_coff_init_abi): Remove.
6424 * i386-tdep.h (i386_coff_init_abi): Remove.
6425 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Remove call to above.
6426
6427 2004-04-30 Andrew Cagney <cagney@redhat.com>
6428
6429 * blockframe.c (find_pc_partial_function): Delete use of
6430 DEPRECATED_PC_IN_SIGTRAMP, DEPRECATED_SIGTRAMP_START and
6431 DEPRECATED_SIGTRAMP_END.
6432
6433 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
6434 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
6435 * config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
6436 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
6437 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
6438
6439 * defs.h (deprecated_inside_entry_file): Delete declaration.
6440 * blockframe.c (deprecated_inside_entry_file): Delete function.
6441 (legacy_frame_chain_valid): Delete call.
6442 * sh64-tdep.c (sh64_frame_chain): Delete call.
6443 * objfiles.h: Update comments.
6444 * i386-interix-tdep.c (i386_interix_frame_chain_valid): Delete
6445 call.
6446 * frame.c (get_prev_frame): Delete call, update comments.
6447
6448 2004-04-30 Brian Ford <ford@vss.fsi.com>
6449
6450 * MAINTAINERS (Write After Approval): Add myself.
6451
6452 2004-04-30 Andrew Cagney <cagney@redhat.com>
6453
6454 * gdbarch.sh (BELIEVE_PCC_PROMOTION_TYPE): Delete.
6455 * gdbarch.h, gdbarch.c: Re-generate.
6456 * stabsread.c (define_symbol): Delete BELIEVE_PCC_PROMOTION_TYPE
6457 code.
6458
6459 2004-04-30 Andrew Cagney <cagney@redhat.com>
6460
6461 * gdb-events.sh (selected_thread_changed)
6462 (selected_frame_level_changed, target_changed): Delete.
6463 * gdb-events.h, gdb-events.c: Re-generate.
6464 * valops.c (value_assign): Update.
6465 * stack.c (select_frame_command, up_silently_base)
6466 (down_silently_base): Update.
6467
6468 2004-04-29 Andrew Cagney <cagney@redhat.com>
6469
6470 * mips-tdep.c (mips_register_type): Re-write, handle 32-bit ABI
6471 registers correctly.
6472 (print_gp_register_row, mips32_heuristic_proc_desc)
6473 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
6474 (mips_o64_push_dummy_call, mips_eabi_push_dummy_call): Eliminate
6475 references to mips_isa_regsize.
6476
6477 2004-04-29 Andrew Cagney <cagney@redhat.com>
6478
6479 * mips-tdep.c (struct gdbarch_tdep): Delete
6480 mips_fp_register_double.
6481 (FP_REGISTER_DOUBLE): Delete macro, replace with test for
6482 mips_abi_regsize.
6483 (mips_gdbarch_init): Do not set mips_fp_register_double.
6484 (mips_dump_tdep): Do not print FP_REGISTER_DOUBLE.
6485
6486 2004-04-29 Joel Brobecker <brobecker@gnat.com>
6487
6488 Committed by Andrew Cagney.
6489 * infrun.c (handle_inferior_event): Rely on frame IDs to detect
6490 function calls.
6491
6492 2004-04-29 Andrew Cagney <cagney@redhat.com>
6493
6494 * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with
6495 gdbarch, use mips_abi, update callers.
6496 (mips_stack_argsize): Replace tdep parameter with gdbarch, use
6497 mips_abi_regsize, update callers.
6498 (struct gdbarch_tdep): Delete mips_default_stack_argsize and
6499 mips_default_abi_regsize.
6500 (mips_gdbarch_init): Do not set mips_default_stack_argsize and
6501 mips_default_abi_regsize.
6502
6503 2004-04-29 Andrew Cagney <cagney@redhat.com>
6504
6505 * mips-tdep.c (mips_abi_regsize): Rename mips_saved_regsize.
6506 (mips_abi_regsize_string): Rename mips_saved_regsize_string.
6507 (struct gdbarch_tdep): Rename mips_default_saved_regsize to
6508 mips_default_abi_regsize.
6509 (mips_isa_regsize): Rename mips_regisze.
6510 * mipsnbsd-tdep.c: Update.
6511 * mips-linux-tdep.c: Update.
6512 * irix5-nat.c: Update.
6513 * mips-tdep.h (mips_isa_regsize): Update.
6514
6515 * gdb-events.sh (WITH_GDB_EVENTS): Delete macro and references.
6516 Delete all disabled code.
6517 * gdb-events.h, gdb-events.c: Re-generate.
6518
6519 2004-04-19 Jerome Guitton <guitton@gnat.com>
6520 Mark Kettenis <kettenis@gnu.org>
6521
6522 * i386-tdep.c (i386_skip_prologue): follow the last jump only if
6523 the function begins with a branch instruction.
6524
6525 2004-04-29 Mark Kettenis <kettenis@gnu.org>
6526
6527 * i386-tdep.c: Fix spelling mistakes.
6528
6529 2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
6530 Andrew Cagney <cagney@redhat.com>
6531
6532 * configure.in (mips-sgi-irix5*): Define _KMEMUSER for
6533 <sys/proc.h>.
6534 * acconfig.h: Provide default _KMEMUSER value.
6535 * config.in, configure: Re-generate.
6536 * NEWS: Mention fix.
6537
6538 2004-04-24 Randolph Chung <tausq@debian.org>
6539
6540 * configure.host (hppa*-*-linux*): New target.
6541 * configure.tgt (hppa*-*-linux*): Likewise.
6542 * hppa-tdep.c (hppa_gdbarch_init): Set cannot_fetch_register, move
6543 gdbarch_init_osabi() call earlier so that osabi-specific frame
6544 unwinders can be registered first.
6545 * config/djgpp/fnchange.lst: Add entries for hppa-linux-tdep.c and
6546 hppa-linux-nat.c.
6547 * config/pa/tm-hppa.h (ISR_REGNUM, PID0_REGNUM, PID1_REGNUM)
6548 (PID2_REGNUM, PID3_REGNUM): Add definitions of some register numbers.
6549 * config/pa/linux.mh: New file.
6550 * config/pa/linux.mt: New file.
6551 * config/pa/nm-linux.h: New file.
6552 * config/pa/xm-linux.h: New file.
6553 * hppa-linux-nat.c: New file.
6554 * hppa-linux-tdep.c: New file.
6555
6556 2004-04-28 Randolph Chung <tausq@debian.org>
6557
6558 * hppa-tdep.c (hppa32_return_value): Handle both 4- and 8-byte fp
6559 return values.
6560 (hppa32_push_dummy_call): Fix small struct and floating point argument
6561 passing, and make sure the stack frame is properly aligned.
6562
6563 2004-04-28 Andrew Cagney <cagney@redhat.com>
6564
6565 * stack.c (print_stack_frame): Fix description.
6566
6567 * NEWS: Mention gdb/gdbserver/configure execute permission
6568 changed. PR server/519.
6569
6570 2004-04-28 Andrew Cagney <cagney@redhat.com>
6571
6572 * stack.c (print_stack_frame_stub): Delete declaration.
6573 (struct print_stack_frame_args, print_stack_frame)
6574 (print_frame_info, print_frame): Replace "source" with print what.
6575 Replace "print" with "print_level". Replace "args" with
6576 "print_args".
6577 * frame.h (show_and_print_stack_frame, print_stack_frame)
6578 (print_frame_info): Update declarations.
6579 * stack.c (select_and_print_frame, frame_command)
6580 (current_frame_command, up_command, down_command): Update calls -
6581 use get_selected_frame, pass "enum print_what" for source, do not
6582 call frame_relative_level.
6583 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
6584 * remote-rdp.c (remote_rdp_open): Ditto.
6585 * remote-mips.c (common_open): Ditto.
6586 * remote-e7000.c (e7000_start_remote): Ditto.
6587 * ocd.c (ocd_start_remote): Ditto.
6588 * mi/mi-main.c (mi_cmd_exec_return): Ditto.
6589 * infrun.c (normal_stop): Ditto.
6590 * inflow.c (kill_command): Ditto.
6591 * infcmd.c (finish_command): Ditto.
6592 * corelow.c (core_open): Ditto.
6593 * tracepoint.c (finish_tfind_command): Ditto.
6594 * thread.c (info_threads_command, info_threads_command)
6595 (restore_current_thread, do_captured_thread_select): Ditto.
6596 * ada-tasks.c (task_command): Ditto.
6597
6598 2004-04-26 Orjan Friberg <orjanf@axis.com>
6599
6600 * frame.c: Include "observer.h".
6601 (frame_observer_target_changed): New function.
6602 (_initialize_frame): Attach target_changed observer.
6603 * regcache.c: Include "observer.h".
6604 (regcache_observer_target_changed): New function.
6605 (_initialize_regcache): Attach target_changed observer.
6606 * valops.c: Include "observer.h".
6607 (value_assign): Notify target_changed event when modifying register.
6608 * Makefile.in (frame.o, regcache.o, valops.o): Add $(observer_h).
6609
6610 2004-04-26 Orjan Friberg <orjanf@axis.com>
6611
6612 From Paul Koning <pkoning@equallogic.com>:
6613 * breakpoint.c (free_valchain): New function.
6614 (insert_bp_location, delete_breakpoint): Use free_valchain.
6615 (remove_breakpoint): Do not remove the valchain.
6616 (bpstat_stop_status): If not stopped by watchpoint, skip
6617 watchpoints when generating stop status list.
6618 * infrun.c (handle_inferior_event): Make
6619 stepped_after_stopped_by_watchpoint a global variable.
6620 * remote.c (remote_stopped_data_address): Return watch data
6621 address rather than zero if stepped_after_stopped_by_watchpoint is
6622 set.
6623
6624 2004-04-25 Michael Chastain <mec.gnu@mindspring.com>
6625
6626 Fix PR gdb/1626.
6627 * configure.in: Check for curses after termcap.
6628 On osf5.*, do not check for ncurses.
6629 * configure: Regenerate.
6630
6631 2004-04-25 Mark Kettenis <kettenis@gnu.org>
6632
6633 * ppcobsd-nat.c: Include "ppc-tdep.h".
6634 * Makefile.in (ppcobsd-nat.o): Update dependencies.
6635
6636 * stack.c (return_command): Use CHECK_TYPEDEF on the return type.
6637 Fixes PR tdep/1623 and PR tdep/1624.
6638
6639 2004-04-24 Michael Chastain <mec.gnu@mindspring.com>
6640
6641 * xmodem.h, xmodem.c: Remove files.
6642 * Makefile.in: Remove references to xmodem.h, xmodem.c.
6643
6644 2004-04-23 Randolph Chung <tausq@debian.org>
6645
6646 * hppa-tdep.c (hppa_stub_unwind_cache, hppa_stub_frame_unwind_cache)
6647 (hppa_stub_frame_this_id, hppa_stub_frame_prev_register)
6648 (hppa_stub_frame_unwind, hppa_stub_unwind_sniffer): New stub unwinder
6649 for handling stackless frames.
6650 (hppa_gdbarch_init): Link in hppa_stub_unwind_sniffer.
6651
6652 2004-04-23 Randolph Chung <tausq@debian.org>
6653
6654 * hppa-tdep.c (hppa_frame_cache): Handle the case when frame unwind
6655 starts at a pc before the frame is created.
6656
6657 2004-04-23 Joel Brobecker <brobecker@gnat.com>
6658
6659 * ChangeLog-2002: Fix year in one of the ChangeLog entries.
6660
6661 2004-04-23 Jerome Guitton <guitton@gnat.com>
6662
6663 * rs6000-tdep.c (rs6000_extract_return_value): When extracting a float,
6664 use convert_typed_floating to get the appropriate format.
6665
6666 2004-04-22 Randolph Chung <tausq@debian.org>
6667
6668 * hppa-tdep.h (find_unwind_entry, hppa_get_field, hppa_extract_5_load)
6669 (hppa_extract_5R_store, hppa_extract_5r_store, hppa_extract_17)
6670 (hppa_extract_21, hppa_extract_14, hppa_low_sign_extend)
6671 (hppa_sign_extend): Add prototype.
6672 * hppa-tdep.c (get_field, extract_5_load, extract_5R_store)
6673 (extract_5r_store, extract_17, extract_21, extract_14, low_sign_extend)
6674 (sign_extend): Rename with hppa_ prefix and make non-static. Other
6675 hppa targets will also use these functions.
6676 (find_unwind_entry): Remove prototype (moved to hppa-tdep.h).
6677 (hppa_in_solib_call_trampoline, hppa_in_solib_return_trampoline)
6678 (hppa_skip_trampoline_code): Move to hppa-hpux-tdep.c
6679 (hppa_gdbarch_init): Remove gdbarch setting of
6680 skip_trampoline_code, in_solib_call_trampoline and
6681 in_solib_return_trampoline.
6682 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
6683 (hppa64_hpux_in_solib_call_trampoline): New functions, split from
6684 hppa_in_solib_call_trampoline.
6685 (hppa_hpux_in_solib_return_trampoline, hppa_hpux_skip_trampoline_code):
6686 Moved from hppa-tdep.c.
6687 (hppa_hpux_init_abi): Set gdbarch for skip_trampoline_code,
6688 in_solib_call_trampoline and in_solib_return_trampoline.
6689
6690 2004-04-22 Randolph Chung <tausq@debian.org>
6691
6692 * hppa-tdep.c (hppa_debug): New variable.
6693 (find_unwind_entry, hppa_frame_cache): Add debug output.
6694 (_initialize_hppa_tdep): Add command to set debug flag.
6695
6696 2004-04-22 Andrew Cagney <cagney@redhat.com>
6697
6698 * ppcnbsd-tdep.c: Update copyright. Include "tramp-frame.h" and
6699 "trad-frame.h".
6700 (ppcnbsd_sigtramp_cache_init, ppcnbsd_sigtramp): Implement a NetBSD
6701 signal trampoline unwinder.
6702 (ppcnbsd_init_abi): Register ppcnbsd_sigtramp.
6703
6704 2004-04-22 Mark Kettenis <kettenis@gnu.org>
6705
6706 Add OpenBSD/powerpc support.
6707 * NEWS (New native configurations): Mention OpenBSD/powerpc.
6708 * ppc-tdep.h (struct ppc_reg_offsets): New structure.
6709 (ppc_supply_gregset, ppc_supply_fpregset, ppc_collect_gregset)
6710 (ppc_collect_fpregset): New prototypes.
6711 * ppcobsd-nat.c: New file.
6712 * ppcobsd-tdep.c: New file.
6713 * ppcobsd-tdep.h: New file.
6714 * rs6000-tdep.c: Include "regset.h".
6715 (ppc_supply_reg, ppc_collect_reg, ppc_supply_gregset)
6716 (ppc_supply_fpregset, ppc_collect_gregset, ppc_collect_fpregset):
6717 New functions.
6718 * Makefile.in (ALLDEPFILES): Add pccobsd-nat.c and ppcobsd-tdep.c.
6719 (ppcobsd-nat.o, ppcobsd-tdep.o): New dependencies.
6720 (rs6000-tdep.o): Update dependencies.
6721 * configure.host: Add powerpc-*-openbsd.
6722 * configure.tgt: Add powerpc-*-openbsd.
6723 * config/powerpc/obsd.mh: New file.
6724 * config/powerpc/nm-obsd.h: New file.
6725 * config/powerpc/obsd.mt: New file.
6726
6727 2004-04-22 Andrew Cagney <cagney@redhat.com>
6728
6729 * frame.h (show_frame_info): Delete declaration.
6730
6731 * arm-tdep.c (arm_prologue_this_id): Delete redundant cycle test.
6732 * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
6733 * m32r-tdep.c (m32r_frame_this_id): Ditto.
6734 * frv-tdep.c (frv_frame_this_id): Ditto.
6735 * avr-tdep.c (avr_frame_this_id): Ditto.
6736
6737 2004-04-22 Elena Zannoni <ezannoni@redhat.com>
6738
6739 * MAINTAINERS: Drop maintenance of gdb.stabs, and linespec.c.
6740
6741 2004-04-22 Jim Blandy <jimb@redhat.com>
6742
6743 * ppc-linux-nat.c (ppc_register_u_addr): Don't assume that r0 is
6744 register number zero.
6745
6746 2004-04-21 Michael Snyder <msnyder@redhat.com>
6747
6748 * mips-tdep.c (heuristic_proc_start):
6749 Warning() already prefixes "Warning: ".
6750
6751 2004-04-21 Andrew Cagney <cagney@redhat.com>
6752
6753 * annotate.h (deprecated_annotate_starting_hook)
6754 (deprecated_annotate_stopped_hook)
6755 (deprecated_annotate_exited_hook)
6756 (deprecated_annotate_signal_hook)
6757 (deprecated_annotate_signalled_hook): Deprecate.
6758 * tracepoint.h (deprecated_create_tracepoint_hook)
6759 (deprecated_delete_tracepoint_hook)
6760 (deprecated_modify_tracepoint_hook)
6761 (deprecated_trace_find_hook)
6762 (deprecated_trace_start_stop_hook): Deprecate.
6763 * target.h (deprecated_target_new_objfile_hook): Deprecate.
6764 * remote.h (deprecated_target_resume_hook)
6765 (deprecated_target_wait_loop_hook): Deprecate.
6766 * gdbcore.h (deprecated_exec_file_display_hook)
6767 (deprecated_file_changed_hook): Deprecate.
6768 * frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
6769 * defs.h (deprecated_modify_breakpoint_hook)
6770 (deprecated_command_loop_hook, deprecated_show_load_progress)
6771 (deprecated_print_frame_info_listing_hook)
6772 (deprecated_query_hook, deprecated_warning_hook)
6773 (deprecated_flush_hook, deprecated_create_breakpoint_hook)
6774 (deprecated_delete_breakpoint_hook)
6775 (deprecated_interactive_hook, deprecated_registers_changed_hook)
6776 (deprecated_readline_begin_hook, deprecated_readline_hook)
6777 (deprecated_readline_end_hook, deprecated_register_changed_hook)
6778 (deprecated_memory_changed_hook, deprecated_init_ui_hook)
6779 (deprecated_context_hook, deprecated_target_wait_hook)
6780 (deprecated_attach_hook, deprecated_detach_hook)
6781 (deprecated_call_command_hook, deprecated_set_hook)
6782 (deprecated_error_hook, deprecated_error_begin_hook)
6783 (deprecated_ui_load_progress_hook): Deprecate.
6784 * valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
6785 * tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
6786 * target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
6787 * remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
6788 * main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
6789 * exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
6790 * cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
6791 * annotate.c, aix-thread.c: Update.
6792
6793 2004-04-21 Andrew Cagney <cagney@redhat.com>
6794
6795 * Makefile.in (vaxnbsd-tdep.o): Update dependencies.
6796 * vaxnbsd-tdep.c: Include "gdb_string.h".
6797
6798 * symfile.c (symbol_file_add_from_memory): #if 0 function.
6799 (add_symbol_file_from_memory_command): #if 0 function body, call
6800 error instead.
6801
6802 2004-04-21 Andrew Cagney <cagney@redhat.com>
6803
6804 * gdbcore.h: Update copyright.
6805 (deprecated_add_core_fns): Rename add_core_fns.
6806 * win32-nat.c (_initialize_core_win32): Update.
6807 * sun3-nat.c (_initialize_core_sun3): Update.
6808 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Update.
6809 * rs6000-nat.c (_initialize_core_rs6000): Update.
6810 * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Update.
6811 * nto-tdep.c (_initialize_nto_tdep): Update.
6812 * ns32knbsd-nat.c (_initialize_ns32knbsd_nat): Update.
6813 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Update.
6814 * mips-nat.c (_initialize_core_mips): Update.
6815 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
6816 * m68knbsd-nat.c (_initialize_m68knbsd_nat): Update.
6817 * m68klinux-nat.c (_initialize_m68k_linux_nat): Update.
6818 * lynx-nat.c (_initialize_core_lynx): Update.
6819 * irix5-nat.c (_initialize_core_irix5): Update.
6820 * i386-interix-nat.c (_initialize_core_interix): Update.
6821 * cris-tdep.c (_initialize_cris_tdep): Update.
6822 * corelow.c (deprecated_add_core_fns): Update.
6823 * core-regset.c (_initialize_core_regset): Update.
6824 * core-aout.c (_initialize_core_aout): Update.
6825 * armnbsd-nat.c (_initialize_arm_netbsd_nat): Update.
6826 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Update.
6827 * alpha-nat.c (_initialize_core_alpha): Update.
6828
6829 2004-04-21 Jim Blandy <jimb@redhat.com>
6830
6831 * rs6000-tdep.c (registers_e500, registers_7400): Doc fixes.
6832
6833 2004-04-19 Daniel Jacobowitz <drow@mvista.com>
6834
6835 * dwarf2read.c (dwarf2_tmp_obstack, dwarf2_free_tmp_obstack):
6836 Delete.
6837 (dwarf_alloc_block): Take a CU argument. Use the comp_unit_obstack.
6838 (read_attribute_value): Update calls to dwarf_alloc_block.
6839 (dwarf2_build_psymtabs_hard): Don't initialize or clean up
6840 dwarf2_tmp_obstack.
6841 (psymtab_to_symtab_1): Likewise. Clean up using
6842 free_stack_comp_unit.
6843 (add_to_cu_func_list): Use the comp_unit_obstack.
6844
6845 2004-04-19 Joel Brobecker <brobecker@gnat.com>
6846
6847 * dwarf2read.c (dwarf2_flag_true_p): New function.
6848 (die_is_declaration): Use the function above. Add some comments.
6849
6850 2004-04-19 Mark Kettenis <kettenis@gnu.org>
6851
6852 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Specify
6853 architecture when registering sparcnbsd_core_osabi_sniffer.
6854 Adjust comment.
6855
6856 2004-04-18 Mark Kettenis <kettenis@gnu.org>
6857
6858 * infcall.c (find_function_addr): Add FUNCTION_START_OFFSET to
6859 return value.
6860
6861 Based on a patch from Brian Ford <ford@vss.fsi.com>:
6862 * i386-tdep.c: Correct register numbering scheme comments
6863 throughout.
6864 (i386_stab_reg_to_regnum): Rename to i386_dbx_reg_to_regnum.
6865 (i386_dwarf_reg_to_regnum): Rename to i386_svr4_reg_to_regnum.
6866 (i386_coff_init_abi, i386_elf_init_abi): Accomodate renames above.
6867 (i386_gdb_arch_init): Likewise.
6868
6869 * Makefile.in (ALLDEPFILES): List ppc-sysv-tdep.c, ppcnbsd-nat.c
6870 and ppcnbsd-tdep.c instead of ppc-sysv-tdep.o, ppcnbsd-nat.o and
6871 ppcnbsd-tdep.o.
6872
6873 * m68k-tdep.h: Tweak comments.
6874 * m68k-tdep.c: Tweak comment.
6875
6876 2004-04-17 Randolph Chung <tausq@debian.org>
6877
6878 * Makefile.in (hppa-hpux-tdep.o): Add $(hppa_tdep_h).
6879 * hppa-hpux-tdep.c (hppa-tdep.h): Include.
6880 (hppa_hpux_som_init_abi): Set is_elf to 0.
6881 (hppa_hpux_elf_init_abi): Set is_elf to 1.
6882 * hppa-tdep.c (low_text_segment_address): Remove global.
6883 (record_text_segment_lowaddr): Pass in low address as parameter. Use
6884 section offset to calculate segment address.
6885 (internalize_unwinds): Define low_text_segment_address as local and
6886 pass to record_text_segment_lowaddr for ELF targets.
6887 (hppa_gdbarch_init): Zero fill tdep structure.
6888 (hppa_dump_tdep): Print tdep structure.
6889 * hppa-tdep.h (gdbarch_tdep): Add is_elf member to tdep structure.
6890
6891 2004-04-17 Randolph Chung <tausq@debian.org>
6892
6893 * hppa-tdep.c (hppa_pseudo_register_read): Define.
6894 (hppa_gdbarch_init): Set pseudo_register_read.
6895 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Remove.
6896 * regcache.c (supply_register): Remove check for
6897 DEPRECATED_CLEAN_UP_REGISTER_VALUE since we've removed the last user.
6898
6899 2004-04-17 Randolph Chung <tausq@debian.org>
6900
6901 * Makefile.in (hpread.o, pa64solib.o, somsolib.o): Add $(hppa_tdep_h)
6902 * hppa-tdep.h (INSTRUCTION_SIZE): Move from tm-hppa.h.
6903 (hpread_adjust_stack_address): Move to hpread.c.
6904 * hppa-tdep.h (unwind_table_entry, unwind_stub_types, obj_unwind_info,
6905 obj_private_struct): Move from tm-hppa.h.
6906 * hpread.c (hppa-tdep.h): Include.
6907 (hpread_adjust_stack_address): Move from hppa-tdep.c.
6908 (hpread_read_function_type, hpread_read_doc_function_type)
6909 (hpread_process_one_debug_symbol): Call hpread_adjust_stack_address
6910 directly.
6911 * pa64solib.c (hppa-tdep.h): Include.
6912 * somsolib.c (hppa-tdep.h): Include.
6913 * config/pa/tm-hppa.h (frame_info, frame_saved_regs, value, type,
6914 inferior_status): Remove unused forward declarations.
6915 (INSTRUCTION_SIZE): Move to hppa-tdep.c.
6916 (unwind_table_entry, unwind_stub_types, obj_unwind_info,
6917 obj_private_struct): Move to hppa-tdep.h.
6918 (HPREAD_ADJUST_STACK_ADDRESS): Remove.
6919
6920 2004-04-17 Randolph Chung <tausq@debian.org>
6921
6922 * hppa-tdep.c (hppa_reg_struct_has_addr, hppa_skip_prologue)
6923 (hppa_skip_trampoline_code, hppa_in_solib_call_trampoline)
6924 (hppa_in_solib_return_trampoline, hppa_cannot_store_register)
6925 (hppa_smash_text_address, hppa_target_read_pc, hppa_target_write_pc):
6926 Remove forward declaration and make static.
6927 (hppa_reg_struct_has_addr): Remove.
6928
6929 2004-04-16 Joel Brobecker <brobecker@gnat.com>
6930
6931 * observer.sh: Move comments in sed command to first column.
6932
6933 2004-04-16 Jason Molenda (jmolenda@apple.com)
6934
6935 * frame.c: Minor typeo corrections in comments.
6936
6937 2004-04-16 Joel Brobecker <brobecker@gnat.com>
6938
6939 * observer.c (observer_test_first_notification_function): Update
6940 function profile.
6941 (observer_test_second_notification_function): Likewise.
6942 (observer_test_third_notification_function): Likewise.
6943
6944 2004-04-16 Mark Kettenis <kettenis@gnu.org>
6945
6946 From Brian Ford <ford@vss.fsi.com>:
6947 * i386-tdep.c (i386_coff_init_abi): New function.
6948 * i386-tdep.h (i386_coff_init_abi): New prototype.
6949 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Call it. Use correct
6950 register number translation functions for DWARF and DWARF 2.
6951
6952 2004-04-16 Joel Brobecker <brobecker@gnat.com>
6953
6954 * dwarf2read.c: Back out my previous change, it was incorrect.
6955
6956 2004-04-16 Daniel Jacobowitz <drow@mvista.com>
6957
6958 * dwarf2read.c: Include "hashtab.h".
6959 (struct dwarf2_cu): Add partial_dies, comp_unit_obstack,
6960 has_namespace_info.
6961 (struct partial_die_info): Add comments. Use bitfields to reduce
6962 memory footprint. Add scope, scope_set, has_specification,
6963 spec_offset, die_parent, die_child, and die_sibling.
6964 (peek_die_abbrev): Add prototype.
6965 (partial_read_comp_unit_head): New function, broken out from
6966 dwarf2_build_psymtabs_hard.
6967 (dwarf2_build_psymtabs_hard): Remove unused variable abbrev_ptr.
6968 Use partial_read_comp_unit_head. Initialize the CU and
6969 comp_unit_obstack. Update calls to read_partial_die and
6970 scan_partial_symbols. Use free_stack_comp_unit and
6971 load_partial_dies.
6972 (scan_partial_symbols): Change PDI to a pointer. Use the child and
6973 sibling pointers to walk partial DIEs. Call fixup_partial_die.
6974 Update calls to helper functions. Remove NAMESPACE argument.
6975 Update comments.
6976 (partial_die_parent_scope, partial_die_full_name): New functions.
6977 (add_partial_symbol): Remove namespace argument. Update call to
6978 pdi_needs_namespace. Use partial_die_full_name. Handle
6979 DW_TAG_namespace. Check has_namespace_info flag.
6980 (pdi_needs_namespace): Remove NAMESPACE argument. Just check the
6981 tag. Handle namespaces.
6982 (add_partial_namespace, add_partial_enumeration): Simplify.
6983 (guess_structure_name): New function, derived from
6984 add_partial_structure.
6985 (add_partial_structure): Remove.
6986 (determine_class_name): Update comment.
6987 (dwarf2_read_abbrevs): Set has_namespace_info flag.
6988 (is_type_tag_for_partial, load_partial_dies): New functions.
6989 (read_partial_die): Pass abbrev and abbrev_len as arguments.
6990 Record specifications instead of following them immediately.
6991 (find_partial_die_in_comp_unit, find_partial_die)
6992 (fixup_partial_die, free_stack_comp_unit)
6993 (hashtab_obstack_allocate, dummy_obstack_deallocate)
6994 (partial_die_hash, partial_die_eq): New functions.
6995 * Makefile.in (hashtab_h): Define.
6996 (dwarf2read.o): Update dependencies.
6997 (observer_inc, observer_h): Move to the correct section.
6998
6999 2004-04-15 Joel Brobecker <brobecker@gnat.com>
7000
7001 * dwarf2read.c (dwarf2_attribute_true_p): New function.
7002 (die_is_declaration): Use the function above. Add comment.
7003
7004 2004-04-15 Joel Brobecker <brobecker@gnat.com>
7005
7006 * dwarf2read.c (read_structure_scope): Identify stub types
7007 using die_is_declaration() only.
7008
7009 2004-04-15 Roland McGrath <roland@redhat.com>
7010
7011 * symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as
7012 argument instead of NAME.
7013 (symbol_file_add, reread_separate_symbols): Call symfile_bfd_open
7014 in call to symbol_file_add_with_addrs_or_offsets.
7015 (build_addr_info): New function, helper for ...
7016 (symbol_file_add_from_memory): New function.
7017 (add_symbol_file_from_memory_command): New function using that.
7018 (_initialize_symfile): Register it for add-symbol-file-from-memory.
7019 (pre_add_symbol_hook): Add const to argument type.
7020 * symfile.h (symbol_file_add_from_memory): Declare it.
7021
7022 2004-04-15 Mark Kettenis <kettenis@gnu.org>
7023
7024 * NEWS (New native configurations): Mention OpenBSD/vax.
7025 * configure.host: Add vax-*-openbsd*.
7026 * config/vax/obsd.mh: New file.
7027 * config/vax/nm-obsd.h: New file.
7028
7029 * vax-tdep.c: Include "regset.h".
7030 (vax_supply_gregset): New function.
7031 (vax_gregset): New variable.
7032 (vax_regset_from_core_section): New function.
7033 (vax_gdbarch_init): Set regset_from_core_section.
7034 * Makefile.in (vax-tdep.o): Update dependencies.
7035
7036 2004-04-15 Andrew Cagney <cagney@redhat.com>
7037
7038 * observer.c (normal_stop_subject, observer_notify_normal_stop)
7039 (observer_normal_stop_notification_stub)
7040 (observer_attach_normal_stop, observer_detach_normal_stop):
7041 Delete, replaced by #include "observer.inc".
7042 * infrun.c (normal_stop): Pass "stop_bpstat" to
7043 observer_notify_normal_stop.
7044 * Makefile.in (observer_inc): Define.
7045 (observer.o): Update dependencies.
7046 (observer.h, observer.inc): New rules.
7047 * observer.h: Delete file.
7048 * observer.sh: New file.
7049
7050 2004-04-15 Mark Kettenis <kettenis@gnu.org>
7051
7052 * vax-tdep.c (vax_frame_cache): Fix typo.
7053
7054 2004-04-14 Mark Kettenis <kettenis@gnu.org>
7055
7056 * NEWS (New native configurations): Mention NetBSD/vax.
7057 * configure.host: Add vax-*-netbsdelf* and vax-*-netbsd*.
7058 * config/vax/nbsdelf.mh: New file.
7059 * config/vax/nbsdaout.mh: New file.
7060 * config/vax/nm-nbsd.h: New file.
7061 * config/vax/nm-nbsdaout.h: New file.
7062
7063 * vaxnbsd-tdep.c: New file.
7064 * Makefile.in (vaxnbsd-tdep.o): New dependency.
7065 * configure.tgt: Add vax-*-netbsd* and vax-*-openbsd*.
7066 * config/vax/nbsd.mt: New file.
7067 * config/vax/tm-nbsd.h: New file.
7068
7069 * Makefile.in (vaxbsd-nat.o): New dependency.
7070
7071 * vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
7072 * vax-tdep.c (vax_store_arguments): Remove struct_return and
7073 struct_addr arguments. Don't push return value address.
7074 (vax_push_dummy_call): Don't pass STRUCT_RETURN and STRUCT_ADDR as
7075 arguments to vax_store_arguments. Store return value address in
7076 R1.
7077 (vax_store_struct_return, vax_extract_return_value)
7078 (vax_store_return_value): Remove functions.
7079 (vax_return_value): New function.
7080 (vax_gdbarch_init): Set return value. Don't set
7081 deprecated_store_struct_return, deprecated_extract_struct_return
7082 and deprecated_store_return_value.
7083
7084 2004-04-14 Andreas Schwab <schwab@suse.de>
7085
7086 * ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
7087 value buffer.
7088 * libunwind-frame.c (libunwind_frame_prev_register): Likewise.
7089
7090 2004-04-14 Mark Kettenis <kettenis@gnu.org>
7091
7092 * vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
7093 (vax_unwind_dummy_id): New functions.
7094 (vax_push_dummy_frame, vax_pop_frame): Remove functions.
7095 (vax_call_dummy_words, sizeof_vax_call_dummy_words): Remove
7096 variables.
7097 (vax_fix_call_dummy): Remove function.
7098 (vax_gdbarch_init): Set push_dummy_call and unwind_dummy_id.
7099 Don't set deprecated_push_dummy_frame, deprecated_pop_frame,
7100 call_dummy_location, deprecated_call_dummy_words,
7101 deprecated_sizeof_call_dummy_words,
7102 deprecated_call_dummy_breakpoint_offset,
7103 deprecated_use_generic_dummy_frames, deprecated_pc_in_call_dummy,
7104 and deprecated_dummy_write_sp.
7105
7106 2004-04-13 David Carlton <carlton@kealia.com>
7107
7108 * MAINTAINERS: Move myself to "paper trail" section.
7109
7110 2004-04-12 Mark Kettenis <kettenis@gnu.org>
7111
7112 * vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
7113 "trad-frame.h".
7114 (vax_frame_init_saved_regs): Remove function.
7115 (vax_sigtramp_saved_pc): Remove function.
7116 (vax_frame_saved_pc): Remove function.
7117 (vax_frame_args_address): Remove function.
7118 (vax_frame_num_args): Rewrite.
7119 (vax_frame_chain): Remove function.
7120 (vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
7121 VAX_FP_REGNUM.
7122 (vax_pop_frame): Likewise.
7123 (vax_saved_pc_after_call): Remove function.
7124 (struct vax_frame_cache): New structure.
7125 (vax_frame_cache): New function.
7126 (vax_frame_this_id): New function.
7127 (vax_frame_prev_register): New function.
7128 (vax_frame_unwind): New variable.
7129 (vax_frame_sniffer): New function.
7130 (vax_frame_base_address): New function.
7131 (vax_frame_args_address): New function.
7132 (vax_frame_base): New variable.
7133 (vax_unwind_pc): New function.
7134 (vax_gdbarch_init): Don't set deprecated_init_frame_pc,
7135 deprecated_fp_regnum, deprecated_saved_pc_after_call,
7136 deprecated_frame_chain, deprecated_frame_saved_pc,
7137 deprecated_frame_args_address and
7138 deprecated_frame_init_saved_regs.
7139 * Makefile.in (vax-tdep.o): Update dependencies.
7140
7141 * vaxbsd-nat.c: New file.
7142
7143 * vax-tdep.h: Update copyright year. Adjust comments.
7144 (VAX_REGISTER_SIZE, VAX_REGISTER_BYTES, VAX_MAX_REGISTER_RAW_SIZE,
7145 VAX_MAX_REGISTER_VIRTUAL_SIZE): Remove macros.
7146 (vax_regnum): New enum. Replacing...
7147 (VAX_AP_REGNUM, VAX_FP_REGNUM, VAX_SP_REGNUM, VAX_PC_REGNUM)
7148 (VAX_PS_REGNUM): ... these removed macros.
7149 * vax-tdep.c (vax_register_name): Remove prototype.
7150 (vax_register_name): Reorganize somewhat. Use ARRAY_SIZE.
7151 (vax_register_byte, vax_register_raw_size,
7152 vax_register_virtual_size, vax_register_virtual_type): Remove
7153 functions.
7154 (vax_register_type): New function.
7155 (vax_breakpoint_from_pc): Reorganize.
7156 (vax_gdbarch_init): Set register_type. Don't set
7157 deprecated_register_size, deprecated_register_bytes,
7158 deprecated_register_byte, deprecated_register_raw_size,
7159 deprecated_max_register_raw_size,
7160 deprecated_register_virtual_size,
7161 deprecated_max_register_virtual_size and
7162 deprecated_register_virtual_type. Add comment on stack direction.
7163
7164 2004-04-11 Mark Kettenis <kettenis@gnu.org>
7165
7166 * amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
7167 AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
7168 AMD64_FS_REGNUM and AMD64_GS_REGNUM.
7169
7170 2004-04-10 Randolph Chung <tausq@debian.org>
7171
7172 * MAINTAINERS (write after approval): Add myself.
7173
7174 2004-04-07 Randolph Chung <tausq@debian.org>
7175
7176 * hppa-tdep.c (hppa_inner_than): Remove.
7177 (is_pa_2): Remove unused static variable.
7178 (hppa_gdbarch_init): Use core_addr_greaterthan instead of own version.
7179
7180 2004-03-10 Paul N. Hilfinger <Hilfinger@gnat.com>
7181
7182 * language.h (language_defn): Add new la_post_parser field.
7183 * parser-defs.h (null_post_parser): New declaration (default for
7184 la_post_parser).
7185
7186 * parse.c (parse_exp_1): Move code to parse_exp_in_context and
7187 insert call to that function.
7188 (parse_exp_in_context): New function, including code formerly in
7189 parse_exp_1. Calls language-dependent post-parser after
7190 prefixification.
7191 (parse_expression_in_context): New exported function.
7192 (null_post_parser): New definition.
7193 * expression.h (parse_expression_in_context): Add declaration.
7194
7195 * p-lang.c (pascal_language_defn): Add trivial post-parser.
7196 * c-lang.c (c_language_defn): Ditto.
7197 (cplus_language_defn): Ditto.
7198 (asm_language_defn): Ditto.
7199 (minimal_language_defn): Ditto.
7200 * f-lang.c (f_language_defn): Ditto.
7201 * jv-lang.c (java_language_defn): Ditto.
7202 * language.c (unknown_language_defn): Ditto.
7203 (auto_language_defn): Ditto.
7204 (local_language_defn): Ditto.
7205 * m2-lang.c (m2_language_defn): Ditto.
7206 * scm-lang.c (scm_language_defn): Ditto.
7207 * obj-lang.c (objc_language_defn): Ditto.
7208
7209 2004-04-10 Mark Kettenis <kettenis@gnu.org>
7210
7211 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Remove function.
7212 (amd64nbsd_mcontext_addr): New function.
7213 (amd64nbsd_init_abi): Initialize TDEP->sigcontext_addr as
7214 amd64nbsd_mcontext_addr. Directly initialize TDEP->sc_reg_offset
7215 with amd64nbsd_r_reg_offset, instead of building it on the fly.
7216
7217 * corelow.c (core_xfer_partial): Fix coding standards violation.
7218 Add support for TARGET_OBJECT_WCOOKIE.
7219
7220 * sparc-linux-tdep.c (sparc32_linux_init_abi): Don't set
7221 deprecated_pc_in_sigtramp.
7222 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Likewise.
7223 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Likewise.
7224 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Likewise.
7225 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Likewise.
7226 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Likewise.
7227 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Likewise.
7228 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
7229
7230 * amd64-linux-tdep.c, amd64nbsd-tdep.c, amd64obsd-tdep.c,
7231 i386-linux-tdep.c, i386-tdep.c, i386nbsd-tdep.c, i386obsd-tdep.c:
7232 Fix typo.
7233
7234 * amd64-tdep.c (amd64_supply_fxsave): Only fiddle with
7235 I387_FISEG_REGNUM and I387_FOSEG_REGNUM in 64-bit mode.
7236 (amd64_collect_fxsave): Likewise.
7237
7238 * i386-sol2-tdep.c: Include "gdb_string.h".
7239 (i386_sol2_sigtramp_p): Recognize signal trampoline based on its
7240 name.
7241 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
7242
7243 2004-04-10 Mark Kettenis <kettenis@gnu.org>
7244
7245 * i386-sol2-tdep.c: Include "solib-svr4.h".
7246 (i386_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
7247 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
7248 * config/i386/tm-i386sol2.h: Include :solib.h".
7249 * config/i386/i386sol2.mh (NATDEPFILES): Remove solib.o,
7250 solib-svr4.o and solib-legacy.o.
7251 * config/i386/i386sol2.mt (TDEPFILES): Add solib.o and
7252 solib-svr4.o.
7253
7254 2004-04-09 Mark Kettenis <kettenis@gnu.org>
7255
7256 * amd64-linux-nat.c (fetch_inferior_registers): Correctly check
7257 whether a register is supplied by PTRACE_GETFPREGS.
7258 (store_inferior_registers): Likewise.
7259 * amd64bsd-nat.c (fetch_inferior_registers): Correctly check
7260 whether a register is supplied by PT_GETFPREGS.
7261 (store_inferior_registers): Likewise.
7262
7263 * config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
7264 * config/i386/linux64.mt (TDEPFILES): Likewise.
7265
7266 * i386-linux-nat.c: Update copyrigth year. Tweak comment.
7267
7268 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
7269 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
7270 the program counter is in the range specified by `struct
7271 gdbarch_tdep'.
7272 * amd64-linux-tdep.c: Include "symtab.h".
7273 (amd64_linux_pc_in_sigtramp): Remove function.
7274 (amd64_linux_sigtramp_p): New function.
7275 (amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
7276 deprecated_pc_in_sigtramp.
7277 * amd64nbsd-tdep.c: Include "symtab.h".
7278 (amd64nbsd_sigtramp_p): New function.
7279 (amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
7280 deprecated_pc_in_sigtramp.
7281 * amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
7282 few comments.
7283 (amd64obsd_pc_in_sigtramp): Remove function.
7284 (amd64obsd_sigtramp_p): New function.
7285 (amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
7286 deprecated_pc_in_sigtramp.
7287 * i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
7288 (i386bsd_pc_ins_sigtramp): Remove prototype.
7289 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
7290 * i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
7291 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
7292 the program counter is in the range specified by `struct
7293 gdbarch_tdep'.
7294 (i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
7295 (i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
7296 (i386_go32_pc_in_sigtramp): Remove function.
7297 (i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
7298 Initialize TDEP->sigtramp_p.
7299 (i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
7300 (i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
7301 deprecated_pc_in_sigtramp.
7302 * i386-linux-tdep.c: Adjust comments.
7303 (i386_linux_pc_in_sigtramp): Remove function.
7304 (i386_linux_sigtramp_p): New function.
7305 (i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
7306 deprecated_pc_in_sigtramp.
7307 * i386-nto-tdep.c: Update copyright year.
7308 (i386nto_pc_in_sigtramp): Remove function.
7309 (i386nto_sigtramp_p): New function.
7310 (i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
7311 SP_REGNUM.
7312 (i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
7313 deprecated_pc_in_sigtramp.
7314 * i386-sol2-tdep.c: Update copyright year.
7315 (i386_sol2_pc_in_sigtramp): Remove function.
7316 (i386_sol2_sigtramp_p): New function.
7317 (i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
7318 deprecated_pc_in_sigtramp.
7319 * i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
7320 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
7321 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
7322 deprecated_sigtramp_start and deprecated_sigtramp_end.
7323 * i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
7324 (i386nbsd_pc_in_sigtramp): Remove function.
7325 (i386nbsd_sigtramp_p): New function.
7326 (i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
7327 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
7328 TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
7329 * i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
7330 (i386obsd_pc_in_sigtramp): Remove function.
7331 (i386obsd_sigtramp_p): New function.
7332 (i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
7333 functions.
7334 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
7335 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
7336 TDEP->sigtramp_p.
7337 * Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
7338 amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
7339 dependencies.
7340
7341 * config/i386/i386aout.mt: Remove file.
7342
7343 * configure.tgt: Remove i[34567]86-*-go32*,
7344 i[34567]86-*-msdosdjgpp*, i[34567]86-*-sco*, i[34567]86-*-sysv*
7345 and i[34567]86-*-isc*. Set gdb_target to i386 for
7346 i[34567]86-*-netware* and i[34567]86-*-*.
7347 * config/i386/i386.mt: New file.
7348 * config/i386/embed.mt: Remove file.
7349 * config/i386/go32.mt: Remove file.
7350 * config/i386/i386nw.mt: Remove file.
7351 * config/i386/i386v.mt: Remove file.
7352 * config/i386/tm-go32.h: Remove file.
7353
7354 * tui/tui-hooks.c: Include "readline/readline.h" after
7355 "gdb_curses.h" instead of before.
7356 * tui/tui-io.c: Likewise.
7357
7358 * tui/tui.c: Fix typo in comment.
7359
7360 * sparc64-tdep.c (sparc_address_from_register): Remove function.
7361
7362 2004-04-08 Andrew Cagney <cagney@redhat.com>
7363
7364 * breakpoint.h (deprecated_exception_catchpoints_are_fragile)
7365 (deprecated_exception_support_initialized): Declare.
7366 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support)
7367 (initialize_hp_cxx_exception_support)
7368 (child_enable_exception_callback): Update.
7369 * breakpoint.c (deprecated_exception_catchpoints_are_fragile)
7370 (deprecated_exception_support_initialized): Rename
7371 deprecated_exception_catchpoints_are_fragile and
7372 deprecated_exception_support_initialized.
7373 (breakpoint_init_inferior, breakpoint_init_inferior): Update.
7374
7375 * symtab.c (deprecated_hp_som_som_object_present): Rename
7376 hp_som_som_object_present.
7377 * symtab.h (deprecated_hp_som_som_object_present): Declare.
7378 * symfile.c (hp_som_som_object_present, RESET_HP_UX_GLOBALS):
7379 Update. Delete extern declaration.
7380 * valops.c (hp_som_som_object_present): Ditto.
7381 * parse.c (deprecated_hp_som_som_object_present)
7382 (parse_nested_classes_for_hpacc): Ditto.
7383 * hpread.c (hp_som_som_object_present, hpread_expand_symtab): Ditto.
7384 * hppa-hpux-tdep.c (hp_som_som_object_present)
7385 (initialize_hp_cxx_exception_support): Ditto.
7386 * eval.c (hp_som_som_object_present, evaluate_subexp_standard): Ditto.
7387 * cp-valprint.c (hp_som_som_object_present)
7388 (cp_print_class_method): Ditto.
7389 * c-typeprint.c (hp_som_som_object_present):
7390 (c_type_print_base): Ditto.
7391 * c-exp.y (hp_som_som_object_present): Ditto.
7392
7393 2004-04-08 Andrew Cagney <cagney@redhat.com>
7394
7395 * frame-unwind.c (struct frame_unwind_table, frame_unwind_init)
7396 (frame_unwind_prepend_unwinder, frame_unwind_append_sniffer)
7397 (frame_unwind_find_by_frame): Re-implement the unwind code so
7398 that it can both prepend and append sniffers. Replace
7399 frame_unwind_register_unwinder with frame_unwind_prepend_unwinder.
7400 * tramp-frame.c (tramp_frame_append): Use
7401 frame_unwind_prepend_unwinder.
7402 * frame-unwind.h (frame_unwind_prepend_unwinder): Replace
7403 frame_unwind_register_unwinder.
7404 * tramp-frame.h (tramp_frame_prepend_unwinder): Rename
7405 tramp_frame_append.
7406 * tramp-frame.c (tramp_frame_prepend_unwinder): Update.
7407 * mips-linux-tdep.c (mips_linux_init_abi, mips_linux_init_abi)
7408 (mips_linux_init_abi): Update.
7409
7410 2004-04-08 Kevin Buettner <kevinb@redhat.com>
7411
7412 * ppc-linux-tdep.c (ELF_NREG, ELF_NFPREG, ELF_NVRREG)
7413 (ELF_FPREGSET_SIZE): Delete constants formerly used in core
7414 file support.
7415
7416 2004-04-07 Kevin Buettner <kevinb@redhat.com>
7417
7418 * ia64-tdep.c (elf.h): Don't include.
7419 (elf/ia64.h) [HAVE_LIBUNWIND_IA64_H]: Include.
7420
7421 2004-04-07 Jason Molenda (jmolenda@apple.com)
7422
7423 * frame.h: Typeo corrections in comments.
7424
7425 2004-04-07 Jim Blandy <jimb@redhat.com>
7426
7427 * i386-tdep.c (i386_stab_reg_to_regnum): Correct numbering for
7428 %esp and %ebp
7429
7430 2004-04-07 Mark Kettenis <kettenis@gnu.org>
7431
7432 * config/sparc/linux.mt (TDEPFILES): Remove solib-legacy.o.
7433 * config/sparc/linux64.mt (TDEPFILES): Likewise.
7434 * config/sparc/sol2.mt (TDEPFILES): Add solib.o and solib-svr4.o.
7435 * config/sparc/sol2.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
7436 and solib-legacy.o.
7437 * config/sparc/sol2-64.mt (TDEPFILES): Add solib.o and
7438 solib-svr4.o.
7439 * config/sparc/tm-sol2.h: Update copyright year. Include
7440 "solib.h".
7441
7442 * sparc-sol2-tdep.c: Update copyright year. Include
7443 "solib-svr4.h".
7444 (sparc32_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
7445 * sparc64-sol2-tdep.c: Include "solib-svr4.h".
7446 (sparc64_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
7447 * Makefile.in (sparc-sol2-tdep.o, sparc64-sol2-tdep.o): Update
7448 dependencies.
7449
7450 2004-04-06 Andrew Cagney <cagney@redhat.com>
7451
7452 * infttrace.c: Include "infttrace.h".
7453 * infttrace.h: Include "target.h".
7454 * Makefile.in (infttrace_h): Update.
7455 (infttrace.o): Update.
7456
7457 2004-04-06 Andrew Cagney <cagney@redhat.com>
7458
7459 * hppah-nat.c (hpux_has_forked, hpux_has_vforked)
7460 (hpux_has_execd, hpux_has_syscall_event): Include "infttrace.h",
7461 move extern declarations from here ...
7462 * infttrace.h: ... to here.
7463 * Makefile.in (hppah-nat.o): Update dependencies.
7464
7465 * hppa-tdep.c (hppa_breakpoint_from_pc): Make static.
7466 (hppa_gdbarch_init): Set gdbarch_breakpoint_from_pc
7467 * config/pa/tm-hppa.h (BREAKPOINT_FROM_PC, BREAKPOINT32):
7468 (hppa_breakpoint_from_pc): Delete.
7469
7470 * MAINTAINERS: Mark hppa-elf as buildable with -Werror.
7471
7472 2004-04-05 Andrew Cagney <cagney@redhat.com>
7473
7474 * hppa-tdep.c: Do not include <sys/types.h>, <sys/param.h>,
7475 <signal.h>, <sys/ptrace.h>, #include "a.out.encap.h",
7476 <sys/file.h>.
7477
7478 2004-04-06 Randolph Chung <tausq@debian.org>
7479
7480 Committed by Andrew Cagney (mechanical change).
7481 * hppa-tdep.c: (args_for_find_stub, hp_som_som_object_present,
7482 exception_catchpoints_are_fragile, find_stub_with_shl_get,
7483 cover_find_stub_with_shl_get, initialize_hp_cxx_exception_support,
7484 child_enable_exception_callback, current_ex_event,
7485 null_symtab_and_line, child_get_current_exception_event,
7486 HP_ACC_EH_notify_hook, HP_ACC_EH_set_hook_value,
7487 HP_ACC_EH_notify_callback, HP_ACC_EH_break, HP_ACC_EH_catch_throw,
7488 HP_ACC_EH_catch_catch, __eh_notification, hp_cxx_exception_support,
7489 hp_cxx_exception_support_initialized, eh_notify_hook_addr,
7490 eh_notify_callback_addr, eh_break_addr, eh_catch_catch_addr,
7491 eh_catch_throw_addr, break_callback_sal, setup_d_pid_in_inferior):
7492 Move hpux-specific definitions ...
7493 * hppa-hpux-tdep.c: ... to here.
7494
7495 2004-04-05 Andrew Cagney <cagney@redhat.com>
7496
7497 * hppa-tdep.c (hppa_frame_cache): Pass the frame's func to
7498 skip_prologue_using_sal.
7499
7500 2004-04-05 Andrew Cagney <cagney@redhat.com>
7501
7502 * config/i386/tm-i386.h: Delete file.
7503 * config/i386/tm-vxworks.h: Update copyright, do not include
7504 "tm-i386.h".
7505 * config/i386/tm-nto.h, config/i386/tm-linux.h: Ditto.
7506 * config/i386/tm-i386sol2.h, config/i386/tm-i386lynx.h: Ditto.
7507 * config/i386/tm-go32.h, config/i386/tm-cygwin.h: Ditto.
7508 * config/i386/ncr3000.mt (TM_FILE): Delete.
7509 * config/i386/interix.mt (TM_FILE): Delete.
7510 * config/i386/i386v.mt (TM_FILE): Delete.
7511 * config/i386/i386nw.mt (TM_FILE): Delete.
7512 * config/i386/i386gnu.mt (TM_FILE): Delete.
7513 * config/i386/i386aout.mt (TM_FILE): Delete.
7514 * config/i386/embed.mt (TM_FILE): Delete.
7515
7516 2004-04-05 Kevin Buettner <kevinb@redhat.com>
7517
7518 * frv-tdep.h (fsr0_regnum, acc0_regnum, acc7_regnum, accg0123_regnum)
7519 (accg4567_regnum, msr0_regnum, msr1_regnum, gner0_regnum)
7520 (gner1_regnum, fner0_regnum, fner1_regnum, accg0_regnum)
7521 (accg7_regnum): New constants.
7522 (last_spr_regnum, last_pseudo_regnum): Update.
7523 * frv-tdep.c (new_variant): Initialize names for fsr0, acc0-acc7,
7524 accg0-accg7, msr0, msr1, gner0, gner1, fner0, and fner1.
7525 (frv_pseudo_register_read, frv_pseudo_register_write): Add support
7526 for accg registers.
7527 (frv_register_sim_regno): Update spr_map[].
7528
7529 2004-04-04 Andrew Cagney <cagney@redhat.com>
7530
7531 * config/mips/xm-riscos.h: Delete.
7532 * config/mips/xm-mipsv4.h, config/mips/xm-mips.h: Delete.
7533 * config/mips/tm-mipsv4.h, config/mips/riscos.mh: Delete.
7534 * config/mips/nm-riscos.h, config/mips/nm-news-mips.h: Delete.
7535 * config/mips/nm-mips.h, config/mips/news-mips.mh: Delete.
7536 * config/mips/news-mips.mh, config/m68k/tm-m68kv4.h: Delete.
7537 * config/mips/decstation.mh, config/mips/littlemips.mh: Delete.
7538 * config/mips/mipsv4.mt, config/m68k/tm-sun3.h: Delete.
7539 * config/m68k/xm-sun3os4.h, config/m68k/xm-sun3.h: Delete.
7540 * config/m68k/xm-sun2.h, config/m68k/xm-m68kv4.h: Delete.
7541 * config/m68k/xm-dpx2.h, config/m68k/xm-delta68.h: Delete.
7542 * config/m68k/xm-3b1.h, config/m68k/tm-sun3os4.h: Delete.
7543 * config/m68k/tm-m68klynx.h, config/m68k/tm-dpx2.h: Delete.
7544 * config/m68k/tm-delta68.h, config/m68k/tm-3b1.h: Delete.
7545 * config/m68k/sun3os4.mt, config/m68k/nm-sysv4.h: Delete.
7546 * config/m68k/nm-sun3.h, config/m68k/sun3os4.mh: Delete.
7547 * config/m68k/sun2os3.mh, config/m68k/nm-sun2.h: Delete.
7548 * config/m68k/nm-m68klynx.h, config/m68k/sun3os3.mt: Delete.
7549 * config/m68k/nm-dpx2.h, config/m68k/sun2os3.mt: Delete.
7550 * config/m68k/dpx2.mh, config/m68k/sun3os3.mh: Delete.
7551 * config/m68k/sun2os4.mh, config/m68k/nm-delta68.h: Delete.
7552 * config/m68k/m68kv4.mt, config/m68k/m68klynx.mt: Delete.
7553 * config/m68k/3b1.mt, config/m68k/m68klynx.mh: Delete.
7554 * config/m68k/m68kv4.mh, config/m68k/sun2os4.mt: Delete.
7555 * config/m68k/tm-sun2os4.h, config/m68k/3b1.mh: Delete.
7556 * config/m68k/dpx2.mt, config/m68k/delta68.mt: Delete.
7557 * config/m68k/tm-sun2.h, config/m68k/delta68.mh: Delete.
7558
7559 * configure.tgt: Remove m68000-*-sunos3*, m68000-*-sunos4*,
7560 m68*-bull-sysv*, m68*-att-*, m68*-motorola-*, m68*-*-lynxos*,
7561 m68*-*-sunos3*, m68*-*-sunos4*, m68*-*-sysv4*, mips*-*-sysv4*.
7562 * configure.host: Remove m680[01]0-sun-sunos3*,
7563 m680[01]0-sun-sunos4*, m68*-att-*, m68*-bull*-sysv*,
7564 m68*-*-lynxos*, m68*-*-sysv4*, m68*-motorola-*, m68*-sun-sunos3*,
7565 m68*-sun-sunos4*, m68*-sun-*, mips-dec-*, mips-little-*,
7566 mips-sony-*, mips-*-mach3*, mips-*-sysv4*, mips-*-sysv*,
7567 mips-*-riscos*.
7568 * NEWS: Mention removed systems.
7569
7570 2004-04-04 Andrew Cagney <cagney@redhat.com>
7571
7572 GDB 6.1 release created from 6.1 branch.
7573
7574 2004-04-04 Andrew Cagney <cagney@redhat.com>
7575
7576 * gnu-nat.c (gnu_wait): Use memcpy instead of bcopy.
7577 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
7578 * remote-vx68.c (vx_read_register, vx_write_register): Ditto.
7579
7580 * config/vax/xm-vax.h (FAULT_CODE_ORIGIN, INIT_STACK): Delete.
7581 * config/alpha/xm-alphaosf.h (NO_SIGINTERRUPT): Delete.
7582 * config/alpha/xm-alphalinux.h (NO_SIGINTERRUPT): Delete.
7583
7584 2004-04-03 Jim Blandy <jimb@redhat.com>
7585
7586 * MAINTAINERS: Chris Faylor has changed employers; add him to
7587 "paper trail" section, and update his E-mail address.
7588
7589 2004-04-03 Andrew Cagney <cagney@redhat.com>
7590
7591 * frame-unwind.c (frame_unwind_find_by_frame): Delete check for
7592 generic dummy frames.
7593 * dummy-frame.c: Update copyright.
7594 (dummy_frame_sniffer): Delete check for generic dummy frames.
7595
7596 * config/pa/tm-hppa.h (REG_PARM_STACK_SPACE): Delete.
7597 * config/pa/tm-hppa64.h (PA20W_CALLING_CONVENTIONS)
7598 (REG_PARM_STACK_SPACE): Delete.
7599 * hppa-tdep.c (hppa64_push_dummy_call, hppa32_push_dummy_call):
7600 Inline reference to REG_PARM_STACK_SPACE.
7601
7602 * config/pa/tm-hppah.h (FRAME_SAVED_PC_IN_SIGTRAMP)
7603 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
7604 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
7605 (FRAME_BASE_BEFORE_SIGTRAMP)
7606 (hppa32_hpux_frame_base_before_sigtramp)
7607 (hppa32_hpux_frame_saved_pc_in_sigtramp): Delete.
7608 * config/pa/tm-hppa64.h (hppa64_hpux_frame_saved_pc_in_sigtramp)
7609 (hppa64_hpux_frame_find_saved_regs_in_sigtramp)
7610 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
7611 (FRAME_BASE_BEFORE_SIGTRAMP)
7612 (hppa64_hpux_frame_base_before_sigtramp)
7613 (FRAME_SAVED_PC_IN_SIGTRAMP): Delete.
7614
7615 2004-04-03 Andrew Cagney <cagney@redhat.com>
7616
7617 * PROBLEMS: Mention that GDB doesn't build on HP/UX 11.00.
7618
7619 2004-04-02 Andrew Cagney <cagney@redhat.com>
7620
7621 * sh64-tdep.c (sh64_init_extra_frame_info): Replace
7622 DEPRECATED_CALL_DUMMY_LENGTH with 0, simplify.
7623 * dummy-frame.h: Delete out-of-date comments.
7624 * gdbarch.sh (DEPRECATED_CALL_DUMMY_LENGTH): Delete.
7625 * gdbarch.h, gdbarch.c: Re-generate.
7626
7627 2004-04-02 Joel Brobecker <brobecker@gnat.com>
7628
7629 Committed by Andrew Cagney <cagney@redhat.com>.
7630 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Do not take
7631 into account an instruction saving a register if we have already
7632 seen an earlier instruction saving that same register.
7633
7634 2004-04-02 Andrew Cagney <cagney@redhat.com>
7635
7636 * gdbarch.sh (DEPRECATED_INIT_FRAME_PC_FIRST): Delete.
7637 * gdbarch.h, gdbarch.c: Re-generate.
7638 * frame.c (legacy_get_prev_frame): Delete references to
7639 DEPRECATED_INIT_FRAME_PC_FIRST.
7640
7641 * infrun.c (pc_in_sigtramp): Delete function.
7642 (check_sigtramp2): Inline call to pc_in_sigtramp, use
7643 get_frame_type.
7644
7645 2004-04-02 Andrew Cagney <cagney@redhat.com>
7646
7647 * infrun.c (handle_step_into_function): Delete code conditional on
7648 legacy_frame_p.
7649 (handle_inferior_event, step_over_function): Ditto.
7650
7651 2004-04-02 Andrew Cagney <cagney@redhat.com>
7652
7653 * frame.c (get_prev_frame_1): Exclude signal trampolines from the
7654 "previous frame inner to this frame" test.
7655
7656 2004-04-02 Andrew Cagney <cagney@redhat.com>
7657
7658 * frame.c (safe_frame_unwind_memory): New function.
7659 * frame.h (safe_frame_unwind_memory): Declare. Update description
7660 of /safe_/ methods.
7661 * tramp-frame.c (tramp_frame_start): Re-order parmeters, add
7662 "next_frame". Use safe_frame_unwind_memory.
7663 (tramp_frame_sniffer): Update call to tramp_frame_start.
7664
7665 2004-04-01 Daniel Jacobowitz <drow@mvista.com>
7666
7667 * dwarf2read.c (dwarf2_objfile_data_key): New.
7668 (struct dwarf2_per_objfile, dwarf2_per_objfile): New.
7669 (dwarf_info_size, dwarf_abbrev_size, dwarf_line_size)
7670 (dwarf_pubnames_size, dwarf_aranges_size, dwarf_loc_size)
7671 (dwarf_macinfo_size, dwarf_str_size, dwarf_ranges_size)
7672 (dwarf_frame_size, dwarf_eh_frame_size, dwarf_info_buffer)
7673 (dwarf_abbrev_buffer, dwarf_line_buffer, dwarf_str_buffer)
7674 (dwarf_macinfo_buffer, dwarf_ranges_buffer, dwarf_loc_buffer):
7675 Remove variables.
7676 (struct dwarf2_pinfo): Remove per-objfile members. Update comments.
7677 (DWARF_ABBREV_SIZE, DWARF_LINE_SIZE)
7678 (DWARF_LOC_SIZE, DWARF_MACINFO_SIZE, DWARF_STR_SIZE)
7679 (DWARF_RANGES_SIZE, DWARF_INFO_BUFFER)
7680 (DWARF_ABBREV_BUFFER, DWARF_LINE_BUFFER, DWARF_STR_BUFFER)
7681 (DWARF_MACINFO_BUFFER, DWARF_RANGES_BUFFER, DWARF_LOC_BUFFER):
7682 Remove macros.
7683 (dwarf2_has_info): Take an objfile argument. Allocate per-objfile
7684 data.
7685 (dwarf2_locate_sections, dwarf2_build_psymtabs)
7686 (dwarf2_build_psymtabs_easy, dwarf2_build_psymtabs_hard)
7687 (skip_one_die, dwarf2_get_pc_bounds, dwarf2_read_abbrevs)
7688 (read_partial_die, read_full_die, read_indirect_string)
7689 (dwarf_decode_line_header, dwarf_decode_macros)
7690 (dwarf2_symbol_mark_computed): Remove use of removed macros.
7691 Update uses of removed variables.
7692 (psymtab_to_symtab_1): Restore per-objfile data pointer. Remove use
7693 of removed macros.
7694 (_initialize_dwarf2_read): New function.
7695 * symfile.h (dwarf2_has_info): Update prototype.
7696 * coffread.c (coff_symfile_read): Update call to dwarf2_has_info.
7697 * elfread.c (elf_symfile_read): Likewise.
7698
7699 2004-04-01 Jim Blandy <jimb@redhat.com>
7700
7701 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): New, unified
7702 function for register numbers on all the rs6000-derived targets.
7703 (rs6000_gdbarch_init): Don't register a separate
7704 gdbarch_dwarf2_reg_to_regnum function for the E500. Use
7705 rs6000_dwarf2_stab_reg_to_regnum for both Dwarf 2 and stabs on all
7706 variants.
7707
7708 * i386-tdep.c: Add FIXME regarding STABS vs. Dwarf 2 register
7709 numbering.
7710
7711 2004-04-01 Paul N. Hilfinger <Hilfinger@gnat.com>
7712
7713 * valarith.c: Update copyright notice.
7714 (value_add): Handle range types.
7715 (value_sub): Ditto.
7716 (value_equal): Ditto.
7717 (value_less): Ditto.
7718 (value_neg): Ditto.
7719 (value_complement): Ditto.
7720 (value_binop): Simplify slightly by using is_integral_type and
7721 eliminiating unnecessary COERCE_ENUMs.
7722
7723 2004-03-31 Andrew Cagney <cagney@redhat.com>
7724
7725 * frame.h (frame_unwind_id): Declare.
7726 * frame.c (frame_unwind_id): New function.
7727 (get_prev_frame_1): New function.
7728 (frame_debug_got_null_frame): New function.
7729 (get_prev_frame): Use frame_debug_got_null_frame. Move unwind
7730 code proper to prev_frame, update description.
7731 * infrun.c (step_over_function): Use frame_unwind_id.
7732
7733 2004-04-31 J. Brobecker <brobecker@gnat.com>
7734
7735 * hppa-tdep.c (hppa32_push_dummy_call): Set the Stack Pointer.
7736 (hppa64_push_dummy_call): Likewise.
7737
7738 2004-03-30 Jim Blandy <jimb@redhat.com>
7739
7740 From Ulrich Weigand:
7741 * utils.c (query): Do not use a va_list variable multiple times.
7742
7743 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
7744
7745 * Makefile.in (linux_nat_h): Update dependencies.
7746 * configure.in: Check for <gnu/libc-version.h>.
7747 * configure: Regenerate.
7748 * config.in: Regenerate.
7749 * linux-nat.h: Include "target.h". Add waitstatus field to
7750 struct lwp_info.
7751 * lin-lwp.c (add_lwp): Initialize waitstatus.kind.
7752 (lin_lwp_attach_lwp): Don't attach to LWPs we have already attached
7753 to.
7754 (lin_lwp_handle_extended): New function. Handle clone events.
7755 (wait_lwp): Use lin_lwp_handle_extended. Update comment about
7756 thread exit events.
7757 (child_wait): Handle clone events.
7758 (lin_lwp_wait: Use lin_lwp_handle_extended and handle clone events.
7759 * linux-nat.c (linux_enable_event_reporting): Turn on
7760 PTRACE_O_TRACECLONE.
7761 (linux_handle_extended_wait): Handle clone events.
7762 * thread-db.c: Include <gnu/libc-version.h>.
7763 (struct private_thread_info): Add dying flag.
7764 (enable_thread_event_reporting): Enable TD_DEATH for glibc 2.2 and
7765 higher.
7766 (attach_thread): Update comments. Handle dying threads.
7767 (detach_thread): Set the dying flag.
7768 (check_event): Always call attach_thread.
7769
7770 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
7771
7772 * mips-tdep.c (mips_pdr_data): New.
7773 (non_heuristic_proc_desc): Use objfile_data and set_objfile_data.
7774 (_initialize_mips_tdep): Initialize mips_pdr_data.
7775
7776 2004-03-29 Corinna Vinschen <vinschen@redhat.com>
7777
7778 * minsyms.c (install_minimal_symbols): Move dropping leading
7779 char from linkage name from here...
7780 (prim_record_minimal_symbol_and_info): ...to here. Simplify
7781 test for "__gnu_compiled*" symbols.
7782
7783 2004-03-28 Jim Blandy <jimb@redhat.com>
7784
7785 * rs6000-tdep.c (skip_prologue): Recognize moves from argument
7786 registers to temp register r0 and byte stores as prologue
7787 instructions.
7788
7789 2004-03-28 Andrew Cagney <cagney@redhat.com>
7790
7791 * PROBLEMS (Stack backtraces): Rewrite. Remove reference to
7792 arm*-*-*.
7793
7794 2004-03-28 Stephane Carrez <stcarrez@nerim.fr>
7795
7796 * tui/tui-regs.c (tui_show_registers): Make sure the TUI is active
7797 and switch the layout to force a display of register window.
7798
7799 2004-02-26 J. Brobecker <brobecker@gnat.com>
7800
7801 * amd64-tdep.c (amd64_classify): make RANGE_TYPE objects be part
7802 of the INTEGER class.
7803
7804 2004-03-26 Jim Blandy <jimb@redhat.com>
7805
7806 * ppc-linux-tdep.c (ppc_linux_init_abi): Long doubles are eight
7807 bytes long on PPC GNU/Linux.
7808
7809 2004-03-26 David Carlton <carlton@kealia.com>
7810
7811 * PROBLEMS: Refer to gdb/1588 instead of gdb/826.
7812
7813 2004-03-25 Andrew Cagney <cagney@redhat.com>
7814
7815 * PROBLEMS: Add general section titles, remove references to
7816 specific releases.
7817
7818 2004-03-25 Daniel Jacobowitz <drow@mvista.com>
7819
7820 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE): Define to
7821 INT_REGISTER_SIZE.
7822 (arm_linux_push_arguments): Use TARGET_DOUBLE_BIT instead of
7823 FP_REGISTER_VIRTUAL_SIZE.
7824 * arm-tdep.c (arm_make_sigtramp_cache): Use register_size instead
7825 of DEPRECATED_REGISTER_RAW_SIZE.
7826 (arm_register_type): Add gdbarch argument.
7827 (arm_register_raw_size, arm_register_virtual_size): Delete.
7828 (arm_register_byte, arm_extract_return_value)
7829 (arm_store_return_value, arm_get_longjmp_target): Update references
7830 to INT_REGISTER_RAW_SIZE and FP_REGISTER_RAW_SIZE.
7831 (arm_gdbarch_init): Likewise. Don't set
7832 deprecated_register_raw_size, deprecated_register_virtual_size,
7833 deprecated_max_register_raw_size,
7834 deprecated_max_register_virtual_size, or
7835 deprecated_max_register_virtual_type. Do set register_type.
7836 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE)
7837 (ARM_MAX_REGISTER_VIRTUAL_SIZE, INT_REGISTER_VIRTUAL_SIZE)
7838 (FP_REGISTER_VIRTUAL_SIZE): Delete.
7839 (INT_REGISTER_RAW_SIZE): Rename to INT_REGISTER_SIZE.
7840 (FP_REGISTER_RAW_SIZE): Rename to FP_REGISTER_SIZE.
7841 * arm-linux-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Define to
7842 INT_REGISTER_SIZE.
7843 * remote-rdp.c (remote_rdp_fetch_register): Use MAX_REGISTER_SIZE.
7844 (remote_rdp_store_register): Likewise.
7845
7846 2004-03-24 Daniel Jacobowitz <drow@mvista.com>
7847
7848 * Makefile.in (mips-linux-tdep.o): Update dependencies.
7849 * mips-tdep.c (mips_gdbarch_init): Move frame predicates
7850 to after osabi initialization.
7851 * mips-linux-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
7852 (mips_linux_o32_sigframe_init, mips_linux_n32n64_sigframe_init): New
7853 functions.
7854 (mips_linux_o32_sigframe, mips_linux_o32_rt_sigframe)
7855 (mips_linux_n32_rt_sigframe, mips_linux_n64_rt_sigframe): New
7856 variables.
7857 (mips_linux_init_abi): Append signal trampoline unwinders.
7858
7859 2004-03-24 Andrew Cagney <cagney@redhat.com>
7860
7861 * tramp-frame.h (TRAMP_SENTINEL_INSN): Define, document.
7862 * tramp-frame.c: Include "gdb_assert.h".
7863 (tramp_frame_start): Use TRAMP_SENTINEL_INSN. Use ULONGEST and
7864 correct sizeof.
7865 (tramp_frame_append): Validate the tramp frame's instructions.
7866 * Makefile.in (tramp-frame.o): Update dependencies.
7867
7868 2004-03-23 Andrew Cagney <cagney@redhat.com>
7869
7870 * trad-frame.h (trad_frame_set_reg_addr): Declare.
7871
7872 2004-03-23 Andrew Cagney <cagney@redhat.com>
7873
7874 * MAINTAINERS (Past Maintainers): Add Mark Salter and Fernando
7875 Nasser as past testsuite/lib/ (and other) maintainers.
7876
7877 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
7878
7879 * infcmd.c (attach_command): Reread symbols if we already have
7880 an exec file.
7881
7882 2004-03-23 Andrew Cagney <cagney@redhat.com>
7883
7884 * rs6000-tdep.c (frame_get_saved_regs): Delete unused function.
7885
7886 2004-03-23 Andrew Cagney <cagney@redhat.com>
7887
7888 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): Deprecate.
7889 * gdbarch.h, gdbarch.c: Re-generate.
7890 * i386obsd-tdep.c (i386obsd_init_abi): Update.
7891 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
7892 * i386bsd-tdep.c (i386bsd_init_abi): Update.
7893 * config/vax/tm-vaxbsd.h (DEPRECATED_SIGTRAMP_END)
7894 (DEPRECATED_SIGTRAMP_START): Update.
7895 * config/m68k/tm-nbsd.h (DEPRECATED_SIGTRAMP_END)
7896 (DEPRECATED_SIGTRAMP_START): Update.
7897 * blockframe.c (find_pc_sect_partial_function): Update.
7898 * arch-utils.c (legacy_pc_in_sigtramp): Update.
7899
7900 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
7901
7902 * remote.c (remote_open_1): Reopen the exec file and reread symbols
7903 if necessary.
7904
7905 2004-03-23 Andrew Cagney <cagney@redhat.com>
7906
7907 * gdbarch.sh (PC_IN_SIGTRAMP): Change to a function with
7908 predicate, deprecate.
7909 * gdbarch.h, gdbarch.c: Re-generate.
7910 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
7911 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
7912 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Update.
7913 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
7914 * alphanbsd-tdep.c (alphanbsd_init_abi): Update.
7915 * amd64-linux-tdep.c (amd64_linux_init_abi): Update.
7916 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Update.
7917 * amd64nbsd-tdep.c (amd64nbsd_init_abi): Update.
7918 * amd64obsd-tdep.c (amd64obsd_init_abi): Update.
7919 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Update.
7920 * blockframe.c (find_pc_partial_function): Update.
7921 * breakpoint.c (bpstat_what): Update.
7922 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update.
7923 * frv-linux-tdep.c (frv_linux_init_abi): Update.
7924 * frv-tdep.c (frv_sigtramp_frame_sniffer): Update.
7925 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Update.
7926 * i386-interix-tdep.c (i386_interix_init_abi): Update.
7927 * i386-linux-tdep.c (i386_linux_init_abi): Update.
7928 * i386-nto-tdep.c (i386nto_init_abi): Update.
7929 * i386-sol2-tdep.c (i386_sol2_init_abi): Update.
7930 * i386-tdep.c (i386_sigtramp_frame_sniffer)
7931 (i386_svr4_init_abi, i386_go32_init_abi, i386_gdbarch_init): Update.
7932 * i386bsd-tdep.c (i386bsd_init_abi): Update.
7933 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
7934 * i386obsd-tdep.c (i386obsd_init_abi): Update.
7935 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Update.
7936 * infrun.c (pc_in_sigtramp): Update.
7937 * m68k-tdep.c (m68k_sigtramp_frame_sniffer): Update.
7938 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
7939 * mips-tdep.c (mips_gdbarch_init): Update.
7940 * mipsnbsd-tdep.c (mipsnbsd_init_abi): Update.
7941 * ppc-linux-tdep.c: Update comment.
7942 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Update.
7943 * shnbsd-tdep.c (shnbsd_init_abi): Update.
7944 * sparc-linux-tdep.c (sparc32_linux_init_abi): Update.
7945 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Update.
7946 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Update.
7947 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Update.
7948 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Update.
7949 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Update.
7950 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Update.
7951 * sparcobsd-tdep.c (sparc32obsd_init_abi): Update.
7952
7953 2004-03-23 Andrew Cagney <cagney@redhat.com>
7954
7955 * tramp-frame.h, tramp-frame.h: New files.
7956 * Makefile.in (SFILES, tramp_frame_h, COMMON_OBS, tramp-frame.o):
7957 Update rules to include "tramp-frame.h" and "tramp-frame.c".
7958
7959 * Makefile.in: Update all dependencies.
7960
7961 2004-03-23 Andrew Cagney <cagney@redhat.com>
7962
7963 * Makefile.in (trad_frame_h): Add $(frame_h).
7964 * trad-frame.h: Update copyright. Include "frame.h".
7965 (struct trad_frame_cache, trad_frame_cache_zalloc): Declare.
7966 (trad_frame_set_id, trad_frame_get_id): Declare.
7967 (trad_frame_set_reg_addr, trad_frame_get_register): Declare.
7968 * trad-frame.c: Update copyright.
7969 (struct trad_frame_cache): Define.
7970 (trad_frame_cache_zalloc): New function.
7971 (trad_frame_set_id, trad_frame_get_id): New functions.
7972 (trad_frame_set_reg_addr, trad_frame_get_register): New functions.
7973
7974 2004-03-22 Andrew Cagney <cagney@redhat.com>
7975
7976 * s390-tdep.c (struct s390_stub_unwind_cache): Rename
7977 s390_pltstub_unwind_cache.
7978 (s390_stub_frame_unwind_cache): Rename
7979 s390_pltstub_frame_unwind_cache.
7980 (s390_stub_frame_this_id): Rename s390_pltstub_frame_this_id.
7981 (s390_stub_frame_prev_register): Rename
7982 s390_pltstub_frame_prev_register.
7983 (s390_stub_frame_unwind): Rename s390_pltstub_frame_unwind.
7984 (s390_stub_frame_sniffer): Rename s390_stub_frame_sniffer.
7985
7986 From Ulrich Weigand:
7987 * s390-tdep.c (s390_pltstub_frame_sniffer): Handle invalid function
7988 pointer calls like PLT calls.
7989
7990 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
7991
7992 * mips-tdep.c (non_heuristic_proc_desc): Search using the specified
7993 PC rather than the partial function start address. Use the start
7994 address to sanity check the found PDR.
7995
7996 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
7997
7998 * lin-lwp.c (lin_lwp_wait): Pass the LWP ID to
7999 linux_handle_extended_wait.
8000
8001 2004-03-22 Andrew Cagney <cagney@redhat.com>
8002
8003 * rs6000-tdep.c (frame_initial_stack_address): Delete unused
8004 function.
8005
8006 * frame.h (generic_pop_current_frame): Delete declaration.
8007 (deprecate_pop_dummy_frame): Deprecate
8008 generic_pop_dummy_frame.
8009 * dummy-frame.c (deprecated_pop_dummy_frame): Update.
8010 (generic_pop_current_frame): Delete function.
8011 * mn10300-tdep.c (mn10300_pop_frame): Eliminate call to
8012 generic_pop_current_frame.
8013 * v850-tdep.c (v850_pop_frame): Update.
8014 * mcore-tdep.c (mcore_pop_frame): Update.
8015 * sh64-tdep.c (sh64_pop_frame): Update.
8016 * h8300-tdep.c (h8300_pop_frame): Update.
8017
8018 2004-03-22 Andrew Cagney <cagney@redhat.com>
8019
8020 * frame.h (deprecated_pc_in_call_dummy): Rename
8021 generic_pc_in_call_dummy.
8022 * dummy-frame.h (pc_in_dummy_frame): Delete declaration.
8023 * dummy-frame.c (deprecated_pc_in_call_dummy): Rename
8024 generic_pc_in_call_dummy.
8025 (pc_in_dummy_frame): Make static.
8026 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Update.
8027 * gdbarch.h, gdbarch.c: Re-generate.
8028 * dummy-frame.c (dummy_frame_sniffer): Simplify.
8029 * frame.c (frame_type_from_pc): Call deprecated_pc_in_call_dummy.
8030 (legacy_get_prev_frame): Ditto.
8031 * inferior.h: Delete reference to generic_pc_in_call_dummy in
8032 comment.
8033
8034 2004-03-21 Andrew Cagney <cagney@redhat.com>
8035
8036 * inferior.h (deprecated_pc_in_call_dummy_at_entry_point): Delete
8037 declaration and out-of-date comment.
8038 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
8039 Delete function.
8040 * mn10300-tdep.c (mn10300_gdbarch_init): Do not set
8041 deprecated_pc_in_call_dummy.
8042
8043 * infrun.c (handle_inferior_event): For non legacy frames, use the
8044 frame ID and frame type to identify a signal trampoline. Update
8045 comments.
8046
8047 2004-03-21 Nathan J. Williams <nathanw@wasabisystems.com>
8048
8049 * mipsnbsd-tdep.c: Update copyright. Include "mips-tdep.h".
8050 * Makefile.in (mipsnbsd-tdep.o): Update dependencies.
8051
8052 2004-03-21 Andrew Cagney <cagney@redhat.com>
8053
8054 * frame-unwind.h: Update copyright.
8055 (struct frame_data): Add opaque declaration.
8056 (frame_sniffer_ftype): Declare.
8057 (struct frame_unwind): Add "unwind_data" and "sniffer".
8058 (frame_unwind_register_unwinder): Declare.
8059 (frame_unwind_find_by_frame): Add parameter "this_cache".
8060 * frame.c (get_frame_id, create_new_frame, legacy_get_prev_frame)
8061 (legacy_get_prev_frame, legacy_get_prev_frame)
8062 (get_frame_type): Pass the prologue_cache to
8063 frame_unwind_find_by_frame.
8064 * frame-unwind.c (struct frame_unwind_table_entry): Add field
8065 "unwinder".
8066 (frame_unwind_register_unwinder): New function.
8067 (frame_unwind_find_by_frame): Handle an unwind sniffer.
8068
8069 2004-03-20 Paul Hilfinger <hilfingr@nile.gnat.com>
8070
8071 * bcache.c (print_percentage): Use floating point to avoid
8072 incorrect results when portion*100 overflows.
8073
8074 2004-03-19 Kevin Buettner <kevinb@redhat.com>
8075
8076 * ppc_tdep.h (ppc_linux_frame_saved_pc)
8077 (ppc_linux_init_extra_frame_info)
8078 (ppc_linux_frameless_function_invocation)
8079 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain)
8080 (rs6000_frame_saved_pc, rs6000_init_extra_frame_info)
8081 (rs6000_frameless_function_invocation, rs6000_frame_init_saved_regs)
8082 (rs6000_frame_chain): Delete declarations.
8083 * ppc-linux-tdep.c (ppc_linux_frame_saved_pc)
8084 (ppc_linux_init_extra_frame_info)
8085 (ppc_linux_frameless_function_invocation)
8086 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain): Delete.
8087 (ppc_linux_init_abi): Remove registration of above deleted functions.
8088 * rs6000-tdep.c (rs6000_init_extra_frame_info)
8089 (rs6000_frame_init_saved_regs, rs6000_init_frame_pc_first)
8090 (rs6000_frame_args_address, rs6000_saved_pc_after_call)
8091 (rs6000_pop_frame, rs6000_frameless_function_invocation)
8092 (rs6000_frame_saved_pc, rs6000_frame_chain): Delete.
8093 (rs6000_gdbarch_init): Remove registration of above deleted functions.
8094 Use rs6000_unwind_pc(), rs6000_frame_sniffer(),
8095 rs6000_unwind_dummy_id(), and rs6000_frame_base_sniffer() for
8096 frame management for all OSABIs.
8097
8098 2004-03-19 Andrew Cagney <cagney@redhat.com>
8099
8100 Committed by Kevin Buettner <kevinb@redhat.com>.
8101
8102 * ppc-linux-tdep.c: Include "trad-frame.h", and "frame-unwind.h".
8103 Update copyright.
8104 (struct ppc_linux_sigtramp_cache, ppc_linux_sigtramp_cache)
8105 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
8106 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
8107 (ppc_linux_init_abi): Add both 32- and 64-bit signal trampoline
8108 unwinders. #ifdef legacy frame code.
8109 * rs6000-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
8110 "frame-base.h".
8111 (rs6000_unwind_pc, rs6000_unwind_dummy_id)
8112 (struct rs6000_frame_cache, rs6000_frame_cache)
8113 (rs6000_frame_this_id, rs6000_frame_prev_register)
8114 (rs6000_frame_sniffer, rs6000_frame_unwind)
8115 (rs6000_frame_base_address, rs6000_frame_base_sniffer)
8116 (rs6000_frame_base): Implement a traditional frame unwinder.
8117 (rs6000_gdbarch_init): When unknown, NetBSD, or GNU/Linux use the
8118 frame unwinder.
8119
8120 2004-03-19 Kevin Buettner <kevinb@redhat.com>
8121
8122 * breakpoint.c (adjust_breakpoint_address): Don't adjust
8123 breakpoint address for watchpoints or the catch eventpoints.
8124 Add new paramter ``bptype''. Adjust all callers.
8125
8126 2004-03-19 Andrew Cagney <cagney@redhat.com>
8127
8128 * config/pa/tm-hppa.h (GDB_TARGET_IS_HPPA): Delete unused macro.
8129
8130 * PROBLEMS: Delete note that ARM does not use frame code, problem
8131 fixed.
8132
8133 2004-03-18 Andrew Cagney <cagney@redhat.com>
8134
8135 * stack.c (return_command): Delete code wrapped in #ifdef
8136 DEPRECATED_CALL_DUMMY_HAS_COMPLETED, macro no longer defined.
8137
8138 * rs6000-tdep.c (skip_prologue): Record only the first LR save.
8139
8140 2004-03-18 Andrew Cagney <cagney@redhat.com>
8141
8142 * config/mips/tm-nbsd.h: Replace IN_SIGTRAMP with
8143 DEPRECATED_IN_SIGTRAMP.
8144 * config/powerpc/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8145 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP) Ditto.
8146 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8147 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8148 * config/ia64/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8149 * config/ia64/tm-aix.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8150 * config/arm/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8151 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8152 * arch-utils.c (legacy_pc_in_sigtramp): Ditto.
8153 * arch-utils.h: Remove reference to IN_SIGTRAMP in comment.
8154
8155 2004-03-18 Andrew Cagney <cagney@redhat.com>
8156
8157 * frame-base.c: Update copyright. Include "gdb_obstack.h".
8158 (struct frame_base_table_entry): Define.
8159 (struct frame_base_table): Re-implement as a linked list.
8160 (frame_base_init): Re-implement.
8161 (frame_base_table): Delete function.
8162 (append_predicate): Delete function.
8163 (frame_base_append_sniffer): Update.
8164 (frame_base_set_default): Update.
8165 (frame_base_find_by_frame): Update.
8166 (_initialize_frame_base): Use gdbarch_data_register_pre_init.
8167 * Makefile.in (frame-base.o): Update dependencies.
8168
8169 2004-03-17 Andrew Cagney <cagney@redhat.com>
8170
8171 * frame.c (legacy_get_prev_frame): Pass correct frame to
8172 frame_unwind_find_by_frame.
8173
8174 2004-03-17 David Carlton <carlton@kealia.com>
8175
8176 * NEWS: Mention C++ nested types and namespaces
8177
8178 2004-03-16 Michael Chastain <mec.gnu@mindspring.com>
8179
8180 * PROBLEMS: Add section headers, "Regressions since gdb 6.0"
8181 and "Regressions since gdb 5.3.". Add known regressions since
8182 gdb 6.0.
8183
8184 2004-03-16 David Carlton <carlton@kealia.com>
8185
8186 * dwarf2read.c (process_structure_scope): Process children even
8187 when we're a declaration.
8188
8189 2004-03-16 Andrew Cagney <cagney@redhat.com>
8190
8191 * symtab.h (find_pc_sect_partial_function): Delete declaration.
8192 * blockframe.c (find_pc_partial_function)
8193 (find_pc_sect_partial_function): Merge into a single
8194 find_pc_partial_function.
8195
8196 2004-03-16 Mark Kettenis <kettenis@gnu.org>
8197
8198 * i386bsd-nat.c: s/regno/regnum/g.
8199 (fetch_inferior_registers): Use I386_ST0_REGNUM instead of
8200 FP0_REGNUM.
8201 (store_inferior_registers): Likewise.
8202
8203 2004-03-16 Mark Kettenis <kettenis@gnu.org>
8204
8205 * i386bsd-nat.c (fill_fpregset): Call i387_collect_fsave instead
8206 of i387_fill_fsave.
8207 (store_inferior_registers): Call i387_collect_fsave and
8208 i387_collect_fxsave instead of i387_fill_fsave and
8209 i387_fill_fxsave.
8210
8211 2004-03-15 Andrew Cagney <cagney@redhat.com>
8212
8213 * Makefile.in (frame-unwind.o): Update dependencies.
8214 * frame-unwind.c: Include "gdb_obstack.h".
8215 (frame_unwind_init): Replace "gdbarch" parameter with an "obstack"
8216 parameter.
8217 (append_predicate): Delete function.
8218 (struct frame_unwind_table_entry): New structure.
8219 (struct frame_unwind_table): Replace "sniffer" with "head" and
8220 "tail".
8221 (frame_unwind_append_sniffer): Update.
8222 (frame_unwind_find_by_frame): Update.
8223 (_initialize_frame_unwind): Registe frame_unwind_init using
8224 gdbarch_data_register_pre_init.
8225
8226 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8227
8228 * i386bsd-nat.c: Update copyright year.
8229 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Undefine and then
8230 define unconditionally.
8231
8232 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8233
8234 * i387-tdep.h (i387_collect_fsave): New prototype.
8235 * i387-tdep.c (i387_collect_fsave): New function containing most
8236 of the code from i387_fill_fsave.
8237 (i387_fill_fsave): Call i387_collect_fsave.
8238
8239 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8240
8241 * i386-linux-tdep.c: Update copyright year.
8242 (i386_linux_svr4_fetch_link_map_offsets): Remove function.
8243 (i386_linux_init_abi): Set solib_svr4_fetch_link_maop_offsets to
8244 svr4_ilp32_link_map_offsets instead of
8245 i386_linux_svr4_fetch_link_map_offsets.
8246
8247 2004-03-15 David Carlton <carlton@kealia.com>
8248
8249 Fix for PR c++/1553:
8250 * dwarf2read.c (read_structure_type): Determine type name by
8251 calling determine_class_name.
8252 (determine_class_name): New.
8253 (determine_prefix): Look at TYPE_TAG_NAME and call
8254 determine_class_name when appropriate.
8255 (determine_prefix_aux, class_name): Delete.
8256 (read_namespace): Set die->type.
8257
8258 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8259
8260 * breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
8261 unused macro definition. The definition in target.h (or perhaps
8262 elsewhere) takes precedence.
8263
8264 2004-03-15 Andrew Cagney <cagney@redhat.com>
8265
8266 * ppc-tdep.h: Update copyright.
8267 (ppc_linux_supply_gregset, ppc_linux_supply_fpregset): Change
8268 function signatures to match "regsets.h".
8269 * ppc-linux-tdep.c: Include "regset.h".
8270 (ELF_GREGSET_SIZE): Delete.
8271 (right_supply_register): New function.
8272 (ppc_linux_supply_fpregset, ppc_linux_supply_gregset): Rewrite
8273 using right_supply_register.
8274 (ppc32_linux_supply_gregset, ppc64_linux_supply_gregset): New
8275 functions.
8276 (ppc64_linux_gregset, ppc32_linux_gregset): Define.
8277 (ppc_linux_init_abi): Register ppc_linux_regset_from_core_section.
8278 (_initialize_ppc_linux_tdep): Do not register
8279 ppc_linux_regset_core_fns.
8280 (ppc_linux_regset_from_core_section): Replace
8281 fetch_core_registers.
8282 (ppc_linux_regset_core_fns): Delete.
8283 * ppc-linux-nat.c: (right_fill_reg): New function.
8284 (supply_gregset): Update call to ppc_linux_supply_gregset.
8285 (fill_gregset): Clear the register set, use right_fill_reg.
8286 (supply_fpregset): Update call to ppc_linux_supply_fpregset.
8287 (fill_fpregset): Use right_fill_reg, correctly compute FP offsets.
8288
8289 * rs6000-tdep.c (rs6000_register_virtual_type): Make registers
8290 unsigned.
8291
8292 2004-03-15 Andrew Cagney <cagney@redhat.com>
8293
8294 * gdbarch.sh (gdbarch_data_pre_init_fytpe)
8295 (gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
8296 (gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
8297 and register_gdbarch_data.
8298 (deprecated_set_gdbarch_data): Rename set_gdbarch_data.
8299 (struct gdbarch_data): Replace "init" by "pre_init" and
8300 "post_init".
8301 * gdbarch.h, gdbarch.c: Re-generate.
8302 * dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
8303 with"obstack", use OBSTACK_ZALLOC.
8304 (dwarf2_frame_ops): Delete.
8305 (dwarf2_frame_set_init_reg): Use gdbarch_data.
8306 (dwarf2_frame_init_reg): Use gdbarch_data.
8307 (_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
8308 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets)
8309 (_initialize_svr4_solib): Update.
8310 * user-regs.c (_initialize_user_regs): Update.
8311 * reggroups.c (_initialize_reggroup): Update.
8312 * regcache.c (_initialize_regcache): Update.
8313 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
8314 * libunwind-frame.c (_initialize_libunwind_frame): Update.
8315 * gnu-v3-abi.c (init_gnuv3_ops): Update.
8316 * frame-unwind.c (_initialize_frame_unwind): Update.
8317 * frame-base.c (_initialize_frame_base): Update.
8318 * user-regs.c (user_reg_add): Update.
8319 * reggroups.c (reggroup_add): Update.
8320 * mips-linux-tdep.c (set_mips_linux_register_addr): Update.
8321 * libunwind-frame.c (libunwind_frame_set_descr): Update.
8322 * frame-unwind.c (frame_unwind_append_sniffer): Update.
8323 * frame-base.c (frame_base_table): Update.
8324 * remote.c (_initialize_remote): Update.
8325 * gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
8326
8327 2004-03-15 Andrew Cagney <cagney@redhat.com>
8328
8329 * cris-tdep.c (bfd_lookup_symbol): Delete unused function.
8330
8331 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8332
8333 * Makefile.in (frv-linux-tdep.o): Add dependencies.
8334 * frv-linux-tdep.c: New file.
8335 * frv-tdep.c (struct gdbarch_tdep): Add new field
8336 ``sigcontext_reg_addr''.
8337 (frv_set_sigcontext_reg_addr, frv_sigtramp,frame_cache)
8338 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
8339 (frv_sigramp_frame_sniffer): New functions.
8340 (frv_sigtramp_frame_unwind): New static global.
8341 (frv_gdbarch_init): Hook in ABI-specific overrides. Hook up frame
8342 sniffers.
8343 * frv-tdep.h (frv_set_sigcontext_reg_addr): New function.
8344 * config/frv/frv.mt (TDEPFILES): Add frv-linux-tdep.o.
8345
8346 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8347
8348 * frv-tdep.c (frv_analyze_prologue): Terminate prologue scan,
8349 but not via a call to error(), when unable to read memory.
8350
8351 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8352
8353 * frv-tdep.c (frv_call_dummy_words): Delete.
8354 (frv_frame_unwind_cache): Delete unused variable, ``prev_sp''.
8355
8356 2004-03-15 Andrew Cagney <cagney@redhat.com>
8357
8358 * infrun.c (handle_step_into_function, step_over_function): Only
8359 update and use STEP_FRAME_ID when the system is using legacy
8360 frames. Update comments.
8361
8362 2004-03-14 Mark Kettenis <kettenis@gnu.org>
8363
8364 * amd64-linux-tdep.h: Remove file.
8365 * amd64-linux-tdep.c: Don't include "inferior.h" and
8366 "amd64-linux-tdep.h". Include "frame.h" and "solib-svr4.h".
8367 (USER_R15, USER_R14, USER_R13, USER_R12, USER_RBP, USER_RBX)
8368 (USER_R11, USER_R10, USER_R9, USER_R8, USER_RAX, USER_RCX)
8369 (USER_RDX, USER_RSI, USER_RDI, USER_RIP, USER_CS, USER_EFLAGS)
8370 (USER_RSP, USER_SS, USER_DS, USER_ES, USER_FS, USER_GS): Remove
8371 macros.
8372 (user_to_gdb_regmap): Remove variable.
8373 (amd64_linux_gregset_reg_offset): New variable.
8374 (amd64_core_fns): Remove variable.
8375 (fetch_core_registers): Remove function.
8376 (amd64_linux_supply_gregset, amd64_linux_fill_gregset): Remove
8377 functions.
8378 (_initialize_amd64_linux_tdep): Don't set add_core_fns.
8379 * amd64-linux-nat.c: Don't include "amd64-linux-tdep.h".
8380 * Makefile.in (amd64_linux_tdep_h): Remove.
8381 (amd64-linux-nat.o): Update dependencies.
8382 (amd64-linux-tdep.o): Update dependencies.
8383
8384 * amd64-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
8385 (fetch_regs, fetch_fpregs, store_regs, store_fpregs): Remove
8386 functions.
8387 (fetch_inferior_registers, store_inferior_registers): Rewrite.
8388
8389 * amd64-tdep.h (amd64_fill_fxsave): Remove prototype.
8390 * amd64-tdep.c (amd64_fill_fxsave): Remove function.
8391
8392 2004-03-14 Daniel Jacobowitz <drow@mvista.com>
8393
8394 * dwarf2read.c (read_structure_type): Rename from
8395 read_structure_scope. Don't create a symbol or call process_die.
8396 Return immediately if die->type is set. Call read_type_die before
8397 dwarf2_add_member_fn.
8398 (process_structure_scope): New function.
8399 (read_enumeration_type, process_enumeration_scope): New functions,
8400 broken out from read_enumeration. Don't create the enumeration
8401 type if it has already been created.
8402 (read_enumeration): Removed.
8403 (process_die): Call read_structure_type, process_structure_scope,
8404 read_enumeration_type, and process_enumeration_scope. Just call
8405 new_symbol for base and subrange types. Add a comment about other
8406 type dies.
8407 (read_type_die): Call read_enumeration_type.
8408 (add_partial_structure, new_symbol): Update comments.
8409
8410 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
8411
8412 * m68hc11-tdep.c (m68hc11_register_name): Get soft reg information.
8413
8414 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
8415
8416 * tui/tui-win.h (tui_get_cmd_list): Declare.
8417 * tui/tui-win.c (tui_command): New function.
8418 (tui_get_cmd_list): New function.
8419 (_initialize_tui_win): Moved initialization of tui command in
8420 tui_get_cmd_list.
8421
8422 * tui/tui-data.c (init_content_element): Setup new data members.
8423 (init_win_info): Likewise.
8424 (free_content_elements): Free it.
8425 * tui/tui-data.h (struct tui_data_element): Store the register
8426 content to print.
8427 (struct tui_data_info): Keep the current register group.
8428
8429 * tui/tui-layout.c (tui_set_layout): Update call to tui_show_registers.
8430
8431 * tui/tui-regs.h (tui_show_registers): Update prototype.
8432 (tui_toggle_float_regs, tui_calculate_regs_column_count): Remove.
8433 (tui_resize_all): No need to calculate anything for register window.
8434 * tui/tui-regs.c (tui_calculate_regs_column_count): Remove.
8435 (tui_set_register_element, tui_set_general_regs_content): Remove.
8436 (tui_set_special_regs_content): Remove.
8437 (tui_set_general_and_special_regs_content): Remove.
8438 (tui_set_float_regs_content): Remove.
8439 (tui_reg_value_has_changed, tui_get_register_raw_value): Remove.
8440 (tui_set_regs_content): Remove.
8441 (tui_toggle_float_regs, _tui_toggle_float_regs_command): Remove.
8442 (tui_v_show_registers_command_support): Remove.
8443 (tui_show_registers): Use a reggroup to specify the registers to show.
8444 (tui_show_register_group): New function.
8445 (tui_display_registers_from): Compute the layout of register window
8446 and refresh with new API; be sure to delete old register windows.
8447 (tui_check_register_values): Update to use tui_get_register and
8448 tui_display_data.
8449 (tui_display_register): Just refresh the register window part.
8450 (tui_register_format): Format registers and save in tui_data_element.
8451 (tui_get_register): New to combine tui_reg_value_has_changed and
8452 tui_get_register_raw_value; fix to use the new gdb API.
8453 (tui_show_float_command): Renamed tui_reg_float_command.
8454 (tui_show_general_command): Renamed tui_reg_general_command.
8455 (tui_show_special_command): Renamed tui_reg_system_command.
8456 (_initialize_tui_regs): Remove unused commands.
8457
8458 2004-03-13 Mark Kettenis <kettenis@gnu.org>
8459
8460 * NEWS (New native configurations): Mention OpenBSD/amd64.
8461
8462 * config/i386/nm-fbsd.h: Include "config/nm-bsd.h".
8463 (PTRACE_ARG3_TYPE, FETCH_INFERIOR_REGISTERS, ATTACH_DETACH):
8464 Remove defines.
8465 * config/i386/nm-fbsd64.h: Likewise.
8466 * config/i386/nm-obsd.h: Likewise.
8467 * config/sparc/nm-fbsd.h: Likewise. Update copyright year.
8468 * config/alpha/nm-fbsd.h: Likewise. Update copyright year.
8469
8470 2004-03-12 Kevin Buettner <kevinb@redhat.com>
8471
8472 * frv-tdep.c (set_variant_scratch_registers): New function.
8473 * frv-tdep.h (scr0_regnum, scr1_regnum, scr2_regnum, scr3_regnum):
8474 New constants.
8475
8476 From Richard Sandiford <rsandifo@redhat.com>:
8477 * frv-tdep.c (frv_gdbarch_init): Add FR450 support.
8478
8479 2004-03-12 Kevin Buettner <kevinb@redhat.com>
8480
8481 * frv-tdep.c, frv-tdep.h (first_gpr_regnum, sp_regnum, fp_regnum)
8482 (struct_return_regnum, last_gpr_regnum, first_fpr_regnum)
8483 (last_fpr_regnum, pc_regnum, first_spr_regnum, psr_regnum, ccr_regnum)
8484 (cccr_regnum, fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum)
8485 (tbr_regnum, brr_regnum, dbar0_regnum, dbar1_regnum, dbar2_regnum)
8486 (dbar3_regnum, lr_regnum, lcr_regnum, iacc0h_regnum, iacc0l_regnum)
8487 (last_spr_regnum, frv_num_regs, first_pseudo_regnum, iacc0_regnum)
8488 (last_pseudo_regnum, frv_num_pseudo_regs): Move constant (enum)
8489 definitions from frv-tdep.c to frv-tdep.h.
8490
8491 2004-03-12 Kevin Buettner <kevinb@redhat.com>
8492
8493 Add shared library support for FR-V FDPIC ABI:
8494 * Makefile.in (solib-frv.o): Add dependencies.
8495 * frv-tdep.c (find_func_descr, frv_convert_from_func_ptr_addr):
8496 New functions.
8497 (frv_push_dummy_call): Add support for FDPIC ABI.
8498 (frv_gdbarch_init): Call set_gdbarch_convert_from_func_ptr_addr()
8499 for FDPIC ABI.
8500 * frv-tdep.h (frv_fdpic_find_global_pointer): Declare.
8501 (frv_fdpic_find_canonical_descriptor): Declare.
8502 * solib-frv.c: New file.
8503 * config/frv/frv.mt (TDEPFILES): Add solib.o and solib-frv.o.
8504 * config/frv/tm-frv.h (solib.h): Include.
8505
8506 2004-03-12 Kevin Buettner <kevinb@redhat.com>
8507
8508 * Makefile.in (elf_frv_h, frv_tdep_h): Define.
8509 (frv-tdep.o): Update dependencies.
8510 * frv-tdep.h: New file.
8511 * frv-tdep.c (elf-bfd.h, elf/frv.h, osabi.h, frv-tdep.h): Include.
8512 (fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum): New
8513 constants.
8514 (struct gdbarch_tdep): Add new member ``frv_abi''.
8515 (frv_abi, frv_fdpic_loadmap_addresses, set_variant_abi_fdpic): New
8516 functions.
8517 (new_variant): Set ``frv_abi'' field.
8518 (gdb_arch_init): Detect FDPIC executables.
8519
8520 2004-03-12 Mark Kettenis <kettenis@gnu.org>
8521
8522 * solib-svr4.h: Change SOLIB_SVR4 wrapper into SOLIB_SVR4_H
8523 wrapper.
8524
8525 2004-03-11 Andrew Cagney <cagney@redhat.com>
8526
8527 * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper.
8528
8529 2004-03-11 Kevin Buettner <kevinb@redhat.com>
8530
8531 * solist.h (master_so_list): New function.
8532 * solib.c (master_so_list): Likewise.
8533 * solib-svr4.c (enable_break): Iterate over so_list entries
8534 obtained from master list instead of entries obtained directly
8535 via svr4_current_sos().
8536
8537 2004-03-10 Ben Elliston <bje@gnu.org>
8538
8539 * MAINTAINERS: Update my mail address.
8540
8541 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com>
8542
8543 * remote-m32r-sdi.c: Support hardware watchpoint.
8544
8545 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8546
8547 * user-regs.c: Update copyright years.
8548 (struct user_regs): Rename to gdb_user_regs.
8549 (append_user_reg, builtin_user_regs, user_regs_init)
8550 (user_reg_add, user_reg_map_name_to_regnum)
8551 (usernum_to_user_reg): Update.
8552
8553 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8554
8555 * dwarf2read.c (skip_leb128, peek_die_abbrev, skip_one_die)
8556 (skip_children): New functions.
8557 (locate_pdi_sibling): Call skip_children.
8558
8559 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8560
8561 * arm-tdep.c (arm_use_struct_convention): Look through typedefs.
8562 * gdbtypes.c (check_typedef): Update comments.
8563
8564 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8565
8566 * dwarf2read.c (struct comp_unit_head): Remove dwarf2_abbrevs array.
8567 (struct dwarf2_cu): Add abbrev_obstack and dwarf2_abbrevs
8568 pointer. Update comment about comp_unit_head.
8569 (struct abbrev_info): Shorten two int flags.
8570 (dwarf_alloc_abbrev): Take a CU argument.
8571 (dwarf2_build_psymtabs_hard): Call dwarf2_free_abbrev_table
8572 each time through the loop. Update cleanup argument.
8573 (psymtab_to_symtab_1): Update cleanup call.
8574 (dwarf2_read_abbrevs, dwarf2_alloc_abbrev): Allocate on the
8575 abbrev_obstack.
8576 (dwarf2_free_abbrev_table): Renamed from dwarf2_empty_abbrev_table.
8577 Just call obstack_free and clear the pointer.
8578
8579 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8580
8581 * infrun.c (handle_inferior_event): Remove short-circuit code for
8582 events in a different thread.
8583
8584 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8585
8586 * target.c (debug_to_xfer_memory): If targetdebug is 1, don't
8587 print the whole transfer.
8588 (initialize_targets): Update description of "set debug target".
8589
8590 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8591
8592 * arm-tdep.c (thumb_get_next_pc): Handle Thumb BLX.
8593
8594 2004-03-08 Nathan J. Williams <nathanw@wasabisystems.com>
8595
8596 * MAINTAINERS (write after approval): Add myself.
8597
8598 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
8599
8600 * sh-tdep.c (sh_print_registers_info): Use for loop.
8601 Don't skip multiple registers when a float register is encountered.
8602
8603 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
8604
8605 Fix PR tdep/1291.
8606 * sh-tdep.c (sh_analyze_prologue): Align PC relative addressing
8607 to official SH documentation.
8608
8609 2004-03-07 Andrew Cagney <cagney@redhat.com>
8610
8611 * ppc-linux-nat.c (ppc_ptrace_cannot_fetch_store_register): Delete
8612 unused function.
8613
8614 2004-03-07 Daniel Jacobowitz <drow@mvista.com>
8615
8616 * arm-tdep.c (thumb_get_next_pc): Handle BX.
8617 (arm_get_next_pc): Handle BX and BLX.
8618
8619 2004-03-07 Andrew Cagney <cagney@redhat.com>
8620
8621 * hppa-tdep.c: Replace DEPRECATED_FP_REGNUM with HPPA_FP_REGNUM,
8622 FP0_REGNUM with HPPA_FP0_REGNUM, and SP_REGNUM with
8623 HPPA_SP_REGNUM.
8624 (hppa_register_raw_size, hppa_register_byte, hppa_read_fp)
8625 (hppa_target_read_fp): Delete.
8626 (hppa_gdbarch_init): Do not set deprecated register_raw_size,
8627 register_virtual_size, max_register_raw_size,
8628 max_register_virtual_size, register_byte, register_size,
8629 target_read_fp, fp_regnum, and register_bytes. Set register_type
8630 instead of register_virtual_type.
8631 (hppa32_register_type, hppa64_register_type): Replace
8632 hppa32_register_virtual_type and hppa64_register_virtual_type.
8633 * config/pa/tm-hppa.h (HPPA_FP0_REGNUM, HPPA_SP_REGNUM)
8634 (HPPA_FP_REGNUM): Define.
8635
8636 * hppa-tdep.c (hppa_gdbarch_init): Add missing "break".
8637
8638 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO)
8639 (pa_do_registers_info): Delete.
8640 * hppa-tdep.c (pa_do_registers_info, pa_do_strcat_registers_info)
8641 (pa_print_registers, pa_print_fp_reg, pa_strcat_registers)
8642 (pa_strcat_fp_reg, pa_register_look_aside): Delete.
8643
8644 * infcall.c (legacy_push_dummy_code): Delete #ifdef
8645 GDB_TARGET_IS_HPPA code.
8646 * config/pa/tm-hppa.h (DEPRECATED_FIX_CALL_DUMMY)
8647 (hppa_fix_call_dummy, DEPRECATED_CALL_DUMMY_HAS_COMPLETED)
8648 (DEPRECATED_DUMMY_WRITE_SP, CALL_DUMMY): Delete.
8649 * config/pa/tm-hppa64.h (CALL_DUMMY): Delete.
8650 * hppa-tdep.c (hppa_frame_chain, hppa_frame_chain_valid)
8651 (hppa_push_dummy_frame, hppa_pop_frame, hppa_push_arguments)
8652 (hppa_fix_call_dummy, hppa64_stack_align, hppa_frame_saved_pc)
8653 (hppa_init_extra_frame_info, hppa_saved_pc_after_call)
8654 (hppa64_call_dummy_breakpoint_offset, hppa_frame_init_saved_regs)
8655 (hppa_frameless_function_invocation, hppa64_store_return_value)
8656 (hppa_store_struct_return, hppa64_extract_return_value)
8657 (hppa64_use_struct_convention, hppa_frame_find_saved_regs)
8658 (hppa32_call_dummy_length, hppa64_call_dummy_length)
8659 (find_dummy_frame_regs, FUNC_LDIL_OFFSET, FUNC_LDO_OFFSET)
8660 (find_proc_framesize, deposit_21, restore_pc_queue)
8661 (find_return_regnum, pc_in_interrupt_handler, deposit_14)
8662 (rp_saved, pc_in_linker_stub): Delete.
8663
8664 Unconditionally enable 64-bit frame and ABI code.
8665 * hppa-tdep.c (hppa_gdbarch_init): Do not set deprecated
8666 call_dummy_breakpoint_offset, call_dummy_length, stack_align,
8667 push_dummy_frame, fix_call_dummy, push_arguments,
8668 call_dummy_location, extract_return_value, use_struct_convention,
8669 store_return_value, store_struct_return, saved_pc_after_call,
8670 init_frame_pc, frame_init_saved_regs, init_extra_frame_info,
8671 frame_chain, frame_chain_valid, frameless_function_invocation,
8672 frame_saved_pc, and pop_frame.
8673
8674 * hppa-tdep.c: Replace PC_REGNUM with PCOQ_HEAD_REGNUM.
8675 (hppa64_return_value, hppa64_push_dummy_call): Rewrite.
8676 (hppa_gdbarch_init): Do not set PC_REGNUM.
8677
8678 2004-03-06 Mark Kettenis <kettenis@gnu.org>
8679
8680 * config/alpha/tm-fbsd.h: Remove file.
8681 * config/alpha/fbsd.mt: Tweak comment.
8682 (TM_FILE): Set to tm-alpha.h.
8683
8684 2004-03-05 Andrew Cagney <cagney@redhat.com>
8685
8686 * infrun.c (step_over_function): When non-legacy code, and no
8687 step_frame_id, use the unwinder to get the caller's frame ID.
8688
8689 2004-03-05 Mark Kettenis <kettenis@gnu.org>
8690
8691 * i386bsd-tdep.c (_initialize_i386bsd_tdep): Register
8692 i386bsd_core_osabi_sniffer for bfd_arch_i386 instead of
8693 bfd_arch_unknown. Adjust comment.
8694
8695 * i386-nat.c: Fix typo in comment. Re-introduce paranoiac.
8696 * i386obsd-tdep.c: Correct spelling in comment.
8697 * i386nbsd-tdep.c: Correct spelling in comment.
8698 * sparc-tdep.c: Correct spelling in comments.
8699
8700 2004-03-05 David Carlton <carlton@kealia.com>
8701
8702 * cp-namespace.c (cp_lookup_transparent_type_loop): Fix recursion
8703 bug.
8704
8705 2004-03-05 Mark Kettenis <kettenis@gnu.org>
8706
8707 * sparc-tdep.c: Fix typo in comment.
8708
8709 2004-03-04 J. Brobecker <brobecker@gnat.com>
8710
8711 * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
8712
8713 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
8714
8715 * dwarf2read.c: Add comment describing memory lifetimes.
8716 (struct dwarf2_pinfo): Update comment.
8717 (dwarf2_add_field, dwarf2_add_member_fn, read_structure_scope)
8718 (read_enumeration, new_symbol): Don't use obsavestring.
8719
8720 2004-03-04 Mark Kettenis <kettenis@gnu.org>
8721
8722 * amd64-linux-nat.c (fill_fpregset): Call amd64_colletc_fxsave
8723 instead of amd64_fill_fxsave.
8724 * amd64bsd-nat.c (store_inferior_registers): Likewise.
8725 * amd64fbsd-nat.c (fill_fpregset): Likewise.
8726
8727 * sparc-tdep.c (sparc_frame_cache): Don't bail out if %fp is zero.
8728 Reorganize code a bit.
8729
8730 2004-03-04 Orjan Friberg <orjanf@axis.com>
8731
8732 * cris-tdep.c (cris_scan_prologue): Save the frame pointer's offset
8733 when the frame pointer is pushed. Don't set the frame pointer's
8734 address on the stack unless it's actually located there.
8735 Set the SRP's address on the stack correctly when the PC is still in
8736 the prologue.
8737 (cris_return_value): New function.
8738 (cris_gdbarch_init): Clear deprecated store_return_value,
8739 extract_return_value.
8740
8741 2004-03-02 Jim Blandy <jimb@redhat.com>
8742
8743 * stabsread.c (reg_value_complaint): The maximum register number
8744 is one less than the number of registers.
8745
8746 2004-03-02 Andrew Cagney <cagney@redhat.com>
8747
8748 * i386-tdep.h (enum i386_regnum): Add I386_DS_REGNUM,
8749 I386_ES_REGNUM, I386_FS_REGNUM, and I386_GS_REGNUM. Remove
8750 trailing comma and redundant assignment of I386_ST0_REGNUM.
8751 * amd64-nat.c (amd64_collect_native_gregset): Zero-extend the
8752 32-bit segment registers.
8753
8754 2004-03-01 Andrew Cagney <cagney@redhat.com>
8755
8756 * rs6000-tdep.c (rs6000_init_frame_pc_first): Fix compiler error,
8757 use frame_relative_level and get_next_frame.
8758
8759 2004-02-29 Andrew Cagney <cagney@redhat.com>
8760
8761 * rs6000-tdep.c (rs6000_init_frame_pc_first): New function.
8762 (rs6000_gdbarch_init): Set deprecated_init_frame_pc_first.
8763 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST):
8764 Delete macro.
8765
8766 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
8767
8768 * inflow.c (terminal_inferior): Don't give up the terminal if we
8769 previously couldn't get the inferior's terminal state.
8770
8771 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
8772
8773 * regcache.c (read_pc_pid): Restore inferior_ptid after reading
8774 PC_REGNUM.
8775
8776 2004-02-28 Andrew Cagney <cagney@redhat.com>
8777
8778 * NEWS: Refer to GDB 6.1.
8779 * README: Refer to GDB 6.1.
8780 * PROBLEMS: Refer to GDB 6.1.
8781
8782 2004-02-28 Daniel Jacobowitz <drow@mvista.com>
8783
8784 * thread-db.c (disable_thread_signals): Remove unused function.
8785
8786 2004-02-28 Mark Kettenis <kettenis@gnu.org>
8787
8788 * amd64-nat.c: Include "gdb_string.h".
8789 (amd64_collect_native_gregset): Zero-extend the 32-bit
8790 general-purpose registers and %eip.
8791
8792 * amd64-tdep.h: (amd64_collect_fxsave): New prototype.
8793 * amd64-tdep.c (amd64_collect_fxsave): New function.
8794 (amd64_fill_fxsave): Simply call amd64_collect_fxsave.
8795
8796 * i387-tdep.h: Update copyright year.
8797 (i387_collect_fxsave): New prototype.
8798 * i387-tdep.c: Update copyright year.
8799 (i387_collect_fxsave): New function containing most of the code
8800 from i387_fill_fxsave.
8801 (i387_fill_fxsave): Call i387_collect_fxsave.
8802
8803 2004-02-28 Andrew Cagney <cagney@redhat.com>
8804
8805 * amd64-linux-nat.c (ps_get_thread_area): When architecture is
8806 i386 use PTRACE_GET_THREAD_AREA. Suggested by Roland McGrath.
8807
8808 2004-02-28 Mark Kettenis <kettenis@gnu.org>
8809
8810 * amd64-tdep.c (amd64_frame_cache): Fix comment.
8811
8812 2004-02-28 Andrew Cagney <cagney@redhat.com>
8813
8814 * utils.c: Use "", instead of <>, to include readline.
8815 tui/tui-win.c, tui/tui.c, tui/tui-hooks.c: Ditto.
8816 * tracepoint.c, top.c, symmisc.c, symfile.c: Ditto.
8817 * source.c, solib.c, exec.c, event-top.c: Ditto.
8818 * corelow.c, completer.c, cli/cli-setshow.c: Ditto.
8819 * cli/cli-dump.c, cli/cli-cmds.c: Ditto.
8820 * Makefile.in: Update all dependencies.
8821 (readline_tilde_h, readline_history_h): Define.
8822 (readline_headers): Delete.
8823
8824 2004-02-28 Mark Kettenis <kettenis@gnu.org>
8825
8826 * config/djgpp/fnchange.lst: Rename "config/i386/nm-linux64.h" to
8827 "config/i386/nm-lx64.h" and "config/i386/tm-linux64.h" to
8828 "config/i386/tm-lx64.h".
8829
8830 * config/djgpp/fnchange.lst: Rename "amd64-linux-tdep.c" to
8831 "amd64-ltdep.c" and "amd64-linux-nat.c" to "amd64-lnat.c". Remove
8832 rules for "x86-64-linux-tdep.c" and "x86-64-linux-nat.c".
8833
8834 2004-02-28 Andrew Cagney <cagney@redhat.com>
8835
8836 * dwarf2-frame.h (struct gdbarch): Add opaque declaration.
8837
8838 * breakpoint.c (_initialize_breakpoint): Use
8839 "add_setshow_auto_boolean_cmd. Better word-wrap help messages.
8840 Add help to show command.
8841
8842 2004-02-28 Mark Kettenis <kettenis@gnu.org>
8843
8844 * i386-nat.c: Reformat to be closer to coding standards.
8845 (i386_handle_nonaligned_watchpoint): Rename local variable `rv' to
8846 `retval'. Make variables `align' and `size' local to while-loop.
8847 (i386_stopped_data_address): Rename local variable `ret' to `addr'.
8848 (_initialize_i386_nat): New prototype.
8849
8850 * tui/tui.c: Include <readline/readline.h> instead of
8851 "readline/readline.h". Include it after <term.h> and
8852 "gdb_curses.h".
8853
8854 2004-02-27 Andrew Cagney <cagney@redhat.com>
8855
8856 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always use
8857 the new frame unwind code.
8858 (hppa_frame_cache): Use PCOQ_HEAD_REGNUM instead of PC_REGNUM.
8859 (hppa_frame_prev_register): Compute PCOQ_TAIL_REGNUM from
8860 PCOQ_HEAD_REGNUM.
8861
8862 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always
8863 "return_value" and "push_dummy_call".
8864 (hppa32_use_struct_convention): Delete unused function.
8865 (hppa32_store_return_value): Delete unused function.
8866 (hppa32_extract_return_value): Delete unused function.
8867 (hppa32_stack_align): Delete function.
8868
8869 2004-02-27 Eli Zaretskii <eliz@elta.co.il>
8870
8871 * coffread.c (enter_linenos): Don't let rawptr reference memory
8872 outside linetab[]'s limits.
8873
8874 2004-02-27 Andrew Cagney <cagney@redhat.com>
8875
8876 * hppa-tdep.c (hppa32_push_dummy_call): Fix code reserving
8877 inferior stack space - the stack needs to grow upwards.
8878 (hppa32_frame_align): New function.
8879 (hppa64_frame_align): Replace hppa_frame_align.
8880 (hppa_gdbarch_init): Update.
8881
8882 2004-02-26 Orjan Friberg <orjanf@axis.com>
8883
8884 * cris-tdep.c (frame_unwind.h, frame-base.h, trad-frame.h)
8885 (dwarf2-frame.h): Include.
8886 (enum cris_regnums): New enum CRIS_FP_REGNUM.
8887 Remove static variables related to ABI setting.
8888 (struct gdbarch_tdep): Remove cris_abi member.
8889 (struct frame_extra_info): Remove.
8890 (cris_unwind_cache, stack_item): New structs.
8891 (cris_frame_unwind, cris_frame_base): New variables.
8892 (push_stack_item, pop_stack_item)
8893 (cris_frame_unwind_cache, cris_frame_this_id)
8894 (cris_frame_prev_register, cris_unwind_dummy_id, cris_frame_align)
8895 (cris_push_dummy_code, cris_push_dummy_call, cris_frame_sniffer)
8896 (cris_frame_base_address, cris_scan_prologue, cris_unwind_pc)
8897 (cris_unwind_sp, cris_store_return_value, cris_extract_return_value)
8898 (cris_reg_struct_has_addr): New functions.
8899 (cris_examine, cris_frame_init_saved_regs, cris_frame_chain)
8900 (cris_frame_saved_pc, cris_saved_pc_after_call,
8901 (cris_store_struct_return, cris_frameless_function_invocation)
8902 (cris_pop_frame, cris_skip_prologue_main)
8903 (cris_abi_original_store_return_value)
8904 (cris_abi_v2_store_return_value)
8905 (cris_abi_original_extract_return_value)
8906 (cris_abi_v2_extract_return_value)
8907 (cris_abi_original_reg_struct_has_addr)
8908 (cris_abi_v2_reg_struct_has_addr)
8909 (cris_abi_original_push_arguments, cris_abi_v2_push_arguments)
8910 (cris_push_return_address, cris_abi_update): Remove.
8911 (_initialize_cris_tdep): Remove ABI command.
8912 (cris_dump_tdep): Ditto.
8913 (cris_gdbarch_init): Remove ABI command.
8914 Set store_return_value, extract_return_value, push_dummy_code,
8915 push_dummy_call, frame_align, unwind_pc, unwind_sp, unwind_dummy_id,
8916 frame_unwind_append_sniffer, frame_base_set_default.
8917 Clear deprecated init_frame_pc, push_arguments, store_return_value,
8918 extract_return_value, fp_regnum, pc_in_call_dummy, call_dummy_words,
8919 sizeof_call_dummy_words, get_saved_register, push_return_address,
8920 pop_frame, store_struct_return, frame_init_saved_regs,
8921 init_extra_frame_info, frameless_function_invocation, frame_chain,
8922 frame_saved_pc, saved_pc_after_call, save_dummy_frame_tos,
8923 dummy_write_sp.
8924
8925 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
8926
8927 * valprint.h (print_hex_chars, print_char_chars): New prototypes.
8928 * valprint.c (print_hex_chars): Change from static to external.
8929 (print_char_chars): New function.
8930 * printcmd.c (print_scalar_formatted): For integer and enum types
8931 that are longer than LONGEST, perform processing via appropriate
8932 print_*_chars routines.
8933
8934 2004-02-26 Andrew Cagney <cagney@redhat.com>
8935
8936 * Makefile.in: Update dependencies.
8937 Changes from Ulrich Weigand,
8938 * s390-tdep.c: Include "dwarf2-frame.h".
8939 (s390_dwarf2_frame_init_reg): New function.
8940 (s390_gdbarch_init): Install dwarf2_frame_sniffer and
8941 dwarf2_frame_base_sniffer. Call dwarf2_frame_set_init_reg.
8942
8943 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
8944
8945 * breakpoint.c (pending_break_support): New setting variable.
8946 (break_command_1): Account for pending_break_support setting
8947 when creating pending breakpoints.
8948 (set_breakpoint_cmd, show_breakpoint_cmd): New functions.
8949 (_initialize_breakpoint): Add "set breakpoint pending" and
8950 "show breakpoint pending" commands.
8951
8952 2004-02-26 Andrew Cagney <cagney@redhat.com>
8953
8954 Fix PR i18n/1570.
8955 * charset.c (backslashable, backslashed, represented): Remove 'e'
8956 from list of escaped characters, not part of ISO-C.
8957
8958 2004-02-25 J. Brobecker <brobecker@gnat.com>
8959
8960 From Peter Schauer <schauer@pdf.de>:
8961 * tui/tui.c: Move system header includes after local includes.
8962 Fixes a build failure on solaris systems.
8963
8964 2004-02-25 J. Brobecker <brobecker@gnat.com>
8965
8966 * configure.in: Refine the previous change.
8967 * configure: Regenerate.
8968
8969 2004-02-25 Mark Kettenis <kettenis@gnu.org>
8970
8971 * amd64-tdep.h: Renamed from x86-64-tdep.h.
8972 * amd64-tdep.c: Renamed from x86-64-tdep.c. Include
8973 "amd64-tdep.h" instead of "x86-64-tdep.h".
8974 * amd64-nat.c: Include "amd64-tdep.h" instead of "x86-64-tdep.h".
8975 * amd64-linux-tdep.h: Renamed from x86-64-linux.h.
8976 * amd64-linux-tdep.c: Renamed from x86-64-linux-tdep.c. Include
8977 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
8978 and "x86-64-tdep.c".
8979 * amd64-linux-nat.c: Renamed from x86-64-linux-nat.c. Include
8980 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
8981 and "x86-64-tdep.c".
8982 * amd64bsd-nat.c: Update copyright year.
8983 Include "amd64-tdep.h" instead of "x86-64-tdep.h".
8984 * amd64fbsd-tdep.c: Include "amd64-tdep.h" instead of
8985 "x86-64-tdep.h".
8986 * amd64fbsd-nat.c: Include "amd64-tdep.h" instead of
8987 "x86-64-tdep.h".
8988 * amd64nbsd-tdep.c: Include "amd64-tdep.h" instead of
8989 "x86-64-tdep.h".
8990 * amd64nbsd-nat.c: Include "amd64-tdep.h" instead of
8991 "x86-64-tdep.h".
8992 * amd64obsd-tdep.c: Include "amd64-tdep.h" instead of
8993 "x86-64-tdep.h".
8994 * amd64obsd-nat.c: Include "amd64-tdep.h" instead of
8995 "x86-64-tdep.h".
8996 * configure.host: (x86_64-*-linux*): Set gdb_target to linux64.
8997 * configure.tgt (x86_64-*-linux*): Set gdb_target to linux64.
8998 * Makefile.in (amd64_linux_tdep_h): Renamed from
8999 x86_64_linux_tdep_h.
9000 (amd64_tdep_h): Renamed from x86_64_tdep_h.
9001 (amd64bsd-nat.o, amd64fbsd-nat.o, amd64fbsd-tdep.o, amd64-nat.o)
9002 (amd64nbsd-nat.o, amd64nbsd-tdep.o, amd64obsd-nat.o)
9003 (amd64obsd-tdep.o): Update dependencies.
9004 (amd64-tdep.o, amd64-linux-nat.o, amd64-linux-tdep.o): New
9005 dependencies.
9006 (x86-64-linux-nat.o, x86-64-linux-tdep.o, x86-64-tdep.o): Remove
9007 dependencies.
9008 (ALLDEPFILES): Add amd64-tdep.c, amd64obsd-nat.c, amd64obsd-nat.c,
9009 amd64-linux-nat.c amd64-linux-tdep.c.
9010 * config/i386/tm-linux64.h: Renamed from tm-x86-64linux.h
9011 * config/i386/nm-linux64.h: Renamed from nm-x86-64linux.h.
9012 * config/i386/linux64.mt: Renamed from x86-64linux.mt.
9013 (TDEPFILES): Replace x86-64-tdep.o and x86-64-linux-tdep.o with
9014 amd64-tdep.o and amd64-linux-tdep.o.
9015 (TM_FILE): Set to tm-linux64.h.
9016 * config/i386/linux64.mh: Renamed from x86-64linux.mh.
9017 (NAT_FILE): Set to nm-linux64.h.
9018 (NATDEPFILES): Replace x86-64-linux-nat.o with amd64-linux-nat.o.
9019 * config/i386/fbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9020 amd64-tdep.o.
9021 * config/i386/nbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9022 amd64-tdep.o.
9023 * config/i386/obsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9024 amd64-tdep.o.
9025
9026 2004-02-25 Roland McGrath <roland@redhat.com>
9027
9028 * remote.c (remote_protocol_qPart_auxv): New variable.
9029 (init_all_packet_configs): Initialize it.
9030 (set_remote_protocol_qPart_auxv_packet_cmd): New function.
9031 (show_remote_protocol_qPart_auxv_packet_cmd): New function.
9032 (show_remote_cmd): Call it.
9033 (_initialize_remote): Initialize commands.
9034 (remote_xfer_partial): If enabled, use qPart:auxv:read:... query to
9035 service TARGET_OBJECT_AUXV requests.
9036
9037 2004-02-25 J. Brobecker <brobecker@gnat.com>
9038
9039 * configure.in: Make sure that the wborder function is available.
9040 Otherwise, search for it in the cur_colr library.
9041 * configure: Regenerate.
9042
9043 2004-02-25 Andrew Cagney <cagney@redhat.com>
9044
9045 * hppa-tdep.c (hppa32_push_dummy_call): Rewrite.
9046
9047 2004-02-25 Mark Kettenis <kettenis@gnu.org>
9048
9049 * config/i386/tm-x86-64linux.h: Tweak comments.
9050
9051 2004-02-25 Richard Sandiford <rsandifo@redhat.com>
9052
9053 * MAINTAINERS: Add self to write-after-approval list.
9054
9055 2004-02-25 Andrew Cagney <cagney@redhat.com>
9056
9057 PR cli/1566. Problem found, and fix suggested by David Allan.
9058 * cli/cli-script.c (execute_control_command): Unconditionally
9059 install a cleanup. Default "ret" to "invalid_control". Use
9060 "break" instead of "return" to escape from the switch.
9061
9062 2004-02-24 J. Brobecker <brobecker@gnat.com>
9063
9064 * tui/tui-disasm.c: %s/lines/asm_lines/g to avoid a collision
9065 with the lines macro defined in term.h on AiX.
9066 * tui/tui-regs.c: %s/label_width/tui_label_width/g, to avoid
9067 a collision with the label_width macro defined in term.h on AiX.
9068
9069 2004-02-23 David Mosberger <davidm@hpl.hp.com>
9070
9071 Committed by Kevin Buettner <kevinb@redhat.com>.
9072
9073 * ia64-tdep.h (ia64_write_pc, ia64_linux_write_pc): Declare.
9074 * ia64-tdep.c (ia64_write_pc): Make it a global function.
9075 (ia64_gdbarch_init): For Linux targets, use ia64_linux_write_pc()
9076 instead of ia64_write_pc().
9077 * ia64-linux-tdep.c (regcache.h): Include.
9078 (ia64_linux_write_pc): New function.
9079
9080 2004-02-23 Roland McGrath <roland@redhat.com>
9081
9082 * auxv.c (info_auxv_command): Fix typos in error messages.
9083
9084 2004-02-23 Mark Kettenis <kettenis@gnu.org>
9085
9086 * x86-64-tdep.h: Tweak comment.
9087 (enum amd64_regnum): New.
9088 (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM)
9089 (X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM)
9090 (X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM)
9091 (X86_64_XMM1_REGNUM): Removed.
9092 (AMD64_NUM_GREGS): Renamed from X86_64_NUM_GREGS.
9093 (amd64_init_abi, amd64_supply_fxsave, amd64_fill_fxsave): Adjust
9094 prototypes for renamed functions.
9095 * x86-64-tdep.c: Fix typo.
9096 (amd64_dwarf_regmap): Use constants from `enum amd64_regnum' for
9097 register numbers.
9098 (amd64_return_value, amd64_push_arguments, amd64_push_dummy_call):
9099 Use constants from `enum amd64_regnum' for register numbers.
9100 (AMD64_NUM_SAVED_REGS): Adjust for renamed macros.
9101 (amd64_analyze_prologue, amd64_frame_cache,
9102 amd64_sigtramp_frame_cache): Use constants from `enum
9103 amd64_regnum' for register numbers.
9104 (amd64_supply_fpregset): Adjust for renamed functions.
9105 (amd64_init_abi): Rename from x86_64_init_abi. Use constants from
9106 `enum amd64_regnum' for register numbers.
9107 (I387_ST0_REGNUM): Use constant from `enum amd64_regnum'.
9108 (amd64_supply_fxsave): Rename from x86_64_supply_fxsave.
9109 (amd64_fill_fxsave): Rename fro x86_64_fill_fxsave.
9110 * x86-64-linux-tdep.c (amd64_linux_supply_gregset)
9111 (amd64_linux_fill_gregset): Adjust for renamed macros.
9112 (fetch_core_registers): Adjust for renamed functions.
9113 (amd64_linux_init_abi): Adjust for renamed functions.
9114 * x86-64-linux-nat.c (supply_gregset, fill_gregset): Adjust for
9115 renamed functions.
9116 * amd64-nat.c: Adjust for renamed macros.
9117 * amd64bsd-nat.c (fetch_inferior_registers)
9118 (store_inferior_registers): Use constants from `enum amd64_regnum'
9119 for register numbers. Adjust for renamed variables.
9120 * amd64fbsd-nat.c (supply_gregset, fill_gregset): Adjust for
9121 renamed variables.
9122 (_initialize_amd64fbsd_nat): Use constants from `enum
9123 amd64_regnum' for register numbers.
9124 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use constants from
9125 `enum amd64_regnum' for register numbers.
9126 (amd64fbsd_init_abi): Adjust for renamed functions.
9127 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Use constants from
9128 `enum amd64_regnum' for register numbers.
9129 (amd64nbsd_init_abi): Adjust for renamed functions.
9130 (_initialize_amd64nbsd_ndep): Adjust for renamed macros.
9131 * amd64obsd-tdep.c (amd64obsd_sigcontext_addr): Use constants from
9132 `enum amd64_regnum' for register numbers.
9133 (amd64obsd_init_abi): Adjust for renamed functions.
9134 (_initialize_amd64obsd_ndep): Adjust for renamed macros.
9135
9136 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9137
9138 * breakpoint.c (print_one_breakpoint): Do not output spaces
9139 after printing <PENDING> for a pending breakpoint.
9140
9141 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9142
9143 * printcmd.c (print_scalar_formatted): Initialize val_long
9144 to remove compiler warning message.
9145
9146 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9147
9148 * defs.h (nquery, yquery): New prototypes.
9149 * breakpoint.c (break_command_1): Use new nquery interface.
9150 * utils.c (defaulted_query, nquery, yquery): New functions.
9151
9152 2004-02-23 Andrew Cagney <cagney@redhat.com>
9153
9154 * hppa-tdep.c (hppa_frame_align): New function.
9155 (hppa32_push_dummy_call): New function.
9156 (hppa64_push_dummy_call): New function.
9157 (hppa_gdbarch_init): Set frame_align and push_dummy_call; keep
9158 disabled.
9159
9160 * infcall.c (legacy_push_dummy_code): Don't call deprecated
9161 FIX_CALL_DUMMY when push_dummy_call is available.
9162 (call_function_by_hand, push_dummy_code): Ditto.
9163
9164 2004-02-22 Andrew Cagney <cagney@redhat.com>
9165
9166 * config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Delete macro.
9167 (DEPRECATED_PC_IN_CALL_DUMMY): Delete macro.
9168 (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete macro.
9169 * hppa-tdep.c (hppa_gdbarch_init): Clear deprecated
9170 use_generic_dummy_frames, set deprecated pc_in_call_dummy, set
9171 call_dummy_location to ON_STACK.
9172
9173 2004-02-22 Mark Kettenis <kettenis@gnu.org>
9174
9175 * x86-64-linux-tdep.c: Tweak comment.
9176 (amd64_linux_supply_gregset): Renamed from
9177 x86_64_linux_supply_gresget.
9178 (amd64_linux_fill_gregset): Renamed from
9179 x86_64_linux_fill_gregset.
9180 (fetch_core_registers): Adjust for renamed functions.
9181 (amd64_core_fns): Renamed from x86_64_core_fns.
9182 (amd64_linux_sigtramp_start): Renamed from
9183 x86_64_linux_sigtramp_start.
9184 (amd64_linux_pc_in_sigtramp): Renamed from
9185 x86_64_linux_pc_in_sigtramp. Adjust for renamed functions.
9186 (AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Renamed from
9187 X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET.
9188 (amd64_linux_sigcontext_addr): Renamed from
9189 x86_64_linux_sigcontext_addr.
9190 (amd64_linux_sc_reg_offset): Renamed from
9191 x86_64_linux_sc_reg_offset.
9192 (amd64_linux_init_abi): Renamed from x86_64_linux_init_abi.
9193 Adjust for renamed functions and variables.
9194 (_initialize_amd64_linux_tdep): Renamed from
9195 _initialize_x86_64_linux_tdep. Adjust for renamed functions and
9196 variables.
9197 * x86-64-linux-tdep.h: Update copyright year. Tweak comment.
9198 Adjust for renamed functions.
9199
9200 * x86-64-linux-nat.c (amd64_linux_gregset64_reg_offset): Rename
9201 from x86_64_linux_gregset64_reg_offset.
9202 (amd64_linux_gregset32_reg_offset): Rename from
9203 x86_64_linux_gregset64_reg_offset.
9204 (amd64_linux_dr_get): Renamed from x86_64_linux_dr_get.
9205 (amd64_linux_dr_set): Renamed from x86_64_linux_dr_set.
9206 (amd64_linux_dr_set_control): Renamed from
9207 x86_64_linux_dr_set_control. Adjust for renamed functions.
9208 (amd64_linux_dr_set_addr): Renamed from x86_64_linux_dr_set_addr.
9209 Adjust for renamed functions.
9210 (amd64_linux_dr_reset_addr): Renamed from
9211 x86_64_linux_dr_reset_addr. Adjust for renamed functions.
9212 (amd64_linux_dr_get_status): Renamed from
9213 x86_64_linux_dr_get_status. Adjust for renamed functions.
9214 (_initialize_amd64_linux_nat): Renamed from
9215 _initialize_x86_64_linux_nat. Adjust for renamed variables and
9216 functions.
9217 * config/i386/nm-x86-64linux.h: Update copyright year.
9218 Adjust for renamed functions.
9219
9220 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_start_addr): Renamed from
9221 amd64fbsd_sigtramp_start.
9222 (amd64fbsd_sigtramp_end_addr): Renamed from
9223 amd64fbsd_sigtramp_end.
9224 (amd64fbsd_init_abi): Adjust for renamed variables.
9225 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Adjust for renamed
9226 variables.
9227 * x86-64-tdep.h (amd64fbsd_sigtramp_start_addr): Renamed from
9228 amd64fbsd_sigtramp_start.
9229 (amd64fbsd_sigtramp_end_addr): Renamed from
9230 amd64fbsd_sigtramp_end.
9231
9232 2004-02-22 Andrew Cagney <cagney@redhat.com>
9233
9234 * hppa-tdep.c (hppa32_return_value): New function.
9235 (hppa64_return_value): New function.
9236 (hppa_gdbarch_init): Set return_value; keep disabled.
9237
9238 * hppa-tdep.c (hppa_gdbarch_init): Re-order separating
9239 struct-return and inferior function call methods.
9240
9241 * hppa-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
9242 "frame-base.h".
9243 (struct hppa_frame_cache): Define.
9244 (hppa_frame_cache, hppa_frame_this_id): New functions.
9245 (hppa_frame_prev_register): New function.
9246 (hppa_frame_unwind, hppa_frame_base): New variables.
9247 (hppa_frame_unwind_sniffer): New function.
9248 (hppa_frame_base_address, hppa_unwind_pc): New function.
9249 (hppa_gdbarch_init): Set unwind_dummy_id, unwind_pc, frame unwind
9250 sniffer, and frame base sniffer; keep disabled.
9251 (hppa_frame_base_sniffer, hppa_unwind_dummy_id): New functions.
9252 * Makefile.in: Update dependencies, fix s/nbsd/obsd/ typo.
9253
9254 * frame-unwind.c (frame_unwind_find_by_frame): Add legacy_frame_p
9255 to predicates for "seriously old code".
9256
9257 * hppa-tdep.c (hppa_gdbarch_init): Convert compile time #if0s into
9258 runtime if(0).
9259
9260 * hppa-tdep.c (hppa_breakpoint_from_pc): Make "breakpoint"
9261 unsigned.
9262 (hppa_frame_find_saved_regs): Fix "std" instruction pattern
9263
9264 * config/pa/tm-hppa.h: Update copyright.
9265 (DEPRECATED_INIT_FRAME_PC): Delete macro.
9266 (deprecated_init_frame_pc_default): Delete declaration.
9267 (hppa_frame_init_saved_regs): Delete declaration.
9268 (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
9269 * hppa-tdep.c: Include "arch-utils.h".
9270 (hppa_gdbarch_init): Set deprecated init_frame_pc
9271 and deprecated frame_init_saved_regs.
9272 (hppa_frame_init_saved_regs): Make static.
9273
9274 2004-02-22 Mark Kettenis <kettenis@gnu.org>
9275
9276 Remove old 386BSD support.
9277 * NEWS (REMOVED configurations and files): Add i[3456]86-*-bsd*.
9278 * configure.host: Remove i[34567]86-*-bsd*.
9279 * configure.tgt: Remove i[34567]86-*-bsd*.
9280 * i386b-nat.c: Removed.
9281 * Makefile.in (ALLDEPFILES): Remove i386b-nat.c.
9282 (i386b-nat.o): Remove dependencies.
9283
9284 * config/i386/i386bsd.mh: Removed.
9285 * config/i386/i386bsd.mt: Removed.
9286 * config/i386/nm-i386bsd.h: Removed.
9287 * config/i386/tm-i386bsd.h: Removed.
9288 * config/i386/xm-i386bsd.h: Removed.
9289
9290 * x86-64-tdep.h (amd64obsd_r_reg_offset): New extern declaration.
9291
9292 * amd64fbsd-tdep.c: Include "solib-svr4.h".
9293 (amd64fbsd_init_abi): Set link map offsets.
9294 * amd64nbsd-tdep.c: Include "slib-svr4.h".
9295 (amd64nbsd_init_abi): Set link map offsets.
9296 * amd64obsd-tdep.c: Include "solib-svr4.h".
9297 (amd64obsd_init_abi): Set link map offsets.
9298 * i386fbsd-tdep.c: Include "solib-svr4.h".
9299 (i386fbsd_init_abi): Set link map offsets.
9300 * i386nbsd-tdep.c: Include "solib-svr4.h".
9301 (i386nbsdelf_init_abi): Set link map offsets.
9302 * Makefile.in (amd64fbsd-tdep.o, amd64nbsd-tdep.o)
9303 (amd64obsd-tdep.o, i386fbsd-tdep.o): Update dependencies.
9304 * config/i386/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o,
9305 solib-legacy.o and core-aout.o. Reformat.
9306 * config/i386/fbsd64.mh (NATDEPFILES): Remove solib.o,
9307 solib-svr4.o, solib-legacy.o. Reformat.
9308 * config/i386/nbsdaout.mh (NATDEPFILES): Add solib.o. Reformat.
9309 * config/i386/nbsdelf.mh: Reformat.
9310 * config/i386/nbsd64.mh (NATDEPFILES): Remove solib.o,
9311 solib-svr4.o, solib-legacy.o and corelow.o.
9312 * config/i386/obsd.mh, config/i386/obsdaout.mh: Reformat.
9313 * config/i386/obsd64.mh (NATDEPFILES): Remove solib.o,
9314 solib-svr4.o, solib-legacy.o and corelow.o. Reformat.
9315 * config/i386/fbsd.mt (TDEPFILES): Add solib.o, solib-svr4.o.
9316 * config/i386/fbsd64.mt (TDEPFILES): Add solib.o, solib-svr4.o.
9317 (TM_FILE): Set to tm-fbsd.h.
9318 * config/i386/nbsd.mt (TDEPFILES): Reformat.
9319 * config/i386/nbsd64.mt (TDEPFILES): Add corelow.o, solib.o and
9320 solib-svr4.o.
9321 * config/i386/obsd.mt (TDEPFILES): Add corelow.o, solib.o and
9322 solib-svr4.o.
9323 (TM_FILE): Set to nm-nbsd.h.
9324 * config/i386/nm-fbsd.h: Update copyright year. Tweak comments.
9325 Simplify shared library support. Don't include "elf/common.h".
9326 (SVR4_SHARED_LIBS): Don't define.
9327 * config/i386/nm-fbsd64.h: Update copyright year. Don't include
9328 "solib.h".
9329 * config/i386/nm-nbsd.h, config/i386/nm-nbsdaout.h,
9330 config/i386/nm-obsd.h: Update copyright year. Tweak comments.
9331 * config/i386/tm-fbsd.h: Update copyright tear. Tweak comments.
9332 Don't include "i386/tm-i386.h". Include "solib.h".
9333 * config/i386/tm-nbsd.h: Update copyright year. Tweak comments.
9334 Don't include "i386/tm-i386.h".
9335 * config/i386/xm-i386.h: Update copyright year. Tweak comments.
9336 * config/i386/xm-nbsd.h: Update copyright year. Tweak comments.
9337 Include "i386/xm-i386.h".
9338 (HOST_LONG_DOUBLE_FORMAT): Remove.
9339
9340 Fix OpenBSD/i386 sigtramp recognition.
9341 * i386-tdep.h: Update copyright year.
9342 (i386bsd_pc_in_sigtramp, i386bsd_sigtramp_start)
9343 (i386bsd_sigtramp_end): New prototypes.
9344 (i386fbsd_sigtramp_start_addr): Renamed from
9345 i386fbsd_sigtramp_start.
9346 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
9347 (i386obsd_sigtramp_start_addr): Renamed from
9348 i386obsd_sigtramp_start.
9349 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
9350 * i386bsd-tdep.c: Update copyright year.
9351 (i386bsd_pc_in_sigtramp): Make public.
9352 * i386fbsd-nat.c: Update copyright year.
9353 (_initialize_i386fbsd_nat): Adjust for renamed variables.
9354 * i386fbsd-tdep.c: Update copyright year.
9355 (i386fbsd_sigtramp_start_addr): Renamed from
9356 i386fbsd_sigtramp_start.
9357 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
9358 (i386fbsdaout_init_abi): Adjust for renamed variables.
9359 * i386obsd-nat.c: Update copyright year.
9360 (_initialize_i386obsd_nat): Adjust for renamed variables.
9361 * i386obsd-tdep.c: Include "target.h".
9362 (i386obsd_page_size): New variable.
9363 (i386obsd_pc_in_sigtramp, i386obsd_sigtramp_start)
9364 (i386obsd_sigtramp_end): New functions.
9365 (i386obsd_sigtramp_start_addr): Renamed from
9366 i386obsd_sigtramp_start.
9367 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
9368 (i386obsd_init_abi): Adjust for renamed variables. Set
9369 pc_in_sigtramp, sigtramp_start and sigtramp_end.
9370 * Makefile.in (i386obsd-tdep.o): Update dependencies.
9371
9372 * amd64obsd-tdep.c (amd64obsd_pc_in_sigtramp): Adjust for signal
9373 trampoline change in OpenBSD kernel.
9374
9375 * amd64-nat.c: Update copyright year.
9376 (amd64_supply_native_gregset, amd64_collect_native_gregset): Use
9377 architecture from REGCACHE.
9378
9379 * x86-64-linux-nat.c (x86_64_linux_gregset32_reg_offset): Use
9380 symbolic constants from <sys/reg.h> instead of hard-coded numbers.
9381
9382 2004-02-21 Mark Kettenis <kettenis@gnu.org>
9383
9384 * configure.host: Add i[34567]86-*-openbsd[0-2].* and
9385 i[34567]86-*-openbsd3.[0-3].
9386 * config/i386/obsdaout.mh: New file.
9387
9388 * config/i386/obsd.mh (MH_FLAGS): Remove.
9389
9390 Fix PR build/1549.
9391 * i386obsd-tdep.c: Update copyright years. Include
9392 "solib-svr4.h".
9393 (i386obsd_init_abi): Don't set regset_from_core_section here.
9394 (i386obsd_aout_init_abi): New function. Set
9395 regset_from_core_section here.
9396 (i386obsd_elf_init_abi): New function.
9397 (_initialize_i386obsd_tdep): Register OS/ABI for OpenBSD ELF.
9398 * Makefile.in (i386obsd-tdep.o): Update dependecies.
9399 * config/i386/obsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
9400 (TM_FILE): Set to tm-nbsd.h.
9401
9402 * config/i386/obsd.mh (NATDEPFILES): Remove solib.o and
9403 solib-sunos.o.
9404
9405 * solib-svr4.h: Update copyright year.
9406 (svr4_ilp32_fetch_link_map_offsets)
9407 (svr4_lp64_fetch_link_map_offsets): New prototype.
9408 * solib-svr4.c: Update copyright year.
9409 (svr4_ilp32_fetch_link_map_offsets)
9410 (svr4_lp64_fetch_link_map_offsets): New function.
9411
9412 2004-02-20 Daniel Jacobowitz <drow@mvista.com>
9413
9414 * dwarf2read.c (add_partial_symbol): Fix typo in adding enumerators
9415 to the partial symbol table.
9416
9417 2004-02-20 J. brobecker <brobecker@gnat.com>
9418
9419 * PROBLEMS: Add description of problem documented under gdb/1560.
9420
9421 2004-02-20 Mark Kettenis <kettenis@gnu.org>
9422
9423 * amd64obsd-tdep.c: Include "regset.h" and "i387-tdep.h". Fix
9424 comments.
9425 (amd64obsd_supply_regset, amd64obsd_regset_from_core_section): New
9426 functions.
9427 (amd64obsd_init_abi): Reorder initializations. Use
9428 amd64obsd_r_reg_offset to initialize the general-purpose register
9429 set details. Set regset_from_core_section.
9430 (_initialize_amd64obsd_tdep): Rename from
9431 _initialize_amd64obsd_ndep. Add OS ABI handler for core dumps.
9432 * Makefile.in (amd64obsd-tdep.o): Update dependencies.
9433 * config/i386/obsd64.mt (TDEPFILES): Add i386-tdep.o.
9434
9435 * NEWS (New native configurations): Mention OpenBSD/alpha.
9436 * configure.tgt: Add alpha*-*-openbsd*.
9437 * configure.host: Add alpha*-*-openbsd*.
9438 * alphanbsd-tdep.c: Update copyright year.
9439 (_initialize_alphanbsd_tdep): Register OS ABI for OpenBSD ELF.
9440
9441 2004-02-20 Andrew Cagney <cagney@redhat.com>
9442
9443 Fix PR tdep/1372.
9444 * configure.tgt: Delete target "none-*-*".
9445 * configure.host: Delete host "none-*-*".
9446 * config/none/none.mh: Delete file.
9447 * config/none/none.mt: Delete file.
9448 * config/none/xm-none.h: Delete file.
9449 * config/none/tm-none.h: Delete file.
9450 * config/none/nm-none.h: Delete file.
9451
9452 2004-02-19 Fred Fish <fnf@redhat.com>
9453
9454 * sh-tdep.c (sh_analyze_prologue): Eliminate useless test of
9455 cache->uses_fp prior to setting it.
9456
9457 2004-02-19 Fred Fish <fnf@redhat.com>
9458
9459 Fix for PR breakpoint/1558.
9460 * sh-tdep.c (IS_JSR): New macro.
9461 (sh_analyze_prologue): Use IS_JSR to terminate prologue scan.
9462
9463 2004-02-19 Jim Blandy <jimb@redhat.com>
9464
9465 * findvar.c (value_from_register): Doc fix.
9466
9467 2004-02-19 Jeff Johnston <jjohnstn@redhat.com>
9468
9469 * printcmd.c (print_scalar_formatted): Do not check for sizeof
9470 type being greater than sizeof of host's LONGEST. Always use
9471 unpack_long() unless format 'f' chosen.
9472
9473 2004-02-19 Joel Brobecker <brobecker@gnat.com>
9474
9475 Committed by Elena Zannoni <ezannoni@redhat.com>
9476
9477 * symtab.c (find_pc_sect_psymtab): Return the psymtab that
9478 contains a symbol wich is the best, non-exact match for the given
9479 pc. Update comments.
9480
9481 2004-02-19 Elena Zannoni <ezannoni@redhat.com>
9482
9483 * event-top.c (async_request_quit): Remove uses of REQUEST_QUIT
9484 macro, which was part of the now removed Mach 3 port.
9485 * utils.c (request_quit): Ditto.
9486
9487 2004-02-18 Mark Kettenis <kettenis@gnu.org>
9488
9489 * config/djgpp/fnchange.lst: Rename "amd64obsd-tdep.c" and
9490 "amd64obsd-nat.c" to "a64ob-tdep.c" and "a64ob-nat.c".
9491
9492 2004-02-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
9493
9494 Committed by Mark Kettenis <kettenis@gnu.org>.
9495
9496 * config/s390/nm-linux.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT):
9497 Define.
9498
9499 2004-02-18 Andrew Cagney <cagney@redhat.com>
9500
9501 * configure.in: Add a TUI target to CONFIG_ALL, CONFIG_CLEAN,
9502 CONFIG_INSTALL and CONFIG_UNINSTALL.
9503 * configure: Re-generate.
9504 * interps.h (INTERP_TUI): Define.
9505 * Makefile.in: Update dependencies.
9506 (TUI): New macro.
9507 (tui-main.o): Specify dependencies.
9508 (install-tui, uninstall-tui, clean-tui, all-tui): New rules.
9509 * tui/tui-main.c: New file.
9510
9511 2004-02-18 Mark Kettenis <kettenis@gnu.org>
9512
9513 * amd64obsd-tdep.c, amd64obsd-nat.c: New files.
9514 * Makefile.in (amd64obsd-nat.o, amd64obsd-tdep.o): New
9515 dependencies.
9516 * configure.host: Add x86_64-*-openbsd*.
9517 * configure.tgt: Add x86_64-*-openbsd*.
9518 * config/i386/obsd64.mt, config/i386/obsd64.mh: New files.
9519
9520 * tui/tui.c: Don't include <malloc.h>.
9521
9522 * Makefile.in (ALLDEPFILES): Add amd64-nat.c, amd64bsd-nat.c,
9523 amdfbsd-nat.c, amd64-fbsd-tdep.c, amd64nbsd-nat.c and
9524 amd64nbsd-tdep.c.
9525
9526 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Make
9527 static. Remove extraneous whitespace.
9528 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Make
9529 static.
9530
9531 2004-02-17 Jim Blandy <jimb@redhat.com>
9532
9533 * findvar.c (value_from_register): Doc fix.
9534
9535 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
9536
9537 Committed by Jim Blandy <jimb@redhat.com>.
9538
9539 * eval.c (evaluate_subexp_standard, case OP_OBJC_MSGCALL): Use
9540 CORE_ADDR as type for selectors. Correct types for GNU run time
9541 message lookup function to use double indirection.
9542 * objc-lang.c (lookup_child_selector): Use CORE_ADDR as return type.
9543 * objc-lang.h (lookup_child_selector): Adapt prototype.
9544
9545 * s390-nat.c (SUBOFF): New macro.
9546 (supply_gregset, fill_gregset): Use it to handle debugging
9547 of 32-bit exectuables running under a 64-bit kernel.
9548 * s390-tdep.c: Include "solib-svr4.h".
9549 (s390_svr4_fetch_link_map_offset): New function.
9550 (s390x_svr_fetch_link_map_offset): Likewise.
9551 (s390_gdbarch_init): Call set_solib_svr4_fetch_link_map_offsets.
9552 * Makefile.in (s390-tdep.o): Update dependencies.
9553
9554 * s390-tdep.c: Include "trad-frame.h", "frame-base.h", and
9555 "frame-unwind.h".
9556 (s390_readinstruction): Reformat. Use read_memory_nobpt.
9557 (GDB_TARGET_IS_ESAME, S390_GPR_SIZE, S390_FPR_SIZE): Remove.
9558 (S390_SYSCALL_OPCODE, S390_SYSCALL_SIZE): Remove.
9559 (S390_SIGCONTEXT_SREGS_OFFSET, S390X_SIGCONTEXT_SREGS_OFFSET,
9560 S390_SIGREGS_FP0_OFFSET, S390X_SIGREGS_FP0_OFFSET,
9561 S390_UC_MCONTEXT_OFFSET, S390X_UC_MCONTEXT_OFFSET,
9562 S390_SIGNAL_FRAMESIZE,
9563 s390_NR_sigreturn, s390_NR_rt_sigreturn): Remove.
9564 (struct frame_extra_info): Remove.
9565 (s390_memset_extra_info): Remove.
9566 (op1_ag, op1_ay, op1_brasl, op1_brc, op1_brcl, op1_lay, op1_lg)
9567 (op1_lmy, op1_ly, op1_sg, op1_stmy, op1_sty, op1_sy, op_a)
9568 (op_agr, op_bas, op_bc, op_bcr, op_sgr, op_sr): New opcodes.
9569 (is_rse): Renamed to ...
9570 (is_rsy): ... this. Support long displacements.
9571 (is_rxe): Renamed to ...
9572 (is_rxy): ... this. Support long displacements.
9573 (compute_x_addr): Support long displacements.
9574 (struct s390_prologue_data): New data type.
9575 (s390_on_stack): Change API to use struct s390_prologue_data.
9576 (s390_store): Reimplement.
9577 (s390_load): New function.
9578 (s390_get_signal_frame_info): Remove.
9579 (s390_get_frame_info): Remove, replace by ...
9580 (s390_analyze_prolog): ... this new function.
9581 (s390_check_function_end): Remove.
9582 (s390_function_start): Remove.
9583 (s390_frameless_function_invokation): Remove.
9584 (s390_is_sigreturn): Remove.
9585 (s390_init_frame_pc_first): Remove.
9586 (s390_init_frame_extra_info): Remove.
9587 (s390_frame_init_saved_regs): Remove.
9588 (s390_frame_saved_pc_nofix): Remove.
9589 (s390_frame_saved_pc): Remove.
9590 (s390_frame_chain): Remove.
9591 (s390_fp_regnum, s390_read_fp): Remove.
9592 (s390_pop_frame_regular, s390_pop_frame): Remove.
9593 (s390_saved_pc_after_call): Remove.
9594 (s390_skip_prologue): Reimplement.
9595 (s390_in_function_epilogue_p): Support long displacements.
9596 (struct s390_unwind_cache): New data structure.
9597 (s390_frame_unwind_cache): New function.
9598 (s390_prologue_frame_unwind_cache): Likewise.
9599 (s390_backchain_frame_unwind_cache): Likewise.
9600 (s390_frame_this_id, s390_frame_prev_register): Likewise.
9601 (s390_frame_unwind): Define.
9602 (s390_frame_sniffer): New function.
9603 (struct s390_pltstub_unwind_cache): New data structure.
9604 (s390_pltstub_frame_unwind_cache): New function.
9605 (s390_pltstub_frame_this_id): Likewise.
9606 (s390_pltstub_frame_prev_register): Likewise.
9607 (s390_pltstub_frame_unwind): Define.
9608 (s390_pltstub_frame_sniffer): New function.
9609 (struct s390_sigtramp_unwind_cache): New data structure.
9610 (s390_sigtramp_frame_unwind_cache): New function.
9611 (s390_sigtramp_frame_this_id): Likewise.
9612 (s390_sigtramp_frame_prev_register): Likewise.
9613 (s390_sigtramp_frame_unwind): Define.
9614 (s390_sigtramp_frame_sniffer): New function.
9615 (s390_frame_base_address, s390_local_base_address): New functions.
9616 (s390_frame_base): Define.
9617 (s390_unwind_pc, s390_unwind_sp): New function.
9618 (s390_push_dummy_call): Use new frame base location.
9619 (s390_unwind_dummy_id): Likewise.
9620 (s390_gdbarch_init): Remove calls to:
9621 set_gdbarch_frameless_function_invocation,
9622 set_gdbarch_deprecated_init_frame_pc,
9623 set_gdbarch_deprecated_frame_chain,
9624 set_gdbarch_deprecated_frame_init_saved_regs,
9625 set_gdbarch_deprecated_pop_frame,
9626 set_gdbarch_deprecated_init_extra_frame_info,
9627 set_gdbarch_deprecated_init_frame_pc_first,
9628 set_gdbarch_deprecated_target_read_fp,
9629 set_gdbarch_deprecated_frame_saved_pc,
9630 set_gdbarch_deprecated_saved_pc_after_call,
9631 set_gdbarch_deprecated_fp_regnum.
9632 Add calls to:
9633 set_gdbarch_in_solib_call_trampoline,
9634 frame_unwind_append_sniffer,
9635 frame_base_set_default,
9636 set_gdbarch_unwind_pc,
9637 set_gdbarch_unwind_sp.
9638 * Makefile.in (s390-tdep.o): Update dependencies.
9639
9640 * s390-tdep.c (struct gdbarch_tdep): Add 'abi' member.
9641 (S390_STACK_FRAME_OVERHEAD): Remove.
9642 (S390_STACK_PARAMETER_ALIGNMENT): Remove.
9643 (S390_NUM_FP_PARAMETER_REGISTERS): Remove.
9644 (s390_promote_integer_argument): Remove.
9645 (s390_cannot_extract_struct_value_address): Remove.
9646 (s390_use_struct_convention, s390_store_struct_return): Remove.
9647 (s390_extract_return_value, s390_store_return_value): Remove.
9648 (s390_return_value_convention, s390_return_value): New functions.
9649 (is_float_singleton): Handle typedefs.
9650 (is_double_or_float, is_double_arg, is_simple_arg, pass_by_copy_ref):
9651 Remove, replace by ...
9652 (s390_function_arg_pass_by_reference, s390_function_arg_float,
9653 s390_function_arg_integer): ... these new functions.
9654 (s390_push_arguments, s390_push_return_address): Remove, replace by ...
9655 (s390_push_dummy_call, s390_unwind_dummy_id): ... these new functions.
9656 (s390_gdbarch_init): Remove s390_call_dummy_words and elf_flags.
9657 Fill in tdep->abi.
9658 Remove calls to:
9659 set_gdbarch_deprecated_store_struct_return,
9660 set_gdbarch_deprecated_extract_return_value,
9661 set_gdbarch_deprecated_store_return_value,
9662 set_gdbarch_use_struct_convention,
9663 set_gdbarch_extract_struct_value_address,
9664 set_gdbarch_deprecated_pc_in_call_dummy,
9665 set_gdbarch_deprecated_push_arguments,
9666 set_gdbarch_deprecated_save_dummy_frame_tos,
9667 set_gdbarch_deprecated_push_return_address,
9668 set_gdbarch_deprecated_sizeof_call_dummy_words,
9669 set_gdbarch_deprecated_call_dummy_words,
9670 set_gdbarch_deprecated_dummy_write_sp.
9671 Add calls to:
9672 set_gdbarch_push_dummy_call,
9673 set_gdbarch_unwind_dummy_id,
9674 set_gdbarch_return_value.
9675
9676 * config/s390/nm-linux.h: Update comments.
9677 (target_insert_watchpoint, target_remove_watchpoint): Redefine.
9678 (STOPPED_BY_WATCHPOINT): Redefine.
9679 (TARGET_CAN_USE_HARDWARE_WATCHPOINT): Redefine to 1.
9680 (s390_insert_watchpoint, s390_remove_watchpoint): Update prototype.
9681 (s390_stopped_by_watchpoint): Likewise.
9682 (watch_area_cnt): Remove.
9683 * s390-nat.c: Update comments.
9684 (watch_area): Remove typedef.
9685 Global replace watch_area by struct watch_area.
9686 (watch_area_cnt, watch_lo_addr, watch_hi_addr): Remove.
9687 (s390_stopped_by_watchpoint): Remove pid argument,
9688 use s390_inferior_tid. Add short-cut for the no watchpoint case.
9689 (s390_fix_watch_points): Remove pid argument,
9690 use s390_inferior_tid. Recompute area spanned by watchpoints.
9691 (s390_insert_watchpoint, s390_remove_watchpoint): Remove pid
9692 argument. Reimplement.
9693
9694 * config/s390/nm-linux.h: Update comments. Do not include "solib.h".
9695 (KERNEL_U_ADDR, REGISTER_U_ADDR, U_REGS_OFFSET): Remove.
9696 (FETCH_INFERIOR_REGISTERS): Define.
9697 * config/s390/s390.mh (NATDEPFILES): Remove core-aout.o and
9698 core-regset.o.
9699 * config/s390/s390x.mt: Remove.
9700 * config/s390/tm-s390.h: Remove.
9701 * config/s390/tm-linux.h: Do not include "s390/tm-s390.h".
9702 (TARGET_ELF64): Remove.
9703 (SKIP_TRAMPOLINE_CODE): Do not undefine.
9704 * configure.tgt [s390-*-*, s390x-*-*]: Merge into single
9705 s390*-*-* case; always set gdb_target to s390.
9706 * regformats/reg-s390.dat: Remove control registers.
9707 * regformats/reg-s390x.dat: Likewise.
9708 * s390-tdep.h: New file.
9709 * s390-nat.c: Do not include <asm/processor.h> or <value.h>.
9710 Include "inferior.h" and "s390-tdep.h".
9711 Remove private definition of offsetof.
9712 (s390_register_u_addr): Remove.
9713 (regmap_gregset, regmap_fpregset): Define.
9714 (supply_gregset, fill_gregset): Reimplement.
9715 (supply_fpregset, fill_fpregset): Likewise.
9716 (s390_inferior_tid): New function.
9717 (fetch_regs, store_regs, fetch_fpregs, store_fpregs): Likewise.
9718 (fetch_inferior_registers, store_inferior_registers): Likewise.
9719 * s390-tdep.c: Do not define S390_TDEP. Include "defs.h" instead
9720 of <defs.h>. Include "reggroups.h", "regset.h", and "s390-tdep.h".
9721 Global replace of S390_GP0_REGNUM by S390_R0_REGNUM.
9722 Global replace of S390_FP0_REGNUM by S390_F0_REGNUM.
9723 (struct gdbarch_tdep): Define.
9724 (struct s390_register_info): Define.
9725 (s390_register_info): New variable.
9726 (s390_register_name): Reimplement.
9727 (s390_register_type): New function.
9728 (s390_register_raw_size, s390x_register_raw_size): Remove.
9729 (s390_cannot_fetch_register): Remove.
9730 (s390_register_byte): Remove.
9731 (s390_register_virtual_type, s390x_register_virtual_type): Remove.
9732 (s390_dwarf_regmap): New variable.
9733 (s390_dwarf_reg_to_regnum): New function.
9734 (s390_stab_reg_to_regnum): Remove.
9735 (s390_pseudo_register_read, s390_pseudo_register_write): New functions.
9736 (s390x_pseudo_register_read, s390x_pseudo_register_write): Likewise.
9737 (s390_convert_register_p): Likewise.
9738 (s390_register_to_value, s390_value_to_register): Likewise.
9739 (s390_register_reggroup_p): Likewise.
9740 (s390_regmap_gregset, s390x_regmap_gregset, s390_regmap_fpregset,
9741 s390_gregset, s390x_gregset, s390_fpregset): New variables.
9742 (s390_supply_regset, s390_regset_from_core_section): New functions.
9743 (GDB_TARGET_IS_ESAME): Move here from tm-s390.h.
9744 (S390_FPR_SIZE): Likewise.
9745 (S390_GPR_SIZE): Likewise. Redefine in terms of GDB_TARGET_IS_ESAME.
9746 Global replace of DEPRECATED_REGISTER_SIZE by S390_GPR_SIZE.
9747 (S390_NUM_GPRS): Move here from tm-s390.h.
9748 (S390_NUM_FPRS): Likewise.
9749 (s390_in_function_epilogue_p): New function.
9750 (s390_is_sigreturn): Replace S390_PSW_ADDR_SIZE by S390_GPR_SIZE.
9751 Replace S390_PC_REGNUM by S390_PSWA_REGNUM.
9752 (s390_gdbarch_init): Allocate and set up gdbarch_tdep structure.
9753 Replace s390_stab_reg_to_regnum by s390_dwarf_reg_to_regnum.
9754 Replace S390_FP_REGNUM by S390_SP_REGNUM.
9755 Remove calls to:
9756 set_gdbarch_deprecated_max_register_raw_size,
9757 set_gdbarch_deprecated_max_register_virtual_size,
9758 set_gdbarch_deprecated_register_byte,
9759 set_gdbarch_cannot_fetch_register,
9760 set_gdbarch_cannot_store_register,
9761 set_gdbarch_deprecated_register_size,
9762 set_gdbarch_deprecated_register_raw_size,
9763 set_gdbarch_deprecated_register_virtual_size,
9764 set_gdbarch_deprecated_register_virtual_type,
9765 set_gdbarch_deprecated_register_bytes.
9766 Add calls to:
9767 set_gdbarch_num_pseudo_regs,
9768 set_gdbarch_register_type,
9769 set_gdbarch_convert_register_p,
9770 set_gdbarch_register_to_value,
9771 set_gdbarch_value_to_register,
9772 set_gdbarch_register_reggroup_p,
9773 set_gdbarch_regset_from_core_section,
9774 set_gdbarch_pseudo_register_read,
9775 set_gdbarch_pseudo_register_write,
9776 set_gdbarch_in_function_epilogue_p.
9777 * Makefile.in (s390-nat.o, s390-tdep.o): Update dependencies.
9778 (s390_tdep_h): New variable.
9779
9780 2004-02-17 Jim Blandy <jimb@redhat.com>
9781
9782 * findvar.c (value_from_register): If the type has no length, just
9783 return an acceptable value --- don't report an internal error.
9784
9785 * stabsread.c (read_type): If we find any type numbers that are
9786 forward references, complain if the references aren't resolved by
9787 the time we're finished reading.
9788 (cleanup_undefined_types): Make error message more appropriate for
9789 a complaint.
9790
9791 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
9792
9793 * Makefile.in (defs_h): Remove dependency on progress_h.
9794 * defs.h (QUIT): Remove use of PROGRESS macro. Remove include of
9795 progress.h.
9796 * main.c (captured_main): Delete use of START_PROGRESS and
9797 END_PROGRESS.
9798
9799 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
9800
9801 * objfiles.c (terminate_minimal_symbol_table): Add back
9802 initialization of MSYMBOL_TYPE.
9803
9804 2004-02-17 David Mosberger <davidm@hpl.hp.com>
9805
9806 Committed by Andrew Cagney.
9807 * Makefile.in (ia64_tdep_h): New macro.
9808 (ia64-linux-tdep.o): Mention $(ia64_tdep_h).
9809 (ia64-tdep.o): Likewise.
9810 * ia64-tdep.h: New file.
9811 * ia64-tdep.c: Update copyright notice. Include "ia64-tdep.h".
9812 (ia64_linux_sigcontext_register_address): Move decl to ia64-tdep.h.
9813 (ia64_aix_sigcontext_register_address): Likewise.
9814 (ia64_linux_getunwind_table): Delete declaration.
9815 * ia64-linux-tdep.c: Likewise.
9816
9817 2004-02-17 Corinna Vinschen <vinschen@redhat.com>
9818
9819 * sh-tdep.c (sh_dsp_register_sim_regno): Use DSP_Rx_BANK_REGNUM.
9820 * sh-tdep.h: Rename R0_BANK_REGNUM and R7_BANK_REGNUM to
9821 DSP_R0_BANK_REGNUM and DSP_R7_BANK_REGNUM.
9822
9823 2004-02-17 Andrew Cagney <cagney@redhat.com>
9824
9825 * symtab.c (skip_prologue_using_sal): New function.
9826 * symtab.h (skip_prologue_using_sal): Declare.
9827 * frv-tdep.c: Include "symtab.h".
9828 (skip_prologue_using_sal): Delete function.
9829 * mips-tdep.c (skip_prologue_using_sal): Delete function.
9830 * rs6000-tdep.c (refine_prologue_limit): Mention
9831 skip_prologue_using_sal.
9832 * ia64-tdep.c (refine_prologue_limit): Ditto.
9833 * Makefile.in: Update dependencies.
9834
9835 2004-02-16 Andrew Cagney <cagney@redhat.com>
9836
9837 * config/alpha/tm-nbsd.h: Update copyright, delete #undef
9838 START_INFERIOR_TRAPS_EXPECTED.
9839 * config/alpha/tm-fbsd.h: Update copyright, delete #undef
9840 START_INFERIOR_TRAPS_EXPECTED.
9841 * config/alpha/tm-alphalinux.h (START_INFERIOR_TRAPS_EXPECTED):
9842 Delete macro.
9843 * config/alpha/tm-alpha.h (START_INFERIOR_TRAPS_EXPECTED): Delete
9844 macro, moved to "nm-osf.h". Update copyright.
9845 * config/alpha/nm-osf.h (START_INFERIOR_TRAPS_EXPECTED): Define,
9846 update copyright.
9847
9848 * gdbarch.sh (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION): Predicate
9849 and function replacing FRAMELESS_FUNCTION_INVOCATION.
9850 * blockframe.c (legacy_frameless_look_for_prologue): Rename
9851 frameless_look_for_prologue.
9852 * frame.h (legacy_frameless_look_for_prologue): Rename
9853 frameless_look_for_prologue.
9854 * gdbarch.h, gdbarch.c: Re-generate.
9855 * sh64-tdep.c (sh64_gdbarch_init): Update.
9856 * sh-tdep.c (sh_gdbarch_init): Update.
9857 * s390-tdep.c (s390_gdbarch_init): Update.
9858 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
9859 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
9860 * m68k-tdep.c (m68k_gdbarch_init): Update.
9861 (delta68_frame_args_address): Update.
9862 * m32r-tdep.c (m32r_gdbarch_init): Update.
9863 * hppa-tdep.c (hppa_gdbarch_init): Update.
9864 * h8300-tdep.c (h8300_gdbarch_init): Update.
9865 * frv-tdep.c (frv_gdbarch_init): Update.
9866 (frv_frameless_function_invocation): Update.
9867 * cris-tdep.c (cris_gdbarch_init): Update.
9868 (cris_frameless_function_invocation): Update.
9869 * avr-tdep.c (avr_gdbarch_init): Update.
9870 * arm-tdep.c (arm_gdbarch_init): Update.
9871 * stack.c (frame_info): Update, call predicate.
9872 * rs6000-tdep.c (rs6000_frame_chain): Update, call predicate..
9873 * frame.c (legacy_get_prev_frame): Update, call predicate..
9874 * arch-utils.c (generic_frameless_function_invocation_not): Delete.
9875 * arch-utils.h (generic_frameless_function_invocation_not): Delete.
9876 * alpha-tdep.c (alpha_gdbarch_init): Do not set frameless function
9877 invocation.
9878 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
9879 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
9880 * vax-tdep.c (vax_gdbarch_init): Ditto.
9881
9882 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): Delete unused
9883 function.
9884
9885 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
9886
9887 * objfiles.c (terminate_minimal_symbol_table): Remove unnecessary
9888 initializations.
9889
9890 2004-02-16 Andrew Cagney <cagney@redhat.com>
9891
9892 * tui/tui-windata.c: Include "gdb_string.h".
9893 * tui/tui-source.c, tui/tui-winsource.c: Ditto.
9894 * tui/tui-layout.c, tui/tui-command.c: Ditto.
9895 * Makefile.in: Update dependencies.
9896
9897 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
9898
9899 * Makefile.in (infrun.o): Add $(gdb_assert_h).
9900 * infrun.c: Include "gdb_assert.h".
9901 (singlestep_ptid, saved_singlestep_ptid)
9902 (stepping_past_singlestep_breakpoint): New variables.
9903 (resume): Set singlestep_ptid. Check for singlestep thread
9904 hop.
9905 (init_wait_for_inferior): Clear stepping_past_singlestep_breakpoint.
9906 (handle_inferior_event): Handle singlestep thread hop.
9907
9908 2004-02-16 Andrew Cagney <cagney@redhat.com>
9909
9910 * dwarf2-frame.c (dwarf2_frame_ops): New function.
9911 (dwarf2_frame_set_init_reg): Use, instead of gdbarch_data.
9912 (dwarf2_frame_init_reg): Ditto.
9913
9914 * printcmd.c (display_command): Check that EXP isn't NULL. Fix
9915 suggested by Joshua Neuheisel
9916
9917 * configure.in: Always check for curses, including pdcurses.
9918 Warn, instead of error, when no curses are found. Enable TUI when
9919 curses is available.
9920 * configure: Re-generate.
9921
9922 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
9923
9924 * sh-tdep.c (sh_register_convert_to_virtual): Rename from
9925 sh_sh4_register_convert_to_virtual.
9926 (sh_register_convert_to_raw): Rename from
9927 sh_sh4_register_convert_to_raw.
9928 (sh_pseudo_register_read): Accomodate above name change.
9929 (sh_pseudo_register_write): Ditto.
9930
9931 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
9932
9933 * sh-tdep.c (sh_generic_register_name): Remove.
9934 (sh_gdbarch_init): Use sh_sh_register_name in default case.
9935
9936 2004-02-15 Andrew Cagney <cagney@redhat.com>
9937
9938 * configure.in (build_warnings): Add -Wunused-function.
9939 * configure: Re-generate.
9940
9941 * config/tm-lynx.h (START_INFERIOR_TRAPS_EXPECTED): Delete macro.
9942 * config/rs6000/tm-rs6000.h (START_INFERIOR_TRAPS_EXPECTED): Ditto.
9943
9944 * procfs.c (procfs_init_inferior): Assume that
9945 START_INFERIOR_TRAPS_EXPECTED is defined.
9946 * config/ns32k/nbsdaout.mt (TM_FILE): Set to tm-ns32k.h.
9947 * config/ns32k/tm-nbsd.h: Delete file,
9948 START_INFERIOR_TRAPS_EXPECTED already defined as 2.
9949
9950 * config/vax/tm-vaxbsd.h: Do not include "tm-vax.h".
9951 * config/vax/tm-vax.h: Delete file.
9952
9953 * config/mips/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9954 * config/i386/tm-i386bsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9955 * config/arm/tm-linux.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9956 * config/vax/tm-vaxbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9957 * vax-tdep.c (vax_sigtramp_saved_pc): Inline only reference.
9958 * config/ns32k/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9959 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): Inline only reference.
9960
9961 2004-02-15 Mark Kettenis <kettenis@gnu.org>
9962
9963 * dwarf2-frame.h (dwarf2_frame_set_init_reg): New prototype.
9964 * dwarf2-frame.c (dwarf2_frame_data): New variable.
9965 (struct dwarf2_frame_ops): New.
9966 (dwarf2_frame_default_init_reg): New function, based on
9967 dwarf2_frame_init_reg.
9968 (dwarf2_frame_init, dwarf2_frame_set_init_reg): New function.
9969 (dwarf2_frame_init_reg): Call architecture-specific function.
9970 (dwarf2_frame_objfile_data): Renamed from dwarf2_frame_data.
9971 (dwarf2_frame_find_fde, add_fde): Use dwarf2_frame_objfile_data
9972 instead of dwarf2_frame_data.
9973 (_initialize_dwarf2_frame): Initailize new dwarf2_frame_data.
9974 Initialize dwarf2_frame_objfile instead of old dwarf2_frame_data.
9975
9976 2004-02-15 Andrew Cagney <cagney@redhat.com>
9977
9978 * gdbarch.sh (deprecated_register_gdbarch_swap): Rename
9979 register_gdbarch_swap.
9980 (DEPRECATED_REGISTER_GDBARCH_SWAP): Rename REGISTER_GDBARCH_SWAP.
9981 * f-lang.c (_initialize_f_language): Update, use
9982 DEPRECATED_REGISTER_GDBARCH_SWAP.
9983 * remote.c (_initialize_remote): Ditto.
9984 * regcache.c (_initialize_regcache): Ditto.
9985 * parse.c (_initialize_parse): Ditto.
9986 * infrun.c (_initialize_infrun): Ditto.
9987 * mi/mi-main.c (_initialize_mi_main): Ditto.
9988 * gdbtypes.c (_initialize_gdbtypes): Ditto.
9989
9990 * solib.c (solib_map_sections): Use bfd_set_cacheable instead of
9991 poking .cacheable directly.
9992 * symfile.c (symfile_bfd_open): Ditto.
9993
9994 * Makefile.in: Update all dependencies.
9995
9996 * Makefile.in: (.SUFFIXES): Add ".l" and ".y".
9997 (.y.c, .l.c): Specify implicit rule. Instead of .tab.c, generate
9998 .c. Update references. Delete unnecessary .tab.c and -lex.c rules.
9999 (ada-exp.o, c-exp.o, f-exp.o): Replace ada-exp.tab.o et.al. rule.
10000 (jv-exp.o, m2-exp.o, objc-exp.o, p-exp.o): Similar.
10001
10002 2004-02-14 Andrew Cagney <cagney@redhat.com>
10003
10004 * arch-utils.c (legacy_convert_register_p): Check
10005 DEPRECATED_REGISTER_CONVERTIBLE_P.
10006 * findvar.c (value_of_register): Ditto.
10007
10008 * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Add predicate.
10009 * gdbarch.h, gdbarch.c: Re-generate.
10010 * arch-utils.c (deprecated_register_convertible_not): Delete.
10011 * arch-utils.h (deprecated_register_convertible_not): Delete.
10012 * mi/mi-main.c (get_register): Update. Update copyright.
10013 * infcmd.c (default_print_registers_info): Update.
10014
10015 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
10016 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Delete.
10017 (DEPRECATED_CALL_DUMMY_ADDRESS): Delete.
10018 * gdbarch.h, gdbarch.c: Re-generate.
10019 * frame.c (deprecated_get_next_frame_hack): Delete function.
10020 * frame.h (deprecated_get_next_frame_hack): Delete declaration.
10021 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
10022 Update.
10023 * infcall.c (call_function_by_hand): Update.
10024
10025 2004-02-14 Elena Zannoni <ezannoni@redhat.com>
10026
10027 * symfile.c (init_entry_point_info, entry_point_address): Move
10028 from here...
10029 * objfiles.c (init_entry_point_info, entry_point_address):..to
10030 here.
10031 * symfile.h (init_entry_point_info, entry_point_address): Remove
10032 prototypes.
10033 * objfiles.h (init_entry_point_info, entry_point_address):Add
10034 prototypes.
10035 * cris-tdep.c: Remove include of symfile.h. Add include of
10036 objfiles.h.
10037 * infcall.c: Ditto.
10038 * mcore-tdep.c: Ditto.
10039 * mn10300-tdep.c: Ditto.
10040 * sh64-tdep.c: Ditto.
10041 * v850-tdep.c: Ditto.
10042 * arm-tdep.c: Remove include of symfile.h.
10043 * blockframe.c: Ditto.
10044 * coffread.c: Ditto.
10045 * dbxread.c: Ditto.
10046 * dwarf2read.c: Ditto.
10047 * dwarfread.c: Ditto.
10048 * frv-tdep.c: Ditto.
10049 * ia64-tdep.c: Ditto.
10050 * mdebugread.c: Ditto.
10051 * mipsread.c: Ditto.
10052 * rs6000-tdep.c: Ditto.
10053 * s390-tdep.c: Ditto.
10054 * sh-tdep.c: Ditto.
10055 * xstormy16-tdep.c: Ditto.
10056 * gdbarch.sh: Remove include of symfile.h.
10057 * gdbarch.c: Regenerate.
10058 * solib-irix.c (enable_break): Use entry_point_address().
10059 Add comment about include file.
10060 * xcoffread.c: Add comment about include file.
10061 * Makefile.in (arm-tdep.o, blockframe.o, coffread.o, cris-tdep.o)
10062 (dbxread.o, dwarf2read.o, dwarfread.o, frv-tdep.o, gdbarch.o)
10063 (ia64-tdep.o, infcall.o, mcore-tdep.o, mdebugread.o, mipsread.o)
10064 (mn10300-tdep.o, rs6000-nat.o, s390-tdep.o, sh64-tdep.o)
10065 (sh-tdep.o, v850-tdep.o, xstormy16-tdep.o): Update dependencies.
10066
10067 2004-02-13 Andrew Cagney <cagney@redhat.com>
10068
10069 * corelow.c (core_xfer_partial): Use "struct bfd_section".
10070 * config/sparc/nm-nbsd.h (struct target_ops): Declare, update
10071 copyright.
10072 * mips-linux-tdep.c: Use "GNU/Linux", update copyright.
10073
10074 2004-02-12 Fred Fish <fnf@redhat.com>
10075
10076 * m68hc11-tdep.c (m68hc11_gdbarch_init): Remove duplicate call to
10077 set_gdbarch_store_return_value.
10078
10079 2004-02-12 Andrew Cagney <cagney@redhat.com>
10080
10081 * remote-rdi.c (arm_rdi_start_remote): Delete unused function.
10082 (arm_rdi_interrupt, arm_rdi_interrupt_twice): Ditto.
10083 (interrupt_query): Ditto.
10084 (ofunc): Delete unused variable.
10085 * cris-tdep.c (cris_abi): Delete unused function.
10086 (reg_pop_op, move_reg_to_mem_index_inc_op): Ditto.
10087 (cris_get_wide_opcode, cris_get_short_size): Ditto.
10088 (cris_get_asr_quick_shift_steps): Ditto.
10089 (cris_skip_prologue_frameless_p): Ditto.
10090 * arm-tdep.c (arm_push_return_address): Delete unused function.
10091 (arm_push_dummy_frame, arm_fix_call_dummy): Ditto.
10092 * rs6000-tdep.c (rs6000_pc_in_call_dummy): Delete unused function.
10093 * s390-tdep.c (s390_function_start): Delete unused function.
10094
10095 2004-02-12 Andrew Cagney <cagney@redhat.com>
10096
10097 * gdbarch.sh (PROLOGUE_FRAMELESS_P): Delete.
10098 gdbarch.h, gdbarch.c: Re-generate.
10099 * cris-tdep.c (cris_gdbarch_init): Do not set prologue_frameless_p
10100 to generic_prologue_frameless_p.
10101 * arch-utils.h (generic_prologue_frameless_p): Delete declaration.
10102 * arch-utils.c (generic_prologue_frameless_p): Delete function.
10103
10104 2004-02-11 Daniel Jacobowitz <drow@mvista.com>
10105
10106 * mips-linux-tdep.c: Include "frame.h".
10107 (mips_linux_in_dynsym_stub, mips_linux_in_dynsym_resolve_code)
10108 (mips_linux_skip_resolver): New functions.
10109 (mips_linux_init_abi): Call set_gdbarch_skip_solib_resolver
10110 and set_gdbarch_in_solib_call_trampoline.
10111 * mips-tdep.c (mips_gdbarch_init): Move gdbarch_init_osabi call
10112 to after set_gdbarch_in_solib_return_trampoline. Only set the
10113 solib hooks to mips16 functions if the OS ABI is unknown.
10114 * config/mips/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Undefine after
10115 including "config/tm-linux.h".
10116 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Define.
10117 * Makefile.in (mips-linux-tdep.o): Update.
10118
10119 2004-02-11 David Carlton <carlton@kealia.com>
10120
10121 * linespec.c (decode_compound): Only look for a class symbol when
10122 considering all but the rightmost component.
10123
10124 2004-02-11 Andrew Cagney <cagney@redhat.com>
10125
10126 * hppa-tdep.c (hppa_gdbarch_init): Re-order so that the frame and
10127 abi code are are separatly grouped.
10128
10129 2004-02-11 Andrew Cagney <cagney@redhat.com>
10130
10131 * gdbarch.sh (FRAME_ARGS_SKIP): Default to 0.
10132 * gdbarch.h, gdbarch.c: Re-generate.
10133 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
10134 * v850-tdep.c (v850_gdbarch_init): Update.
10135 * sh64-tdep.c (sh64_gdbarch_init): Update.
10136 * sh-tdep.c (sh_gdbarch_init): Update.
10137 * s390-tdep.c (s390_gdbarch_init): Update.
10138 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
10139 * mips-tdep.c (mips_gdbarch_init): Update.
10140 * mcore-tdep.c (mcore_gdbarch_init): Update.
10141 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
10142 * m32r-tdep.c (m32r_gdbarch_init): Update.
10143 * ia64-tdep.c (ia64_gdbarch_init): Update.
10144 * hppa-tdep.c (hppa_gdbarch_init): Update.
10145 * h8300-tdep.c (h8300_gdbarch_init): Update.
10146 * frv-tdep.c (frv_gdbarch_init): Update.
10147 * d10v-tdep.c (d10v_gdbarch_init): Update.
10148 * cris-tdep.c (cris_gdbarch_init): Update.
10149 * avr-tdep.c (avr_gdbarch_init): Update.
10150 * arm-tdep.c (arm_gdbarch_init): Update.
10151 * alpha-tdep.c (alpha_gdbarch_init): Update.
10152
10153 2004-02-11 Corinna Vinschen <vinschen@redhat.com>
10154
10155 * sh-tdep.c (sh_sh3_dsp_register_name): Fix formatting. Add missing
10156 comma.
10157 (sh_sh4al_dsp_register_name): Ditto.
10158
10159 2004-02-10 Andrew Cagney <cagney@redhat.com>
10160
10161 * mips-tdep.c (mips_gdbarch_init): Delete deprecated frame code.
10162 (mips_init_frame_pc_first): Delete function.
10163 (mips_frame_saved_pc): Delete function.
10164 (mips_frame_chain): Delete function.
10165 (mips_init_extra_frame_info): Delete function.
10166 (mips_xfer_register): Delete unused variable "reg".
10167 (mips_n32n64_push_dummy_call): Delete unused variable "valbuf".
10168 (mips_n32n64_return_value): Delete unused variable "reg".
10169 (mips_n32n64_return_value): Delete unused variable "pos".
10170 (mips_o32_push_dummy_call): Delete unused variable "valbuf".
10171 (mips_o32_return_value): Delete unused variable "pos".
10172 (mips_o64_push_dummy_call): Delete unused variable "valbuf".
10173 (mips_print_fp_register): Delete unused variable "namelen"
10174 (mips_print_fp_register): Delete unused variable "flt2"
10175 (get_frame_pointer): Delete function.
10176 (cached_proc_desc): Delete static variable.
10177 (mips_pop_frame): Delete function.
10178 (mips_find_saved_regs): Delete function.
10179 (mips_get_saved_register): Delete function.
10180 (mips_saved_pc_after_call): Delete function.
10181 (SIGFRAME_BASE): Delete macro.
10182 (SIGFRAME_FPREGSAVE_OFF): Delete macro.
10183 (SIGFRAME_PC_OFF): Delete macro.
10184 (SIGFRAME_REGSAVE_OFF): Delete macro.
10185 (mips_dump_tdep): Do not print deleted macro definitions.
10186
10187 2004-02-10 Andrew Cagney <cagney@redhat.com>
10188
10189 * Makefile.in (SFILES): Remove explictly listed tui files.
10190 (SUBDIR_GDBTK_SRCS): Fix path to gdbtk-interp.c.
10191
10192 2004-02-10 Jeff Johnston <jjohnstn@redhat.com>
10193
10194 * ia64-tdep.c (ia64_frame_this_id): Fix tracing print statement
10195 to use paddr functions to format ia64 addresses and long values.
10196 (ia64_frame_prev_register, ia64_sigtramp_frame_this_id): Ditto.
10197 (ia64_sigtramp_frame_prev_register, ia64_access_reg): Ditto.
10198 (get_kernel_table, ia64_find_proc_info_x): Ditto.
10199 (ia64_get_dyn_info_list, ia64_libunwind_this_frame_id): Ditto.
10200 (ia64_libunwind_frame_prev_register, ia64_unwind_dummy_id): Ditto.
10201
10202 2004-02-10 Andrew Cagney <cagney@redhat.com>
10203
10204 * defs.h: Do not include "tui.h".
10205 * gdb_curses.h: New file.
10206 * tui/tui-hooks.h: New file.
10207 * tui/tui.h (tui_update_all_exec_infos): Delete declaration.
10208 (tui_install_hooks, tui_remove_hooks): Delete declarations.
10209 (tui_initialize_io): Delete declaration.
10210 (tui_initialize_readline: Delete redundant declaration.
10211 (struct tui_point): Delete definition.
10212 * tui/tui-data.h (struct tui_point): Define.
10213 * cli/cli-decode.c [TUI]: Include "tui/tui.h".
10214 * utils.c: Include "tui/tui.h".
10215 * tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
10216 * printcmd.c [TUI]: Include "tui/tui.h".
10217 * cli/cli-cmds.c [TUI]: Include "tui/tui.h".
10218 * tui/tui-command.c: Include "gdb_curses.h".
10219 * tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
10220 * tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
10221 * tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
10222 * tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
10223 * tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
10224 * Makefile.in: Update all dependencies.
10225 (tui_hooks_h, gdb_curses_h): Define.
10226 (SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
10227
10228 2004-02-10 Elena Zannoni <ezannoni@redhat.com>
10229
10230 * objfiles.h (struct objfile): Remove unused fields auxf1 and
10231 auxf2. Add comments about some other rarely used fields.
10232
10233 2004-02-10 Andrew Cagney <cagney@redhat.com>
10234
10235 * Makefile.in (init.c): Fix script removing duplicates. Problem
10236 reported by Peter Schauer.
10237
10238 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
10239
10240 * bcache.c (bcache_xmalloc): Use obstack_init instead of
10241 obstack_specify_allocation.
10242 * objfiles.c (allocate_objfile): Ditto.
10243 * solib-sunos.c (solib_add_common_symbols)
10244 (allocate_rt_common_objfile): Ditto.
10245 * symfile.c (reread_symbols): Ditto.
10246 * gdb_obstack.h: Add comment.
10247
10248 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
10249
10250 * linespec.c (decode_line_1, locate_first_half)
10251 (decode_compound, lookup_prefix_sym): Update comments. Delete old
10252 commented out code.
10253
10254 2004-02-09 Daniel Jacobowitz <drow@mvista.com>
10255
10256 * cp-namespace.c (check_one_possible_namespace_symbol): Don't use
10257 obstack_free.
10258
10259 2004-02-09 Andrew Cagney <cagney@redhat.com>
10260
10261 * blockframe.c (find_pc_partial_function): If find_pc_overlay
10262 fails, try find_pc_section. Fix PR c++/1267.
10263 * minsyms.c (lookup_minimal_symbol_by_pc): Use find_pc_section
10264 instead of find_pc_mapped_section.
10265 (lookup_minimal_symbol_by_pc_section): If the SECTION is NULL, do
10266 not default to the section containing PC. Fix PR symtab/1519.
10267
10268 2004-02-09 Andrew Cagney <cagney@redhat.com>
10269
10270 * Makefile.in (mips-tdep.o): Update dependencies.
10271 * mips-tdep.c: Include "frame-unwind.h", "frame-base.h" and
10272 "trad-frame.h".
10273 (mips_unwind_pc): Return the pseudo PC register.
10274 (mips_unwind_dummy_id): New function.
10275 (mips16_fetch_instruction): New function.
10276 (mips32_fetch_instruction): New function.
10277 (struct mips_frame_cache): Define.
10278 (mips_mdebug_frame_cache): New function.
10279 (mips_mdebug_frame_this_id): New function.
10280 (mips_mdebug_frame_prev_register): New function.
10281 (mips_mdebug_frame_unwind): Define.
10282 (mips_mdebug_frame_sniffer): New function.
10283 (mips_mdebug_frame_base_address): New function.
10284 (mips_mdebug_frame_base): Define.
10285 (mips_mdebug_frame_base_sniffer): New function.
10286 (mips_gdbarch_init): Append unwind and base sniffers. Set
10287 unwind_dummy_id.
10288
10289 2004-02-08 Andrew Cagney <cagney@redhat.com>
10290
10291 * frame.c: Print both the register number and name.
10292
10293 * Makefile.in (init.c): Eliminate duplicates. Combine two greps
10294 and a sed into a single sed. Make .c and .o patterns more robust.
10295 (OBS): Delete.
10296 (INIT_FILES): Replace OBS with COMMON_OBS.
10297 (COMMON_OBS): Move DEPFILES and YYOBJ to start of definition.
10298
10299 2004-02-08 Mark Kettenis <kettenis@gnu.org>
10300
10301 * sparc-nat.c (sparc_xfer_wcookie): Try to fetch the cookie using
10302 the PT_WCOOKIE request.
10303
10304 2004-02-08 Andrew Cagney <cagney@redhat.com>
10305
10306 * mips-tdep.c (mips_unwind_pc): New function.
10307 (mips_gdbarch_init): Set mips_unwind_pc.
10308
10309 * frame.c (legacy_saved_regs_this_id): Return a null frame ID.
10310 (get_frame_id): Allow the UNKNOWN_FRAME.
10311 (frame_register_unwind, get_frame_type): Ditto.
10312
10313 * frame.c (legacy_frame_p): Check for DEPRECATED_TARGET_READ_FP_P
10314 and DEPRECATED_FP_REGNUM. Don't assume that the lack of
10315 unwind_dummy_id indicates a legacy frame.
10316
10317 * configure.in (CONFIG_LIB_OBS): Replace with CONFIG_OBS.
10318 * configure: Re-generate.
10319
10320 * mips-tdep.c (mips_gdbarch_init): Group deprecated frame unwind
10321 methods.
10322
10323 2004-02-08 Andrew Cagney <cagney@redhat.com>
10324
10325 * configure.in (CONFIG_ALL): Set to Makefile target, and not
10326 makefile macro.
10327 * configure: Re-generate.
10328 (CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Ditto.
10329 * Makefile.in (SUBDIR_CLI_CLEAN): Delete.
10330 (SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): Delete.
10331 (SUBDIR_CLI_ALL, SUBDIR_GDBTK_ALL): Delete.
10332 (SUBDIR_GDBTK_CLEAN, SUBDIR_GDBTK_INSTALL): Delete.
10333 (SUBDIR_GDBTK_UNINSTALL, SUBDIR_MI_ALL): Delete.
10334 (SUBDIR_MI_CLEAN, SUBDIR_MI_INSTALL): Delete.
10335 (SUBDIR_MI_UNINSTALL, SUBDIR_TUI_ALL): Delete.
10336 (SUBDIR_TUI_CLEAN, SUBDIR_TUI_INSTALL): Delete.
10337 (SUBDIR_TUI_UNINSTALL, SUBDIR_CLI_CLEAN): Delete.
10338
10339 2004-02-07 Andrew Cagney <cagney@redhat.com>
10340
10341 * Makefile.in: Update all dependencies.
10342
10343 * configure.in (CONFIG_INITS, CONFIG_LIB_OBS): Delete.
10344 * configure: Re-generate.
10345 * Makefile.in (INIT_FILES): Replace CONFIG_INITS with CONFIG_SRCS.
10346 (CONFIG_LIB_OBS, CONFIG_INITS): Delete.
10347 (COMMON_OBS): Add "main.o" and "annotate.o".
10348 (ANNOTATE_OBS): Delete.
10349 (OBS): Remove ANNOTATE_OBS.
10350 (DEPFILES): Replace CONFIG_LIB_OBS with CONFIG_LIB_OBS, remove
10351 CONFIG_INITS.
10352 (gdb$(EXEEXT), insight$(EXEEXT)): Do not depend on, or link
10353 against CONFIG_OBS and "main.o".
10354 (SUBDIR_CLI_INITS, SUBDIR_MI_INITS): Delete.
10355 (SUBDIR_TUI_INITS, SUBDIR_GDBTK_INITS): Delete.
10356
10357 * tui/tui-command.c: Include "gdb_string.h", delete register
10358 attribute, use ISO-C function signatures.
10359 * tui/tui-disasm.c, tui/tui-file.c, tui/tui-io.c: Ditto.
10360 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
10361 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Ditto.
10362 * tui/tui.c: Ditto.
10363
10364 * tui/tui-command.c: Change variable and function names to lower
10365 case.
10366 * tui/tui-data.c, tui/tui-disasm.c: Ditto.
10367 * tui/tui-hooks.c, tui/tui-io.c, tui/tui-layout.c: Ditto.
10368 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
10369 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
10370 * tui/tui-winsource.c, tui/tui.c: Ditto.
10371
10372 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
10373
10374 * buildsym.c (free_pending_blocks, finish_block)
10375 (record_pending_block, make_blockvector, end_symtab): Replace
10376 symbol_obstack with objfile_obstack.
10377 * coffread.c (process_coff_symbol, coff_read_struct_type)
10378 (coff_read_enum_type): Ditto.
10379 * cp-namespace.c (initialize_namespace_symtab)
10380 (check_one_possible_namespace_symbol): Ditto.
10381 * dwarf2read.c (new_symbol, dwarf2_const_value, macro_start_file)
10382 (dwarf2_symbol_mark_computed): Ditto.
10383 * dwarfread.c (enum_type, new_symbol, synthesize_typedef): Ditto.
10384 * elfread.c (elf_symtab_read): Ditto.
10385 * hpread.c (hpread_symfile_init, hpread_symfile_init)
10386 (hpread_read_enum_type, hpread_read_function_type)
10387 (hpread_read_doc_function_type, hpread_process_one_debug_symbol):
10388 Ditto.
10389 * jv-lang.c (get_java_class_symtab, add_class_symbol)
10390 (java_link_class_type): Ditto.
10391 * mdebugread.c (parse_symbol, psymtab_to_symtab_1, new_symtab)
10392 (new_symbol): Ditto.
10393 * minsyms.c (install_minimal_symbols): Ditto.
10394 * objfiles.c (allocate_objfile): Remove init of symbol_obstack.
10395 (terminate_minimal_symbol_table): Replace symbol_obstack with
10396 objfile_obstack.
10397 (free_objfile): Remove freeing of symbol_obstack.
10398 * objfiles.h: Remove symbol_obstack field.
10399 * pa64solib.c (add_to_solist): Replace symbol_obstack with
10400 objfile_obstack.
10401 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
10402 symbol_obstack.
10403 (solib_add_common_symbols): Replace symbol_obstack with
10404 objfile_obstack.
10405 * somsolib.c (som_solib_add): Ditto.
10406 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
10407 (common_block_start, common_block_end): Ditto.
10408 * symfile.c (reread_symbols): Remove freeing and init of
10409 symbol_obstack.
10410 (allocate_symtab): Rename symbol_obstack to objfile_obstack.
10411 * symfile.h: Update comment.
10412 * symmisc.c (print_objfile_statistics): Remove symbol_obstack
10413 stats printing.
10414 * symtab.c (symbol_set_names): Replace symbol_obstack with
10415 objfile_obstack.
10416 * symtab.h (struct general_symbol_info, struct minimal_symbol):
10417 Update comments.
10418 * xcoffread.c (read_xcoff_symtab, SYMBOL_DUP, SYMNAME_ALLOC)
10419 (init_stringtab, xcoff_initial_scan): Replace symbol_obstack with
10420 objfile_obstack.
10421
10422 2004-02-07 Andrew Cagney <cagney@redhat.com>
10423
10424 * tui/tui.h: Do not include <stdarg.h>, <string.h>, and
10425 "ansidecl.h". Do not undef "reg" and "chtype". Fix case of
10426 fields and variables.
10427 * tui/tui-wingeneral.h (m_beVisible): Delete macro.
10428 (m_beInvisible): Delete macro.
10429 * tui/tui-data.h: Fix case case fields and variables.
10430 (m_genWinPtrIsNull): Delete macro.
10431 (tui_win_list): Rename winList.
10432 (TUI_SRC_WIN): Rename srcWin.
10433 (TUI_DISASM_WIN): Rename disassemWin.
10434 (TUI_DATA_WIN): Rename dataWin.
10435 (TUI_CMD_WIN): Rename cmdWin.
10436 (m_genWinPtrNotNull): Delete macro.
10437 (m_winPtrIsNull): Delete macro.
10438 (m_winPtrNotNull): Delete macro.
10439 (tui_win_is_source_type): Replace m_winIsSourceType
10440 (tui_win_is_auxillary): Replace m_winIsAuzillary.
10441 (tui_win_has_locator): Replace m_hasLocator.
10442 (tui_set_win_highlight): Replace m_setWinHighlightOn and
10443 m_setWinHighlightOff.
10444 * tui/tui-data.c: Update references.
10445 (tui_win_is_source_type, tui_set_win_highlight): New functions.
10446 (tui_win_has_locator, tui_win_is_auxillary): New functions.
10447 * tui/tui-command.c, tui/tui-disasm.c: Update references.
10448 * tui/tui-io.c, tui/tui-layout.c, tui/tui-regs.c: Ditto.
10449 * tui/tui-regs.h, tui/tui-source.c, tui/tui-stack.c: Ditto.
10450 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
10451 * tui/tui-winsource.c, tui/tui.c: Ditto.
10452
10453 2004-02-07 Mark Kettenis <kettenis@gnu.org>
10454
10455 * sparc-tdep.h (sparc_fetch_wcookie): New prototype.
10456 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Handle
10457 StackGhost.
10458
10459 * sparc-tdep.c (sparc32_frame_prev_register): Rename local
10460 variable `i6' to `i7'.
10461 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
10462
10463 2004-02-07 Andrew Cagney <cagney@redhat.com>
10464
10465 * tui/tui.h (Opaque, OpaquePtr OpaqueList): Delete definition.
10466 (TuiPoint, TuiPointPtr): Ditto.
10467 (TuiStatus, TuiStatusPtr): Ditto.
10468 (TuiWinType, TuiWinTypePtr): Ditto.
10469 (struct tui_point): Rename _TuiPoint.
10470 (tui_get_low_disassembly_address): Rename
10471 tuiGetLowDisassemblyAddress.
10472 (tui_update_all_exec_infos): Rename tuiUpdateAllExecInfos.
10473 (tuiFree): Delete declaration.
10474 (OpaqueFuncPtr, TuiOpaqueFuncPtr): Delete definitions.
10475 (TuiVoidFuncPtr, TuiIntFuncPtr): Delete definitions.
10476 * tui/tui.c (tuiFree): Delete function.
10477 * cli/cli-cmds.c (disassemble_command): Update references.
10478 * tui/tui-data.c, tui/tui-data.h, tui/tui-disasm.c: Ditto.
10479 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
10480 * tui/tui-stack.c, tui/tui-win.c, tui/tui-wingeneral.c: Ditto.
10481 * tui/tui-winsource.c: Ditto.
10482
10483 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
10484
10485 * dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
10486 coffstab_build_psymtabs, elfstab_build_psymtabs)
10487 (stabsect_build_psymtabs): Replace psymbol_obstack with
10488 objfile_obstack.
10489 * dwarf2-frame.c (decode_frame_entry_1): Ditto.
10490 * dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
10491 Ditto.
10492 * dwarfread.c (scan_compilation_units): Ditto.
10493 * elfread.c (elfstab_offset_sections): Ditto.
10494 * hppa-tdep.c (read_unwind_info): Ditto.
10495 * hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
10496 (hpread_end_psymtab): Ditto.
10497 * mdebugread.c (mdebug_build_psymtabs, add_pending)
10498 (parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
10499 Ditto.
10500 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
10501 * objfiles.c (add_to_objfile_sections)
10502 (build_objfile_section_table): Ditto.
10503 (allocate_objfile): Remove init of psymbol_obstack.
10504 (free_objfile): Remove freeing of psymbol_obstack.
10505 * objfiles.h (struct objfile): Remove field
10506 psymbol_obstack. Update comments.
10507 * pa64solib.c (pa64_solib_add_solib_objfile): Replace
10508 psymbol_obstack with objfile_obstack.
10509 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
10510 psymbol_obstack.
10511 * somread.c (som_symfile_offsets, init_import_symbols)
10512 (init_export_symbols): Replace psymbol_obstack with
10513 objfile_obstack.
10514 * somsolib.c (som_solib_add_solib_objfile): Ditto.
10515 * symfile.c (default_symfile_offsets, syms_from_objfile)
10516 (reread_symbols): Remove freeing and init of psymbol_obstack.
10517 (cashier_psymtab): Update comment.
10518 * symmisc.c (print_objfile_statistics): Don't report stats for
10519 psymbol obstack.
10520 * symtab.h (struct general_symbol_info, struct partial_symtab):
10521 Update comments.
10522 * xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
10523 (xcoff_symfile_offsets): Replace psymbol_obstack with
10524 objfile_obstack.
10525
10526 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
10527
10528 * objfiles.h (struct objfile): Add objfile_obstack field.
10529 Remove type_obstack field.
10530
10531 * dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
10532 read_structure_scope read_enumeration, new_symbol): Replace
10533 type_obstack with objfile_obstack.
10534 * dwarfread.c (struct_type, enum_type): Ditto.
10535 * gdbtypes.c (alloc_type, alloc_type_instance, init_type)
10536 (lookup_fundamental_type): Ditto.
10537 * gdbtypes.h (TYPE_ALLOC): Ditto.
10538 * hpread.c (hpread_read_enum_type, hpread_read_function_type)
10539 (hpread_read_doc_function_type, hpread_read_struct_type)
10540 (fix_static_member_physnames, hpread_read_array_type)
10541 (hpread_read_subrange_type, hpread_type_lookup): Ditto.
10542 * jv-lang.c (java_lookup_class, type_from_class, type_from_class)
10543 (java_link_class_type): Ditto.
10544 * mdebugread.c (parse_type): Ditto.
10545 * objfiles.c (allocate_objfile, free_objfile): Ditto.
10546 * solib-sunos.c (solib_add_common_symbols): Ditto.
10547 * stabsread.c (define_symbol, read_type, read_member_functions,
10548 read_cpp_abbrev, read_one_struct_field): Ditto.
10549 * symfile.c (reread_symbols): Ditto.
10550 * symmisc.c (print_objfile_statistics): Ditto.
10551
10552 2004-02-07 Andrew Cagney <cagney@redhat.com>
10553
10554 * tui/tui-data.h (tui_win_element): Rename TuiWinElement.
10555 (tui_exec_info_content): Rename TuiExecInfoContent.
10556 (TuiGenWinInfo, TuiGenWinInfoPtr): Delete definitions.
10557 (TuiWinInfo, TuiWinInfoPtr): Ditto.
10558 (TuiScrollDirection, TuiScrollDirectionPtr): Ditto.
10559 (TuiList, TuiListPtr): Ditto.
10560 (TuiLayoutType, TuiLayoutTypePtr): Ditto.
10561 (TuiDataType, TuiDataTypePtr): Ditto.
10562 (TuiRegisterDisplayType, TuiRegisterDisplayTypePtr): Ditto.
10563 (TuiLineOrAddress, TuiLineOrAddressPtr): Ditto.
10564 (TuiLayoutDef, TuiLayoutDefPtr): Ditto.
10565 (TuiSourceElement, TuiSourceElementPtr): Ditto.
10566 (TuiDataElement, TuiDataElementPtr): Ditto.
10567 (TuiWinElement, TuiWinElementPtr): Ditto.
10568 (TuiDataInfo, TuiDataInfoPtr): Ditto.
10569 (TuiCommandElement, TuiCommandElementPtr): Ditto.
10570 (TuiLocatorElement, TuiLocatorElementPtr): Ditto.
10571 (TuiWhichElement, TuiWhichElementPtr): Ditto.
10572 (TuiSourceInfo, TuiSourceInfoPtr): Ditto.
10573 (TuiCommandInfo, TuiCommandInfoPtr): Ditto.
10574 * tui/tui-command.c, tui/tui-data.c: Update references.
10575 * tui/tui-data.h, tui/tui-disasm.c, tui/tui-layout.c: Ditto.
10576 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
10577 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
10578 * tui/tui-winsource.c, tui/tui.c: Ditto.
10579
10580 2004-02-07 Mark Kettenis <kettenis@gnu.org>
10581
10582 * dwarf2-frame.h: Update copyright.
10583 (enum dwarf2_frame_reg_rule): New.
10584 (struct dwarf2_frame_state_reg): New.
10585 (dwarf2_frame_sniffer, dwarf2_frame_base_sniffer): Make extern.
10586 * dwarf2-frame.c: Update copyright.
10587 (enum dwarf2_reg_rule): Remove.
10588 (struct dwarf2_frame_state): Remove defenition of `struct
10589 dwarf2_frame_state_reg'.
10590 (read_reg): Call get_frame_arch to get the architecture instead of
10591 using CURRENT_GDBARCH.
10592 (execute_cfa_program): Prefix old `enum dwarf2_reg_rule' tags with
10593 DWARF2_FRAME_.
10594 (dwarf2_frame_init_reg): New function.
10595 (dwarf2_frame_cache): Call get_frame_arch to get the architecture
10596 instead of using CURRENT_GDBARCH. Call dwarf2_frame_init_reg to
10597 initialize the register state. Prefix old `enum dwarf2_reg_rule'
10598 tags with DWARF2_FRAME_.
10599 (dwarf2_frame_prev_register): Call get_frame_arch to get the
10600 architecture instead of using CURRENT_GDBARCH. Prefix old `enum
10601 dwarf2_reg_rule' tags with DWARF2_FRAME_.
10602
10603 2004-02-06 Andrew Cagney <cagney@redhat.com>
10604
10605 * tui/tui-data.h (struct tui_list): Rename _TuiList.
10606 (enum tui_data_type): Rename _TuiDataType.
10607 (struct tui_layout_def): Rename _TuiLayoutDef.
10608 (struct tui_source_element): Rename _TuiSourceElement.
10609 (struct tui_data_element): Rename _TuiDataElement.
10610 (struct tui_command_element): Rename _TuiCommandElement.
10611 (struct tui_locator_element): Rename _TuiLocatorElement.
10612 (union tui_which_element): Define.
10613 (struct tui_win_element): Rename _TuiWinElement.
10614 (struct tui_data_info): Rename _TuiDataInfo.
10615 (struct tui_source_info): Rename _TuiSourceInfo.
10616 (struct tui_command_info): Rename _TuiCommandInfo.
10617 (tui_initialize_static_data): Rename initializeStaticData.
10618 (tui_alloc_generic_win_info): Rename allocGenericWinInfo.
10619 (tui_alloc_win_info): Rename allocWinInfo.
10620 (tui_init_generic_part): Rename initGenericPart.
10621 (tui_init_win_info): Rename initWinInfo.
10622 (tui_alloc_content): Rename allocContent.
10623 (tui_add_content_elements): Rename addContentElements.
10624 (tui_init_content_element): Rename initContentElement.
10625 (tui_free_window): Rename freeWindow.
10626 (tui_free_win_content): Rename freeWinContent.
10627 (tui_free_data_content): Rename freeDataContent.
10628 (tui_free_all_source_wins_content): Rename
10629 freeAllSourceWinsContent.
10630 (tui_del_window): Rename tuiDelWindow.
10631 (tui_del_data_windows): Rename tuiDelDataWindows.
10632 (tui_partial_win_by_name): Rename partialWinByName.
10633 (tui_win_name): Rename winName.
10634 (tui_current_layout): Rename currentLayout.
10635 (tui_set_current_layout_to): Rename setCurrentLayoutTo.
10636 (tui_term_height): Rename termHeight.
10637 (tui_set_term_height_to): Rename setTermHeightTo.
10638 (tui_term_width): Rename termWidth.
10639 (tui_set_term_width_to): Rename setTermWidthTo.
10640 (tui_set_gen_win_origin): Rename setGenWinOrigin.
10641 (tui_locator_win_info_ptr): Rename locatorWinInfoPtr.
10642 (tui_source_exec_info_win_ptr): Rename tui_gen_win_info.
10643 (tui_disassem_exec_info_win_ptr): Rename disassemExecInfoWinPtr.
10644 (tui_source_windows): Rename sourceWindows.
10645 (tui_clear_source_windows): Rename clearSourceWindows.
10646 (tui_clear_source_windows_detail): Rename
10647 clearSourceWindowsDetail.
10648 (tui_clear_win_detail): Rename clearWinDetail.
10649 (tui_add_to_source_windows): Rename tuiAddToSourceWindows.
10650 (tui_default_tab_len): Rename tuiDefaultTabLen.
10651 (tui_set_default_tab_len): Rename tuiSetDefaultTabLen.
10652 (tui_win_with_focus): Rename tuiWinWithFocus.
10653 (tui_set_win_with_focus): Rename tuiSetWinWithFocus.
10654 (tui_layout_def): Rename tuiLayoutDef.
10655 (tui_win_resized): Rename tuiWinResized.
10656 (tui_set_win_resized_to): Rename tuiSetWinResizedTo.
10657 (tui_next_win): Rename tuiNextWin.
10658 (tui_prev_win): Rename tuiPrevWin.
10659 (tui_add_to_source_windows): Rename addToSourceWindows.
10660 * tui/tui-winsource.c, tui/tui-win.c: Update references.
10661 * tui/tui-layout.c, tui/tui-source.c: Ditto.
10662 * tui/tui-stack.c, tui/tui-io.c: Ditto.
10663 * tui/tui.c, tui/tui-data.c: Ditto.
10664 * tui/tui-interp.c, tui/tui-data.c: Ditto.
10665 * tui/tui-disasm.c, tui/tui-command.c: Ditto.
10666
10667 * tui/tui-source.h: Update copyright. Include "tui-data.h".
10668 (struct symtab): Declare.
10669 (tui_set_source_content): Rename tuiSetSourceContent.
10670 (tui_show_symtab_source): Rename tuiShowSource.
10671 (tui_source_is_displayed): Rename tuiSourceIsDisplayed.
10672 (tui_vertical_source_scroll): Rename tuiVerticalSourceScroll.
10673 * tui/tui-source.c: Update copyright. Update references.
10674 * tui/tui-win.c, tui/tui-winsource.c: Update references.
10675 * tui/tui-stack.c: Update references.
10676
10677 * tui/tui-win.h: Update copyright. Include "tui-data.h".
10678 (struct tui_win_info): Declare.
10679 (tui_scroll_forward): Rename tuiScrollForward.
10680 (tui_scroll_backward): Rename tuiScrollBackward.
10681 (tui_scroll_left): Rename tuiScrollLeft.
10682 (tui_scroll_right): Rename tuiScrollRight.
10683 (tui_set_win_focus_to): Rename tuiSetWinFocusTo.
10684 (tui_resize_all): Rename tuiResizeAll.
10685 (tui_refresh_all_win): Rename tuiRefreshAll.
10686 (tui_sigwinch_handler): Rename tuiSigwinchHandler.
10687 * tui/tui-layout.c, * tui/tui-io.c: Update references.
10688 * tui/tui-wingeneral.h, * tui/tui.c: Update references.
10689 * tui/tui-disasm.c, * tui/tui-command.c: Update references.
10690
10691 * tui/tui-windata.h: Update copyright. Include "tui-data.h".
10692 (tui_erase_data_content): Rename tuiEraseDataContent.
10693 (tui_display_all_data): Rename tuiDisplayAllData.
10694 (tui_check_data_values): Rename tuiCheckDataValues.
10695 (tui_display_data_from_line): Rename tuiDisplayDataFromLine.
10696 (tui_first_data_item_displayed): Rename tuiFirstDataItemDisplayed.
10697 (tui_first_data_element_no_in_line): Rename
10698 tuiFirstDataElementNoInLine.
10699 (tui_delete_data_content_windows): Rename
10700 tuiDeleteDataContentWindows.
10701 (tui_refresh_data_win): Rename tuiRefreshDataWin.
10702 (tui_display_data_from): Rename tuiDisplayDataFrom.
10703 (tui_vertical_data_scroll): Rename tuiVerticalDataScroll.
10704 * tui/tui-windata.c, tui/tui-hooks.c: Update references.
10705 * tui/tui-win.c, tui/tui-regs.c: Update references.
10706 * tui/tui-layout.c, tui/tui.c: Update references.
10707
10708 * tui/tui-wingeneral.h: Update copyright.
10709 (m_allBeVisible): Delete macro.
10710 (m_allBeInvisible): Delete macro.
10711 (struct tui_gen_win_info): Declare.
10712 (struct tui_win_info): Declare.
10713 (tui_unhighlight_win): Rename unhighlightWin.
10714 (tui_make_visible, tui_make_invisible): Replace makeVisible.
10715 (tui_make_all_visible, tui_make_all_invisible): Replace makeAllVisible.
10716 (tui_make_window): Rename makeWindow.
10717 (tui_copy_win): Rename copyWin.
10718 (tui_box_win): Rename boxWin.
10719 (tui_highlight_win): Rename highlightWin.
10720 (tui_check_and_display_highlight_if_needed): Rename
10721 checkAndDisplayHighlightIfNeeded.
10722 (tui_refresh_all): Rename refreshAll.
10723 (tui_delete_win): Rename tuiDelwin.
10724 (tui_refresh_win): Rename tuiRefreshWin.
10725 * tui/tui-wingeneral.c (make_visible): Rename makeVisible.
10726 (tui_make_visible, tui_make_invisible): New functions.
10727 (tui_make_all_visible, tui_make_all_invisible): New functions.
10728 (make_all_visible): Rename makeAllVisible.
10729 * tui/tui-winsource.c, tui/tui-windata.c: Update references.
10730 * tui/tui-data.c, tui/tui-winsource.c: Update references.
10731 * tui/tui-windata.c, tui/tui-win.c: Update references.
10732 * tui/tui-regs.c, tui/tui-layout.c: Update references.
10733 * tui/tui-data.h (struct tui_gen_win_info): Rename _TuiGenWinInfo.
10734
10735 2004-02-06 Mark Kettenis <kettenis@gnu.org>
10736
10737 * proc-api.c (write_with_trace): Initialize local variable to
10738 silence compiler warning.
10739
10740 2004-02-06 Andrew Cagney <cagney@redhat.com>
10741
10742 * tui/tui-source.h: Do not include "defs.h".
10743 (struct tui_win_info): Declare.
10744 (tui_set_source_content_nil): Declare.
10745 * tui/tui-data.h (struct tui_win_info): Rename _TuiWinInfo.
10746 (union tui_line_or_address): Rename _TuiLineOrAddress.
10747 * tui/tui-winsource.h: Update copyright. Include "tui-data.h".
10748 (tui_update_source_window): Rename tuiUpdateSourceWindow.
10749 (tui_update_source_window_as_is): Rename
10750 tuiUpdateSourceWindowAsIs.
10751 (tui_update_source_windows_with_addr): Rename
10752 tuiUpdateSourceWindowsWithAddr.
10753 (tui_update_source_windows_with_line): Rename
10754 tuiUpdateSourceWindowsWithLine.
10755 (tui_clear_source_content): Rename tuiClearSourceContent.
10756 (tui_erase_source_content): Rename tuiEraseSourceContent.
10757 (tui_set_source_content_nil): Rename tuiSetSourceContentNil.
10758 (tui_show_source_content): Rename tuiShowSourceContent.
10759 (tui_horizontal_source_scroll): Rename tuiHorizontalSourceScroll.
10760 (tui_set_exec_info_content): Rename tuiSetExecInfoContent.
10761 (tui_show_exec_info_content): Rename tuiShowExecInfoContent.
10762 (tui_erase_exec_info_content): Rename tuiEraseExecInfoContent.
10763 (tui_clear_exec_info_content): Rename tuiClearExecInfoContent.
10764 (tui_update_exec_info): Rename tuiUpdateExecInfo.
10765 (tui_set_is_exec_point_at): Rename tuiSetIsExecPointAt.
10766 (tui_alloc_source_buffer): Rename tuiAllocSourceBuffer.
10767 (tui_line_is_displayed): Rename tuiLineIsDisplayed.
10768 (tui_addr_is_displayed): Rename tuiAddrIsDisplayed.
10769 (struct tui_win_info): Declare.
10770 * tui/tui-stack.c: Update references.
10771 * tui/tui-layout.c, tui/tui-winsource.c: Ditto.
10772 * tui/tui-win.c, tui/tui-source.c: Ditto.
10773 * tui/tui.c, tui/tui-disasm.c: Ditto.
10774
10775 2004-02-06 Mark Kettenis <kettenis@gnu.org>
10776
10777 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Fix calculation
10778 of UCONTEXT_ADDR. Fixes PR backtrace/1545.
10779
10780 2004-02-05 Mark Kettenis <kettenis@gnu.org>
10781
10782 * infrun.c (handle_inferior_event): Allow for breakpoint
10783 instructions to generate a SIGSEGV in addition to SIGTRAP, SIGILL
10784 and SIGEMT. Update comments.
10785 * NEWS (Revised SPARC target): Mention support for non-executable
10786 stack.
10787
10788 2004-02-04 Mark Kettenis <kettenis@gnu.org>
10789
10790 * target.h (target_object): Add TARGET_OBJECT_WCOOKIE.
10791 * inftarg.c: Update copyright year.
10792 (child_xfer_partial): Add support for TARGET_OBJECT_WCOOKIE.
10793 * sparc-nat.c: Include "target.h" and "gdb_assert.h".
10794 (sparc_xfer_wcookie): New function.
10795 * sparc-tdep.c (sparc_fetch_wcookie): New function.
10796 * Makefile.in (sparc-nat.o): Update dependencies.
10797 * config/sparc/nm-nbsd.h: Include "target.h".
10798 (NATIVE_XFER_WCOOKIE): New define.
10799 (sparc_xfer_wcookie): New prototype.
10800
10801 2004-02-04 Andrew Cagney <cagney@redhat.com>
10802
10803 * m68k-tdep.c (m68k_saved_pc_after_call): Delete #ifdef
10804 SYSCALL_TRAP function.
10805 (m68k_gdbarch_init): Delete #ifdef SYSCALL_TRAP code.
10806
10807 2004-02-04 Andrew Cagney <cagney@redhat.com>
10808 Daniel Jacobowitz <drow@mvista.com>
10809
10810 * objfiles.h: Delete comments refering to inside_entry_func and
10811 DEPRECATED_FRAME_CHAIN_VALID.
10812 * defs.h (inside_entry_func): Update prototype..
10813 * blockframe.c (inside_entry_func): Rename to
10814 legacy_inside_entry_func. Add new inside_entry_func taking a frame.
10815 * frame.c (get_prev_frame): Pass the frame to inside_entry_func.
10816
10817 2004-02-03 Jeff Johnston <jjohnstn@redhat.com>
10818
10819 * breakpoint.c (struct captured_parse_breakpoint_args): Move
10820 outside of #ifdef SOLIB_ADD region.
10821 (do_restore_lang_radix_cleanup): Ditto.
10822 (resolve_pending_breakpoint): Ditto.
10823
10824 2004-02-03 Andrew Cagney <cagney@redhat.com>
10825
10826 * ia64-tdep.c (read_sigcontext_register): Delete unused function.
10827 (process_note_abi_tag_sections): Delete unused function.
10828 (ia64_read_fp): Delete unused function.
10829 (gdbarch_extract_struct_value_address): Delete declaration.
10830
10831 2004-02-02 Andrew Cagney <cagney@redhat.com>
10832
10833 * vax-tdep.c (vax_frame_chain): Delete call to
10834 deprecated_inside_entry_file.
10835 * ns32k-tdep.c (ns32k_frame_chain): Ditto.
10836
10837 2004-02-02 Mark Kettenis <kettenis@gnu.org>
10838
10839 * dwarf2-frame.c (dwarf2_frame_cache): Deal with a return address
10840 column that's "empty" or "same value" when eliminating REG_RA
10841 rules.
10842
10843 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
10844
10845 * NEWS: Add information about new pending breakpoint support.
10846
10847 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
10848
10849 * breakpoint.h (struct breakpoint): Add new flag, from_tty,
10850 and pending fields for pending breakpoint support.
10851 * breakpoint.c (breakpoint_enabled): Add check for not pending.
10852 (condition_command): Only parse condition if not a pending
10853 breakpoint.
10854 (print_one_breakpoint): Add support for pending breakpoints.
10855 (describe_other_breakpoints): Add checks to verify we are not
10856 dealing with pending breakpoints.
10857 (check_duplicates): Don't check pending breakpoints.
10858 (set_raw_breakpoint): Initialize pending flag.
10859 (do_restore_lang_radix_cleanup): New cleanup routine.
10860 (resolve_pending_breakpoint): New function.
10861 (re_enable_breakpoints_in_shlibs): Try and resolve any
10862 pending breakpoints via resolve_pending_breakpoint.
10863 (mention): Add pending breakpoint support.
10864 (parse_breakpoint_sals): Add new parameter to pass to
10865 decode_line_1 to indicate silent errors when files or functions
10866 are not found. Change all callers.
10867 (do_captured_parse_breakpoint): New function.
10868 (break_command_1): Change prototype to return an rc value and to
10869 take an optional pending breakpoint pointer. Support creating
10870 a pending breakpoint if a "not found" form of error occurs when
10871 parsing the breakpoint. Also support resolving an existing pending
10872 breakpoint and be silent if the resolution fails.
10873 (create_breakpoints): Change prototype to take pending breakpoint
10874 pointer. When resolving a pending breakpoint, use the new pointer
10875 to provide a conditional or commands added by the end-user.
10876 (delete_breakpoint): Add appropriate check for pending.
10877 (breakpoint_re_set_one): Ditto.
10878 (do_enable_breakpoint): Ditto.
10879
10880 2004-02-02 David Carlton <carlton@kealia.com>
10881
10882 * valops.c (enum oload_classification): New.
10883 (find_overload_match): Break implementation into separate
10884 functions; delete #if 0'd code; look for symbols within
10885 namespaces.
10886 (find_oload_champ_namespace,find_oload_champ_namespace_loop)
10887 (find_oload_champ,oload_method_static,classify_oload_match): New.
10888 * cp-support.h: Add declaration for cp_func_name; update
10889 declaration for make_symbol_overload_list.
10890 * cp-support.c (cp_func_name): New.
10891 (overload_list_add_symbol): Fix comment, use
10892 SYMBOL_LINKAGE_NAME and SYMBOL_NATURAL_NAME.
10893 (make_symbol_overload_list): Take a function name and a namespace
10894 instead of a symbol; change implementation.
10895 (make_symbol_overload_list_using): New.
10896 (make_symbol_overload_list_qualified, read_in_psymtabs): New.
10897
10898 2004-02-02 Fred Fish <fnf@redhat.com>
10899
10900 * main.c (gdb_stdtarg): Move definition to group with other
10901 gdb_stdtarg definitions and update copyright years.
10902 * remote-sim.c (gdb_os_write_stderr): Write output to
10903 gdb_stdtargerr stream instead of gdb_stdtarg stream.
10904 (gdb_os_flush_stderr): Flush gdb_stdtargerr steam instead of
10905 gdb_stderr stream and update copyright years.
10906
10907 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
10908
10909 * Makefile.in (mips-linux-nat.o): Update dependencies.
10910 * mips-linux-nat.c: Include mips-tdep.h.
10911
10912 2004-02-01 Roland McGrath <roland@redhat.com>
10913
10914 * sol-thread.c (sol_thread_xfer_partial): New function.
10915 (init_sol_thread_ops): Use that for to_xfer_partial hook.
10916 (init_sol_core_ops): Likewise.
10917
10918 * procfs.c (procfs_xfer_partial): New function.
10919 (init_procfs_ops): Use that for procfs_ops.to_xfer_partial.
10920 * Makefile.in (procfs.o): Add $(auxv_h) dep.
10921
10922 * config/nm-linux.h (NATIVE_XFER_AUXV): New macro, uses auxv.c's
10923 procfs_xfer_auxv function.
10924
10925 * procfs.c (procfs_make_note_section): If we can read
10926 TARGET_OBJECT_AUXV data, add an NT_AUXV note containing it.
10927 * linux-proc.c (linux_make_note_section): Likewise.
10928
10929 * auxv.h: New file.
10930 * auxv.c: New file.
10931 * Makefile.in (auxv_h): New variable.
10932 (COMMON_OBS): Add auxv.o here.
10933 (auxv.o): New target.
10934
10935 * corelow.c (core_xfer_partial): New function.
10936 (init_core_ops): Use it for core_ops.to_xfer_partial.
10937
10938 * target.h (enum target_object): Add TARGET_OBJECT_AUXV.
10939 * inftarg.c (child_xfer_partial): Support it using NATIVE_XFER_AUXV
10940 macro if that is defined.
10941
10942 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
10943
10944 * breakpoint.c (bpstat_stop_status): Take a ptid_t argument,
10945 and check the specified thread for each breakpoint.
10946 * breakpoint.h (bpstat_stop_status): Update prototype.
10947 * infrun.c (handle_inferior_event): Update calls to
10948 bpstat_stop_status.
10949
10950 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
10951
10952 * Makefile.in (cli-cmds.o): Add $(readline_h).
10953
10954 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
10955
10956 * cli/cli-cmds.c: Include readline.h.
10957 (complete_command): Pass the start of the last word to
10958 complete_line.
10959
10960 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
10961
10962 * breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
10963 argument, and change first argument to a CORE_ADDR.
10964 * breakpoint.h (bpstat_stop_status): Update prototype.
10965 * infrun.c (adjust_pc_after_break): Add a new comment.
10966 (handle_inferior_event): Update calls to bpstat_stop_status.
10967
10968 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
10969
10970 * breakpoint.h: Update copyright years.
10971
10972 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
10973
10974 * breakpoint.c (software_breakpoint_inserted_here_p): New function.
10975 (bpstat_stop_status): Don't decrement PC.
10976 * breakpoint.h (software_breakpoint_inserted_here_p): Add
10977 prototype.
10978 * infrun.c (adjust_pc_after_break): New function.
10979 (handle_inferior_event): Call it, early. Remove later references
10980 to DECR_PC_AFTER_BREAK.
10981 (normal_stop): Add commentary.
10982
10983 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
10984
10985 * breakpoint.c (breakpoint_re_set_one): Add missing chunk of
10986 2004-01-27 double-free fix.
10987
10988 2004-01-31 Mark Kettenis <kettenis@gnu.org>
10989
10990 * sparc-tdep.c (sparc_fetch_wcookie): New function.
10991 (sparc32_frame_prev_register): Handle StackGhost.
10992 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
10993
10994 2004-01-29 Roland McGrath <roland@redhat.com>
10995
10996 * configure.in (NEW_PROC_API): Also match solaris2.9 for this test.
10997 * configure: Regenerated.
10998
10999 * procfs.c: Include gdb_string.h for str* decls, otherwise warnings.
11000 * Makefile.in (procfs.o): Add dep.
11001
11002 2004-01-28 Andrew Cagney <cagney@redhat.com>
11003
11004 * tui/tui-stack.h: Update copyright.
11005 (struct frame_info): Add opaque declaration.
11006 (tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
11007 (tui_show_locator_content): Rename tuiShowLocatorContent.
11008 (tui_show_frame_info): Rename tuiShowFrameInfo.
11009 * tui/tui-stack.c: Update copyright. Update references.
11010 * tui/tui-winsource.c: Update references.
11011 * tui/tui-win.c: Update references.
11012 * tui/tui-layout.c: Update references.
11013 * tui/tui-hooks.c: Update copyright, update references.
11014 * tui/tui.c: Update copyright, update references.
11015 * tui/tui-disasm.c: Update references.
11016
11017 2004-01-28 David Carlton <carlton@kealia.com>
11018
11019 * dwarf2read.c (add_partial_structure): Use demangled name if
11020 namespace equals "".
11021
11022 2004-01-27 Jim Blandy <jimb@redhat.com>
11023
11024 Clean up misapplied patch:
11025 * dwarf2read.c (determine_prefix): Change one of the two forward
11026 declarations for 'determine_prefix_aux' to a declaration for this.
11027 (read_func_scope): Use cu->language, not cu_language. Pass 'cu'
11028 argument to 'die_specification'.
11029
11030 * dwarf2read.c (read_func_scope): Re-indent comment.
11031
11032 2004-01-27 Paul N. Hilfinger <hilfinger@gnat.com>
11033
11034 * breakpoint.c (breakpoint_re_set_one): Set b->cond, b->val, and
11035 b->exp to NULL after freeing so that error during re-parsing or
11036 evaluation of expressions associated with breakpoint don't
11037 eventually lead to re-freeing of storage.
11038 Committed by Andrew Cagney.
11039
11040 2004-01-27 Andrew Cagney <cagney@redhat.com>
11041
11042 * source.c (ambiguous_line_spec): Delete undefined declaration.
11043 * m32r-rom.c (m32r_set_board_address): Delete unused function.
11044 (m32r_set_server_address, m32r_set_download_path): Ditto.
11045 * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
11046
11047 2004-01-27 Daniel Jacobowitz <drow@mvista.com>
11048
11049 * dwarf2read.c: Update calls to changed and renamed functions, and
11050 references to moved variables.
11051
11052 (struct dwarf2_cu): Add first_fn, last_fn, cached_fn,
11053 language, language_defn, list_in_scope, and ftypes members.
11054 (cu_first_fn, cu_last_fn, cu_cached_fn, cu_language)
11055 (cu_language_defn, list_in_scope, ftypes, cu_header_offset)
11056 (baseaddr): Remove globals.
11057
11058 (dwarf_attr): Renamed to dwarf2_attr. Add CU argument.
11059 (set_cu_language, die_is_declaration, die_specification)
11060 (determine_prefix, determin_prefix_aux, class_name, namespace_name)
11061 (dwarf2_linkage_name, dwarf2_name, dwarf2_extension)
11062 (dwarf2_get_ref_die_offset, dwarf2_fundamental_type)
11063 (initialize_cu_func_list, add_to_cu_func_list): Add CU argument.
11064
11065 (dwarf2_build_psymtabs_hard): Add local baseaddr. Initialize
11066 cu.list_in_scope. Don't initialize cu_header_offset.
11067 (add_partial_symbol): Add local baseaddr.
11068 (psymtab_to_symtab_1): Add local baseaddr. Use
11069 objfile->section_offsets for consistency. Don't initialize
11070 cu_header_offset; do initialize cu.header.offset and
11071 cu.list_in_scope.
11072 (read_file_scope, read_func_scope, read_lexical_block_scope)
11073 (dwarf_decode_lines, new_symbol): Add local baseaddr.
11074
11075 2004-01-27 Michael Chastain <mec.gnu@mindspring.com>
11076
11077 * PROBLEMS: Add gdb/1516.
11078
11079 2003-12-29 Robert Millan <robertmh@gnu.org>
11080
11081 Patch committed by Andrw Cagney.
11082 * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
11083 * configure.tgt: Match knetbsd*-gnu.
11084
11085 2004-01-26 Andrew Cagney <cagney@redhat.com>
11086
11087 * breakpoint.c (catch_command_1): Delete #ifdef code.
11088 (catch_fork_command_1): Delete #ifdef wrapper.
11089 (catch_exec_command_1): Ditto.
11090 (catch_load_command_1): Ditto.
11091 (catch_unload_command_1): Ditto.
11092
11093 * breakpoint.c (watchpoint_check): Delete #if0ed variable.
11094 (catch_breakpoint): Delete #if0ed function.
11095 (disable_catch_breakpoint): Ditto.
11096 (delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
11097 (disable_catch, enable_catch, delete_catch): Ditto.
11098
11099 2004-01-26 Andrew Cagney <cagney@redhat.com>
11100
11101 * remote.c (echo_check, quit_flag): Delete variables.
11102 (cisco_kernel_mode): Delete variable.
11103 (minitelnet_return, tty_input, escape_count): Delete variables.
11104 (remote_cisco_mode): Delete variable.
11105 (remote_cisco_open, remote_cisco_close): Delete function.
11106 (remote_cisco_mourn, remote_cisco_wait): Delete function.
11107 (init_remote_cisco_ops): Delete function.
11108 (_initialize_remote): Do not install "remote cisco" code.
11109 (read_frame): Delete cisco specific code.
11110 (remote_info_process): Delete function.
11111 (remote_wait): Delete cisco specific code.
11112 (remote_cisco_section_offsets): Delete function.
11113 (remote_cisco_objfile_relocate): Delete function.
11114 (remote_async_wait): Delete cisco specific code.
11115 (minitelnet, readtty, readsocket): Delete function.
11116
11117 2004-01-26 Andrew Cagney <cagney@redhat.com>
11118
11119 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS): Deprecate. Add
11120 comments mentioning extract_returned_value_address.
11121 * infcmd.c (print_return_value): Update. Add comments on
11122 extract_returned_value_address.
11123 * stack.c (return_command): Add comments on
11124 extract_returned_value_address.
11125 * values.c: Update comment.
11126 * m32r-tdep.c: Update comment.
11127 * sparc-tdep.c: Update comment.
11128 * ia64-tdep.c (ia64_use_struct_convention): Update comment.
11129 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
11130 * sh64-tdep.c (sh64_gdbarch_init): Update.
11131 * sh-tdep.c (sh_gdbarch_init): Update.
11132 * s390-tdep.c (s390_gdbarch_init): Update.
11133 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
11134 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
11135 * m68k-tdep.c (m68k_gdbarch_init): Update.
11136 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
11137 * m32r-tdep.c (m32r_gdbarch_init): Update.
11138 * ia64-tdep.c (ia64_gdbarch_init): Update.
11139 * h8300-tdep.c (h8300_gdbarch_init): Update.
11140 * frv-tdep.c (frv_gdbarch_init): Update.
11141 * arm-tdep.c (arm_gdbarch_init): Update.
11142 * alpha-tdep.c (alpha_gdbarch_init): Update.
11143
11144 2004-01-26 Andrew Cagney <cagney@redhat.com>
11145
11146 * dwarf2loc.c (dwarf_expr_frame_base): Use SYMBOL_OPS instead of
11147 SYMBOL_LOCATION_FUNCS
11148 (dwarf2_loclist_funcs, dwarf2_locexpr_funcs): Change type to
11149 "struct symbol_ops".
11150 * dwarf2loc.h (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Change
11151 type to "struct symbol_ops".
11152 * symtab.h (struct symbol_ops): Rename "struct location_funcs".
11153 (struct symbol): Replace ".aux_value.loc.funcs" and
11154 ".aux_value.loc.baton" with ".ops" and ".aux_value.ptr".
11155 (SYMBOL_OBJFILE): Delete macro.
11156 (SYMBOL_LOCATION_FUNCS): Delete macro.
11157 (SYMBOL_LOCATION_BATON): Update.
11158 * dwarf2read.c (dwarf2_symbol_mark_computed): Set SYMBOL_OPS
11159 intead of SYMBOL_LOCATION_FUNCS.
11160 * ax-gdb.c (gen_var_ref): Ditto.
11161 * printcmd.c (address_info): Ditto.
11162 * findvar.c (read_var_value): Ditto.
11163 (symbol_read_needs_frame): Ditto.
11164
11165 2004-01-26 Andrew Cagney <cagney@redhat.com>
11166
11167 * dwarf2read.c (read_func_scope): Document frame-base hack.
11168
11169 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11170
11171 * infcmd.c (print_return_value): Plug memory leak; delete
11172 ui_stream object. Rename argument `structure_return' to
11173 `struct_return'.
11174
11175 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11176
11177 * infcmd.c (print_return_value): Wrap long lines.
11178 (finish_command_continuation, finish_command): Remove unused
11179 variable `funcaddr'. Fix some coding-standards problems.
11180
11181 * sparc-tdep.c (sparc_regset_from_core_section): Check whether
11182 SECT_SIZE is large enough, not whether it's exactly the right size.
11183 (sparc32_gdbarch_init): Initialize TDEP->sizeof_gregset and
11184 TDEP->fpregset to zero.
11185
11186 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Also supply the
11187 floating-point registers for traditional NetBSD core files.
11188 (sparc32nbsd_init_abi): Initialize TDEP->sizeof_gregset and
11189 TDEP->sizeof_fpregset here.
11190
11191 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11192
11193 * sparc-tdep.h (sparc32nbsd_sigcontext_saved_regs): New prototype.
11194 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): New
11195 function with code split out from
11196 sparc32nbsd_sigcontext_frame_cache.
11197 (sparc32nbsd_sigcontext_frame_cache): Use
11198 sparc32nbsd_sigcontext_saved_regs.
11199 (_initialize_sparc32nbsd_tdep): Don't register OS ABI handler for
11200 OpenBSD.
11201 * sparcobsd-tdep.c: New file.
11202 * Makefile.in (ALLDEPFILES): Add sparcobsd-tdep.c.
11203 (sparcobsd-tdep.o): New dependency.
11204 * configure.tgt (sparc-*-openbsd*): Set gdb_target to obsd.
11205 * config/sparc/obsd.mt: New file.
11206
11207 * sparc-tdep.c (sparc32_gdbarch_init): Don't require
11208 TDEP->fpregset to be initialized to enable core file register
11209 sets.
11210
11211 2004-01-24 Mark Kettenis <kettenis@gnu.org>
11212
11213 * sparc64-tdep.h (struct frame_info, struct trad_frame_saved_reg):
11214 Add opaque declarations.
11215 (sparc64nbsd_sigcontext_saved_regs): New prototype.
11216 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): New
11217 function with code split out from
11218 sparc64nbsd_sigcontext_frame_cache.
11219 (sparc64nbsd_sigcontext_frame_cache): Use
11220 sparc64nbsd_sigcontext_saved_regs.
11221 (_initialize_sparc64nbsd_tdep): Don't register OS ABI handler for
11222 OpenBSD.
11223 * sparc64obsd-tdep.c: New file.
11224 * Makefile.in (ALLDEPFILES): Add sparc64obsd-tdep.c.
11225 (sparc64obsd-tdep.o): New dependency.
11226 * configure.tgt (sparc64-*-openbsd*): Set gdb_target to obsd64 and
11227 gdb_osabi to GDB_OSABI_OPENBSD_ELF.
11228 * config/sparc/obsd64.mt: New file.
11229
11230 * sparc-tdep.c (sparc_fetch_instruction): Return zero if we can't
11231 read the instruction at PC.
11232
11233 * sparcnbsd-tdep.c (GDB_OSABI_NETBSD_CORE): Define, based on the
11234 value of GDB_OSABI_DEFAULT.
11235 (sparcnbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_CORE
11236 instead of GDB_OSABI_NETBSD_AOUT.
11237
11238 2004-01-24 Nick Roberts <nick@nick.uklinux.net>
11239
11240 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-cmds.h: Update
11241 copyright.
11242
11243 2004-01-23 Andrew Cagney <cagney@redhat.com>
11244
11245 * printcmd.c (display_command): Replace tui_set_display call with
11246 tui_set_layout_for_display_command.
11247 * tui/tui.h (enum tui_win_type): Define.
11248 (tui_set_layout): Delete declaration.
11249 (tui_set_layout_for_display_command): Rename set_tui_layout.
11250 * tui/tui-data.h (enum tui_layout_type): Define.
11251 * tui/tui-layout.h: Update copyright. Include "tui-data.h" and
11252 "tui.h".
11253 (tui_add_win_to_layout): Rename tuiAddWinToLayout.
11254 (tui_default_win_height): Rename tuiDefaultWinHeight.
11255 (tui_default_win_viewport_height): Rename
11256 tuiDefaultWinViewportHeight.
11257 (tui_set_layout): RenametuiSetLayout.
11258 * tui/tui-layout.c: Update references.
11259 * tui/tui.c: Update references.
11260 * tui/tui-disasm.c: Update references.
11261
11262 2004-01-23 David Carlton <carlton@kealia.com>
11263
11264 Partial workaround for PR c++/1511:
11265 * cp-namespace.c: Include frame.h.
11266 (cp_lookup_transparent_type): New
11267 (cp_lookup_transparent_type_loop): New.
11268 * cp-support.h: Declare cp_lookup_transparent_type.
11269 * symtab.c (basic_lookup_transparent_type): Renamed from
11270 lookup_transparent_type.
11271 (lookup_transparent_type): Replace old body by a call to
11272 current_language->la_lookup_transparent_type.
11273 * symtab.h: Update copyright. Declare
11274 basic_lookup_transparent_type.
11275 * language.h: Update copyright.
11276 (struct language_defn): Add la_lookup_transparent_type.
11277 * language.c: Update copyright.
11278 (unknown_language_defn): Add basic_lookup_transparent_type.
11279 (auto_language_defn): Add basic_lookup_transparent_type.
11280 (local_language_defn): Add basic_lookup_transparent_type.
11281 * ada-lang.c: Update copyright.
11282 (ada_language_defn): Add basic_lookup_transparent_type.
11283 * c-lang.c: Update copyright.
11284 (c_language_defn): Add basic_lookup_transparent_type.
11285 (cplus_language_defn): Add basic_lookup_transparent_type.
11286 (asm_language_defn): Add basic_lookup_transparent_type.
11287 (minimal_language_defn): Add basic_lookup_transparent_type.
11288 * f-lang.c: Update copyright.
11289 (f_language_defn): Add basic_lookup_transparent_type.
11290 * jv-lang.c: Update copyright.
11291 (java_language_defn): Add basic_lookup_transparent_type.
11292 * m2-lang.c: Update copyright.
11293 (m2_language_defn): Add basic_lookup_transparent_type.
11294 * objc-lang.c: Update copyright.
11295 (objc_language_defn): Add basic_lookup_transparent_type.
11296 * p-lang.c: Update copyright.
11297 (p_language_defn): Add basic_lookup_transparent_type.
11298 * scm-lang.c: Update copyright.
11299 (scm_language_defn): Add basic_lookup_transparent_type.
11300 * Makefile.in (cp-namespace.o): Depend on frame.h.
11301
11302 2004-01-23 David Carlton <carlton@kealia.com>
11303
11304 Patch for PR c++/1520:
11305 * dwarf2read.c (read_func_scope): Set processing_current_prefix
11306 properly if we have a specification die.
11307 (determine_prefix_aux): Rename from determine_prefix.
11308 (determine_prefix): Like the old determine_prefix, but never
11309 returns NULL.
11310
11311 2004-01-23 Theodore A. Roth <troth@openavr.org>
11312
11313 * avr-tdep.c: Update copyright.
11314 (avr_iaddr_p): Delete unused function.
11315 (avr_saddr_p): Delete unused function.
11316
11317 2004-01-23 David Carlton <carlton@kealia.com>
11318
11319 * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
11320 Fix for PR symtab/1534.
11321
11322 2004-01-23 Mark Kettenis <kettenis@gnu.org>
11323
11324 * NEWS (New native configurations): Mention OpenBSD/sparc and
11325 OpenBSD/sparc64.
11326 * configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*.
11327 * configure.host: Likewise.
11328 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI
11329 handler for OpenBSD.
11330 * sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
11331
11332 2004-01-22 Mark Kettenis <kettenis@gnu.org>
11333
11334 * sparcnbsd-tdep.c (sparcnbsd_core_osabi_sniffer): New function.
11335 (_initialize_sparnbsd_tdep): Register sparcnbsd_core_osabi_sniffer.
11336
11337 * ser-pipe.c (pipe_open): Use proper null pointer in execl call.
11338 * cli/cli-cmds.c (shell_escape): Likewise.
11339
11340 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Recognize
11341 OpenBSD .note.openbsd.ident sections.
11342
11343 2004-01-22 David Carlton <carlton@kealia.com>
11344
11345 * dwarf2read.c (psymtab_to_symtab_1): Calculate lowpc, highpc via
11346 get_scope_pc_bounds.
11347 (read_file_scope): Ditto.
11348 (get_scope_pc_bounds): New function, produced by extracting code
11349 from the above two functions, consolidating it, and adding support
11350 for DW_TAG_namespace.
11351
11352 2004-01-22 Mark Kettenis <kettenis@gnu.org>
11353
11354 * osabi.c (MAX_NOTESZ): New define.
11355 (check_note): New function.
11356 (generic_elf_osabi_sniff_abi_tag_sections): Reorganize code using
11357 check_note.
11358
11359 2004-01-21 Roland McGrath <roland@redhat.com>
11360
11361 * MAINTAINERS (write after approval): Add myself.
11362
11363 2004-01-21 Eli Zaretskii <eliz@gnu.org>
11364
11365 * utils.c (init_page_info): Move declarations of `rows' and
11366 `cols' before the __GO32__-specific code. Move the closing brace
11367 outside the #ifdef __GO32__..#endif block.
11368 [__GO32__]: Use `rows' and `cols' to avoid compiler warnings.
11369
11370 2004-01-21 Paul Brook <paul@codesourcery.com>
11371
11372 * infrun.c (handle_inferior_event): Check stop_stack_dummy if handling
11373 BPSTAT_WHAT_CHECK_SHLIBS.
11374
11375 2004-01-21 Paul Brook <paul@codesourcery.com>
11376
11377 * MAINTAINERS: Add myself to write-after-approval.
11378
11379 2004-01-20 Andrew Cagney <cagney@redhat.com>
11380
11381 * ax-gdb.c (print_axs_value): Delete unused function.
11382 * jv-lang.c (java_lookup_type): Delete unused function.
11383 * cli/cli-dump.c (dump_filetype): Delete unused function.
11384 * remote-mips.c (remote_mips_insert_hw_breakpoint)
11385 (remote_mips_remove_hw_breakpoint): Delete unused functions.
11386 (mips_getstring): Delete unused function.
11387 (pmon_insert_breakpoint): Delete #if0ed function.
11388 (PMON_MAX_BP): Delete #if0ed MACRO.
11389 (mips_pmon_bp_info): Delete #if0ed variable.
11390 (pmon_remove_breakpoint): Delete #if0ed function.
11391 * monitor.c (monitor_write_even_block): Delete unused function.
11392 (monitor_write_memory_block): Delete #if0ed code.
11393 * dink32-rom.c (dink32_load): Delete unused function.
11394 (_initialize_dink32_rom): Delete #if0ed code.
11395 * d10v-tdep.c (d10v_daddr_p): Delete unused function.
11396
11397 * tui/tui-command.c: Update references.
11398 * tui/tui-io.c: Update references.
11399 * tui/tui-command.h: Update copyright.
11400 (tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.
11401
11402 * source.c (ambiguous_line_spec): Delete never-defined function.
11403 * remote-rdi.c (arm_rdi_mourn, arm_rdi_send): Ditto.
11404 * gdbtypes.c (add_name, add_mangled_type): Ditto.
11405 * cli/cli-cmds.c (validate_comname): Ditto.
11406
11407 * tui/tui-disasm.h: Update copyright. Include "tui.h" and
11408 "tui-data.h".
11409 (tui_set_disassem_content): Rename tuiSetDisassemContent.
11410 (tui_show_disassem): Rename tuiShowDisassem.
11411 (tui_show_disassem_and_update_source): Rename
11412 tuiVerticalDisassemScroll.
11413 (tui_vertical_disassem_scroll): Rename tuiVerticalDisassemScroll.
11414 (tui_get_begin_asm_address): Rename tuiGetBeginAsmAddress.
11415 * tui/tui.h: Update copyright.
11416 (enum tui_status): Define.
11417 * tui/tui-data.h (enum tui_scroll_direction): Define.
11418 * tui/tui-disasm.c: Update copyright. Update references.
11419 * tui/tui-winsource.c: Update copyright. Update references.
11420 * tui/tui-win.c: Update references.
11421 * tui/tui-layout.c: Update references.
11422
11423 2004-01-20 Andrew Cagney <cagney@redhat.com>
11424
11425 * mi/mi-cmd-stack.c (list_args_or_locals): Move declaration of
11426 sym2 to start of block.
11427
11428 2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
11429
11430 * MAINTAINERS: Delete mmalloc.
11431 * Makefile.in: Delete MMALLOC, MMALLOC_CFLAGS, -lmmalloc, mmalloc_h.
11432 * NEWS: Mention removal of --with-malloc.
11433 * acconfig.h: Delete USE_MMALLOC, MMCHECK_FORCE.
11434 * config.in: Regenerate.
11435 * configure: Regenerate.
11436 * configure.in: Delete MMALLOC_CFLAGS, MMALLOC, --with-mmalloc,
11437 USE_MMALLOC, MMCHECK_FORCE.
11438 * gdbinit.in: Remove mmalloc.
11439 * utils.c: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE, malloc_botch.
11440 * config/alpha/alpha-linux.mh: Delete MMALLOC, MMALLOC_CFLAGS.
11441 * config/i386/go32.mh: Likewise.
11442 * config/i386/interix.mh: Likewise.
11443 * config/powerpc/xm-linux.h: Delete MMAP_BASE_ADDRESS, MMAP_INCREMENT.
11444
11445 2004-01-19 Jeff Johnston <jjohnstn@redhat.com>
11446
11447 * linespec.c (decode_variable, symtab_from_filename): Call
11448 error_silent with error message instead of throwing an exception
11449 directly.
11450 * defs.h (error_silent, error_output_message): Add prototypes.
11451 (catch_exceptions_with_msg): Ditto.
11452 * utils.c (error_silent, error_output_message): New functions.
11453 * top.c (catch_exceptions_with_msg): New function.
11454
11455 2004-01-20 Nick Roberts <nick@nick.uklinux.net>
11456
11457 * mi/mi-cmds.h (enum print_values): Add definition.
11458
11459 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Print the name,
11460 type and value for simple data types and just the name and type
11461 for complex ones, if required.
11462
11463 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Print the values of the
11464 children, if required.
11465
11466 2004-01-19 Kevin Buettner <kevinb@redhat.com>
11467
11468 * frv-tdep.c (frv_push_arguments, frv_saved_pc_after_call): Delete
11469 unused declarations.
11470
11471 2004-01-19 Andrew Cagney <cagney@redhat.com>
11472
11473 * top.h (mapped_symbol_files): Delete declaration.
11474 * main.c (captured_main): Delete option "m" and "mapped".
11475 * objfiles.c (mapped_symbol_files): Delete variable.
11476 * symfile.c (symbol_file_command): Delete mmap code.
11477 (symbol_file_add_with_addrs_or_offsets): Ditto.
11478 (add_symbol_file_command, reread_separate_symbols): Ditto.
11479 * objfiles.h (OBJF_MAPPED): Delete.
11480 * objfiles.c (allocate_objfile) [USE_MMALLOC]: Delete.
11481 (free_objfile) [USE_MMALLOC]: Ditto.
11482 (open_existing_mapped_file): Delete function.
11483 (open_mapped_file): Delete function.
11484 (map_to_file): Delete function.
11485
11486 2004-01-19 Kevin Buettner <kevinb@redhat.com>
11487
11488 * infrun.c (step_into_function): Account for possible breakpoint
11489 adjustment when computing ``stop_func_start''.
11490
11491 2004-01-19 Kevin Buettner <kevinb@redhat.com>
11492
11493 * target.c (default_region_size_ok_for_hw_watchpoint): Compare
11494 the region size against the size of a pointer, not the size of
11495 a register as given by DEPRECATED_REGISTER_SIZE.
11496
11497 2004-01-19 Andrew Cagney <cagney@redhat.com>
11498
11499 * tui/tui-regs.h: Include "tui-data.h".
11500 (tuiFirstRegElementNoInLine): Delete declaration.
11501 (tui_display_registers_from): Rename tuiDisplayRegistersFrom.
11502 (tui_last_regs_line_no): Rename tuiLastRegsLineNo.
11503 (tui_line_from_reg_element_no): Rename tuiLineFromRegElementNo.
11504 (tui_calculate_regs_column_count): Rename
11505 tuiCalculateRegsColumnCount.
11506 (tui_check_register_values): Rename tuiCheckRegisterValues.
11507 (tui_show_registers): Rename tuiShowRegisters.
11508 (tui_display_registers_from_line): Rename
11509 tuiDisplayRegistersFromLine.
11510 (tui_first_reg_element_inline): Rename tuiFirstRegElementInLine.
11511 (tui_toggle_float_regs): Rename tuiToggleFloatRegs.
11512 (tui_first_reg_element_no_inline): Rename
11513 tuiFirstRegElementNoInLine.
11514 * tui/tui-data.h: Update copyright.
11515 (enum tui_register_display_type): Rename _TuiRegisterDisplayType.
11516 * tui/tui-windata.c: Update copyright, update references.
11517 * tui/tui-regs.c: Update copyright, update references.
11518 * tui/tui-win.c: Update copyright, update references.
11519 * tui/tui-layout.c: Update copyright, update references.
11520
11521 2004-01-18 Andrew Cagney <cagney@redhat.com>
11522
11523 * tui/tui-io.c: Update copyright.
11524 (key_is_end_sequence, key_is_backspace): New functions.
11525 (key_is_command_char, key_is_start_sequence): New function.
11526 (tui_getc): Update references.
11527 * tui/tui-io.h: Update copyright.
11528 (m_tuiStartNewLine): Delete macro.
11529 (m_isBackspace, m_isDeleteChar): Delete macros.
11530 (m_isDeleteLine, m_isDeleteToEol): Delete macros.
11531 (m_isNextPage, m_isPrevPage): Delete macros.
11532 (m_isLeftArrow, m_isRightArrow): Delete macros.
11533 (m_isXdbStyleCommandChar): Delete macro.
11534 (key_is_start_sequence): Declare, replace m_isStartSequence.
11535 (key_is_end_sequence): Declare, replace m_isEndSequence.
11536 (key_is_backspace): Declare ,replace m_isBackspace.
11537 (key_is_command_char): Declare, replace m_isCommandChar.
11538 * tui/tui-command.c: Update copyright.
11539 (tuiDispatchCtrlChar): Update references.
11540
11541 * config/djgpp/fnchange.lst: Delete tui/tuiSourceWin.c and
11542 tuiSourceWin.h.
11543
11544 * tui/tui-command.c: Rename tui/tuiCommand.c.
11545 * tui/tui-command.h: Rename tui/tuiCommand.h.
11546 * tui/tui-data.c: Rename tui/tuiData.c.
11547 * tui/tui-data.h: Rename tui/tuiData.h.
11548 * tui/tui-disasm.c: Rename tui/tuiDisassem.c.
11549 * tui/tui-disasm.h: Rename tui/tuiDisassem.h.
11550 * tui/tui-io.c: Rename tui/tuiIO.c.
11551 * tui/tui-io.h: Rename tui/tuiIO.h.
11552 * tui/tui-layout.c: Rename tui/tuiLayout.c.
11553 * tui/tui-layout.h: Rename tui/tuiLayout.h.
11554 * tui/tui-regs.c: Rename tui/tuiRegs.c.
11555 * tui/tui-regs.h: Rename tui/tuiRegs.h.
11556 * tui/tui-source.c: Rename tui/tuiSource.c.
11557 * tui/tui-source.h: Rename tui/tuiSource.h.
11558 * tui/tui-stack.c: Rename tui/tuiStack.c.
11559 * tui/tui-stack.h: Rename tui/tuiStack.h.
11560 * tui/tui-win.c: Rename tui/tuiWin.c.
11561 * tui/tui-win.h: Rename tui/tuiWin.h.
11562 * tui/tui-windata.c: Rename tui/tuiDataWin.c.
11563 * tui/tui-windata.h: Rename tui/tuiDataWin.h.
11564 * tui/tui-wingeneral.c: Rename tui/tuiGeneralWin.c.
11565 * tui/tui-wingeneral.h: Rename tui/tuiGeneralWin.h.
11566 * tui/tui-winsource.c: Rename tui/tuiSourceWin.c.
11567 * tui/tui-winsource.h: Rename tui/tuiSourceWin.h.
11568 * tui/tui-file.c: Update includes.
11569 * tui/tui-hooks.c: Update includes.
11570 * tui/tui-interp.c: Update includes.
11571 * tui/tui.c: Update includes.
11572 * Makefile.in: Update all tui/ dependencies.
11573 (SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS): Update file names.
11574
11575 * Makefile.in: Update copyright. Update dependencies.
11576
11577 * tui/tuiSourceWin.c (tui_update_breakpoint_info): Fix compile
11578 problem.
11579
11580 2004-01-18 Andrew Cagney <cagney@redhat.com>
11581
11582 * mn10300-tdep.c (_initialize_mn10300_tdep): Call gdbarch_register
11583 instead of register_gdbarch_init.
11584
11585 * remote-sds.c (tohex): Delete unused function. Update copyright.
11586 * xstormy16-tdep.c (xstormy16_register_virtual_size): Ditto.
11587 * v850-tdep.c (v850_register_virtual_size): Ditto.
11588 * target.c (normal_target_post_startup_inferior): Ditto.
11589 * source.c (ambiguous_line_spec): Ditto.
11590 * remote.c (adapt_remote_get_threadinfo): Ditto.
11591 * mi/mi-out.c (out_field_fmt): Ditto.
11592 * mi/mi-interp.c (mi_interp_read_one_line_hook): Ditto.
11593 (output_control_change_notification): Ditto.
11594 * m68k-tdep.c (m68k_register_byte): Ditto.
11595 (m68k_remote_breakpoint_from_pc): Ditto.
11596 * ui-out.c (init_ui_out_state): Delete unused declaration.
11597 * stabsread.c (search_value): Ditto.
11598 * mi/mi-cmd-env.c (env_cli_command): Ditto.
11599 * maint.c (print_section_table): Ditto.
11600 * infrun.c (set_follow_fork_mode_command): Ditto.
11601
11602 2004-01-18 Mark Kettenis <kettenis@gnu.org>
11603
11604 * dwarf2-frame.c (execute_cfa_program): Move DWA_CFA_nop before
11605 DW_CFA_def_cfa_exporession. Add support for
11606 DW_CFA_offset_extendend_sf, DW_CFA_def_cfa_sf and
11607 DW_CFA_def_cfa_offset_sf. This should fix PR backtrace/1391.
11608
11609 2004-01-18 Andrew Cagney <cagney@redhat.com>
11610
11611 * ocd.c: Update copyright.
11612 (bdm_read_register_command): Delete unused function.
11613 (_initialize_remote_ocd): Delete commented out reference.
11614 (get_quoted_char, reset_packet): Delete #if0ed function.
11615 (output_packet, put_quoted_char): Delete #if0ed function.
11616 (stu_put_packet, stu_get_packet): Delete #if0ed function.
11617 (ocd_start_remote): Delete #if0ed code, remove #if1 wrapper.
11618 (BDM_BREAKPOINT): Delete #if0ed macro.
11619 (remote_timeout): Delete #if0ed variable.
11620
11621 2004-01-18 Mark Kettenis <kettenis@gnu.org>
11622
11623 * Makefile.in (ALLDEPFILES): Remove core-sol2.c.
11624 (core-sol2.o): Remove dependency.
11625 * core-sol2.c: Remove file.
11626
11627 2004-01-17 Andrew Cagney <cagney@redhat.com>
11628
11629 * mdebugread.c (compare_blocks): Make addr_diff a LONGEST.
11630 * block.h: Make GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOOCK
11631 enums.
11632
11633 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11634
11635 * remote.c: Update copyright years.
11636
11637 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11638
11639 * remote.c (remote_vcont_resume): Use xstrprintf instead of sprintf.
11640
11641 2004-01-17 Andrew Cagney <cagney@redhat.com>
11642
11643 * mdebugread.c: Update copyright.
11644 (parse_symbol): Replace DEPRECATED_STREQ with strcmp.
11645 (parse_type, parse_procedure): Ditto.
11646 (parse_partial_symbols, psymtab_to_symtab_1): Ditto.
11647
11648 * cris-tdep.c (cris_store_struct_return): Put back accidently
11649 deleted function.
11650
11651 * gdbarch.sh: Update copyright year.
11652 * gdbarch.h, gdbarch.c: Re-generate.
11653
11654 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11655
11656 Suggested by George Anzinger.
11657 * dwarf2expr.c (execute_stack_op): Fetch the second item from the
11658 correct stack offset. Include unknown opcode numbers in the error
11659 message.
11660
11661 2004-01-17 Andrew Cagney <cagney@redhat.com>
11662
11663 * x86-64-tdep.c (x86_64_init_abi): No need to clear
11664 extract_struct_value_address, i386 does not set it.
11665 * sparc64-tdep.c (sparc64_init_abi): Do not set
11666 extract_struct_value_address, never called.
11667 (sparc64_extract_struct_value_address): Delete function.
11668 * m68hc11-tdep.c: Update copyright.
11669 (m68hc11_gdbarch_init): Delete redundant assignment of
11670 extract_struct_value_address.
11671 * i386-tdep.c: Update copyright.
11672 (i386_gdbarch_init): Do not set extract_struct_value_address,
11673 never called.
11674 (i386_extract_struct_value_address): Delete function.
11675 * sparc-tdep.c (sparc32_gdbarch_init): Do not set
11676 extract_struct_value_address, never called.
11677 (sparc32_extract_struct_value_address): #if 0 function. Add
11678 comments explaining its future.
11679
11680 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11681
11682 * arm-tdep.c (arm_write_pc): New function.
11683 (arm_gdbarch_init): Call set_gdbarch_write_pc.
11684
11685 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11686
11687 * breakpoint.c (must_shift_inst_regs): Delete.
11688 (bpstat_stop_status): Delete references to DECR_PC_AFTER_HW_BREAK
11689 and SHIFT_INST_REGS.
11690 * infcmd.c (step_1, step_1_continuation): Delete references to
11691 SHIFT_INST_REGS.
11692 * infrun.c (keep_going): Likewise.
11693 * target.h (DECR_PC_AFTER_HW_BREAK): Don't define.
11694 * config/i386/nm-i386.h (DECR_PC_AFTER_HW_BREAK): Likewise.
11695
11696 2004-01-17 Andrew Cagney <cagney@redhat.com>
11697
11698 * gdbarch.sh (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
11699 * gdbarch.h, gdbarch.c: Re-generate.
11700 * infcmd.c (print_return_value): Delete reference to
11701 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
11702
11703 * cris-tdep.c (cris_gdbarch_init): Do not set
11704 deprecated_extract_struct_value_address.
11705
11706 * xstormy16-tdep.c: Update copyright.
11707 (xstormy16_extract_struct_value_address): Update to current
11708 extract struct value address interface.
11709 (xstormy16_gdbarch_init): Set extract_struct_value_address.
11710 * sh64-tdep.c (sh64_extract_struct_value_address): Update to
11711 current extract struct value address interface.
11712 (sh64_gdbarch_init): Set extract_struct_value_address.
11713
11714 * cris-tdep.c: Update copyright.
11715 (cris_extract_struct_value_address): Delete function.
11716 (struct_return_address): Delete variable.
11717 (cris_store_struct_return): Do not set struct_return_address.
11718
11719 * mcore-tdep.c: Update copyright.
11720 (mcore_extract_struct_value_address): Delete function. Update
11721 comments.
11722 (mcore_gdbarch_init): Update.
11723 * mn10300-tdep.c: Update copyright.
11724 (mn10300_extract_struct_value_address): Delete function.
11725 (mn10300_gdbarch_init): Update.
11726 * v850-tdep.c: Update copyright.
11727 (v850_extract_struct_value_address): Delete.
11728 (v850_gdbarch_init): Update.
11729 * ns32k-tdep.c: Update copyright.
11730 (ns32k_extract_struct_value_address): Delete.
11731 (ns32k_gdbarch_init): Update.
11732 * hppa-tdep.c (hppa_extract_struct_value_address): Delete.
11733 (hppa_gdbarch_init): Update.
11734 * vax-tdep.c: Update copyright.
11735 (vax_extract_struct_value_address): Delete.
11736 (vax_gdbarch_init): Update.
11737
11738 * gdbarch.sh (DEPRECATED_NPC_REGNUM): Delete.
11739 * gdbarch.h, gdbarch.c: Re-generate.
11740 * procfs.c (procfs_fetch_registers): Delete reference to
11741 DEPRECATED_NPC_REGNUM.
11742 (procfs_store_registers): Ditto.
11743 * regcache.c (generic_target_write_pc): Simplify.
11744 * lynx-nat.c: Delete #ifdef SPARC code. Not used.
11745
11746 * core-sol2.c (fetch_core_registers): Replace
11747 DEPRECATED_NPC_REGNUM with equivalent tdep value.
11748
11749 * hppa-tdep.c: Update copyright year.
11750 (hppa_target_write_pc): Use PCOQ_TAIL_REGNUM instead of
11751 NPC_REGNUM.
11752 (hppa_gdbarch_init): Do not set deprecated_npc_regnum.
11753
11754 * mips-tdep.c (mips_write_pc): New function.
11755 (mips_gdbarch_init): Set "write_pc" to "mips_write_pc".
11756 (mips_read_pc): Use mips_regnum instead of PC_REGNUM.
11757 (mips_find_saved_regs, mips_software_single_step: Ditto.
11758 (mips_frame_saved_pc, mips_frame_saved_pc): Ditto.
11759 mips_init_extra_frame_info, mips_pop_frame): Ditto.
11760
11761 2004-01-17 Andrew Cagney <cagney@redhat.com>
11762
11763 * mips-tdep.c: Re-indent. Group functions by ABI.
11764
11765 2004-01-17 Andrew Cagney <cagney@redhat.com>
11766
11767 * gdbarch.sh (DECR_PC_AFTER_BREAK): Make zero the default.
11768 * gdbarch.c: Re-generate.
11769 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
11770 DECR_PC_AFTER_BREAK to zero.
11771 * vax-tdep.c (vax_gdbarch_init): Ditto.
11772 * v850-tdep.c (v850_gdbarch_init): Ditto.
11773 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
11774 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
11775 * sh-tdep.c (sh_gdbarch_init): Ditto.
11776 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
11777 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
11778 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
11779 * mips-tdep.c (mips_gdbarch_init): Ditto.
11780 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
11781 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11782 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
11783 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
11784 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
11785 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
11786 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
11787 * frv-tdep.c (frv_gdbarch_init): Ditto.
11788 * cris-tdep.c (cris_gdbarch_init): Ditto.
11789 * avr-tdep.c (avr_gdbarch_init): Ditto.
11790 * arm-tdep.c (arm_gdbarch_init): Ditto.
11791 * i386-nto-tdep.c (i386nto_init_abi): Add comment.
11792
11793 2004-01-17 J. Brobecker <brobecker@gnat.com>
11794
11795 * dwarf2read.c (dwarf2_non_const_array_bound_ignored_complaint):
11796 Delete, no longer used.
11797 (read_subrange_type): New function, mostly extracted from
11798 read_array_type().
11799 (read_array_type): Replace extracted code by call to
11800 read_subrange_type().
11801 (dwarf2_get_attr_constant_value): New function.
11802 (scan_partial_symbols): Add handling for DW_TAG_subrange_type.
11803 (add_partial_symbol): Likewise.
11804 (process_die): Likewise.
11805 (new_symbol): Likewise.
11806 (read_type_die): Likewise.
11807
11808 2004-01-16 Andrew Cagney <cagney@redhat.com>
11809
11810 * symfile.c: Update copyright year.
11811 (compare_symbols): Delete unused function.
11812 * stabsread.c: Update copyright year.
11813 (lrs_general_complaint): Delete unused function.
11814 (ref_search_value): Ditto.
11815 (get_substring): Delete declaration.
11816 * sh64-tdep.c: Update copyright year.
11817 (sh64_get_gdb_regnum): Delete unused function.
11818 * dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint):
11819 Delete unused function.
11820
11821 2004-01-17 Mark Kettenis <kettenis@gnu.org>
11822
11823 * defs.h (gdb_osabi): Add GDB_OSABI_OPENBSD_ELF.
11824 * osabi.c (gdb_osabi_names): Add "OpenBSD ELF".
11825
11826 2004-01-16 Andrew Cagney <cagney@redhat.com>
11827
11828 Changes from Peter Schauer.
11829 * rs6000-tdep.c: Update copyright year.
11830 (rs6000_push_dummy_call): Update the stack pointer before
11831 accessing the corresponding stack region.
11832 * rs6000-nat.c: Update copyright year.
11833 (set_host_arch): Set "info.abfd" to "exec_bfd".
11834
11835 2004-01-15 Mark Kettenis <kettenis@gnu.org>
11836
11837 * blockframe.c: Update copyright year.
11838 (inside_entry_func): Don't treat a zero PC specially.
11839
11840 2004-01-14 Elena Zannoni <ezannoni@redhat.com>
11841
11842 * gcore.c (gcore_copy_callback): Use paddr_d to print size
11843 variable.
11844 (gcore_create_callback): Ditto. Skip any memory segment that has
11845 no permissions set.
11846
11847 2004-01-14 David Carlton <carlton@kealia.com>
11848
11849 Change symbols for C++ nested types to contain the fully qualified
11850 name, if possible. (At least in the DWARF-2 case.) Partial fix
11851 for PR's c++/57, c++/488, c++/539, c++/573, c++/609, c++/832,
11852 c++/895.
11853 * c-exp.y (qualified_type): Handle types nested within classes.
11854 * cp-namespace.c: Update comments.
11855 (cp_set_block_scope): Delete #if 0.
11856 (cp_lookup_nested_type): Handle types nested within classes.
11857 * dwarf2read.c: (scan_partial_symbols): Call add_partial_structure
11858 when appropriate.
11859 (add_partial_symbol): Add the name of the enclosing namespace to
11860 types.
11861 (pdi_needs_namespace): New.
11862 (add_partial_namespace): Tweak comment.
11863 (add_partial_structure): New.
11864 (psymtab_to_symtab_1): Initialize processing_current_prefix
11865 here...
11866 (process_die): instead of here.
11867 (read_structure_scope): Try to figure out the name of the class or
11868 namespace that the structure might be defined within.
11869 (read_enumeration): Generate fully-qualified names, if possible.
11870 (read_namespace): Don't set name to NULL.
11871 (die_specification): New.
11872 (new_symbol): Generate fully-qualified names for types.
11873 (read_type_die): Determine appropriate prefix.
11874 (determine_prefix): New.
11875 (typename_concat): New.
11876 (class_name): New.
11877 * valops.c (value_aggregate_elt): Pass NOSIDE to
11878 value_struct_elt_for_reference.
11879 (value_struct_elt_for_reference): Make static, add NOSIDE
11880 parameter, call value_maybe_namespace_elt as a last resort.
11881 (value_namespace_elt): Break out code into
11882 value_maybe_namespace_elt.
11883 (value_maybe_namespace_elt): New.
11884
11885 2004-01-12 Andrew Cagney <cagney@redhat.com>
11886
11887 * mips-tdep.c (mips_convert_register_p): Handle both raw and
11888 cooked floating-point registers.
11889 (mips_gdbarch_init): Set convert_register_p, register_to_value,
11890 and value_to_register.
11891
11892 2004-01-13 Andrew Cagney <cagney@redhat.com>
11893
11894 * gdbarch.sh (FUNCTION_START_OFFSET): Make zero the default.
11895 * gdbarch.c: Re-generate.
11896 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
11897 FUNCTION_START_OFFSET.
11898 * v850-tdep.c (v850_gdbarch_init): Ditto.
11899 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
11900 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
11901 * sh-tdep.c (sh_gdbarch_init): Ditto.
11902 * s390-tdep.c (s390_gdbarch_init): Ditto.
11903 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
11904 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
11905 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
11906 * mips-tdep.c (mips_gdbarch_init): Ditto.
11907 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
11908 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
11909 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11910 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
11911 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
11912 * i386-tdep.c (i386_gdbarch_init): Ditto.
11913 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
11914 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
11915 * frv-tdep.c (frv_gdbarch_init): Ditto.
11916 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
11917 * cris-tdep.c (cris_gdbarch_init): Ditto.
11918 * avr-tdep.c (avr_gdbarch_init): Ditto.
11919 * arm-tdep.c (arm_gdbarch_init): Ditto.
11920 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
11921
11922 2004-01-13 Daniel Jacobowitz <drow@mvista.com>
11923
11924 * infrun.c (follow_fork_mode_ask): Remove.
11925 (follow_fork_mode_kind_names): Remove follow_fork_mode_ask.
11926 (follow_fork): Simplify and remove internal error for
11927 follow_fork_mode_ask.
11928 (_initialize_infrun): Update "set follow-fork-mode" help text.
11929
11930 2004-01-13 Andrew Cagney <cagney@redhat.com>
11931
11932 * configure.in: Update copyright year.
11933 (build_warnings): Add -Wunused-label.
11934 * configure: Re-generate.
11935
11936 2004-01-12 Andrew Cagney <cagney@redhat.com>
11937
11938 * exec.h (exec_ops): Make "extern".
11939
11940 * mips-tdep.c (mips_pseudo_register_read): Don't return a value,
11941 the function is void.
11942 (mips_pseudo_register_write): Ditto.
11943
11944 2004-01-12 Andrew Cagney <cagney@redhat.com>
11945
11946 * stack.c (frame_info): Delete DEPRECATED_PRINT_EXTRA_FRAME_INFO
11947 call. Never defined.
11948 * sparc-tdep.h (struct frame_info): Add opaque declaration.
11949 * sparc64-tdep.h (struct gdbarch): Add opaque declaration.
11950 (struct sparc_gregset, struct regcache): Ditto.
11951 * sparc-nat.c: Update copyright. Specify "GNU/Linux".
11952
11953 2004-01-12 Andrew Cagney <cagney@redhat.com>
11954
11955 * mi/ChangeLog: Delete file. Renamed to ...
11956 * mi/ChangeLog-1999-2003: New file.
11957 * tui/ChangeLog: Delete file. Renamed to ...
11958 * tui/ChangeLog-1998-2003: New file.
11959
11960 2004-01-11 Mark Kettenis <kettenis@gnu.org>
11961
11962 * sparc64nbsd-tdep.c: Include "regset.h".
11963 (sparc64nbsd_sizeof_struct_reg, sparc64nbsd_sizeof_struct_fpreg):
11964 Remove variables.
11965 (fetch_core_registers): Remove function.
11966 (sparc64nbsd_core_fns): Remove variable.
11967 (sparc64nbsd_supply_gregset, sparc64nbsd_supply_fpregset): New
11968 functions.
11969 (sparc64nbsd_init_abi): Initialize TDEP->gregset,
11970 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
11971 (_initialize_sparc64nbsd_tdep): Remove call to add_core_fns.
11972
11973 * sparc-tdep.c (sparc32_extract_struct_value_address): Rename from
11974 sparc_extract_struct_value_address.
11975 (sparc32_gdbarch_init): Set extract_struct_value_address.
11976 * sparc64-tdep.c (sparc64_extract_struct_value_address): New
11977 function.
11978 (sparc64_init_abi): Set extract_struct_value_address. Don't set
11979 return_value_on_stack.
11980
11981 * NEWS: Mention that %cs and %ss have been added to the AMD64
11982 configurations
11983
11984 * frame.c: Update copyright year.
11985 (get_prev_frame): Improve comment.
11986
11987 * sparc64fbsd-tdep.c: Include "regset.h".
11988 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
11989 Remove variables.
11990 (fetch_core_registers): Remove function.
11991 (sparc64fbsd_core_fns): Remove variable.
11992 (sparc64fbsd_supply_gregset, sparc64fbsd_supply_fpregset): New
11993 functions.
11994 (sparc64fbsd_init_abi): Initialize TDEP->gregset,
11995 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
11996 (_initialize_sparc64fbsd_tdep): Remove call to add_core_fns.
11997
11998 * sparcnbsd-tdep.c: Include "regset.h".
11999 (fetch_core_registers): Remove function.
12000 (sparcnbsd_core_fns, sparcnbsd_elfcore_fns): Remove varaibles.
12001 (sparc32nbsd_supply_gregset, sparc32nbsd_supply_fpregset): New
12002 functions.
12003 (sparc32nbsd_init_abi): Initialize TDEP->gregset and
12004 TDEP->fpregset.
12005 (_initialize_sparcnbsd_tdep): Remove calls to add_core_fns.
12006
12007 * sparc-tdep.h (struct regset): Provide opaque declaration.
12008 (struct gdbarch_tdep): Add gregset, sizeof_gregset,
12009 fpregset and sizeof_fpregset members.
12010 * sparc-tdep.c (struct regset): Provide opaque declaration.
12011 (sparc_regset_from_core_section): New function.
12012 (sparc32_gdbarch_init): Initialize TDEP->gregset,
12013 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_fpregset.
12014 Set regset_from_core_section when appropriate.
12015
12016 2004-01-10 Mark Kettenis <kettenis@gnu.org>
12017
12018 * x86-64-tdep.c (amd64_non_pod_p): New function.
12019 (amd64_classify_aggregate): Return class memory for non-POD
12020 C++ structure types.
12021
12022 * x86-64-tdep.c (amd64_push_arguments): Add struct_return
12023 argument. Use it to reserve a register if necessary.
12024 (amd64_push_dummy_call): Pass STRUCT_RETURN in call to
12025 amd64_push_arguments.
12026
12027 * x86-64-tdep.c (amd64_classify_aggregate): Ignore static fields.
12028
12029 * x86-64-tdep.c (amd64_register_info): Add %cs and %ss. Adjust
12030 register numbers in comments.
12031 * x86-64-tdep.h: Update copyright year.
12032 (X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM, X86_64_XMM1_REGNUM):
12033 Adjust for addition of %cs and %ss.
12034 * amd64fbsd-nat.c: Update copyright year.
12035 (reg_offset): Add register offsets for %cs and %ss.
12036 * amd64fbsd-tdep.c: Update copyright year.
12037 (amd64fbsd_r_reg_offset): Add register offsets for %cs and %ss.
12038 (amd64fbsd_sc_reg_offset): Likewise.
12039 * x86-64-linux-nat.c: Update copyright year.
12040 (x86_64_linux_gregset64_reg_offset): Add register offsets for %cs
12041 and %ss.
12042 * amd64nbsd-nat.c: Update copyright year.
12043 (amd64nbsd32_r_reg_offset): Add register offsets for %cs and %ss.
12044 * amd64nbsd-tdep.c: Update copyright year.
12045 (amd64nbsd_r_reg_offset): Add register offsets for %cs and %ss.
12046 * x86-64-linux-tdep.c: Update copyright year.
12047 (user_to_gdb_regmap): Add mapping for %cs and %ss.
12048 (x86_64_linux_sc_reg_offset): Adjust for addition of %cs and %ss.
12049 * regformats/reg-x86-64.dat: Add %cs and %ss.
12050
12051 * blockframe.c (inside_entry_func): Reformat. Introduce new local
12052 variables to prevent long lines. Update comments to reflect
12053 reality.
12054
12055 2004-01-09 David Carlton <carlton@kealia.com>
12056
12057 Checked in by Elena Zannoni <ezannoni@redhat.com>.
12058 * dwarf2read.c (read_namespace): Pull out name-generating code
12059 into namespace_name. Rename previous_namespace to previous_prefix
12060 and processing_current_namespace to processing_current_prefix..
12061 (namespace_name): New function.
12062 (add_partial_symbol): Substitute uses of pdi->name with
12063 actual_name.
12064 * cp-support.h: Rename processing_current_namespace to
12065 processing_current_prefix.
12066 Update copyright year.
12067 * cp-namespace.c: Rename processing_current_namespace to
12068 processing_current_prefix.
12069 Update copyright year.
12070
12071 2004-01-09 Andrew Cagney <cagney@redhat.com>
12072
12073 * jv-valprint.c, ser-unix.c: Add missing copyright years.
12074
12075 2004-01-09 Mark Kettenis <kettenis@gnu.org>
12076
12077 * dbxread.c (read_dbx_symtab): Ignore N_PATCH stabs instead of
12078 complaining.
12079 (process_one_symbol): Deal with N_PATCH stabs.
12080
12081 2004-01-09 Elena Zannoni <ezannoni@redhat.com>
12082
12083 * dwarf2read.c (read_array_type): Discard FORTRAN_HACK macro and
12084 ifdeffed code.
12085 Update copyright year.
12086
12087 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
12088
12089 * config/pa/tm-hppa.h: Update extern declarations for
12090 hppa32_hpux_frame_saved_pc_in_sigtramp,
12091 hppa32_hpux_frame_base_before_sigtramp, and
12092 hppa32_hpux_frame_find_saved_regs_in_sigtramp.
12093
12094 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
12095
12096 * config/pa/tm-hppah.h: Update copyright years.
12097
12098 2004-01-08 Andrew Cagney <cagney@redhat.com>
12099
12100 * mips-tdep.c (mips_n32n64_reg_struct_has_addr): Delete function.
12101 (mips_o32_reg_struct_has_addr): Delete function.
12102 (mips_gdbarch_init): Update.
12103 (mips_extract_struct_value_address): Delete function.
12104
12105 2004-01-08 David Mosberger <davidm@hpl.hp.com>
12106
12107 * ia64-linux-tdep.c: Update GATE_AREA_END value to reflect
12108 reality.
12109
12110 2004-01-07 Andrew Cagney <cagney@redhat.com>
12111
12112 * mips-tdep.c (mips_gdbarch_init): Set elf_flags to the previous
12113 architecture's elf flags (when available).
12114
12115 * mips-tdep.c (mips_gdbarch_init): Move code determining the MIPS
12116 FPU to the start, check the MIPS FPU when looking for an old
12117 architecture.
12118 (set_mipsfpu_single_command): Update the architecture.
12119 (set_mipsfpu_double_command, set_mipsfpu_none_command): Ditto.
12120
12121 * mips-tdep.c (MIPS_DEFAULT_MASK_ADDRESS_P): Delete macro.
12122 (mips_mask_address_p): Add "tdep" parameter.
12123 (show_mask_address, mips_addr_bits_remove): Update.
12124 (mips_dump_tdep): Update.
12125 (MIPS_DEFAULT_STACK_ARGSIZE): Delete macro.
12126 (MIPS_STACK_ARGSIZE): Delete macro.
12127 (mips_stack_argsize, mips_eabi_push_dummy_call): Update.
12128 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call): Update.
12129 (mips_o64_push_dummy_call, mips_o32_return_value): Update.
12130 (mips_dump_tdep): Update.
12131 (MIPS_SAVED_REGSIZE): Delete macro.
12132 (MIPS_DEFAULT_SAVED_REGSIZE): Delete macro.
12133 (mips_saved_regsize, mips_eabi_use_struct_convention): Update.
12134 (mips_eabi_reg_struct_has_addr, mips_find_saved_regs): Update.
12135 (mips_frame_saved_pc, mips16_heuristic_proc_desc): Update.
12136 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call): Update.
12137 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update.
12138 (mips_pop_frame, return_value_location): Update.
12139 (mips_n32n64_return_value, mips_dump_tdep): Update.
12140
12141 * mips-tdep.c (mips_gdbarch_init): Clean up code selecting the
12142 MIPS ABI.
12143
12144 * mips-tdep.c: Update copyright.
12145 (mips_gdbarch_init): Merge two code blocks handling the register
12146 name and number layout.
12147
12148 2004-01-02 Pawel Ostrowski <pasza@zodiac.mimuw.edu.pl>
12149
12150 * tracepoint.c (validate_actionline): Fix segv at EOF
12151
12152 2004-01-07 Michael Chastain <mec.gnu@mindspring.com>
12153
12154 * hpread.c (hpread_read_struct_type): Call SET_FIELD_PHYSNAME
12155 properly for static fields.
12156
12157 2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
12158 Jason Molenda <jmolenda@apple.com>
12159
12160 * disasm.c: Update copyright to include 2004.
12161 (do_mixed_source_and_assembly): For uiout asm list
12162 and tuple cleanups, initialize to null_cleanup instead of
12163 NULL and do so prior to loop. Only reset when we close off
12164 the tuple/list. Move check for whether to close off the
12165 asm tuple/list to after dump_insns call where it will be run
12166 on each loop iteration.
12167
12168 2004-01-05 Andrew Cagney <cagney@redhat.com>
12169
12170 * ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
12171 should be a switch case and not a label.
12172 * mips-tdep.c (mips32_next_pc): Delete unused labels
12173 "greater_equal_branch" and "less_zero_branch".
12174 * jv-valprint.c (java_print_value_fields): Delete unused label
12175 "flush_it".
12176
12177 * target.c (unpush_target): Only close a target that is in the
12178 target stack.
12179
12180 2004-01-05 Mark Kettenis <kettenis@gnu.org>
12181
12182 * sparc-tdep.c (sparc_extract_struct_value_address): Get the
12183 address from [sp + 64] instead of %o2.
12184
12185 * frame.c (get_prev_frame): Don't try to unwind the PC. This
12186 fixes PR backtrace/1476.
12187
12188 2004-01-05 Andrew Cagney <cagney@redhat.com>
12189
12190 * libunwind-frame.h (struct frame_id): Add opaque declaration,
12191 move to start of file.
12192 * i386-tdep.h (struct regcache): Add opaque declaration.
12193 * config/ia64/nm-linux.h (struct target_ops): Add opaque
12194 declaration.
12195 * ia64-tdep.c (ia64_find_proc_info_x): Do not use __FUNCTION__.
12196 (ia64_gdbarch_init): Use "GNU/Linux" in comment.
12197 * win32-nat.c (fake_create_process): Use ISO C style definition.
12198 * stabsread.c (define_symbol): Delete #ifndef
12199 DEPRECATED_USE_REGISTER_NOT_ARG wrapper around
12200 stabs_argument_has_addr call, macro never defined.
12201
12202 2004-01-04 Michael Chastain <mec.gnu@mindspring.com>
12203
12204 * op50-rom.c: Delete.
12205 * w89k-rom.c: Delete.
12206 * Makefile.in: Remove references.
12207
12208 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12209
12210 * x86-64-tdep.c: Update copyright year.
12211 (struct amd64_register_info): Rename from x86_64_register_info.
12212 (amd64_register_info): Rename from x86_64_register_info.
12213 (AMD64_NUM_REGS): Rename from X86_64_NUM_REGS.
12214 (amd64_register_name): Rename from x86_64_register_name.
12215 (amd64_register_type): Rename from x86_64_register_type.
12216 (amd64_dwarf_regmap): Rename from x86_64_dwarf_regmap.
12217 (amd64_dwarf_regmap_len): Rename from x86_64_dwarf_regmap_len.
12218 (amd64_dwarf_reg_to_regnum): Rename from
12219 x86_64_dwarf_reg_to_regnum.
12220 (amd64_convert_register_p): Rename from x86_64_convert_register_p.
12221 (amd64_push_dummy_call): Rename from x86_64_push_dummy_call.
12222 (AMD64_NUM_SAVED_REGS): Rename from X86_64_NUM_SAVED_REGS.
12223 (struct amd64_frame_cache): Renamed from x86_64_frame_cache.
12224 (amd64_alloc_frame_cache): Renamed from x86_64_alloc_frame_cache.
12225 (amd64_analyze_prologue): Rename from x86_64_analyze_prologue.
12226 (amd64_skip_prologue): Rename from x86_64_skip_prologue.
12227 (amd64_frame_cache): Rename from x86_64_frame_cache.
12228 (amd64_frame_this_id): Rename from x86_64_frame_this_id.
12229 (amd64_frame_prev_register): Rename from
12230 x86_64_frame_prev_register.
12231 (amd64_frame_unwind): Rename from x86_64_frame_unwind.
12232 (amd64_frame_sniffer): Rename from x86_64_frame_sniffer.
12233 (amd64_sigtramp_frame_cache): Rename from
12234 x86_64_sigtramp_frame_cache.
12235 (amd64_sigtramp_frame_prev_register): Rename from
12236 x86_64_sigtramp_frame_prev_register.
12237 (amd64_sigtramp_frame_unwind): Rename from
12238 x86_64_sigtramp_frame_unwind.
12239 (amd64_sigtramp_frame_sniffer): Rename from
12240 x86_64_sigtramp_frame_sniffer.
12241 (amd64_frame_base_address): Rename from x86_64_frame_base_address.
12242 (amd64_frame_base): Rename from x86_64_frame_base.
12243 (amd64_unwind_dummy_id): Rename from x86_64_unwind_dummy_id.
12244 (amd64_frame_align): Rename from x86_64_frame_align.
12245 (amd64_supply_fpregset): Rename from x86_64_supply_fpregset.
12246 (amd64_regset_from_core_section): Rename from
12247 x86_64_regset_from_core_section.
12248 (x86_64_init_abi): Update comments.
12249
12250 2004-01-04 Nick Roberts <nick@nick.uklinux.net>
12251
12252 * MAINTAINERS (write after approval): Add myself.
12253
12254 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12255
12256 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
12257 `float' arguments.
12258
12259 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12260
12261 * sparc64-tdep.c (sparc64_store_floating_fields): Update comment
12262 such that it mentions a specific version of GCC that exhibits this
12263 bug.
12264
12265 2004-01-03 Mark Kettenis <kettenis@gnu.org>
12266
12267 * sparc64-tdep.c (sparc64_store_floating_fields): If TYPE is a
12268 structure that has a single `float' member, store it in %f1 in
12269 addition to %f0.
12270
12271 * sparc-sol2-nat.c: Add missing '\'.
12272
12273 * sparc-tdep.c (sparc32_return_value): New function.
12274 (sparc32_use_struct_convention, sparc32_return_value_on_stack):
12275 Remove functions.
12276 (sparc32_gdbarch_init): Set return_value, don't set
12277 extract_return_value, store_return_value, use_struct_convention
12278 and return_value_on_stack.
12279
12280 * sparc-sol2-nat.c: Add missing ')'.
12281
12282 2004-01-03 J. Brobecker <brobecker@gnat.com>
12283
12284 * infrun.c (handle_step_into_function): New function.
12285 (handle_inferior_event): Extract out some code into the new
12286 function above.
12287
12288 2004-01-03 J. Brobecker <brobecker@gnat.com>
12289
12290 * infrun.c (handle_inferior_event): Move the declaration of
12291 real_stop_pc inside the if blocks where it is used.
12292
12293 2004-01-03 Mark Kettenis <kettenis@gnu.org>
12294
12295 * sparc64-tdep.c (sparc64_16_byte_align_p)
12296 (sparc64_store_floating_fields, sparc64_store_floating_fields):
12297 Use check_typedef to get subtypes of structures and unions.
12298 (sparc64_store_return_value): Fix calculation of the appropriate
12299 offset into VALBUF when storing a structure or union.
12300 (sparc64_return_value): New function.
12301 (sparc64_use_struct_convention): Remove function.
12302 (sparc64_init_abi): Set return_value, don't set
12303 extract_return_value, store_return_value and
12304 use_struct_convention.
12305
12306 2004-01-03 Eli Zaretskii <eliz@elta.co.il>
12307
12308 * config/djgpp/fnchange.lst: Add lines for COPYING.LIBGLOSS,
12309 bfd/doc/ChangeLog-9103, bfd/elf32-m68hc1x.c,
12310 gdb/config/alpha/xm-alphaosf.h,
12311 gdb/config/powerpc/tm-ppcle-eabi.h,
12312 gdb/config/rs6000/tm-rs6000-aix4.h, gdb/gdbtk/ChangeLog-2001,
12313 gdb/gdbtk/ChangeLog-2002, gdb/gdbtk/ChangeLog-2003,
12314 gdb/gdbtk/plugins/intel-pentium/intel-pentium.tcl.in,
12315 gdb/gdbtk/plugins/rhabout/rhabout.tcl.in, gdb/i386-linux-nat.c,
12316 gdb/ia64-aix-nat.c, gdb/ia64-aix-tdep.c, gdb/ia64-linux-nat.c,
12317 gdb/ia64-linux-nat.c, gdb/ppc-linux-tdep.c, gdb/ppc-linux-nat.c,
12318 gdb/sparc64nbsd-nat.c, gdb/sparc64nbsd-tdep.c,
12319 gdb/sparc64-linux-nat.c, gdb/sparc64-linux-tdep.c,
12320 gdb/sparc64-nat.c, gdb/sparc64-tdep.c, gdb/sparc64-sol2-tdep.c,
12321 gdb/sparc-sol2-nat.c, gdb/sparc-sol2-tdep.c,
12322 gdb/testsuite/gdb.gdbtk/, gdb/testsuite/gdb.mi/mi-var-child.exp,
12323 nclude/ChangeLog-9103, include/coff/ChangeLog-9103,
12324 include/elf/ChangeLog-9103, include/opcode/ChangeLog-9103,
12325 opcodes/ChangeLog-0001, opcodes/ChangeLog-0203,
12326 opcodes/openrisc-dis.c, opcodes/openrisc-desc.h,
12327 sim/frv/profile-fr550.c, sim/frv/profile-fr550.h,
12328 sim/sh64/sem-compact-switch.c, sim/sh64/sem-media-switch.c,
12329 sim/testsuite/sim/sh64/compact/ldsl-mach.cgs,
12330 sim/testsuite/sim/sh64/compact/ldsl-macl.cgs,
12331 sim/testsuite/sim/sh64/compact/stsl-mach.cgs, and
12332 sim/testsuite/sim/sh64/compact/stsl-macl.cgs.
12333 Remove lines for .cvsignore files.
12334
12335 2004-01-03 J. Brobecker <brobecker@gnat.com>
12336
12337 * infrun.c: Back out the previous change.
12338
12339 2004-01-03 Mark Kettenis <kettenis@gnu.org>
12340
12341 * NEWS: Mention revised SPARC target. Add sparc-*-lynxos* and
12342 sparc-*-sunos4* to the list of REMOVED configurations.
12343
12344 * configure.tgt: Add back sparc-*-vxworks*.
12345 * remote-vxsparc.c: Remove all includes except for "defs.h",
12346 "regcache.h", "vx-share/ptrace.h" and "vx-share/regPacket.h".
12347 Include "sparc-tdep.h".
12348 (SPARC_R_G1): New define.
12349 (vxsparc_gregset): New variable.
12350 (ext_format_sparc): Remove extern declaration.
12351 (vx_read_register): Rewrite to use sparc32_supply_gregset and
12352 sparc32_supply_fpregset.
12353 (vx_write_register): Rewrite to use sparc32_collect_gregset,
12354 sparc_collect_rwindow and sparc32_collect_fpregset.
12355 * config/sparc/tm-vxworks.h: New file, based on recently removed
12356 tm-vxsparc.h.
12357 * config/sparc/vxworks.mt: New file, based on recently removed
12358 vxworks.mt.
12359
12360 2004-01-03 J. Brobecker <brobecker@gnat.com>
12361
12362 * infrun.c (handle_step_into_function): New function.
12363 (handle_inferior_event): Extract out some code into the new
12364 function above.
12365
12366 2004-01-02 Mark Kettenis <kettenis@gnu.org>
12367
12368 * Makefile.in (ALLDEPFILES): Remove sparc-linux-nat.c and
12369 sparcl-tdep.c. Add sparc-linux-tdep.c, sparc-sol2-nat.c,
12370 sparc-sol2-tdep.c, sparc-sol2-nat.c, sparc-sol2-tdep.c,
12371 sparc64-linux-nat.c, sparc64-linux-tdep.c, sparc64-nat.c,
12372 sparc64-sol2-tdep.c, sparc64-tdep.c, sparc64fbsd-nat.c,
12373 sparc64fbsd-tdep.c, sparcnbsd-nat.c, sparcnbsd-tdep.c.
12374 (sparc_nat_h): New variable.
12375 (sparcbsd_nat_h, sparcnbsd_tdep_h): Remove variables.
12376 (tm-sun4os4.h): Remove dependency.
12377 (sparcbsd-nat.o, sparc-linux-nat.o): Remove dependencies.
12378 (sparc64fbsd-nat.o, sparc64fbsd-tdep.o, sparc64nbsd-nat.o,
12379 sparc64-tdep.o, sparc-nat.o, sparcnbsd-nat.o, sparcnbsd-tdep.o,
12380 sparc-tdep.o): Update dependencies.
12381 (sparc-linux-tdep.o, sparc-sol2-nat.o, sparc-sol2-tdep.o,
12382 sparc64-linux-nat.o, sparc64-linux-tdep.o, sparc64-nat.o,
12383 sparc64-sol2-tdep.o, sparc64-tdep.o, sparc64nbsd-tdep.o): New
12384 dependencies.
12385 * configure.host: Remove existing sparc-*-lynxos*,
12386 sparc-*-solaris*, sparc-*-sunos4*, sparc-*-sunos5*, sparc-*-*,
12387 ultrasparc-*-freebsd, sparcv9-*-freebsd, sparc64-*-linux*,
12388 sparcv9-*-* and sparc64-*-* triplets. Add new sparc64-*-linux*,
12389 sparc-*-solaris2*, sparcv9-*-solaris2* and sparc64-*-solaris2*
12390 triplets.
12391 * configure.tgt: Remove exitsing sparc-*-aout*, sparc-*-coff*,
12392 sparc-*-elf*, sparc*-lynxos*, sparc-*-solars2*, sparc-*-sunos4*,
12393 sparc-*-sunos5*, sparc-*-vxworks*, sparc64-*linux*, sparc64-*-*,
12394 sparcv9-*-* and commented out sparc64-*-solars2* triplets. Add
12395 new sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*,
12396 sparc64-*-linux, sparc-*-solaris2*, sparcv9-*-solaris*,
12397 sparc64-*-solaris2* and sparc64-*-* triplets.
12398 * sparc64-tdep.c: Update copyright year. Include "inferior.h",
12399 "symtab.h" and "objfiles.h".
12400 (BIAS): Remove define.
12401 (X_OP, X_RD, X_A, X_COND, X_OP2, X_IMM22, X_OP3, X_I, X_DISP22)
12402 (X_DISP19): Remove macros.
12403 (sparc_fetch_instruction): Remove function.
12404 (struct gdbarch_tdep): Remove definition.
12405 (SPARC64_NUM_REGS, SPARC64_NUM_PSEUDO_REGS): Use ARRAY_SIZE.
12406 (sparc_breakpoint_from_pc): Remove function.
12407 (struct sparc64_frame_cache): Remove definition.
12408 (sparc64_alloc_frame_cache, sparc64_analyze_prologue,
12409 sparc64_unwind_pc): Remove functions.
12410 (sparc64_skip_prologue): Use `struct sparc_frame_cache' instead of
12411 `struct sparc64_frame_cache. Call sparc_analyze_prologue instead
12412 of sparc64_analyze_prologue. Mark constant as ULL instead of UL.
12413 (sparc64_frame_cache): Change return type to `struct
12414 sparc_frame_cache *'. Simply call sparc_frame_cache.
12415 (sparc64_frame_this_id, sparc64_frame_prev_register,
12416 sparc64_frame_base_address): Use `struct sparc_frame_cache'
12417 instead of `struct sparc64_frame_cache.
12418 (sparc_unwind_dummy_id, sparc_extract_struct_value_address,
12419 sparc_analyze_control_transfer, sparc_software_single_step,
12420 sparc64_gdbarch_init, sparc_supply_rwindow, sparc_fill_rwindow,
12421 _initialize_sparc64_tdep): Remove functions.
12422 (TSTATE_CWP, TSTATE_ICC, TSTATE_XCC): New macros.
12423 (PSR_S, PSR_ICC, PSR_VERS, PSR_IMPL, PSR_V8PLUS, PSR_XCC): New
12424 macros.
12425 (sparc64_supply_gregset, sparc64_collect_gregset,
12426 sparc64_supply_fpregset, sparc64_collect_fpregset): New functions.
12427 (sparc64_init_abi): New function.
12428 * sparc64-tdep.h: Update copyright year. Fix typo in multiple
12429 inclusion guard. Include "sparc-tdep.h".
12430 (BIAS): Define.
12431 (r_tstate_offset, r_fprs_offset): New defines.
12432 (enum sparc_regnum): Remove defenition.
12433 (enum sparc64_regnum): Reformat.
12434 (sparc_supply_rwindow, sparc_fill_rwindow): Remove prototypes.
12435 (sparc64_init_abi, sparc64_supply_gregset,
12436 sparc64_collect_gregset, sparc64_supply_fpregset,
12437 sparc64_collect_fpregset): New prototypes.
12438 (sparc64_sol2_gregset, sparc64nbsd_gregset, sparc64fbsd_gregset):
12439 Add extern declarations.
12440 (sparc64_sol2_init_abi): New prototype.
12441 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
12442 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
12443 prototypes.
12444 * sparc64fbsd-nat.c: Include "sparc-nat.h", don't include
12445 "sparnbsd-nat.h".
12446 (sparc64fbsd_reg_supplies_p, sparc64fbsd_fpreg_supplies_p): Remove
12447 functions.
12448 (_initialize_sparc64fbsd_nat): Remove initialization of
12449 sparcbsd_supply_reg, sparcbsd_fill_reg, sparcbsd_supply_fpreg,
12450 sparcbsd_fill_fpreg, sparcbsd_reg_supplies_p,
12451 sparcbsd_fpreg_supplies_p. Initialize sparc_gregset.
12452 * sparc64fbsd-tdep.c: Update copyright year. Include "frame.h",
12453 "frame-unwind.h", "trad-frame.h" and "gdb_assert.h".
12454 (sparc64fbsd_r_global_offset, sparc64fbsd_r_out_offset)
12455 (sparc64fbsd_r_fprs_offset, sparc64fbsd_r_tnpc_offset)
12456 (sparc64fbsd_r_tpc_offset, sparc64fbsd_r_tstate_offset)
12457 (sparc64fbsd_r_y_offset): Remove variables.
12458 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
12459 Make static and const.
12460 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
12461 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
12462 functions.
12463 (sparc64fbsd_gregset): New variable.
12464 (fetch_core_registers): Replace calls to sparc64fbsd_supply_reg
12465 and sparc64fbsd_supply_fpreg with calls to sparc64_supply_gregset
12466 and sparc64_supply_fpregset.
12467 (sparc64fbsd_pc_in_sigtramp, sparc64fbsd_sigtramp_frame_cache)
12468 (sparc64fbsd_sigtramp_frame_this_id)
12469 (sparc64fbsd_sigtramp_frame_prev_register): New functions.
12470 (sparc64fbsd_sigtramp_frame_unwind): New variable.
12471 (sparc64fbsd_sigtramp_frame_sniffer): New function.
12472 (sparc64fbsd_init_abi): Set pc_in_sigtramp, append
12473 sparc64fbsd_sigtramp_frame_sniffer. Call sparc64_init_abi.
12474 * sparcnbsd-tdep.c: Update copyright year. Include
12475 "floatformat.h", "frame.h", "frame-unwind.h", "symtab.h",
12476 "trad-frame.h" and "gdb_assert.h", don't include "target.h",
12477 "value.h" and "sparcnbsd-tdep.h".
12478 (REG32_OFFSET_PSR, REG32_OFFSET_PC, REG32_OFFSET_NPC)
12479 (REG32_OFFSET_Y, REG32_OFFSET_GLOBAL, REG32_OFFSET_OUT)
12480 (REG64_OFFSET_TSTATE, REG64_OFFSET_PC, REG64_OFFSET_NPC)
12481 (REG64_OFFSET_Y, REG64_OFFSET_GLOBAL, REG64_OFFSET_OUT): Remove
12482 defines.
12483 (sparcnbsd_gregset): New variable.
12484 (sparcnbsd_supply_reg32, sparcnbsd_supply_reg64)
12485 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64)
12486 (sparcnbsd_supply_fpreg32, sparcnbsd_supply_fpreg64)
12487 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64): Remove functions.
12488 (sparc32nbsd_sigtramp_start, sparc32nbsd_sigtramp_end): New
12489 variables.
12490 (sparc32nbsd_pc_in_sigtramp, sparc32nbsd_sigcontext_frame_cache)
12491 (sparc32nbsd_sigcontext_frame_this_id)
12492 (sparc32nbsd_sigcontext_frame_prev_register): New functions.
12493 (sparc32nbsd_sigcontext_frame_unwind): New variable.
12494 (sparc32nbsd_sigtramp_frame_sniffer): New function.
12495 (sparcnbsd_get_longjmp_target_32,
12496 sparcnbsd_get_longjmp_target_64): Remove functions.
12497 (sparcnbsd_aout_in_solib_call_trampoline): Rewrite.
12498 (sparcnbsd_init_abi_common, sparcnbsd_init_aout,
12499 sparcnbsd_init_elf): Remove.
12500 (sparcnbsd_init_abi, sparcnbsd_aout_init_abi)
12501 (sparcnbsd_elf_init_abi): New functions.
12502 (_initialize_sparcnbsd_tdep): New prototype.
12503 (_initialize_sparnbsd_tdep): Update.
12504 * config/sparc/fbsd.mh (NATDEPFILES): Remove sparcbsd-nat.o and
12505 corelow.o. Add sparc64-nat.o and sparc-nat.o.
12506 * config/sparc/fbsd.mt (TDEPFILES): Add sparc-tdep.o and corelow.o.
12507 * config/sparc/linux.mh: Update comment.
12508 (XM_FILE, HOST_IPC): Remove variables.
12509 (NATDEPFILES): Add sparc-sol2-nat.o and core-regset.o. Remove
12510 sparc-linux-nat.o.
12511 * config/sparc/linux.mt: Update comment.
12512 (TDEPFILES): Add sparc-sol2-tdep.o and sparc-linux-tdep.o.
12513 * config/sparc/nbsd.mt: Reformat.
12514 * config/sparc/nbsd64.mh: Update comment.
12515 (NATDEPFILES): Add sparc-nat.o.
12516 * config/sparc/nbsd64.mt: Update comment.
12517 (TDEPFILES): Add sparc64-tdep.o and sparc64nbsd-tdep.o.
12518 (TM_FILE): Set to tm-nbsd.h.
12519 * config/sparc/nbsdelf.mh: Update comment.
12520 (NATDEPFILES): Add sparc-nat.o.
12521 (XM_FILE): Delete.
12522 * config/sparc/nbsdaout.mh: Update comment.
12523 (NATDEPFILES): Add sparc-nat.o
12524 (XM_FILE): Delete.
12525 * config/sparc/nm-linux.h: Update copyright year. Don't include
12526 "config/nm-svr4.h" and "solib.h". Add protection against multiple
12527 inclusion.
12528 (KERNEL_U_SIZE): Remove define.
12529 (kernel_u_size): Remove prototype.
12530 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define.
12531 * config/sparc/nm-nbsd.h: Update copyright. Don't include
12532 "regcache.h".
12533 (CHILD_PREPARE_TO_STORE): Remove define.
12534 * config/sparc/nm-nbsdaout.h: Tweak some comments.
12535 * sparc-nat.c, sparc-tdep.c, sparc-tdep.h, sparc64nbsd-nat.c,
12536 sparcnbsd-nat.c: Rewrite files.
12537 * config/sparc/tm-linux.h, config/sparc/tm-nbsd.h: Rewrite files.
12538 * sparc-linux-nat.c, sparcbsd-nat.c, sparcbsd-nat.h,
12539 sparcnbsd-tdep.h: Remove files.
12540 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4os4.h,
12541 config/sparc/nm-sun4sol2.h, config/sparc/sp64.mt,
12542 config/sparc/sp64linux.mt, config/sparc/sp64sol2.mt,
12543 config/sparc/sparc-em.mt, config/sparc/sparclynx.mh,
12544 config/sparc/sparclynx.mt, config/sparc/sun4os4.mh,
12545 config/sparc/sun4os4.mt, config/sparc/sun4sol2.mh,
12546 config/sparc/sun4sol2.mt, config/sparc/tm-sp64.h,
12547 config/sparc/tm-sp64linux.h, config/sparc/tm-sparc.h,
12548 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
12549 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
12550 config/sparc/tm-vxsparc.h, config/sparc/vxsparc.mt,
12551 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h: Remove files.
12552 * sparc-linux-tdep.c, sparc-nat.h, sparc-sol2-nat.c,
12553 sparc-sol2-tdep.c, sparc64-linux-nat.c, sparc64-linux-t dep.c,
12554 sparc64-nat.c, sparc64-sol2-tdep.c, sparc64nbsd-tdep.c: New files.
12555 * config/sparc/linux64.mh, config/sparc/linux64.mt,
12556 config/sparc/nm-sol2.h, config/sparc/sol2-64.mt,
12557 config/sparc/sol2.mh, config/sparc/sol2.mt, config/sparc/sparc.mt,
12558 config/sparc/sparc64.mt, config/sparc/tm-sol2.h: New files.
12559
12560 2004-01-02 Andrew Cagney <cagney@redhat.com>
12561
12562 From 2003-12-18 Kazuhiro Inaoka:
12563 * configure.host: Add m32r-linux target.
12564
12565 2004-01-02 Michael Chastain <mec.gnu@mindspring.com>
12566
12567 * top.c (print_gdb_version): Update year to 2004.
12568
12569 2004-01-02 Mark Mitchell <mark@codesourcery.com>
12570
12571 * MAINTAINERS: Add myself to the write-after-approval category.
12572
12573 2004-01-02 Daniel Jacobowitz <drow@mvista.com>
12574
12575 From Bernardo Innocenti <bernie@develer.com>:
12576 * configure.tgt: Add uClinux target.
12577
12578 2004-01-02 Andrew Cagney <cagney@redhat.com>
12579
12580 * utils.c (do_my_cleanups): Make static, add forward declaration.
12581 * defs.h (do_my_cleanups): Delete declaration.
12582
12583 2004-01-02 Eli Zaretskii <eliz@elta.co.il>
12584
12585 * config/djgpp/fnchange.lst: Add lines for gdb/ChangeLog-2003 and
12586 bfd/ChangeLog-0203.
12587
12588 2004-01-02 Mark Kettenis <kettenis@gnu.org>
12589
12590 * configure.in: Check for <machine/reg.h>. Check for `struct reg'
12591 in <machine/reg.h>.
12592 * configure, config.in: Regenerate.
12593
12594 For older changes see ChangeLog-2003, mi/ChangeLog-1999-2003, and
12595 tui/ChangeLog-1998-2003.
12596 \f
12597 Local Variables:
12598 mode: change-log
12599 left-margin: 8
12600 fill-column: 74
12601 version-control: never
12602 End: