First part of turning on initial Ada support.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2004-10-01 Paul N. Hilfinger <Hilfinger@gnat.com>
2
3 * symfile.c (init_filename_language_table): Add extensions for
4 Ada.
5 * defs.h (enum language): Add language_ada.
6 * gdbtypes.h (TYPE_FLAG_FIXED_INSTANCE): Define.
7 * ada-lang.c: Strip code that is conditionalized out by GNAT_GDB.
8 (add_symbols_from_enclosing_procs): Make a no-op for now.
9 (ada_unqualified_name,add_angle_brackets,function_name_from_pc)
10 (extended_canonical_line_spec, find_sal_from_funcs_and_line)
11 (find_line_in_linetable, find_next_line_in_linetable)
12 (read_all_symtabs, is_plausible_func_for_line)
13 (adjust_pc_past_prologue, error_breakpoint_runtime_sym_not_found)
14 (is_runtime_sym_defined, check_size): Remove declaration.
15 (function_name_from_pc, ada_translate_error_message)
16 (ada_lookup_minimal_symbol): Remove definition.
17 (ada_add_block_symbols): Remove useless label.
18 * ada-lang.h (ada_maybe_exception_partial_symbol): Remove
19 useless declaration.
20 (ada_is_exception_sym): Likewise.
21
22 2004-09-30 Kei Sakamoto <sakamoto.kei@renesas.com>
23
24 Add m32r-linux support.
25 * configure.tgt: Add m32r*-*-linux*.
26 * Makefile.in (ALLDEPFILES): Add m32r-tdep.c, m32r-linux-nat.c
27 and m32r-linux-tdep.c.
28 (m32r-linux-nat.o, m32r-linux-tdep.o): New dependencies.
29 * m32r-tdep.c: Move some definitions to m32r-tdep.h.
30 * config/djgpp/fnchange.lst: Add m32r-linux-nat.c and
31 m32r-linux-tdep.c.
32 * m32r-tdep.h, m32r-linux-nat.c, m32r-linux-tdep.c,
33 config/m32r/linux.mh, config/m32r/linux.mt,
34 config/m32r/nm-linux.h: New files.
35
36 2004-09-30 Joel Brobecker <brobecker@gnat.com>
37
38 * mips-tdep.c (mips32_decode_reg_save): Remove, unused.
39 (mips32_fetch_instruction): Remove, unused.
40
41 2004-09-30 Joel Brobecker <brobecker@gnat.com>
42
43 * mips-tdep.c (mips_insn16_frame_cache): Remove dead code or
44 conditions that will always be true.
45
46 2004-09-30 Mark Kettenis <kettenis@gnu.org>
47
48 * vaxbsd-nat.c: Include "target,h" and "inf-ptrace.h".
49 (vaxbsd_fetch_inferior_registers): Rename from
50 fetch_inferior_registers. Make static.
51 (vaxbsd_store_inferior_registers): Rename from
52 store_inferior_registers. Make static.
53 (_initialize_vaxbsd_nat): Construct and add target vector.
54 * config/vax/nbsdaout.mh (NATDEPFILES): Remove infptrace.o and
55 inftarg.o. Add inf-child.o and inf-ptrace.o.
56 * config/vax/nbsdelf.mh (NATDEPFILES): Remove infptrace.o and
57 inftarg.o. Add inf-child.o and inf-ptrace.o.
58 (NAT_FILE): Remove.
59 * config/vax/obsd.mh (NATDEPFILES): Remove infptrace.o and
60 inftarg.o. Add inf-child.o and inf-ptrace.o.
61 (NAT_FILE): Remove.
62 * Makefile.in (vaxbsd-nat.o): Update dependencies.
63
64 * m88kbsd-nat.c: Include "target.h" and "inf-ptrace.h".
65 (m88kbsd_fetch_inferior_registers): Rename from
66 fetch_inferior_registers. Make static.
67 (m88kbsd_store_inferior_registers): Rename from
68 store_inferior_registers. Make static.
69 (_initialize_m88kbsd_nat): New prototype and function.
70 * config/m88k/obsd.mh (NATDEPFILES): Remove infptrace.o and
71 inftarg.o. Add inf-child.o and inf-ptrace.o.
72 (NAT_FILE): Remove.
73 * Makefile.in (m88kbsd-nat.o): Update dependencies.
74
75 2004-09-30 Andrew Cagney <cagney@gnu.org>
76
77 * target.c (target_xfer_partial): New function.
78 (target_read_memory_partial, target_write_memory_partial)
79 (default_xfer_partial, target_read_partial, target_write_partial)
80 (xfer_using_stratum): Use.
81 (debug_to_xfer_partial): Delete function.
82 (setup_target_debug): Do not override to_xfer_partial.
83
84 2004-09-30 Mark Kettenis <kettenis@chello.nl>
85
86 * fork-child.c: Update copyright year. Fix coding style.
87
88 2004-09-29 Mark Kettenis <kettenis@gnu.org>
89
90 * defs.h (msavestring, mstrsave): Remove prototypes.
91 * utils.c (msavestring, mstrsave): Remove functions.
92 * objfiles.c (allocate_objfile): Use xstrdup instead of mstrsave.
93 * solib-sunos.c (allocate_rt_common_objfile): Use xstrdup instead
94 of mstrsave.
95 * source.c (find_and_open_source): Use xstrdup instead of
96 mstrsave.
97
98 2004-09-30 Andrew Cagney <cagney@gnu.org>
99
100 * inf-ptrace.c (inf_ptrace_target): Do not set to_xfer_memory.
101 (inf_ptrace_xfer_memory): Delete.
102 * target.c (target_xfer_partial_p, xfer_using_stratum): New.
103 (target_read_memory, target_write_memory): Use xfer_using_stratum
104 when target_xfer_partial_p.
105 (debug_target): Move to start of file.
106 (target_read_memory_partial, target_write_memory_partial): Use
107 to_xfer_partial when target_xfer_partial_p.
108
109 * inf-ptrace.c (inf_ptrace_xfer_partial): Replace call to
110 inf_ptrace_xfer_memory with equivalent code.
111 * inftarg.c (child_xfer_partial): When performing a write, pass
112 writebuf to child_xfer_memory.
113
114 * target.c (target_read_string): Use target_read_memory instead of
115 target_xfer_memory.
116
117 2004-09-29 Andrew Cagney <cagney@gnu.org>
118
119 * infptrace.c (kill_inferior): Fix typo, in previous inline. Pass
120 the address of status.
121
122 * infptrace.c (ptrace_wait): Mention problem with HPUX.
123 (kill_inferior): Inline ptrace_wait call.
124 * linux-nat.c (kill_inferior): Inline ptrace_wait call.
125 * inftarg.c (child_wait): Inline ptrace_wait call.
126
127 * target.h (struct target_ops): Delete field to_post_wait.
128 (target_post_wait): Delete macro.
129 (child_post_wait): Delete declaration.
130 * target.c (update_current_target, update_current_target)
131 (debug_to_post_wait, setup_target_debug): Delete functions and
132 references.
133 * infttrace.c (ptrace_wait): Delete call to target_post_wait.
134 * inftarg.c (child_post_wait): Delete.
135 (init_child_ops): Do not set to_post_wait.
136 * infptrace.c (ptrace_wait): Delete call to target_post_wait.
137 * inf-ptrace.c (inf_ptrace_wait): Delete call to target_post_wait.
138 * inf-child.c (inf_child_post_wait): Delete.
139 (inf_child_target): Do not set to_post_wait.
140 * inf-ptrace.c (inf_ptrace_post_wait): Delete.
141 (inf_ptrace_target): Do not set to_post_wait.
142
143 * wince.c (child_ops): Delete.
144 * win32-nat.c (child_ops): Delete.
145
146 * inftarg.c (inftarg_set_find_memory_regions)
147 (inftarg_set_make_corefile_notes): Delete functions.
148 (_initialize_linux_nat): Inline calls.
149
150 * target.h (child_ops): Declare.
151 * inftarg.c (child_ops): Move from here ...
152 * target.c (child_ops): ... to here.
153 * wince.c (child_ops): Delete extern declaration.
154 * win32-nat.c (child_ops): Delete extern declaration.
155 * linux-nat.c (child_ops): Delete extern declaration.
156 * hpux-thread.c (child_ops): Delete extern declaration.
157
158 2004-09-28 Mark Kettenis <kettenis@gnu.org>
159
160 * configure.tgt: Set default OS/ABI for OpenBSD ELF targets.
161
162 2004-09-28 Mark Kettenis <kettenis@gnu.org>
163
164 * configure.in: Only set host_makefile_frag when building a native
165 debugger.
166 * configure: Regenerate.
167
168 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Register OS/ABI
169 for OpenBSD ELF.
170
171 2004-09-28 Andrew Cagney <cagney@gnu.org>
172
173 Problem identified by Paul Hilfinger.
174 * Makefile.in (ada_lex_c): Define.
175 (ada-lex.o): Delete rule.
176
177 * linux-proc.c: Delete file.
178 * Makefile.in: Update.
179 * config/sparc/linux64.mh (NATDEPFILES):
180 * config/sparc/linux.mh (NATDEPFILES): Update.
181 * config/s390/s390.mh (NATDEPFILES): Update.
182 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Update.
183 * config/powerpc/linux.mh (NATDEPFILES): Update.
184 * config/pa/linux.mh (NATDEPFILES): Update.
185 * config/mips/linux.mh (NATDEPFILES): Update.
186 * config/m68k/linux.mh (NATDEPFILES): Update.
187 * config/ia64/linux.mh (NATDEPFILES): Update.
188 * config/i386/linux64.mh (NATDEPFILES): Update.
189 * config/i386/linux.mh (NATDEPFILES): Update.
190 * config/arm/linux.mh (NATDEPFILES): Update.
191 * config/alpha/alpha-linux.mh (NATDEPFILES): Update.
192 * linux-nat.c: Update copyright. Include <sys/param.h>,
193 <sys/procfs.h>, "elf-bfd.h", "gregset.h", <ctype.h>,
194 "gdbthread.h", "gdb_stat.h", <fcntl.h>.
195 (O_LARGEFILE): Possibly define.
196 (_initialize_linux_nat, linux_proc_pending_signals)
197 (add_line_to_sigset, linux_proc_xfer_memory)
198 (linux_nat_info_proc_cmd, linux_nat_make_corefile_notes)
199 (linux_nat_do_registers, linux_nat_corefile_thread_callback)
200 (struct linux_corefile_thread_data)
201 (linux_nat_do_thread_registers, linux_nat_find_memory_regions)
202 (child_pid_to_exec_file): Insert code previously in linux-proc.c.
203
204 2004-09-16 Andrew Cagney <cagney@gnu.org>
205
206 * lin-lwp.c: Delete file.
207 * linux-nat.c: Include "gdb_assert.h", "gdb_string.h", <unistd.h>,
208 <sys/syscall.h>, "gdbthread.h", "gdbcmd.h", "regcache.h".
209 (status_to_str, init_lwp_list, add_lwp, delete_lwp)
210 (find_lwp_pid, iterate_over_lwps, lin_lwp_attach_lwp)
211 (linux_nat_attach, detach_callback, linux_nat_detach)
212 (resume_callback, resume_clear_callback, linux_nat_resume)
213 (kill_lwp, linux_nat_handle_extended, wait_lwp, stop_callback)
214 (stop_wait_callback, linux_nat_has_pending, flush_callback)
215 (status_callback, running_callback, count_events_callback)
216 (select_singlestep_lwp_callback, select_event_lwp_callback)
217 (cancel_breakpoints_callback, select_event_lwp, resumed_callback)
218 (child_wait, stop_and_resume_callback, linux_nat_wait)
219 (kill_callback, kill_wait_callback, linux_nat_kill)
220 (linux_nat_create_inferior, linux_nat_mourn_inferior)
221 (linux_nat_xfer_memory, linux_nat_thread_alive)
222 (linux_nat_pid_to_str, init_linux_nat_ops, sigchld_handler)
223 (_initialize_linux_nat): New functions.
224 * Makefile.in: Update all dependencies.
225 * config/sparc/linux64.mh (NATDEPFILES): Remove lin-lwp.o.
226 * config/sparc/linux.mh (NATDEPFILES): Remove lin-lwp.o.
227 * config/s390/s390.mh (NATDEPFILES): Remove lin-lwp.o.
228 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Remove lin-lwp.o.
229 * config/powerpc/linux.mh (NATDEPFILES): Remove lin-lwp.o.
230 * config/pa/linux.mh (NATDEPFILES): Remove lin-lwp.o.
231 * config/mips/linux.mh (NATDEPFILES): Remove lin-lwp.o.
232 * config/m68k/linux.mh (NATDEPFILES): Remove lin-lwp.o.
233 * config/ia64/linux.mh (NATDEPFILES): Remove lin-lwp.o.
234 * config/i386/linux64.mh (NATDEPFILES): Remove lin-lwp.o.
235 * config/i386/linux.mh (NATDEPFILES): Remove lin-lwp.o.
236 * config/arm/linux.mh (NATDEPFILES): Remove lin-lwp.o.
237 * config/alpha/alpha-linux.mh (NATDEPFILES): Remove lin-lwp.o.
238
239 2004-09-27 Mark Kettenis <kettenis@gnu.org>
240
241 * config/i386/fbsd64.mh, config/i386/nbsd64.mh,
242 config/i386/obsd64.mh (NAT_FILE): Remove variable.
243
244 * configure.in: Don't comment out NATDEPFILES in the generated
245 Makefile if NAT_FILE is unset.
246 * configure: Regenerate.
247
248 2004-09-27 Andrew Cagney <cagney@gnu.org>
249
250 * infrun.c (check_for_old_step_resume_breakpoint): Delete.
251 (insert_step_resume_breakpoint): Delete.
252 (insert_step_resume_breakpoint_at_frame): New function.
253 (insert_step_resume_breakpoint_at_sal): New function.
254 (handle_inferior_event, step_into_function)
255 (insert_step_resume_breakpoint): Simplify by using same.
256
257 * gdb_indent.sh (types): Add caddr_t to list of predefined types.
258
259 2004-09-26 Mark Kettenis <kettenis@gnu.org>
260
261 * fbsd-proc.c: Remove file.
262 * Makefile.in (fbsd-proc.o): Remove dependency.
263
264 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Group target related
265 code together.
266
267 * config/i386/nm-fbsd64.h: Remove file.
268 * config/i386/fbsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
269
270 2004-09-26 Mark Kettenis <kettenis@gnu.org>
271
272 * amd64-nat.h: Update copyright year.
273 (amd64bsd_target): New prototype.
274 * amd64bsd-nat.c: Include "target.h" and "inf-ptrace.h".
275 (amd64bsd_target): New function.
276 (amd64bsd_fetch_inferior_registers): Rename from
277 fetch_inferior_registers. Make static.
278 (amd64bsd_store_inferior_registers): Rename from
279 store_inferior_registers. Make static.
280 * amd64fbsd-nat.c: Include "target.h" and "fbsd-nat.h".
281 (_initialize_amd64fbsd_nat): Construct and add target vector.
282 * amd64nbsd-nat.o: Include "target.h".
283 (_initialize_amd64nbsd_nat): Construct and add target vector.
284 * amd64obsd-nat.c: Include "target.h".
285 (_initialize_amd64obsd_nat): Construct and add target vector.
286 * config/i386/nm-fbsd64.h (CHILD_PID_TO_EXEC_FILE): Remove define.
287 * config/i386/fbsd64.mh (NATDEPFILES): Remove infptrace.o,
288 inftarg.o and fbsd-proc.o. Add inf-child.o, inf-ptrace.o and
289 fbsd-nat.o.
290 * config/i386/nbsd64.mh, config/i386/obsd64.mh (NATDEPFILES):
291 Remove infptrace.o and inftarg.o. Add inf-child.o and
292 inf-ptrace.o.
293 * Makefile.in (amd64bsd-nat.o, amd64fbsd-nat.o, amd64nbsd-nat.o)
294 (amd64obsd-nat.o): Update dependencies.
295
296 2004-09-25 Mark Kettenis <kettenis@gnu.org>
297
298 * config/i386/fbsd.mh (NATDEPFILES): Remove infptrace.o.
299 * config/i386/nbsdaout.mh (NATDEPFILES): Remove infptrace.o.
300 * config/i386/nbsdelf.mh (NATDEPFILES): Remove infptrace.o.
301 * config/i386/obsd.mh (NATDEPFILES): Remove infptrace.o.
302 * config/i386/obsdaout.mh (NATDEPFILES): Remove infptrace.o.
303
304 * inf-ptrace.c (inf_ptrace_attach): Remove redundant parenthesis.
305 Inline attach call.
306 (inf_ptrace_detach): Inline detach call.
307
308 * configure.in: Check for waddstr instead of mvwaddstr when
309 searching for curses library. Check for wborder.
310 * configure, config.in: Regenerate.
311 * tui/tui-wingeneral.c (box_win): Use box if wborder isn't
312 available.
313
314 * inf-ptrace.c (inf_ptrace_xfer_memory): Fix gdb_indent.sh wart.
315
316 2004-09-24 Robert Picco <Robert.Picco@hp.com>
317
318 Committed by Andrew Cagney.
319 * remote.c (set_remote_protocol_p_packet_cmd, remote_protocol_p)
320 (show_remote_protocol_p_packet_cmd): New. Implement 'p' packet.
321 configuration.
322 (fetch_register_using_p): Implement 'p' packet. Based on code by
323 Fernando Nasser.
324 (remote_fetch_registers): Call fetch_register_using_p.
325 (init_all_packet_configs, show_remote_cmd)
326 (_initialize_remote): Add p-packet.
327
328 2004-09-24 Mark Kettenis <kettenis@gnu.org>
329
330 * inf-ptrace.c (inf_ptrace_kill_inferior): Call ptrace directly
331 instead of call_ptrace. Call wait directly instead of
332 ptrace_wait.
333 (inf_ptrace_me): Call ptrace directly instead of call_ptrace.
334 (inf_ptrace_wait): Inline ptrace_wait call.
335
336 2004-09-24 Paul Hilfinger <hilfingr@nile.gnat.com>
337
338 * Makefile.in (.y.c): Revert previous change. ../ylwrap was
339 rolled back instead.
340
341 2004-09-24 Paul Hilfinger <hilfingr@nile.gnat.com>
342
343 * Makefile.in (.y.c): Modify $(YLWRAP) invocation to use
344 the new argument order.
345
346 2004-09-23 Corinna Vinschen <vinschen@redhat.com>
347
348 * MAINTAINERS: Remove "broken" from XStormy16 entry.
349 * xstormy16-tdep.c: Convert XStormy16 target to latest GDB methods.
350 (struct gdbarch_tdep): Remove.
351 (struct xstormy16_frame_cache): New frame cache structure.
352 (xstormy16_register_byte, xstormy16_register_raw_size)
353 (xstormy16_reg_virtual_type, xstormy16_register_type)
354 (xstormy16_push_arguments, xstormy16_push_return_address)
355 (xstormy16_pop_frame, xstormy16_store_struct_return)
356 (xstormy16_store_return_value, xstormy16_extract_struct_value_address)
357 (xstormy16_frame_saved_register, xstormy16_get_saved_register)
358 (xstormy16_scan_prologue, xstormy16_frame_init_saved_regs)
359 (xstormy16_frame_saved_pc, xstormy16_init_extra_frame_info)
360 (xstormy16_frame_chain, xstormy16_frame_chain_valid,
361 (xstormy16_saved_pc_after_call, xstormy16_save_dummy_frame_to): Remove.
362 (xstormy16_use_struct_convention): Drop gcc_p parameter.
363 (xstormy16_extract_return_value, xstormy16_store_return_value):
364 Regcachify. Drop useless struct convention handling.
365 (xstormy16_register_type, xstormy16_return_value)
366 (xstormy16_push_dummy_call, xstormy16_analyze_prologue)
367 (xstormy16_alloc_frame_cache, xstormy16_frame_cache)
368 (xstormy16_frame_prev_register, xstormy16_frame_this_id)
369 (xstormy16_frame_base_address, xstormy16_frame_sniffer)
370 (xstormy16_unwind_sp, xstormy16_unwind_pc)
371 (xstormy16_unwind_dummy_id) : New functions.
372 (xstormy16_skip_prologue): Call xstormy16_analyze_prologue instead
373 of xstormy16_scan_prologue.
374 (xstormy16_frame_unwind): New frame_unwind structure.
375 (xstormy16_frame_base): New frame_base structure.
376 (xstormy16_gdbarch_init): Accomodate all of the above changes.
377 Reshuffle for better readability. Also add dwarf2_frame_sniffer.
378
379 2004-09-22 Mark Kettenis <kettenis@gnu.org>
380
381 * language.c (language_gdbarch_post_init): Fix off-by one error.
382
383 2004-09-21 Daniel Jacobowitz <dan@debian.org>
384
385 * dwarf2read.c (struct dwarf2_per_cu_data): New field type_hash.
386 (struct dwarf2_offset_and_type): New.
387 (set_die_type, reset_die_and_siblings_types, get_die_type)
388 (offset_and_type_hash, offset_and_type_eq): New functions.
389 (read_structure_type, read_enumeration_type, read_array_type)
390 (read_namespace, read_tag_pointer_type, read_tag_ptr_to_member_type)
391 (read_tag_reference_type, read_tag_const_type)
392 (read_tag_volatile_type, read_tag_string_type, read_subroutine_type)
393 (read_typedef, read_base_type, read_subrange_type): Use
394 set_die_type.
395
396 2004-09-20 Daniel Jacobowitz <dan@debian.org>
397
398 * Makefile.in (dwarf2read.o): Update dependencies.
399 * dwarf2read.c: Include "command.h" and "gdbcmd.h".
400 (struct dwarf2_per_objfile): Add all_comp_units, n_comp_units,
401 and read_in_chain.
402 (struct dwarf2_cu): Add read_in_chain, per_cu, last_used,
403 mark, and has_form_ref_addr.
404 (struct dwarf2_per_cu_data): New.
405 (dwarf2_max_cache_age): New.
406 (dwarf2_build_psymtabs_hard): Free cached compilation units
407 after loading. Create and manage the list of compilation units.
408 Remove unnecessary NULL initialization. Fix indentation.
409 (psymtab_to_symtab_1): Initialize all of CU.
410 (dwarf2_read_abbrevs): Set has_form_ref_addr.
411 (find_partial_die): Use dwarf2_find_containing_comp_unit
412 and load_comp_unit.
413 (free_stack_comp_unit): Update comments. Clear the per-cu
414 pointer. Handle aging.
415 (dwarf2_find_containing_comp_unit, free_cached_comp_units)
416 (age_cached_comp_units, free_one_cached_comp_unit)
417 (dwarf2_mark, dwarf2_clear_marks, create_all_comp_units)
418 (load_comp_unit, dwarf2_find_comp_unit, free_one_comp_unit)
419 (set_dwarf2_cmdlist, show_dwarf2_cmdlist, set_dwarf2_cmd)
420 (show_dwarf2_cmd): New.
421 (_initialize_dwarf2_read): Provide "maint set dwarf2 max-cache-age"
422 and "maint show dwarf2 max-cache-age".
423 * gdbcmd.h (maintenance_set_cmdlist, maintenance_show_cmdlist): New
424 externs.
425 * maint.c (maintenance_set_cmdlist, maintenance_show_cmdlist): Make
426 global.
427
428 2004-09-20 Jeff Johnston <jjohnstn@redhat.com>
429
430 * dwarf2read.c (typename_concat): Change prototype to accept obstack
431 and dwarf2_cu struct pointer as arguments. Change function to use
432 obstack if provided and use dwarf2_cu to determine language-specific
433 separator.
434 (partial_die_parent_scope): Change comment to include java. Use
435 new version of typename_concat instead of obconcat.
436 (partial_die_full_name): Use typename_concat.
437 (read_namespace): Ditto.
438 (read_enumeration_type): Use typename_concat instead of obconcat.
439 (new_symbol): Ditto.
440 (add_partial_symbol): Enhance tests for C++ to also test for Java.
441 (guess_structure_name): Ditto.
442 (read_subroutine_type): Ditto.
443 (read_structure_type): Ditto.
444 (is_vtable_name): Add Java support.
445 (determine_class_name): Switch to new typename_concat call.
446 (determine_prefix): Switch to new typename_concat call.
447 * jv-exp.y (FuncStart): New pattern.
448 (MethodInvocation): Add support for simple function calls. Change
449 warning message for other forms of inferior call currently not
450 supported.
451 * valarith.c (value_subscript): Treat an array with upper-bound
452 of -1 as unknown size.
453
454 2004-09-20 Daniel Jacobowitz <dan@debian.org>
455
456 * symtab.c (lookup_partial_symtab): Use psymtab_to_fullname.
457 (lookup_partial_symtab): Use symtab_to_fullname.
458
459 2004-09-19 Jim Blandy <jimb@redhat.com>
460
461 * minsyms.c (lookup_minimal_symbol): Doc fix.
462
463 2004-09-20 Andrew Cagney <cagney@gnu.org>
464
465 * config/nm-lynx.h (DEPRECATED_CHILD_RESUME): Deprecate
466 CHILD_RESUME.
467 * config/i386/nm-linux.h (DEPRECATED_CHILD_RESUME): Ditto.
468 * config/nm-linux.h (DEPRECATED_KILL_INFERIOR): Deprecate
469 KILL_INFERIOR.
470 * infptrace.c: Update.
471
472 2004-09-19 Daniel Jacobowitz <dan@debian.org>
473
474 * symtab.c (output_source_filename): Mark first argument as const.
475 (sources_info): Use symtab_to_fullname and psymtab_to_fullname
476 for "info sources" output.
477
478 2004-09-20 Mark Kettenis <kettenis@gnu.org>
479
480 * config/i386/nm-fbsd.h, config/i386/nm-obsd.h: Don't include
481 <machine/vmparam.h>.
482 (KERNEL_U_ADDR, REGISTER_U_ADDR): Remove defines.
483 (register_u_addr): Remove prototype.
484
485 2004-09-19 Mark Kettenis <kettenis@gnu.org>
486
487 * i386bsd-nat.c: Include "i386bsd-nat.h" and "inf-ptrace.h".
488 (i386bsd_fetch_inferior_registers): Rename from
489 fetch_inferior_registers. Make static.
490 (i386bsd_store_inferior_registers): Rename from
491 store_inferior_registers. Make static.
492 (i386bsd_target): New function.
493 * i386bsd-nat.h: New file.
494 * i386fbsd-nat.c: Include "target.h", "fbsd-nat.h" and
495 "i386bsd-nat.h".
496 (i386fbsd_resume): Rename from child_resume. Make static.
497 (_initialize_i386fbsd_nat): Construct and add target vector.
498 * i386nbsd-nat.c: Include "target.h" and "i386bsd-nat.h".
499 (_initialize_i386nbsd_nat): Construct and add target vector.
500 * config/i386/nm-fbsd.h: (CHILD_RESUME, CHILD_PID_TO_EXEC_FILE):
501 Remove defines.
502 * config/i386/fbsd.mh (NATDEPFILES): Add inf-child.o, inf-ptrace.o
503 and fbsd-nat.o. Remove inftarg.o and fbsd-proc.o.
504 * config/i386/nbsdaout.mh (NATDEPFILES): Add inf-child.o,
505 inf-ptrace.o, i386bsd-nat.o and bsd-kvm.o. Remove inftarg.o.
506 (LOADLIBES): New variable.
507 * config/i386/nbsdelf.mh (NATDEPFILES): Add inf-child.o and
508 inf-ptrace.o. Remove inftarg.o.
509 * config/i386/obsd.mh (NATDEPFILES): Add inf-child.o and
510 inf-ptrace.o. Remove inftarg.o.
511 * config/i386/obsdaout.mh (NATDEPFILES): Add inf-child.o,
512 inf-ptrace.o, i386nbsd-nat.o and bsd-kvm.o. Remove inftarg.o.
513 (LOADLIBES): New variable.
514 * Makefile.in (i386bsd_nat_h): New variable.
515 (i386bsd-nat.o, i386fbsd-nat.o, i386nbsd-nat.o): Update
516 dependencies.
517
518 * sparc64nbsd-tdep.c: Include "objfiles.h".
519 (sparc64nbsd_init_abi): Set in_solib_call_trampoline and
520 skip_trampoline_code. Set solib_svr4_fetch_link_map_offsets to
521 svr4_lp64_fetch_link_map_offsets.
522 * sparc64obsd-tdep.c: Include "objfiles.h". Don't include
523 "nbsd-tdep.h".
524 (sparc64obsd_init_abi): Set in_solib_call_trampoline and
525 skip_trampoline_code. Set solib_svr4_fetch_link_map_offsets to
526 svr4_lp64_fetch_link_map_offsets.
527 * Makefile.in (sparc64nbsd-tdep.o, sparc64obsd-tdep.o): Update
528 dependencies.
529
530 * fbsd-nat.c: New files with cleaned up contents of fbsd-proc.c.
531 * fbsd-nat.h: New file.
532 * Makefile.in (ALLDEPFILES): Add fbsd-nat.c.
533 (fbsd_nat_h): New variable.
534 (fbsd-nat.o): New dependency.
535
536 * config/sparc/nbsd64.mt, config/sparc/obsd.mt,
537 config/sparc/obsd64.mt (DEPRECATED_TM_FILE): Set to solib.h.
538
539 * inf-child.c (inf_child_post_wait): Remove stray whitespace in
540 comment.
541
542 2004-09-18 Paul N. Hilfinger <hilfinger@gnat.com>
543
544 * ada-exp.y (type_int): New function to add layer of abstraction
545 around references to expression types.
546 (type_long): Ditto.
547 (type_long_long): Ditto.
548 (type_float): Ditto.
549 (type_double): Ditto.
550 (type_long_double): Ditto.
551 (type_char): Ditto.
552 (type_system_address): Ditto.
553 (simple_exp): Use type_* functions in place of builtin_*
554 variables.
555 (exp): Ditto.
556 (write_var_from_name): Ditto.
557 (write_object_renaming): Ditto.
558 * ada-lang.c (ada_create_fundamental_type): Remove redundant
559 declaration.
560 (build_ada_types): Remove, replacing with...
561 (ada_language_arch_info): New function to initialize primitive
562 type vector in language_arch_info.
563 (ada_array_length): Remove use of builtin_type_ada_int.
564 (value_pos_atr): Ditto.
565 (ada_evaluate_subexp): Ditto.
566 (builtin_type_ada_int, builtin_type_ada_short, builtin_type_ada_long,
567 builtin_type_ada_long_long, builtin_type_ada_char,
568 builtin_type_ada_float, builtin_type_ada_double,
569 builtin_type_ada_long_double, builtin_type_ada_natural,
570 builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
571 (ada_builtin_types): Remove.
572 (ada_language_defn): Remove entries for la_builtin_type_vector and
573 string_char_type and use ada_language_arch_info.
574 (_initialize_ada_language): Do type-vector initialization along
575 the lines of c-lang.c.
576 (ada_create_fundamental_type): Break up line.
577 (ada_dump_symtab): Remove unused function.
578 (enum ada_primitive_types): Define.
579 * ada-lang.h (builtin_type_ada_int, builtin_type_ada_short,
580 builtin_type_ada_long,builtin_type_ada_long_long,builtin_type_ada_char,
581 builtin_type_ada_float, builtin_type_ada_double,
582 builtin_type_ada_long_double, builtin_type_ada_natural,
583 builtin_type_ada_positive, builtin_type_ada_system_address): Remove.
584 * ada-lex.l: Use type_* functions in place of builtin_* variables.
585 (processInt): Ditto.
586 (processReal): Ditto.
587 (name_lookup): Ditto.
588 * ada-typeprint.c (print_range): Use builtin_type_int, not
589 builtin_type_ada_int.
590
591 2004-09-18 Mark Kettenis <kettenis@gnu.org>
592
593 * i386-tdep.c (i386_register_name): Rename regno to regnum.
594
595 * config/pa/hpux1020.mh (MH_CFLAGS): Remove -D__HP_CURSES.
596 * config/pa/hpux11.mh (MH_CFLAGS): Likewise.
597 * config/pa/hpux11w.mh (MH_CFLAGS): Likewise.
598 * configure.in: Improve checks for curses library by checking for
599 mvwaddstr instead of initscr. Drop HP curses in favour of
600 standard curses on HP-UX.
601 * configure: Regenerated.
602
603 2004-09-18 Paul N. Hilfinger <hilfinger@gnat.com>
604
605 * ada-lang.c: (ada_main_name, ada_value_slice_ptr, ada_value_slice,
606 ada_breakpoint_rewrite, ada_template_to_fixed_record_type_1):
607 Minor formatting changes.
608 (empty_array): Slight rewrite for formatting.
609 (emit_char,parse,ada_language_defn,build_ada_types,
610 ada_is_exception_sym, _initialize_ada_language): Move
611 definitions around.
612 (ada_dump_symtab): Remove unused definition.
613 (ada_maybe_exception_partial_symbol): Remove unused definition.
614
615 2004-09-16 Andrew Cagney <cagney@gnu.org>
616
617 * inf-child.c: Include "gdb_string.h".
618 (inf_child_core_file_to_sym_file): Delete.
619 (inf_child_target): Set to_fetch_registers and to_store_registers.
620 * inf-ptrace.c: Include "gdb_string.h".
621 * Makefile.in: Update all dependencies.
622
623 * Makefile.in (gnu-v3-abi.o): Add explict rule to avoid -Werror
624 problem.
625
626 2004-09-14 Joel Brobecker <brobecker@gnat.com>
627
628 * mips-tdep.c (mips_insn32_frame_cache): Pass frame cache in
629 call to heuristic_proc_desc. Remove code that became redundant
630 as a consequence.
631 (read_next_frame_reg): Remove special case for SP_REGNUM.
632 (set_reg_offset): Fix small typo.
633 (reset_saved_regs): New procedure.
634 (mips32_heuristic_proc_desc): No longer compute a fake
635 procedure descriptor. Compute the full frame cache instead.
636 Some minor comment reformatting.
637
638 2004-09-14 Andrew Cagney <cagney@gnu.org>
639
640 * MAINTAINERS: Add Michael Chastain as the backup gdb.threads
641 maintainer.
642
643 * thread-db.c (thread_db_new_objfile): Assume that there is a
644 child process.
645
646 2004-09-13 Jim Blandy <jimb@redhat.com>
647
648 * valops.c (value_assign): Move 'buffer' to the enclosing block,
649 so that its storage isn't referenced after its lifetime ends.
650
651 * valops.c (value_assign): 'use_buffer' is initialized to zero,
652 and never assigned to. Delete it, and the 'if (use_buffer)'
653 clauses. Delete 'raw_buffer', since it is now unused.
654
655 2004-09-13 Andrew Cagney <cagney@gnu.org>
656
657 * configure.in (frags): Replace TM_FILE with DEPRECATED_TM_FILE.
658 * configure: Re-generate.
659 * nlm/Makefile.in (TAGS): Update.
660 * Makefile.in (TAGS): Update.
661 * config/vax/nbsd.mt (TM_FILE): Update.
662 * config/sparc/vxworks.mt (TM_FILE): Update.
663 * config/sparc/sol2.mt (TM_FILE): Update.
664 * config/sparc/sol2-64.mt (TM_FILE): Update.
665 * config/sparc/obsd64.mt (TM_FILE): Update.
666 * config/sparc/obsd.mt (TM_FILE): Update.
667 * config/sparc/nbsd64.mt (TM_FILE): Update.
668 * config/sparc/nbsd.mt (TM_FILE): Update.
669 * config/sparc/linux64.mt (TM_FILE): Update.
670 * config/sparc/linux.mt (TM_FILE): Update.
671 * config/sparc/fbsd.mt (TM_FILE): Update.
672 * config/sh/wince.mt (TM_FILE): Update.
673 * config/sh/nbsd.mt (TM_FILE): Update.
674 * config/sh/linux.mt (TM_FILE): Update.
675 * config/sh/embed.mt (TM_FILE): Update.
676 * config/s390/s390.mt (TM_FILE): Update.
677 * config/rs6000/rs6000lynx.mt (TM_FILE): Update.
678 * config/rs6000/rs6000.mt (TM_FILE): Update.
679 * config/rs6000/aix4.mt (TM_FILE): Update.
680 * config/powerpc/vxworks.mt (TM_FILE): Update.
681 * config/powerpc/ppc-sim.mt (TM_FILE): Update.
682 * config/powerpc/ppc-eabi.mt (TM_FILE): Update.
683 * config/powerpc/obsd.mt (TM_FILE): Update.
684 * config/powerpc/nbsd.mt (TM_FILE): Update.
685 * config/powerpc/linux.mt (TM_FILE): Update.
686 * config/powerpc/aix.mt (TM_FILE): Update.
687 * config/pa/obsd.mt (TM_FILE): Update.
688 * config/pa/linux.mt (TM_FILE): Update.
689 * config/pa/hppahpux.mt (TM_FILE): Update.
690 * config/pa/hppa64.mt (TM_FILE): Update.
691 * config/pa/hppa.mt (TM_FILE): Update.
692 * config/ns32k/nbsdaout.mt (TM_FILE): Update.
693 * config/mips/wince.mt (TM_FILE): Update.
694 * config/mips/vxmips.mt (TM_FILE): Update.
695 * config/mips/nbsd.mt (TM_FILE): Update.
696 * config/mips/linux.mt (TM_FILE): Update.
697 * config/mips/irix6.mt (TM_FILE): Update.
698 * config/mips/irix5.mt (TM_FILE): Update.
699 * config/mips/embed.mt (TM_FILE): Update.
700 * config/m68k/vxworks68.mt (TM_FILE): Update.
701 * config/m68k/st2000.mt (TM_FILE): Update.
702 * config/m68k/os68k.mt (TM_FILE): Update.
703 * config/m68k/obsd.mt (TM_FILE): Update.
704 * config/m68k/nbsd.mt (TM_FILE): Update.
705 * config/m68k/monitor.mt (TM_FILE): Update.
706 * config/m68k/linux.mt (TM_FILE): Update.
707 * config/m68k/cisco.mt (TM_FILE): Update.
708 * config/ia64/linux.mt (TM_FILE): Update.
709 * config/ia64/aix.mt (TM_FILE): Update.
710 * config/ia64/ia64.mt (TM_FILE): Update.
711 * config/i386/vxworks.mt (TM_FILE): Update.
712 * config/i386/obsd64.mt (TM_FILE): Update.
713 * config/i386/obsd.mt (TM_FILE): Update.
714 * config/i386/nto.mt (TM_FILE): Update.
715 * config/i386/nbsd64.mt (TM_FILE): Update.
716 * config/i386/nbsd.mt (TM_FILE): Update.
717 * config/i386/linux64.mt (TM_FILE): Update.
718 * config/i386/linux.mt (TM_FILE): Update.
719 * config/i386/i386sol2.mt (TM_FILE): Update.
720 * config/i386/i386lynx.mt (TM_FILE): Update.
721 * config/i386/fbsd64.mt (TM_FILE): Update.
722 * config/i386/fbsd.mt (TM_FILE): Update.
723 * config/i386/cygwin.mt (TM_FILE): Update.
724 * config/h8300/h8300.mt (TM_FILE): Update.
725 * config/frv/frv.mt (TM_FILE): Update.
726 * config/cris/cris.mt (TM_FILE): Update.
727 * config/arm/wince.mt (TM_FILE): Update.
728 * config/arm/nbsd.mt (TM_FILE): Update.
729 * config/arm/linux.mt (TM_FILE): Update.
730 * config/arm/embed.mt (TM_FILE): Update.
731 * config/alpha/nbsd.mt (TM_FILE): Update.
732 * config/alpha/fbsd.mt (TM_FILE): Update.
733 * config/alpha/alpha.mt (TM_FILE): Update.
734 * config/alpha/alpha-osf1.mt (TM_FILE): Update.
735 * config/alpha/alpha-linux.mt (TM_FILE): Update.
736
737 Eliminate event_loop_p, always has the value 1.
738 * defs.h (event_loop_p): Delete macro.
739 * breakpoint.c (until_break_command): Simplify.
740 * utils.c (prompt_for_continue): Simplify.
741 * tracepoint.c (read_actions): Simplify.
742 * top.c (throw_exception, execute_command, gdb_readline_wrapper)
743 (gdb_rl_operate_and_get_next, command_line_input, get_prompt)
744 (set_prompt, init_main): Simplify.
745 (init_signals, disconnect): Delete, unused.
746 * remote.c (remote_async_resume)
747 (extended_remote_async_create_inferior): Simplify.
748 * mi/mi-interp.c (mi_input): Delete, unused.
749 (mi_interpreter_resume, mi_command_loop): Simplify.
750 * interps.c (current_interp_command_loop): Simplify.
751 * infrun.c (proceed): Simplify.
752 * infcmd.c (run_command, continue_command, step_1, jump_command)
753 (until_command, advance_command, finish_command)
754 (interrupt_target_command): Simplify.
755 * event-top.c (gdb_setup_readline, gdb_disable_readline): Simplify.
756
757 * config/i386/nm-i386.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
758 * config/s390/nm-linux.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
759 * config/pa/nm-hppah.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
760 * config/ia64/nm-linux.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
761 * config/frv/tm-frv.h (TARGET_HAS_HARDWARE_WATCHPOINTS): Delete.
762 * mips-tdep.c (mips_dump_tdep): Do not print same.
763
764 2004-09-12 Andrew Cagney <cagney@gnu.org>
765
766 * valprint.c (print_longest): Use fputs_filtered. Make "val"
767 const.
768 * Makefile.in (valprint.o): Delete explict rule.
769
770 * config/m68k/nbsdelf.mh: Add missing trailing newline. Problem
771 reported by Dave Anderson.
772
773 * target.c (target_info): Delete #ifdef call to FILES_INFO_HOOK.
774
775 * inferior.h (STORE_STRUCT_RETURN): Delete macro.
776
777 2004-09-12 Salvador E. Tropea <set@users.sf.net>
778 Andrew Cagney <cagney@gnu.org>
779
780 * mi/mi-main.c (mi_cmd_data_list_changed_registers)
781 (mi_cmd_data_list_register_values)
782 (mi_cmd_data_write_register_values): Include the PSEUDO_REGS in
783 the register number computation.
784
785 2004-09-12 Andrew Cagney <cagney@gnu.org>
786
787 * ppcnbsd-nat.c: Include "inf-ptrace.h".
788 (ppcnbsd_fetch_inferior_registers): Rename fetch_inferior_registers.
789 (ppcnbsd_store_inferior_registers): Rename store_inferior_registers.
790 (_initialize_ppcnbsd_nat): Create and add a NetBSD/PPC ptrace
791 target.
792 * config/powerpc/nbsd.mh (NATDEPFILES): Replace and inftarg.o with
793 inf-ptrace.o and inf-child.o.
794 * inf-ptrace.h, inf-ptrace.c, inf-child.h, inf-child.c: New files.
795 * Makefile.in: Update dependencies.
796
797 2004-09-11 Andrew Cagney <cagney@gnu.org>
798
799 * language.c (hex_string, hex_string_custom): Move from here ...
800 * utils.c (hex_string, hex_string_custom): ... to here, rewrite.
801 (CELLSIZE): Increase to 50.
802 * language.h (hex_string, hex_string_custom): Move from here ...
803 * defs.h: ... to here.
804 * Makefile.in: Update all dependencies.
805
806 2004-09-11 Paul N. Hilfinger <hilfinger@gnat.com>
807
808 * language.c (local_hex_format_custom): Remove.
809 (local_hex_string): Rename to hex_string, use C format, and move to
810 utils.c
811 (local_hex_string_custom): Rename to hex_string_custom and change
812 interface. Now uses C format. Move to utils.c
813 (local_octal_format_custom): Remove.
814 (local_decimal_format_custom): Remove.
815 (unknown_language_defn): Remove language-specific number
816 formatting entries.
817 (auto_language_defn): Ditto.
818 (local_language_defn): Ditto.
819 * language.h (struct language_format_info): Delete declaration.
820 (struct language_defn): Remove language_format_info fields
821 la_binary_format, la_octal_format, la_decimal_format, la_hex_format.
822 (local_binary_format): Remove macro.
823 (local_binary_format_prefix): Remove macro.
824 (local_binary_format_specifier): Remove macro.
825 (local_binary_format_suffix): Remove macro.
826 (local_octal_format): Remove macro.
827 (local_octal_format_prefix): Remove macro.
828 (local_octal_format_specifier): Remove macro.
829 (local_octal_format_suffix): Remove macro.
830 (local_decimal_format): Remove macro.
831 (local_decimal_format_prefix): Remove macro.
832 (local_decimal_format_specifier): Remove macro.
833 (local_decimal_format_suffix): Remove macro.
834 (local_hex_format): Remove macro.
835 (local_hex_format_prefix): Remove macro.
836 (local_hex_format_specifier): Remove macro.
837 (local_hex_format_suffix): Remove macro.
838 (local_decimal_format_custom): Remove.
839 (local_octal_format_custom): Remove.
840 (local_hex_format_custom): Remove.
841 (local_hex_string): Rename to hex_string and move to defs.h.
842 (local_hex_string_custom): Rename to hex_string_custom, change
843 interface, and move to defs.h.
844 * utils.c: (int_string): New function.
845 (hex_string): New function (from language.c).
846 (hex_string_custom): New function (from language.c).
847 (octal2str): New function.
848 (decimal2str): Add width parameter.
849 (paddr_u): Use new decimal2str interface.
850 (paddr_d): Ditto.
851 * defs.h (hex_string): Declare.
852 (hex_string_custom): Declare.
853 (int_string): Declare.
854 * printcmd.c (print_scalar_formatted): Remove localized binary
855 formatting.
856 * valprint.c (print_longest): Use int_string.
857 (print_floating): Use C hex format.
858 (print_hex_chars): Ditto.
859 (print_binary_chars): Remove language-specific formatting.
860 (print_octal_chars): Use C octal format.
861 (print_decimal_chars): Delocalize format.
862 (print_decimal): Remove.
863 * ada-lang.c (ada_language_defn): Remove language-specific number
864 formatting entries.
865 * p-lang.c (pascal_language_defn): Ditto.
866 * c-lang.c (c_language_defn): Ditto.
867 (cplus_language_defn): Ditto.
868 (asm_language_defn): Ditto.
869 (minimal_language_defn): Ditto.
870 * f-lang.c (f_language_defn): Ditto.
871 * jv-lang.c (java_language_defn): Ditto.
872 * m2-lang.c (m2_language_defn): Ditto.
873 * scm-lang.c (scm_language_defn): Ditto.
874 * objc-lang.c (objc_language_defn): Ditto.
875 * memattr.c (mem_info_command): Use renamed hex_string_custom with
876 new interface.
877 * pa64solib.c (pa64_sharedlibrary_info_command): Ditto.
878 * ui-out.c (ui_out_field_core_addr): Ditto.
879 * breakpoint.c (breakpoint_adjustment_warning): Ditto.
880 * exec.c (print_section_info): Ditto.
881 * i387-tdep.c (print_i387_status_word): Ditto.
882 (print_i387_control_word): Ditto.
883 (i387_print_float_info): Ditto.
884 * maint.c (maint_print_section_info): Ditto.
885 * solib.c (info_sharedlibrary_command): Ditto.
886 * somsolib.c (som_sharedlibrary_info_command): Ditto.
887 * symtab.c (print_msymbol_info): Ditto.
888 * tracepoint.c (tracepoints_info): Ditto.
889 * solib-frv.c (lm_base): Ditto.
890 (frv_current_sos): Ditto.
891 (enable_break2): Ditto.
892 (enable_break): Ditto.
893 * dbxread.c (read_dbx_symtab): Use renamed hex_string.
894 (process_one_symbol): Ditto.
895 * infcmd.c (program_info): Ditto.
896 * mdebugread.c (parse_partial_symbols): Ditto.
897 * symfile.c (add_symbol_file_command): Ditto.
898 * cli/cli-cmds.c (edit_command): Ditto.
899 (list_command): Ditto.
900 * infcall.c (call_function_by_hand): Ditto.
901 * remote-vx.c (vx_run_files_info): Ditto.
902 (vx_wait): Ditto.
903 (vx_attach): Ditto.
904 (vx_detach): Ditto.
905 (vx_kill): Ditto.
906 * aix-thread.c (pdc_symbol_addrs): Ditto.
907 (pdc_read_regs): Ditto.
908 (pdc_write_regs): Ditto.
909 (pdc_read_data): Ditto.
910 (pdc_write_data): Ditto.
911 * d10v-tdep.c (display_trace): Ditto.
912 * rs6000-nat.c (find_toc_address): Ditto.
913 * aix-thread.c: Don't include language.h.
914 * buildsym.c: Ditto.
915 * dbxread.c: Ditto.
916 * mdebugread.c: Ditto.
917 * rs6000-nat.c: Ditto.
918 * buildsym.c (make_blockvector): Use renamed hex_string.
919
920 2004-09-10 Jason Molenda (jmolenda@apple.com)
921
922 * cli/cli-script.c (read_next_line): Accept zero or more whitespace
923 chars after 'if' or 'while' commands in user-defined commands.
924
925 2004-09-08 Jim Blandy <jimb@redhat.com>
926
927 Fix bug reported and analyzed by Olivier Crete:
928 * symfile.c (copy_section_addr_info): New function.
929 (symbol_file_add_with_addrs_or_offsets): Use it to save the
930 original set of address arguments, instead of handwritten code
931 that uses one length to allocate and a different length to
932 initialize. Use make_cleanup_free_section_addr_info.
933 * symfile.h (copy_section_addr_info): New declaration.
934 * utils.c: #include "symfile.h".
935 (do_free_section_addr_info, make_cleanup_free_section_addr_info):
936 New functions.
937 * defs.h (make_cleanup_free_section_addr_info): New declaration.
938 * Makefile.in (utils.o): Update dependencies.
939
940 2004-09-08 Andrew Cagney <cagney@gnu.org>
941
942 * thread-db.c (keep_thread_db): Delete.
943 (thread_db_new_objfile, thread_db_create_inferior)
944 (thread_db_mourn_inferior): Simplify assuming !keep_thread_db.
945
946 2004-09-08 Mark Kettenis <kettenis@gnu.org>
947
948 * i386-tdep.h (FPC_REGNUM, FCTRL_REGNUM, FSTAT_REGNUM, FTAG_REGNUM)
949 (FISEG_REGNUM, FIOFF_REGNUM, FOSEG_REGNUM, FOOFF_REGNUM)
950 (FOP_REGNUM, XMM0_REGNUM, MXCSR_REGNUM): Remove macros.
951 (i386_frameless_signal_p): Remove prototype.
952 * i386-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
953 (GETFPXREGS_SUPPLIES): Define using I386_ST0_REGNUM and
954 I386_SSE_NUM_REGS.
955 * i386-nto-tdep.c (i386nto_supply_gregset): Use I386_NUM_GREGS
956 instead of FP0_REGNUM.
957 (i386nto_regset_id): Use I386_NUM_GREGS and I386_NUM_FREGS instead
958 of FP0_REGNUM and FPC_REGNUM.
959
960 * solib-sunos.c (sunos_relocate_main_executable): Remove function.
961 (sunos_solib_create_inferior_hook): Don't call
962 sunos_relocate_main_executable.
963
964 * sparcnbsd-tdep.c (sparc32nbsd_elf_init_abi): Set
965 solib_svr4_fetch_link_map_offsets to
966 svr4_ilp32_fetch_link_map_offsets.
967 * sparcobsd-tdep.c: Don't include "nbsd-tdep.h".
968 (sparc32obsd_init_abi): Set solib_svr4_fetch_link_map_offsets to
969 svr4_ilp32_fetch_link_map_offsets.
970 * Makefile.in (sparcobsd-tdep.o): Update dependencies.
971
972 2004-09-07 Jim Blandy <jimb@redhat.com>
973
974 * frame.h (frame_register): Doc fix.
975
976 2004-09-07 Andrew Cagney <cagney@gnu.org>
977
978 * vx-share/wait.h: Delete #ifdef USG.
979 * utils.c (request_quit): Ditto.
980 * tui/tui.c (tui_reset): Ditto.
981 * remote.c: Ditto.
982 * remote-sds.c: Ditto.
983 * remote-rdi.c: Ditto.
984 * mdebugread.c: Ditto.
985 * m68klinux-nat.c: Ditto.
986 * infttrace.c: Ditto.
987 * infptrace.c: Ditto.
988 * i386v-nat.c: Ditto.
989 * exec.c: Ditto.
990 * dbxread.c: Ditto.
991 * core-aout.c: Ditto.
992
993 2004-09-05 Joel Brobecker <brobecker@gnat.com>
994
995 * mips-tdep.c (mips_insn16_frame_cache): Fix parameter in call to
996 heuristic_proc_desc.
997 (mips_insn32_frame_cache): Likewise.
998
999 2004-09-04 Joel Brobecker <brobecker@gnat.com>
1000
1001 * mips-tdep.c (mips32_heuristic_proc_desc): Remove code that was
1002 left behind by error.
1003
1004 2004-09-04 Joel Brobecker <brobecker@gnat.com>
1005
1006 * config/alpha/nm-osf.h (PTRACE_ARG3_TYPE): Remove define.
1007 * config/powerpc/nm-aix.h (PTRACE_ARG3_TYPE): Likewise.
1008
1009 2004-09-04 Joel Brobecker <brobecker@gnat.com>
1010
1011 * config/rs6000/xm-aix4.h: Remove this file.
1012 * config/rs6000/aix4.mh (XM_FILE): Delete.
1013
1014 2004-09-04 Joel Brobecker <brobecker@gnat.com>
1015
1016 * config/rs6000/xm-rs6000.h: Remove this file.
1017 * config/rs6000/rs6000.mh (XM_FILE): Remove.
1018
1019 2004-09-03 Andrew Cagney <cagney@gnu.org>
1020
1021 * mips-tdep.c (PROC_DESC_IS_DUMMY, SET_PROC_DESC_IS_DUMMY)
1022 (_PROC_MAGIC_, after_prologue, mips_dump_tdep): Delete macros and
1023 only use.
1024
1025 * mips-tdep.c (temp_saved_regs): Delete.
1026 (set_reg_offset): Replace saved_regs parameter with this_cache.
1027 (heuristic_proc_desc, mips16_heuristic_proc_desc)
1028 (mips32_heuristic_proc_desc): Add this_cache parameter.
1029 (mips_insn32_frame_cache, mips_insn16_frame_cache)
1030 (after_prologue): Pass a NULL this_cache.
1031
1032 * mips-tdep.c (mips_mdebug_frame_cache): Delete code handling
1033 non-kernel trap prologues.
1034
1035 * mips-tdep.c (find_proc_desc): Delete function.
1036 (mips_mdebug_frame_cache): Inline call to find_proc_desc,
1037 simplify.
1038 (mips_insn16_frame_cache): Replace find_proc_desc with code from
1039 mips_insn32_frame_cache.
1040
1041 * mips-tdep.c (after_prologue): Inline call to find_proc_desc.
1042 Simplify as NEXT_FRAME is NULL.
1043 (find_proc_desc): Simplify as NEXT_FRAME is non-NULL.
1044
1045 * mips-tdep.c (after_prologue): Replace proc_desc parameter with
1046 local variable.
1047 (mips_skip_prologue): Update.
1048
1049 * mips-tdep.c (find_proc_desc, heuristic_proc_desc): Delete
1050 "cur_frame" parameter.
1051 (after_prologue, mips_mdebug_frame_cache, mips_insn16_frame_cache):
1052 (mips_insn32_frame_cache, find_proc_desc): Update
1053
1054 * config/vax/nm-obsd.h: Delete file.
1055 * config/vax/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1056 * config/vax/nm-nbsd.h: Delete file.
1057 * config/vax/nm-nbsdaout.h: Include config/nm-nbsd.h.
1058 * config/vax/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1059 * config/sh/nm-nbsd.h: Delete file.
1060 * config/sh/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1061 * config/rs6000/nm-rs6000ly.h: Delete file.
1062 * config/djgpp/fnchange.lst: Do not rename nm-rs6000ly.h.
1063 * config/rs6000/rs6000lynx.mh (NAT_FILE): Set to config/nm-lynx.h.
1064 * config/powerpc/nm-obsd.h: Delete file.
1065 * config/powerpc/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1066 * config/powerpc/nm-nbsd.h: Delete file.
1067 * config/powerpc/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1068 * config/pa/nm-obsd.h: Delete file.
1069 * config/pa/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1070 * config/mips/nm-nbsd.h: Delete file.
1071 * config/mips/nbsd.mh (NAT_FILE): Set to config/nm-nbsd.h.
1072 * config/m88k/nm-obsd.h: Delete file.
1073 * config/m88k/obsd.mh (NAT_FILE): Set to config/nm-bsd.h.
1074 * config/m68k/nm-nbsd.h: Delete file.
1075 * config/m68k/nm-nbsdaout.h: Include config/nm-nbsd.h.
1076 * config/m68k/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1077 * config/i386/nm-nbsd.h: Delete file.
1078 * config/i386/nm-nbsdaout.h: Include config/nm-nbsd.h.
1079 * config/i386/obsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
1080 * config/i386/nbsd64.mh (NAT_FILE): Set to config/nm-nbsd.h.
1081 * config/i386/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1082 * config/i386/nm-i386lynx.h: Delete file.
1083 * config/i386/i386lynx.mh (NAT_FILE): Set to config/nm-lynx.h.
1084 * config/arm/nm-nbsd.h: Delete file.
1085 * config/arm/nm-nbsdaout.h: Include config/nm-nbsd.h.
1086 * config/arm/nbsdelf.mh (NAT_FILE): Set to config/nm-nbsd.h.
1087
1088 * config/i386/tm-fbsd.h: Delete file.
1089 * config/i386/fbsd64.mt (TM_FILE): Set to solib.h.
1090 * config/i386/fbsd.mt (TM_FILE): Set to solib.h.
1091
1092 * config/rs6000/tm-rs6000-aix4.h: Delete file.
1093 * config/djgpp/fnchange.lst: Do not rename tm-rs6000-aix4.h.
1094 * config/rs6000/aix4.mt (TM_FILE): Set to
1095 config/rs6000/tm-rs6000.h.
1096 * config/powerpc/tm-ppc-aix.h: Delete file.
1097 * config/powerpc/aix.mt (TM_FILE): Set to
1098 config/rs6000/tm-rs6000.h.
1099 * config/m68k/tm-linux.h: Delete file.
1100 * config/m68k/linux.mt (TM_FILE): Set to solib.h
1101 * config/i386/tm-linux64.h: Delete file.
1102 * config/i386/linux64.mt (TM_FILE): Set to solib.h.
1103 * config/djgpp/fnchange.lst: Do not rename tm-linux.h.
1104
1105 * config/m68k/tm-linux.h (SVR4_SHARED_LIBS): Delete.
1106 * config/i386/tm-linux64.h (SVR4_SHARED_LIBS): Delete.
1107 * config/i386/nm-i386sco5.h (SVR4_SHARED_LIBS): Delete.
1108 * config/tm-linux.h (SVR4_SHARED_LIBS): Delete.
1109 * config/nm-sysv4.h (SVR4_SHARED_LIBS): Delete.
1110 * config/nm-linux.h (SVR4_SHARED_LIBS): Delete.
1111 * config/nm-gnu.h (SVR4_SHARED_LIBS): Delete.
1112 * sh64-tdep.c [SVR4_SHARED_LIBS]: Delete #ifdef wrapper.
1113 * sh-tdep.c [SVR4_SHARED_LIBS]: Delete #ifdef wrapper.
1114
1115 * configure.in (GDB_TM_FILE): Fix typo, use gdb_target_cpu and not
1116 gdb_host_cpu.
1117
1118 2004-09-02 Joel Brobecker <brobecker@gnat.com>
1119
1120 * mips-tdep.c (mips_insn32_frame_cache): Remove some dead code.
1121 Minor reformatting. Some code factoring.
1122
1123 2004-09-02 Andrew Cagney <cagney@gnu.org>
1124
1125 * config/vax/nbsd.mt (TM_FILE): Set to solib.h.
1126 * config/vax/tm-nbsd.h: Delete file.
1127 * config/sparc/vxworks.mt (TM_FILE): Set to config/tm-vxworks.h.
1128 * config/sparc/tm-vxworks.h: Delete file.
1129 * config/sparc/nbsd.mt (TM_FILE): Set to solib.h.
1130 * config/sparc/tm-nbsd.h: Delete file.
1131 * config/sparc/linux64.mt (TM_FILE): Set to solib.h.
1132 * config/sparc/linux.mt (TM_FILE): Set to solib.h.
1133 * config/sparc/tm-linux.h: Delete file.
1134 * config/s390/s390.mt (TM_FILE): Set to config/tm-linux.h
1135 * config/s390/tm-linux.h: Delete file.
1136 * config/pa/obsd.mt (TM_FILE): Set to solib.h.
1137 * config/pa/tm-bsd.h: Delete file.
1138 * config/m68k/obsd.mt (TM_FILE): Set to solib.h.
1139 * config/m68k/tm-obsd.h: Delete file.
1140 * config/m68k/nbsd.mt (TM_FILE): Set to solib.h.
1141 * config/m68k/tm-nbsd.h: Delete file.
1142 * config/i386/vxworks.mt (TM_FILE): Set to config/tm-vxworks.h.
1143 * config/i386/tm-vxworks.h: Delete file.
1144 * config/i386/obsd64.mt (TM_FILE): Set to solib.h.
1145 * config/i386/obsd.mt (TM_FILE): Set to solib.h.
1146 * config/i386/nbsd64.mt (TM_FILE): Set to solib.h.
1147 * config/i386/nbsd.mt (TM_FILE): Set to solib.h.
1148 * config/i386/tm-nbsd.h: Delete file.
1149 * config/i386/i386lynx.mt (TM_FILE): Set to config/tm-lynx.h.
1150 * config/i386/tm-i386lynx.h: Delete file.
1151 * config/cris/cris.mt (TM_FILE): Set to solib.h.
1152 * config/cris/tm-cris.h: Delete file.
1153
1154 * configure.in: Let TM_FILE, XM_FILE and NAT_FILE specify a path.
1155 * configure: Re-generate.
1156 * config/arm/nbsd.mt (TM_FILE): Set to "solib.h".
1157 * config/arm/tm-nbsd.h: Delete file.
1158
1159 * config/powerpc/tm-ppcle-sim.h: Delete.
1160 * config/powerpc/tm-ppcle-eabi.h: Delete.
1161 * config/powerpc/tm-nbsd.h: Delete.
1162 * config/powerpc/nbsd.mt (TM_FILE): Set to tm-ppc-eabi.h.
1163 * config/djgpp/fnchange.lst: Do not rename tm-ppcle-sim.h or
1164 tm-ppcle-eabi.h.
1165
1166 * config/i386/nto.mh (NAT_FILE): Delete.
1167 * config/i386/nm-nto.h: Delete.
1168
1169 * config/m68k/tm-vx68.h: Do not include "tm-m68k.h".
1170 * config/m68k/tm-os68k.h: Ditto.
1171 * config/m68k/tm-monitor.h: Ditto.
1172 * config/m68k/tm-cisco.h: Ditto.
1173 * config/m68k/st2000.mt (TM_FILE): Delete.
1174 * config/m68k/tm-vx68.h (GET_LONGJMP_TARGET): Delete.
1175 * config/m68k/tm-cisco.h (GET_LONGJMP_TARGET): Delete.
1176 * config/m68k/tm-m68k.h (m68k_get_longjmp_target): Delete file.
1177 * m68k-tdep.c (m68k_get_longjmp_target): Make static.
1178
1179 * config/m68k/tm-st2000.h: Delete.
1180 * config/m68k/st2000.mt (TM_FILE): Set to tm-m68k.h.
1181 * config/sparc/fbsd.mt (TM_FILE): Delete.
1182 * config/sparc/tm-fbsd.h: Delete.
1183
1184 * acconfig.h (GDB_MULTI_ARCH): Delete undef.
1185 * defs.h (GDB_MULTI_ARCH_PARTIAL, GDB_MULTI_ARCH_TM)
1186 (GDB_MULTI_ARCH_PURE, GDB_MULTI_ARCH): Delete macros.
1187
1188 * gdbarch.sh: Instead of GDB_MULTI_ARCH print GDB_NM_FILE,
1189 GDB_TM_FILE and GDB_XM_FILE.
1190 * gdbarch.c: Re-generate.
1191 * configure.in (GDB_XM_FILE, GDB_NM_FILE, GDB_TM_FILE): Include
1192 quotes in macro definition.
1193 * configure.in: Re-generate.
1194
1195 * gdbarch.sh: Delete check for GDB_MULTI_ARCH_PARTIAL when
1196 validating architecture methods.
1197 * gdbarch.c: Re-generate.
1198
1199 * gdbarch.sh: Delete check for consistency between GDB_MULTI_ARCH
1200 and GDB_TM_FILE. Check for GDB_TM_FILE instead of
1201 GDB_MULTI_ARCH_PARTIAL.
1202 * gdbarch.h: Re-generate.
1203
1204 * config/sparc/tm-vxworks.h (GDB_MULTI_ARCH): Delete.
1205 * config/sparc/tm-sol2.h (GDB_MULTI_ARCH): Delete.
1206 * config/sparc/tm-nbsd.h (GDB_MULTI_ARCH): Delete.
1207 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Delete.
1208 * config/sparc/tm-fbsd.h (GDB_MULTI_ARCH): Delete.
1209 * config/sh/tm-sh.h (GDB_MULTI_ARCH): Delete.
1210 * config/rs6000/tm-rs6000.h (GDB_MULTI_ARCH): Delete.
1211 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): Delete.
1212 * config/mips/tm-mips.h (GDB_MULTI_ARCH): Delete.
1213 * config/ia64/tm-ia64.h (GDB_MULTI_ARCH): Delete.
1214 * config/cris/tm-cris.h (GDB_MULTI_ARCH): Delete.
1215 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Delete.
1216
1217 2004-09-01 Andrew Cagney <cagney@gnu.org>
1218
1219 * objfiles.h (struct entry_info): Delete fields main_func_lowpc
1220 and main_func_highpc.
1221 (INVALID_ENTRY_LOWPC, INVALID_ENTRY_HIGHPC): Delete macros.
1222 * objfiles.c (init_entry_point_info, objfile_relocate): Update
1223 * nlmread.c (nlm_symfile_read): Update.
1224
1225 2004-09-01 Joel Brobecker <brobecker@gnat.com>
1226
1227 * mips-tdep.c (linked_proc_desc_table): Delete, not used.
1228 (mips_insn32_frame_cache): Inline call to find_proc_desc.
1229 (find_proc_desc): Remove dead code.
1230
1231 2004-09-01 Joel Brobecker <brobecker@gnat.com>
1232
1233 * mips-tdep.c (mips_mdebug_frame_cache): Minor reformatting.
1234
1235 2004-09-01 Jeff Johnston <jjohnstn@redhat.com>
1236
1237 * observer.sh: Add struct so_list declaration.
1238 * Makefile.in: Add dependencies on observer.h for solib.c and
1239 breakpoint.c.
1240 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): New
1241 function.
1242 (_initialize_breakpoint): Register
1243 disable_breakpoints_in_unloaded_shlib as an observer of the
1244 "solib unloaded" observation event.
1245 (re_enable_breakpoints_in_shlibs): For bp_shlib_disabled breakpoints,
1246 call decode_line_1 so unfound breakpoint errors are silent.
1247 * solib.c (update_solib_list): When a solib is discovered to have
1248 been unloaded by the program, notify all observers of the
1249 "solib unloaded" observation event.
1250
1251 2004-09-01 Andrew Cagney <cagney@gnu.org>
1252
1253 * frame.c: Include "objfiles.h".
1254 (inside_main_func): New function.
1255 (get_prev_frame): Use new inside_main_func.
1256 * Makefile.in (frame.o): Update dependencies.
1257 * defs.h (inside_main_func): Delete declaration.
1258 * blockframe.c (inside_main_func): Delete function.
1259
1260 2004-08-31 Jim Blandy <jimb@redhat.com>
1261
1262 * dwarf2read.c (is_vtable_name): New function, based on logic from
1263 read_structure_type, but passing the correct length to strncmp,
1264 and using 'sizeof' instead of 'strlen'.
1265 (read_structure_type): Call it.
1266
1267 2004-08-31 Joel Brobecker <brobecker@gnat.com>
1268
1269 * config/powerpc/aix.mh: Add comment.
1270
1271 2004-08-31 Paul GIlliam <pgilliam@us.ibm.com>
1272
1273 * MAINTAINERS: Add self to Write-After-Approval.
1274
1275 2004-08-30 Manoj Iyer <manjo@austin.ibm.com>
1276
1277 * MAINTAINERS: Add self to Write-After-Approval.
1278
1279 2004-08-30 Andrew Cagney <cagney@gnu.org>
1280
1281 Fix PR breakpoints/1757.
1282 * infrun.c (struct execution_control_state): Replace
1283 remove_breakpoints_on_following_step with
1284 step_after_step_resume_breakpoint.
1285 (init_execution_control_state): Update.
1286 (handle_inferior_event): For signals, when stepping off a
1287 breakpoint, set step_after_step_resume_breakpoint. When
1288 BPSTAT_WHAT_STEP_RESUME, do a single-step off the breakpoint.
1289 (keep_going): Delete code handling
1290 remove_breakpoints_on_following_step.
1291
1292 2004-08-29 David Lecomber <david@streamline-computing.com>
1293
1294 Fix PR gdb/648
1295 * language.h (enum array_ordering): New enum.
1296 * language.h (struct language_defn): New la_array_ordering
1297 attribute.
1298 * language.c (unknown_language_defn, auto_language_defn)
1299 (local_language_defn): Ditto.
1300 * ada-lang.c (ada_language_defn): Ditto.
1301 * c-lang.c (c_language_defn, cplus_language_defn)
1302 (asm_language_defn, minimal_language_defn): Ditto.
1303 * f-lang.c (f_language_defn): Ditto.
1304 * jv-lang.c (java_language_defn): Ditto.
1305 * m2-lang.c (f_language_defn): Ditto.
1306 * objc-lang.c (objc_language_defn): Ditto.
1307 * p-lang.c (pascal_language_defn): Ditto.
1308 * scm-lang.c (scm_language_defn): Ditto.
1309 * eval.c (evaluate_subexp_standard): Assume Fortran arrays are
1310 oriented large to small in type structure.
1311 * dwarf2read.c (read_array_order): New function.
1312 (read_array_type): Use read_array_order to check row/column
1313 major ordering.
1314
1315 2004-08-27 Nathan J. Williams <nathanw@wasabisystems.com>
1316
1317 * target.c (target_resize_to_sections): Check
1318 current_target.to_sections for an old value when updating.
1319
1320 2004-08-27 Joel Brobecker <brobecker@gnat.com>
1321
1322 * procfs.c (dbx_link_bpt_addr): New static global variable.
1323 (dbx_link_shadow_contents): New static global variable.
1324 (procfs_wait, case <PR_SYSEXIT>): Handle syssgi events.
1325 (procfs_wait, case <FLTBPT>): Remove the __dbx_link brekapoint
1326 if we just hit it.
1327 (procfs_init_inferior): Enable syssgi() syscall trace if appropriate.
1328 Reset dbx_link_bpt_addr as the address of __dbx_link() may change
1329 from run to run.
1330 (procfs_create_inferior): Remove syssgi syscall-exit notifications
1331 after the inferior has been forked.
1332 (remove_dbx_link_breakpoint): New function.
1333 (dbx_link_addr): New function.
1334 (insert_dbx_link_bpt_in_file): New function.
1335 (insert_dbx_link_bpt_in_region): New function.
1336 (insert_dbx_link_breakpoint): New function.
1337 (proc_trace_syscalls_1): New function, extracted from
1338 proc_trace_syscalls.
1339 (proc_trace_syscalls): Replace extract code by call to
1340 proc_trace_syscalls_1.
1341 * solib-irix.c (disable_break): Remove stop_pc assertion, as it
1342 is no longer valid.
1343
1344 2004-08-25 Jim Blandy <jimb@redhat.com>
1345
1346 * gdbtypes.h (TYPE_CODE_ARRAY): Doc fix.
1347
1348 2004-08-25 Andrew Cagney <cagney@gnu.org>
1349
1350 * infrun.c (struct execution_control_state): Delete field
1351 "stepping_through_sigtramp".
1352 (init_execution_control_state): Do not set same.
1353 (context_switch): Do not pass same to save_infrun_state and
1354 load_infrun_state.
1355 * gdbthread.h (struct thread_info): Delete field
1356 stepping_through_sigtramp.
1357 (save_infrun_state, load_infrun_state): Delete parameter
1358 stepping_through_sigtramp.
1359 * thread.c (load_infrun_state, save_infrun_state): Update.
1360
1361 * infrun.c: Re-indent. Move expression operators to the beginning
1362 of the line. Remove long disabled #if 0 code.
1363
1364 2004-08-24 Andrew Cagney <cagney@gnu.org>
1365
1366 * doublest.h (floatformat_ieee_quad): Rename
1367 floatformat_ia64_quad.
1368 * doublest.c (floatformat_ieee_quad): Rename
1369 floatformat_ia64_quad.
1370 (_initialize_doublest): Update.
1371
1372 2004-08-24 Jim Blandy <jimb@redhat.com>
1373
1374 * dwarf2expr.h (struct dwarf_expr_context): New members
1375 'num_pieces' and 'pieces', for returning the result of an
1376 expression that uses DW_OP_piece.
1377 (struct dwarf_expr_piece): New struct type.
1378 * dwarf2expr.c (new_dwarf_expr_context): Initialize num_pieces and
1379 pieces.
1380 (free_dwarf_expr_context): Free pieces, if any.
1381 (add_piece): New function.
1382 (execute_stack_op): Implement DW_OP_piece.
1383 * dwarf2loc.c (dwarf2_evaluate_loc_desc): If the result of the
1384 expression is a list of pieces, print an error message.
1385 (dwarf2_loc_desc_needs_frame): If the expression yields
1386 pieces, and any piece is in a register, then we need a frame.
1387
1388 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Wait to fetch the top of
1389 the stack until we've decided what sort of result the evaluation
1390 has produced. Use separate variables, with more specific names.
1391
1392 2004-08-23 Richard Earnshaw <rearnsha@arm.com>
1393
1394 * armnbsd-tdep.c (arm_nbsd_arm_be_breakpoint): Define.
1395 (arm_nbsd_thumb_[lb]e_breakpoint): Define.
1396 (arm_netbsd_init_abi_common): Register them.
1397
1398 2004-08-22 Mark Kettenis <kettenis@gnu.org>
1399
1400 * config/vax/vax.mh (NATDEPFILES): Add vax-nat.c.
1401
1402 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Use
1403 safe_frame_unwind_memory instead of target_read_memory.
1404
1405 * infptrace.c: Remove #ifdef'ed out inclusion of gdb_stat.h.
1406 Reorder includes.
1407 (fetch_register, store_register): Remove prototypes.
1408 (child_resume): Reorganize code and comments such that it is
1409 grouped a bit more logically.
1410 (attach): Explicitly compare errno against 0.
1411 (detach): Likewise. Use perror_with_name instead of
1412 print_sys_errmsg.
1413 * Makefile.in (infptrace.o): Update dependencies.
1414
1415 * ia64-linux-nat.c: Update copyright year.
1416 (fetch_debug_register, store_debug_register)
1417 (ia64_linux_stopped_by_watchpoint): Replace PTRACE_ARG3_TYPE with
1418 PTRACE_TYPE_ARG3.
1419 * config/ia64/nm-linux.h: Update copyright year.
1420 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Remove defines.
1421
1422 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Change argument
1423 from CORE_ADDR to struct frame_info *. Use
1424 safe_frame_unwind_memory instead of deprecated_read_memory_nobpt.
1425 (amd64_linux_sigtramp_p): Adjust for changed signature of
1426 and64_linux_sigtramp_start
1427
1428 * gdb_ptrace.h: GNU/Linux.
1429
1430 * config/alpha/nm-linux.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
1431 Remove defines.
1432
1433 * infptrace.c: Include "gdb_assert.h".
1434 (PTRACE_XFER_TYPE): Remove define.
1435 (offsetof): Only define if U_REGS_OFFSET isn't defined.
1436 (fetch_register, store_register): Rewrite to use PTRACE_TYPE_RET.
1437 Tweak comment.
1438 (fetch_inferior_registers, store_inferior_registers): Remove
1439 redundant culry braces. Tweak comment. s/regno/regnum.
1440 * Makefile.in (infptrace.o): Update dependencies.
1441
1442 * configure.in: Change test for return type of ptrace to default
1443 to `long' instead of `int'.
1444 * configure: Regenerate.
1445
1446 2004-08-21 Mark Kettenis <kettenis@gnu.org>
1447
1448 * config/alpha/alpha-linux.mh (LOADLIBES): New variable.
1449
1450 * configure.in: Check for ttrace function.
1451 * configure, config.in: Regenerate.
1452
1453 * gdb_ptrace.h: New file.
1454 * infptrace.c: Include "gdb_ptrace.h" instead of <ptrace.h> or
1455 <sys/ptrace.h>.
1456 (PT_READ_I, PT_READ_D, PT_READ_U, PT_WRITE_I, PT_WRITE_D)
1457 (PT_WRITE_U, PT_CONTINUE, PT_STEP, PT_KILL): Remove defines.
1458 (attach): Don't define PT_ATTACH.
1459 (detach): Don't define PT_DETACH.
1460 * Makefile.in (gdb_ptrace_h): New variable.
1461 (infptrace.o): Update dependencies.
1462
1463 2004-08-16 Mark Kettenis <kettenis@gnu.org>
1464
1465 * inferior.h (PTRACE_ARG3_TYPE): Define as PTRACE_TYPE_ARG3
1466 instead of `int' if not already defined.
1467 (call_ptrace): Revert change that replaced PTRACE_ARG3_TYPE with
1468 PTRACE_TYPE_ARG3.
1469 * infptrace.c (call_ptrace): Revert change that replaced
1470 PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1471
1472 2004-08-15 Mark Kettenis <kettenis@gnu.org>
1473
1474 * config/i386/nm-linux64.h (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE):
1475 Remove defines.
1476
1477 * linux-nat.c (kill_inferior): Add missing third and fourth
1478 arguments to ptrace call. Don't use PTRACE_ARG3_TYPE.
1479
1480 * infptrace.c (child_xfer_memory): Replace PTRACE_XFER_TYPE with
1481 PTRACE_TYPE_RET.
1482
1483 * proc-why.c (proc_prettyfprint_why): Fix format string.
1484
1485 * solib-osf.c (osf_current_sos): Remove unsused label.
1486
1487 * configure.in: Add <ncurses/ncurses.h> to the list of possible
1488 curses headers.
1489 * configure, config.in: Regenerate.
1490 * gdb_curses.h [HAVE_NCURSES_NCURSES_H]: Include
1491 <ncurses/ncurses.h>.
1492
1493 * config/nm-bsd.h (PTRACE_ARG3_TYPE): Remove define.
1494 * config/nm-nbsd.h: Update copyright year.
1495 (PTRACE_ARG3_TYPE): Remove define.
1496
1497 * sparc-nat.c (fetch_inferior_registers)
1498 (store_inferior_registers, sparc_xfer_wcookie):
1499 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1500
1501 * alphabsd-nat.c (fetch_inferior_registers):
1502 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1503 PTRACE_TYPE_ARG3.
1504 * amd64bsd-nat.c (fetch_inferior_registers)
1505 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1506 PTRACE_TYPE_ARG3.
1507 * armnbsd-nat.c: Update copyright year.
1508 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs)
1509 (store_register, store_regs, store_fp_register, store_fp_regs):
1510 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1511 * hppabsd-nat.c (fetch_inferior_registers)
1512 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1513 PTRACE_TYPE_ARG3.
1514 * i386bsd-nat.c (fetch_inferior_registers)
1515 (store_inferior_registers, i386bsd_dr_set, i386bsd_dr_get_status):
1516 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1517 * m68kbsd-nat.c (fetch_inferior_registers)
1518 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1519 PTRACE_TYPE_ARG3.
1520 * m88kbsd-nat.c (fetch_inferior_registers)
1521 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1522 PTRACE_TYPE_ARG3.
1523 * mipsnbsd-nat.c: Update copyright year.
1524 (fetch_inferior_registers, store_inferior_registers):
1525 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1526 * ns32knbsd-nat.c: Update copyright year.
1527 (fetch_inferior_registers, store_inferior_registers):
1528 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1529 * ppcnbsd-nat.c (fetch_inferior_registers):
1530 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1531 PTRACE_TYPE_ARG3.
1532 * ppcobsd-nat.c (fetch_inferior_registers):
1533 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1534 PTRACE_TYPE_ARG3.
1535 * shnbsd-nat.c: Update copyright year.
1536 (fetch_inferior_registers, store_inferior_registers):
1537 Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1538 * vaxbsd-nat.c (fetch_inferior_registers)
1539 (store_inferior_registers): Replace PTRACE_ARG3_TYPE with
1540 PTRACE_TYPE_ARG3.
1541
1542 * inferior.h (call_ptrace): Replace PTRACE_ARG3_TYPE with
1543 PTRACE_TYPE_ARG3.
1544 * infptrace.c (call_ptrace, child_resume, attach, detach)
1545 (U_REGS_OFFSET, fetch_register, store_register, child_xfer_memory)
1546 (udot_info): Replace PTRACE_ARG3_TYPE with PTRACE_TYPE_ARG3.
1547 * inftarg.c (ptrace_me): Replace PTRACE_ARG3_TYPE with
1548 PTRACE_TYPE_ARG3.
1549
1550 2004-08-14 Mark Kettenis <kettenis@gnu.org>
1551
1552 * defs.h: Remove out-of-date comment.
1553 [!FCLOSE_PROVIDED] (fclose): Remove prototype.
1554 [!GETENV_PROVIDED] (getenv): Remove prototype.
1555
1556 * standalone.c: Remove file.
1557 * Makefile.in (standalone.o): Remove dependency.
1558
1559 * i386-linux-nat.c (dummy_sse_values): Remove function and
1560 prototype.
1561 (i386_linux_dr_get): Fix typo in comment.
1562 (LINUX_SYSCALL_REGNUM): Define as I386_EAX_REGNUM.
1563
1564 * config/i386/obsd64.mt (TDEPFILES): Add i386obsd-tdep.o.
1565
1566 * defs.h (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
1567 from declaration.
1568 * top.c (deprecated_error_hook): Remove RETURN and ATTR_NORETURN
1569 from definition.
1570
1571 2004-08-13 Mark Kettenis <kettenis@gnu.org>
1572
1573 * configure.in (PTRACE_TYPE_ARG3, PTRACE_TYPE_ARG5): Don't use
1574 parenthesis in definition.
1575 * configure: Regenerated.
1576
1577 2004-08-12 Michael Chastain <mec.gnu@mindspring.com>
1578
1579 * PROBLEMS: Mention build/1411.
1580
1581 2004-08-09 Robert Millan <robertmh@gnu.org>
1582
1583 Committed by Nathanael Nerode.
1584 * configure.host: Match kfreebsd*-gnu and knetbsd*-gnu.
1585 * configure.tgt: Match kfreebsd*-gnu and knetbsd*-gnu.
1586
1587 2004-08-12 Andrew Cagney <cagney@gnu.org>
1588
1589 * NEWS: Mention fixes in GDB 6.2.1.
1590 * PROBLEMS: Remove mention of mips-irix.
1591
1592 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1593
1594 * config/powerpc/xm-aix.h: Delete.
1595 * config/powerpc/aix.mh (MH_FILE): Remove.
1596 * config/powerpc/aix432.mh (MH_FILE): Remove.
1597
1598 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1599
1600 * config/powerpc/aix.mh: Remove obsolete comment.
1601 * config/powerpc/aix432.mh: Likewise.
1602
1603 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1604
1605 * config/powerpc/xm-aix.h (UINT_MAX): Remove undef.
1606
1607 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1608
1609 * config/rs6000/xm-aix4.h: Remove "config/xm-aix4.h" include,
1610 this file is now empty.
1611 * config/xm-aix4.h: Remove, this file is no longer included
1612 anywhere.
1613
1614 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1615
1616 * config/powerpc/xm-aix.h: Remove "config/xm-aix4.h" include,
1617 that file is now empty.
1618 (termdef): Remove prototype, function no longer used.
1619
1620 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1621
1622 * doc/gdbint.texinfo (Host Definition): Remove documentation
1623 for USE_O_NOCTTY, no longer used.
1624 * config/xm-aix4.h (USE_O_NOCTTY): Remove, no longer used.
1625 * config/rs6000/xm-rs6000.h (USE_O_NOCTTY): Likewise.
1626
1627 2004-08-11 Joel Brobecker <brobecker@gnat.com>
1628
1629 * config/xm-aix4.h (FIVE_ARG_PTRACE): Remove, no longer used.
1630 * config/pa/nm-hppah.h (FIVE_ARG_PTRACE): Likewise.
1631 * config/rs6000/xm-rs6000.h (FIVE_ARG_PTRACE): Likewise.
1632
1633 2004-08-11 Mark Kettenis <kettenis@gnu.org>
1634
1635 * infptrace.c (call_ptrace): Select code based on PTRACE_TYPE_ARG5
1636 instead of FIVE_ARG_PTRACE.
1637
1638 * inflow.c (O_NOCTTY): Define to zero if not already defined.
1639 (new_tty): Use O_NOCTTY unconditionally.
1640
1641 2004-08-10 Mark Kettenis <kettenis@gnu.org>
1642
1643 * procfs.c (procfs_detach): Cleanup. Print process ID, not LWP
1644 ID. Use comma in output. Use gdb_flush on gdb_stdout instead of
1645 fflush on stdout.
1646
1647 2004-08-10 Joel Brobecker <brobecker@gnat.com>
1648
1649 * xcoff_symfile_finish: Replace last call to xmfree by call
1650 to xfree.
1651
1652 2004-08-10 Andrew Cagney <cagney@gnu.org>
1653
1654 * main.c (captured_main): Delete call to init_malloc.
1655 * defs.h (init_malloc): Delete declaration.
1656 * utils.c (mmalloc, mrealloc, mcalloc, mfree)
1657 (init_malloc): Delete functions.
1658
1659 * defs.h (xmfree): Delete.
1660 * utils.c (xmfree): Delete function.
1661 (xfree): Inline calls to xmfree and mfree.
1662 * symmisc.c (free_symtab_block, free_symtab): Use xfree.
1663 * symfile.c (reread_symbols, init_psymbol_list): Ditto.
1664 * source.c (forget_cached_source_info, find_and_open_source): Ditto.
1665 * somread.c (som_symfile_finish): Ditto.
1666 * objfiles.c (allocate_objfile, free_objfile):
1667 * nlmread.c (nlm_symfile_finish): Ditto.
1668 * hpread.c (hpread_symfile_finish): Ditto.
1669 * elfread.c (free_elfinfo, elf_symfile_finish): Ditto.
1670 * dbxread.c (dbx_symfile_finish, free_bincl_list): Ditto.
1671 * coffread.c (coff_symfile_finish): Ditto.
1672
1673 * defs.h (xmcalloc): Delete declaration.
1674 * utils.c (xmcalloc): Delete.
1675 (xcalloc): Inline calls to xmcalloc and mcalloc.
1676 * ada-lang.c (_initialize_ada_language): Use htab_create_alloc,
1677 xcalloc and xfree.
1678 * symtab.c (create_demangled_names_hash): Ditto.
1679
1680 * defs.h (xmrealloc): Delete.
1681 * utils.c (xmrealloc): Delete.
1682 (xrealloc): Inline calls to xmrealloc, mmalloc and mrealloc.
1683 * symmisc.c (extend_psymbol_list): Use xrealloc.
1684 * source.c (find_source_lines): Ditto.
1685 * hpread.c (hpread_lookup_type): Ditto.
1686 * dbxread.c (add_bincl_to_list): Ditto.
1687
1688 * utils.c (xmmalloc): Delete.
1689 (xmalloc): Inline xmmalloc and mmalloc calls.
1690 (msavestring): Use xmalloc.
1691 * defs.h (xmmalloc): Delete declaration.
1692 * xcoffread.c (xcoff_symfile_init): Use xmalloc instead of
1693 xmmalloc.
1694 * symmisc.c (extend_psymbol_list): Ditto.
1695 * symfile.c (init_psymbol_list): Ditto.
1696 * source.c (find_source_lines): Ditto.
1697 * hpread.c (hpread_symfile_init, hpread_lookup_type): Ditto.
1698 * elfread.c (elf_symtab_read): Ditto.
1699 * dbxread.c (dbx_symfile_init, init_bincl_list): Ditto.
1700 * coffread.c (coff_symfile_init): Ditto.
1701
1702 2004-08-10 David Carlton <carlton@bactrian.org>
1703
1704 * MAINTAINERS: Remove David Carlton from c++ testsuite
1705 maintainers.
1706
1707 2004-08-10 Jerome Guitton <guitton@gnat.com>
1708
1709 * symfile.c (symbol_file_add_with_addrs_or_offsets): Make sure to
1710 print a line feed before the prompt.
1711
1712 2004-08-10 Mark Kettenis <kettenis@gnu.org>
1713
1714 * procfs.c (procfs_pid_to_str): Use "%ld" to print LWP.
1715
1716 2004-08-09 Joel Brobecker <brobecker@gnat.com>
1717
1718 General cleanup of the AIX xm include file:
1719 * config/xm-aix4.h (fd_set): Remove undefine.
1720 Remove include of <sys/select.h>.
1721 (HAVE_TERMIO): Remove define.
1722 (USG): Likewise.
1723 (NULL): Remove redefine.
1724 (alloca): Remove #pragma.
1725 (vfork): Remove define.
1726 (termdef): Remove.
1727 (SIGWINCH_HANDLER): Remove.
1728 (SIGWINCH_HANDLER_BODY): Remove.
1729
1730 2004-08-09 Mark Kettenis <kettenis@gnu.org>
1731
1732 * configure.tgt (x86_64-*-openbsd*): Set gdb_osabi to
1733 GDB_OSABI_OPENBSD_ELF.
1734
1735 2004-08-07 Robert Millan <robertmh@gnu.org>
1736
1737 * bsd-kvm.c: Check for nlist.h before including it.
1738
1739 2004-08-09 Mark Kettenis <kettenis@gnu.org>
1740
1741 * i386bsd-nat.c (_initialize_i386bsd_nat): Remove `struct
1742 sigcontext' offset consistency checks for ancient BSD.
1743
1744 * gdb_curses.h [HAVE_CURSESX_H]: Include <cursesX.h>
1745
1746 * configure.in: Check for <sys/types.h>. Check return and
1747 argument types of ptrace.
1748 * configure, config.in: Regenerate.
1749
1750 2004-08-09 Jim Blandy <jimb@redhat.com>
1751
1752 * rs6000-tdep.c (set_sim_regno, init_sim_regno_table,
1753 rs6000_register_sim_regno): Doc fixes.
1754
1755 2004-08-08 Joel Brobecker <brobecker@gnat.com>
1756
1757 * mips-tdep.c: Include "floatformat.h".
1758 (n32n64_floatformat_always_valid): New function.
1759 (floatformat_n32n64_long_double_big): New constant.
1760 (mips_gdbarch_init): Set size and format of long double
1761 for N32 and N64 ABIs.
1762 * Makefile.in (mips-tdep.o): Update dependencies.
1763
1764 2004-08-08 Andrew Cagney <cagney@gnu.org>
1765
1766 * gdbarch.sh: Delete "fmt" and "attrib" fields. Always use %s to
1767 print. Improve script's error messages.
1768 * gdbarch.h: Re-generate.
1769
1770 * gdbarch.sh (pformat): New function.
1771 (float_format, double_format, long_double_format): List with bit
1772 members. Use pformat when printing.
1773 * gdbarch.c, gdbarch.h: Re-generate.
1774
1775 2004-08-08 Nathan J. Williams <nathanw@wasabisystems.com>
1776
1777 * ppcnbsd-nat.c: Include <machine/frame.h>, <machine/pcb.h>,
1778 "gdbcore.h", "regcache.h", and "bsd-kvm.h".
1779 (ppcnbsd_supply_pcb): New function.
1780 (_initialize_ppcnbsd_nat): New prototype and function.
1781 * config/powerpc/nbsd.mh (NATDEPFILES): Add bsd-kvm.o.
1782 (LOADLIBES): New variable.
1783 * Makefile.in (ppcnbsd-nat.o): Update dependencies.
1784
1785 2004-08-08 Andrew Cagney <cagney@gnu.org>
1786
1787 * gdbtypes.c (builtin_type_arm_ext, builtin_type_ieee_single)
1788 (builtin_type_ieee_double, builtin_type_ia64_quad)
1789 (builtin_type_ia64_spill, _initialize_gdbtypes): Add tables of
1790 BE/LE floating-point types.
1791 * gdbtypes.h (builtin_type_arm_ext, builtin_type_ieee_single)
1792 (builtin_type_ieee_double, builtin_type_ia64_quad)
1793 (builtin_type_ia64_spill): Declare.
1794 * doublest.c (_initialize_doublest, floatformat_ieee_single)
1795 (floatformat_ieee_double, floatformat_arm_ext)
1796 (floatformat_ia64_spill, floatformat_ia64_quad): Add tables
1797 of LE/BE floatformats.
1798 * doublest.h: (struct floatformat, floatformat_ieee_single)
1799 (floatformat_ieee_double, floatformat_arm_ext)
1800 (floatformat_ia64_spill, floatformat_ia64_quad): Declare.
1801
1802 2004-08-08 Mark Kettenis <kettenis@gnu.org>
1803
1804 * i386gnu-nat.c (gnu_store_registers): Fix typo.
1805
1806 * i386gnu-nat.c (gnu_store_registers): Use regcache_raw_collect
1807 instead of regcache_raw_supply when storing the registers.
1808
1809 * i386gnu-nat.c: Update copyright year.
1810 (gnu_store_registers): Don't use deprecated_registers and
1811 deprecated_registers_valid. Use regcache_valid_p and
1812 regcache_raw_supply instead.
1813
1814 * vax-tdep.c (vax_frame_this_id): Use frame_func_unwind instead of
1815 frame_pc_unwind.
1816
1817 * procfs.c (procfs_pid_to_str): Remove redundant and unused
1818 variables. Incapitalized "process".
1819
1820 * configure.in: Add cursesX to the list of possible curses libs.
1821 Add cursesX.h to the list of possible curses headers.
1822 * configure, config.in: Regenerate.
1823
1824 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
1825
1826 * configure.in: Test for struct lwp in <sys/lwp.h>.
1827 * bsd-kvm.c (bsd_kvm_proc_cmd): If HAVE_STRUCT_LWP is defined, use
1828 the offset of l_addr in struct lwp.
1829
1830 2004-08-07 Nathan J. Williams <nathanw@wasabisystems.com>
1831
1832 * bsd-kvm.c: Include "gdbcore.h"
1833 (bsd_kvm_open): Use get_exec_file() to set 'execfile'.
1834
1835 2004-08-07 Andrew Cagney <cagney@gnu.org>
1836
1837 * gdbtypes.c (build_flt, build_complex): New functions.
1838 (gdbtypes_post_init): Use.
1839
1840 * doublest.c (floatformat_from_length): Fix tipo, "*" not "&".
1841
1842 * gdbtypes.c (_initialize_gdbtypes): Do not swap builtin_type_int8
1843 through to builtin_type_uint128.
1844
1845 * c-exp.y: Use builtin_type function to obtain builtin types.
1846
1847 * gdbtypes.h (struct builtin_type): Delete builtin_int0 through to
1848 builtin_uint128.
1849 * gdbtypes.c (gdbtypes_post_init): Update.
1850 (build_gdbtypes): Move initialization of builtin_type_int0
1851 through to builtin_type_uint128 from here ...
1852 (_initialize_gdbtypes): ... to here.
1853 * d10v-tdep.c (d10v_register_type): Update.
1854
1855 * doublest.c: Update copyright.
1856 (floatformat_from_length): Call error when floatformat is NULL.
1857 (extract_floating_by_length): Remove NULL fmt check.
1858 (store_floating_by_length): Ditto.
1859
1860 2004-08-07 Andrew Cagney <cagney@gnu.org>
1861
1862 * regcache.c (regcache_raw_read): For the moment, #ifdef assert
1863 that the register is valid.
1864
1865 2004-08-05 Mark Kettenis <kettenis@chello.nl>
1866
1867 * i386-linux-tdep.c (i386_linux_sigtramp_start)
1868 (i386_linux_rt_sigtramp_start): Change argument from CORE_ADDR to
1869 struct frame_info *. Use safe_frame_unwind_memory instead of
1870 deprecated_read_memory_nobpt.
1871 (i386_linux_sigtramp_p, i386_linux_sigcontext_addr): Adjust for
1872 changed signature of i386_linux_sigtramp_start and
1873 i386_linux_rt_sigtramp_start.
1874
1875 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Change argument from
1876 CORE_ADDR to struct frame_info *. Use safe_frame_unwind_memory
1877 instead of deprecated_read_memory_nobpt.
1878 (i386nbsd_sigtramp_p): Adjust for changed signature of
1879 i386nbsd_sigtramp_offset.
1880
1881 * i386obsd-tdep.c (i386obsd_sigtramp_p): Use
1882 safe_frame_unwind_memory instead of target_read_memory.
1883
1884 * infptrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
1885 !NO_SYS_FILE.
1886 [KERNEL_U_ADDR_BSD]: Don't include <a.out.h>.
1887 [KERNEL_U_ADDR_BSD] (kernel_u_addr): Remove variable.
1888 (_initialize_kernel_u_addr): Remove prototype and function.
1889 * infttrace.c: Include <sys/file.h> if HAVE_SYS_FILE_H instead of
1890 !NO_SYS_FILE.
1891 * xcoffread.c: Likewise.
1892
1893 2004-08-06 Mark Kettenis <kettenis@gnu.org>
1894
1895 * vax-nat.c: New file.
1896 * vaxbsd-nat.c: Tweak comment.
1897 * Makefile.in (ALLDEPFILES): Add vax-nat.c, vaxbsd-nat.c and
1898 vaxnbsd-tdep.c.
1899 (vax-nat.o): New dependency.
1900 * configure.host (vax-*-bsd*, vax-*-ultrix*): Set gdb_host to vax.
1901 (vax-*-ultrix2*): Remove.
1902 * config/vax/vax.mh: New file.
1903 * config/vax/nm-vax.h (vax_kernel_u_addr): New extern declaration.
1904 (KERNEL_U_ADDR): Define as vax_kernel_u_addr.
1905 (vax_register_u_addr): New prototype.
1906 (REGISTER_U_ADDR): Define using vax_register_u_addr.
1907 * config/vax/vaxult2.mh: Remove file.
1908 * config/vax/vaxult.mh: Remove file.
1909 * config/vax/vaxbsd.mh: Remove file.
1910 * config/vax/vax.mt (TM_FILE): Remove.
1911 * config/vax/tm-vaxbsd.h: Remove file.
1912
1913 2004-08-06 Joel Brobecker <brobecker@gnat.com>
1914
1915 * aix-thread.c (get_signaled_thread): New function.
1916 (iter_trap): Delete, no longer used.
1917 (iter_tid): New function.
1918 (pd_update): Find the thread that received the SIGTRAP signal
1919 by first locating the kernel thread, and then finding its
1920 associated thread.
1921
1922 2004-08-06 Ulrich Weigand <uweigand@de.ibm.com>
1923
1924 * lin-lwp.c (child_wait): Continue inferior after processing
1925 PTRACE_EVENT_CLONE event.
1926
1927 2004-08-05 Nathanael Nerode <neroden@gcc.gnu.org>
1928
1929 * MAINTAINERS: Add self to Write-After-Approval.
1930
1931 2004-08-05 Jeff Johnston <jjohnstn@redhat.com>
1932
1933 * libunwind-frame.c (LIBUNWIND_SO): Change to be of form:
1934 libunwind-xxxx.so" where xxxx is UNW_TARGET.
1935
1936 2004-08-05 Andrew Cagney <cagney@gnu.org>
1937
1938 * config/xm-sysv4.h: Delete file.
1939 * config/mips/xm-irix5.h: Delete file.
1940 * config/mips/irix6.mh (XM_FILE, XM_CLIBS): Delete.
1941 * config/mips/irix5.mh (XM_FILE, XM_CLIBS): Delete.
1942 * config/ia64/xm-aix.h: Delete file.
1943 * config/ia64/aix.mh (XM_FILE): Delete.
1944 * config/pa/xm-hppah.h: Delete file.
1945 * config/pa/hpux11w.mh (XM_FILE): Delete.
1946 * config/pa/hpux11.mh (XM_FILE): Delete.
1947 * config/pa/hpux1020.mh (XM_FILE): Delete.
1948 * config/pa/hppahpux.mh (XM_FILE): Delete.
1949
1950 * config/alpha/xm-alphalinux.h: Delete file.
1951 * config/djgpp/fnchange.lst: Do not fix xm-alphalinux.h.
1952 * config/alpha/alpha-linux.mh (XM_FILE, LOADLIBES): Delete.
1953 * config/alpha/xm-alphaosf.h: Delete file.
1954 * config/djgpp/fnchange.lst: Do not fix xm-alphaosf.h.
1955 * config/alpha/alpha-osf3.mh (XM_FILE): Delete.
1956 * config/alpha/alpha-osf2.mh (XM_FILE): Delete.
1957 * config/alpha/alpha-osf1.mh (XM_FILE): Delete.
1958
1959 * config/i386/xm-i386v.h: Delete file.
1960 * config/i386/i386v.mh (XM_FILE, XM_CLIBS): Delete.
1961 * config/i386/i386sco5.mh (XM_FILE, XM_CLIBS): Delete.
1962 * config/i386/xm-i386sco.h: Delete file.
1963 * config/i386/i386sco4.mh (XM_FILE, XM_CLIBS, MH_CFLAGS): Delete.
1964 * config/i386/i386sco.mh (XM_FILE, XM_CLIBS, CC): Delete.
1965 * config/i386/xm-i386v4.h: Delete file.
1966 * config/djgpp/fnchange.lst: Do not fix xm-i386v4.h.
1967 * config/i386/ncr3000.mh (CC, CFLAGS, XM_FILE): Delete.
1968 * config/i386/i386v42mp.mh (XM_FILE, XM_CLIBS): Delete.
1969 * config/i386/i386v4.mh (XM_FILE, XM_CLIBS): Delete.
1970
1971 * config/vax/xm-vax.h: Delete file.
1972 * Makefile.in (xm-vaxult.h, xm-vaxbsd.h): Delete.
1973 * config/vax/xm-vaxult2.h: Delete file.
1974 * config/djgpp/fnchange.lst: Do not fix xm-vaxult2.h.
1975 * config/vax/vaxult2.mh (XM_FILE): Delete.
1976 * config/vax/xm-vaxult.h: Delete file.
1977 * config/vax/vaxult.mh (XM_FILE): Delete.
1978 * config/vax/xm-vaxbsd.h: Delete file.
1979 * config/vax/vaxbsd.mh (XM_FILE): Delete.
1980
1981 * gdbarch.sh (deprecated_frame_saved_pc): Delete.
1982 * gdbarch.h, gdbarch.c: Re-generate.
1983 * regcache.c (deprecated_read_fp, deprecated_write_sp): Delete.
1984 * inferior.h (deprecated_read_fp, deprecated_write_sp): Delete.
1985 * frame.h: Delete deprecated_read_fp from comments.
1986 * arch-utils.c (deprecated_init_frame_pc_default): Delete.
1987 * arch-utils.h (deprecated_init_frame_pc_default): Delete.
1988
1989 2004-08-04 Mark Kettenis <kettenis@gnu.org>
1990
1991 * i386obsd-tdep.c (i386obsd_sigtramp_p): Adjust for changed signal
1992 trampoline in OpenBSD 3.5-current.
1993
1994 * i387-tdep.c (i387_supply_fsave): Provide summy values for the
1995 SSE registers.
1996
1997 * Makefile.in: Remove embedded page breaks.
1998
1999 2004-08-04 Jim Blandy <jimb@redhat.com>
2000
2001 * regcache.c (regcache_raw_read): Assert that, after calling
2002 target_fetch_registers, the register we're reading is cached.
2003
2004 * ppc-linux-nat.c (fetch_register): Replace 'gdb_assert (0)' with
2005 a call to 'internal_error', with a more helpful error message.
2006 * rs6000-tdep.c (e500_pseudo_register_read,
2007 e500_pseudo_register_write, rs6000_store_return_value): Same.
2008
2009 2004-08-04 Andrew Cagney <cagney@gnu.org>
2010
2011 * Makefile.in: Update dependencies.
2012
2013 2004-08-04 Jim Blandy <jimb@redhat.com>
2014
2015 Change the layout of the PowerPC E500 raw register cache to allow
2016 the lower 32-bit halves of the GPRS to be their own raw registers,
2017 not pseudoregisters.
2018 * ppc-tdep.h (struct gdbarch_tdep): Remove ppc_gprs_pseudo_p flag;
2019 add ppc_ev0_upper_regnum flag.
2020 * rs6000-tdep.c: #include "reggroups.h".
2021 (spe_register_p): Recognize the ev upper half registers as SPE
2022 registers.
2023 (init_sim_regno_table): Build gdb->sim mappings for the upper-half
2024 registers.
2025 (e500_move_ev_register): New function.
2026 (e500_pseudo_register_read, e500_pseudo_register_write): The 'ev'
2027 vector registers are the pseudo-registers now, formed by splicing
2028 together the gprs and the upper-half registers.
2029 (e500_register_reggroup_p): New function.
2030 (P): Macro deleted.
2031 (P8, A4): New macro.
2032 (PPC_EV_REGS, PPC_GPRS_PSEUDO_REGS): Macros deleted.
2033 (PPC_SPE_GP_REGS, PPC_SPE_UPPER_GP_REGS, PPC_EV_PSEUDO_REGS): New
2034 macros.
2035 (registers_e500): Rearrange register set so that the raw register
2036 set contains 32-bit GPRs and upper-half registers, and the SPE
2037 vector registers become pseudo-registers.
2038 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gprs_pseudo_p;
2039 it has been deleted. Initialize ppc_ev0_upper_regnum. Many other
2040 register numbers are now the same for the E500 as they are for
2041 other PowerPC variants. Register e500_register_reggroup_p as the
2042 register group function for the E500.
2043 * Makefile.in (rs6000-tdep.o): Update dependencies.
2044
2045 Adapt PPC E500 native support to the new raw regcache layout.
2046 * ppc-linux-nat.c (struct gdb_evrregset_t): Doc fixes.
2047 (read_spliced_spe_reg, write_spliced_spe_reg): Deleted.
2048 (fetch_spe_register, store_spe_register): Handle fetching/storing
2049 all the SPE registers at once, if regno == -1. These now take
2050 over the job of fetch_spe_registers and store_spe_registers.
2051 (fetch_spe_registers, store_spe_registers): Deleted.
2052 (fetch_ppc_registers, store_ppc_registers): Fetch/store gprs
2053 unconditionally; they're always raw. Fetch/store SPE upper half
2054 registers, if present, instead of ev registers.
2055 (fetch_register, store_register): Remove sanity checks: gprs are
2056 never pseudo-registers now, so we never need to even mention any
2057 registers that are ever pseudoregisters.
2058
2059 Use a fixed register numbering when communicating with the PowerPC
2060 simulator.
2061 * ppc-tdep.h (struct gdbarch_tdep): New member: 'sim_regno'.
2062 * rs6000-tdep.c: #include "sim-regno.h" and "gdb/sim-ppc.h".
2063 (set_sim_regno, init_sim_regno_table, rs6000_register_sim_regno):
2064 New functions.
2065 (rs6000_gdbarch_init): Register rs6000_register_sim_regno. Call
2066 init_sim_regno_table.
2067 * Makefile.in (gdb_sim_ppc_h): New variable.
2068 (rs6000-tdep.o): Update dependencies.
2069
2070 2004-08-02 Andrew Cagney <cagney@gnu.org>
2071
2072 * cris-tdep.c (cris_register_size): Restore function, still used
2073 locally.
2074
2075 * gdbarch.sh (deprecated_target_read_fp)
2076 (deprecated_frame_locals_address, deprecated_frame_args_address)
2077 (deprecated_frame_chain_valid, deprecated_frame_chain)
2078 (deprecated_init_extra_frame_info, deprecated_pop_frame)
2079 (deprecated_frame_init_saved_regs, deprecated_get_saved_register)
2080 (deprecated_do_registers_info, deprecated_init_frame_pc): Delete.
2081 * gdbarch.h, gdbarch.c: Re-generate.
2082 * regcache.c (deprecated_read_fp): Do not call
2083 DEPRECATED_TARGET_READ_FP_P.
2084 * infcmd.c (default_print_registers_info): Do not call
2085 DEPRECATED_DO_REGISTERS_INFO.
2086 * frame-base.c (default_frame_locals_address): Do not call
2087 DEPRECATED_FRAME_LOCALS_ADDRESS.
2088 (default_frame_args_address): Do not call
2089 DEPRECATED_FRAME_ARGS_ADDRESS.
2090
2091 * gdbarch.sh (deprecated_register_raw_size)
2092 (deprecated_register_virtual_size:int): Delete.
2093 * gdbarch.h, gdbarch.c: Re-generate.
2094 * cris-tdep.c (cris_register_size): Delete.
2095 (cris_gdbarch_init): Update.
2096 * alpha-tdep.c (alpha_register_raw_size)
2097 (alpha_register_virtual_size): Delete.
2098 (alpha_gdbarch_init): Update.
2099
2100 * gdbarch.sh (deprecated_register_virtual_type)
2101 (deprecated_save_dummy_frame_tos, deprecated_push_return_address)
2102 (deprecated_dummy_write_sp): Delete.
2103 * gdbarch.h, gdbarch.c: Re-generate.
2104
2105 * gdbarch.sh (deprecated_register_bytes): Delete.
2106 * gdbarch.h, gdbarch.c: Re-generate.
2107 * regcache.c (deprecated_register_bytes): New function.
2108 * regcache.h (deprecated_register_bytes): Declare.
2109 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2110 * v850-tdep.c (v850_gdbarch_init): Update.
2111 * sh64-tdep.c (sh64_gdbarch_init): Update.
2112 * ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
2113 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2114 * mcore-tdep.c (mcore_gdbarch_init): Update.
2115 * cris-tdep.c (cris_gdbarch_init): Update.
2116 * arm-tdep.c (arm_gdbarch_init): Update.
2117 * remote.c (init_remote_state): Update.
2118 * remote-vx.c (vx_prepare_to_store): Update.
2119 * remote-sds.c (sds_fetch_registers, sds_prepare_to_store): Update.
2120 * irix5-nat.c (fetch_core_registers): Update.
2121 * cris-tdep.c (cris_register_bytes_ok): Update.
2122 * config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
2123
2124 * mips-tdep.c (mips_gdbarch_init, mips_insn16_frame_cache)
2125 (mips_insn16_frame_this_id, mips_insn16_frame_prev_register)
2126 (mips_insn16_frame_unwind, mips_insn16_frame_sniffer)
2127 (mips_insn16_frame_base_address, mips_insn16_frame_base)
2128 (mips_insn16_frame_base_sniffer, mips_insn32_frame_cache)
2129 (mips_insn32_frame_this_id, mips_insn32_frame_prev_register)
2130 (mips_insn32_frame_unwind, mips_insn32_frame_sniffer)
2131 (mips_insn32_frame_base_address, mips_insn32_frame_base)
2132 (mips_insn32_frame_base_sniffer): Replace mips16 / mips32 prefix
2133 with mips_insn16 and mips_insn32.
2134
2135 Replace DEPRECATED_REGISTER_RAW_SIZE with register_size.
2136 * rs6000-tdep.c (rs6000_push_dummy_call)
2137 (rs6000_extract_return_value): Use register_size.
2138 * xstormy16-tdep.c (xstormy16_get_saved_register)
2139 (xstormy16_extract_return_value): Ditto.
2140 * valops.c (value_assign): Ditto.
2141 * v850ice.c (v850ice_fetch_registers, v850ice_store_registers):
2142 * v850-tdep.c (v850_extract_return_value): Ditto.
2143 * tracepoint.c (collect_symbol): Ditto.
2144 * target.c (debug_print_register): Ditto.
2145 * stack.c (frame_info): Ditto.
2146 * rs6000-nat.c (ARCH64, fetch_register, store_register): Ditto.
2147 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
2148 * remote.c (struct packet_reg, remote_wait, remote_async_wait)
2149 (store_register_using_P): Ditto.
2150 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
2151 * remote-sim.c (gdbsim_fetch_register, gdbsim_store_register): Ditto.
2152 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
2153 * remote-e7000.c (fetch_regs_from_dump, sub2_from_pc): Ditto.
2154 * regcache.c (deprecated_read_register_bytes)
2155 (deprecated_write_register_bytes, read_register)
2156 (write_register): Ditto.
2157 * ppc-linux-nat.c (fetch_altivec_register, fetch_register)
2158 (supply_vrregset, store_altivec_register, fill_vrregset): Ditto.
2159 * monitor.c (monitor_supply_register, monitor_fetch_register)
2160 (monitor_store_register): Ditto.
2161 * mn10300-tdep.c (mn10300_pop_frame_regular)
2162 (mn10300_print_register): Ditto.
2163 * mipsv4-nat.c (fill_fpregset): Ditto.
2164 * mips-linux-tdep.c (supply_32bit_reg, fill_fpregset)
2165 (mips64_fill_fpregset): Ditto.
2166 * mi/mi-main.c (register_changed_p, get_register)
2167 (mi_cmd_data_write_register_values): Ditto.
2168 * lynx-nat.c (fetch_inferior_registers, store_inferior_registers):
2169 * irix5-nat.c (fill_gregset, fetch_core_registers):
2170 * infrun.c (write_inferior_status_register): Ditto.
2171 * infptrace.c (fetch_register, store_register): Ditto.
2172 * infcmd.c (default_print_registers_info): Ditto.
2173 * ia64-linux-nat.c (COPY_REG, fill_fpregset): Ditto.
2174 * ia64-aix-nat.c (COPY_REG, fill_gregset): Ditto.
2175 * i386gnu-nat.c (gnu_store_registers, fill): Ditto.
2176 * hpux-thread.c (hpux_thread_fetch_registers)
2177 (hpux_thread_store_registers): Ditto.
2178 * hppah-nat.c (store_inferior_registers, fetch_register):
2179 * findvar.c (value_from_register): Ditto.
2180 * dve3900-rom.c (fetch_bitmapped_register):
2181 * cris-tdep.c (cris_gdbarch_init): Ditto.
2182 * alpha-tdep.h: Ditto.
2183 * aix-thread.c (pd_enable, fill_sprs64, fill_sprs32): Ditto.
2184
2185 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_SIZE and
2186 DEPRECATED_REGISTER_RAW_SIZE from comments.
2187 * regcache.c (init_regcache_descr, regcache_dump): Do not check or
2188 use DEPRECATED_REGISTER_VIRTUAL_SIZE and
2189 DEPRECATED_REGISTER_RAW_SIZE.
2190 * findvar.c (value_of_register): Simplify by assuming that the
2191 registers raw and virtual sizes are identical.
2192 * regcache.h: Delete DEPRECATED_REGISTER_VIRTUAL_TYPE in
2193 comment.
2194 * arch-utils.c (generic_register_size): Simplify by assuming
2195 register_type.
2196
2197 * regcache.c (legacy_read_register_gen, real_register)
2198 (legacy_write_register_gen): Delete, not used.
2199
2200 * regcache.c (struct regcache_descr): Delete legacy_p.
2201 (init_legacy_regcache_descr): Delete function.
2202 (init_regcache_descr): Delete call to init_legacy_regcache_descr.
2203 Do not use deprecated register functions.
2204 (regcache_raw_read, deprecated_write_register_gen):
2205 (deprecated_read_register_gen, regcache_raw_write): Delete code
2206 predicated on legacy_p.
2207 (register_size): Delete check against register raw size.
2208
2209 * cris-tdep.c (cris_register_type): Replace
2210 cris_register_virtual_type.
2211 (cris_gdbarch_init): Update, set register_type.
2212
2213 * gdbarch.sh (deprecated_frameless_function_invocation): Delete.
2214 * gdbarch.h, gdbarch.c: Re-generate.
2215 * arm-tdep.c (arm_frameless_function_invocation): Delete.
2216 (arm_gdbarch_init) Do not set frameless function invocation.
2217 * frame.h (legacy_frameless_look_for_prologue): Delete declaration.
2218 * blockframe.c (legacy_frameless_look_for_prologue): Delete function.
2219 * frv-tdep.c (frv_frameless_function_invocation): Delete.
2220 (frv_gdbarch_init): Do not set frameless function invocation.
2221 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
2222 * sh-tdep.c (sh_gdbarch_init): Ditto.
2223 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
2224 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
2225 * avr-tdep.c (avr_gdbarch_init): Ditto.
2226
2227 * blockframe.c (legacy_frame_chain_valid): Delete function.
2228
2229 * dummy-frame.c (struct dummy_frame): Delete call_lo, call_hi, top
2230 and pc. Update comments.
2231 (pc_in_dummy_frame): Delete function.
2232 (deprecated_pc_in_call_dummy): Inline old pc_in_dummy_frame code,
2233 use the "id".
2234 (dummy_frame_push, dummy_frame_sniffer): Instead of call_lo,
2235 call_hi, top and pc, use the id.
2236 (fprint_dummy_frames): Do not print call_lo, call_hi, top and pc.
2237
2238 * dummy-frame.c: Include "gdb_string.h".
2239 (generic_save_call_dummy_addr, generic_push_dummy_frame)
2240 (generic_save_dummy_frame_tos): Delete.
2241 (dummy_frame_push): New function, replaces above.
2242 * dummy-frame.h: Update copyright.
2243 (dummy_frame_push): Declare.
2244 * frame.h (generic_save_dummy_frame_tos, generic_push_dummy_frame)
2245 (generic_save_call_dummy_addr): Delete declarations.
2246 * infcall.c: Include "dummy-frame.h".
2247 (call_function_by_hand): Add locals caller_regcache,
2248 caller_regcache_cleanup and dummy_id. Replace push_dummy_frame
2249 with call to frame_save_as_regcache plus cleanup. Delete calls to
2250 generic_save_call_dummy_addr and generic_save_dummy_frame_tos.
2251 Move clear_proceed_status to just before the resume, add call to
2252 dummy_frame_push (discard cleanup).
2253 * Makefile.in (infcall.o): Add $(dummy_frame_h).
2254 (dummy-frame.o): Add $(gdb_string_h).
2255
2256 2004-08-01 Andrew Cagney <cagney@gnu.org>
2257
2258 * dummy-frame.h (dummy_frame_unwind): Replace dummy_frame_sniffer.
2259 * frame-unwind.c (frame_unwind_init): Use dummy_frame_unwind.
2260 * dummy-frame.c (find_dummy_frame): Delete.
2261 (struct dummy_frame_cache, dummy_frame_sniffer)
2262 (dummy_frame_prev_register, dummy_frame_this_id)
2263 (dummy_frame_unwinder, dummy_frame_unwind): Re-implement dummy
2264 frame unwinder using a dummy_frame_cache.
2265
2266 2004-08-01 Andrew Cagney <cagney@gnu.org>
2267
2268 * frame.h (frame_save_as_regcache): Declare.
2269 * frame.c (frame_save_as_regcache): New function.
2270 (do_frame_read_register): Replace do_frame_unwind_register.
2271 (frame_pop): Use frame_save_as_regcache.
2272 * dummy-frame.c (generic_push_dummy_frame): Use
2273 frame_save_as_regcache.
2274
2275 2004-08-01 Joel Brobecker <brobecker@gnat.com>
2276
2277 * dwarf2read.c (dwarf_decode_lines): Do not consider the current
2278 file as included until we record the first line in the linetable.
2279
2280 2004-08-01 Andrew Cagney <cagney@gnu.org>
2281
2282 * frame.h (deprecated_pop_dummy_frame)
2283 (deprecated_read_register_dummy)
2284 (deprecated_generic_find_dummy_frame): Delete.
2285 * dummy-frame.c (deprecated_generic_find_dummy_frame)
2286 (deprecated_read_register_dummy)
2287 (deprecated_find_dummy_frame_regcache)
2288 (discard_innermost_dummy)
2289 (deprecated_pop_dummy_frame): Delete.
2290 (dummy_frame_this_id): Simplify.
2291 (struct dummy_frame): Delete "fp" and "sp".
2292 (find_dummy_frame): Simplify.
2293 (generic_push_dummy_frame): Do not set "fp" or "sp".
2294 (fprint_dummy_frames): Do not print "fp" and "sp"
2295
2296 2004-08-01 Mark Kettenis <kettenis@gnu.org>
2297
2298 * i386-tdep.c (I386_MAX_INSN_LEN): New define.
2299 (struct i386_insn): New structure.
2300 (i386_match_insn): New function.
2301 (i386_frame_setup_skip_insns): New variable.
2302 (i386_analyze_frame_setup): Change to use i386_match_insn and the
2303 array i386_frame_setup_insns of instructions that should be
2304 skipped inside the frame setup sequence.
2305
2306 2004-08-01 Andrew Cagney <cagney@gnu.org>
2307
2308 * frame.h (deprecated_frame_xmalloc_with_cleanup)
2309 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
2310 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
2311 * stack.c (frame_info): Delete references to
2312 DEPRECATED_FRAME_INIT_SAVED_REGS and
2313 deprecated_get_frame_saved_regs.
2314 * frame.c (struct frame_info): Delete saved_regs and extra_info.
2315 (frame_pc_unwind): Do not use DEPRECATED_FRAME_SAVED_PC.
2316 (frame_register): Do not use DEPRECATED_GET_SAVED_REGISTER.
2317 (frame_unwind_register_signed)
2318 (frame_unwind_register_unsigned)
2319 (frame_unwind_unsigned_register): Use register_size.
2320 (create_new_frame): Do not use DEPRECATED_INIT_EXTRA_FRAME_INFO.
2321 (deprecated_frame_xmalloc_with_cleanup)
2322 (frame_saved_regs_zalloc, frame_extra_info_zalloc)
2323 (get_frame_extra_info, deprecated_get_frame_saved_regs): Delete.
2324
2325 * sh-tdep.c (sh_gdbarch_init): Disable call to sh64_gdbarch_init.
2326 * config/sh/nbsd.mt (TDEPFILES): Remove sh64-tdep.o.
2327 * config/sh/linux.mt (TDEPFILES): Remove sh64-tdep.o.
2328 * config/sh/embed.mt (TDEPFILES): Remove sh64-tdep.o.
2329
2330 * infcall.c (call_function_by_hand): Do not use
2331 DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP,
2332 DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_TARGET_READ_FP,
2333 DEPRECATED_FP_REGNUM, DEPRECATED_STORE_STRUCT_RETURN, and
2334 DEPRECATED_STACK_ALIGN.
2335
2336 2004-07-30 Ramana Radhakrishnan <ramana.radhakrishnan@codito.com>
2337
2338 Committed by Andrew Cagney.
2339 * arm-tdep.c: Remove references to add_setshow_cmd_full for apcs32 .
2340
2341 2004-08-01 Andrew Cagney <cagney@gnu.org>
2342
2343 * mips-tdep.c (mips16_frame_cache)
2344 (mips16_frame_this_id, mips16_frame_prev_register)
2345 (mips16_frame_unwind, mips16_frame_sniffer)
2346 (mips16_frame_base_address, mips16_frame_base)
2347 (mips16_frame_base_sniffer, mips32_frame_cache)
2348 (mips32_frame_this_id, mips32_frame_prev_register)
2349 (mips32_frame_unwind, mips32_frame_sniffer)
2350 (mips32_frame_base_address, mips32_frame_base)
2351 (mips32_frame_base_sniffer): Clone the mdebug unwinder into
2352 separate heuristic mips16 and mips32 unwinders.
2353 (mips_stub_frame_cache, mips_stub_frame_this_id)
2354 (mips_stub_frame_prev_register)
2355 (mips_stub_frame_unwind, mips_stub_frame_sniffer)
2356 (mips_stub_frame_base_address, mips_stub_frame_base)
2357 (mips_stub_frame_base_sniffer): Add a simple stub unwinder.
2358 (mips_mdebug_frame_base_sniffer, mips_mdebug_frame_sniffer): Only
2359 match true mdebug frames.
2360 (non_heuristic_proc_desc): Add forward declaration.
2361
2362 2004-08-01 Andrew Cagney <cagney@gnu.org>
2363
2364 * config/mips/tm-irix6.h: Delete file.
2365 * config/mips/tm-irix5.h: Delete file.
2366 * config/mips/irix5.mt (TM_FILE): Set to tm-mips.h
2367 * config/mips/irix6.mt (TM_FILE): Set to tm-mips.h
2368
2369 * config/ia64/tm-linux.h (IA64_GNULINUX_TARGET): Delete.
2370 * config/alpha/nm-osf2.h (PROCFS_SIGPEND_OFFSET): Delete.
2371 * config/nm-gnu.h (NO_CORE_OPS): Delete.
2372 * config/pa/nm-hppah.h (MAY_SWITCH_FROM_INFERIOR_PID): Delete.
2373 * config/i386/nm-i386v4.h (LOSING_POLL): Delete.
2374 * config/alpha/nm-osf2.h (LOSING_POLL): Delete.
2375 * config/tm-nto.h (RAW_SIGNAL_LO, RAW_SIGNAL_HI): Delete.
2376 * config/m68k/tm-vx68.h (VX_SIZE_FPREGS): Delete.
2377 * config/nm-linux.h (USE_THREAD_STEP_NEEDED): Delete.
2378 * config/pa/nm-hppah.h (USE_THREAD_STEP_NEEDED): Delete.
2379 * config/tm-nto.h (TARGET_SIGNAL_RAW_TABLE) Delete.
2380 (TARGET_SIGNAL_RAW_VALUES): Delete.
2381 * config/pa/nm-hppah.h (TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT):
2382 Delete.
2383 * config/frv/tm-frv.h (TARGET_HW_BREAK_LIMIT)
2384 (TARGET_HW_WATCH_LIMIT): Delete.
2385 * Makefile.in (minimon_h, HFILES_NO_SRCDIR): Remove minimon.h.
2386 * minimon.h: Delete file.
2387
2388 * trad-frame.c (trad_frame_get_this_base)
2389 (trad_frame_set_this_base, trad_frame_set_reg_realreg): New
2390 functions.
2391 * trad-frame.h (trad_frame_set_this_base)
2392 (trad_frame_get_this_base, trad_frame_set_reg_realreg): Declare.
2393
2394 2004-07-31 Andrew Cagney <cagney@gnu.org>
2395
2396 * trad-frame.c (trad_frame_get_prev_register): Rename
2397 trad_frame_get_prev_register.
2398 * vax-tdep.c (vax_frame_prev_register): Update.
2399 * trad-frame.h: Update.
2400 * trad-frame.c (trad_frame_get_register): Update.
2401 * sparcobsd-tdep.c (sparc32obsd_frame_prev_register): Update.
2402 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_prev_register):
2403 Update.
2404 * sparc64obsd-tdep.c (sparc64obsd_frame_prev_register): Update.
2405 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_prev_register):
2406 Update.
2407 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_prev_register):
2408 Update.
2409 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_prev_register):
2410 Update.
2411 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_prev_register):
2412 Update.
2413 * sparc-linux-tdep.c (sparc32_linux_sigtramp_frame_prev_register):
2414 Update.
2415 * s390-tdep.c (s390_frame_prev_register)
2416 (s390_stub_frame_prev_register)
2417 (s390_sigtramp_frame_prev_register): Update.
2418 * rs6000-tdep.c (rs6000_frame_prev_register): Update.
2419 * ppc-linux-tdep.c (ppc_linux_sigtramp_prev_register): Update.
2420 * mips-tdep.c (mips_mdebug_frame_prev_register): Update.
2421 * m88k-tdep.c (m88k_frame_prev_register)
2422 * m68hc11-tdep.c (m68hc11_frame_prev_register)
2423 * m32r-tdep.c (m32r_frame_prev_register): Update.
2424 * hppa-tdep.c (hppa_frame_prev_register_helper)
2425 * frv-tdep.c (frv_frame_prev_register): Update.
2426 * d10v-tdep.c (d10v_frame_prev_register): Update.
2427 * cris-tdep.c (cris_frame_prev_register): Update.
2428 * avr-tdep.c (avr_frame_prev_register): Update.
2429 * arm-tdep.c (arm_prologue_prev_register)
2430 (arm_sigtramp_prev_register): Update.
2431
2432 2004-07-31 Andrew Cagney <cagney@gnu.org>
2433
2434 * frame.h (legacy_saved_regs_unwind)
2435 (legacy_frame_chain_valid, legacy_frame_p)
2436 (enum frame_type): Delete UNKNOWN_FRAME.
2437 * dummy-frame.c (dummy_frame_this_id): Simplify.
2438 * frame-unwind.c (frame_unwind_find_by_frame): Simplify.
2439 * frame.c (struct frame_info): Delete the field "type".
2440 (legacy_saved_regs_prev_register, legacy_get_prev_frame)
2441 (legacy_saved_regs_this_id, legacy_saved_regs_unwinder)
2442 (legacy_saved_regs_unwind, legacy_frame_p)
2443 (frame_type_from_pc): Delete.
2444 (get_frame_id, frame_pop, frame_register_unwind, get_prev_frame_1)
2445 (fprint_frame, create_new_frame, fprint_frame_type): Simplify.
2446
2447 2004-07-31 Mark Kettenis <kettenis@gnu.org>
2448
2449 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Fix
2450 indentation.
2451
2452 * mips-nat.c: Remove file.
2453 * Makefile.in (ALLDEPFILES): Remove mips-nat.c
2454 (mips-nat.o): Remove dependency.
2455
2456 * infptrace.c: Update copyright year.
2457 (fetch_register): Pass NULL in regcache_raw_supply call instead of
2458 explicitly setting the buffer to all zeroes.
2459
2460 * sparc64obsd-tdep.c (sparc64obsd_sigreturn_offset): New variable.
2461 (sparc64obsd_pc_in_sigtramp): Reorganize to avoid goto.
2462
2463 2004-07-30 Andrew Cagney <cagney@gnu.org>
2464
2465 * GDB 6.2 released from gdb_6_2-branch.
2466
2467 2004-07-30 Baurjan Ismagulov <ibr@ata.cs.hun.edu.tr>
2468
2469 * defs.h (OPF_TRY_CWD_FIRST, OPF_SEARCH_IN_PATH): New macros.
2470
2471 * exec.c (exec_file_attach):
2472 * nto-tdep.c (nto_find_and_open_solib):
2473 * pa64solib.c (pa64_solib_sizeof_symbol_table):
2474 * solib.c (solib_open):
2475 * somsolib.c (som_solib_sizeof_symbol_table):
2476 * source.c (is_regular_file, openp, open_source_file):
2477 * symfile.c (symfile_bfd_open):
2478 * wince.c (upload_to_device): Differentiate between the search for
2479 binary and source files.
2480
2481 2004-07-30 Andrew Cagney <cagney@gnu.org>
2482
2483 * complaints.c (_initialize_complaints): Pass NULL to
2484 add_setshow_zinteger_cmd for help_doc.
2485 * cli/cli-decode.c (add_setshow_cmd_full): Handle a NULL help_doc.
2486
2487 2004-07-30 Andrew Cagney <cagney@gnu.org>
2488
2489 Fix PR i18n/761.
2490 * Makefile.in (.SUFFIXES): Add po .gmo, and .pox.
2491 (.PHONY): Add all-po install-po, uninstall-po, clean-po,
2492 $(PACKAGE).pot and update-po.
2493 (all-po, .po.gmo, .po.pox, install-po, $(PACKAGE).pot)
2494 (po/$(PACKAGE).pot, clean-po, uninstall-po, install-po)
2495 (update-po): New rules.
2496 (localedir): Define using autoconf.
2497 (diststuff): Add $(PACKAGE).pot and $(CATALOGS)
2498 (GDB_CFLAGS): Define LOCALEDIR using $(localedir).
2499 (XGETTEXT, GMSGFMT, MSGMERGE, PACKAGE, CATALOGS): Define.
2500 * configure.in: Generate CATALOGS and LINGUAS from contents of
2501 src/gdb/po/ directory. Set @localedir@ in Makefile.in.
2502 * configure: Re-generate.
2503 * po/gdbtext: New file
2504
2505 2004-07-30 Jerome Guitton <guitton@gnat.com>
2506
2507 * MAINTAINERS: Reorder Write After Approval list in alphabetical
2508 order.
2509
2510 2004-07-30 David Lecomber <dsl@sources.redhat.com>
2511
2512 * dwarf2read.c (read_file_scope): Set producer if attribute
2513 present.
2514 (struct dwarf2_cu): Added new member producer.
2515
2516 2004-07-30 Jerome Guitton <guitton@gnat.com>
2517
2518 * inflow.c (kill_command): release file handles in BFD.
2519 * exec.c (exec_file_attach): Ditto.
2520 * symfile.c (symbol_file_add_with_addrs_or_offsets): Ditto.
2521
2522 2004-07-29 Andrew Cagney <cagney@gnu.org>
2523
2524 * PROBLEMS (mips-irix): Note that it is broken.
2525
2526 2004-07-29 Andrew Cagney <cagney@gnu.org>
2527
2528 * config/mips/xm-irix5.h (REGISTER_U_ADDR): Move from here ...
2529 * config/mips/nm-irix5.h (REGISTER_U_ADDR): ... to here.
2530
2531 * config/xm-nbsd.h: Delete file.
2532 * config/arm/xm-nbsd.h: Delete file.
2533 * config/i386/xm-nbsd.h: Delete file.
2534 * config/ns32k/xm-nbsd.h: Delete file.
2535 * config/ns32k/nbsdaout.mh (XM_FILE): Delete.
2536 * config/i386/nbsdelf.mh (XM_FILE): Delete.
2537 * config/i386/nbsdaout.mh (XM_FILE): Delete.
2538 * config/arm/nbsdelf.mh (XM_FILE): Delete.
2539 * config/arm/nbsdaout.mh (XM_FILE): Delete.
2540
2541 * config/i386/xm-i386v.h (KERNEL_U_ADDR): Move from here ...
2542 * config/i386/nm-i386v42mp.h (KERNEL_U_ADDR): ... to here, ...
2543 * config/i386/nm-i386v4.h (KERNEL_U_ADDR): ... here, ...
2544 * config/i386/nm-i386v.h (KERNEL_U_ADDR): ... and here.
2545 * config/vax/xm-vax.h (KERNEL_U_ADDR): Move from here ...
2546 * config/vax/nm-vax.h (KERNEL_U_ADDR): ... to here.
2547
2548 * config/powerpc/xm-linux.h: Delete empty file.
2549 * config/powerpc/ppc64-linux.mh (XM_FILE): Delete.
2550 * config/powerpc/linux.mh (XM_FILE): Delete.
2551 * config/m68k/xm-linux.h: Delete empty file.
2552 * config/m68k/linux.mh (XM_FILE): Delete.
2553 * config/ia64/xm-linux.h: Delete empty file.
2554 * config/ia64/linux.mh (XM_FILE): Delete.
2555 * config/arm/xm-linux.h: Delete empty file.
2556 * config/arm/linux.mh (XM_FILE): Delete.
2557
2558 * config/powerpc/xm-linux.h (KERNEL_U_ADDR): Move from here ...
2559 * config/powerpc/nm-linux.h (KERNEL_U_ADDR): ... to here.
2560 * config/m68k/xm-linux.h (KERNEL_U_ADDR): Move from here ...
2561 * config/m68k/nm-linux.h (KERNEL_U_ADDR): ... to here.
2562 * config/ia64/xm-linux.h (KERNEL_U_ADDR): Move from here ...
2563 * config/ia64/nm-linux.h (KERNEL_U_ADDR): ... to here.
2564 * config/arm/xm-linux.h (KERNEL_U_ADDR): Move from here ...
2565 * config/arm/nm-linux.h (KERNEL_U_ADDR): ... to here.
2566
2567 * config/m68k/xm-m68k.h: Delete file.
2568 * config/m68k/xm-linux.h: Do not include "m68k/xm-m68k.h". Update
2569 copyright.
2570 (HOST_LONG_DOUBLE_FORMAT): Delete macro.
2571 * config/pa/xm-linux.h: Delete empty file.
2572 * config/pa/linux.mh (XM_FILE): Delete.
2573 * config/i386/xm-i386.h: Delete empty file.
2574 * config/i386/xm-nbsd.h, config/i386/xm-go32.h: Do not include
2575 "i386/xm-i386.h".
2576 * config/i386/obsdaout.mh (XM_FILE): Delete.
2577 * config/i386/obsd64.mh (XM_FILE): Delete.
2578 * config/i386/fbsd64.mh (XM_FILE): Delete.
2579 * config/i386/nto.mh (XM_FILE): Delete.
2580 * config/i386/obsd.mh (XM_FILE): Delete.
2581 * config/i386/linux64.mh (XM_FILE): Delete.
2582 * config/i386/linux.mh (XM_FILE): Delete.
2583 * config/i386/i386sol2.mh (XM_FILE): Delete.
2584 * config/i386/i386gnu.mh (XM_FILE): Delete.
2585 * config/i386/fbsd.mh (XM_FILE): Delete.
2586 * config/i386/nbsd64.mh (XM_FILE): Delete.
2587
2588 2004-07-29 Andrew Cagney <cagney@gnu.org>
2589
2590 * config/pa/xm-linux.h: Do not include "floatformat.h".
2591 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
2592 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
2593 * config/i386/xm-i386.h: Do not include "floatformat.h".
2594 (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
2595 (HOST_LONG_DOUBLE_FORMAT): Delete macros.
2596 * doublest.c (HOST_FLOAT_FORMAT, HOST_DOUBLE_FORMAT)
2597 (HOST_LONG_DOUBLE_FORMAT): Delete macros. Use
2598 GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT and
2599 GDB_HOST_LONG_DOUBLE_FORMAT instead.
2600 * configure.in (GDB_HOST_FLOAT_FORMAT, GDB_HOST_DOUBLE_FORMAT)
2601 (GDB_HOST_LONG_DOUBLE_FORMAT): Define.
2602 * configure, config.in: Regenerate.
2603 * configure.host (gdb_host_float_format, gdb_host_double_format)
2604 (gdb_host_long_double_format): Set according to the host.
2605
2606 2004-07-29 Andrew Cagney <cagney@gnu.org>
2607
2608 * Makefile.in (CONFIG_CLEAN): Delete duplicate definition.
2609
2610 2004-07-28 Andrew Cagney <cagney@gnu.org>
2611
2612 * PROBLEMS: Mention threads/1650.
2613 * NEWS: Mention the NPTL fix.
2614
2615 2004-07-28 Andrew Cagney <cagney@gnu.org>
2616
2617 * cli/cli-decode.c (add_setshow_cmd): Delete function.
2618 (add_setshow_cmd_full): Make static.
2619 * command.h (add_setshow_cmd, add_setshow_cmd_full): Delete.
2620 (add_setshow_filename_cmd, add_setshow_string_cmd): Declare.
2621 * cli/cli-decode.c (add_setshow_filename_cmd)
2622 (add_setshow_string_cmd): New functions.
2623 * nto-tdep.c (_initialize_nto_tdep): Update. Fix parameters.
2624 * mips-tdep.c (_initialize_mips_tdep): Update.
2625 * m32r-rom.c (_initialize_m32r_rom): Update. Update copyright.
2626 * cli/cli-logging.c (_initialize_cli_logging): Update.
2627 * complaints.c (_initialize_complaints): Update.
2628 * remote.c (_initialize_remote): Update.
2629
2630 2004-07-28 Andrew Cagney <cagney@gnu.org>
2631
2632 * cli/cli-decode.c (add_setshow_zinteger_cmd)
2633 (add_setshow_cmd, add_setshow_auto_boolean_cmd)
2634 (add_setshow_boolean_cmd, add_setshow_cmd_full): Add help_doc and
2635 print parameters. Make string parameters constant.
2636 * command.h: Update. Update copyright.
2637 * remote.c (add_packet_config_cmd, _initialize_remote): Ditto.
2638 * observer.c (_initialize_observer): Ditto.
2639 * frame.c (_initialize_frame): Ditto.
2640 * complaints.c (_initialize_complaints): Ditto.
2641 * maint.c (_initialize_maint_cmds): Ditto.
2642 * target.c (initialize_targets): Ditto.
2643 * cli/cli-logging.c (_initialize_cli_logging): Ditto.
2644 * infcall.c (_initialize_infcall): Ditto.
2645 * arm-tdep.c (_initialize_arm_tdep): Ditto.
2646 * m32r-rom.c (_initialize_m32r_rom): Ditto.
2647 * remote-rdi.c (_initialize_remote_rdi): Ditto.
2648 * d10v-tdep.c (_initialize_d10v_tdep): Ditto.
2649 * mips-tdep.c (_initialize_mips_tdep): Ditto.
2650
2651 2004-07-28 Andrew Cagney <cagney@gnu.org>
2652
2653 * gdbtypes.c (lookup_primitive_typename): Delete function.
2654 * gdbtypes.h (lookup_primitive_typename): Delete declaration.
2655 * ada-lex.l: Use language_lookup_primitive_type_by_name.
2656 * gdbtypes.c (lookup_typename): Ditto.
2657 * f-exp.y (yylex): Ditto.
2658 * c-exp.y (yylex): Ditto, eliminate assignment in "if".
2659
2660 * scm-lang.c (c_builtin_types): Delete extern declaration.
2661 (scm_language_defn): Replace
2662 string_char_type and primitive_type_vector with
2663 la_language_arch_info.
2664 * jv-lang.c (java_language_defn): Replace
2665 string_char_type and primitive_type_vector with
2666 la_language_arch_info.
2667 * config/i386/i386sco4.mh (NATDEPFILES): Remove reference to
2668 c_builtin_types in comment.
2669 * c-lang.h (struct language_arch_info): Declare opaque.
2670 (c_language_arch_info): Declare.
2671 (c_builtin_types): Delete declaration.
2672 * c-lang.c (c_language_arch_info): Set string_char_type to
2673 builtin_char, not builtin_true_char. Make global.
2674 (c_builtin_types): Delete array.
2675 (asm_language_defn, minimal_language_defn): Replace
2676 string_char_type and primitive_type_vector with
2677 la_language_arch_info.
2678
2679 2004-07-28 Andrew Cagney <cagney@gnu.org>
2680
2681 * gdbtypes.h (struct builtin_type): Rename true_char to
2682 builtin_true_char.
2683 * gdbtypes.c (gdbtypes_post_init): Update.
2684 * c-lang.c (arch_info): New function.
2685 (enum c_primitive_types): New enum.
2686 (c_language_defn): Instead of string_char_type and
2687 primitive_type_vector set la_language_arch_info.
2688
2689 2004-07-28 Andrew Cagney <cagney@gnu.org>
2690
2691 * language.h (struct language_arch_info): Fix typo
2692 s/primative/primitive/.
2693 * gdbtypes.c (lookup_primitive_typename): Ditto.
2694 * language.c (language_lookup_primitive_type_by_name)
2695 (unknown_language_arch_info): Ditto.
2696
2697 2004-07-27 Andrew Cagney <cagney@gnu.org>
2698
2699 * defs.h (enum language): Add nr_languages.
2700 * language.h (struct language_arch_info): Define.
2701 (struct language_defn): Add la_language_arch_info.
2702 (language_lookup_primative_type_by_name): Declare.
2703 (language_string_char_type): Declare.
2704 * language.c (_initialize_language, language_gdbarch_post_init)
2705 (struct language_gdbarch, language_gdbarch_data): Implement
2706 per-architecture language information.
2707 (unknown_language_arch_info, language_string_char_type)
2708 (language_lookup_primative_type_by_name): New functions.
2709 (unknown_language_defn, auto_language_defn)
2710 (local_language_defn): Set la_language_arch_info to
2711 unknown_language_arch_info.
2712 (unknown_builtin_types): Delete.
2713 * gdbtypes.c (lookup_primitive_typename): Use
2714 language_lookup_primative_type_by_name.
2715 (create_string_type): Use language_string_char_type.
2716 * values.c (value_from_string): Use language_string_char_type.
2717 * scm-lang.c (scm_language_defn): Add NULL la_language_arch_info.
2718 * p-lang.c (pascal_language_defn): Ditto.
2719 * m2-lang.c (m2_language_defn): Ditto.
2720 * jv-lang.c (java_language_defn): Ditto.
2721 * objc-lang.c (objc_language_defn): Ditto.
2722 * f-lang.c (f_language_defn): Ditto.
2723 * c-lang.c (c_language_defn, cplus_language_defn)
2724 (asm_language_defn, minimal_language_defn): Ditto.
2725
2726 2004-07-27 Andrew Cagney <cagney@gnu.org>
2727
2728 * gdbtypes.h (struct builtin_type): Declare.
2729 (builtin_type): Declare.
2730 * d10v-tdep.c (d10v_register_type): Use builtin_type.
2731 * gdbtypes.c (_initialize_gdbtypes): Register gdbtypes_post_init.
2732 (gdbtypes_post_init): New function.
2733 (builtin_type): New function.
2734
2735 2004-07-27 Kei Sakamoto <sakamoto.kei@renesas.com>
2736
2737 * remote-m32r-sdi.c: Fix breakpoint bug.
2738 (send_cmd, send_one_arg_cmd, send_two_arg_cmd, send_three_arg_cmd,
2739 recv_char_data, recv_long_data): New functions to replace communication
2740 sequences.
2741
2742 2004-07-26 Michael Chastain <mec.gnu@mindspring.com>
2743
2744 Document PR threads/1650.
2745 * PROBLEMS (Threads): Document problem with many threads
2746
2747 2004-07-26 Andrew Cagney <cagney@gnu.org>
2748
2749 * gdb-mi.el: Move from here ...
2750 * mi/gdb-mi.el: ... to here.
2751
2752 2004-07-26 Andrew Cagney <cagney@gnu.org>
2753
2754 Problem reported by Ashley Pittman <ashley@quadrics.com>.
2755 * main.c (captured_main): When in batch mode always detach.
2756
2757 2004-07-26 Andrew Cagney <cagney@gnu.org>
2758
2759 * MAINTAINERS: Mark the xstormy16, sh64, ns32k, mn10300, mcore,
2760 and h8300 as broken.
2761 * NEWS: END-OF-LIFE frame compatibility module.
2762 * PROBLEMS: For "Stack backtraces", remove powerpc, hppa and mips
2763 specific comments.
2764
2765 2004-07-26 Andrew Cagney <cagney@gnu.org>
2766
2767 * cli/cli-decode.c (deprecated_add_show_from_set): Deprecate.
2768 * xcoffsolib.c (_initialize_xcoffsolib): Update.
2769 * wince.c (_initialize_wince): Update.
2770 * win32-nat.c (_initialize_win32_nat): Update.
2771 * varobj.c (_initialize_varobj): Update.
2772 * valops.c (_initialize_valops): Update.
2773 * utils.c (initialize_utils, initialize_utils): Update.
2774 * tui/tui-win.c (_initialize_tui_win): Update.
2775 * top.c (init_main): Update.
2776 * symfile.c (_initialize_symfile): Update.
2777 * source.c (_initialize_source): Update.
2778 * somsolib.c (_initialize_som_solib): Update.
2779 * solib.c (_initialize_solib): Update.
2780 * solib-frv.c (_initialize_frv_solib): Update.
2781 * serial.c (_initialize_serial): Update.
2782 * ser-go32.c (_initialize_ser_dos, _initialize_ser_dos): Update.
2783 * remote.c (_initialize_remote, _initialize_remote): Update.
2784 * remote-vx.c (_initialize_vx): Update.
2785 * remote-utils.c (_initialize_sr_support): Update.
2786 * remote-sds.c (_initialize_remote_sds): Update.
2787 * remote-mips.c (_initialize_remote_mips): Update.
2788 * remote-e7000.c (_initialize_remote_e7000): Update.
2789 * proc-api.c (_initialize_proc_api): Update.
2790 * printcmd.c: Update.
2791 * parse.c (_initialize_parse): Update.
2792 * pa64solib.c (_initialize_pa64_solib): Update.
2793 * p-valprint.c (_initialize_pascal_valprint): Update.
2794 * monitor.c (_initialize_remote_monitors): Update.
2795 * mips-tdep.c (_initialize_mips_tdep): Update.
2796 * mcore-tdep.c (_initialize_mcore_tdep): Update.
2797 * maint.c (_initialize_maint_cmds): Update.
2798 * lin-lwp.c (_initialize_lin_lwp): Update.
2799 * language.c (_initialize_language): Update.
2800 * kod.c (_initialize_kod): Update.
2801 * infrun.c (set_schedlock_func, _initialize_infrun): Update.
2802 * i386-tdep.c (_initialize_i386_tdep): Update.
2803 * gdbtypes.c (build_gdbtypes, _initialize_gdbtypes): Update.
2804 * gdbarch.sh: Update.
2805 * gdbarch.c: Re-generate.
2806 * gdb-events.sh: Update.
2807 * gdb-events.c: Re-generate.
2808 * frame.c (_initialize_frame): Update.
2809 * exec.c: Update.
2810 * demangle.c (_initialize_demangler): Update.
2811 * dcache.c (_initialize_dcache): Update.
2812 * cris-tdep.c (_initialize_cris_tdep, cris_version_update): Update.
2813 * cp-valprint.c (_initialize_cp_valprint): Update.
2814 * corefile.c (_initialize_core): Update.
2815 * command.h: Update.
2816 * cli/cli-decode.h: Update.
2817 * cli/cli-cmds.c (init_cli_cmds): Update.
2818 * charset.c (_initialize_charset): Update.
2819 * breakpoint.c (_initialize_breakpoint): Update.
2820 * arm-tdep.c (_initialize_arm_tdep_initialize_arm_tdep): Update.
2821 * alpha-tdep.c (_initialize_alpha_tdep): Update.
2822 * aix-thread.c (_initialize_aix_thread): Update.
2823
2824 2004-07-24 Mark Kettenis <kettenis@gnu.org>
2825
2826 Partial fix for PR backtrace/1718.
2827 * i386-tdep.c (i386_analyze_frame_setup): Handle more instructions
2828 that GCC migrates into the prolugue. Don't handle any
2829 instructions that clobber %ebx.
2830
2831 2004-07-23 Andrew Cagney <cagney@gnu.org>
2832
2833 Use regcache_raw_collect instead of regcache_collect.
2834 * regcache.h (regcache_collect): Delete declaration.
2835 * regcache.c (regcache_colect): Delete function.
2836 * win32-nat.c (do_child_store_inferior_registers): Update.
2837 * sol-thread.c (sol_thread_store_registers): Update.
2838 * shnbsd-tdep.c (shnbsd_fill_reg): Update.
2839 * rs6000-nat.c (store_register): Update.
2840 * remote.c (store_register_using_P, remote_store_registers): Update.
2841 * ppcnbsd-tdep.c (ppcnbsd_fill_reg): Update.
2842 * ppc-linux-nat.c (store_altivec_register, store_spe_register)
2843 (fill_vrregset, store_spe_registers, fill_gregset)
2844 (fill_gregset): Update.
2845 * nto-procfs.c (procfs_store_registers): Update.
2846 * mipsnbsd-tdep.c (mipsnbsd_fill_reg): Update.
2847 * mips-linux-tdep.c (fill_gregset, mips64_fill_gregset): Update.
2848 * m68klinux-nat.c (store_register, fill_gregset): Update.
2849 * m68k-tdep.c (fill_gregset): Update.
2850 * infptrace.c (store_register): Update.
2851 * i386-nto-tdep.c (i386nto_regset_fill): Update.
2852 * i386-linux-nat.c (store_register, fill_gregset): Update.
2853 * hppa-linux-nat.c (fill_gregset): Update.
2854 * go32-nat.c (store_register): Update.
2855 * armnbsd-nat.c (store_register, store_regs, store_fp_register)
2856 (store_fp_regs): Update.
2857 * arm-linux-nat.c (store_nwfpe_single, store_nwfpe_double)
2858 (store_nwfpe_extended, store_fpregister, store_fpregs)
2859 (store_register, store_regs, fill_gregset, fill_fpregset): Update.
2860 * alpha-tdep.c (alpha_fill_int_regs, alpha_fill_fp_regs): Update.
2861 * aix-thread.c (fill_gprs64, fill_fprs, fill_sprs64, fill_sprs32)
2862 (store_regs_user_thread, store_regs_kernel_thread): Update.
2863
2864 2004-07-24 Mark Kettenis <kettenis@gnu.org>
2865
2866 * dwarf2-frame.c (struct dwarf2_cie): Delete `addr_size' member.
2867 (decode_frame_entry_1): Use DW_EH_PE_absptr as default for CIE
2868 encoding.
2869 (dwarf2_build_frame_info): Adjust for removal of `addr_size'
2870 member of `struct comp_unit'.
2871
2872 2004-07-23 Andrew Cagney <cagney@gnu.org>
2873
2874 * infrun.c (handle_inferior_event): Separate the STEP_OVER_ALL and
2875 DEPRECATED_IGNORE_HELPER_CALL cases, only #ifdef the latter.
2876
2877 2004-07-23 Martin Hunt <hunt@redhat.com>
2878 Kevin Buettner <kevinb@redhat.com>
2879
2880 * dwarf2-frame.c (execute_cfa_program): Fix typo in which the
2881 alignment was being added to the offset instead of multiplied.
2882
2883 2004-07-23 Mark Kettenis <kettenis@gnu.org>
2884
2885 * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Adjust for
2886 changed signal trampoline in OpenBSD 3.5-current.
2887
2888 * sparc64nbsd-nat.c: Include "regcache.h", <sys/types.h>,
2889 <machine/pcb.h> and "bsd-kvm.h".
2890 (sparc64nbsd_supply_pcb): New function.
2891 (_initialize_sparc64nbsd_nat): Renamed from
2892 _initialize_sparcnbsd_nat. Enable libkvm interface.
2893 * Makefile.in (sparc64nbsd-nat.o): Update dependencies.
2894 * config/sparc/nbsd64.mh (NATDEPFILES): Add bsd-kvm.o
2895 (LOADLIBES): New variable.
2896
2897 * config/sparc/obsd64.mt (TDEPFILES): Add sparcobsd-tdep.o.
2898
2899 * sparcnbsd-nat.c (sparc32nbsd_supply_pcb): Fix typo in comment.
2900
2901 2004-07-21 Andrew Cagney <cagney@gnu.org>
2902
2903 Use regcache_raw_supply instead of supply_register.
2904 * regcache.h (supply_register): Delete declaration.
2905 * regcache.c (supply_register): Delete function.
2906 * wince.c (do_child_fetch_inferior_registers): Update.
2907 * win32-nat.c (do_child_fetch_inferior_registers)
2908 (fetch_elf_core_registers): Update.
2909 * v850ice.c (v850ice_fetch_registers): Update.
2910 * thread-db.c (thread_db_store_registers): Update.
2911 * sol-thread.c (sol_thread_store_registers): Update.
2912 * shnbsd-tdep.c (shnbsd_supply_reg): Update.
2913 * rs6000-nat.c (fetch_register): Update.
2914 * rom68k-rom.c (rom68k_supply_one_register): Update.
2915 * remote.c (remote_wait, remote_async_wait): Update.
2916 * remote-st.c (get_hex_regs): Update.
2917 * remote-sim.c (gdbsim_fetch_register): Update.
2918 * remote-sds.c (sds_fetch_registers): Update.
2919 * remote-rdp.c (remote_rdp_fetch_register): Update.
2920 * remote-rdi.c (arm_rdi_fetch_registers): Update.
2921 * remote-mips.c (mips_wait, mips_fetch_registers): Update.
2922 * remote-m32r-sdi.c (m32r_fetch_register): Update.
2923 * remote-hms.c (init_hms_cmds): Update.
2924 * remote-est.c (init_est_cmds): Update.
2925 * remote-e7000.c (get_hex_regs, fetch_regs_from_dump)
2926 (e7000_fetch_registers, sub2_from_pc, e7000_wait): Update.
2927 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_supply_fpreg): Update.
2928 * ppc-linux-nat.c (fetch_altivec_register, fetch_spe_register)
2929 (fetch_register, supply_vrregset, supply_vrregset)
2930 (fetch_spe_registers): Update.
2931 * ppc-bdm.c (bdm_ppc_fetch_registers): Update.
2932 * monitor.c (monitor_supply_register): Update.
2933 * mipsv4-nat.c (supply_gregset, supply_fpregset): Update.
2934 * mipsnbsd-tdep.c (mipsnbsd_supply_reg)
2935 (mipsnbsd_supply_fpreg): Update.
2936 * mips-nat.c (fetch_inferior_registers)
2937 (fetch_core_registers): Update.
2938 * mips-linux-tdep.c (supply_32bit_reg, supply_gregset)
2939 (supply_fpregset, mips64_supply_gregset)
2940 (mips64_supply_fpregset): Update.
2941 * m68klinux-nat.c (fetch_register, supply_gregset)
2942 (supply_fpregset): Update.
2943 * m68k-tdep.c (supply_gregset, supply_fpregset): Update.
2944 * m32r-rom.c (init_m32r_cmds, init_mon2000_cmds): Update.
2945 * lynx-nat.c (fetch_inferior_registers, fetch_core_registers): Update.
2946 * irix5-nat.c (supply_gregset, supply_fpregset): Update.
2947 * infptrace.c (fetch_register): Update.
2948 * ia64-linux-nat.c (supply_gregset, supply_fpregset): Update.
2949 * ia64-aix-nat.c (supply_gregset, supply_fpregset): Update.
2950 * i386gnu-nat.c (fetch_fpregs, supply_gregset)
2951 (gnu_fetch_registers, gnu_store_registers): Update.
2952 * i386-nto-tdep.c (i386nto_supply_gregset): Update.
2953 * i386-linux-nat.c (fetch_register, supply_gregset)
2954 (dummy_sse_values): Update.
2955 * hpux-thread.c (hpux_thread_fetch_registers): Update.
2956 * hppah-nat.c (fetch_register): Update.
2957 * hppa-linux-nat.c (fetch_register, supply_gregset)
2958 (supply_fpregset): Update.
2959 * go32-nat.c (fetch_register): Update.
2960 * dve3900-rom.c (fetch_bitmapped_register)
2961 (_initialize_r3900_rom): Update.
2962 * cris-tdep.c (supply_gregset): Update.
2963 * abug-rom.c (init_abug_cmds): Update.
2964 * core-aout.c (fetch_core_registers): Update.
2965 * armnbsd-nat.c (supply_gregset, supply_fparegset)
2966 (fetch_register, fetch_fp_register): Update.
2967 * arm-linux-nat.c (fetch_nwfpe_single, fetch_nwfpe_none)
2968 (fetch_nwfpe_extended, fetch_fpregister, fetch_fpregs)
2969 (fetch_register, fetch_regs, supply_gregset, supply_fpregset): Update.
2970 * alphanbsd-tdep.c (fetch_core_registers): Update.
2971 * alpha-tdep.c (alpha_supply_int_regs, alpha_supply_fp_regs): Update.
2972 * alpha-nat.c (fetch_osf_core_registers)
2973 (fetch_osf_core_registers, fetch_osf_core_registers): Update.
2974 * aix-thread.c (supply_gprs64, supply_reg32, supply_fprs)
2975 (supply_sprs64, supply_sprs32, fetch_regs_kernel_thread): Update.
2976
2977 2004-07-21 Andrew Cagney <cagney@gnu.org>
2978
2979 * PROBLEMS: Mention breakpoints/1702.
2980 * NEWS: For signal trampolines, cite s390 GNU/Linux as a system
2981 that is known to work.
2982
2983 2004-07-21 Andrew Cagney <cagney@gnu.org>
2984
2985 * config/mips/tm-mips.h (DEPRECATED_IGNORE_HELPER_CALL): Deprecate.
2986 * mips-tdep.c (mips_dump_tdep, mips_ignore_helper): Update.
2987 * infrun.c (DEPRECATED_IGNORE_HELPER_CALL): Delete macro.
2988 (handle_inferior_event): Wrap call to deprecated
2989 IGNORE_HELPER_CALL in #ifdef.
2990 * config/mips/tm-nbsd.h: Update.
2991
2992 2004-07-20 Jim Blandy <jimb@redhat.com>
2993
2994 * rs6000-tdep.c (rs6000_gdbarch_init): The register set used for
2995 bfd_mach_ppc has no segment registers.
2996
2997 Include PowerPC SPR numbers for special-purpose registers.
2998 * rs6000-tdep.c (struct reg): Add new member, 'spr_num'.
2999 (R, R4, R8, R16, F, P, R32, R64, R0): Include value for
3000 new member in initializer.
3001 (S, S4, SN4, S64): New macros for defining special-purpose
3002 registers.
3003 (PPC_UISA_SPRS, PPC_UISA_NOFP_SPRS, PPC_OEA_SPRS, registers_power,
3004 registers_403, registers_403GC, registers_505, registers_860,
3005 registers_601, registers_602, registers_603, registers_604,
3006 registers_750, registers_e500): Use them.
3007
3008 * rs6000-tdep.c (rs6000_gdbarch_init): Delete variable 'power';
3009 replace references with expression used to initialize variable.
3010
3011 2004-07-20 Andrew Cagney <cagney@gnu.org>
3012
3013 * breakpoint.c (deprecated_read_memory_nobpt): Rename
3014 read_memory_nobpt.
3015 * sparc-linux-tdep.c (sparc_linux_sigtramp_start): Update.
3016 * s390-tdep.c (s390_readinstruction, s390_in_function_epilogue_p)
3017 (s390_sigtramp_frame_sniffer): Update.
3018 * mn10300-tdep.c (mn10300_analyze_prologue): Update.
3019 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset): Update.
3020 * mips-tdep.c (mips_fetch_instruction, mips16_fetch_instruction)
3021 (mips32_fetch_instruction): Update.
3022 * mcore-tdep.c (get_insn): Update.
3023 * m68klinux-tdep.c (m68k_linux_pc_in_sigtramp): Update.
3024 * i386nbsd-tdep.c (i386nbsd_sigtramp_offset): Update.
3025 * i386ly-tdep.c (i386lynx_saved_pc_after_call): Update.
3026 * i386-linux-tdep.c (i386_linux_sigtramp_start)
3027 (i386_linux_rt_sigtramp_start): Update.
3028 * i386-linux-nat.c (child_resume): Update.
3029 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Update.
3030 * hppa-linux-tdep.c (insns_match_pattern): Update.
3031 * gdbcore.h: Update.
3032 * frv-tdep.c (frv_gdbarch_adjust_breakpoint_address): Update.
3033 * frame.c (safe_frame_unwind_memory): Update.
3034 * amd64-linux-tdep.c (amd64_linux_sigtramp_start): Update.
3035 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Update.
3036 * alpha-tdep.c (alpha_read_insn): Update.
3037
3038 2004-07-20 Andrew Cagney <cagney@gnu.org>
3039
3040 * tramp-frame.h (struct tramp_frame): Change "insn" to a struct
3041 containing both bytes and mask. Add "frame_type".
3042 * tramp-frame.c (tramp_frame_start): Update.
3043 (tramp_frame_prepend_unwinder): Update.
3044 * mips-linux-tdep.c (mips_linux_o32_sigframe)
3045 (mips_linux_o32_rt_sigframe, mips_linux_n32_rt_sigframe)
3046 (mips_linux_n64_rt_sigframe): Update. Make "static const".
3047 * ppcnbsd-tdep.c (tramp_frame ppcnbsd_sigtramp): Update.
3048
3049 2004-07-19 Eli Zaretskii <eliz@gnu.org>
3050
3051 * config/djgpp/fnchange.lst: Add remapping for bfd/elf32-cr*.c,
3052 bfd/elf32-sh-symbian.c, bfd/elf32-sh64-com.c,
3053 sim/testsuite/sim/mips/hilo-hazard-[123].s, and
3054 sim/testsuite/sim/mips/fpu64-ps-sb1.s.
3055
3056 2004-07-17 Andrew Cagney <cagney@gnu.org>
3057
3058 * NEWS, PROBLEMS: Update for 6.2.
3059
3060 * README: Update to 6.2.
3061
3062 * utils.c (xvasprintf): Call xstrvprintf.
3063
3064 * parse.c: Update copyright.
3065 (null_post_parser): Eliminate ARGSUSED.
3066
3067 * ppc-linux-nat.c (store_spe_registers): Eliminate K&R C.
3068 * tui/tui-win.c (tui_get_cmd_list): Ditto.
3069 * symfile-mem.c (_initialize_symfile_mem): Ditto.
3070
3071 * ppc-linux-tdep.c (ppc_linux_init_abi): Add [sic] to Linux.
3072 * ppc-linux-nat.c: Use "Linux kernel".
3073 * hppa-linux-tdep.c: Use GNU/Linux.
3074 * hppa-linux-nat.c: Use GNU/Linux.
3075 * dwarfread.c: Add [sic] to use of Linux.
3076
3077 * hppa-linux-nat.c: Do not include <string.h>.
3078 (supply_fpregset): Remove "register" attribute.
3079
3080 * solib-frv.c (fetch_loadmap): Use xfree, not free.
3081
3082 2004-07-17 Mark Kettenis <kettenis@gnu.org>
3083
3084 * configure.in: Define _MSE_INT_H on Solaris 9 too.
3085 * configure, config.in: Regenerated.
3086
3087 * vaxbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
3088 "bsd-kvm.h".
3089 (vaxbsd_supply_pcb): New function.
3090 (_initialize_vaxbsd_nat): New prototype and function.
3091 * config/vax/nbsdaout.mh (NATDEPFILES): Add bsd-kvm.o, solib.o and
3092 solib-sunos.o.
3093 (LOADLIBES): New variable.
3094 * config/vax/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
3095 (LOADLIBES): New variable.
3096 * config/vax/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
3097 (LOADLIBES): New variable.
3098 * Makefile.in (vaxbsd-nat.o): Update dependencies.
3099
3100 2004-07-16 Andrew Cagney <cagney@gnu.org>
3101
3102 * defs.h (event_loop_p): Replace variable declaration with macro,
3103 always 1.
3104 * main.c (captured_main): Delete options "-async" and "-noasync".
3105 (event_loop_p): Delete variable.
3106 * NEWS: Mention that "-async" and "-noasync" were removed.
3107
3108 2004-07-16 Andrew Cagney <cagney@gnu.org>
3109
3110 * remote-m32r-sdi.c: Re-indent.
3111
3112 2004-07-16 Jim Blandy <jimb@redhat.com>
3113
3114 * ppc-tdep.h (ppc_spr_asr): Add missing OEA SPR.
3115 (ppc_spr_mi_dbcam, ppc_spr_mi_dbram0, ppc_spr_mi_dbram1)
3116 (ppc_spr_md_cam, ppc_spr_md_ram0, ppc_spr_md_ram1): Add
3117 missing MPC823 SPRs.
3118 (ppc_spr_m_twb): Renamed from ppc_spr_md_twb; the old name was
3119 incorrect. (This was corrected in GDB's register name tables on
3120 2004-07-14.)
3121
3122 * rs6000-tdep.c (registers_602): Correct register name: "esassr"
3123 should be "esasrr" ("ESA Save and Restore Register").
3124
3125 2004-07-16 Andrew Cagney <cagney@gnu.org>
3126
3127 * infrun.c (insert_step_resume_breakpoint): Delete gdb_assert
3128 calls, no longer applicable. Update comments and rename parameter
3129 "step_frame" to "return_frame".
3130
3131 2004-07-16 Andrew Cagney <cagney@gnu.org>
3132
3133 * frame.c (fprint_field): New function.
3134 (fprint_frame_id): Use fprint_field.
3135
3136 2004-07-15 Joel Brobecker <brobecker@gnat.com>
3137
3138 * ada-lang.c (ada_language_defn): Remove commented out code.
3139
3140 2004-07-15 Jim Blandy <jimb@redhat.com>
3141
3142 * ppc-tdep.h (struct gdbarch_tdep): New member: ppc_sr0_regnum.
3143 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it.
3144
3145 2004-07-14 Jim Blandy <jimb@redhat.com>
3146
3147 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): Delete; unused.
3148
3149 * ppc-tdep.h (ppc_num_vrs): New enum constant.
3150
3151 * ppc-tdep.h (ppc_num_srs): New enum constant.
3152
3153 * ppc-tdep.h (ppc_spr_mq, ppc_spr_xer, ppc_spr_rtcu, ppc_spr_rtcl)
3154 (ppc_spr_lr, ppc_spr_ctr, ppc_spr_cnt, ppc_spr_dsisr, ppc_spr_dar)
3155 (ppc_spr_dec, ppc_spr_sdr1, ppc_spr_srr0, ppc_spr_srr1)
3156 (ppc_spr_eie, ppc_spr_eid, ppc_spr_nri, ppc_spr_sp, ppc_spr_cmpa)
3157 (ppc_spr_cmpb, ppc_spr_cmpc, ppc_spr_cmpd, ppc_spr_icr)
3158 (ppc_spr_der, ppc_spr_counta, ppc_spr_countb, ppc_spr_cmpe)
3159 (ppc_spr_cmpf, ppc_spr_cmpg, ppc_spr_cmph, ppc_spr_lctrl1)
3160 (ppc_spr_lctrl2, ppc_spr_ictrl, ppc_spr_bar, ppc_spr_vrsave)
3161 (ppc_spr_sprg0, ppc_spr_sprg1, ppc_spr_sprg2, ppc_spr_sprg3)
3162 (ppc_spr_ear, ppc_spr_tbl, ppc_spr_tbu, ppc_spr_pvr)
3163 (ppc_spr_spefscr, ppc_spr_ibat0u, ppc_spr_ibat0l, ppc_spr_ibat1u)
3164 (ppc_spr_ibat1l, ppc_spr_ibat2u, ppc_spr_ibat2l, ppc_spr_ibat3u)
3165 (ppc_spr_ibat3l, ppc_spr_dbat0u, ppc_spr_dbat0l, ppc_spr_dbat1u)
3166 (ppc_spr_dbat1l, ppc_spr_dbat2u, ppc_spr_dbat2l, ppc_spr_dbat3u)
3167 (ppc_spr_dbat3l, ppc_spr_ic_cst, ppc_spr_ic_adr, ppc_spr_ic_dat)
3168 (ppc_spr_dc_cst, ppc_spr_dc_adr, ppc_spr_dc_dat, ppc_spr_dpdr)
3169 (ppc_spr_dpir, ppc_spr_immr, ppc_spr_mi_ctr, ppc_spr_mi_ap)
3170 (ppc_spr_mi_epn, ppc_spr_mi_twc, ppc_spr_mi_rpn, ppc_spr_mi_cam)
3171 (ppc_spr_mi_ram0, ppc_spr_mi_ram1, ppc_spr_md_ctr, ppc_spr_m_casid)
3172 (ppc_spr_md_ap, ppc_spr_md_epn, ppc_spr_md_twb, ppc_spr_md_twc)
3173 (ppc_spr_md_rpn, ppc_spr_m_tw, ppc_spr_md_dbcam, ppc_spr_md_dbram0)
3174 (ppc_spr_md_dbram1, ppc_spr_ummcr0, ppc_spr_upmc1, ppc_spr_upmc2)
3175 (ppc_spr_usia, ppc_spr_ummcr1, ppc_spr_upmc3, ppc_spr_upmc4)
3176 (ppc_spr_zpr, ppc_spr_pid, ppc_spr_mmcr0, ppc_spr_pmc1)
3177 (ppc_spr_sgr, ppc_spr_pmc2, ppc_spr_dcwr, ppc_spr_sia)
3178 (ppc_spr_mmcr1, ppc_spr_pmc3, ppc_spr_pmc4, ppc_spr_sda)
3179 (ppc_spr_tbhu, ppc_spr_tblu, ppc_spr_dmiss, ppc_spr_dcmp)
3180 (ppc_spr_hash1, ppc_spr_hash2, ppc_spr_icdbdr, ppc_spr_imiss)
3181 (ppc_spr_esr, ppc_spr_icmp, ppc_spr_dear, ppc_spr_rpa)
3182 (ppc_spr_evpr, ppc_spr_cdbcr, ppc_spr_tsr, ppc_spr_602_tcr)
3183 (ppc_spr_403_tcr, ppc_spr_ibr, ppc_spr_pit, ppc_spr_esasrr)
3184 (ppc_spr_tbhi, ppc_spr_tblo, ppc_spr_srr2, ppc_spr_sebr)
3185 (ppc_spr_srr3, ppc_spr_ser, ppc_spr_hid0, ppc_spr_dbsr)
3186 (ppc_spr_hid1, ppc_spr_iabr, ppc_spr_dbcr, ppc_spr_iac1)
3187 (ppc_spr_dabr, ppc_spr_iac2, ppc_spr_dac1, ppc_spr_dac2)
3188 (ppc_spr_l2cr, ppc_spr_dccr, ppc_spr_ictc, ppc_spr_iccr)
3189 (ppc_spr_thrm1, ppc_spr_pbl1, ppc_spr_thrm2, ppc_spr_pbu1)
3190 (ppc_spr_thrm3, ppc_spr_pbl2, ppc_spr_fpecr, ppc_spr_lt)
3191 (ppc_spr_pir, ppc_spr_pbu2): New enum constants for PowerPC
3192 special-purpose register numbers.
3193
3194 * rs6000-tdep.c (registers_860): Correct register name. (No PPC
3195 manual mentions 'md_twb', but many mention 'm_twb', and at that
3196 point in the register list.)
3197
3198 2004-07-14 Andrew Cagney <cagney@gnu.org>
3199
3200 * utils.c (internal_warning_problem): Fix typo, "internal-warning"
3201 instead of "internal-error".
3202
3203 2004-07-10 Joel Brobecker <brobecker@gnat.com>
3204
3205 * hppa-hpux-tdep.c: Fix a compilation failure due to a comment
3206 that was inserted inside a comment.
3207
3208 2004-07-10 Randolph Chung <tausq@debian.org>
3209
3210 * hppa-hpux-tdep.c (hppa_hpux_som_find_global_pointer): New
3211 function.
3212 (hppa_hpux_push_dummy_code): New function.
3213 (hppa_hpux_init_abi): Set push_dummy_code and call_dummy_location.
3214 Set find_global_pointer method.
3215
3216 2004-07-10 Mark Kettenis <kettenis@gnu.org>
3217
3218 * NEWS: Mention BSD libkvm interface.
3219
3220 2004-07-10 Michael Snyder <msnyder@redhat.com>
3221
3222 * symfile.c (generic_load): Comment typo.
3223 * stack.c (get_selected_block): Ditto.
3224 * regcache.c (regcache_cooked_read): Ditto.
3225 * monitor.c (monitor_debug): Ditto.
3226 * mips-tdep.c (mips_read_pc): Ditto.
3227 * i386-linux-nat.c (ps_get_thread_area): Ditto.
3228 * gdb_mbuild.sh: Ditto.
3229 * gdbarch.sh: Ditto.
3230 * gdbarch.h: Ditto.
3231
3232 2004-07-09 Paul N. Hilfinger <Hilfinger@gnat.com>
3233
3234 * ada-tasks.c: Remove file.
3235
3236 Remove ARI problems:
3237
3238 * ada-exp.y (write_var_from_sym): Reformat to put operator at
3239 beginning of line.
3240
3241 * ada-lang.c (MAX_OF_SIZE): Rename max_of_size.
3242 Add comment.
3243 Add comment concerning MAX_OF_TYPE and MIN_OF_TYPE.
3244 (MIN_OF_SIZE): Rename min_of_size. Add comment.
3245 (UMAX_OF_SIZE): Renmae umax_of_size. Add comment.
3246 (UMIN_OF_SIZE): Remove.
3247 (max_of_type): New function to replace orphan macro in gdbtypes.h
3248 (min_of_type): Ditto.
3249 (discrete_type_high_bound): Use max_of_type.
3250 (discrete_type_low_bound): Use min_of_type.
3251 (possible_user_operator_p): Move operator to beginning of line.
3252 (ada_is_variant_part): Ditto.
3253 (ensure_lval): Rewrite to avoid deprecated operations.
3254 (ada_finish_decode_line_1): Use gdbarch_convert_from_func_ptr_addr
3255 rather than adding DEPRECATED_FUNCTION_START_OFFSET.
3256 (ada_enum_name): Remove assignments in 'if' statements.
3257 (build_ada_types): Add gdbarch parameter.
3258 (_initialize_ada_language): Replace deprecated_register_gdbarch_swap
3259 with gdbarch_data_register_post_init.
3260 Use add_setshow_uinteger_cmd rather than add_set_cmd and
3261 add_show_from_set.
3262
3263 * ada-valprint.c (inspect_it): Remove declaration.
3264 (repeat_count_threshold): Remove declaration.
3265 (ada_print_floating): Remove assignments in 'if' statements.
3266 (print_str): Move operator to beginning of line.
3267
3268 2004-07-08 Jim Blandy <jimb@redhat.com>
3269
3270 * rs6000-tdep.c (registers_powerpc_nofp): Unused; deleted.
3271
3272 2004-07-08 Bob Rossi <bob@brasko.net>
3273
3274 * symtab.c (lookup_symtab): check return value of symtab_to_fullname
3275
3276 2004-07-06 Jeff Johnston <jjohnstn@redhat.com>
3277
3278 * language.h (struct_language_defn): Add new function pointer:
3279 la_class_name_from_physname. Also add new prototype for
3280 language_class_name_from_physname.
3281 * language.c (language_class_name_from_physname): New function.
3282 (unk_lang_class_name): Ditto.
3283 (unknown_language_defn, auto_language_defn): Change
3284 to add unk_lang_class_name function pointer for
3285 la_class_name_from_physname.
3286 (local_language_defn): Ditto.
3287 * dwarf2read.c (guess_structure_name): Change to call
3288 language_class_name_from_physname.
3289 (determine_class_name): Ditto.
3290 * cp-support.c (class_name_from_physname): Renamed.
3291 (cp_class_name_from_physname): New name of function.
3292 * cp-support.h: Ditto.
3293 * c-lang.c (c_language_defn): Change to add NULL
3294 for class_name_from_physname function pointer.
3295 (cplus_language_defn): Change to add cp_class_name_from_physname.
3296 * jv-lang.c (java_class_name_physname): New function.
3297 (java_find_last_component): New static routine.
3298 (java_language_defn): Add java_class_name_from_physname pointer.
3299 * ada-lang.c (ada_language_defn): Change to add NULL
3300 for class_name_from_physname function pointer.
3301 * f-lang.c (f_language_defn): Ditto.
3302 * m2-lang.c (m2_language_defn): Ditto.
3303 * objc-lang.c (objc_language_defn): Ditto.
3304 * p-lang.c (pascal_language_defn): Ditto.
3305 * scm-lang.c (scm_language_defn): Ditto.
3306
3307 2004-07-06 Andrew Cagney <cagney@gnu.org>
3308
3309 Patch from Bart Robinson.
3310 * corelow.c (core_open): Add variable "flags", or in O_LARGEFILE.
3311 (O_LARGEFILE): Define to 0, if not defined.
3312
3313 2004-07-03 Mark Kettenis <kettenis@gnu.org>
3314
3315 * m68kbsd-nat.c: Include "gdbcore.h", <sys/types.h>,
3316 <machine/pcb.h> and "bsd-kvm.h".
3317 (PCB_REGS_FP, PCB_REGS_SP): Define if not already defined.
3318 (m68kbsd_supply_pcb): New function.
3319 (_initialize_m68kbsd_nat): New prototype and function.
3320 * Makefile.in (m68kbsd-nat.o): Update dependencies.
3321 * config/m68k/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
3322 (LOADLIBES): New variable.
3323 * config/m68k/obsd.mh (NATDEPFILES): Add bsd-kvm.o.
3324 (LOADLIBES): New variable.
3325
3326 * bsd-kvm.c (bsd_kvm_cmdlist): Remove unecessary initialization.
3327
3328 2004-07-03 Mark Kettenis <kettenis@gnu.org>
3329
3330 * bsd-kvm.c: Include "cli/cli-cmds.h", "command.h", "value.h" and
3331 <sys/proc.h>.
3332 (bsd_kvm_cmdlist): New variable.
3333 (bsd_kvm_cmd, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd): New functions.
3334 (bsd_kvm_add_target): Register "kvm" command prefix, "kvm pcb"
3335 command and "kvm proc" command.
3336 * Makefile.in (bsd-kvm.o): Update dependencies.
3337
3338 2004-07-02 Mark Kettenis <kettenis@gnu.org>
3339
3340 * osabi.c: Update copyright year.
3341 (generic_elf_osabi_sniffer): Tweak comment. Look for OS-specific
3342 notes if EI_OSABI is set to ELFOSABI_HPUX.
3343
3344 2004-07-01 Michael Snyder <msnyder@redhat.com>
3345
3346 * win32-nat.c (core_dll_symbols_add): Re-indent a small section
3347 that seems to have gotten whacked out of line.
3348
3349 2004-07-01 Mark Kettenis <kettenis@gnu.org>
3350
3351 * dbxread.c (process_one_symbol) [PCC_SOL_BROKEN]: Remove dead
3352 code.
3353
3354 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
3355
3356 * ada-lang.c (decode_packed_array): Minor change to comment.
3357 (ada_value_slice_ptr): New function.
3358 (ada_value_slice): New function.
3359 (ada_evaluate_subexp): Remove XVS-suffix code from subscripting
3360 test. Don't know why it is there.
3361 Change slice code to use ada_value_slice_ptr and ada_value_slice, and
3362 to avoid dereferencing huge arrays from which one is slicing.
3363 (empty_array): Correct to return an array rather than
3364 a subrange value.
3365 * ada-valprint.c (print_optional_low_bound): Don't print lower bound
3366 on empty arrays (let'em use 'FIRST instead).
3367
3368 2004-07-01 Paul N. Hilfinger <Hilfinger@gnat.com>
3369
3370 Address complaints from gdb_ari.sh:
3371
3372 * ada-exp.y: Include gdb_string.h rather than string.h.
3373 (convert_char_literal): Reformat declaration.
3374 * ada-lang.h: Include opaque struct declaration for struct frame_info.
3375 * ada-lex.l: Change use of free to xfree (the macro would do so
3376 anyway, but this is harmless).
3377 Include gdb_string.h rather than string.h.
3378 * ada-valprint.c (ada_val_print_stub): Change PTR => void*.
3379
3380 * ada-lang.c (parse): Remove K&Rism in parameter list.
3381 (is_name_suffix): Correct Linux => GNU/Linux in comment.
3382
3383 2004-06-30 Mark Kettenis <kettenis@gnu.org>
3384
3385 * dbxread.c (process_one_symbol) [SUN_FIXED_LBRAC_BUG]: Remove
3386 dead code.
3387
3388 2004-06-30 Mark Kettenis <kettenis@gnu.org>
3389
3390 * alphabsd-nat.c: Update copyright year.
3391 (getregs_supplies): Use ALPHA_PC_REGNUM instead of PC_REGNUM.
3392
3393 2004-06-29 Joel Brobecker <brobecker@gnat.com>
3394
3395 * i386-cygwin-tdep.c (i386_cygwin_skip_trampoline_code): New function.
3396 (i386_cygwin_in_solib_call_trampoline): New function.
3397 (i386_cygwin_init_abi): Initialize the in_solib_call_trampoline
3398 and skip_trampoline_code gdbarch methods.
3399
3400 2004-06-29 Jim Blandy <jimb@redhat.com>
3401
3402 * Makefile.in (gdb_callback_h): Renamed from callback_h to the
3403 name actually used in the dependency lists.
3404
3405 2004-06-29 Randolph Chung <tausq@debian.org>
3406
3407 * NEWS (New native configurations): Mention GNU/Linux/hppa.
3408
3409 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
3410
3411 * win32-nat.c (child_pid_to_exec_file): New function.
3412 (init_child_ops): Add child_pid_to_exec_file as to_pid_to_exec_file
3413 functionality.
3414
3415 2004-06-28 Andrew Cagney <cagney@gnu.org>
3416
3417 * defs.h (xstrvprintf): Declare.
3418 * utils.c (xstrvprintf): New function.
3419 (internal_vproblem, xstrprintf, xasprintf)
3420 (vfprintf_maybe_filtered, vfprintf_unfiltered): Use xstrvprintf.
3421 * serial.c (serial_printf): Ditto.
3422 * complaints.c (vcomplaint): Ditto.
3423
3424 2004-06-29 Corinna Vinschen <vinschen@redhat.com>
3425
3426 * infcmd.c (attach_command): Move call to target_terminal_inferior
3427 behind loading symbol table.
3428
3429 2004-06-28 Andrew Cagney <cagney@gnu.org>
3430
3431 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Revert 2004-06-24
3432 change - add back extern deprecated_ui_loop_hook declaration.
3433
3434 2004-06-28 Andrew Cagney <cagney@gnu.org>
3435
3436 * xcoffsolib.c (xcoff_solib_address): Replace xasprintf with
3437 xstrprintf.
3438 * varobj.c (varobj_gen_name, create_child, c_name_of_child)
3439 (c_value_of_variable): Ditto.
3440 * utils.c (internal_vproblem): Ditto.
3441 * solib-aix5.c (build_so_list_from_mapfile): Ditto.
3442 * remote.c (add_packet_config_cmd): Ditto.
3443 * remote-rdp.c (rdp_set_command_line): Ditto.
3444 * regcache.c (regcache_dump): Ditto.
3445 * frv-tdep.c (new_variant, new_variant): Ditto.
3446 * fbsd-proc.c (child_pid_to_exec_file): Ditto.
3447 (fbsd_find_memory_regions): Ditto.
3448 * breakpoint.c (create_thread_event_breakpoint)
3449 (create_breakpoints): Ditto.
3450 * aix-thread.c (aix_thread_pid_to_str): Ditto.
3451 * ada-lang.c (is_package_name): Ditto. Also delete xmalloc call.
3452
3453 2004-06-28 Joel Brobecker <brobecker@gnat.com>
3454
3455 * ada-lang.c: Re-indent file, with some massaging to help indent
3456 a bit when the result is otherwise really too ugly.
3457
3458 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
3459
3460 * frame.h (struct frame_id): Change bit field type of stack_addr_p,
3461 code_addr_p and special_addr_p to 'unsigned int'.
3462
3463 2004-06-27 Mark Kettenis <kettenis@gnu.org>
3464
3465 * i386v4-nat.c: Update copyright year and tweak comment.
3466 (regmap): Remove trailing comma.
3467 (supply_gregset): Rename local variable i to regnum. Call
3468 regcache_raw_supply instead of supply_register.
3469 (fill_gregset): Rename argument regno to regnum. Call
3470 regcache_raw_collect instead of regcache_collect.
3471
3472 2004-06-27 Ulrich Weigand <uweigand@de.ibm.com>
3473
3474 * frame.h (struct frame_id): New fields stack_addr_p, code_addr_p
3475 and special_addr_p.
3476 (frame_id_build, frame_id_build_special): Update comments.
3477 (frame_id_build_wild): New prototype.
3478 * frame.c (frame_id_build, frame_id_build_special): Fill in new
3479 struct frame_id fields.
3480 (frame_id_build_wild): New function.
3481 (frame_id_eq, frame_id_inner): Use new struct frame_id fields.
3482
3483 2004-06-27 Mark Kettenis <kettenis@gnu.org>
3484
3485 * config/djgpp/fnchange.lst: Add entries for hppabsd-nat.c and
3486 hppabsd-tdep.c.
3487
3488 2004-06-27 Joel Brobecker <brobecker@gnat.com>
3489
3490 * ada-lang.c: Minor reformatting to conform to GNU coding standards.
3491
3492 2004-06-27 Joel Brobecker <brobecker@gnat.com>
3493
3494 * ada-lang.c: Re-indent file.
3495
3496 2004-06-27 Joel Brobecker <brobecker@gnat.com>
3497
3498 * ada-lang.c (symtab_symbol_info): Remove unused declaration.
3499 (no_symtab_msg): Likewise.
3500
3501 2004-06-27 Andreas Schwab <schwab@suse.de>
3502
3503 * source.c: Fix whitespace.
3504
3505 2004-06-27 Mark Kettenis <kettenis@gnu.org>
3506
3507 * configure.in: Include <sys/param.h> for td_pcb test.
3508 * configure: Regenerated.
3509
3510 * i386nbsd-nat.c: New file.
3511 * Makefile.in (ALLDEPFILES): Add i386nbsd-nat.c, i386nbsd-tdep.c,
3512 i386obsd-nat.c and i386obsd-tdep.c.
3513 (i386nbsd-nat.o): New dependency.
3514 * config/i386/obsd.mh (NATDEPFILES): Add i386nbsd-nat.o and
3515 bsd-kvm.o.
3516 (LOADLIBES): New variable.
3517 * config/i386/nbsdelf.mh (NATDEPFILES): Add i386nbsd-nat.o and
3518 bsd-kvm.o.
3519 (LOADLIBES): New variable.
3520
3521 * config/i386/fbsd64.mh (NATDEPFILES): Add bsd-kvm.o.
3522 (LOADLIBES): New variable.
3523
3524 * bsd-kvm.c (bsd_kvm_fetch_registers): Directly return after
3525 fetching from BSD_KVM_PADDR. Correctly lookup address for
3526 "_thread0".
3527
3528 * amd64fbsd-nat.c: Include <sys/types.h, <machine/pcb.h> and
3529 "bsd-kvm.h".
3530 (amd64fbsd_supply_pcb): New funcion.
3531 (_initialize_amd64fbsd_nat): Enable libkvm interface.
3532
3533 2004-06-27 <david@streamline-computing.com>
3534
3535 Partial fix for PR cli/1056.
3536 * valarith.c: Check for zero in division and remainder
3537 evaluation.
3538
3539 2004-06-27 Mark Kettenis <kettenis@gnu.org>
3540
3541 * i387-tdep.c: Remove excessive whitespace.
3542
3543 2004-06-26 Andrew Cagney <cagney@gnu.org>
3544
3545 * gdb-events.sh (deprecated_set_gdb_event_hooks): Deprecated.
3546 * gdb-events.h, gdb-events.c: Re-generate.
3547 * tui/tui-hooks.c (tui_install_hooks): Update.
3548 (tui_remove_hooks): Update.
3549 * mi/mi-cmd-break.c (mi_cmd_break_insert): Update.
3550
3551 2004-06-26 Mark Kettenis <kettenis@gnu.org>
3552
3553 * amd64fbsd-nat.c: Don't include <sys/procfs.h> and "gregset.h".
3554 (gregset_t, fpregset_t): Remove typedefs.
3555 (REG_OFFSET): Rename argument.
3556 (amd64bsd_r_reg_offset): Rename from reg_offset.
3557 (supply_gregset, fill_gregset, supply_fpregset, fill_fpregset):
3558 Remove functions.
3559 (_initialize_amd64fbsd_nat): Use amd64fbsd64_r_reg_offset instead
3560 of reg_offset.
3561 * Makefile.in (amd64fbsd-nat.o): Update dependencies.
3562
3563 * amd64-nat.c (amd64_supply_native_gregset): Fix comment.
3564
3565 * vax-tdep.c: Tweak comment.
3566
3567 Add OpenBSD/hppa support.
3568 * NEWS (New native configurations): Mention OpenBSD/hppa.
3569 * hppabsd-nat.c, hppabsd-tdep.c, config/pa/obsd.mh,
3570 config/pa/obsd.mt, config/pa/nm-obsd.h, config/pa/tm-bsd.h: New
3571 files.
3572 * Makefile.in (ALLDEPFILES): Add hppabsd-nat.c and hppabsd-tdep.c.
3573 (hppabsd-nat.o, hppabsd-tdep.c): New dependencies.
3574 * configure.host: Add hppa*-*-openbsd*.
3575 * configure.tgt: Add hppa*-*-openbsd*.
3576
3577 2004-06-25 Andrew Cagney <cagney@gnu.org>
3578
3579 * defs.h (deprecated_ui_loop_hook): Deprecated.
3580 * wince.c (child_wait): Update.
3581 * win32-nat.c (child_wait): Update.
3582 * v850ice.c (v850ice_wait): Update.
3583 * top.c (deprecated_ui_loop_hook): Update.
3584 * serial.h: Update.
3585 * ser-unix.c (do_hardwire_readchar, do_hardwire_readchar)
3586 (do_unix_readchar): Update.
3587 * ser-tcp.c (net_open): Update.
3588 * remote-sim.c (gdb_os_poll_quit): Update.
3589 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Update.
3590
3591 2004-06-24 Andrew Cagney <cagney@gnu.org>
3592
3593 * defs.h (deprecated_pre_add_symbol_hook)
3594 (deprecated_post_add_symbol_hook): Deprecated.
3595 * symfile.c (symbol_file_add_with_addrs_or_offsets)
3596 (symbol_file_add_with_addrs_or_offsets): Update references.
3597
3598 2004-06-24 Andrew Cagney <cagney@gnu.org>
3599
3600 * defs.h (post_add_symbol_hook, pre_add_symbol_hook)
3601 (ui_loop_hook, selected_frame_level_changed_hook): Declare.
3602 * wince.c (ui_loop_hook): Delete extern declaration.
3603 * win32-nat.c (ui_loop_hook): Delete extern declaration..
3604 * v850ice.c (ui_loop_hook): Delete extern declaration..
3605 * ser-unix.c (ui_loop_hook): Delete extern declaration..
3606 * ser-tcp.c (ui_loop_hook): Delete extern declaration..
3607 * remote-sim.c (ui_loop_hook): Delete extern declaration..
3608 * rdi-share/ardi.c (angel_RDI_ExecuteOrStep): Delete extern.
3609 ui_loop_hook declaration.
3610
3611 2004-06-24 Andrew Cagney <cagney@gnu.org>
3612
3613 * objfiles.h (struct entry_info): Delete entry_func_lowpc and
3614 entry_func_highpc fields.
3615 * objfiles.c (init_entry_point_info): Do not clear
3616 entry_func_lowpc and entry_func_highpc.
3617 (objfile_relocate): Do not relocate entry_func_lowpc and
3618 entry_func_highpc.
3619 * dwarfread.c (read_func_scope): Do not set entry_func_lowpc and
3620 entry_func_highpc.
3621 * dwarf2read.c (read_func_scope): Do not set entry_func_lowpc and
3622 entry_func_highpc.
3623 * blockframe.c (legacy_frame_chain_valid): Replace tests against
3624 entry_func_lowpc and entry_func_highpc with call to
3625 inside_entry_func.
3626
3627 2004-06-24 Mark Kettenis <kettenis@gnu.org>
3628
3629 * sparc64-tdep.c (sparc64_store_arguments): Fix passing
3630 quad-precision floating point arguments in registers.
3631
3632 2004-06-24 Mark Kettenis <kettenis@gnu.org>
3633
3634 From Michael Mueller <m.mueller99@kay-mueller.de>:
3635 * sparc64-tdep.c (sparc64_frame_base_address): Take BIAS into
3636 account.
3637
3638 2004-06-22 Jeff Johnston <jjohnstn@redhat.com>
3639
3640 * infrun.c (handle_inferior_event): Initialize stopped_by_watchpoint
3641 to -1.
3642 * breakpoint.c (bpstat_stop_status): Move check for ignoring
3643 untriggered watchpoints to a separate if clause. Update function
3644 comment regarding STOPPED_BY_WATCHPOINT argument.
3645
3646 2004-06-22 Jim Blandy <jimb@redhat.com>
3647
3648 * gdbarch.sh: Doc fix.
3649
3650 2004-06-21 Martin Hunt <hunt@redhat.com>
3651 Kevin Buettner <kevinb@redhat.com>
3652
3653 * config/mips/tm-mips.h (SP_REGNUM): Delete define.
3654 * mips-tdep.h (MIPS_SP_REGNUM): Define.
3655 * mips-tdep.c (mips_gdbarch_init): Set SP_REGNUM via call
3656 to set_gdbarch_sp_regnum(). Use cooked register number.
3657 (SP_REGNUM): Replace all occurrences with MIPS_SP_REGNUM.
3658
3659 2004-06-21 Andrew Cagney <cagney@gnu.org>
3660
3661 * gdbarch.sh: When the macro field is empty, do not generate a
3662 macro definition. When the macro field is "=", generate the macro
3663 name from the upper-case function name.
3664 (NUM_REGS, NUM_PSEUDO_REGS, SP_REGNUM, PC_REGNUM, PS_REGNUM)
3665 (FP0_REGNUM, STAB_REG_TO_REGNUM, ECOFF_REG_TO_REGNUM)
3666 (DWARF_REG_TO_REGNUM, SDB_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM)
3667 (REGISTER_NAME, DEPRECATED_REGISTER_VIRTUAL_TYPE)
3668 (DEPRECATED_REGISTER_BYTES, DEPRECATED_REGISTER_BYTE)
3669 (DEPRECATED_REGISTER_RAW_SIZE, DEPRECATED_REGISTER_VIRTUAL_SIZE)
3670 (DEPRECATED_SAVE_DUMMY_FRAME_TOS, DEPRECATED_FP_REGNUM)
3671 (DEPRECATED_TARGET_READ_FP, DEPRECATED_PUSH_ARGUMENTS)
3672 (DEPRECATED_PUSH_RETURN_ADDRESS, DEPRECATED_DUMMY_WRITE_SP)
3673 (DEPRECATED_REGISTER_SIZE, CALL_DUMMY_LOCATION)
3674 (DEPRECATED_DO_REGISTERS_INFO, REGISTER_SIM_REGNO)
3675 (REGISTER_BYTES_OK, CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER)
3676 (GET_LONGJMP_TARGET, DEPRECATED_INIT_FRAME_PC)
3677 (BELIEVE_PCC_PROMOTION, DEPRECATED_GET_SAVED_REGISTER)
3678 (CONVERT_REGISTER_P, REGISTER_TO_VALUE, VALUE_TO_REGISTER)
3679 (POINTER_TO_ADDRESS, ADDRESS_TO_POINTER, INTEGER_TO_ADDRESS)
3680 (DEPRECATED_POP_FRAME, DEPRECATED_STORE_STRUCT_RETURN)
3681 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE)
3682 (DEPRECATED_EXTRACT_RETURN_VALUE, DEPRECATED_STORE_RETURN_VALUE)
3683 (DEPRECATED_USE_STRUCT_CONVENTION)
3684 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
3685 (DEPRECATED_FRAME_INIT_SAVED_REGS)
3686 (DEPRECATED_INIT_EXTRA_FRAME_INFO, SKIP_PROLOGUE, INNER_THAN)
3687 (BREAKPOINT_FROM_PC, MEMORY_INSERT_BREAKPOINT)
3688 (MEMORY_REMOVE_BREAKPOINT, DECR_PC_AFTER_BREAK)
3689 (DEPRECATED_FUNCTION_START_OFFSET, FRAME_ARGS_SKIP)
3690 (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION, DEPRECATED_FRAME_CHAIN)
3691 (DEPRECATED_FRAME_CHAIN_VALID, DEPRECATED_FRAME_SAVED_PC)
3692 (DEPRECATED_FRAME_ARGS_ADDRESS, DEPRECATED_FRAME_LOCALS_ADDRESS)
3693 (DEPRECATED_SAVED_PC_AFTER_CALL, FRAME_NUM_ARGS)
3694 (DEPRECATED_STACK_ALIGN, DEPRECATED_REG_STRUCT_HAS_ADDR)
3695 (FRAME_RED_ZONE_SIZE, ADDR_BITS_REMOVE, SMASH_TEXT_ADDRESS)
3696 (SOFTWARE_SINGLE_STEP, SKIP_TRAMPOLINE_CODE)
3697 (IN_SOLIB_CALL_TRAMPOLINE, IN_SOLIB_RETURN_TRAMPOLINE)
3698 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL)
3699 (NAME_OF_MALLOC, CANNOT_STEP_BREAKPOINT)
3700 (HAVE_NONSTEPPABLE_WATCHPOINT, ADDRESS_CLASS_TYPE_FLAGS)
3701 (FETCH_POINTER_ARGUMENT): Replace the macro name with "=".
3702
3703 2004-06-21 Andrew Cagney <cagney@gnu.org>
3704
3705 * gdbarch.sh: For gdbarch_dump, print the "function" rather than
3706 macro name, and the function rather than macro value. Only wrap
3707 macro print statements in #ifdef. Move format logic to where it
3708 is needed.
3709 * gdbarch.c: Re-generate.
3710
3711 * gdbarch.sh (read): Delete "print_p" and "description", add
3712 "garbage_at_eol". Check for non-empty garbage at end-of-line.
3713 Delete references to print_p.
3714 (TARGET_ARCHITECTURE): Delete print predicate.
3715 * gdbarch.c: Re-generate.
3716
3717 * gdbarch.sh: Check that multi-arch methods do not provide a
3718 macro.
3719 (register_type, unwind_dummy_id, push_dummy_call, push_dummy_code)
3720 (print_registers_info, print_float_info, print_vector_info)
3721 (adjust_breakpoint_address, remote_translate_xfer_address)
3722 (construct_inferior_arguments, skip_solib_resolver, unwind_pc)
3723 (address_class_type_flags_to_name, unwind_sp): Remove the macro
3724 name from the multi-arch definition.
3725
3726 2004-06-20 Andrew Cagney <cagney@gnu.org>
3727
3728 * gdbarch.sh: Sort by the function, instead of macro name.
3729 * gdbarch.c: Re-generate.
3730
3731 2004-06-20 Andrew Cagney <cagney@gnu.org>
3732
3733 * gdbarch.sh: Use the function, instead of macro name in
3734 errors and the log file.
3735 (return_value): Remove stray ":" in spec.
3736
3737 * gdbarch.sh (RETURN_VALUE): Default to legacy_return_value.
3738 * gdbarch.h, gdbarch.c: Re-generate.
3739 * Makefile.in (arch-utils.o): Update dependencies.
3740 * values.c (using_struct_return): Move code calling
3741 USE_STRUCT_CONVENTION to legacy_return_value, simplify.
3742 * stack.c (return_command): Move code calling STORE_RETURN_VALUE
3743 to legacy_return_value, simplify.
3744 * infcmd.c (print_return_value): Move code calling
3745 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS and EXTRACT_RETURN_VALUE
3746 to legacy_return_value, simplify.
3747 * infcall.c (call_function_by_hand): Move code calling
3748 EXTRACT_RETURN_VALUE to legacy_return_value, simplify.
3749 * arch-utils.c: Update copyright. Include "gdbcore.h".
3750 (legacy_return_value): New function.
3751 * arch-utils.h: Update copyright.
3752 (legacy_return_value): Declare.
3753
3754 2004-06-20 Andrew Cagney <cagney@gnu.org>
3755
3756 * gdbarch.sh (DEPRECATED_USE_STRUCT_CONVENTION): Deprecated.
3757 * gdbarch.h, gdbarch.c: Re-generate.
3758 * values.c (using_struct_return): Update call.
3759 * mcore-tdep.c: Update comment.
3760 * infcall.c (call_function_by_hand): Update comment.
3761 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
3762 * arch-utils.h (always_use_struct_convention): Update.
3763 * v850-tdep.c (v850_gdbarch_init): Update.
3764 * sh64-tdep.c (sh64_gdbarch_init): Update.
3765 * sh-tdep.c (sh_gdbarch_init): Update.
3766 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
3767 * mips-tdep.c (mips_gdbarch_init): Update.
3768 * mcore-tdep.c (mcore_gdbarch_init): Update.
3769 * m32r-tdep.c (m32r_gdbarch_init): Update.
3770 * ia64-tdep.c (ia64_gdbarch_init): Update.
3771 * h8300-tdep.c (h8300_gdbarch_init): Update.
3772 * frv-tdep.c (frv_gdbarch_init): Update.
3773 * cris-tdep.c (cris_gdbarch_init): Update.
3774 * arm-tdep.c (arm_gdbarch_init): Update.
3775 * alpha-tdep.c (alpha_gdbarch_init): Update.
3776
3777 2004-06-18 Michael Chastain <mec.gnu@mindspring.com>
3778
3779 * PROBLEMS: Add more specific information, and a work-around,
3780 for PR gdb/1458.
3781
3782 2004-06-18 Andrew Cagney <cagney@gnu.org>
3783
3784 * gdbarch.sh (DEPRECATED_FUNCTION_START_OFFSET): Deprecated.
3785 * gdbarch.h, gdbarch.c: Re-generate.
3786 * ada-lang.c (ada_finish_decode_line_1): Update.
3787 * infrun.c (handle_inferior_event): Update.
3788 * infcall.c (find_function_addr): Update.
3789 * linespec.c (minsym_found): Update.
3790 * symtab.c (find_function_start_sal, skip_prologue_using_sal):
3791 Update.
3792 * blockframe.c (legacy_frameless_look_for_prologue): Update.
3793 * cli/cli-cmds.c (disassemble_command): Update.
3794 * vax-tdep.c (vax_gdbarch_init): Update.
3795
3796 2004-06-18 Mark Kettenis <kettenis@gnu.org>
3797
3798 * i386-tdep.c (i386_collect_fpregset): Fix comment.
3799
3800 2004-06-17 Andrew Cagney <cagney@gnu.org>
3801
3802 GDB 6.1.1 released from the GDB 6.1 branch.
3803 * NEWS: Merge in 6.1.1 NEWS from 6.1 branch.
3804 * PROBLEMS: Ditto.
3805
3806 2004-06-16 Daniel Jacobowitz <dan@debian.org>
3807
3808 PR gdb/1658
3809 * dwarf2read.c (dwarf_decode_lines): Read the length of the extended
3810 operation as a uleb128. Found by Michael Coulter.
3811
3812 2004-06-16 Paul N. Hilfinger <Hilfinger@gnat.com>
3813
3814 * ada-tasks.c: Rename build_task_list to ada_build_task_list, and
3815 make it non-static.
3816 * ada-lang.h (task_control_block): declaration moved from ada-task.c
3817 to ada-lang.h; this is needed to be able to implement the kill command
3818 in multi-task mode.
3819 (task_ptid): Ditto.
3820 (task_entry): Ditto.
3821 (task_list): Ditto.
3822 (ada_build_task_list): Ditto.
3823
3824 * ada-lang.c: Conditionalize routines and data structures related
3825 to breakpoints, exceptions, completion, and symbol caching on
3826 GNAT_GDB, since these are not yet used in the submitted public sources.
3827 (ada_main_name): Editorial: Move definition out of exception-related
3828 code.
3829
3830 2004-06-15 Andrew Cagney <cagney@gnu.org>
3831
3832 * mips-tdep.c (non_heuristic_proc_desc): Delete call to
3833 deprecated_pc_in_call_dummy.
3834
3835 2004-06-15 Alan Modra <amodra@bigpond.net.au>
3836
3837 * dsrec.c (load_srec, make_srec): Use bfd_get_section_size instead of
3838 bfd_get_section_size_before_reloc or _raw_size.
3839 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3840 * dwarf2read.c (dwarf2_locate_sections): Likewise.
3841 (dwarf2_read_section): Likewise.
3842 * elfread.c (elf_locate_sections): Likewise.
3843 * gcore.c (derive_heap_segment): Likewise.
3844 * mipsread.c (read_alphacoff_dynamic_symtab): Likewise.
3845 * remote-e7000.c (e7000_load): Likewise.
3846 * remote-m32r-sdi.c (m32r_load): Likewise.
3847 * remote-mips.c (mips_load_srec): Likewise.
3848 (pmon_load_fast): Likewise.
3849 * remote.c (compare_sections_command): Likewise.
3850 * symfile.c (add_section_size_callback): Likewise.
3851 (load_section_callback): Likewise.
3852 (pc_in_unmapped_range): Likewise.
3853 (pc_in_mapped_range): Likewise.
3854 (sections_overlap): Likewise.
3855 (list_overlays_command): Likewise.
3856 (simple_overlay_update_1): Likewise.
3857 (simple_overlay_update): Likewise.
3858 * tracepoint.c (remote_set_transparent_ranges): Likewise.
3859 * win32-nat.c (core_section_load_dll_symbols): Likewise.
3860
3861 2004-06-14 Randolph Chung <tausq@debian.org>
3862
3863 * Makefile.in (hppa-hpux-tdep.o): Update dependency.
3864 * hppa-hpux-tdep.c (hp_cxx_exception_support_initialized): Make
3865 static.
3866 (hppa_hpux_inferior_created): New function.
3867 (hppa_hpux_init_abi): Register observer.
3868 * symfile.c (hp_cxx_exception_support_initialized)
3869 (RESET_HP_UX_GLOBALS): Remove HPUXHPPA specific hacks.
3870 (symbol_file_add_main_1, symbol_file_clear): Likewise.
3871
3872 2004-06-14 Randolph Chung <tausq@debian.org>
3873
3874 * MAINTAINERS (Write After Approval): Alphabetize my entry
3875 correctly.
3876
3877 2004-06-14 Andrew Cagney <cagney@gnu.org>
3878
3879 * MAINTAINERS (testsuite): List Michael Chastain as the lead
3880 testsuite maintainer.
3881
3882 2004-06-13 Andrew Cagney <cagney@gnu.org>
3883
3884 * infcmd.c (print_return_value): Fix logic, allow
3885 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS when struct_return.
3886
3887 * gdbarch.sh: For predicates, do not check GDB_MULTI_ARCH when
3888 defining any macros.
3889 * gdbarch.h: Re-generate.
3890
3891 * gdbarch.sh: Delete "level" attribute. Only check for a macro
3892 redefinition when multi-arch greater than GDB_MULTI_ARCH_PARTIAL.
3893 * gdbarch.h: Re-generate.
3894
3895 * values.c (generic_use_struct_convention): Don't check gcc_p.
3896
3897 * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE)
3898 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Delete.
3899 * gdbarch.h, gdbarch.c: Regenerate.
3900 * ns32k-tdep.h (NS32K_MAX_REGISTER_RAW_SIZE)
3901 (NS32K_MAX_REGISTER_VIRTUAL_SIZE): Delete macros.
3902 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
3903 deprecated_max_register_raw_size and
3904 deprecated_max_register_virtual_size.
3905 * v850-tdep.c (v850_gdbarch_init): Ditto.
3906 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
3907 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
3908 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
3909 * cris-tdep.c (cris_gdbarch_init): Ditto.
3910
3911 * gdbarch.sh (RETURN_VALUE_ON_STACK): Delete method.
3912 * gdbarch.h, gdbarch.c: Re-generate.
3913 * m68hc11-tdep.c (m68hc11_return_value_on_stack): Delete function.
3914 (m68hc11_use_struct_convention): Delete function.
3915 (m68hc11_extract_struct_value_address): Delete function.
3916 (m68hc11_return_value): New function.
3917 (m68hc11_gdbarch_init): Instead of store_return_value,
3918 extract_return_value, return_value_on_stack,
3919 deprecated_extract_struct_value_address and use_struct_convention,
3920 set return_value.
3921 * values.c (using_struct_return): Do not call
3922 RETURN_VALUE_ON_STACK.
3923 * arch-utils.h (generic_return_value_on_stack_not): Delete
3924 declaration.
3925 * arch-utils.c (generic_return_value_on_stack_not): Delete
3926 function.
3927
3928 2004-06-12 Andrew Cagney <cagney@gnu.org>
3929
3930 * values.c (register_value_being_returned): Delete function.
3931 * infcmd.c (legacy_return_value): Delete function.
3932 * infcall.c (call_function_by_hand): Inline
3933 "register_value_being_returned", simplify.
3934 * values.c (using_struct_return): Update comment, refer to
3935 print_return_value instead of register_value_being_returned.
3936 * infcmd.c (print_return_value): Inline calls to
3937 register_value_being_returned and legacy_return_value. Simplify.
3938
3939 2004-06-11 Randolph Chung <tausq@debian.org>
3940
3941 * somread.c (som_symtab_read): Exclude gcc local symbols.
3942
3943 2004-06-11 Randolph Chung <tausq@debian.org>
3944
3945 * infrun.c (handle_inferior_event): Handle the case when a
3946 trampoline ends up in the runtime resolver, and if the trampoline
3947 has no name. Rearrange the code so that all the trampoline
3948 processing happens before other step-out-of-range handling.
3949
3950 2004-06-11 Martin Hunt <hunt@redhat.com>
3951
3952 * mips-tdep.c (mips_gdbarch_init): Recognize vr4120
3953 has no fpu.
3954
3955 2004-06-10 Andrew Cagney <cagney@gnu.org>
3956
3957 * blockframe.c (legacy_inside_entry_func): Delete.
3958 (legacy_frame_chain_valid): Inline call to
3959 legacy_inside_entry_func, simplify.
3960
3961 2004-06-10 Bob Rossi <bob@brasko.net>
3962
3963 * dbxread.c (read_dbx_symtab): Set pst->dirname when known.
3964 * dwarf2read.c (partial_die_info): Add dirname field.
3965 (dwarf2_build_psymtabs_hard): Set pst->dirname when known.
3966 (read_partial_die): Save away DW_AT_comp_dir.
3967 * defs.h (symtab_to_filename): Removed.
3968 * source.c (find_and_open_source): Added.
3969 (open_source_file): Just calls find_and_open_source.
3970 (symtab_to_filename): Removed.
3971 (symtab_to_fullname, psymtab_to_fullname): Added.
3972 * source.h (psymtab_to_fullname,symtab_to_fullname): Added.
3973 * symtab.c (lookup_symtab): Call symtab_to_fullname instead of
3974 symtab_to_filename.
3975 * symtab.h (partial_symtab): Add dirname field.
3976 * mi/mi-cmd-file.c (FILENAME,FULLNAME): Added.
3977 (mi_cmd_file_list_exec_source_file): Call new function
3978 symtab_to_fullname to find fullname.
3979 (mi_cmd_file_list_exec_source_files): Added.
3980 * mi/mi-cmds.c (mi_cmd_mi_cmds): Add -file-list-exec-source-files.
3981 * mi/mi-cmds.h (mi_cmd_file_list_exec_source_files): Added.
3982
3983 2004-06-10 Andrew Cagney <cagney@gnu.org>
3984
3985 * avr-tdep.c (avr_gdbarch_init): Do not set use_struct_convention
3986 to generic_use_struct_convention, the default value.
3987
3988 * mn10300-tdep.c (mn10300_type_align): Call internal_error instead
3989 of abort.
3990
3991 * ns32k-tdep.c (ns32k_push_arguments): New function.
3992 (ns32k_gdbarch_init): Set deprecated_push_arguments.
3993 * infcall.c (call_function_by_hand): Call error instead of
3994 legacy_push_arguments.
3995 * value.h (legacy_push_arguments): Delete declaration.
3996 * valops.c (legacy_push_arguments): Delete function.
3997 (value_push): Delete function.
3998
3999 2004-06-10 Brian Ford <ford@vss.fsi.com>
4000
4001 * coffread.c (coff_symfile_read): Prevent mixed debugging formats
4002 from corrupting/reinitializing the psymtab. Support DWARF 2 frame
4003 info.
4004 * dbxread.c (elfstab_build_psymtabs): Remove bogus comment.
4005
4006 2004-06-10 Andrew Cagney <cagney@gnu.org>
4007
4008 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Delete.
4009 * gdbarch.h, gdbarch.c: Re-generate.
4010 * frame.h (deprecated_pc_in_call_dummy): Delete "sp" and "fp"
4011 parameters.
4012 * dummy-frame.c (deprecated_pc_in_call_dummy): Update.
4013 * arm-tdep.c (arm_pc_is_thumb_dummy): Call
4014 deprecated_pc_in_call_dummy instead of
4015 DEPRECATED_PC_IN_CALL_DUMMY.
4016 (arm_skip_prologue): Ditto.
4017 * xstormy16-tdep.c (xstormy16_pop_frame, xstormy16_scan_prologue)
4018 (xstormy16_frame_saved_pc, xstormy16_frame_chain): Ditto.
4019 * v850-tdep.c (v850_find_callers_reg, v850_frame_chain)
4020 (v850_pop_frame, v850_frame_saved_pc, v850_frame_init_saved_regs):
4021 Ditto.
4022 * sh64-tdep.c (sh64_frame_chain, sh64_get_saved_pr)
4023 (sh64_init_extra_frame_info, sh64_get_saved_register)
4024 (sh64_pop_frame): Ditto.
4025 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
4026 * mcore-tdep.c (mcore_find_callers_reg, mcore_frame_saved_pc)
4027 (mcore_pop_frame, mcore_init_extra_frame_info): Ditto.
4028 * h8300-tdep.c (h8300_frame_chain, h8300_frame_saved_pc)
4029 (h8300_pop_frame): Ditto.
4030 * blockframe.c (legacy_inside_entry_func)
4031 (legacy_frame_chain_valid): Ditto.
4032 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update call
4033 to deprecated_pc_in_call_dummy.
4034
4035 2004-06-09 Andrew Cagney <cagney@gnu.org>
4036
4037 * gdbarch.sh (REGISTER_TO_VALUE, VALUE_TO_REGISTER): Do not
4038 provide a default value.
4039 (CONVERT_REGISTER_P): Default to generic_convert_register_p.
4040 * gdbarch.h, gdbarch.c: Re-generate.
4041 * arch-utils.c (generic_convert_register_p): Rename
4042 legacy_convert_register_p
4043 (legacy_register_to_value, legacy_value_to_register): Delete
4044 functions.
4045 * arch-utils.h (generic_convert_register_p): Rename
4046 legacy_convert_register_p.
4047 (legacy_register_to_value, legacy_value_to_register): Delete
4048 declarations.
4049
4050 * gdbarch.sh (DEPRECATED_REGISTER_CONVERT_TO_RAW)
4051 (DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL)
4052 (DEPRECATED_REGISTER_CONVERTIBLE): Delete.
4053 * gdbarch.h, gdbarch.c: Re-generate.
4054 * infcmd.c (default_print_registers_info): Simplify.
4055 * findvar.c (value_of_register): Simplify.
4056 * mi/mi-main.c (get_register): Simplify.
4057 * arch-utils.c (legacy_convert_register_p): Always return 0.
4058 (legacy_register_to_value, legacy_value_to_register): Always call
4059 internal_error.
4060
4061 * infptrace.c (child_xfer_memory) [CLEAR_INSN_CACHE]: Delete
4062 #ifdef CLEAR_INSN_CACHE code.
4063 * target.c (generic_mourn_inferior) [CLEAR_DEFERRED_STORES]:
4064 Delete #ifdef CLEAR_DEFERRED_STORES code.
4065
4066 * solib-svr4.c [HANDLE_SVR4_EXEC_EMULATORS]: Delete #ifdef code.
4067
4068 * config/ia64/tm-linux.h (TARGET_ELF64): Delete macro, Update
4069 copyright.
4070 * config/ia64/tm-aix.h (TARGET_ELF64): Ditto.
4071
4072 * config/mips/mipsv4.mh: Delete file.
4073
4074 * config/pa/tm-hppa64.h (HPREAD_ADJUST_STACK_ADDRESS): Delete
4075 unreferenced macro.
4076 (hpread_adjust_stack_address): Delete declaration.
4077
4078 2004-06-08 Andrew Cagney <cagney@gnu.org>
4079
4080 * infptrace.c [ATTACH_DETACH]: Remove #ifdef wrappers.
4081 (attach, detach): When neither PT_ATTACH / PT_DETACH nor
4082 PTRACE_ATTACH / PTRACE_DETACH available call error.
4083 (PT_ATTACH, PT_DETACH): Move definition to attach / detach.
4084 * infttrace.c (update_thread_state_after_attach, attach, detach):
4085 Remove #ifdef wrappers.
4086 * inftarg.c (child_attach, child_detach): Remove #ifdef wrappers.
4087 * gnu-nat.c [ATTACH_DETACH]: Remove #ifdef wrappers.
4088 * config/nm-bsd.h (ATTACH_DETACH): Delete.
4089 * config/nm-sysv4.h (ATTACH_DETACH): Delete.
4090 * config/nm-nbsd.h (ATTACH_DETACH): Delete.
4091 * config/nm-linux.h (ATTACH_DETACH): Delete.
4092 * config/rs6000/nm-rs6000.h (ATTACH_DETACH): Delete.
4093 * config/pa/nm-hppah.h (ATTACH_DETACH): Delete.
4094 * config/i386/nm-i386sco5.h (ATTACH_DETACH): Delete.
4095 * config/i386/nm-i386sco4.h (ATTACH_DETACH): Delete.
4096 * config/i386/nm-i386gnu.h (ATTACH_DETACH): Delete.
4097
4098 2004-06-08 Corinna Vinschen <vinschen@redhat.com>
4099
4100 * configure.in: Set $configdir to the right OS specific value.
4101 Use value when setting $tcldir and $tkdir.
4102 * configure: Regenerate.
4103
4104 2004-06-06 Paul Brook <paul@codesourcery.com>
4105
4106 * gdb/dwarf2-frame.c (decode_frame_entry_1): Decode version 3 CIE
4107 records.
4108
4109 2004-06-08 Paul N. Hilfinger <Hilfinger@gnat.com>
4110
4111 * ada-lang.c (lookup_symbol_in_language): New function to allow
4112 re-use of another language's symbol lookup code. (Placed here
4113 temporarily while Ada support is being integrated into the public
4114 tree).
4115 (restore_language): New auxiliary function for
4116 lookup_symbol_in_language.
4117 * ada-lang.h (lookup_symbol_in_language): Declare (Placed here
4118 temporarily while Ada support is being integrated into the public
4119 tree).
4120
4121 2004-06-08 Alexandre Oliva <aoliva@redhat.com>
4122
4123 * Makefile.in (check//%): New.
4124
4125 * mn10300-tdep.c (mn10300_extract_return_value): Rewrite.
4126 (mn10300_store_return_value): Rewrite.
4127 (mn10300_type_align): New.
4128 (mn10300_use_struct_convention): Rewrite.
4129 (mn10300_return_value): New, using all of the above.
4130 (mn10300_pop_frame_regular): Add saved_regs_size.
4131 (mn10300_gdbarch_init): Remove deprecated rewritten entry points.
4132
4133 * mn10300-tdep.c (mn10300_analyze_prologue): Don't compute saved
4134 regs if PC is on movm.
4135
4136 2004-06-07 Jim Blandy <jimb@redhat.com>
4137
4138 Add native Linux support for the PowerPC E500.
4139 * ppc-tdep.h (struct gdbarch_tdep): New member: 'ppc_gprs_pseudo_p'.
4140 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize it to false on
4141 all architectures except the E500.
4142 * ppc-linux-nat.c: (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): New
4143 #definitions.
4144 (struct gdb_evrregset_t): New type.
4145 (have_ptrace_getsetevrregs): New variable.
4146 (get_spe_registers, read_spliced_spe_reg, fetch_spe_register,
4147 fetch_spe_registers): New functions.
4148 (fetch_register): Call fetch_spe_register as appropriate.
4149 Assert that we're only passed raw register numbers.
4150 (fetch_ppc_registers): Call fetch_spe_registers as appropriate.
4151 Don't fetch gprs if they're pseudoregisters.
4152 (set_spe_registers, write_spliced_spe_reg, store_spe_register,
4153 store_spe_registers): New functions.
4154 (store_register): Call store_spe_register as appropriate.
4155 Assert that we're only passed raw register numbers.
4156 (store_ppc_registers): Call store_spe_registers as appropriate.
4157 Don't store gprs if they're pseudoregisters.
4158
4159 2004-06-07 Jeff Johnston <jjohnstn@redhat.com>
4160
4161 * thread-db.c (thread_get_info_callback): Fill in the thread_info
4162 struct if one exists, even if we are dealing with a zombie thread.
4163
4164 2004-06-07 Andrew Cagney <cagney@gnu.org>
4165
4166 * target.h (PC_REQUIRES_RUN_BEFORE_USE): Delete definition.
4167 * config/pa/tm-hppa.h (DEPRECATED_PC_REQUIRES_RUN_BEFORE_USE):
4168 Rename PC_REQUIRES_RUN_BEFORE_USE.
4169 * breakpoint.c (breakpoint_sals_to_pc): Update. Wrap reference in
4170 #ifdef.
4171
4172 2004-06-07 Randolph Chung <tausq@debian.org>
4173
4174 * hppa-tdep.c (hppa_frame_cache): Handle the cases when we start
4175 unwinding after sp has been saved to the stack but before the end
4176 of the prologue, and after the fp has been modified but before it has
4177 been saved to the stack.
4178 (hppa_frame_base_address, hppa_frame_base, hppa_frame_base_sniffer):
4179 Remove superfluous definitions.
4180 (hppa_gdbarch_init): Remove superfluous frame base sniffer.
4181
4182 2004-06-07 Guy Martin <gmsoft@gentoo.org>
4183
4184 Committed by Randolph Chung.
4185 * hppa-linux-nat.c: Include the correct version of the header file
4186 depending on the kernel version.
4187
4188 2004-06-06 Randolph Chung <tausq@debian.org>
4189
4190 * infrun.c (trap_expected_after_continue): Remove HP_OS_BUG workaround.
4191 (proceed, init_wait_for_inferior, handle_inferior_event): Likewise.
4192
4193 2004-06-06 Randolph Chung <tausq@debian.org>
4194
4195 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
4196 (hppa_hpux_skip_trampoline_code): Don't cache symbol values.
4197 * hppa-linux-tdep.c (hppa_linux_in_dyncall): Likewise.
4198 * hppa-tdep.c (hppa_symbol_address): New function definition.
4199 * hppa-tdep.h (hppa_symbol_address): New function declaration.
4200
4201 2004-06-06 Randolph Chung <tausq@debian.org>
4202
4203 * hppa-tdep.h (struct value): Forward declaration.
4204 (gdbarch_tdep): Define tdep find_global_pointer method.
4205 * hppa-tdep.c (hppa32_push_dummy_call): Find the global pointer
4206 associated with the function we are trying to call, and write it
4207 to the gp register.
4208 (hppa32_convert_from_funct_ptr_addr): New function.
4209 (hppa_find_global_pointer): New function.
4210 (hppa_gdbarch_init): Set default find_global_pointer method; set
4211 convert_from_func_ptr_addr method.
4212 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): New function.
4213 (hppa_linux_init_abi): Set find_global_pointer method.
4214 * Makefile.in (hppa-linux-tdep.o): Add value.h dependency.
4215
4216 2004-06-06 Randolph Chung <tausq@debian.org>
4217
4218 * gdbarch.sh (PUSH_DUMMY_CALL): Change CORE_ADDR func_addr argument
4219 to struct value *function.
4220 * gdbarch.c: Regenerate.
4221 * gdbarch.h: Likewise.
4222 * infcall.c (call_function_by_hand): Pass entire function value
4223 to push_dummy_call.
4224
4225 * Makefile.in (alpha-tdep.o, frv-tdep.o, ia64-tdep.o, mips-tdep.o)
4226 (ppc-sysv-tdep.o, rs6000-tdep.o): Update dependencies.
4227 * alpha-tdep.c (alpha_push_dummy_call): Update call signature.
4228 * amd64-tdep.c (amd64_push_dummy_call): Likewise.
4229 * arm-tdep.c (arm_push_dummy_call): Likewise.
4230 * avr-tdep.c (avr_push_dummy_call): Likewise.
4231 * cris-tdep.c (cris_push_dummy_call): Likewise.
4232 * d10v-tdep.c (d10v_push_dummy_call): Likewise.
4233 * frv-tdep.c (frv_push_dummy_call): Likewise.
4234 * h8300-tdep.c (h8300_push_dummy_call): Likewise.
4235 * hppa-tdep.c (hppa32_push_dummy_call)
4236 (hppa64_push_dummy_call): Likewise.
4237 * i386-tdep.c (i386_push_dummy_call): Likewise.
4238 * ia64-tdep.c (ia64_push_dummy_call): Likewise.
4239 * m32r-tdep.c (m32r_push_dummy_call): Likewise.
4240 * m68hc11-tdep.c (m68hc11_push_dummy_call): Likewise.
4241 * m68k-tdep.c (m68k_push_dummy_call): Likewise.
4242 * m88k-tdep.c (m88k_push_dummy_call): Likewise.
4243 * mips-tdep.c (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call)
4244 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Likewise.
4245 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call)
4246 (ppc64_sysv_abi_push_dummy_call): Likewise.
4247 * ppc-tdep.h (ppc_sysv_abi_push_dummy_call)
4248 (ppc64_sysv_abi_push_dummy_call): Likewise.
4249 * rs6000-tdep.c (rs6000_push_dummy_call): Likewise.
4250 * s390-tdep.c (s390_push_dummy_call): Likewise.
4251 * sh-tdep.c (sh_push_dummy_call_fpu)
4252 (sh_push_dummy_call_nofpu): Likewise.
4253 * sparc-tdep.c (sparc32_push_dummy_call): Likewise.
4254 * sparc64-tdep.c (sparc64_push_dummy_call): Likewise.
4255 * vax-tdep.c (vax_push_dummy_call): Likewise.
4256
4257 2004-06-04 Jim Blandy <jimb@redhat.com>
4258
4259 * ppc-linux-nat.c (fetch_register): Don't forget to pass the
4260 gdbarch argument to register_size.
4261
4262 * rs6000-tdep.c (rs6000_store_return_value): Use
4263 regcache_cooked_write_part instead of
4264 deprecated_write_register_bytes.
4265 (rs6000_gdbarch_init): Register it for gdbarch_store_return_value,
4266 not gdbarch_deprecated_store_return_value.
4267
4268 * ppc-linux-nat.c (store_register, fetch_register): Remove
4269 incorrect assertions. Simplify and generalize handling of
4270 transfers whose sizes are not multiples of, or less than, sizeof
4271 (PTRACE_XFER_TYPE).
4272
4273 2004-06-04 Jeff Johnston <jjohnstn@redhat.com>
4274
4275 * infrun.c (handle_inferior_event): Don't treat an invalid ptid
4276 as a new thread event.
4277 * thread-db.c (thread_get_info_callback): If the thread is a
4278 zombie, return TD_THR_ZOMBIE.
4279 (thread_from_lwp): If thread_get_info_callback returns
4280 TD_THR_ZOMBIE, check if the thread is still on the thread list
4281 and return a -1 ptid if not found.
4282 (thread_db_wait): If thread_from_lwp returns a -1 ptid, then
4283 change the status to TARGET_WAITKIND_SPURIOUS.
4284
4285 2004-06-03 Corinna Vinschen <vinschen@redhat.com>
4286
4287 * sh-tdep.c (sh3e_sh4_store_return_value): Correctly store
4288 double values in little endian mode.
4289
4290 2004-06-02 Albert Chin-A-Young <china@thewrittenword.com>
4291
4292 Committed by Andrew Cagney.
4293 * gdb/dictionary.c, gdb/gdbtypes.h: Remove trailing comma
4294 after last enum constant to avoid error from IBM C
4295 compiler.
4296
4297 2004-06-02 Jim Blandy <jimb@redhat.com>
4298
4299 * ppc-linux-nat.c (store_register, fetch_register): Rename 'mess'
4300 to 'message', and make it local to the lone block that uses it.
4301
4302 * ppc-linux-nat.c (store_register): Remove unused local 'offset'.
4303
4304 2004-06-02 Paul N. Hilfinger <hilfinger@gnat.com>
4305
4306 * ada-exp.y: Update copyright notice.
4307 Include block.h.
4308
4309 Replace REGNAME, LAST, INTERNAL_VARIABLE with
4310 SPECIAL_VARIABLE and unify the treatment of these cases.
4311
4312 (write_attribute_call0): Remove.
4313 (write_attribute_call1): Remove.
4314 (write_attribute_calln): Remove.
4315 (save_qualifier): Add missing semicolon.
4316
4317 (simple_exp,exp): Decomment (i.e., reactivate) code that was
4318 temporarily disabled to allow compilation with FSF head version.
4319
4320 (simple_exp syntax): Remove use of OP_ADA_ATTRIBUTE and
4321 use individual operators (OP_*) for all attributes.
4322 (exp syntax): Use write_int.
4323 Handle STRING literals with OP_STRING.
4324 (variable syntax): Add limit parameter to calls to
4325 write_object_renaming.
4326
4327 (temp_parse_space): New definition to hold entities that need
4328 only live until the next call to ada_parse.
4329 (string_to_operator): Rename fields of ada_opname_table entries.
4330
4331 (write_var_from_sym): Record block.
4332 (write_var_from_name): Minor reformatting.
4333 Make sure saved name is properly encoded in the case of multiple
4334 matches, and set its language to Ada.
4335 Update comment.
4336 Modify to indicate unresolved name as symbol in the UNRESOLVED
4337 namespace, allocated in temp_parse_space.
4338 (write_int): New function.
4339
4340 (write_object_renaming): Add max_depth parameter to limit
4341 chains of object renamings.
4342 Handle case where root of renaming expression is itself a renaming.
4343 Use temp_parse_space for temporary name buffer.
4344 Handle renamings to dereferenced pointers (___XEXA suffices).
4345
4346 (ada_parse, yyerror, string_to_operator,
4347 write_var_from_sym, write_var_from_name, write_attribute_call0,
4348 write_attribute_call1, write_attribute_calln,
4349 write_object_renaming): Protoize.
4350
4351 (_initialize_ada_exp): New function.
4352
4353 * ada-lang.c: Update copyright notice.
4354 General terminology change to conform to GNAT compiler usage:
4355 mangle => encode, demangle => decode
4356 Include gdb_obstack.h.
4357 Include gdb_regex.h
4358 Include frame.h
4359 Include hashtab.h
4360 Include completer.h
4361 Include gdb_stat.h
4362 Include block.h
4363 Include infcall.h
4364
4365 (ADA_RETAIN_DOTS): Make sure this is defined.
4366 (TRUNCATION_TOWARDS_ZERO): Define.
4367 (struct string_vector): Define.
4368 (unresolved_names): Remove definition.
4369 (xnew_string_vector): New function.
4370 (string_vector_append): New function.
4371 (extract_string): Make static.
4372 (ada_unqualified_name): New function.
4373 (add_angle_brackets): New function.
4374 (function_name_from_pc): New function.
4375 (place_on_stack): Rename to ensure_lval.
4376
4377 (ensure_lval): Renamed from place_on_stack.
4378 Make identity on lvals.
4379 Update comment.
4380 (is_nonfunction): New interface.
4381 Only symbols in LOC_CONST class can be enumerals.
4382 (fill_in_ada_prototype): Remove; now independent of language.
4383 (add_defn_to_vec): Add obstack and symtab arguments.
4384 Use obstack to hold collected definitions.
4385 (num_defns_collected): New function.
4386 (defns_collected): New function.
4387 (ada_resolve_subexp): Rename to resolve_subexp.
4388 (resolve_subexp): Renamed from ada_resolve_subexp.
4389 (ada_op_name): Return non-const result.
4390 (ada_decoded_op_name): Renamed from ada_op_name, now used for
4391 other purposes.
4392
4393 (to_fixed_array_type): Add declaration.
4394 (coerce_unspec_val_to_type): Remove offset parameter.
4395 (find_sal_from_funcs_and_line): New interface.
4396 (find_line_in_linetable): Ditto.
4397
4398 (all_sals_for_line): Rename to ada_sals_for_line and make
4399 global.
4400 Add new parameter. When set, do not ask the user to choose the
4401 instance, but use the first one found instead.
4402 Use given line number in returned sals.
4403 Fix comment.
4404 Skip the prologue if funfirstline is set.
4405 Correct for memory leak when 0 lines found.
4406
4407 (value_pos_atr): Use pos_atr.
4408 (pos_atr): New function.
4409 (standard_lookup): Add block parameter.
4410
4411 (makeTimeStart): Remove declaration and uses.
4412 (makeTimeStop): Remove declaration and uses.
4413
4414 (ada_completer_word_break_characters): Allow for VMS.
4415 (ADA_MAIN_PROGRAM_SYMBOL_NAME): Make into constant.
4416 (raise_sym_name): New constant.
4417 (raise_unhandled_sym_name): New constant.
4418 (raise_assert_sym_name): New constant.
4419 (process_raise_exception_name): New constant.
4420 (longest_exception_template): New constant.
4421 (warning_limit): New variable to limit warnings during expression
4422 evaluation.
4423 (warnings_issued): New variable to keep track of warnings issued.
4424 (known_runtime_file_name_patterns): New constant.
4425 (known_auxiliary_function_name_patterns): New constant.
4426 (symbol_list_obstack): New variable.
4427
4428 (field_name_match,is_suffix,is_suppressed_name,ada_encode,
4429 ada_decode,ada_match_name,encoded_ordered_before,equiv_types,
4430 lesseq_defined_than,is_nondebugging_type,is_name_suffix,wild_match,
4431 find_sal_from_funcs_and_line, ada_breakpoint_rewrite,
4432 ada_is_tagged_type, ada_is_parent_field, ada_is_wrapper_field,
4433 ada_variant_discrim_name, field_alignment, dynamic_template_type,
4434 ada_is_character_type, ada_is_aligner_type, ada_is_vax_floating_type):
4435 Replace use of deprecated STREQ and STREQN macros by calls to strncmp
4436 and strcmp.
4437
4438 (ada_get_field_index): New function.
4439 (lim_warning): New function.
4440 (ada_translate_error_message): New function.
4441 (MAX_OF_SIZE): New function.
4442 (MIN_OF_SIZE): New function.
4443 (UMAX_OF_SIZE): New function.
4444 (UMIN_OF_SIZE): New function.
4445 (discrete_type_high_bound): New function.
4446 (discrete_type_low_bound): New function.
4447 (base_type): New function.
4448 (do_command): Remove.
4449
4450 (ada_update_initial_language): Use language_ada, not language_unknown.
4451 (ada_encode): Renamed from ada_mangle.
4452 Obey ADA_RETAIN_DOTS.
4453 (ada_decode): Renamed from ada_demangle.
4454 Update coding conventions.
4455 (decoded_names_store): New hash table.
4456 (ada_decode_symbol): New function.
4457 (ada_la_decode): New function.
4458
4459 (modify_general_field): Correct computations of offset and bit
4460 position.
4461 (desc_base_type): Handle ref types, too.
4462 (ada_is_direct_array_type): New function.
4463
4464 (ada_is_simple_array): Rename to ada_is_simple_array_type.
4465 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
4466 (ada_is_bogus_array_descriptor,ada_type_of_array,
4467 ada_coerce_to_simple_array_ptr,ada_coerce_to_simple_array,
4468 ada_type_match,convert_actual,ada_evaluate_subexp): Use renamed
4469 ada_is_array_descriptor_type.
4470
4471 (ada_coerce_to_simple_array_type): Fix incorrect value freeing.
4472 (ada_is_packed_array_type): Handle pointers or
4473 references to packed arrays as well.
4474 (packed_array_type): Uncomment use of TYPE_FLAG_FIXED_INSTANCE.
4475 (decode_packed_array_type): Search for the packed array type
4476 symbol in the currently selected block and associated
4477 superblocks too.
4478 Use lookup_symbol again.
4479
4480 (decode_packed_array): Handle pointers and references.
4481 Update call to coerce_unspec_val_to_type.
4482 (decode_packed_array_type,value_subscript_packed): Limit warnings.
4483 (ada_value_primitive_packed_val): Improve comment.
4484
4485 (ada_index_type): Substitute int type for "undefined".
4486 (ada_index_type,ada_array_bound_from_type,ada_array_bound,
4487 ada_array_langth, ada_is_string_type): Use renamed
4488 ada_is_simple_array_type.
4489 (empty_array): New function.
4490
4491 (ada_resolve): Rename to resolve.
4492 (resolve): Make static.
4493 Call renamed resolve_subexp.
4494 Update comment.
4495 (ada_resolve_subexp): Rename to resolve_subexp.
4496 (resolve_subexp): Update comment.
4497 Decomment disabled code.
4498 Add LOC_COMPUTED* cases.
4499 Modify to use temporary struct symbols (marked as being in
4500 UNDEF_NAMESPACE) to indicate unresolved names, instead of
4501 OP_UNRESOLVED_VALUE.
4502 Remove OP_ATTRIBUTE; use individual opcodes for attributes.
4503 Add OP_STRING case.
4504 Remove OP_ARRAY.
4505 Use SYMBOL_PRINT_NAME instead of ada_demangle.
4506 Use new ada_lookup_symbol_list interface.
4507 Use new ada_resolve_function interface.
4508 Remove OP_TYPE case.
4509
4510 (ada_args_match): Idiot proof against null actuals.
4511 Use intermediate variables to clarify.
4512 (ada_resolve_function): Update comment and interface.
4513 (mangled_ordered_before): Rename to encoded_ordered_before and
4514 update comment.
4515 (sort_choices): Update comment and interface.
4516 Use SYMBOL_LINKAGE_NAME in place of SYMBOL_NAME.
4517 (user_select_syms): New interface.
4518 Use new sort_choices interface.
4519 Use SYMBOL_PRINT_NAME rather than SYMBOL_SOURCE_NAME.
4520 (possible_user_operator_p): Idiot-proof against null values.
4521 (ada_simple_renamed_entity): Don't make cleanup; rely on
4522 caller to free result string.
4523 Remove const from return type.
4524 (make_array_descriptor): Rename uses of place_on_stack to
4525 ensure_lval.
4526 Make sure that arrays are on stack.
4527
4528 (HASH_SIZE): Define.
4529 (struct cache_entry): Define.
4530 (cache_space): Define.
4531 (cache): Define.
4532 (clear_ada_sym_cache): New function.
4533 (find_entry): New function.
4534 (lookup_cached_symbol): New function.
4535 (defn_vector_size): Define.
4536 (cache_symbol): New function.
4537 (defn_symbols): Remove.
4538
4539 (standard_lookup): Use lookup_symbol_in_language to get effect of
4540 C lookup.
4541 Cache results.
4542
4543 (symbol_completion_match): New function.
4544 (symbol_completion_add): New function.
4545 (ada_make_symbol_completion_list): New function.
4546
4547 (ada_lookup_partial_symbol,ada_lookup_simple_minsym,
4548 add_symbols_from_enclosing_procs,remove_extra_symbols): Replace
4549 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
4550 (symtab_for_sym): Handle LOC_COMPUTED, LOC_COMPUTED_ARG.
4551
4552 (ada_lookup_simple_minsym): New function.
4553 (ada_lookup_minimal_symbol): Use ada_lookup_simple_minsym.
4554
4555 (add_symbols_from_enclosing_procs): New interface.
4556 Conditionalize more helpfully.
4557 Don't bother if program isn't running.
4558 Use new interface to get_frame_block.
4559 Limit number of levels searched with MAX_LEXICAL_LEVELS, just in case.
4560
4561 (remove_extra_symbols): New interface.
4562 (xget_renaming_scope): New function.
4563 (is_package_name): New function.
4564 (renaming_is_visible): New function.
4565 (remove_out_of_scope_renamings): New function.
4566
4567 (ada_lookup_symbol_list): New interface.
4568 Properly reinitialize the symbol list obstack.
4569 Don't call add_symbols_from_enclosing_procs if we start from a
4570 static or global block.
4571 Use new interfaces to ada_add_block_symbols, add_defn_to_vec,
4572 add_symbols_from_enclosing_procs.
4573 Add symtab data to cached entries.
4574 Handle symbols prefixed with
4575 "standard__" specially; strip prefix and don't look in local symbols.
4576 Do not include out of scope renaming symbols in list of
4577 symbols returned.
4578 Add const to block parameter.
4579 Move check for non-local, non-global symbols earlier.
4580 Remove timing stuff.
4581 (ada_lookup_symbol): New interface.
4582 Find symtab as well.
4583 (ada_lookup_symbol_nonlocal): New function.
4584
4585 (is_name_suffix): Enhance suffix detection to recognize
4586 an optional "__[:digit:]+" before any "\.[:digit:]+" suffix.
4587 (is_dot_digits_suffix): New function.
4588 (wild_match): Ignore ".[:digit:]*" suffixes during matches.
4589
4590 (ada_add_block_symbols): New interface. Use obstack to return results
4591 in a vector of struct ada_symbol_infos. Add symtab argument.
4592 Use new interface to add_defn_to_vec.
4593 Remove calls to fill_in_ada_prototype.
4594 Use BLOCK_BUCKETS, BLOCK_BUCKET.
4595
4596 (ada_finish_decode_line_1): Add const qualification to local to fix
4597 warning.
4598 Start looking in static block for functions to avoid attempts
4599 to search frame chain for up-level variables.
4600 Adapt to new ada_sals_for_line interface.
4601 Use new interfaces to ada_lookup_symbol_list and user_select_syms.
4602 Handle quoting of the function name inside the spec string.
4603 Skip prologue when funfirstline is set and update the
4604 function documentation to that effect.
4605
4606 (debug_print_lines, debug_print_block, debug_print_blocks,
4607 debug_print_symtab): Remove.
4608
4609 (ada_main_name): New function.
4610 (ada_exception_breakpoint_type): New function.
4611 (is_known_support_routine): New function.
4612 (ada_find_printable_frame): Renamed from find_printable_frame and made
4613 global.
4614 Remove level parameter.
4615 Use new interface to select_frame.
4616
4617 (begin_command): Remove.
4618 (ada_adjust_exception_stop): New function.
4619 (ada_print_exception_stop): New function.
4620 (exception_name_from_cond): New function.
4621 (ada_report_exception_break): Replace disabled code with
4622 conditionalization on GNAT_GDB.
4623 Get the exception name from the condition string.
4624 Remove and move functionality into new functions
4625 ada_print_exception_breakpoint_task and
4626 ada_print_exception_breakpoint_nontask.
4627 (error_breakpoint_runtime_sym_not_found): New function.
4628 (is_runtime_sym_defined): New function.
4629 (ada_breakpoint_rewrite): Uncomment suppressed code.
4630 Use symbolic error-message and runtime-symbol names.
4631 Surround runtime symbol names in quotes.
4632 Allow non-specific breakpoints on exceptions and assertions before
4633 program starts.
4634
4635 (ada_is_tagged_type): Add parameter.
4636 (ada_is_tag_type): New function.
4637 (ada_tag_type): Use new ada_lookup_struct_elt_type interface.
4638 (ada_variant_discrim_type): Ditto.
4639 (value_tag_from_contents_and_address): New function.
4640 (type_from_tag): New function.
4641 (struct tag_args): New structure used to communicate with
4642 ada_tag_name_1.
4643 (ada_tag_name_1): New function.
4644 (ada_tag_name): New function.
4645
4646 (ada_scan_number): Update comment.
4647 (find_struct_field): New function.
4648 (ada_search_struct_field): Make static.
4649 (ada_value_struct_elt): New version that returns references when
4650 given pointers or references to structs.
4651 (ada_lookup_struct_elt_type): Add 'refok' parameter.
4652 (ada_which_variant_applies): Use new ada_lookup_struct_elt_type
4653 interface.
4654 (ada_value_ind): Use new ada_to_fixed_value interface.
4655 (ada_coerce_ref): Ditto.
4656 (field_offset): Remove.
4657
4658 (ada_find_any_symbol): New function, extracted from ada_find_any_type.
4659 (ada_find_renaming_symbol): New function.
4660 (ada_prefer_type): Prefer named types over unnamed ones.
4661 (variant_field_index): New function.
4662 (contains_variant_part): Removed: subsumed by variant_field_index.
4663 (ada_template_to_fixed_record_type): New function, mostly from
4664 template_to_fixed_record_type.
4665 (template_to_fixed_record_type):
4666 Do not scan the type fields beyond the last one; prevents a
4667 potential SEGV.
4668 Handle case where variant field is listed BEFORE discriminant it
4669 depends on.
4670 Fix calculation of record length when bit length is
4671 not evenly divisible by char length.
4672 Move code to ada_template_to_fixed_record_type and call it.
4673
4674 (template_to_static_fixed_type): Revise comment.
4675 Modify to work on ordinary record types as well as templates,
4676 so as to handle fields that use ___XVE or ___XVU encodings.
4677 (to_record_with_fixed_variant_part): Fill out comment.
4678 Initialize C++ stuff in right type.
4679 Allow case where DVAL is null.
4680 Handle case where variant field is not last.
4681 Fix typo concerning record length.
4682 (to_fixed_record_type): Decomment disabled code.
4683 (to_fixed_record_type): Use variant_field_index instead of
4684 contains_variant_part.
4685 (to_fixed_variant_branch_type): Ditto.
4686 (to_fixed_array_type): Decomment disabled code.
4687 (ada_to_fixed_type): Convert tagged types to the specific type.
4688 Deactivate the size-check for array types in order to avoid
4689 some false size alarms.
4690 (to_static_fixed_type): Decomment disabled code.
4691 Modify to call template_to_static_fixed_type
4692 on ordinary structs, not just ___XVE- and ___XVU-encoded fields.
4693 (ada_to_fixed_value_create): Renamed version of old ada_to_fixed_value.
4694 Remove valaddr argument, as it is never really used.
4695 (ada_to_fixed_value): Change interface to act on single struct value*
4696 operand.
4697 (adjust_pc_past_prologue): New function.
4698 (ada_attribute_name): Modify to take enum exp_opcode argument.
4699
4700 (ada_enum_name): Recognize new homonym-distinguishing convention.
4701 Adjust local variable's type to remove compiler warning.
4702 Fix a small problem in the part that unqualifies the enumeration name.
4703 (ada_value_binop): New function.
4704 (ada_value_equal): New function.
4705
4706 (ada_evaluate_subexp): Use new ada_lookup_struct_elt_type interface.
4707 Don't give error message when not doing normal evaluation
4708 and a tagged type doesn't seem to contain a structure member.
4709 Give error message for packed arrays.
4710 For indexing arrays, handle pointers to packed arrays correctly.
4711 Handle case of 'first and 'last attributes of bare integral type
4712 without encoded subtype info.
4713 Remove some unnecessary casts.
4714 Fix uninitialized value of type in computing 'first, 'last, or 'length
4715 of array object.
4716 Add BINOP_EQUAL and BINOP_NOTEQUAL cases.
4717 Remove binop_user_defined_p tests and value_x_binop and value_x_unop
4718 calls.
4719 Attributes are now exp_opcode values.
4720 Correct treatment of 'modulus.
4721 Better error message for taking 'length of wrong kind of type;
4722 improve comment.
4723 Change EVAL_NORMAL to noside for consistency.
4724 Use ada_value_binop for DIV, MOD, REM.
4725 Make special case out of array of length 0, since an argument
4726 of 0 upsets some platforms' malloc.
4727 Use OP_STRING instead of OP_ARRAY.
4728 For slice, add check that we have an array type before extracting
4729 a slice out of it. Avoids a SEGV.
4730 When evaluating an array slice, if the array type is a reference to
4731 an aligner type, then replace the aligner type by the actual type.
4732 Decomment disabled code.
4733 Remove some dead code.
4734 Use temporary struct symbols (marked as being in UNDEF_NAMESPACE)
4735 to indicate unresolved names, instead of OP_UNRESOLVED_VALUE.
4736 Rename BINOP_MBR to BINOP_IN_BOUNDS, TERNOP_MBR to TERNOP_IN_RANGE,
4737 and UNOP_MBR to UNOP_IN_RANGE.
4738 If an array type has a parallel ___XVE type, then use it.
4739 Turn arrays into pointers for lvalue arrays.
4740 Change TERNOP_SLICE code to work even when bounds are unknown, ignoring
4741 bounds error and handle 0-length slices.
4742 Use lim_warning.
4743 When selecting fields, apply ada_to_fixed_value (because the fields
4744 might have ___XVU or ___XVE encodings even if not dynamic.)
4745 Use ada_to_fixed_value_create and new ada_to_fixed_value interface.
4746 (ada_is_system_address_type): New function.
4747
4748 (get_var_value): Use new interface to ada_lookup_symbol_list.
4749 (get_int_var_value): New interface.
4750 (to_fixed_range_type): Allow unknown bound, with warning.
4751 (ada_is_modular_type): Decomment disabled code.
4752 (ADA_OPERATORS): New definition.
4753 (ada_operator_length): New function.
4754 (ada_expr_op_name): New function.
4755 (ada_forward_operator_length): New function.
4756 (ada_dump_subexp_body): New function.
4757 (ada_print_subexp): New function.
4758 (ada_exp_descriptor): New constant.
4759 (ada_op_print_tab): Add 'size. Remove FIXMEs.
4760 (ada_language_defn): Add ada_exp_descriptor entry.
4761 Change ada_parse => parse.
4762 Add post-parser entry.
4763 Use ada-specific non-local symbol lookup.
4764 Don't use C-style arrays.
4765 String lower-bound is 1.
4766 Decomment disabled code.
4767 (parse): New function.
4768 New fields ada_translate_error_message, ada_lookup_symbol,
4769 ada_lookup_minimal_symbol.
4770
4771 * ada-lang.h: Update copyright dates.
4772 Replace the mangle/demangle terminology throughout by the
4773 more appropriate encode/decode one.
4774 Include breakpoint.h.
4775 Forward declare struct partial_symbol, struct block.
4776 (ADA_KNOWN_RUNTIME_FILE_NAME_PATTERNS): Define.
4777 (EXTRACT_ADDRESS): Remove.
4778 (EXTRACT_INT): Remove.
4779 (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Define.
4780 (MAX_ENCLOSING_FRAME_LEVELS): Define.
4781 (MAX_RENAMING_CHAIN_LENGTH): Define.
4782 (struct ada_opname_map): mangled => decoded, demangled=>encoded.
4783
4784 (enum task_states): Remove.
4785 ada_task_states: Remove.
4786 (fat_string): Remove.
4787 (struct entry_call): Remove.
4788 (struct task_fields): Remove.
4789 (struct task_entry): Remove.
4790
4791 (struct ada_symbol_info): Define.
4792 (enum ada_attribute): Remove.
4793 (enum ada_operator): Define.
4794
4795 (ada_get_field_index): Declare.
4796 (ada_coerce_to_simple_array): Rename to ada_coerce_to_simple_array_ptr.
4797 (ada_is_simple_array): Rename to ada_is_simple_array_type.
4798 (ada_is_array_descriptor): Rename to ada_is_array_descriptor_type.
4799 (ada_lookup_symbol_list): New interface.
4800 (ada_decode_symbol): Declare.
4801 (ada_decode): Declare.
4802 (ada_lookup_symbol): New interface.
4803 (ada_update_initial_language): Declare.
4804 (ada_lookup_simple_minsym): Declare.
4805 (user_select_syms): New interface.
4806 (ada_sals_for_line): Declare.
4807 (ada_is_tagged_type): New interface.
4808 (ada_tag_name): Declare.
4809 (ada_lookup_struct_elt_type): Remove declaration.
4810 (ada_search_struct_field): Remove declaration.
4811 (ada_attribute_name): New interface.
4812 (ada_is_system_address_type): Declare.
4813 (ada_to_fixed_value): Remove declaration.
4814 (ada_template_to_fixed_record_type_1): Declare.
4815 (get_int_var_value): New interface.
4816 (ada_find_any_symbol): Declare.
4817 (ada_find_renaming_symbol): Declare.
4818 (ada_mangle): Rename to ada_encode.
4819 (ada_simple_renamed_entity): Remove const.
4820 (ada_main_name): Declare.
4821 (get_current_task): Rename to ada_get_current_task.
4822 (get_entry_number): Remove declaration.
4823 (ada_report_exception_break): Remove declaration.
4824 (ada_print_exception_breakpoint_nontask): Declare.
4825 (ada_print_exception_breakpoint_task): Declare.
4826 (ada_find_printable_frame): Declare.
4827
4828 * ada-lex.l: Update copyright notices.
4829 Use xmalloc and xfree instead of malloc and free.
4830 Use new interface to name_lookup.
4831 Use new interface to
4832 ada_mangle=>ada_encode.
4833 Redo handling of '$...' variable to parallel current treatment
4834 in c-exp.y.
4835 (resize_tempbuf, canonicalizeNumeral, is_digit_in_base,
4836 digit_to_int, strtoulst, processInt, processReal, processId,
4837 block_lookup, name_lookup, find_dot_all, subseqMatch, processAttribute,
4838 yywrap): Protoize.
4839
4840 (processInt): Use cast to remove harmless warning.
4841 (processReal): Modify to get rid of compiler warning on scan formats.
4842
4843 (processId): Replace xmalloc with obstack_alloc for name and remove
4844 call to ada_name_string_cleanup.
4845 Remove obsolete disabled code.
4846 (name_lookup): Ditto.
4847 New interface.
4848 Use obsavestring on temp_parse_space instead of savestring
4849 on name, and remove call to ada_name_string_cleanup.
4850 Free string returned from ada_simple_renamed_entity.
4851 Use new interface to ada_lookup_symbol_list.
4852 Decomment disabled code.
4853 Treat LOC_COMPUTED and LOC_COMPUTED_ARG symbols as variables,
4854 not types.
4855 When a type name lookup succeeds as a result of
4856 lookup_primitive_typename, check for regular type entry that has not
4857 yet been read in.
4858 Limit length of chain of renamed symbols we are willing to follow.
4859 Do not break names beginning with "standard__" into segments.
4860 (block_lookup): Use new interface to ada_lookup_symbol_list.
4861
4862 * ada-typeprint.c: Update copyright notice.
4863 (demangled_type_name): Rename to decoded_type_name.
4864 (ada_typedef_print): Use SYMBOL_PRINT_NAME.
4865 (print_range_bound): Correct handling of negative
4866 bounds that make the index type looked unsigned under STABS.
4867 (print_dynamic_range_bound): Use new interface to get_int_var_value.
4868 (print_range_type_named): Use the builtin int type if no type
4869 corresponding to the given type name could be found.
4870 (print_array_type): ada_is_simple_array => ada_is_simple_array_type.
4871 Add some bullet-proofing.
4872 (print_variant_clauses): Allow for variant branches with ___XVU
4873 encodings that are not dynamic fields.
4874 Use new interface to ada_is_tagged_type.
4875 (print_record_type): Allow for fields with ___XVE encodings that
4876 are not dynamic fields.
4877 Use new interface to ada_is_tagged_type.
4878 (ada_print_type): ada_is_array_descriptor =>
4879 ada_is_array_descriptor_type.
4880
4881 * ada-valprint.c: Update copyright notice.
4882 Include gdb_string.h
4883 Include infcall.h
4884 (ui_memcpy): New function.
4885 (ada_print_floating): New function.
4886 (ada_print_str): Order arguments correctly.
4887 Correct handling of empty arrays and arrays of 0-length items.
4888 ada_is_array_descriptor => ada_is_array_descriptor_type
4889 Print values of type System.Address in hexadecimal format.
4890 Use ada_print_floating to print floating-point numbers in Ada format.
4891 Print class tag values with type names.
4892 No longer print the address of reference values. Avoids
4893 a potential confusion.
4894 (ada_value_print): Stop printing the object type for reference
4895 values, but preserve that behavior for access types. Avoids
4896 a potential confusion.
4897 Simplify one conditional expression, as the first part is now
4898 necessarily true.
4899 ada_is_array_descriptor => ada_is_array_descriptor_type
4900 Add check for arrays for null records, and print them by hand.
4901
4902 2004-06-01 Jim Blandy <jimb@redhat.com>
4903
4904 * ppc-tdep.h: Delete unused 'regoff' member.
4905 * rs6000-tdep.c (rs6000_gdbarch_init): Don't initialize it.
4906
4907 2004-06-01 Michael Chastain <mec.gnu@mindspring.com>
4908
4909 Fix PR symtab/1661.
4910 * hpread.c (hpread_pxdb_needed): Call memset after alloca.
4911 (hpread_read_struct_type): Likewise.
4912
4913 2004-06-01 Andrew Cagney <cagney@gnu.org>
4914
4915 * mi/mi-cmd-env.c (env_execute_cli_command): Use xstrprintf
4916 instead of xasprintf.
4917 * mi/mi-main.c (mi_error_last_message, mi_cmd_exec_interrupt)
4918 (mi_cmd_thread_select, mi_cmd_thread_list_ids)
4919 (mi_cmd_data_list_register_names)
4920 (mi_cmd_data_list_changed_registers)
4921 (mi_cmd_data_list_register_values)
4922 (get_register, mi_cmd_data_write_register_values)
4923 (mi_cmd_data_write_register_values)
4924 (mi_cmd_data_assign, mi_cmd_data_evaluate_expression)
4925 (mi_cmd_target_download, mi_cmd_target_select)
4926 (mi_cmd_data_read_memory, mi_cmd_data_write_memory)
4927 (mi_execute_cli_command, mi_execute_async_cli_command)
4928 (mi_execute_async_cli_command): Ditto.
4929 * mi/mi-interp.c (mi_cmd_interpreter_exec) Ditto.
4930 * mi/mi-cmd-var.c (mi_cmd_var_create): Ditto.
4931
4932 * mi/mi-cmds.h (mi_error_last_message): Delete declaration.
4933 * mi/mi-interp.c (mi_cmd_interpreter_exec): Call
4934 error_last_message instead of mi_error_last_message.
4935 * mi/mi-main.c (mi_error_last_message): Delete function.
4936
4937 * mi/mi-main.c (mi_cmd_data_read_memory): Add missing return for
4938 "invalid number of columns" error. Delete redundant "out of
4939 memory" check.
4940
4941 2004-05-31 Mark Kettenis <kettenis@gnu.org>
4942
4943 * i386bsd-nat.c: Don't include <sys/procfs.h>.
4944 (gregset_t, fpregset_t): Remove typedefs.
4945 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Remove macros.
4946 (REG_OFFSET): Rename argument.
4947 (i386bsd_r_reg_offset): Rename from reg_offset.
4948 (REG_ADDR): Remove macro.
4949 (cannot_fetch_register, supply_gregset, fill_gregset): Remove
4950 functions.
4951 (i386bsd_supply_gregset, i386bsd_collect_gregset): New functions.
4952 (fetch_inferior_registers): Use `struct reg' and `struct fpreg'
4953 instead of gregset_t and fpregset_t. Use i386bsd_supply_gregset
4954 instead of supply_gregset.
4955 (store_inferior_registers): Use `struct reg' and `struct fpreg'
4956 instead of gregset_t and fpregset_t. Use i386bsd_collect_gregset
4957 instead of fill_gregset.
4958 (register_u_addr): Use i386_r_reg_offset instead of REG_ADDR.
4959
4960 * i386bsd-nat.c: Don't include "gregset.h".
4961 (supply_gregset, fill_gregset): Make static.
4962 (supply_fpregset, fill_fpregset): Remove.
4963 * Makefile.in (i386bsd-nat.o): Update dependencies.
4964
4965 2004-05-30 Mark Kettenis <kettenis@gnu.org>
4966
4967 * fbsd-proc.c: Include "regcache.h", "regset.h" and
4968 "gdb_assert.h". Con't include "gregset.h".
4969 (fbsd_make_corefile_notes): Use regset-based core file support
4970 instead off fill_gregset and fill_fpregset.
4971 * Makefile.in (fbsd-proc.o): Update dependencies.
4972
4973 * m88k-tdep.c (m88k_analyze_prologue): Fix handling of branch
4974 instructions.
4975 (m88k_frame_prev_register): Simplify code a bit.
4976
4977 * amd64-tdep.c (amd64_supply_fpregset): Adjust comment.
4978 (amd64_collect_fpregset): New function.
4979 (amd64_regset_from_core_section): Use amd64_collect_fpregset.
4980
4981 * hppa-tdep.h (hppa_regnum): Add HPPA_R31_REGNUM.
4982
4983 * i386-tdep.c (i386_supply_gregset): Adjust comment.
4984 (i386_collect_gregset): New function.
4985 (i386_supply_fpregset): Adjust comment.
4986 (i386_collect_fpregset): New function.
4987 (i386_regset_from_core_section): Use i386_collect_gregset and
4988 i386_collect_fpregset.
4989
4990 * hppa-tdep.c (hppa_frame_prev_register_helper): Reimplement to
4991 handle VALUEP being null.
4992
4993 * regset.h (collect_regset_ftype): Unconstify fourth argument.
4994
4995 2004-05-29 Mark Kettenis <kettenis@gnu.org>
4996
4997 * MAINTAINERS: Undelete m88k. Add myself as maintainer.
4998
4999 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Adjust for new
5000 assembler in OpenBSD 3.5-current.
5001 (amd64obsd_sigcontext_addr): Likewise.
5002
5003 2004-05-28 Jim Blandy <jimb@redhat.com>
5004
5005 * rs6000-tdep.c: Use the modern gdbarch methods for handling the
5006 register set, so our regcache isn't declared "legacy" and our E500
5007 pseudoregister read and write functions aren't ignored.
5008 (rs6000_register_byte, rs6000_register_raw_size,
5009 rs6000_register_virtual_type, rs6000_register_convertible,
5010 rs6000_register_convert_to_virtual,
5011 rs6000_register_convert_to_raw): Deleted.
5012 (rs6000_register_type, rs6000_convert_register_p,
5013 rs6000_register_to_value, rs6000_value_to_register): New
5014 functions.
5015 (rs6000_gdbarch_init): Don't register
5016 gdbarch_deprecated_register_size,
5017 gdbarch_deprecated_register_bytes,
5018 gdbarch_deprecated_register_byte,
5019 gdbarch_deprecated_register_raw_size,
5020 gdbarch_deprecated_register_virtual_type,
5021 gdbarch_deprecated_register_convertible,
5022 gdbarch_deprecated_register_convert_to_virtual, or
5023 gdbarch_deprecated_register_convert_to_raw methods. Instead,
5024 register gdbarch_register_type, gdbarch_convert_register_p,
5025 gdbarch_register_to_value, and gdbarch_value_to_register methods.
5026
5027 2004-05-26 Jim Blandy <jimb@redhat.com>
5028
5029 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): Deleted.
5030 (rs6000_stab_reg_to_regnum, rs6000_dwarf2_reg_to_regnum): New
5031 functions, updated to match the register numberings used in GCC.
5032 (rs6000_gdbarch_init): Register rs6000_stab_reg_to_regnum and
5033 rs6000_dwarf2_reg_to_regnum as register number conversions
5034 functions for STABS and Dwarf2.
5035
5036 2004-05-26 Randolph Chung <tausq@debian.org>
5037
5038 * infttrace.h (target_waitkind): Forward declare type instead of pulling
5039 in header file.
5040
5041 2004-05-25 Joel Brobecker <brobecker@gnat.com>
5042
5043 * NEWS: Document new "start" command.
5044
5045 2004-05-25 Randolph Chung <tausq@debian.org>
5046
5047 * hppa-linux-tdep.c (hppa_linux_init_abi): sizeof(long double) == 8 on
5048 hppa-linux.
5049
5050 2004-05-25 Randolph Chung <tausq@debian.org>
5051
5052 * hppa-hpux-tdep.c (offsetof): Define.
5053 (hppa_hpux_pc_in_sigtramp, hppa32_hpux_frame_saved_pc_in_sigtramp)
5054 (hppa32_hpux_frame_base_before_sigtramp)
5055 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
5056 (hppa64_hpux_frame_saved_pc_in_sigtramp)
5057 (hppa64_hpux_frame_base_before_sigtramp)
5058 (hppa64_hpux_frame_find_saved_regs_in_sigtramp): Remove unused
5059 functions.
5060 (struct hppa_hpux_sigtramp_unwind_cache, hppa_hpux_tramp_reg)
5061 (hppa_hpux_sigtramp_frame_unwind_cache)
5062 (hppa_hpux_sigtramp_frame_this_id)
5063 (hppa_hpux_sigtramp_frame_prev_register)
5064 (hppa_hpux_sigtramp_frame_unwind)
5065 (hppa_hpux_sigtramp_unwind_sniffer): New signal trampoline unwinder.
5066 (hppa_hpux_init_abi): Register sigtramp unwinder.
5067 * Makefile.in (hppa-hpux-tdep.o): Update dependencies.
5068
5069 2004-05-25 Randolph Chung <tausq@debian.org>
5070
5071 * hppa-tdep.c (hppa_fallback_frame_cache): Handle stack adjustment,
5072 and multiple stack unwinds.
5073 (hppa_stub_unwind_sniffer): Handle unwind from pc == 0.
5074
5075 2004-05-25 Andrew Cagney <cagney@gnu.org>
5076
5077 * symfile.h (symbol_file_add_from_memory): Delete declaration.
5078 * symfile-mem.h: Delete file.
5079 * symfile-mem.c: Do not include "symfile-mem.h".
5080 (symbol_file_add_from_memory): Make static. Use "struct bfd" and
5081 "struct bfd_section". When an error do not bother returning NULL.
5082 (add_symbol_file_from_memory_command): Use "struct bfd" and
5083 "struct bfd_section".
5084 * Makefile.in (symfile_mem_h): Delete.
5085 (symfile-mem.o): Update dependencies.
5086
5087 2004-05-25 Nick Roberts <nickrob@gnu.org>
5088
5089 * gdb-mi.el: New file.
5090
5091 2004-05-25 Andrew Cagney <cagney@gnu.org>
5092
5093 * inftarg.c: Include "observer.h".
5094 (child_attach, child_create_inferior): Notify inferior_created.
5095 * corelow.c: Include "observer.h".
5096 (core_open): Notify inferior_created.
5097 * Makefile.in (inftarg.o, corelow.o): Update dependencies.
5098
5099 2004-05-25 Andrew Cagney <cagney@gnu.org>
5100
5101 * target.h (struct target_ops): Add from_tty to
5102 to_create_inferior.
5103 (target_create_inferior, find_default_create_inferior): Update.
5104 * infcmd.c (run_command): Update.
5105 * wince.c (child_create_inferior): Update.
5106 * win32-nat.c (child_create_inferior): Update.
5107 * uw-thread.c (uw_thread_create_inferior): Update.
5108 * thread-db.c (thread_db_create_inferior): Update.
5109 * target.c (debug_to_create_inferior)
5110 (find_default_create_inferior): Update.
5111 (maybe_kill_then_create_inferior): Update.
5112 * sol-thread.c (sol_thread_create_inferior): Update.
5113 * remote.c (extended_remote_async_create_inferior)
5114 (extended_remote_create_inferior): Update.
5115 * remote-vx.c (vx_create_inferior): Update.
5116 * remote-st.c (st2000_create_inferior): Update.
5117 * remote-sim.c (gdbsim_create_inferior): Update.
5118 * remote-sds.c (sds_create_inferior): Update.
5119 * remote-rdp.c (remote_rdp_create_inferior): Update.
5120 * remote-rdi.c (arm_rdi_create_inferior): Update.
5121 * remote-m32r-sdi.c (m32r_create_inferior): Update.
5122 * remote-e7000.c (e7000_create_inferior): Update.
5123 * procfs.c (procfs_create_inferior): Update.
5124 * ocd.c (ocd_create_inferior): Update.
5125 * ocd.h (ocd_create_inferior): Update.
5126 * nto-procfs.c (procfs_create_inferior): Update.
5127 * monitor.c (monitor_create_inferior): Update.
5128 * lin-lwp.c (lin_lwp_create_inferior): Update.
5129 * inftarg.c (child_create_inferior): Update.
5130 * hpux-thread.c (hpux_thread_create_inferior): Update.
5131 * gnu-nat.c (gnu_create_inferior): Update.
5132
5133 2004-05-25 Andrew Cagney <cagney@gnu.com>
5134
5135 * MAINTAINERS: Update e-mail address.
5136
5137 2004-05-24 Randolph Chung <tausq@debian.org>
5138
5139 * thread.c (info_threads_command, thread_apply_all_command)
5140 (thread_apply_command, thread_command, do_captured_thread_select):
5141 Remove HPUXHPPA-specific code.
5142
5143 2004-05-24 Randolph Chung <tausq@debian.org>
5144
5145 * hppa-tdep.c (SR4EXPORT_LDIL_OFFSET, SR4EXPORT_LDO_OFFSET): Remove
5146 unused symbols.
5147 * hppa-tdep.h (HPPA_INSTRUCTION_SIZE): Remove, since there are no more
5148 references.
5149
5150 2004-05-24 Joel Brobecker <brobecker@gnat.com>
5151
5152 * infcmd.c (kill_if_already_running): New function, extracted
5153 from run_command().
5154 (run_command): Replace extracted code by call to
5155 kill_if_already_running().
5156 (start_command): New function.
5157 (_initialize_infcmd): Add "start" command.
5158
5159 2004-05-24 Mark Kettenis <kettenis@gnu.org>
5160
5161 Add OpenBSD/m88k support.
5162 * NEWS (New native configurations): Mention OpenBSD/m88k.
5163 * m88k-tdep.c, m88k-tdep.h, m88kbsd-nat.c, config/m88k/nm-obsd.h,
5164 config/m88k/obsd.mh, config/m88k/obsd.mt: New files.
5165 * Makefile.in (m88k_tdep_h): New variable.
5166 (ALLDEPFILES): Add m88k-tdep.c and m88kbsd-nat.c.
5167 (m88kbsd-nat.o, m88k-tdep.o): New dependencies.
5168 * configure.host: Add m88*-*-openbsd*.
5169 * configure.tgt: Add m88*-*-openbsd*.
5170
5171 2004-05-24 Jim Blandy <jimb@redhat.com>
5172
5173 * MAINTAINERS (tracing bytecode stuff): Allow global maintainers
5174 to approve changes.
5175
5176 2004-05-24 Kevin Buettner <kevinb@redhat.com>
5177
5178 * symtab.c (fixup_section): Search section table when lookup by
5179 name fails.
5180
5181 2004-05-24 Randolph Chung <tausq@debian.org>
5182
5183 * hppa-tdep.c: Fix handling of 8-byte structures; they should not
5184 be "small_struct".
5185
5186 2004-05-24 Mark Kettenis <kettenis@gnu.org>
5187
5188 * m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct
5189 register number in regcache_raw_collect call.
5190 (m68kbsd_collect_fpregset): Likewise.
5191 * vaxbsd-nat.c (vaxbsd_collect_gregset): Likewise.
5192
5193 * regset.h (struct regset): Add back `regset' member.
5194
5195 2004-05-23 Mark Kettenis <kettenis@gnu.org>
5196
5197 * configure.in: Check for td_pcb in `struct thread'.
5198 * configure, config.in: Regenerated.
5199
5200 * dpx2-nat.c: Remove file.
5201 * Makefile.in (ALLDEPFILES): Remove dpx2-nat.c.
5202 (dpx2-nat.o): Remove dependencies.
5203
5204 * amd64obsd-nat.c: Include "gdbcore.h", "regcache.h",
5205 <sys/types.h>, <machine/frame.h>, <machine/pcb.h> and "bsd-kvm.h".
5206 (amd64obsd_supply_pcb): New function.
5207 (_initialize_amd64obsd_nat): Enable libkvm interface.
5208 * Makefile.in (amd64obsd-nat.o): Update dependencies.
5209 * config/i386/obsd64.mh (NATDEPFILES): Add bsd-kvm.o
5210 (LOADLIBES): New variable.
5211
5212 * sparcnbsd-nat.c: Include "gdbcore.h", "regcache.h",
5213 <sys/types.h>, <machine/pcb.h> and "bsd-kvm.h".
5214 (sparc32nbsd_supply_pcb): New function.
5215 (_initialize_sparcnbsd_nat): Enable libkvm interface.
5216 * Makefile.in (sparcnbsd-nat.o): Update dependencies.
5217 * config/sparc/nbsdelf.mh (NATDEPFILES): Add bsd-kvm.o.
5218 (LOADLIBES): New variable.
5219
5220 2004-05-22 Mark Kettenis <kettenis@gnu.org>
5221
5222 * bsd-kvm.c, bsd-kvm.h: New files.
5223 * i386fbsd-nat.c: Include <sys/types.h>, <machine/pcb.h> and
5224 "bsd-kvm.h".
5225 (i386fbsd_supply_pcb): New function.
5226 * Makefile.in (ALLDEPFILES): Add bsd-kvm.c.
5227 (i386fbsd-nat.o): Update dependencies.
5228 (bsd_kvm_h): New variable.
5229 (bsd-kvm.o): New dependency.
5230 * config/i386/fbsd.mh (NATDEPFILES): Add bsd-kvm.o.
5231 (LOADLIBES): New variable.
5232
5233 * regset.c: Tweak comment.
5234 (regset_alloc): Remove descr argument. Use GDBARCH_OBSTACK_ZALLOC
5235 macro.
5236 * regset.h: Update copyright year.
5237 (struct regset): Remove `descr' member, add `gdbarch' member.
5238 (regset_alloc): Adjust prototype and comment.
5239 * i386-tdep.c (i386_supply_gregset): Get TDEP from REGSET->arch.
5240 (i386_supply_fpregset): Likewise.
5241 (i386_regset_from_core_section): Update call to regset_alloc.
5242 * i386obsd-tdep.c (i386obsd_aout_supply_regset): Get TDEP from
5243 REGSET->arch.
5244 (i386obsd_aout_regset_from_core_section): Update call to
5245 regset_alloc.
5246 * i386nbsd-tdep.c (i386nbsd_aout_supply_regset): Get TDEP from
5247 REGSET->arch.
5248 (i386nbsd_aout_regset_from_core_section): Update call to
5249 regset_alloc.
5250 * amd64-tdep.c (amd64_supply_fpregset): Get TDEP from
5251 REGSET->arch.
5252 (amd64_regset_from_core_section): Update call to regset_alloc.
5253 * amd64obsd-tdep.c (amd64obsd_supply_regset): Get TDEP from
5254 REGSET->arch.
5255 (amd64obsd_regset_from_core_section): Update call to regset_alloc.
5256 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Directly pass
5257 &sparc32nbsd_gregset in sparc32_supply_gregset call.
5258 (sparc32nbsd_init_abi): Update call to regset_alloc.
5259 * sparc64obsd-tdep.c (sparc64obsd_supply_gregset): Directly pass
5260 &sparc64obsd_core_gregset in sparc64_supply_gregset call.
5261 (sparc64obsd_init_abi): Update call to regset_alloc.
5262 * sparc64nbsd-tdep.c (sparc64nbsd_supply_gregset): Directly pass
5263 &sparc64nbsd_gregset in sparc64_supply_gregset call.
5264 (sparc64nbsd_init_abi): Update call to regset_alloc.
5265 * sparc64fbsd-tdep.c (sparc64fbsd_supply_gregset): Directly pass
5266 &sparc64fbsd_gregset in sparc64_supply_gregset call.
5267 (sparc64fbsd_init_abi): Update call to regset_alloc.
5268
5269 2004-05-22 Jim Blandy <jimb@redhat.com>
5270
5271 * ppc-tdep.h (spe_register_p): New declaration.
5272 (struct gdbarch_tdep): New members: ppc_acc_regnum and
5273 ppc_spefscr_regnum.
5274 * rs6000-tdep.c (spe_register_p): New function.
5275 (rs6000_dwarf2_stab_reg_to_regnum): Recognize numbers for acc and
5276 spefscr.
5277 (rs6000_gdbarch_init): Initialize the new members of the tdep
5278 structure.
5279
5280 2004-05-21 Jim Blandy <jimb@redhat.com>
5281
5282 * ppc-linux-nat.c (fetch_register): Move code back to be next
5283 to the comment that describes it. (Moved code, instead of
5284 comment, for symmetry with store_register.)
5285
5286 Allocate regset structures in the gdbarch's obstack, not using
5287 xmalloc.
5288 * regset.c (regset_alloc): Renamed from regset_xmalloc.
5289 Add 'arch' argument. Allocate the regset on arch's obstack, not
5290 using xmalloc.
5291 * regset.h (regset_alloc): Update declaration.
5292 * am64-tdep.c (amd64_regset_from_core_section): Update call; pass
5293 gdbarch argument.
5294 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
5295 * i386-tdep.c (i386_regset_from_core_section): Same.
5296 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
5297 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
5298 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
5299 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
5300 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
5301 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
5302
5303 2004-05-21 Joel Brobecker <brobecker@gnat.com>
5304
5305 * config/djgpp/fnchange.lst: Undo previous change, was useless.
5306
5307 2004-05-21 Jim Blandy <jimb@redhat.com>
5308
5309 * dwarf2expr.c (execute_stack_op): Add 'break' statements after
5310 cases for DW_OP_div and DW_OP_shr. (Thanks to Reva Cuthbertson.)
5311
5312 2004-05-20 Jim Blandy <jimb@redhat.com>
5313
5314 * rs6000-tdep.c (rs6000_push_dummy_call): Formatting fixes.
5315
5316 2004-05-20 Mark Kettenis <kettenis@gnu.org>
5317
5318 * regset.h: Make prototype const-correct.
5319 * regset.c (regset_xmalloc): Make const-correct.
5320
5321 2004-05-20 Paul N. Hilfinger <hilfinger@gnat.com>
5322
5323 * symtab.h (SYMBOL_SEARCH_NAME): New definition.
5324 (SYMBOL_MATCHES_SEARCH_NAME): New definition.
5325 (symbol_search_name): Declare.
5326
5327 * dictionary.c (iter_name_first_hashed): Match on SYMBOL_SEARCH_NAME.
5328 (iter_name_next_hashed): Ditto.
5329 (iter_name_next_linear): Ditto.
5330 (insert_symbol_hashed): Hash on SYMBOL_SEARCH_NAME.
5331
5332 * symtab.c (lookup_partial_symbol): Assume symbols ordered by
5333 search name, using SYMBOL_SEARCH_NAME and SYMBOL_MATCHES_SEARCH_NAME.
5334 (symbol_search_name): New function.
5335
5336 * symfile.c (compare_psymbols): Order by SYMBOL_SEARCH_NAME.
5337
5338 * minsyms.c (build_minimal_symbol_hash_tables): Change
5339 test for adding to demangled hash table to check for difference
5340 between SYMBOL_SEARCH_NAME and SYMBOL_LINKAGE_NAME.
5341
5342 2004-05-19 Jim Blandy <jimb@redhat.com>
5343
5344 Use a constructor function to create regset structures.
5345 * regset.h (supply_regset_ftype, collect_regset_ftype): New typedefs.
5346 (struct regset): Use supply_regset_ftype. Add new
5347 'collect_regset' member.
5348 (regset_xmalloc): New declaration.
5349 * regset.c: New file.
5350 * am64-tdep.c (amd64_regset_from_core_section): Use
5351 regset_xmalloc to construct regset structures.
5352 * amd64obsd-tdep.c (amd64obsd_regset_from_core_section): Same.
5353 * i386-tdep.c (i386_regset_from_core_section): Same.
5354 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Same.
5355 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Same.
5356 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Same.
5357 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Same.
5358 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Same.
5359 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Same.
5360 * Makefile.in (COMMON_OBS): Add regset.o.
5361 (regset.o): New rule.
5362
5363 2004-05-19 Joel Brobecker <brobecker@gnat.com>
5364
5365 * config/djgpp/fnchange.lst: Add entries for pthread_cond_wait.exp
5366 and pthread_cond_wait.c.
5367
5368 2004-05-18 Jim Blandy <jimb@redhat.com>
5369
5370 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize tdep fields
5371 before the mach-specific switch, and then let the individual cases
5372 override the defaults, rather than leaving them uninitialized
5373 until the switch and then setting them in each case.
5374
5375 2004-05-18 Randolph Chung <tausq@debian.org>
5376
5377 * hppa-tdep.c (hppa_frame_cache): Check for validity of r31 for
5378 millicode functions.
5379
5380 2004-05-18 Randolph Chung <tausq@debian.org>
5381
5382 * somsolib.c (som_solib_remove_inferior_hook): Make all the size
5383 references to dld_flags_buffer consistent.
5384
5385 2004-05-18 Randolph Chung <tausq@debian.org>
5386
5387 * hppa-tdep.c (hppa_frame_cache): If a frame pointer is available, use
5388 it for unwinding the stack.
5389
5390 2004-05-18 Randolph Chung <tausq@debian.org>
5391
5392 * config/pa/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE)
5393 Undefine these so we can overide them using gdbarch.
5394
5395 2004-05-18 Randolph Chung <tausq@debian.org>
5396
5397 * hppa-tdep.c (hppa_stub_frame_unwind_cache): Don't do export stub
5398 handling for 64-bit HPUX (elf).
5399
5400 2004-05-18 Daniel Jacobowitz <dan@debian.org>
5401
5402 * alpha-tdep.c (alpha_gdbarch_init): Use LL suffix for large
5403 constants.
5404 * amd64-tdep.c (amd64_skip_prologue): Likewise.
5405 * ia64-tdep.c (examine_prologue): Likewise.
5406 * ns32k-tdep.c (ns32k_fix_call_dummy): Remove unused function.
5407 * v850-tdep.c (v850_fix_call_dummy): Likewise.
5408
5409 2004-05-18 Mark Kettenis <kettenis@gnu.org>
5410
5411 * vax-tdep.c (vax_return_value): Implement
5412 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5413
5414 2004-05-17 Mark Kettenis <kettenis@gnu.org>
5415
5416 * vax-tdep.c (vax_return_value): Fix typo.
5417
5418 2004-05-17 Andrew Cagney <cagney@redhat.com>
5419
5420 * MAINTAINERS: Mark Salter was also responsible for
5421 testsuite/config/
5422
5423 * NEWS: Mention signal fixes.
5424
5425 2004-05-17 Randolph Chung <tausq@debian.org>
5426
5427 * hppa-tdep.c (hppa_stub_frame_unwind_cache): For HPUX stub unwinding,
5428 check to see if we are unwinding an export stub. Export stubs clobber
5429 the %rp in the call path and stores the original rp in a stack slot.
5430
5431 2004-05-17 Jim Blandy <jimb@redhat.com>
5432
5433 * MAINTAINERS: Update address for J.T. Conklin.
5434
5435 2004-05-17 Randolph Chung <tausq@debian.org>
5436
5437 * hppa-tdep.c: Remove superfluous #include's.
5438 * Makefile.in (hppa-tdep.o): Update dependencies.
5439
5440 2004-05-17 Randolph Chung <tausq@debian.org>
5441
5442 * hppa-tdep.c (THREAD_INITIAL_FRAME_SYMBOL): Delete unused symbol.
5443 (THREAD_INITIAL_FRAME_SYM_LEN): Likewise.
5444 (unwind_command, hppa_alignof, prologue_inst_adjust_sp)
5445 (is_branch, inst_saves_gr, inst_saves_fr, compare_unwind_entries)
5446 (read_unwind_info, internalize_unwinds, record_text_segment_lowaddr):
5447 Remove static function declarations.
5448
5449 2004-05-17 Mark Kettenis <kettenis@gnu.org>
5450
5451 * alphabsd-nat.c: Update copyright year.
5452 (getregs_supplies): Replace PC_REGNUM with ALPHA_PC_REGNUM.
5453
5454 * m68k-tdep.h (m68k_regnum): Add M68K_D2_REGNUM, M68K_D7_REGNUM
5455 and M68K_A2_REGNUM.
5456
5457 * m68k-tdep.c (m68k_svr4_return_value): Implement
5458 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5459
5460 2004-05-16 Mark Kettenis <kettenis@gnu.org>
5461
5462 * sol-thread.c Update copyright year. Fix various coding
5463 standards violations. Tweak a few comments.
5464 (td_err_string, td_state_string, thread_to_lwp, lwp_to_thread):
5465 Delete prototypes.
5466
5467 2004-05-15 Randolph Chung <tausq@debian.org>
5468
5469 * hppa-tdep.h (hppa_frame_prev_register_helper): Pass save_regs
5470 as pointer instead of array reference since HPUX compiler does
5471 not accept unsized array arguments.
5472 * somsolib.c (dld_flags_buffer): Use constant array size.
5473
5474 2004-05-15 Mark Kettenis <kettenis@gnu.org>
5475
5476 * amd64obsd-tdep.c (amd64obsd_sigtramp_p): Replace hexadecimal
5477 offset with decimal offset.
5478 (amd64obsd_sigcontext_addr): Return correct address for entire
5479 signal trampoline.
5480
5481 * vax-tdep.c (vax_frame_num_args): Use get_frame_base_address
5482 instead of get_frame_base.
5483
5484 * i386bsd-nat.c (supply_gregset): Use regcache_raw_supply.
5485 (fill_gregset): Use regcache_raw_collect.
5486
5487 * config/djgpp/fnchange.lst: Add entries for ppcobsd-nat.c and
5488 ppcobsd-tdep.c.
5489
5490 * config/sparc/tm-nbsd64.h: Remove file.
5491 * config/tm-sunos.h: Remove file.
5492
5493 2004-05-15 Joel Brobecker <brobecker@gnat.com>
5494
5495 * rs6000-tdep.c (store_param_on_stack_p): New function,
5496 an improved version of some code extracted from skip_prologue().
5497 (skip_prologue): Use store_param_on_stack_p() to detect
5498 instructions saving a parameter on the stack. Detect when r0
5499 is used to save a parameter.
5500 Do not mark "li rx, SIMM" instructions as part of the prologue,
5501 unless the following instruction is also part of the prologue.
5502
5503 2004-05-14 Andrew Cagney <cagney@redhat.com>
5504
5505 * infrun.c (handle_inferior_event): Simplify
5506 STEP_OVER_UNDEBUGGABLE.
5507
5508 * infrun.c (handle_step_into_function): Delete function.
5509 (handle_inferior_event): Inline calls to
5510 handle_step_into_function.
5511
5512 2004-05-14 Jerome Guitton <guitton@gnat.com>
5513
5514 * rs6000-nat.c: Fix a comment.
5515
5516 2004-05-12 David Anderson <davea@sgi.com>
5517
5518 Committed by Jim Blandy <jimb@redhat.com>:
5519 * regcache.c (struct regcache_descr): fix comment spelling.
5520
5521 2004-05-13 J. Brobecker <brobecker@gnat.com>
5522
5523 * aix-thread.c: s/ppc_floating_point_p/ppc_floating_point_unit_p/.
5524 Fixes a link link failure.
5525
5526 2004-05-13 J. Brobecker <brobecker@gnat.com>
5527
5528 * aix-thread.c (store_regs_kernel_thread): Fix a little obvious
5529 error that was causing the build to fail.
5530
5531 2004-05-13 J. Brobecker <brobecker@gnat.com>
5532
5533 * aix-thread.c: #include "gdb_string.h". Needed for memset and memcopy.
5534 * Makefile.in (aix-thread.o): Add dependency on gdb_string.h.
5535
5536 2004-05-13 Andrew Cagney <cagney@redhat.com>
5537
5538 * infrun.c (handle_inferior_event): Check for
5539 STEP_OVER_UNDEBUGGABLE after signal trampolines and function
5540 calls. Update comments.
5541
5542 2004-05-13 Jim Blandy <jimb@redhat.com>
5543
5544 * aix-thread.c (pdc_read_regs, supply_gprs64, supply_fprs)
5545 (fetch_regs_user_thread, fetch_regs_kernel_thread)
5546 (store_regs_user_thread, store_regs_kernel_thread): Use
5547 ppc_num_gprs and ppc_num_fprs instead of '32' and '31'.
5548 * ppc-linux-nat.c (fill_gregset): Same.
5549 * ppc-linux-tdep.c (ppc_linux_supply_gregset)
5550 (ppc_linux_sigtramp_cache): Same.
5551 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg)
5552 (ppcnbsd_sigtramp_cache_init): Same.
5553 * rs6000-nat.c (fetch_core_registers): Same.
5554 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset)
5555 (rs6000_frame_cache): Same.
5556
5557 * aix-thread.c (supply_gprs64, fetch_regs_user_thread)
5558 (store_regs_user_thread): Use tdep->ppc_gp0_regnum, instead
5559 of assuming that the gprs are numbered starting with zero.
5560 * ppc-linux-nat.c (fill_gregset): Same.
5561 * ppc-linux-tdep.c (ppc_linux_supply_gregset): Same.
5562 * ppcnbsd-nat.c (getregs_supplies): Same.
5563 * ppcnbsd-tdep.c (ppcnbsd_supply_reg, ppcnbsd_fill_reg): Same.
5564 * rs6000-nat.c (fetch_core_registers): Same.
5565 * rs6000-tdep.c (ppc_supply_gregset, ppc_collect_gregset): Same.
5566
5567 2004-05-07 Michael Snyder <msnyder@redhat.com>
5568
5569 * tracepoint.c (scope_info): Add handling for LOC_COMPUTED,
5570 LOC_COMPUTED_ARG, and LOC_INDIRECT.
5571
5572 2004-05-13 Andrew Cagney <cagney@redhat.com>
5573
5574 * infrun.c (handle_inferior_event): Use frame_unwind_id.
5575
5576 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
5577
5578 * dwarf2loc.c (find_location_expression): Use ANOFFSET to adjust
5579 base_address for shared libraries.
5580
5581 2004-05-13 Bryce McKinlay <mckinlay@redhat.com>
5582
5583 * MAINTAINERS (write after approval): Add myself.
5584
5585 2004-05-13 Ulrich Weigand <uweigand@de.ibm.com>
5586
5587 * breakpoint.c (bpstat_stop_status): Add new argument
5588 STOPPED_BY_WATCHPOINT. Use it instead of testing
5589 target_stopped_data_address agaist 0 to check whether
5590 or not we stopped due to a hardware watchpoint.
5591 * breakpoint.h (bpstat_stop_status): Adapt prototype.
5592 * infrun.c (handle_inferior_event): Call bpstat_stop_status
5593 with new argument.
5594
5595 2004-05-12 Jim Blandy <jimb@redhat.com>
5596
5597 * configure.in: When checking whether we should use the -bbigtoc
5598 option, don't forget to restore the original value of LDFLAGS.
5599 * configure: Regenerated.
5600
5601 2004-05-12 Andrew Cagney <cagney@redhat.com>
5602
5603 * thread.c (load_infrun_state): Delete step_sp.
5604 * infrun.c (context_switch): Ditto.
5605 * inferior.h (step_sp): Ditto.
5606 * infcmd.c (step_sp, step_1, step_once, until_next_command): Ditto.
5607 * gdbthread.h (struct thread_info, save_infrun_state)
5608 (restore_infrun_state): Ditto.
5609
5610 2004-05-12 Ulrich Weigand <uweigand@de.ibm.com>
5611
5612 * MAINTAINERS (write after approval): Add myself.
5613
5614 2004-05-12 Andrew Cagney <cagney@redhat.com>
5615
5616 * infrun.c (adjust_pc_after_break): Rewrite decr logic,
5617 eliminate reference to step_sp.
5618 (struct execution_control_state, init_execution_control_state)
5619 (handle_inferior_event, keep_going): Delete update_step_sp and
5620 step_sp.
5621 * infcmd.c (step_sp): Note that variable is unused.
5622
5623 2004-05-11 Andrew Cagney <cagney@redhat.com>
5624
5625 * infrun.c (step_over_function): Delete function.
5626 (handle_step_into_function): Use insert_step_resume_breakpoint.
5627 (insert_step_resume_breakpoint): Fix assertion.
5628
5629 2004-05-11 Nick Roberts <nickrob@gnu.org>
5630
5631 * utils.c (defaulted_query): Just use the normal query input type
5632 when printing the annotations.
5633
5634 2004-05-11 Andrew Cagney <cagney@redhat.com>
5635
5636 * infrun.c (handle_inferior_event): Simplify code handling
5637 step-into or return-from a signal trampoline.
5638
5639 2004-05-11 Andrew Cagney <cagney@redhat.com>
5640
5641 * ppcnbsd-tdep.c: Include "gdb_assert.h".
5642 * Makefile.in (ppcnbsd-tdep.o): Update dependencies.
5643
5644 2004-05-10 Jim Blandy <jimb@redhat.com>
5645
5646 * ppc-bdm.c (bdm_ppc_fetch_registers): Replace utterly broken code
5647 with a call to internal_error.
5648
5649 * ppc-tdep.h (struct gdbarch_tdep): Change definition of
5650 ppc_fp0_regnum and ppc_fpscr_regnum: if they are -1, then this
5651 processor variant lacks those registers.
5652 (ppc_floating_point_unit_p): Change description to make it clear
5653 that this returns info about the ISA, not the ABI.
5654 * rs6000-tdep.c (ppc_floating_point_unit_p): Decide whether to
5655 return true or false by checking tdep->ppc_fp0_regnum and
5656 tdep->ppc_fpscr_regnum. The original code replicated the BFD
5657 arch/mach switching done in rs6000_gdbarch_init; it's better to
5658 keep that logic there, and just check the results here.
5659 (rs6000_gdbarch_init): On the E500, set tdep->ppc_fp0_regnum and
5660 tdep->ppc_fpscr_regnum to -1 to indicate that we have no
5661 floating-point registers.
5662 (ppc_supply_fpregset, ppc_collect_fpregset)
5663 (rs6000_push_dummy_call, rs6000_extract_return_value)
5664 (rs6000_store_return_value): Assert that we have floating-point
5665 registers.
5666 (rs6000_dwarf2_stab_reg_to_regnum): Add FIXME.
5667 (rs6000_frame_cache): Don't note the locations at which
5668 floating-point registers were saved if we have no fprs.
5669 * aix-thread.c (supply_fprs, fill_fprs): Assert that we have FP
5670 registers.
5671 (fetch_regs_user_thread, fetch_regs_kernel_thread)
5672 (store_regs_user_thread, store_regs_kernel_thread): Only call
5673 supply_fprs / fill_fprs if we actually have floating-point
5674 registers.
5675 (special_register_p): Check ppc_fpscr_regnum before matching
5676 against it.
5677 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32): Don't
5678 supply / collect fpscr if we don't have it.
5679 * ppc-bdm.c: #include "gdb_assert.h".
5680 (bdm_ppc_fetch_registers, bdm_ppc_store_registers): Assert that we
5681 have floating-point registers, since I can't test this code on
5682 FP-free systems to adapt it.
5683 * ppc-linux-nat.c (ppc_register_u_addr): Don't match against the
5684 fpscr and floating point register numbers if they don't exist.
5685 (fetch_register): Assert that we have floating-point registers
5686 before we reach the code that handles them.
5687 (store_register): Same. And use tdep instead of calling
5688 gdbarch_tdep again.
5689 (fill_fpregset): Don't try to collect FP registers and fpscr if we
5690 don't have them.
5691 (ppc_linux_sigtramp_cache): Don't record the saved locations of
5692 fprs and fpscr if we don't have them.
5693 (ppc_linux_supply_fpregset): Don't supply fp regs and fpscr if we
5694 don't have them.
5695 * ppcnbsd-nat.c: #include "gdb_assert.h".
5696 (getfpregs_supplies): Assert that we have floating-point registers.
5697 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg): Same.
5698 * ppcobsd-tdep.c: #include "gdb_assert.h".
5699 (ppcobsd_supply_gregset, ppcobsd_collect_gregset): Assert that we
5700 have floating-point registers.
5701 * rs6000-nat.c (regmap): Don't match against the fpscr and
5702 floating point register numbers if they don't exist.
5703 (fetch_inferior_registers, store_inferior_registers,
5704 fetch_core_registers): Only fetch / store / supply the
5705 floating-point registers and the fpscr if we have them.
5706 * Makefile.in (ppc-bdm.o, ppc-linux-nat.o, ppcnbsd-nat.o)
5707 (ppcobsd-tdep.o): Update dependencies.
5708
5709 2004-05-10 Andrew Cagney <cagney@redhat.com>
5710
5711 * infrun.c (through_sigtramp_breakpoint): Delete variable.
5712 (context_switch): Do not switch through_sigtramp_breakpoint.
5713 * gdbthread.h (save_infrun_state, load_infrun_state)
5714 (struct thread_info): Delete through_sigtramp_breakpoint parameter
5715 and structure member.
5716 * thread.c (load_infrun_state, save_infrun_state): Update.
5717
5718 2004-05-10 Mark Kettenis <kettenis@gnu.org>
5719
5720 * m68kbsd-tdep.c (m68kbsd_elf_init_abi): Call m68k_svr4_init_abi.
5721
5722 2004-05-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
5723
5724 * acinclude.m4: Quote macro names being defined by AC_DEFUN
5725 throughout.
5726 * aclocal.m4: Regenerate.
5727
5728 2004-05-10 Nathan J. Williams <nathanw@wasabisystems.com>
5729
5730 * alphanbsd-tdep.c: Fix include of "gdb_string.h".
5731
5732 2004-05-10 Andrew Cagney <cagney@redhat.com>
5733
5734 * infrun.c (check_sigtramp2): Delete function.
5735 (handle_inferior_event): When single stepping, and taking a
5736 signal, set a breakpoint at the signal return address. Delete
5737 redundant calls to check_sigtramp2.
5738 (insert_step_resume_breakpoint): New function.
5739 (through_sigtramp_breakpoint, handle_inferior_event)
5740 (follow_exec, wait_for_inferior, fetch_inferior_event)
5741 (currently_stepping, keep_going): Delete most uses of
5742 through_sigtramp_breakpoint, not that it should be deleted.
5743 (delete_breakpoint_current_contents): Delete function.
5744
5745 2004-05-10 Randolph Chung <tausq@debian.org>
5746
5747 * config/pa/linux.mt (TM_FILE): Use new tm-linux.h for hppa-linux
5748 target.
5749 * config/pa/tm-linux.h: New file.
5750
5751 2004-05-10 Daniel Jacobowitz <drow@mvista.com>
5752
5753 * cli/cli-setshow.c (cmd_show_list): Check for "show" in the middle
5754 of prefixes. Don't print the prefix twice in the CLI.
5755
5756 2004-05-10 Jim Blandy <jimb@redhat.com>
5757
5758 * rs6000-tdep.c (ppc_collect_gregset): When regnum == -1, do
5759 collect all the gprs.
5760
5761 * rs6000-tdep.c (ppc_collect_gregset): Correct off-by-one error in
5762 loop collecting gprs.
5763
5764 2004-05-09 Andrew Cagney <cagney@redhat.com>
5765
5766 * remote-vx.c (net_step): Delete step-range code.
5767 * remote.c (remote_resume, init_all_packet_configs)
5768 (set_remote_protocol_E_packet_cmd)
5769 (show_remote_protocol_E_packet_cmd)
5770 (remote_protocol_E, show_remote_cmd, _initialize_remote)
5771 (remote_protocol_e, set_remote_protocol_e_packet_cmd)
5772 (show_remote_protocol_e_packet_cmd): Ditto.
5773
5774 2004-05-09 Mark Kettenis <kettenis@gnu.org>
5775
5776 * hppa-tdep.h (enum hppa_regnum): Name enum, add HPPA_R1_REGNUM.
5777
5778 * hppa-tdep.h: Update copyright year.
5779 (struct trad_frame_saved_reg): Add opaque declaration.
5780
5781 * amd64-tdep.c (amd64_return_value): Implement
5782 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5783
5784 * m68k-tdep.c (m68k_convert_register_p, m68k_register_to_value)
5785 (m68k_value_to_register): New functions.
5786 (m68k_gdbarch_init): Set convert_register_p, register_to_value and
5787 value_to_register.
5788
5789 * defs.h (enum return_value_convention): Add
5790 RETURN_VALUE_ABI_RETURNS_ADDRESS and
5791 RETURN_VALUE_ABI_PRESERVES_ADDRESS.
5792 * infcmd.c (legacy_return_value): New function.
5793 (print_return_value): Rwerite to implement
5794 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5795 * values.c (using_struct_return): Check for inequality to
5796 RETURN_VALUE_REGISTER_CONVENTION instead of equality to
5797 RETURN_VALUE_STRUCT_CONVENTION.
5798 * i386-tdep.c (i386_return_value): Implement
5799 RETURN_VALUE_ABI_RETURNS_ADDRESS.
5800
5801 * vax-tdep.c: Tweak comments. Reorder include files. Don't
5802 include "symtab.h", "opcode/vax.h" and "inferior.h".
5803 (vax_skip_prologue): Replace calls to read_memory_integer by calls
5804 to read_memory_unsigned_integer.
5805 (vax_gdbarch_init): Reorder.
5806 (_initialize_vax_tdep): Spell out prototype.
5807 * Makefile.in (vax-tdep.o): Update dependencies.
5808
5809 2004-05-08 Andrew Cagney <cagney@redhat.com>
5810
5811 * infrun.c (resume): Delete call to DO_DEFERRED_STORES.
5812 * target.c (target_detach, target_disconnect): Ditto.
5813
5814 * infcall.c (call_function_by_hand): When no
5815 DEPRECATED_SAVE_DUMMY_FRAME_TOS call generic_save_dummy_frame_tos.
5816 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set
5817 DEPRECATED_SAVE_DUMMY_FRAME_TOS.
5818 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
5819 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
5820
5821 * gdbarch.sh (DEPRECATED_FIX_CALL_DUMMY): Delete.
5822 * gdbarch.h, gdbarch.c: Re-generate.
5823 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
5824 deprecated_fix_call_dummy.
5825 * v850-tdep.c (v850_gdbarch_init): Ditto.
5826 * infcall.c (call_function_by_hand): Do not call
5827 DEPRECATED_FIX_CALL_DUMMY.
5828
5829 * gdbarch.sh (DEPRECATED_CALL_DUMMY_WORDS)
5830 (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Delete.
5831 * gdbarch.h, gdbarch.c: Re-generate.
5832 * arm-linux-tdep.c (arm_linux_call_dummy_words)
5833 (arm_linux_init_abi): Do not set deprecated_call_dummy_words or
5834 deprecated_sizeof_call_dummy_words.
5835 * arm-tdep.c (arm_call_dummy_words, arm_gdbarch_init): Ditto.
5836 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
5837 * v850-tdep.c (v850_gdbarch_init): Ditto.
5838 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
5839 * ns32k-tdep.c (ns32k_call_dummy_words, ns32k_gdbarch_init): Ditto.
5840 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
5841 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
5842 * arch-utils.h (legacy_call_dummy_words)
5843 (legacy_sizeof_call_dummy_words): Delete declarations.
5844 * arch-utils.c (legacy_call_dummy_words)
5845 (legacy_sizeof_call_dummy_words): Delete variables.
5846
5847 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Delete.
5848 * gdbarch.h, gdbarch.c: Re-generate.
5849 * inferior.h (PUSH_DUMMY_FRAME): Delete macro.
5850 * infcall.c (call_function_by_hand): Eliminate call to
5851 DEPRECATED_PUSH_DUMMY_FRAME.
5852 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
5853 push_dummy_frame.
5854 (ns32k_push_dummy_frame): Delete function.
5855
5856 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
5857 deprecated_call_dummy_breakpoint_offset or
5858 deprecated_call_dummy_start_offset.
5859 * dummy-frame.c, arm-tdep.c: Update comments.
5860 * gdbarch.sh (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET)
5861 (DEPRECATED_CALL_DUMMY_START_OFFSET): Delete.
5862 * gdbarch.h, gdbarch.c: Re-generate.
5863
5864 * infcall.c (legacy_push_dummy_code): Delete function.
5865 (push_dummy_code): Delete call.
5866
5867 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete.
5868 * gdbarch.h, gdbarch.c: Re-generate.
5869 * blockframe.c (legacy_frame_chain_valid): Simplify by eliminating
5870 DEPRECATED_USE_GENERIC_DUMMY_FRAMES.
5871 * infcall.c (legacy_push_dummy_code, call_function_by_hand): Ditto.
5872 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Ditto.
5873
5874 * breakpoint.h (deprecated_frame_in_dummy): Delete declaration.
5875 (struct frame_info): Delete opaque declaration.
5876 * breakpoint.c (deprecated_frame_in_dummy): Delete function.
5877 * frame.c (get_frame_type): Delete call.
5878
5879 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set deprecated
5880 pc_in_call_dummy.
5881 * inferior.h (deprecated_pc_in_call_dummy_on_stack): Delete.
5882 * blockframe.c (deprecated_pc_in_call_dummy_on_stack): Delete.
5883
5884 2004-05-08 Mark Kettenis <kettenis@gnu.org>
5885
5886 * alphanbsd-tdep.c: Include "gdb_string.h".
5887 * armnbsd-tdep.c: Update copyright year.
5888 Include "gdb_string.h".
5889 * Makefile.in (alphanbsd-tdep.o, armnbsd-tdep.o): Update
5890 dependencies.
5891
5892 * delta68-nat.c: Remove file.
5893 * m68k-tdep.c (delta68_in_sigtramp, delta68_frame_args_address)
5894 (delta68_frame_saved_pc, delta68_frame_num_args): Remove functions.
5895 * Makefile.in (ALLDEPFILES): Remove delta68-nat.c.
5896 (delta68-nat.o): Remove dependency.
5897
5898 * m68k-tdep.c (m68k_frameless_function_invocation): Remove
5899 function.
5900 (m68k_gdbarch_init): Don't set
5901 deprecated_frameless_function_invocation.
5902
5903 2004-05-07 Randolph Chung <tausq@debian.org>
5904
5905 * hppa-tdep.c (skip_prologue_hard_way, hppa_frame_cache): Use
5906 read_memory_nobpt for code reading when doing frame unwinding.
5907 * hppa-linux-tdep.c (insns_match_pattern): Likewise.
5908
5909 2004-05-07 Randolph Chung <tausq@debian.org>
5910
5911 * hppa-linux-tdep.c (hppa_linux_sigtramp_find_sigcontext): Pass in pc
5912 instead of sp, handle sigaltstack case.
5913 (hppa_linux_sigtramp_frame_unwind_cache): Adjust calls to
5914 hppa_linux_sigtramp_find_sigcontext, and set base to the frame of the
5915 signal handler and not that of the caller.
5916 (hppa_linux_sigtramp_unwind_sniffer): Adjust calls to
5917 hppa_linux_sigtramp_find_sigcontext.
5918
5919 2004-05-07 Randolph Chung <tausq@debian.org>
5920
5921 * Makefile.in (ALLDEPFILES): Add hppa-linux-tdep.c and
5922 hppa-linux-nat.c.
5923 (hppa-linux-tdep.o, hppa-linux-nat.o): Define rules.
5924 * hppa-linux-nat.c (fetch_register, store_register): Define.
5925 (fetch_inferior_registers, store_inferior_registers): Define.
5926 (supply_gregset): Add comment and clean up some unneeded code.
5927 (fill_gregset): Add comment and fix so that it saves registers in
5928 the right place in the gregset.
5929 (fill_fpregset): Fix buffer overrun problem.
5930 * config/pa/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
5931
5932 2004-05-07 Randolph Chung <tausq@debian.org>
5933
5934 * hppa-tdep.c (hppa_frame_prev_register_helper): New function to
5935 do common handling of the pcoqt register.
5936 (hppa_frame_prev_register, hppa_stub_frame_prev_register): Convert
5937 to use helper function.
5938 (hppa_frame_unwind_sniffer): Only use if unwind entry is present.
5939 (hppa_fallback_frame_cache, hppa_fallback_frame_this_id)
5940 (hppa_fallback_frame_prev_register, hppa_fallback_frame_unwind): New
5941 generic fallback unwinder when all else fails.
5942 (hppa_gdbarch_init): Add fallback sniffer.
5943 * hppa-tdep.h (hppa_frame_prev_register_helper): Prototype.
5944 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_prev_register): Convert
5945 to use helper function.
5946
5947 2004-05-08 Joel Brobecker <brobecker@gnat.com>
5948
5949 * config/djgpp/fnchange.lst: Add translation rules for
5950 gdb.arch/powerpc-aix-prologue.c and gdb.arch/powerpc-aix-prologue.exp.
5951
5952 2004-05-08 Mark Kettenis <kettenis@gnu.org>
5953
5954 * frame.c (get_prev_frame_1): Work around GCC bug.
5955 * frame.h: Add comment about GCC bug.
5956
5957 2004-05-07 Andrew Cagney <cagney@redhat.com>
5958
5959 * observer.c: Include "commands.h" and "gdbcmd.h".
5960 (observer_debug, _initialize_observer): Add the
5961 command "set/show debug observer".
5962 * observer.sh: When observer debugging, log notify calls.
5963 * Makefile.in (observer.o): Update dependencies.
5964
5965 2004-05-07 Jason Molenda (jmolenda@apple.com)
5966
5967 * cli/cli-decode.c: Fix "SHOW_DOR" comment typeos.
5968
5969 2004-05-07 Jim Blandy <jimb@redhat.com>
5970
5971 * aix-thread.c (fetch_regs_kernel_thread, fill_gprs64,
5972 fill_gprs32, store_regs_kernel_thread): Use tdep->ppc_gp0_regnum
5973 to recognize gpr regnums, instead of assuming that
5974 tdep->ppc_fp0_regnum marks the end of the general-purpose
5975 registers.
5976
5977 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Assert that
5978 the given architecture has floating-point registers.
5979
5980 2004-05-07 Andrew Cagney <cagney@redhat.com>
5981
5982 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Replace with
5983 macro defined to 1.
5984 * gdbarch.h, gdbarch.c: Re-generate.
5985 * ns32k-tdep.c (ns32k_gdbarch_init): Do not set
5986 deprecated_use_generic_dummy_frames.
5987
5988 2004-05-07 Brian Ford <ford@vss.fsi.com>
5989
5990 * NEWS: Mention Cygwin DWARF 2 support.
5991
5992 2004-05-07 Andrew Cagney <cagney@redhat.com>
5993
5994 * objfiles.h (struct entry_info): Delete unused fields
5995 deprecated_entry_file_lowpc and deprecated_entry_file_highpc.
5996 * objfiles.c (init_entry_point_info, objfile_relocate): Update.
5997 * mipsread.c (mipscoff_symfile_read): Update.
5998 * mdebugread.c (parse_partial_symbols): Update.
5999 * dwarfread.c (read_file_scope): Update.
6000 * dwarf2read.c (read_file_scope): Update.
6001 * dbxread.c (read_dbx_symtab, read_dbx_symtab): Update.
6002 * coffread.c (complete_symtab): Update.
6003
6004 2004-05-07 Mark Kettenis <kettenis@gnu.org>
6005
6006 * infcall.c (_initialize_infcall): Fix typo.
6007
6008 2004-05-07 Andrew Cagney <cagney@redhat.com>
6009
6010 * cli/cli-decode.c (add_setshow_zinteger_cmd): New function.
6011 * command.h (add_setshow_zinteger_cmd): Declare.
6012
6013 2004-05-06 Randolph Chung <tausq@debian.org>
6014
6015 * config/pa/tm-hppa.h (RO_REGNUM, FLAGS_REGNUM, RP_REGNUM)
6016 (HPPA_FP_REGNUM, HPPA_SP_REGNUM, SAR_REGNUM, IPSW_REGNUM)
6017 (PCOQ_HEAD_REGNUM, PCSQ_HEAD_REGNUM, PCOQ_TAIL_REGNUM, PCSQ_TAIL_REGNUM)
6018 (EIEM_REGNUM, IIR_REGNUM, ISR_REGNUM, IOR_REGNUM, SR4_REGNUM)
6019 (RCR_REGNUM, PID0_REGNUM, PID1_REGNUM, PID2_REGNUM, PID3_REGNUM)
6020 (CCR_REGNUM, TR0_REGNUM, CR27_REGNUM, HPPA_FP0_REGNUM, FP4_REGNUM)
6021 (ARG0_REGNUM, ARG1_REGNUM, ARG2_REGNUM, ARG3_REGNUM): Move *_REGNUM
6022 definitions ...
6023 * hppa-tdep.h: ... to here, with HPPA_ prefix.
6024 * Makefile.in (hppah-nat.o): Add $(hppa_tdep_h)
6025 * hppa-hpux-tdep.c (hppa32_hpux_frame_find_saved_regs_in_sig)
6026 (hppa64_hpux_frame_find_saved_regs_in_sig)
6027 (child_get_current_exception_event): Add HPPA_ prefix to *_REGNUM usage.
6028 * hppa-linux-nat.c (GR_REGNUM, TR_REGNUM, greg_map): Likewise.
6029 * hppa-linux-tdep.c (hppa_dwarf_reg_to_regnum)
6030 (hppa_linux_target_write_pc, hppa_linux_sigtramp_frame_unwind_cache)
6031 (hppa_linux_sigtramp_frame_prev_register): Likewise.
6032 * hppa-tdep.c (hppa32_return_value, hppa64_return_value)
6033 (hppa32_push_dummy_call, hppa64_push_dummy_call, hppa64_frame_align)
6034 (hppa_target_read_pc, hppa_target_write_pc, hppa_frame_cache)
6035 (hppa_frame_prev_register, hppa_stub_frame_unwind_cache)
6036 (hppa_stub_frame_prev_register, hppa_unwind_dummy_id)
6037 (hppa_skip_permanent_breakpoint, hppa_instruction_nullified)
6038 (hppa32_register_type, hppa_cannot_store_register)
6039 (hppa_fetch_pointer_argument, hppa_pseudo_register_read): Likewise.
6040 * hppah-nat.c (store_inferior_registers, fetch_register): Likewise.
6041 * hpread.c (hpread_process_one_debug_symbol): Likewise.
6042 * pa64solib.c (pa64_solib_have_load_event)
6043 (pa64_solib_have_unload_event, pa64_solib_loaded_library_pathname)
6044 (pa64_solib_unloaded_library_pathname): Likewise.
6045 * somsolib.c (som_solib_have_load_event, som_solib_have_unload_event)
6046 (som_solib_library_pathname): Likewise.
6047
6048 2004-05-05 Jim Ingham <jingham@apple.com>
6049
6050 * breakpoint.c (create_breakpoints): Copy the ignore count and
6051 thread id over from the pended breakpoint to the actual
6052 breakpoint.
6053
6054 2004-05-05 Andrew Cagney <cagney@redhat.com>
6055
6056 * gdbarch.sh (PARM_BOUNDARY): Delete.
6057 gdbarch.h, gdbarch.c: Re-generate.
6058 * valops.c (PARM_BOUNDARY): Delete macro.
6059 (value_push): Delete PARM_BOUNDARY code.
6060 * m68k-tdep.c (m68k_gdbarch_init): Do not set parm_boundary.
6061
6062 2004-05-04 Jim Blandy <jimb@redhat.com>
6063
6064 * ppc-linux-nat.c (fetch_ppc_registers, store_ppc_registers):
6065 Don't assume that the gprs, fprs, and UISA sprs are
6066 contiguous, start at register number zero, and end with fpscr.
6067 Instead, use the numbers from the tdep structure.
6068
6069 * config/rs6000/tm-rs6000.h (FP0_REGNUM): Document that this
6070 should no longer be used in code specific to the RS6000 and its
6071 derivatives.
6072 * ppc-tdep.h (struct gdbarch_tdep): Add 'ppc_fp0_regnum' member.
6073 * rs6000-tdep.c (rs6000_gdbarch_init): Initialize
6074 tdep->ppc_fp0_regnum.
6075 (ppc_supply_fpregset, ppc_collect_fpregset)
6076 (rs6000_push_dummy_call, rs6000_extract_return_value)
6077 (rs6000_dwarf2_stab_reg_to_regnum, rs6000_store_return_value)
6078 (rs6000_frame_cache): Use tdep->ppc_fp0_regnum instead of
6079 FP0_REGNUM.
6080 * aix-thread.c (supply_fprs, fetch_regs_kernel_thread)
6081 (fill_gprs64, fill_gprs32, fill_fprs, store_regs_kernel_thread):
6082 Same.
6083 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_fetch_registers,
6084 bdm_ppc_store_registers): Same.
6085 * ppc-linux-nat.c (ppc_register_u_addr, fetch_register)
6086 (store_register, fill_fpregset): Same.
6087 * ppc-linux-tdep.c (ppc_linux_sigtramp_cache)
6088 (ppc_linux_supply_fpregset): Same.
6089 * ppcnbsd-nat.c (getfpregs_supplies): Same.
6090 * ppcnbsd-tdep.c (ppcnbsd_supply_fpreg, ppcnbsd_fill_fpreg):
6091 Same.
6092 * ppc-sysv-tdep.c (ppc_sysv_abi_push_dummy_call,
6093 do_ppc_sysv_return_value, ppc64_sysv_abi_push_dummy_call,
6094 ppc64_sysv_abi_return_value): Same.
6095 * rs6000-nat.c (regmap, fetch_inferior_registers)
6096 (store_inferior_registers, fetch_core_registers): Same.
6097
6098 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6099
6100 * m68knbsd-nat.c: Remove file.
6101 * m68knbsd-tdep.c: Remove file.
6102 * Makefile.in: (m68knbsd-nat.o, m68knbsd-tdep.o): Remove
6103 dependencies.
6104 * configure.host: Add m68k-*-netbsdelf*.
6105 * configure.tgt (m68k-*-netbsd*): Set gdb_target to nbsd.
6106 * config/m68k/nbsdaout.mh (NATDEPFILES): Add m68kbsd-nat.o,
6107 solib.o and solib-sunos.o. Remove m68knbsd-nat.o, corelow.o.
6108 (XM_FILE): Remove.
6109 * config/m68k/nbsdelf.mh: New file.
6110 * config/m68k/nbsd.mt: New file.
6111 * config/m68k/nbsdaout.mt: Remove file.
6112 * config/m68k/tm-nbsd.h: Don't include <sys/param.h>,
6113 <machine/vmparam.h> and "m68k/tm-m68k.h". Include "solib.h".
6114 (BPT_VECTOR, STACK_END_ADDR): Remove defines.
6115 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Likewise.
6116 (use_struct_convention): Remove prototype.
6117 (USE_STRUCT_CONVENTION): Remove define.
6118 * config/m68k/xm-nbsd.h: Remove file.
6119
6120 2004-05-04 Michael Snyder <msnyder@redhat.com>
6121
6122 * m68k-tdep.c (m68k_gdbarch_init): Default to using
6123 reg_struct_return method (as gcc usually does for cross targets).
6124
6125 2004-05-04 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
6126
6127 Committed by Andrew Cagney.
6128 * s390-tdep.c (s390_sigtramp_frame_unwind_cache): Account for
6129 alignment padding when accessing ucontext struct members.
6130
6131 2004-05-04 Jim Blandy <jimb@redhat.com>
6132
6133 * config/ppc-tdep.h (struct gdbarch_tdep): Delete
6134 'ppc_gplast_regnum' member.
6135 (ppc_num_gprs): New enum constant.
6136 * ppc-linux-nat.c (ppc_register_u_addr): Use tdep->ppc_gp0_regnum
6137 and ppc_num_gprs instead of tdep->ppc_gplast_regnum.
6138 * rs6000-nat.c (regmap, fetch_inferior_registers,
6139 store_inferior_registers): Same.
6140 * rs6000-tdep.c (e500_pseudo_register_read)
6141 (e500_pseudo_register_write): Same.
6142 (rs6000_gdbarch_init): Don't initialize tdep->ppc_gplast_regnum.
6143
6144 * config/rs6000/tm-rs6000.h (FPLAST_REGNUM): Delete #definition.
6145 * ppc-tdep.h (ppc_num_fprs): New enum constant.
6146 * aix-thread.c (fetch_regs_kernel_thread, fill_fprs,
6147 store_regs_kernel_thread): Use FP0_REGNUM + ppc_num_fprs, not
6148 FPLAST_REGNUM.
6149 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
6150 Same.
6151 * ppc-linux-nat.c (ppc_register_u_addr): Same.
6152 * rs6000-nat.c (regmap, fetch_inferior_registers)
6153 (store_inferior_registers): Same.
6154
6155 * aix-thread.c (fill_fprs): Fix off-by-one error comparing regno
6156 with FPLAST_REGNUM.
6157
6158 2004-05-03 Joel Brobecker <brobecker@gnat.com>
6159
6160 * dwarf2read.c (dwarf2_create_include_psymtab): Fix build
6161 failure detected by recent versions of GCC.
6162 (psymtab_to_symtab_1): No longer use the PST_PRIVATE macro
6163 to be consistent with the usage in dwarf2_create_include_psymtab.
6164
6165 2004-05-03 Michael Snyder <msnyder@redhat.com>
6166
6167 * mips-tdep.c (mips_gdbarch_init): Fix typo in comment.
6168 (heuristic_proc_start): Whitespace cleanup.
6169
6170 2004-05-04 Mark Kettenis <kettenis@gnu.org>
6171
6172 * sun3-nat.c: Remove file.
6173 * Makefile.in (tm-sun3.h tm-altos.h tm-sun2.h tm-3b1.h): Remove
6174 dependencies.
6175 (ALLDEPFILES): Remove sun3-nat.c.
6176 (sun3-nat.o): Remove dependencies.
6177
6178 * i386-interix-nat.c, i386-interix-tdep.c,
6179 config/i386/nm-interix.h, config/i386/interix.mh,
6180 config/i386/interix.mt: Remove files.
6181 * Makefile.in (i386-interix-nat.o, i386-interix-tdep.o): Remove
6182 dependencies.
6183
6184 2004-05-03 Mark Kettenis <kettenis@gnu.org>
6185
6186 * m68k-tdep.h (struct gdbarch_tdep): Add member
6187 struct_value_regnum.
6188 (m68k_svr4_init_abi): New prototype.
6189 * m68k-tdep.c: Include "floatformat.h". Add comment about all the
6190 different calling conventions.
6191 (m68k_extract_return_value): Remove code dealing with single-field
6192 structs.
6193 (m68k_store_return_value): Remove code dealing with single-field
6194 structs. Correctly store return values of 5, 6, 7 or 8 bytes.
6195 (m68k_extract_struct_value_address): Remove function.
6196 (m68k_svr4_extract_return_value,m68k_svr4_store_return_value)
6197 (m68k_reg_struct_return_p, m68k_return_value)
6198 (m68k_svr4_return_value): New functions.
6199 (m68k_use_struct_convention): Remove function.
6200 (m68k_push_dummy_call): Use new struct_value_regnum member of
6201 `struct gdbarch_tdep' instead of hardcoded register number to
6202 store STRUCT_ADDR.
6203 (m68k_svr4_init_abi): New function.
6204 (m68k_gdbarch_init): Don't set extract_return_value,
6205 store_return_values, deprecated_extract_struct_value_address and
6206 use_struct_convention. Set return_value instead. Initialize new
6207 struct_value_regnum member of `struct gdbarch_tdep'.
6208 * m68klinux-tdep.c: Update copyright year.
6209 (m68k_linux_extract_return_value, m68k_linux_store_return_value)
6210 (m68k_linux_extract_struct_value_address): Remove function.
6211 (m68k_linux_init_abi): Don't set extract_return_value,
6212 store_return_values, deprecated_extract_struct_value_address and
6213 use_struct_convention. Call m68k_svr4_init_abi but override the
6214 new struct_value_regnum member of `struct gdbarch_tdep'.
6215 * Makefile.in (m68k-tdep.o): Update dependencies.
6216
6217 2004-05-03 J. Brobecker <brobecker@gnat.com>
6218
6219 * dwarf2read.c (line_header): Add new included_p field in
6220 field file_names.
6221 (partial_die_info): New field has_stmt_list. New field line_offset.
6222 (dwarf2_create_include_psymtab): New function.
6223 (dwarf2_build_include_psymtabs): New function.
6224 (add_file_name): Add forward declaration. Initialize new field.
6225 (dwarf_decode_lines): Add new parameter. Enhance this procedure
6226 to be able to determine the list of files included by the
6227 given unit, and build their associated psymtabs.
6228 (dwarf2_build_psymtabs_hard): Build the psymtabs for the included
6229 files as well.
6230 (psymtab_to_symtab_1): Build the symtabs of all dependencies as well.
6231 (read_file_scope): Update call to dwarf_decode_lines.
6232 (read_partial_die): Handle DW_AT_stmt_list attributes.
6233
6234 2004-05-02 Michael Chastain <mec.gnu@mindspring.com>
6235
6236 Unfix PR gdb/1626.
6237 * configure.in: Revert special case for osf5.*.
6238 * configure: Regenerate.
6239
6240 2004-05-02 Jim Blandy <jimb@redhat.com>
6241
6242 Move the symbol-file-from-memory functions into their own file.
6243 * symfile-mem.c, symfile-mem.h: New files.
6244 * symfile.c (symbol_file_add_from_bfd): New function.
6245 (symbol_file_add): Call symbol_file_add_from_bfd.
6246 (symbol_file_add_from_memory, add_symbol_file_from_memory_command):
6247 Moved to symfile-mem.c.
6248 (_initialize_symfile): Move definition of
6249 add-symbol-file-from-memory command to symfile-mem.c.
6250 * symfile.h (symbol_file_add_from_bfd): New declaration.
6251 * config/i386/linux.mt (TDEPFILES): Add symfile-mem.o.
6252 * config/powerpc/linux.mt (TDEPFILES): Same.
6253 * Makefile.in (SFILES): Add symfile-mem.c.
6254 (symfile_mem_h): New variable.
6255 (HFILES_NO_SRCDIR): Add symfile-mem.h.
6256 (symfile-mem.o): New rule.
6257
6258 2004-05-01 Andrew Cagney <cagney@redhat.com>
6259
6260 * breakpoint.c (insert_bp_location): Use get_frame_id, and
6261 frame_find_by_id instead of frame_relative_level.
6262 (do_enable_breakpoint): Ditto.
6263 * thread.c: Update copyright.
6264 (info_threads_command): Ditto, simplify.
6265
6266 * frame.c (deprecated_generic_get_saved_register): Delete
6267 function, moved to "xstormy16-tdep.c".
6268 * xstormy16-tdep.c (xstormy16_get_saved_register): Inline
6269 deprecated_generic_get_saved_register from "frame.c".
6270 (xstormy16_frame_saved_register): Call
6271 xstormy16_get_saved_register.
6272 * dummy-frame.c (deprecated_find_dummy_frame_regcache): Make
6273 static.
6274 * dummy-frame.h (deprecated_find_dummy_frame_regcache): Delete.
6275 * frame.h (deprecated_generic_get_saved_register): Delete.
6276
6277 2004-05-01 Michael Chastain <mec.gnu@mindspring.com>
6278
6279 * dwarfread.c: Update documentation on the state of dwarf-1.
6280
6281 2004-05-01 Andrew Cagney <cagney@redhat.com>
6282
6283 * stack.c (select_frame_command): Delete call to
6284 frame_relative_level.
6285 (print_frame, set_backtrace_limit_command, backtrace_limit_info):
6286 Delete #if0 code.
6287 (frame_info): Do not print FRAMELESS.
6288 (print_block_frame_labels): Replace DEPRECATED_STREQ.
6289 (catch_info): Delete #if0 code.
6290
6291 * frame.c (create_sentinel_frame): Set type to SENTINEL_FRAME.
6292 * dummy-frame.c (dummy_frame_this_id): Use get_frame_type, instead
6293 of frame_relative_level.
6294 * sentinel-frame.c (sentinel_frame_unwinder): Set unwinder's type
6295 to SENTINEL_FRAME.
6296 * frame.h (enum frame_type): Add SENTINEL_FRAME.
6297 * s390-tdep.c (s390_prologue_frame_unwind_cache): Delete calls to
6298 frame_relative_level.
6299
6300 * frame.h (deprecated_set_frame_type): Delete declaration.
6301 * frame.c (deprecated_set_frame_type): Delete function, update
6302 comments.
6303
6304 * gdbarch.sh (DEPRECATED_PC_IN_SIGTRAMP): Delete.
6305 * gdbarch.h, gdbarch.c: Re-generate.
6306 * shnbsd-tdep.c (shnbsd_init_abi): Do not set pc_in_sigtramp.
6307 (shnbsd_pc_in_sigtramp): Delete.
6308 * i386-interix-tdep.c (i386_interix_init_abi): Do not set
6309 pc_in_sigtramp.
6310 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Do not set
6311 pc_in_sigtramp.
6312 * frame.h: Update comments.
6313 * ppc-linux-tdep.c: Update comments.
6314 * breakpoint.c (bpstat_what): Update comments.
6315
6316 * Makefile.in (m68klinux-tdep.o, m68klinux-nat.o): Fix
6317 m68klinux-tdep.o's dependencies, were previously added to
6318 m68klinux-nat.o.
6319
6320 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Use pc_in_sigtramp.
6321 * alpha-tdep.h (struct gdbarch_tdep): Add pc_in_sigtramp.
6322 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
6323 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
6324 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
6325
6326 * Makefile.in (m68klinux-nat.o): Update dependencies.
6327 * m68klinux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
6328 (m68k_linux_sigtramp_frame_cache)
6329 (m68k_linux_sigtramp_frame_this_id)
6330 (m68k_linux_sigtramp_frame_prev_register)
6331 (m68k_linux_sigtramp_frame_unwind)
6332 (m68k_linux_sigtramp_frame_sniffer)
6333 (struct m68k_linux_sigtramp_info, m68k_linux_init_abi): Code from
6334 m68k-tdep.h and m68k-tdep.c, add "linux" to function and variable
6335 names, use trad-frame.h.
6336 * m68k-tdep.h (struct gdbarch_tdep): Delete get_sigtramp_info.
6337 (struct m68k_sigtramp_info): Delete.
6338 * m68k-tdep.c (m68k_sigtramp_frame_cache)
6339 (m68k_sigtramp_frame_this_id, m68k_sigtramp_frame_prev_register)
6340 (m68k_sigtramp_frame_unwind, m68k_sigtramp_frame_sniffer)
6341 (m68k_gdbarch_init): Delete all the sigtramp code, moved to
6342 "m68klinux-tdep.c".
6343
6344 * infrun.c (check_sigtramp2): Delete check for
6345 DEPRECATED_PC_IN_SIGTRAMP and INNER_THAN.
6346
6347 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6348
6349 * m68k-tdep.h (m68kbsd_fpreg_offset): New prototype.
6350
6351 2004-05-01 Andrew Cagney <cagney@redhat.com>
6352
6353 * frv-linux-tdep.c: Include "trad-frame.h" and "frame-unwind.h".
6354 (frv_linux_sigtramp_frame_cache)
6355 (frv_linux_sigtramp_frame_this_id)
6356 (frv_linux_sigtramp_frame_prev_register)
6357 (frv_linux_sigtramp_frame_unwind)
6358 (frv_linux_sigtramp_frame_sniffer): Copied from frv-tdep.c,
6359 include "linux" in function and variable names, directly call
6360 frv_linux_pc_in_sigtramp and frv_linux_sigcontext_reg_addr, use
6361 the latest trad-frame code.
6362 (frv_linux_init_abi): Append frv_linux_sigtramp_frame_sniffer, do
6363 not set frv_sigcontext_reg_addr or deprecated_pc_in_sigtramp
6364 * Makefile.in (frv-linux-tdep.o): Update dependencies.
6365 * frv-tdep.h (frv_set_sigcontext_reg_addr): Delete declaration.
6366 * frv-tdep.c (frv_sigtramp_frame_cache)
6367 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
6368 (frv_sigtramp_frame_unwind, frv_sigtramp_frame_sniffer): Moved to
6369 frv-linux-tdep.c.
6370 (frv_gdbarch_init): Do not append a sigtramp sniffer.
6371 (struct gdbarch_tdep): Delete sigcontext_reg_addr.
6372 (frv_set_sigcontext_reg_addr): Delete function.
6373
6374 * gdbarch.sh (DEPRECATED_SIGTRAMP_START)
6375 (DEPRECATED_SIGTRAMP_END): Delete.
6376 * gdbarch.h, gdbarch.c: Re-generate.
6377 * arch-utils.c (legacy_pc_in_sigtramp): Simplify.
6378 * config/vax/tm-vaxbsd.h: Update copyright.
6379 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
6380 (DEPRECATED_IN_SIGTRAMP): Define.
6381 * config/m68k/tm-nbsd.h: Update copyright.
6382 (DEPRECATED_SIGTRAMP_START, DEPRECATED_SIGTRAMP_END): Delete.
6383 (DEPRECATED_IN_SIGTRAMP): Define.
6384
6385 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6386
6387 * dwarf2-frame.c (read_encoded_value): Handle DW_EH_PE_funcrel
6388 encondings. Fixes PR gdb/1628.
6389
6390 * dwarf2-frame.c (execute_cfa_program): Complain if we encounter a
6391 DW_CFA_restore state without a matching DW_CFA_remember_state
6392 instead of aborting. Fixes PR backtrace/1589.
6393
6394 2004-04-30 Joel Brobecker <brobecker@gnat.com>
6395
6396 * MAINTAINERS: Add self as AIX maintainer.
6397 Update my e-mail address in write-after-approval section.
6398
6399 2004-04-30 Andrew Cagney <cagney@redhat.com>
6400
6401 * frame.c (frame_type_from_pc): Delete call to PC_IN_SIGTRAMP.
6402 (legacy_get_prev_frame): Ditto.
6403
6404 * mips-tdep.c (mips_pc_in_sigtramp): Delete.
6405 (mips_gdbarch_init): Do not set pc_in_sigtramp.
6406 * mipsread.c (sigtramp_address): Delete extern variable.
6407 (mipscoff_new_init): Delete reference.
6408 * mdebugread.c (sigtramp_address, sigtramp_end): Delete variables.
6409 (fixup_sigtramp): Delete function.
6410 * config/mips/tm-mips.h (sigtramp_address, sigtramp_end)
6411 (fixup_sigtramp): Delete declarations.
6412
6413 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Do not set
6414 deprecated_pc_in_sigtramp.
6415 (ppcnbsd_pc_in_sigtramp): Delete function.
6416
6417 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6418
6419 * config/m68k/nm-nbsd.h: Tweak comments.
6420 * config/m68k/nm-nbsdaout.h: Likewise.
6421
6422 2004-04-30 Andrew Cagney <cagney@redhat.com>
6423
6424 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Call
6425 legacy_pc_in_sigtramp.
6426 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Ditto.
6427
6428 2004-05-01 Mark Kettenis <kettenis@gnu.org>
6429
6430 Add OpenBSD/m68k support.
6431 * NEWS (New native configurations): Mention OpenBSD/m68k.
6432 * m68kbsd-tdep.c: New file.
6433 * m68kbsd-nat.c: New file.
6434 * Makefile.in (ALLDEPFILES): Add m68kbsd-nat.c and m68kbsd-tdep.c.
6435 (m68kbsd-nat.o, m68kbsd-tdep.o): New dependencies.
6436 * configure.host: Add m68k-*-openbsd.
6437 * configure.tgt: Add m68k-*-openbsd.
6438 * config/m68k/tm-obsd.h: New file.
6439 * config/m68k/obsd.mt: New file.
6440 * config/m68k/obsd.mh: New file.
6441 * config/djgpp/fnchange.lst: Add entries for m68kbsd-nat.c and
6442 m68kbsd-tdep.c.
6443
6444 2004-04-30 Andrew Cagney <cagney@redhat.com>
6445
6446 * mipsnbsd-tdep.c (mipsnbsd_pc_in_sigtramp): Delete function.
6447 (mipsnbsd_init_abi): Do not set pc_in_sigtramp.
6448
6449 2004-04-30 Mark Kettenis <kettenis@gnu.org>
6450
6451 * m68k-tdep.c (REMOTE_BPT_VECTOR): Remove define.
6452 * config/m68k/tm-nbsd.h (REMOTE_BPT_VECTOR): Remove define.
6453
6454 2004-04-30 Brian Ford <ford@vss.fsi.com>
6455
6456 Revert 2004-04-16 change.
6457 * i386-tdep.c (i386_gdbarch_init): Fix comment typos.
6458 (i386_coff_init_abi): Remove.
6459 * i386-tdep.h (i386_coff_init_abi): Remove.
6460 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Remove call to above.
6461
6462 2004-04-30 Andrew Cagney <cagney@redhat.com>
6463
6464 * blockframe.c (find_pc_partial_function): Delete use of
6465 DEPRECATED_PC_IN_SIGTRAMP, DEPRECATED_SIGTRAMP_START and
6466 DEPRECATED_SIGTRAMP_END.
6467
6468 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Delete.
6469 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Delete.
6470 * config/mips/tm-nbsd.h: Delete undef DEPRECATED_IN_SIGTRAMP.
6471 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Delete.
6472 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Delete.
6473
6474 * defs.h (deprecated_inside_entry_file): Delete declaration.
6475 * blockframe.c (deprecated_inside_entry_file): Delete function.
6476 (legacy_frame_chain_valid): Delete call.
6477 * sh64-tdep.c (sh64_frame_chain): Delete call.
6478 * objfiles.h: Update comments.
6479 * i386-interix-tdep.c (i386_interix_frame_chain_valid): Delete
6480 call.
6481 * frame.c (get_prev_frame): Delete call, update comments.
6482
6483 2004-04-30 Brian Ford <ford@vss.fsi.com>
6484
6485 * MAINTAINERS (Write After Approval): Add myself.
6486
6487 2004-04-30 Andrew Cagney <cagney@redhat.com>
6488
6489 * gdbarch.sh (BELIEVE_PCC_PROMOTION_TYPE): Delete.
6490 * gdbarch.h, gdbarch.c: Re-generate.
6491 * stabsread.c (define_symbol): Delete BELIEVE_PCC_PROMOTION_TYPE
6492 code.
6493
6494 2004-04-30 Andrew Cagney <cagney@redhat.com>
6495
6496 * gdb-events.sh (selected_thread_changed)
6497 (selected_frame_level_changed, target_changed): Delete.
6498 * gdb-events.h, gdb-events.c: Re-generate.
6499 * valops.c (value_assign): Update.
6500 * stack.c (select_frame_command, up_silently_base)
6501 (down_silently_base): Update.
6502
6503 2004-04-29 Andrew Cagney <cagney@redhat.com>
6504
6505 * mips-tdep.c (mips_register_type): Re-write, handle 32-bit ABI
6506 registers correctly.
6507 (print_gp_register_row, mips32_heuristic_proc_desc)
6508 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call)
6509 (mips_o64_push_dummy_call, mips_eabi_push_dummy_call): Eliminate
6510 references to mips_isa_regsize.
6511
6512 2004-04-29 Andrew Cagney <cagney@redhat.com>
6513
6514 * mips-tdep.c (struct gdbarch_tdep): Delete
6515 mips_fp_register_double.
6516 (FP_REGISTER_DOUBLE): Delete macro, replace with test for
6517 mips_abi_regsize.
6518 (mips_gdbarch_init): Do not set mips_fp_register_double.
6519 (mips_dump_tdep): Do not print FP_REGISTER_DOUBLE.
6520
6521 2004-04-29 Joel Brobecker <brobecker@gnat.com>
6522
6523 Committed by Andrew Cagney.
6524 * infrun.c (handle_inferior_event): Rely on frame IDs to detect
6525 function calls.
6526
6527 2004-04-29 Andrew Cagney <cagney@redhat.com>
6528
6529 * mips-tdep.c (mips_abi_regsize): Replace tdep parameter with
6530 gdbarch, use mips_abi, update callers.
6531 (mips_stack_argsize): Replace tdep parameter with gdbarch, use
6532 mips_abi_regsize, update callers.
6533 (struct gdbarch_tdep): Delete mips_default_stack_argsize and
6534 mips_default_abi_regsize.
6535 (mips_gdbarch_init): Do not set mips_default_stack_argsize and
6536 mips_default_abi_regsize.
6537
6538 2004-04-29 Andrew Cagney <cagney@redhat.com>
6539
6540 * mips-tdep.c (mips_abi_regsize): Rename mips_saved_regsize.
6541 (mips_abi_regsize_string): Rename mips_saved_regsize_string.
6542 (struct gdbarch_tdep): Rename mips_default_saved_regsize to
6543 mips_default_abi_regsize.
6544 (mips_isa_regsize): Rename mips_regisze.
6545 * mipsnbsd-tdep.c: Update.
6546 * mips-linux-tdep.c: Update.
6547 * irix5-nat.c: Update.
6548 * mips-tdep.h (mips_isa_regsize): Update.
6549
6550 * gdb-events.sh (WITH_GDB_EVENTS): Delete macro and references.
6551 Delete all disabled code.
6552 * gdb-events.h, gdb-events.c: Re-generate.
6553
6554 2004-04-19 Jerome Guitton <guitton@gnat.com>
6555 Mark Kettenis <kettenis@gnu.org>
6556
6557 * i386-tdep.c (i386_skip_prologue): follow the last jump only if
6558 the function begins with a branch instruction.
6559
6560 2004-04-29 Mark Kettenis <kettenis@gnu.org>
6561
6562 * i386-tdep.c: Fix spelling mistakes.
6563
6564 2004-04-28 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
6565 Andrew Cagney <cagney@redhat.com>
6566
6567 * configure.in (mips-sgi-irix5*): Define _KMEMUSER for
6568 <sys/proc.h>.
6569 * acconfig.h: Provide default _KMEMUSER value.
6570 * config.in, configure: Re-generate.
6571 * NEWS: Mention fix.
6572
6573 2004-04-24 Randolph Chung <tausq@debian.org>
6574
6575 * configure.host (hppa*-*-linux*): New target.
6576 * configure.tgt (hppa*-*-linux*): Likewise.
6577 * hppa-tdep.c (hppa_gdbarch_init): Set cannot_fetch_register, move
6578 gdbarch_init_osabi() call earlier so that osabi-specific frame
6579 unwinders can be registered first.
6580 * config/djgpp/fnchange.lst: Add entries for hppa-linux-tdep.c and
6581 hppa-linux-nat.c.
6582 * config/pa/tm-hppa.h (ISR_REGNUM, PID0_REGNUM, PID1_REGNUM)
6583 (PID2_REGNUM, PID3_REGNUM): Add definitions of some register numbers.
6584 * config/pa/linux.mh: New file.
6585 * config/pa/linux.mt: New file.
6586 * config/pa/nm-linux.h: New file.
6587 * config/pa/xm-linux.h: New file.
6588 * hppa-linux-nat.c: New file.
6589 * hppa-linux-tdep.c: New file.
6590
6591 2004-04-28 Randolph Chung <tausq@debian.org>
6592
6593 * hppa-tdep.c (hppa32_return_value): Handle both 4- and 8-byte fp
6594 return values.
6595 (hppa32_push_dummy_call): Fix small struct and floating point argument
6596 passing, and make sure the stack frame is properly aligned.
6597
6598 2004-04-28 Andrew Cagney <cagney@redhat.com>
6599
6600 * stack.c (print_stack_frame): Fix description.
6601
6602 * NEWS: Mention gdb/gdbserver/configure execute permission
6603 changed. PR server/519.
6604
6605 2004-04-28 Andrew Cagney <cagney@redhat.com>
6606
6607 * stack.c (print_stack_frame_stub): Delete declaration.
6608 (struct print_stack_frame_args, print_stack_frame)
6609 (print_frame_info, print_frame): Replace "source" with print what.
6610 Replace "print" with "print_level". Replace "args" with
6611 "print_args".
6612 * frame.h (show_and_print_stack_frame, print_stack_frame)
6613 (print_frame_info): Update declarations.
6614 * stack.c (select_and_print_frame, frame_command)
6615 (current_frame_command, up_command, down_command): Update calls -
6616 use get_selected_frame, pass "enum print_what" for source, do not
6617 call frame_relative_level.
6618 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Ditto.
6619 * remote-rdp.c (remote_rdp_open): Ditto.
6620 * remote-mips.c (common_open): Ditto.
6621 * remote-e7000.c (e7000_start_remote): Ditto.
6622 * ocd.c (ocd_start_remote): Ditto.
6623 * mi/mi-main.c (mi_cmd_exec_return): Ditto.
6624 * infrun.c (normal_stop): Ditto.
6625 * inflow.c (kill_command): Ditto.
6626 * infcmd.c (finish_command): Ditto.
6627 * corelow.c (core_open): Ditto.
6628 * tracepoint.c (finish_tfind_command): Ditto.
6629 * thread.c (info_threads_command, info_threads_command)
6630 (restore_current_thread, do_captured_thread_select): Ditto.
6631 * ada-tasks.c (task_command): Ditto.
6632
6633 2004-04-26 Orjan Friberg <orjanf@axis.com>
6634
6635 * frame.c: Include "observer.h".
6636 (frame_observer_target_changed): New function.
6637 (_initialize_frame): Attach target_changed observer.
6638 * regcache.c: Include "observer.h".
6639 (regcache_observer_target_changed): New function.
6640 (_initialize_regcache): Attach target_changed observer.
6641 * valops.c: Include "observer.h".
6642 (value_assign): Notify target_changed event when modifying register.
6643 * Makefile.in (frame.o, regcache.o, valops.o): Add $(observer_h).
6644
6645 2004-04-26 Orjan Friberg <orjanf@axis.com>
6646
6647 From Paul Koning <pkoning@equallogic.com>:
6648 * breakpoint.c (free_valchain): New function.
6649 (insert_bp_location, delete_breakpoint): Use free_valchain.
6650 (remove_breakpoint): Do not remove the valchain.
6651 (bpstat_stop_status): If not stopped by watchpoint, skip
6652 watchpoints when generating stop status list.
6653 * infrun.c (handle_inferior_event): Make
6654 stepped_after_stopped_by_watchpoint a global variable.
6655 * remote.c (remote_stopped_data_address): Return watch data
6656 address rather than zero if stepped_after_stopped_by_watchpoint is
6657 set.
6658
6659 2004-04-25 Michael Chastain <mec.gnu@mindspring.com>
6660
6661 Fix PR gdb/1626.
6662 * configure.in: Check for curses after termcap.
6663 On osf5.*, do not check for ncurses.
6664 * configure: Regenerate.
6665
6666 2004-04-25 Mark Kettenis <kettenis@gnu.org>
6667
6668 * ppcobsd-nat.c: Include "ppc-tdep.h".
6669 * Makefile.in (ppcobsd-nat.o): Update dependencies.
6670
6671 * stack.c (return_command): Use CHECK_TYPEDEF on the return type.
6672 Fixes PR tdep/1623 and PR tdep/1624.
6673
6674 2004-04-24 Michael Chastain <mec.gnu@mindspring.com>
6675
6676 * xmodem.h, xmodem.c: Remove files.
6677 * Makefile.in: Remove references to xmodem.h, xmodem.c.
6678
6679 2004-04-23 Randolph Chung <tausq@debian.org>
6680
6681 * hppa-tdep.c (hppa_stub_unwind_cache, hppa_stub_frame_unwind_cache)
6682 (hppa_stub_frame_this_id, hppa_stub_frame_prev_register)
6683 (hppa_stub_frame_unwind, hppa_stub_unwind_sniffer): New stub unwinder
6684 for handling stackless frames.
6685 (hppa_gdbarch_init): Link in hppa_stub_unwind_sniffer.
6686
6687 2004-04-23 Randolph Chung <tausq@debian.org>
6688
6689 * hppa-tdep.c (hppa_frame_cache): Handle the case when frame unwind
6690 starts at a pc before the frame is created.
6691
6692 2004-04-23 Joel Brobecker <brobecker@gnat.com>
6693
6694 * ChangeLog-2002: Fix year in one of the ChangeLog entries.
6695
6696 2004-04-23 Jerome Guitton <guitton@gnat.com>
6697
6698 * rs6000-tdep.c (rs6000_extract_return_value): When extracting a float,
6699 use convert_typed_floating to get the appropriate format.
6700
6701 2004-04-22 Randolph Chung <tausq@debian.org>
6702
6703 * hppa-tdep.h (find_unwind_entry, hppa_get_field, hppa_extract_5_load)
6704 (hppa_extract_5R_store, hppa_extract_5r_store, hppa_extract_17)
6705 (hppa_extract_21, hppa_extract_14, hppa_low_sign_extend)
6706 (hppa_sign_extend): Add prototype.
6707 * hppa-tdep.c (get_field, extract_5_load, extract_5R_store)
6708 (extract_5r_store, extract_17, extract_21, extract_14, low_sign_extend)
6709 (sign_extend): Rename with hppa_ prefix and make non-static. Other
6710 hppa targets will also use these functions.
6711 (find_unwind_entry): Remove prototype (moved to hppa-tdep.h).
6712 (hppa_in_solib_call_trampoline, hppa_in_solib_return_trampoline)
6713 (hppa_skip_trampoline_code): Move to hppa-hpux-tdep.c
6714 (hppa_gdbarch_init): Remove gdbarch setting of
6715 skip_trampoline_code, in_solib_call_trampoline and
6716 in_solib_return_trampoline.
6717 * hppa-hpux-tdep.c (hppa32_hpux_in_solib_call_trampoline)
6718 (hppa64_hpux_in_solib_call_trampoline): New functions, split from
6719 hppa_in_solib_call_trampoline.
6720 (hppa_hpux_in_solib_return_trampoline, hppa_hpux_skip_trampoline_code):
6721 Moved from hppa-tdep.c.
6722 (hppa_hpux_init_abi): Set gdbarch for skip_trampoline_code,
6723 in_solib_call_trampoline and in_solib_return_trampoline.
6724
6725 2004-04-22 Randolph Chung <tausq@debian.org>
6726
6727 * hppa-tdep.c (hppa_debug): New variable.
6728 (find_unwind_entry, hppa_frame_cache): Add debug output.
6729 (_initialize_hppa_tdep): Add command to set debug flag.
6730
6731 2004-04-22 Andrew Cagney <cagney@redhat.com>
6732
6733 * ppcnbsd-tdep.c: Update copyright. Include "tramp-frame.h" and
6734 "trad-frame.h".
6735 (ppcnbsd_sigtramp_cache_init, ppcnbsd_sigtramp): Implement a NetBSD
6736 signal trampoline unwinder.
6737 (ppcnbsd_init_abi): Register ppcnbsd_sigtramp.
6738
6739 2004-04-22 Mark Kettenis <kettenis@gnu.org>
6740
6741 Add OpenBSD/powerpc support.
6742 * NEWS (New native configurations): Mention OpenBSD/powerpc.
6743 * ppc-tdep.h (struct ppc_reg_offsets): New structure.
6744 (ppc_supply_gregset, ppc_supply_fpregset, ppc_collect_gregset)
6745 (ppc_collect_fpregset): New prototypes.
6746 * ppcobsd-nat.c: New file.
6747 * ppcobsd-tdep.c: New file.
6748 * ppcobsd-tdep.h: New file.
6749 * rs6000-tdep.c: Include "regset.h".
6750 (ppc_supply_reg, ppc_collect_reg, ppc_supply_gregset)
6751 (ppc_supply_fpregset, ppc_collect_gregset, ppc_collect_fpregset):
6752 New functions.
6753 * Makefile.in (ALLDEPFILES): Add pccobsd-nat.c and ppcobsd-tdep.c.
6754 (ppcobsd-nat.o, ppcobsd-tdep.o): New dependencies.
6755 (rs6000-tdep.o): Update dependencies.
6756 * configure.host: Add powerpc-*-openbsd.
6757 * configure.tgt: Add powerpc-*-openbsd.
6758 * config/powerpc/obsd.mh: New file.
6759 * config/powerpc/nm-obsd.h: New file.
6760 * config/powerpc/obsd.mt: New file.
6761
6762 2004-04-22 Andrew Cagney <cagney@redhat.com>
6763
6764 * frame.h (show_frame_info): Delete declaration.
6765
6766 * arm-tdep.c (arm_prologue_this_id): Delete redundant cycle test.
6767 * m68hc11-tdep.c (m68hc11_frame_this_id): Ditto.
6768 * m32r-tdep.c (m32r_frame_this_id): Ditto.
6769 * frv-tdep.c (frv_frame_this_id): Ditto.
6770 * avr-tdep.c (avr_frame_this_id): Ditto.
6771
6772 2004-04-22 Elena Zannoni <ezannoni@redhat.com>
6773
6774 * MAINTAINERS: Drop maintenance of gdb.stabs, and linespec.c.
6775
6776 2004-04-22 Jim Blandy <jimb@redhat.com>
6777
6778 * ppc-linux-nat.c (ppc_register_u_addr): Don't assume that r0 is
6779 register number zero.
6780
6781 2004-04-21 Michael Snyder <msnyder@redhat.com>
6782
6783 * mips-tdep.c (heuristic_proc_start):
6784 Warning() already prefixes "Warning: ".
6785
6786 2004-04-21 Andrew Cagney <cagney@redhat.com>
6787
6788 * annotate.h (deprecated_annotate_starting_hook)
6789 (deprecated_annotate_stopped_hook)
6790 (deprecated_annotate_exited_hook)
6791 (deprecated_annotate_signal_hook)
6792 (deprecated_annotate_signalled_hook): Deprecate.
6793 * tracepoint.h (deprecated_create_tracepoint_hook)
6794 (deprecated_delete_tracepoint_hook)
6795 (deprecated_modify_tracepoint_hook)
6796 (deprecated_trace_find_hook)
6797 (deprecated_trace_start_stop_hook): Deprecate.
6798 * target.h (deprecated_target_new_objfile_hook): Deprecate.
6799 * remote.h (deprecated_target_resume_hook)
6800 (deprecated_target_wait_loop_hook): Deprecate.
6801 * gdbcore.h (deprecated_exec_file_display_hook)
6802 (deprecated_file_changed_hook): Deprecate.
6803 * frame.h (deprecated_selected_frame_level_changed_hook): Deprecate.
6804 * defs.h (deprecated_modify_breakpoint_hook)
6805 (deprecated_command_loop_hook, deprecated_show_load_progress)
6806 (deprecated_print_frame_info_listing_hook)
6807 (deprecated_query_hook, deprecated_warning_hook)
6808 (deprecated_flush_hook, deprecated_create_breakpoint_hook)
6809 (deprecated_delete_breakpoint_hook)
6810 (deprecated_interactive_hook, deprecated_registers_changed_hook)
6811 (deprecated_readline_begin_hook, deprecated_readline_hook)
6812 (deprecated_readline_end_hook, deprecated_register_changed_hook)
6813 (deprecated_memory_changed_hook, deprecated_init_ui_hook)
6814 (deprecated_context_hook, deprecated_target_wait_hook)
6815 (deprecated_attach_hook, deprecated_detach_hook)
6816 (deprecated_call_command_hook, deprecated_set_hook)
6817 (deprecated_error_hook, deprecated_error_begin_hook)
6818 (deprecated_ui_load_progress_hook): Deprecate.
6819 * valops.c, uw-thread.c, utils.c, tui/tui-io.c: Update.
6820 * tui/tui-hooks.c, tracepoint.c, top.c, thread-db.c: Update.
6821 * target.c, symfile.c, stack.c, sol-thread.c, rs6000-nat.c: Update.
6822 * remote.c, remote-mips.c, regcache.c, mi/mi-interp.c: Update.
6823 * main.c, interps.c, infcmd.c, hpux-thread.c, frame.c: Update.
6824 * exec.c, dsrec.c, d10v-tdep.c, corefile.c, complaints.c: Update.
6825 * cli/cli-script.c, cli/cli-setshow.c, breakpoint.c: Update.
6826 * annotate.c, aix-thread.c: Update.
6827
6828 2004-04-21 Andrew Cagney <cagney@redhat.com>
6829
6830 * Makefile.in (vaxnbsd-tdep.o): Update dependencies.
6831 * vaxnbsd-tdep.c: Include "gdb_string.h".
6832
6833 * symfile.c (symbol_file_add_from_memory): #if 0 function.
6834 (add_symbol_file_from_memory_command): #if 0 function body, call
6835 error instead.
6836
6837 2004-04-21 Andrew Cagney <cagney@redhat.com>
6838
6839 * gdbcore.h: Update copyright.
6840 (deprecated_add_core_fns): Rename add_core_fns.
6841 * win32-nat.c (_initialize_core_win32): Update.
6842 * sun3-nat.c (_initialize_core_sun3): Update.
6843 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Update.
6844 * rs6000-nat.c (_initialize_core_rs6000): Update.
6845 * ppcnbsd-tdep.c (_initialize_ppcnbsd_tdep): Update.
6846 * nto-tdep.c (_initialize_nto_tdep): Update.
6847 * ns32knbsd-nat.c (_initialize_ns32knbsd_nat): Update.
6848 * mipsnbsd-tdep.c (_initialize_mipsnbsd_tdep): Update.
6849 * mips-nat.c (_initialize_core_mips): Update.
6850 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
6851 * m68knbsd-nat.c (_initialize_m68knbsd_nat): Update.
6852 * m68klinux-nat.c (_initialize_m68k_linux_nat): Update.
6853 * lynx-nat.c (_initialize_core_lynx): Update.
6854 * irix5-nat.c (_initialize_core_irix5): Update.
6855 * i386-interix-nat.c (_initialize_core_interix): Update.
6856 * cris-tdep.c (_initialize_cris_tdep): Update.
6857 * corelow.c (deprecated_add_core_fns): Update.
6858 * core-regset.c (_initialize_core_regset): Update.
6859 * core-aout.c (_initialize_core_aout): Update.
6860 * armnbsd-nat.c (_initialize_arm_netbsd_nat): Update.
6861 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Update.
6862 * alpha-nat.c (_initialize_core_alpha): Update.
6863
6864 2004-04-21 Jim Blandy <jimb@redhat.com>
6865
6866 * rs6000-tdep.c (registers_e500, registers_7400): Doc fixes.
6867
6868 2004-04-19 Daniel Jacobowitz <drow@mvista.com>
6869
6870 * dwarf2read.c (dwarf2_tmp_obstack, dwarf2_free_tmp_obstack):
6871 Delete.
6872 (dwarf_alloc_block): Take a CU argument. Use the comp_unit_obstack.
6873 (read_attribute_value): Update calls to dwarf_alloc_block.
6874 (dwarf2_build_psymtabs_hard): Don't initialize or clean up
6875 dwarf2_tmp_obstack.
6876 (psymtab_to_symtab_1): Likewise. Clean up using
6877 free_stack_comp_unit.
6878 (add_to_cu_func_list): Use the comp_unit_obstack.
6879
6880 2004-04-19 Joel Brobecker <brobecker@gnat.com>
6881
6882 * dwarf2read.c (dwarf2_flag_true_p): New function.
6883 (die_is_declaration): Use the function above. Add some comments.
6884
6885 2004-04-19 Mark Kettenis <kettenis@gnu.org>
6886
6887 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Specify
6888 architecture when registering sparcnbsd_core_osabi_sniffer.
6889 Adjust comment.
6890
6891 2004-04-18 Mark Kettenis <kettenis@gnu.org>
6892
6893 * infcall.c (find_function_addr): Add FUNCTION_START_OFFSET to
6894 return value.
6895
6896 Based on a patch from Brian Ford <ford@vss.fsi.com>:
6897 * i386-tdep.c: Correct register numbering scheme comments
6898 throughout.
6899 (i386_stab_reg_to_regnum): Rename to i386_dbx_reg_to_regnum.
6900 (i386_dwarf_reg_to_regnum): Rename to i386_svr4_reg_to_regnum.
6901 (i386_coff_init_abi, i386_elf_init_abi): Accomodate renames above.
6902 (i386_gdb_arch_init): Likewise.
6903
6904 * Makefile.in (ALLDEPFILES): List ppc-sysv-tdep.c, ppcnbsd-nat.c
6905 and ppcnbsd-tdep.c instead of ppc-sysv-tdep.o, ppcnbsd-nat.o and
6906 ppcnbsd-tdep.o.
6907
6908 * m68k-tdep.h: Tweak comments.
6909 * m68k-tdep.c: Tweak comment.
6910
6911 2004-04-17 Randolph Chung <tausq@debian.org>
6912
6913 * Makefile.in (hppa-hpux-tdep.o): Add $(hppa_tdep_h).
6914 * hppa-hpux-tdep.c (hppa-tdep.h): Include.
6915 (hppa_hpux_som_init_abi): Set is_elf to 0.
6916 (hppa_hpux_elf_init_abi): Set is_elf to 1.
6917 * hppa-tdep.c (low_text_segment_address): Remove global.
6918 (record_text_segment_lowaddr): Pass in low address as parameter. Use
6919 section offset to calculate segment address.
6920 (internalize_unwinds): Define low_text_segment_address as local and
6921 pass to record_text_segment_lowaddr for ELF targets.
6922 (hppa_gdbarch_init): Zero fill tdep structure.
6923 (hppa_dump_tdep): Print tdep structure.
6924 * hppa-tdep.h (gdbarch_tdep): Add is_elf member to tdep structure.
6925
6926 2004-04-17 Randolph Chung <tausq@debian.org>
6927
6928 * hppa-tdep.c (hppa_pseudo_register_read): Define.
6929 (hppa_gdbarch_init): Set pseudo_register_read.
6930 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Remove.
6931 * regcache.c (supply_register): Remove check for
6932 DEPRECATED_CLEAN_UP_REGISTER_VALUE since we've removed the last user.
6933
6934 2004-04-17 Randolph Chung <tausq@debian.org>
6935
6936 * Makefile.in (hpread.o, pa64solib.o, somsolib.o): Add $(hppa_tdep_h)
6937 * hppa-tdep.h (INSTRUCTION_SIZE): Move from tm-hppa.h.
6938 (hpread_adjust_stack_address): Move to hpread.c.
6939 * hppa-tdep.h (unwind_table_entry, unwind_stub_types, obj_unwind_info,
6940 obj_private_struct): Move from tm-hppa.h.
6941 * hpread.c (hppa-tdep.h): Include.
6942 (hpread_adjust_stack_address): Move from hppa-tdep.c.
6943 (hpread_read_function_type, hpread_read_doc_function_type)
6944 (hpread_process_one_debug_symbol): Call hpread_adjust_stack_address
6945 directly.
6946 * pa64solib.c (hppa-tdep.h): Include.
6947 * somsolib.c (hppa-tdep.h): Include.
6948 * config/pa/tm-hppa.h (frame_info, frame_saved_regs, value, type,
6949 inferior_status): Remove unused forward declarations.
6950 (INSTRUCTION_SIZE): Move to hppa-tdep.c.
6951 (unwind_table_entry, unwind_stub_types, obj_unwind_info,
6952 obj_private_struct): Move to hppa-tdep.h.
6953 (HPREAD_ADJUST_STACK_ADDRESS): Remove.
6954
6955 2004-04-17 Randolph Chung <tausq@debian.org>
6956
6957 * hppa-tdep.c (hppa_reg_struct_has_addr, hppa_skip_prologue)
6958 (hppa_skip_trampoline_code, hppa_in_solib_call_trampoline)
6959 (hppa_in_solib_return_trampoline, hppa_cannot_store_register)
6960 (hppa_smash_text_address, hppa_target_read_pc, hppa_target_write_pc):
6961 Remove forward declaration and make static.
6962 (hppa_reg_struct_has_addr): Remove.
6963
6964 2004-04-16 Joel Brobecker <brobecker@gnat.com>
6965
6966 * observer.sh: Move comments in sed command to first column.
6967
6968 2004-04-16 Jason Molenda (jmolenda@apple.com)
6969
6970 * frame.c: Minor typeo corrections in comments.
6971
6972 2004-04-16 Joel Brobecker <brobecker@gnat.com>
6973
6974 * observer.c (observer_test_first_notification_function): Update
6975 function profile.
6976 (observer_test_second_notification_function): Likewise.
6977 (observer_test_third_notification_function): Likewise.
6978
6979 2004-04-16 Mark Kettenis <kettenis@gnu.org>
6980
6981 From Brian Ford <ford@vss.fsi.com>:
6982 * i386-tdep.c (i386_coff_init_abi): New function.
6983 * i386-tdep.h (i386_coff_init_abi): New prototype.
6984 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Call it. Use correct
6985 register number translation functions for DWARF and DWARF 2.
6986
6987 2004-04-16 Joel Brobecker <brobecker@gnat.com>
6988
6989 * dwarf2read.c: Back out my previous change, it was incorrect.
6990
6991 2004-04-16 Daniel Jacobowitz <drow@mvista.com>
6992
6993 * dwarf2read.c: Include "hashtab.h".
6994 (struct dwarf2_cu): Add partial_dies, comp_unit_obstack,
6995 has_namespace_info.
6996 (struct partial_die_info): Add comments. Use bitfields to reduce
6997 memory footprint. Add scope, scope_set, has_specification,
6998 spec_offset, die_parent, die_child, and die_sibling.
6999 (peek_die_abbrev): Add prototype.
7000 (partial_read_comp_unit_head): New function, broken out from
7001 dwarf2_build_psymtabs_hard.
7002 (dwarf2_build_psymtabs_hard): Remove unused variable abbrev_ptr.
7003 Use partial_read_comp_unit_head. Initialize the CU and
7004 comp_unit_obstack. Update calls to read_partial_die and
7005 scan_partial_symbols. Use free_stack_comp_unit and
7006 load_partial_dies.
7007 (scan_partial_symbols): Change PDI to a pointer. Use the child and
7008 sibling pointers to walk partial DIEs. Call fixup_partial_die.
7009 Update calls to helper functions. Remove NAMESPACE argument.
7010 Update comments.
7011 (partial_die_parent_scope, partial_die_full_name): New functions.
7012 (add_partial_symbol): Remove namespace argument. Update call to
7013 pdi_needs_namespace. Use partial_die_full_name. Handle
7014 DW_TAG_namespace. Check has_namespace_info flag.
7015 (pdi_needs_namespace): Remove NAMESPACE argument. Just check the
7016 tag. Handle namespaces.
7017 (add_partial_namespace, add_partial_enumeration): Simplify.
7018 (guess_structure_name): New function, derived from
7019 add_partial_structure.
7020 (add_partial_structure): Remove.
7021 (determine_class_name): Update comment.
7022 (dwarf2_read_abbrevs): Set has_namespace_info flag.
7023 (is_type_tag_for_partial, load_partial_dies): New functions.
7024 (read_partial_die): Pass abbrev and abbrev_len as arguments.
7025 Record specifications instead of following them immediately.
7026 (find_partial_die_in_comp_unit, find_partial_die)
7027 (fixup_partial_die, free_stack_comp_unit)
7028 (hashtab_obstack_allocate, dummy_obstack_deallocate)
7029 (partial_die_hash, partial_die_eq): New functions.
7030 * Makefile.in (hashtab_h): Define.
7031 (dwarf2read.o): Update dependencies.
7032 (observer_inc, observer_h): Move to the correct section.
7033
7034 2004-04-15 Joel Brobecker <brobecker@gnat.com>
7035
7036 * dwarf2read.c (dwarf2_attribute_true_p): New function.
7037 (die_is_declaration): Use the function above. Add comment.
7038
7039 2004-04-15 Joel Brobecker <brobecker@gnat.com>
7040
7041 * dwarf2read.c (read_structure_scope): Identify stub types
7042 using die_is_declaration() only.
7043
7044 2004-04-15 Roland McGrath <roland@redhat.com>
7045
7046 * symfile.c (symbol_file_add_with_addrs_or_offsets): Take ABFD as
7047 argument instead of NAME.
7048 (symbol_file_add, reread_separate_symbols): Call symfile_bfd_open
7049 in call to symbol_file_add_with_addrs_or_offsets.
7050 (build_addr_info): New function, helper for ...
7051 (symbol_file_add_from_memory): New function.
7052 (add_symbol_file_from_memory_command): New function using that.
7053 (_initialize_symfile): Register it for add-symbol-file-from-memory.
7054 (pre_add_symbol_hook): Add const to argument type.
7055 * symfile.h (symbol_file_add_from_memory): Declare it.
7056
7057 2004-04-15 Mark Kettenis <kettenis@gnu.org>
7058
7059 * NEWS (New native configurations): Mention OpenBSD/vax.
7060 * configure.host: Add vax-*-openbsd*.
7061 * config/vax/obsd.mh: New file.
7062 * config/vax/nm-obsd.h: New file.
7063
7064 * vax-tdep.c: Include "regset.h".
7065 (vax_supply_gregset): New function.
7066 (vax_gregset): New variable.
7067 (vax_regset_from_core_section): New function.
7068 (vax_gdbarch_init): Set regset_from_core_section.
7069 * Makefile.in (vax-tdep.o): Update dependencies.
7070
7071 2004-04-15 Andrew Cagney <cagney@redhat.com>
7072
7073 * observer.c (normal_stop_subject, observer_notify_normal_stop)
7074 (observer_normal_stop_notification_stub)
7075 (observer_attach_normal_stop, observer_detach_normal_stop):
7076 Delete, replaced by #include "observer.inc".
7077 * infrun.c (normal_stop): Pass "stop_bpstat" to
7078 observer_notify_normal_stop.
7079 * Makefile.in (observer_inc): Define.
7080 (observer.o): Update dependencies.
7081 (observer.h, observer.inc): New rules.
7082 * observer.h: Delete file.
7083 * observer.sh: New file.
7084
7085 2004-04-15 Mark Kettenis <kettenis@gnu.org>
7086
7087 * vax-tdep.c (vax_frame_cache): Fix typo.
7088
7089 2004-04-14 Mark Kettenis <kettenis@gnu.org>
7090
7091 * NEWS (New native configurations): Mention NetBSD/vax.
7092 * configure.host: Add vax-*-netbsdelf* and vax-*-netbsd*.
7093 * config/vax/nbsdelf.mh: New file.
7094 * config/vax/nbsdaout.mh: New file.
7095 * config/vax/nm-nbsd.h: New file.
7096 * config/vax/nm-nbsdaout.h: New file.
7097
7098 * vaxnbsd-tdep.c: New file.
7099 * Makefile.in (vaxnbsd-tdep.o): New dependency.
7100 * configure.tgt: Add vax-*-netbsd* and vax-*-openbsd*.
7101 * config/vax/nbsd.mt: New file.
7102 * config/vax/tm-nbsd.h: New file.
7103
7104 * Makefile.in (vaxbsd-nat.o): New dependency.
7105
7106 * vax-tdep.h (vax_regnum): Add VAX_R0_REGNUM and VAX_R1_REGNUM.
7107 * vax-tdep.c (vax_store_arguments): Remove struct_return and
7108 struct_addr arguments. Don't push return value address.
7109 (vax_push_dummy_call): Don't pass STRUCT_RETURN and STRUCT_ADDR as
7110 arguments to vax_store_arguments. Store return value address in
7111 R1.
7112 (vax_store_struct_return, vax_extract_return_value)
7113 (vax_store_return_value): Remove functions.
7114 (vax_return_value): New function.
7115 (vax_gdbarch_init): Set return value. Don't set
7116 deprecated_store_struct_return, deprecated_extract_struct_return
7117 and deprecated_store_return_value.
7118
7119 2004-04-14 Andreas Schwab <schwab@suse.de>
7120
7121 * ia64-tdep.c (ia64_libunwind_frame_prev_register): Handle null
7122 value buffer.
7123 * libunwind-frame.c (libunwind_frame_prev_register): Likewise.
7124
7125 2004-04-14 Mark Kettenis <kettenis@gnu.org>
7126
7127 * vax-tdep.c (vax_store_arguments, vax_push_dummy_call)
7128 (vax_unwind_dummy_id): New functions.
7129 (vax_push_dummy_frame, vax_pop_frame): Remove functions.
7130 (vax_call_dummy_words, sizeof_vax_call_dummy_words): Remove
7131 variables.
7132 (vax_fix_call_dummy): Remove function.
7133 (vax_gdbarch_init): Set push_dummy_call and unwind_dummy_id.
7134 Don't set deprecated_push_dummy_frame, deprecated_pop_frame,
7135 call_dummy_location, deprecated_call_dummy_words,
7136 deprecated_sizeof_call_dummy_words,
7137 deprecated_call_dummy_breakpoint_offset,
7138 deprecated_use_generic_dummy_frames, deprecated_pc_in_call_dummy,
7139 and deprecated_dummy_write_sp.
7140
7141 2004-04-13 David Carlton <carlton@kealia.com>
7142
7143 * MAINTAINERS: Move myself to "paper trail" section.
7144
7145 2004-04-12 Mark Kettenis <kettenis@gnu.org>
7146
7147 * vax-tdep.c: Include "frame-base.h", "frame-unwind.h" and
7148 "trad-frame.h".
7149 (vax_frame_init_saved_regs): Remove function.
7150 (vax_sigtramp_saved_pc): Remove function.
7151 (vax_frame_saved_pc): Remove function.
7152 (vax_frame_args_address): Remove function.
7153 (vax_frame_num_args): Rewrite.
7154 (vax_frame_chain): Remove function.
7155 (vax_push_dummy_frame): Replace DEPRECATED_FP_REGNUM with
7156 VAX_FP_REGNUM.
7157 (vax_pop_frame): Likewise.
7158 (vax_saved_pc_after_call): Remove function.
7159 (struct vax_frame_cache): New structure.
7160 (vax_frame_cache): New function.
7161 (vax_frame_this_id): New function.
7162 (vax_frame_prev_register): New function.
7163 (vax_frame_unwind): New variable.
7164 (vax_frame_sniffer): New function.
7165 (vax_frame_base_address): New function.
7166 (vax_frame_args_address): New function.
7167 (vax_frame_base): New variable.
7168 (vax_unwind_pc): New function.
7169 (vax_gdbarch_init): Don't set deprecated_init_frame_pc,
7170 deprecated_fp_regnum, deprecated_saved_pc_after_call,
7171 deprecated_frame_chain, deprecated_frame_saved_pc,
7172 deprecated_frame_args_address and
7173 deprecated_frame_init_saved_regs.
7174 * Makefile.in (vax-tdep.o): Update dependencies.
7175
7176 * vaxbsd-nat.c: New file.
7177
7178 * vax-tdep.h: Update copyright year. Adjust comments.
7179 (VAX_REGISTER_SIZE, VAX_REGISTER_BYTES, VAX_MAX_REGISTER_RAW_SIZE,
7180 VAX_MAX_REGISTER_VIRTUAL_SIZE): Remove macros.
7181 (vax_regnum): New enum. Replacing...
7182 (VAX_AP_REGNUM, VAX_FP_REGNUM, VAX_SP_REGNUM, VAX_PC_REGNUM)
7183 (VAX_PS_REGNUM): ... these removed macros.
7184 * vax-tdep.c (vax_register_name): Remove prototype.
7185 (vax_register_name): Reorganize somewhat. Use ARRAY_SIZE.
7186 (vax_register_byte, vax_register_raw_size,
7187 vax_register_virtual_size, vax_register_virtual_type): Remove
7188 functions.
7189 (vax_register_type): New function.
7190 (vax_breakpoint_from_pc): Reorganize.
7191 (vax_gdbarch_init): Set register_type. Don't set
7192 deprecated_register_size, deprecated_register_bytes,
7193 deprecated_register_byte, deprecated_register_raw_size,
7194 deprecated_max_register_raw_size,
7195 deprecated_register_virtual_size,
7196 deprecated_max_register_virtual_size and
7197 deprecated_register_virtual_type. Add comment on stack direction.
7198
7199 2004-04-11 Mark Kettenis <kettenis@gnu.org>
7200
7201 * amd64-tdep.h (amd64_regnum): Add AMD64_CS_REGNUM,
7202 AMD64_SS_REGNUM, AMD64_DS_REGNUM, AMD64_ES_REGNUM,
7203 AMD64_FS_REGNUM and AMD64_GS_REGNUM.
7204
7205 2004-04-10 Randolph Chung <tausq@debian.org>
7206
7207 * MAINTAINERS (write after approval): Add myself.
7208
7209 2004-04-07 Randolph Chung <tausq@debian.org>
7210
7211 * hppa-tdep.c (hppa_inner_than): Remove.
7212 (is_pa_2): Remove unused static variable.
7213 (hppa_gdbarch_init): Use core_addr_greaterthan instead of own version.
7214
7215 2004-03-10 Paul N. Hilfinger <Hilfinger@gnat.com>
7216
7217 * language.h (language_defn): Add new la_post_parser field.
7218 * parser-defs.h (null_post_parser): New declaration (default for
7219 la_post_parser).
7220
7221 * parse.c (parse_exp_1): Move code to parse_exp_in_context and
7222 insert call to that function.
7223 (parse_exp_in_context): New function, including code formerly in
7224 parse_exp_1. Calls language-dependent post-parser after
7225 prefixification.
7226 (parse_expression_in_context): New exported function.
7227 (null_post_parser): New definition.
7228 * expression.h (parse_expression_in_context): Add declaration.
7229
7230 * p-lang.c (pascal_language_defn): Add trivial post-parser.
7231 * c-lang.c (c_language_defn): Ditto.
7232 (cplus_language_defn): Ditto.
7233 (asm_language_defn): Ditto.
7234 (minimal_language_defn): Ditto.
7235 * f-lang.c (f_language_defn): Ditto.
7236 * jv-lang.c (java_language_defn): Ditto.
7237 * language.c (unknown_language_defn): Ditto.
7238 (auto_language_defn): Ditto.
7239 (local_language_defn): Ditto.
7240 * m2-lang.c (m2_language_defn): Ditto.
7241 * scm-lang.c (scm_language_defn): Ditto.
7242 * obj-lang.c (objc_language_defn): Ditto.
7243
7244 2004-04-10 Mark Kettenis <kettenis@gnu.org>
7245
7246 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Remove function.
7247 (amd64nbsd_mcontext_addr): New function.
7248 (amd64nbsd_init_abi): Initialize TDEP->sigcontext_addr as
7249 amd64nbsd_mcontext_addr. Directly initialize TDEP->sc_reg_offset
7250 with amd64nbsd_r_reg_offset, instead of building it on the fly.
7251
7252 * corelow.c (core_xfer_partial): Fix coding standards violation.
7253 Add support for TARGET_OBJECT_WCOOKIE.
7254
7255 * sparc-linux-tdep.c (sparc32_linux_init_abi): Don't set
7256 deprecated_pc_in_sigtramp.
7257 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Likewise.
7258 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Likewise.
7259 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Likewise.
7260 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Likewise.
7261 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Likewise.
7262 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Likewise.
7263 * sparcobsd-tdep.c (sparc32obsd_init_abi): Likewise.
7264
7265 * amd64-linux-tdep.c, amd64nbsd-tdep.c, amd64obsd-tdep.c,
7266 i386-linux-tdep.c, i386-tdep.c, i386nbsd-tdep.c, i386obsd-tdep.c:
7267 Fix typo.
7268
7269 * amd64-tdep.c (amd64_supply_fxsave): Only fiddle with
7270 I387_FISEG_REGNUM and I387_FOSEG_REGNUM in 64-bit mode.
7271 (amd64_collect_fxsave): Likewise.
7272
7273 * i386-sol2-tdep.c: Include "gdb_string.h".
7274 (i386_sol2_sigtramp_p): Recognize signal trampoline based on its
7275 name.
7276 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
7277
7278 2004-04-10 Mark Kettenis <kettenis@gnu.org>
7279
7280 * i386-sol2-tdep.c: Include "solib-svr4.h".
7281 (i386_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
7282 * Makefile.in (i386-sol2-tdep.o): Update dependencies.
7283 * config/i386/tm-i386sol2.h: Include :solib.h".
7284 * config/i386/i386sol2.mh (NATDEPFILES): Remove solib.o,
7285 solib-svr4.o and solib-legacy.o.
7286 * config/i386/i386sol2.mt (TDEPFILES): Add solib.o and
7287 solib-svr4.o.
7288
7289 2004-04-09 Mark Kettenis <kettenis@gnu.org>
7290
7291 * amd64-linux-nat.c (fetch_inferior_registers): Correctly check
7292 whether a register is supplied by PTRACE_GETFPREGS.
7293 (store_inferior_registers): Likewise.
7294 * amd64bsd-nat.c (fetch_inferior_registers): Correctly check
7295 whether a register is supplied by PT_GETFPREGS.
7296 (store_inferior_registers): Likewise.
7297
7298 * config/i386/linux.mt (TDEPFILES): Remove solib-legacy.o.
7299 * config/i386/linux64.mt (TDEPFILES): Likewise.
7300
7301 * i386-linux-nat.c: Update copyrigth year. Tweak comment.
7302
7303 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Rewrite to use new
7304 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
7305 the program counter is in the range specified by `struct
7306 gdbarch_tdep'.
7307 * amd64-linux-tdep.c: Include "symtab.h".
7308 (amd64_linux_pc_in_sigtramp): Remove function.
7309 (amd64_linux_sigtramp_p): New function.
7310 (amd64_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
7311 deprecated_pc_in_sigtramp.
7312 * amd64nbsd-tdep.c: Include "symtab.h".
7313 (amd64nbsd_sigtramp_p): New function.
7314 (amd64nbsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
7315 deprecated_pc_in_sigtramp.
7316 * amd64obsd-tdep.c: Include "symtab.h" and "objfiles.h". Add a
7317 few comments.
7318 (amd64obsd_pc_in_sigtramp): Remove function.
7319 (amd64obsd_sigtramp_p): New function.
7320 (amd64obsd_init_abi): Initialize TDEP->sigtramp_p. Don't set
7321 deprecated_pc_in_sigtramp.
7322 * i386-tdep.h (struct gdbarch_tdep): Add sigtramp_p member.
7323 (i386bsd_pc_ins_sigtramp): Remove prototype.
7324 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove prototypes.
7325 * i386-tdep.c (i386_sigtramp_frame_sniffer): Rewrite to use new
7326 sigtramp_p member of `struct gdbarch_tdep'. Also check whether
7327 the program counter is in the range specified by `struct
7328 gdbarch_tdep'.
7329 (i386_pc_in_sigtramp, i386_svr4_pc_in_sigtramp): Remove functions.
7330 (i386_sigtramp_p, i386_svr4_sigtramp_p): New functions.
7331 (i386_go32_pc_in_sigtramp): Remove function.
7332 (i386_svr4_init_abi): Don't set deprecated_pc_in_sigtramp.
7333 Initialize TDEP->sigtramp_p.
7334 (i386_go32_init_abi): Initialize TDEP->sigtramp_p to NULL.
7335 (i386_gdbarch_init): Initialize TDEP->sigtramp_p. Don't set
7336 deprecated_pc_in_sigtramp.
7337 * i386-linux-tdep.c: Adjust comments.
7338 (i386_linux_pc_in_sigtramp): Remove function.
7339 (i386_linux_sigtramp_p): New function.
7340 (i386_linux_init_abi): Initialize TDEP->sigtramp_p. Don't set
7341 deprecated_pc_in_sigtramp.
7342 * i386-nto-tdep.c: Update copyright year.
7343 (i386nto_pc_in_sigtramp): Remove function.
7344 (i386nto_sigtramp_p): New function.
7345 (i386nto_sigcontext_addr): Use I386_ESP_REGNUM instead of
7346 SP_REGNUM.
7347 (i386nto_init_abi): Initialize TDEP->sigtramp_p. Don't set
7348 deprecated_pc_in_sigtramp.
7349 * i386-sol2-tdep.c: Update copyright year.
7350 (i386_sol2_pc_in_sigtramp): Remove function.
7351 (i386_sol2_sigtramp_p): New function.
7352 (i386_sol2_init_abi): Initialize TDEP->sigtramp_p. Don't set
7353 deprecated_pc_in_sigtramp.
7354 * i386bsd-tdep.c (i386bsd_pc_in_sigtramp): Remove function.
7355 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Remove functions.
7356 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
7357 deprecated_sigtramp_start and deprecated_sigtramp_end.
7358 * i386nbsd-tdep.c: Include "frame.h" and "symtab.h".
7359 (i386nbsd_pc_in_sigtramp): Remove function.
7360 (i386nbsd_sigtramp_p): New function.
7361 (i386nbsd_init_abi): Don't set deprecated_pc_in_sigtramp,
7362 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
7363 TDEP->sigtramp_start, TDEP->sigtramp_end and TDEP->sigtramp_p.
7364 * i386obsd-tdep.c: Include "frame.h", "symtab.h" and "objfiles.h".
7365 (i386obsd_pc_in_sigtramp): Remove function.
7366 (i386obsd_sigtramp_p): New function.
7367 (i386obsd_sigtramp_start, i386obsd_sigtramp_end): Remove
7368 functions.
7369 (i386bsd_init_abi): Don't set deprecated_pc_in_sigtramp,
7370 deprecated_sigtramp_start, deprecated_sigtramp_end. Initialize
7371 TDEP->sigtramp_p.
7372 * Makefile.in (amd64-linux-tdep.o, amd64nbsd-tdep.o,
7373 amd64obsd-tdep.o, i386nbsd-tdep.o, i386obsd-tdep.o): Update
7374 dependencies.
7375
7376 * config/i386/i386aout.mt: Remove file.
7377
7378 * configure.tgt: Remove i[34567]86-*-go32*,
7379 i[34567]86-*-msdosdjgpp*, i[34567]86-*-sco*, i[34567]86-*-sysv*
7380 and i[34567]86-*-isc*. Set gdb_target to i386 for
7381 i[34567]86-*-netware* and i[34567]86-*-*.
7382 * config/i386/i386.mt: New file.
7383 * config/i386/embed.mt: Remove file.
7384 * config/i386/go32.mt: Remove file.
7385 * config/i386/i386nw.mt: Remove file.
7386 * config/i386/i386v.mt: Remove file.
7387 * config/i386/tm-go32.h: Remove file.
7388
7389 * tui/tui-hooks.c: Include "readline/readline.h" after
7390 "gdb_curses.h" instead of before.
7391 * tui/tui-io.c: Likewise.
7392
7393 * tui/tui.c: Fix typo in comment.
7394
7395 * sparc64-tdep.c (sparc_address_from_register): Remove function.
7396
7397 2004-04-08 Andrew Cagney <cagney@redhat.com>
7398
7399 * breakpoint.h (deprecated_exception_catchpoints_are_fragile)
7400 (deprecated_exception_support_initialized): Declare.
7401 * hppa-hpux-tdep.c (initialize_hp_cxx_exception_support)
7402 (initialize_hp_cxx_exception_support)
7403 (child_enable_exception_callback): Update.
7404 * breakpoint.c (deprecated_exception_catchpoints_are_fragile)
7405 (deprecated_exception_support_initialized): Rename
7406 deprecated_exception_catchpoints_are_fragile and
7407 deprecated_exception_support_initialized.
7408 (breakpoint_init_inferior, breakpoint_init_inferior): Update.
7409
7410 * symtab.c (deprecated_hp_som_som_object_present): Rename
7411 hp_som_som_object_present.
7412 * symtab.h (deprecated_hp_som_som_object_present): Declare.
7413 * symfile.c (hp_som_som_object_present, RESET_HP_UX_GLOBALS):
7414 Update. Delete extern declaration.
7415 * valops.c (hp_som_som_object_present): Ditto.
7416 * parse.c (deprecated_hp_som_som_object_present)
7417 (parse_nested_classes_for_hpacc): Ditto.
7418 * hpread.c (hp_som_som_object_present, hpread_expand_symtab): Ditto.
7419 * hppa-hpux-tdep.c (hp_som_som_object_present)
7420 (initialize_hp_cxx_exception_support): Ditto.
7421 * eval.c (hp_som_som_object_present, evaluate_subexp_standard): Ditto.
7422 * cp-valprint.c (hp_som_som_object_present)
7423 (cp_print_class_method): Ditto.
7424 * c-typeprint.c (hp_som_som_object_present):
7425 (c_type_print_base): Ditto.
7426 * c-exp.y (hp_som_som_object_present): Ditto.
7427
7428 2004-04-08 Andrew Cagney <cagney@redhat.com>
7429
7430 * frame-unwind.c (struct frame_unwind_table, frame_unwind_init)
7431 (frame_unwind_prepend_unwinder, frame_unwind_append_sniffer)
7432 (frame_unwind_find_by_frame): Re-implement the unwind code so
7433 that it can both prepend and append sniffers. Replace
7434 frame_unwind_register_unwinder with frame_unwind_prepend_unwinder.
7435 * tramp-frame.c (tramp_frame_append): Use
7436 frame_unwind_prepend_unwinder.
7437 * frame-unwind.h (frame_unwind_prepend_unwinder): Replace
7438 frame_unwind_register_unwinder.
7439 * tramp-frame.h (tramp_frame_prepend_unwinder): Rename
7440 tramp_frame_append.
7441 * tramp-frame.c (tramp_frame_prepend_unwinder): Update.
7442 * mips-linux-tdep.c (mips_linux_init_abi, mips_linux_init_abi)
7443 (mips_linux_init_abi): Update.
7444
7445 2004-04-08 Kevin Buettner <kevinb@redhat.com>
7446
7447 * ppc-linux-tdep.c (ELF_NREG, ELF_NFPREG, ELF_NVRREG)
7448 (ELF_FPREGSET_SIZE): Delete constants formerly used in core
7449 file support.
7450
7451 2004-04-07 Kevin Buettner <kevinb@redhat.com>
7452
7453 * ia64-tdep.c (elf.h): Don't include.
7454 (elf/ia64.h) [HAVE_LIBUNWIND_IA64_H]: Include.
7455
7456 2004-04-07 Jason Molenda (jmolenda@apple.com)
7457
7458 * frame.h: Typeo corrections in comments.
7459
7460 2004-04-07 Jim Blandy <jimb@redhat.com>
7461
7462 * i386-tdep.c (i386_stab_reg_to_regnum): Correct numbering for
7463 %esp and %ebp
7464
7465 2004-04-07 Mark Kettenis <kettenis@gnu.org>
7466
7467 * config/sparc/linux.mt (TDEPFILES): Remove solib-legacy.o.
7468 * config/sparc/linux64.mt (TDEPFILES): Likewise.
7469 * config/sparc/sol2.mt (TDEPFILES): Add solib.o and solib-svr4.o.
7470 * config/sparc/sol2.mh (NATDEPFILES): Remove solib.o, solib-svr4.o
7471 and solib-legacy.o.
7472 * config/sparc/sol2-64.mt (TDEPFILES): Add solib.o and
7473 solib-svr4.o.
7474 * config/sparc/tm-sol2.h: Update copyright year. Include
7475 "solib.h".
7476
7477 * sparc-sol2-tdep.c: Update copyright year. Include
7478 "solib-svr4.h".
7479 (sparc32_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
7480 * sparc64-sol2-tdep.c: Include "solib-svr4.h".
7481 (sparc64_sol2_init_abi): Set solib_svr4_fetch_link_map_offsets.
7482 * Makefile.in (sparc-sol2-tdep.o, sparc64-sol2-tdep.o): Update
7483 dependencies.
7484
7485 2004-04-06 Andrew Cagney <cagney@redhat.com>
7486
7487 * infttrace.c: Include "infttrace.h".
7488 * infttrace.h: Include "target.h".
7489 * Makefile.in (infttrace_h): Update.
7490 (infttrace.o): Update.
7491
7492 2004-04-06 Andrew Cagney <cagney@redhat.com>
7493
7494 * hppah-nat.c (hpux_has_forked, hpux_has_vforked)
7495 (hpux_has_execd, hpux_has_syscall_event): Include "infttrace.h",
7496 move extern declarations from here ...
7497 * infttrace.h: ... to here.
7498 * Makefile.in (hppah-nat.o): Update dependencies.
7499
7500 * hppa-tdep.c (hppa_breakpoint_from_pc): Make static.
7501 (hppa_gdbarch_init): Set gdbarch_breakpoint_from_pc
7502 * config/pa/tm-hppa.h (BREAKPOINT_FROM_PC, BREAKPOINT32):
7503 (hppa_breakpoint_from_pc): Delete.
7504
7505 * MAINTAINERS: Mark hppa-elf as buildable with -Werror.
7506
7507 2004-04-05 Andrew Cagney <cagney@redhat.com>
7508
7509 * hppa-tdep.c: Do not include <sys/types.h>, <sys/param.h>,
7510 <signal.h>, <sys/ptrace.h>, #include "a.out.encap.h",
7511 <sys/file.h>.
7512
7513 2004-04-06 Randolph Chung <tausq@debian.org>
7514
7515 Committed by Andrew Cagney (mechanical change).
7516 * hppa-tdep.c: (args_for_find_stub, hp_som_som_object_present,
7517 exception_catchpoints_are_fragile, find_stub_with_shl_get,
7518 cover_find_stub_with_shl_get, initialize_hp_cxx_exception_support,
7519 child_enable_exception_callback, current_ex_event,
7520 null_symtab_and_line, child_get_current_exception_event,
7521 HP_ACC_EH_notify_hook, HP_ACC_EH_set_hook_value,
7522 HP_ACC_EH_notify_callback, HP_ACC_EH_break, HP_ACC_EH_catch_throw,
7523 HP_ACC_EH_catch_catch, __eh_notification, hp_cxx_exception_support,
7524 hp_cxx_exception_support_initialized, eh_notify_hook_addr,
7525 eh_notify_callback_addr, eh_break_addr, eh_catch_catch_addr,
7526 eh_catch_throw_addr, break_callback_sal, setup_d_pid_in_inferior):
7527 Move hpux-specific definitions ...
7528 * hppa-hpux-tdep.c: ... to here.
7529
7530 2004-04-05 Andrew Cagney <cagney@redhat.com>
7531
7532 * hppa-tdep.c (hppa_frame_cache): Pass the frame's func to
7533 skip_prologue_using_sal.
7534
7535 2004-04-05 Andrew Cagney <cagney@redhat.com>
7536
7537 * config/i386/tm-i386.h: Delete file.
7538 * config/i386/tm-vxworks.h: Update copyright, do not include
7539 "tm-i386.h".
7540 * config/i386/tm-nto.h, config/i386/tm-linux.h: Ditto.
7541 * config/i386/tm-i386sol2.h, config/i386/tm-i386lynx.h: Ditto.
7542 * config/i386/tm-go32.h, config/i386/tm-cygwin.h: Ditto.
7543 * config/i386/ncr3000.mt (TM_FILE): Delete.
7544 * config/i386/interix.mt (TM_FILE): Delete.
7545 * config/i386/i386v.mt (TM_FILE): Delete.
7546 * config/i386/i386nw.mt (TM_FILE): Delete.
7547 * config/i386/i386gnu.mt (TM_FILE): Delete.
7548 * config/i386/i386aout.mt (TM_FILE): Delete.
7549 * config/i386/embed.mt (TM_FILE): Delete.
7550
7551 2004-04-05 Kevin Buettner <kevinb@redhat.com>
7552
7553 * frv-tdep.h (fsr0_regnum, acc0_regnum, acc7_regnum, accg0123_regnum)
7554 (accg4567_regnum, msr0_regnum, msr1_regnum, gner0_regnum)
7555 (gner1_regnum, fner0_regnum, fner1_regnum, accg0_regnum)
7556 (accg7_regnum): New constants.
7557 (last_spr_regnum, last_pseudo_regnum): Update.
7558 * frv-tdep.c (new_variant): Initialize names for fsr0, acc0-acc7,
7559 accg0-accg7, msr0, msr1, gner0, gner1, fner0, and fner1.
7560 (frv_pseudo_register_read, frv_pseudo_register_write): Add support
7561 for accg registers.
7562 (frv_register_sim_regno): Update spr_map[].
7563
7564 2004-04-04 Andrew Cagney <cagney@redhat.com>
7565
7566 * config/mips/xm-riscos.h: Delete.
7567 * config/mips/xm-mipsv4.h, config/mips/xm-mips.h: Delete.
7568 * config/mips/tm-mipsv4.h, config/mips/riscos.mh: Delete.
7569 * config/mips/nm-riscos.h, config/mips/nm-news-mips.h: Delete.
7570 * config/mips/nm-mips.h, config/mips/news-mips.mh: Delete.
7571 * config/mips/news-mips.mh, config/m68k/tm-m68kv4.h: Delete.
7572 * config/mips/decstation.mh, config/mips/littlemips.mh: Delete.
7573 * config/mips/mipsv4.mt, config/m68k/tm-sun3.h: Delete.
7574 * config/m68k/xm-sun3os4.h, config/m68k/xm-sun3.h: Delete.
7575 * config/m68k/xm-sun2.h, config/m68k/xm-m68kv4.h: Delete.
7576 * config/m68k/xm-dpx2.h, config/m68k/xm-delta68.h: Delete.
7577 * config/m68k/xm-3b1.h, config/m68k/tm-sun3os4.h: Delete.
7578 * config/m68k/tm-m68klynx.h, config/m68k/tm-dpx2.h: Delete.
7579 * config/m68k/tm-delta68.h, config/m68k/tm-3b1.h: Delete.
7580 * config/m68k/sun3os4.mt, config/m68k/nm-sysv4.h: Delete.
7581 * config/m68k/nm-sun3.h, config/m68k/sun3os4.mh: Delete.
7582 * config/m68k/sun2os3.mh, config/m68k/nm-sun2.h: Delete.
7583 * config/m68k/nm-m68klynx.h, config/m68k/sun3os3.mt: Delete.
7584 * config/m68k/nm-dpx2.h, config/m68k/sun2os3.mt: Delete.
7585 * config/m68k/dpx2.mh, config/m68k/sun3os3.mh: Delete.
7586 * config/m68k/sun2os4.mh, config/m68k/nm-delta68.h: Delete.
7587 * config/m68k/m68kv4.mt, config/m68k/m68klynx.mt: Delete.
7588 * config/m68k/3b1.mt, config/m68k/m68klynx.mh: Delete.
7589 * config/m68k/m68kv4.mh, config/m68k/sun2os4.mt: Delete.
7590 * config/m68k/tm-sun2os4.h, config/m68k/3b1.mh: Delete.
7591 * config/m68k/dpx2.mt, config/m68k/delta68.mt: Delete.
7592 * config/m68k/tm-sun2.h, config/m68k/delta68.mh: Delete.
7593
7594 * configure.tgt: Remove m68000-*-sunos3*, m68000-*-sunos4*,
7595 m68*-bull-sysv*, m68*-att-*, m68*-motorola-*, m68*-*-lynxos*,
7596 m68*-*-sunos3*, m68*-*-sunos4*, m68*-*-sysv4*, mips*-*-sysv4*.
7597 * configure.host: Remove m680[01]0-sun-sunos3*,
7598 m680[01]0-sun-sunos4*, m68*-att-*, m68*-bull*-sysv*,
7599 m68*-*-lynxos*, m68*-*-sysv4*, m68*-motorola-*, m68*-sun-sunos3*,
7600 m68*-sun-sunos4*, m68*-sun-*, mips-dec-*, mips-little-*,
7601 mips-sony-*, mips-*-mach3*, mips-*-sysv4*, mips-*-sysv*,
7602 mips-*-riscos*.
7603 * NEWS: Mention removed systems.
7604
7605 2004-04-04 Andrew Cagney <cagney@redhat.com>
7606
7607 GDB 6.1 release created from 6.1 branch.
7608
7609 2004-04-04 Andrew Cagney <cagney@redhat.com>
7610
7611 * gnu-nat.c (gnu_wait): Use memcpy instead of bcopy.
7612 * remote-vxmips.c (vx_read_register, vx_write_register): Ditto.
7613 * remote-vx68.c (vx_read_register, vx_write_register): Ditto.
7614
7615 * config/vax/xm-vax.h (FAULT_CODE_ORIGIN, INIT_STACK): Delete.
7616 * config/alpha/xm-alphaosf.h (NO_SIGINTERRUPT): Delete.
7617 * config/alpha/xm-alphalinux.h (NO_SIGINTERRUPT): Delete.
7618
7619 2004-04-03 Jim Blandy <jimb@redhat.com>
7620
7621 * MAINTAINERS: Chris Faylor has changed employers; add him to
7622 "paper trail" section, and update his E-mail address.
7623
7624 2004-04-03 Andrew Cagney <cagney@redhat.com>
7625
7626 * frame-unwind.c (frame_unwind_find_by_frame): Delete check for
7627 generic dummy frames.
7628 * dummy-frame.c: Update copyright.
7629 (dummy_frame_sniffer): Delete check for generic dummy frames.
7630
7631 * config/pa/tm-hppa.h (REG_PARM_STACK_SPACE): Delete.
7632 * config/pa/tm-hppa64.h (PA20W_CALLING_CONVENTIONS)
7633 (REG_PARM_STACK_SPACE): Delete.
7634 * hppa-tdep.c (hppa64_push_dummy_call, hppa32_push_dummy_call):
7635 Inline reference to REG_PARM_STACK_SPACE.
7636
7637 * config/pa/tm-hppah.h (FRAME_SAVED_PC_IN_SIGTRAMP)
7638 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
7639 (hppa32_hpux_frame_find_saved_regs_in_sigtramp)
7640 (FRAME_BASE_BEFORE_SIGTRAMP)
7641 (hppa32_hpux_frame_base_before_sigtramp)
7642 (hppa32_hpux_frame_saved_pc_in_sigtramp): Delete.
7643 * config/pa/tm-hppa64.h (hppa64_hpux_frame_saved_pc_in_sigtramp)
7644 (hppa64_hpux_frame_find_saved_regs_in_sigtramp)
7645 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP)
7646 (FRAME_BASE_BEFORE_SIGTRAMP)
7647 (hppa64_hpux_frame_base_before_sigtramp)
7648 (FRAME_SAVED_PC_IN_SIGTRAMP): Delete.
7649
7650 2004-04-03 Andrew Cagney <cagney@redhat.com>
7651
7652 * PROBLEMS: Mention that GDB doesn't build on HP/UX 11.00.
7653
7654 2004-04-02 Andrew Cagney <cagney@redhat.com>
7655
7656 * sh64-tdep.c (sh64_init_extra_frame_info): Replace
7657 DEPRECATED_CALL_DUMMY_LENGTH with 0, simplify.
7658 * dummy-frame.h: Delete out-of-date comments.
7659 * gdbarch.sh (DEPRECATED_CALL_DUMMY_LENGTH): Delete.
7660 * gdbarch.h, gdbarch.c: Re-generate.
7661
7662 2004-04-02 Joel Brobecker <brobecker@gnat.com>
7663
7664 Committed by Andrew Cagney <cagney@redhat.com>.
7665 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Do not take
7666 into account an instruction saving a register if we have already
7667 seen an earlier instruction saving that same register.
7668
7669 2004-04-02 Andrew Cagney <cagney@redhat.com>
7670
7671 * gdbarch.sh (DEPRECATED_INIT_FRAME_PC_FIRST): Delete.
7672 * gdbarch.h, gdbarch.c: Re-generate.
7673 * frame.c (legacy_get_prev_frame): Delete references to
7674 DEPRECATED_INIT_FRAME_PC_FIRST.
7675
7676 * infrun.c (pc_in_sigtramp): Delete function.
7677 (check_sigtramp2): Inline call to pc_in_sigtramp, use
7678 get_frame_type.
7679
7680 2004-04-02 Andrew Cagney <cagney@redhat.com>
7681
7682 * infrun.c (handle_step_into_function): Delete code conditional on
7683 legacy_frame_p.
7684 (handle_inferior_event, step_over_function): Ditto.
7685
7686 2004-04-02 Andrew Cagney <cagney@redhat.com>
7687
7688 * frame.c (get_prev_frame_1): Exclude signal trampolines from the
7689 "previous frame inner to this frame" test.
7690
7691 2004-04-02 Andrew Cagney <cagney@redhat.com>
7692
7693 * frame.c (safe_frame_unwind_memory): New function.
7694 * frame.h (safe_frame_unwind_memory): Declare. Update description
7695 of /safe_/ methods.
7696 * tramp-frame.c (tramp_frame_start): Re-order parmeters, add
7697 "next_frame". Use safe_frame_unwind_memory.
7698 (tramp_frame_sniffer): Update call to tramp_frame_start.
7699
7700 2004-04-01 Daniel Jacobowitz <drow@mvista.com>
7701
7702 * dwarf2read.c (dwarf2_objfile_data_key): New.
7703 (struct dwarf2_per_objfile, dwarf2_per_objfile): New.
7704 (dwarf_info_size, dwarf_abbrev_size, dwarf_line_size)
7705 (dwarf_pubnames_size, dwarf_aranges_size, dwarf_loc_size)
7706 (dwarf_macinfo_size, dwarf_str_size, dwarf_ranges_size)
7707 (dwarf_frame_size, dwarf_eh_frame_size, dwarf_info_buffer)
7708 (dwarf_abbrev_buffer, dwarf_line_buffer, dwarf_str_buffer)
7709 (dwarf_macinfo_buffer, dwarf_ranges_buffer, dwarf_loc_buffer):
7710 Remove variables.
7711 (struct dwarf2_pinfo): Remove per-objfile members. Update comments.
7712 (DWARF_ABBREV_SIZE, DWARF_LINE_SIZE)
7713 (DWARF_LOC_SIZE, DWARF_MACINFO_SIZE, DWARF_STR_SIZE)
7714 (DWARF_RANGES_SIZE, DWARF_INFO_BUFFER)
7715 (DWARF_ABBREV_BUFFER, DWARF_LINE_BUFFER, DWARF_STR_BUFFER)
7716 (DWARF_MACINFO_BUFFER, DWARF_RANGES_BUFFER, DWARF_LOC_BUFFER):
7717 Remove macros.
7718 (dwarf2_has_info): Take an objfile argument. Allocate per-objfile
7719 data.
7720 (dwarf2_locate_sections, dwarf2_build_psymtabs)
7721 (dwarf2_build_psymtabs_easy, dwarf2_build_psymtabs_hard)
7722 (skip_one_die, dwarf2_get_pc_bounds, dwarf2_read_abbrevs)
7723 (read_partial_die, read_full_die, read_indirect_string)
7724 (dwarf_decode_line_header, dwarf_decode_macros)
7725 (dwarf2_symbol_mark_computed): Remove use of removed macros.
7726 Update uses of removed variables.
7727 (psymtab_to_symtab_1): Restore per-objfile data pointer. Remove use
7728 of removed macros.
7729 (_initialize_dwarf2_read): New function.
7730 * symfile.h (dwarf2_has_info): Update prototype.
7731 * coffread.c (coff_symfile_read): Update call to dwarf2_has_info.
7732 * elfread.c (elf_symfile_read): Likewise.
7733
7734 2004-04-01 Jim Blandy <jimb@redhat.com>
7735
7736 * rs6000-tdep.c (rs6000_dwarf2_stab_reg_to_regnum): New, unified
7737 function for register numbers on all the rs6000-derived targets.
7738 (rs6000_gdbarch_init): Don't register a separate
7739 gdbarch_dwarf2_reg_to_regnum function for the E500. Use
7740 rs6000_dwarf2_stab_reg_to_regnum for both Dwarf 2 and stabs on all
7741 variants.
7742
7743 * i386-tdep.c: Add FIXME regarding STABS vs. Dwarf 2 register
7744 numbering.
7745
7746 2004-04-01 Paul N. Hilfinger <Hilfinger@gnat.com>
7747
7748 * valarith.c: Update copyright notice.
7749 (value_add): Handle range types.
7750 (value_sub): Ditto.
7751 (value_equal): Ditto.
7752 (value_less): Ditto.
7753 (value_neg): Ditto.
7754 (value_complement): Ditto.
7755 (value_binop): Simplify slightly by using is_integral_type and
7756 eliminiating unnecessary COERCE_ENUMs.
7757
7758 2004-03-31 Andrew Cagney <cagney@redhat.com>
7759
7760 * frame.h (frame_unwind_id): Declare.
7761 * frame.c (frame_unwind_id): New function.
7762 (get_prev_frame_1): New function.
7763 (frame_debug_got_null_frame): New function.
7764 (get_prev_frame): Use frame_debug_got_null_frame. Move unwind
7765 code proper to prev_frame, update description.
7766 * infrun.c (step_over_function): Use frame_unwind_id.
7767
7768 2004-04-31 J. Brobecker <brobecker@gnat.com>
7769
7770 * hppa-tdep.c (hppa32_push_dummy_call): Set the Stack Pointer.
7771 (hppa64_push_dummy_call): Likewise.
7772
7773 2004-03-30 Jim Blandy <jimb@redhat.com>
7774
7775 From Ulrich Weigand:
7776 * utils.c (query): Do not use a va_list variable multiple times.
7777
7778 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
7779
7780 * Makefile.in (linux_nat_h): Update dependencies.
7781 * configure.in: Check for <gnu/libc-version.h>.
7782 * configure: Regenerate.
7783 * config.in: Regenerate.
7784 * linux-nat.h: Include "target.h". Add waitstatus field to
7785 struct lwp_info.
7786 * lin-lwp.c (add_lwp): Initialize waitstatus.kind.
7787 (lin_lwp_attach_lwp): Don't attach to LWPs we have already attached
7788 to.
7789 (lin_lwp_handle_extended): New function. Handle clone events.
7790 (wait_lwp): Use lin_lwp_handle_extended. Update comment about
7791 thread exit events.
7792 (child_wait): Handle clone events.
7793 (lin_lwp_wait: Use lin_lwp_handle_extended and handle clone events.
7794 * linux-nat.c (linux_enable_event_reporting): Turn on
7795 PTRACE_O_TRACECLONE.
7796 (linux_handle_extended_wait): Handle clone events.
7797 * thread-db.c: Include <gnu/libc-version.h>.
7798 (struct private_thread_info): Add dying flag.
7799 (enable_thread_event_reporting): Enable TD_DEATH for glibc 2.2 and
7800 higher.
7801 (attach_thread): Update comments. Handle dying threads.
7802 (detach_thread): Set the dying flag.
7803 (check_event): Always call attach_thread.
7804
7805 2004-03-29 Daniel Jacobowitz <drow@mvista.com>
7806
7807 * mips-tdep.c (mips_pdr_data): New.
7808 (non_heuristic_proc_desc): Use objfile_data and set_objfile_data.
7809 (_initialize_mips_tdep): Initialize mips_pdr_data.
7810
7811 2004-03-29 Corinna Vinschen <vinschen@redhat.com>
7812
7813 * minsyms.c (install_minimal_symbols): Move dropping leading
7814 char from linkage name from here...
7815 (prim_record_minimal_symbol_and_info): ...to here. Simplify
7816 test for "__gnu_compiled*" symbols.
7817
7818 2004-03-28 Jim Blandy <jimb@redhat.com>
7819
7820 * rs6000-tdep.c (skip_prologue): Recognize moves from argument
7821 registers to temp register r0 and byte stores as prologue
7822 instructions.
7823
7824 2004-03-28 Andrew Cagney <cagney@redhat.com>
7825
7826 * PROBLEMS (Stack backtraces): Rewrite. Remove reference to
7827 arm*-*-*.
7828
7829 2004-03-28 Stephane Carrez <stcarrez@nerim.fr>
7830
7831 * tui/tui-regs.c (tui_show_registers): Make sure the TUI is active
7832 and switch the layout to force a display of register window.
7833
7834 2004-02-26 J. Brobecker <brobecker@gnat.com>
7835
7836 * amd64-tdep.c (amd64_classify): make RANGE_TYPE objects be part
7837 of the INTEGER class.
7838
7839 2004-03-26 Jim Blandy <jimb@redhat.com>
7840
7841 * ppc-linux-tdep.c (ppc_linux_init_abi): Long doubles are eight
7842 bytes long on PPC GNU/Linux.
7843
7844 2004-03-26 David Carlton <carlton@kealia.com>
7845
7846 * PROBLEMS: Refer to gdb/1588 instead of gdb/826.
7847
7848 2004-03-25 Andrew Cagney <cagney@redhat.com>
7849
7850 * PROBLEMS: Add general section titles, remove references to
7851 specific releases.
7852
7853 2004-03-25 Daniel Jacobowitz <drow@mvista.com>
7854
7855 * arm-linux-tdep.c (ARM_LINUX_JB_ELEMENT_SIZE): Define to
7856 INT_REGISTER_SIZE.
7857 (arm_linux_push_arguments): Use TARGET_DOUBLE_BIT instead of
7858 FP_REGISTER_VIRTUAL_SIZE.
7859 * arm-tdep.c (arm_make_sigtramp_cache): Use register_size instead
7860 of DEPRECATED_REGISTER_RAW_SIZE.
7861 (arm_register_type): Add gdbarch argument.
7862 (arm_register_raw_size, arm_register_virtual_size): Delete.
7863 (arm_register_byte, arm_extract_return_value)
7864 (arm_store_return_value, arm_get_longjmp_target): Update references
7865 to INT_REGISTER_RAW_SIZE and FP_REGISTER_RAW_SIZE.
7866 (arm_gdbarch_init): Likewise. Don't set
7867 deprecated_register_raw_size, deprecated_register_virtual_size,
7868 deprecated_max_register_raw_size,
7869 deprecated_max_register_virtual_size, or
7870 deprecated_max_register_virtual_type. Do set register_type.
7871 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE)
7872 (ARM_MAX_REGISTER_VIRTUAL_SIZE, INT_REGISTER_VIRTUAL_SIZE)
7873 (FP_REGISTER_VIRTUAL_SIZE): Delete.
7874 (INT_REGISTER_RAW_SIZE): Rename to INT_REGISTER_SIZE.
7875 (FP_REGISTER_RAW_SIZE): Rename to FP_REGISTER_SIZE.
7876 * arm-linux-tdep.c (ARM_NBSD_JB_ELEMENT_SIZE): Define to
7877 INT_REGISTER_SIZE.
7878 * remote-rdp.c (remote_rdp_fetch_register): Use MAX_REGISTER_SIZE.
7879 (remote_rdp_store_register): Likewise.
7880
7881 2004-03-24 Daniel Jacobowitz <drow@mvista.com>
7882
7883 * Makefile.in (mips-linux-tdep.o): Update dependencies.
7884 * mips-tdep.c (mips_gdbarch_init): Move frame predicates
7885 to after osabi initialization.
7886 * mips-linux-tdep.c: Include "trad-frame.h" and "tramp-frame.h".
7887 (mips_linux_o32_sigframe_init, mips_linux_n32n64_sigframe_init): New
7888 functions.
7889 (mips_linux_o32_sigframe, mips_linux_o32_rt_sigframe)
7890 (mips_linux_n32_rt_sigframe, mips_linux_n64_rt_sigframe): New
7891 variables.
7892 (mips_linux_init_abi): Append signal trampoline unwinders.
7893
7894 2004-03-24 Andrew Cagney <cagney@redhat.com>
7895
7896 * tramp-frame.h (TRAMP_SENTINEL_INSN): Define, document.
7897 * tramp-frame.c: Include "gdb_assert.h".
7898 (tramp_frame_start): Use TRAMP_SENTINEL_INSN. Use ULONGEST and
7899 correct sizeof.
7900 (tramp_frame_append): Validate the tramp frame's instructions.
7901 * Makefile.in (tramp-frame.o): Update dependencies.
7902
7903 2004-03-23 Andrew Cagney <cagney@redhat.com>
7904
7905 * trad-frame.h (trad_frame_set_reg_addr): Declare.
7906
7907 2004-03-23 Andrew Cagney <cagney@redhat.com>
7908
7909 * MAINTAINERS (Past Maintainers): Add Mark Salter and Fernando
7910 Nasser as past testsuite/lib/ (and other) maintainers.
7911
7912 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
7913
7914 * infcmd.c (attach_command): Reread symbols if we already have
7915 an exec file.
7916
7917 2004-03-23 Andrew Cagney <cagney@redhat.com>
7918
7919 * rs6000-tdep.c (frame_get_saved_regs): Delete unused function.
7920
7921 2004-03-23 Andrew Cagney <cagney@redhat.com>
7922
7923 * gdbarch.sh (SIGTRAMP_START, SIGTRAMP_END): Deprecate.
7924 * gdbarch.h, gdbarch.c: Re-generate.
7925 * i386obsd-tdep.c (i386obsd_init_abi): Update.
7926 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
7927 * i386bsd-tdep.c (i386bsd_init_abi): Update.
7928 * config/vax/tm-vaxbsd.h (DEPRECATED_SIGTRAMP_END)
7929 (DEPRECATED_SIGTRAMP_START): Update.
7930 * config/m68k/tm-nbsd.h (DEPRECATED_SIGTRAMP_END)
7931 (DEPRECATED_SIGTRAMP_START): Update.
7932 * blockframe.c (find_pc_sect_partial_function): Update.
7933 * arch-utils.c (legacy_pc_in_sigtramp): Update.
7934
7935 2004-03-23 Daniel Jacobowitz <drow@mvista.com>
7936
7937 * remote.c (remote_open_1): Reopen the exec file and reread symbols
7938 if necessary.
7939
7940 2004-03-23 Andrew Cagney <cagney@redhat.com>
7941
7942 * gdbarch.sh (PC_IN_SIGTRAMP): Change to a function with
7943 predicate, deprecate.
7944 * gdbarch.h, gdbarch.c: Re-generate.
7945 * alpha-linux-tdep.c (alpha_linux_init_abi): Update.
7946 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Update.
7947 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Update.
7948 * alphafbsd-tdep.c (alphafbsd_init_abi): Update.
7949 * alphanbsd-tdep.c (alphanbsd_init_abi): Update.
7950 * amd64-linux-tdep.c (amd64_linux_init_abi): Update.
7951 * amd64-tdep.c (amd64_sigtramp_frame_sniffer): Update.
7952 * amd64nbsd-tdep.c (amd64nbsd_init_abi): Update.
7953 * amd64obsd-tdep.c (amd64obsd_init_abi): Update.
7954 * arm-tdep.c (arm_sigtramp_unwind_sniffer): Update.
7955 * blockframe.c (find_pc_partial_function): Update.
7956 * breakpoint.c (bpstat_what): Update.
7957 * frame.c (frame_type_from_pc, legacy_get_prev_frame): Update.
7958 * frv-linux-tdep.c (frv_linux_init_abi): Update.
7959 * frv-tdep.c (frv_sigtramp_frame_sniffer): Update.
7960 * hppa-hpux-tdep.c (hppa_hpux_init_abi): Update.
7961 * i386-interix-tdep.c (i386_interix_init_abi): Update.
7962 * i386-linux-tdep.c (i386_linux_init_abi): Update.
7963 * i386-nto-tdep.c (i386nto_init_abi): Update.
7964 * i386-sol2-tdep.c (i386_sol2_init_abi): Update.
7965 * i386-tdep.c (i386_sigtramp_frame_sniffer)
7966 (i386_svr4_init_abi, i386_go32_init_abi, i386_gdbarch_init): Update.
7967 * i386bsd-tdep.c (i386bsd_init_abi): Update.
7968 * i386nbsd-tdep.c (i386nbsd_init_abi): Update.
7969 * i386obsd-tdep.c (i386obsd_init_abi): Update.
7970 * ia64-tdep.c (ia64_sigtramp_frame_sniffer): Update.
7971 * infrun.c (pc_in_sigtramp): Update.
7972 * m68k-tdep.c (m68k_sigtramp_frame_sniffer): Update.
7973 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
7974 * mips-tdep.c (mips_gdbarch_init): Update.
7975 * mipsnbsd-tdep.c (mipsnbsd_init_abi): Update.
7976 * ppc-linux-tdep.c: Update comment.
7977 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Update.
7978 * shnbsd-tdep.c (shnbsd_init_abi): Update.
7979 * sparc-linux-tdep.c (sparc32_linux_init_abi): Update.
7980 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Update.
7981 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Update.
7982 * sparc64fbsd-tdep.c (sparc64fbsd_init_abi): Update.
7983 * sparc64nbsd-tdep.c (sparc64nbsd_init_abi): Update.
7984 * sparc64obsd-tdep.c (sparc64obsd_init_abi): Update.
7985 * sparcnbsd-tdep.c (sparc32nbsd_init_abi): Update.
7986 * sparcobsd-tdep.c (sparc32obsd_init_abi): Update.
7987
7988 2004-03-23 Andrew Cagney <cagney@redhat.com>
7989
7990 * tramp-frame.h, tramp-frame.h: New files.
7991 * Makefile.in (SFILES, tramp_frame_h, COMMON_OBS, tramp-frame.o):
7992 Update rules to include "tramp-frame.h" and "tramp-frame.c".
7993
7994 * Makefile.in: Update all dependencies.
7995
7996 2004-03-23 Andrew Cagney <cagney@redhat.com>
7997
7998 * Makefile.in (trad_frame_h): Add $(frame_h).
7999 * trad-frame.h: Update copyright. Include "frame.h".
8000 (struct trad_frame_cache, trad_frame_cache_zalloc): Declare.
8001 (trad_frame_set_id, trad_frame_get_id): Declare.
8002 (trad_frame_set_reg_addr, trad_frame_get_register): Declare.
8003 * trad-frame.c: Update copyright.
8004 (struct trad_frame_cache): Define.
8005 (trad_frame_cache_zalloc): New function.
8006 (trad_frame_set_id, trad_frame_get_id): New functions.
8007 (trad_frame_set_reg_addr, trad_frame_get_register): New functions.
8008
8009 2004-03-22 Andrew Cagney <cagney@redhat.com>
8010
8011 * s390-tdep.c (struct s390_stub_unwind_cache): Rename
8012 s390_pltstub_unwind_cache.
8013 (s390_stub_frame_unwind_cache): Rename
8014 s390_pltstub_frame_unwind_cache.
8015 (s390_stub_frame_this_id): Rename s390_pltstub_frame_this_id.
8016 (s390_stub_frame_prev_register): Rename
8017 s390_pltstub_frame_prev_register.
8018 (s390_stub_frame_unwind): Rename s390_pltstub_frame_unwind.
8019 (s390_stub_frame_sniffer): Rename s390_stub_frame_sniffer.
8020
8021 From Ulrich Weigand:
8022 * s390-tdep.c (s390_pltstub_frame_sniffer): Handle invalid function
8023 pointer calls like PLT calls.
8024
8025 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
8026
8027 * mips-tdep.c (non_heuristic_proc_desc): Search using the specified
8028 PC rather than the partial function start address. Use the start
8029 address to sanity check the found PDR.
8030
8031 2004-03-22 Daniel Jacobowitz <drow@mvista.com>
8032
8033 * lin-lwp.c (lin_lwp_wait): Pass the LWP ID to
8034 linux_handle_extended_wait.
8035
8036 2004-03-22 Andrew Cagney <cagney@redhat.com>
8037
8038 * rs6000-tdep.c (frame_initial_stack_address): Delete unused
8039 function.
8040
8041 * frame.h (generic_pop_current_frame): Delete declaration.
8042 (deprecate_pop_dummy_frame): Deprecate
8043 generic_pop_dummy_frame.
8044 * dummy-frame.c (deprecated_pop_dummy_frame): Update.
8045 (generic_pop_current_frame): Delete function.
8046 * mn10300-tdep.c (mn10300_pop_frame): Eliminate call to
8047 generic_pop_current_frame.
8048 * v850-tdep.c (v850_pop_frame): Update.
8049 * mcore-tdep.c (mcore_pop_frame): Update.
8050 * sh64-tdep.c (sh64_pop_frame): Update.
8051 * h8300-tdep.c (h8300_pop_frame): Update.
8052
8053 2004-03-22 Andrew Cagney <cagney@redhat.com>
8054
8055 * frame.h (deprecated_pc_in_call_dummy): Rename
8056 generic_pc_in_call_dummy.
8057 * dummy-frame.h (pc_in_dummy_frame): Delete declaration.
8058 * dummy-frame.c (deprecated_pc_in_call_dummy): Rename
8059 generic_pc_in_call_dummy.
8060 (pc_in_dummy_frame): Make static.
8061 * gdbarch.sh (DEPRECATED_PC_IN_CALL_DUMMY): Update.
8062 * gdbarch.h, gdbarch.c: Re-generate.
8063 * dummy-frame.c (dummy_frame_sniffer): Simplify.
8064 * frame.c (frame_type_from_pc): Call deprecated_pc_in_call_dummy.
8065 (legacy_get_prev_frame): Ditto.
8066 * inferior.h: Delete reference to generic_pc_in_call_dummy in
8067 comment.
8068
8069 2004-03-21 Andrew Cagney <cagney@redhat.com>
8070
8071 * inferior.h (deprecated_pc_in_call_dummy_at_entry_point): Delete
8072 declaration and out-of-date comment.
8073 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
8074 Delete function.
8075 * mn10300-tdep.c (mn10300_gdbarch_init): Do not set
8076 deprecated_pc_in_call_dummy.
8077
8078 * infrun.c (handle_inferior_event): For non legacy frames, use the
8079 frame ID and frame type to identify a signal trampoline. Update
8080 comments.
8081
8082 2004-03-21 Nathan J. Williams <nathanw@wasabisystems.com>
8083
8084 * mipsnbsd-tdep.c: Update copyright. Include "mips-tdep.h".
8085 * Makefile.in (mipsnbsd-tdep.o): Update dependencies.
8086
8087 2004-03-21 Andrew Cagney <cagney@redhat.com>
8088
8089 * frame-unwind.h: Update copyright.
8090 (struct frame_data): Add opaque declaration.
8091 (frame_sniffer_ftype): Declare.
8092 (struct frame_unwind): Add "unwind_data" and "sniffer".
8093 (frame_unwind_register_unwinder): Declare.
8094 (frame_unwind_find_by_frame): Add parameter "this_cache".
8095 * frame.c (get_frame_id, create_new_frame, legacy_get_prev_frame)
8096 (legacy_get_prev_frame, legacy_get_prev_frame)
8097 (get_frame_type): Pass the prologue_cache to
8098 frame_unwind_find_by_frame.
8099 * frame-unwind.c (struct frame_unwind_table_entry): Add field
8100 "unwinder".
8101 (frame_unwind_register_unwinder): New function.
8102 (frame_unwind_find_by_frame): Handle an unwind sniffer.
8103
8104 2004-03-20 Paul Hilfinger <hilfingr@nile.gnat.com>
8105
8106 * bcache.c (print_percentage): Use floating point to avoid
8107 incorrect results when portion*100 overflows.
8108
8109 2004-03-19 Kevin Buettner <kevinb@redhat.com>
8110
8111 * ppc_tdep.h (ppc_linux_frame_saved_pc)
8112 (ppc_linux_init_extra_frame_info)
8113 (ppc_linux_frameless_function_invocation)
8114 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain)
8115 (rs6000_frame_saved_pc, rs6000_init_extra_frame_info)
8116 (rs6000_frameless_function_invocation, rs6000_frame_init_saved_regs)
8117 (rs6000_frame_chain): Delete declarations.
8118 * ppc-linux-tdep.c (ppc_linux_frame_saved_pc)
8119 (ppc_linux_init_extra_frame_info)
8120 (ppc_linux_frameless_function_invocation)
8121 (ppc_linux_frame_init_saved_regs, ppc_linux_frame_chain): Delete.
8122 (ppc_linux_init_abi): Remove registration of above deleted functions.
8123 * rs6000-tdep.c (rs6000_init_extra_frame_info)
8124 (rs6000_frame_init_saved_regs, rs6000_init_frame_pc_first)
8125 (rs6000_frame_args_address, rs6000_saved_pc_after_call)
8126 (rs6000_pop_frame, rs6000_frameless_function_invocation)
8127 (rs6000_frame_saved_pc, rs6000_frame_chain): Delete.
8128 (rs6000_gdbarch_init): Remove registration of above deleted functions.
8129 Use rs6000_unwind_pc(), rs6000_frame_sniffer(),
8130 rs6000_unwind_dummy_id(), and rs6000_frame_base_sniffer() for
8131 frame management for all OSABIs.
8132
8133 2004-03-19 Andrew Cagney <cagney@redhat.com>
8134
8135 Committed by Kevin Buettner <kevinb@redhat.com>.
8136
8137 * ppc-linux-tdep.c: Include "trad-frame.h", and "frame-unwind.h".
8138 Update copyright.
8139 (struct ppc_linux_sigtramp_cache, ppc_linux_sigtramp_cache)
8140 (ppc_linux_sigtramp_this_id, ppc_linux_sigtramp_prev_register)
8141 (ppc_linux_sigtramp_unwind, ppc_linux_sigtramp_sniffer)
8142 (ppc_linux_init_abi): Add both 32- and 64-bit signal trampoline
8143 unwinders. #ifdef legacy frame code.
8144 * rs6000-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
8145 "frame-base.h".
8146 (rs6000_unwind_pc, rs6000_unwind_dummy_id)
8147 (struct rs6000_frame_cache, rs6000_frame_cache)
8148 (rs6000_frame_this_id, rs6000_frame_prev_register)
8149 (rs6000_frame_sniffer, rs6000_frame_unwind)
8150 (rs6000_frame_base_address, rs6000_frame_base_sniffer)
8151 (rs6000_frame_base): Implement a traditional frame unwinder.
8152 (rs6000_gdbarch_init): When unknown, NetBSD, or GNU/Linux use the
8153 frame unwinder.
8154
8155 2004-03-19 Kevin Buettner <kevinb@redhat.com>
8156
8157 * breakpoint.c (adjust_breakpoint_address): Don't adjust
8158 breakpoint address for watchpoints or the catch eventpoints.
8159 Add new paramter ``bptype''. Adjust all callers.
8160
8161 2004-03-19 Andrew Cagney <cagney@redhat.com>
8162
8163 * config/pa/tm-hppa.h (GDB_TARGET_IS_HPPA): Delete unused macro.
8164
8165 * PROBLEMS: Delete note that ARM does not use frame code, problem
8166 fixed.
8167
8168 2004-03-18 Andrew Cagney <cagney@redhat.com>
8169
8170 * stack.c (return_command): Delete code wrapped in #ifdef
8171 DEPRECATED_CALL_DUMMY_HAS_COMPLETED, macro no longer defined.
8172
8173 * rs6000-tdep.c (skip_prologue): Record only the first LR save.
8174
8175 2004-03-18 Andrew Cagney <cagney@redhat.com>
8176
8177 * config/mips/tm-nbsd.h: Replace IN_SIGTRAMP with
8178 DEPRECATED_IN_SIGTRAMP.
8179 * config/powerpc/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8180 * config/mips/tm-linux.h (DEPRECATED_IN_SIGTRAMP) Ditto.
8181 * config/mips/tm-irix6.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8182 * config/mips/tm-irix5.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8183 * config/ia64/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8184 * config/ia64/tm-aix.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8185 * config/arm/tm-linux.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8186 * config/arm/tm-embed.h (DEPRECATED_IN_SIGTRAMP): Ditto.
8187 * arch-utils.c (legacy_pc_in_sigtramp): Ditto.
8188 * arch-utils.h: Remove reference to IN_SIGTRAMP in comment.
8189
8190 2004-03-18 Andrew Cagney <cagney@redhat.com>
8191
8192 * frame-base.c: Update copyright. Include "gdb_obstack.h".
8193 (struct frame_base_table_entry): Define.
8194 (struct frame_base_table): Re-implement as a linked list.
8195 (frame_base_init): Re-implement.
8196 (frame_base_table): Delete function.
8197 (append_predicate): Delete function.
8198 (frame_base_append_sniffer): Update.
8199 (frame_base_set_default): Update.
8200 (frame_base_find_by_frame): Update.
8201 (_initialize_frame_base): Use gdbarch_data_register_pre_init.
8202 * Makefile.in (frame-base.o): Update dependencies.
8203
8204 2004-03-17 Andrew Cagney <cagney@redhat.com>
8205
8206 * frame.c (legacy_get_prev_frame): Pass correct frame to
8207 frame_unwind_find_by_frame.
8208
8209 2004-03-17 David Carlton <carlton@kealia.com>
8210
8211 * NEWS: Mention C++ nested types and namespaces
8212
8213 2004-03-16 Michael Chastain <mec.gnu@mindspring.com>
8214
8215 * PROBLEMS: Add section headers, "Regressions since gdb 6.0"
8216 and "Regressions since gdb 5.3.". Add known regressions since
8217 gdb 6.0.
8218
8219 2004-03-16 David Carlton <carlton@kealia.com>
8220
8221 * dwarf2read.c (process_structure_scope): Process children even
8222 when we're a declaration.
8223
8224 2004-03-16 Andrew Cagney <cagney@redhat.com>
8225
8226 * symtab.h (find_pc_sect_partial_function): Delete declaration.
8227 * blockframe.c (find_pc_partial_function)
8228 (find_pc_sect_partial_function): Merge into a single
8229 find_pc_partial_function.
8230
8231 2004-03-16 Mark Kettenis <kettenis@gnu.org>
8232
8233 * i386bsd-nat.c: s/regno/regnum/g.
8234 (fetch_inferior_registers): Use I386_ST0_REGNUM instead of
8235 FP0_REGNUM.
8236 (store_inferior_registers): Likewise.
8237
8238 2004-03-16 Mark Kettenis <kettenis@gnu.org>
8239
8240 * i386bsd-nat.c (fill_fpregset): Call i387_collect_fsave instead
8241 of i387_fill_fsave.
8242 (store_inferior_registers): Call i387_collect_fsave and
8243 i387_collect_fxsave instead of i387_fill_fsave and
8244 i387_fill_fxsave.
8245
8246 2004-03-15 Andrew Cagney <cagney@redhat.com>
8247
8248 * Makefile.in (frame-unwind.o): Update dependencies.
8249 * frame-unwind.c: Include "gdb_obstack.h".
8250 (frame_unwind_init): Replace "gdbarch" parameter with an "obstack"
8251 parameter.
8252 (append_predicate): Delete function.
8253 (struct frame_unwind_table_entry): New structure.
8254 (struct frame_unwind_table): Replace "sniffer" with "head" and
8255 "tail".
8256 (frame_unwind_append_sniffer): Update.
8257 (frame_unwind_find_by_frame): Update.
8258 (_initialize_frame_unwind): Registe frame_unwind_init using
8259 gdbarch_data_register_pre_init.
8260
8261 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8262
8263 * i386bsd-nat.c: Update copyright year.
8264 (CANNOT_FETCH_REGISTER, CANNOT_STORE_REGISTER): Undefine and then
8265 define unconditionally.
8266
8267 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8268
8269 * i387-tdep.h (i387_collect_fsave): New prototype.
8270 * i387-tdep.c (i387_collect_fsave): New function containing most
8271 of the code from i387_fill_fsave.
8272 (i387_fill_fsave): Call i387_collect_fsave.
8273
8274 2004-03-15 Mark Kettenis <kettenis@gnu.org>
8275
8276 * i386-linux-tdep.c: Update copyright year.
8277 (i386_linux_svr4_fetch_link_map_offsets): Remove function.
8278 (i386_linux_init_abi): Set solib_svr4_fetch_link_maop_offsets to
8279 svr4_ilp32_link_map_offsets instead of
8280 i386_linux_svr4_fetch_link_map_offsets.
8281
8282 2004-03-15 David Carlton <carlton@kealia.com>
8283
8284 Fix for PR c++/1553:
8285 * dwarf2read.c (read_structure_type): Determine type name by
8286 calling determine_class_name.
8287 (determine_class_name): New.
8288 (determine_prefix): Look at TYPE_TAG_NAME and call
8289 determine_class_name when appropriate.
8290 (determine_prefix_aux, class_name): Delete.
8291 (read_namespace): Set die->type.
8292
8293 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8294
8295 * breakpoint.c (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Delete
8296 unused macro definition. The definition in target.h (or perhaps
8297 elsewhere) takes precedence.
8298
8299 2004-03-15 Andrew Cagney <cagney@redhat.com>
8300
8301 * ppc-tdep.h: Update copyright.
8302 (ppc_linux_supply_gregset, ppc_linux_supply_fpregset): Change
8303 function signatures to match "regsets.h".
8304 * ppc-linux-tdep.c: Include "regset.h".
8305 (ELF_GREGSET_SIZE): Delete.
8306 (right_supply_register): New function.
8307 (ppc_linux_supply_fpregset, ppc_linux_supply_gregset): Rewrite
8308 using right_supply_register.
8309 (ppc32_linux_supply_gregset, ppc64_linux_supply_gregset): New
8310 functions.
8311 (ppc64_linux_gregset, ppc32_linux_gregset): Define.
8312 (ppc_linux_init_abi): Register ppc_linux_regset_from_core_section.
8313 (_initialize_ppc_linux_tdep): Do not register
8314 ppc_linux_regset_core_fns.
8315 (ppc_linux_regset_from_core_section): Replace
8316 fetch_core_registers.
8317 (ppc_linux_regset_core_fns): Delete.
8318 * ppc-linux-nat.c: (right_fill_reg): New function.
8319 (supply_gregset): Update call to ppc_linux_supply_gregset.
8320 (fill_gregset): Clear the register set, use right_fill_reg.
8321 (supply_fpregset): Update call to ppc_linux_supply_fpregset.
8322 (fill_fpregset): Use right_fill_reg, correctly compute FP offsets.
8323
8324 * rs6000-tdep.c (rs6000_register_virtual_type): Make registers
8325 unsigned.
8326
8327 2004-03-15 Andrew Cagney <cagney@redhat.com>
8328
8329 * gdbarch.sh (gdbarch_data_pre_init_fytpe)
8330 (gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
8331 (gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
8332 and register_gdbarch_data.
8333 (deprecated_set_gdbarch_data): Rename set_gdbarch_data.
8334 (struct gdbarch_data): Replace "init" by "pre_init" and
8335 "post_init".
8336 * gdbarch.h, gdbarch.c: Re-generate.
8337 * dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
8338 with"obstack", use OBSTACK_ZALLOC.
8339 (dwarf2_frame_ops): Delete.
8340 (dwarf2_frame_set_init_reg): Use gdbarch_data.
8341 (dwarf2_frame_init_reg): Use gdbarch_data.
8342 (_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
8343 * solib-svr4.c (set_solib_svr4_fetch_link_map_offsets)
8344 (_initialize_svr4_solib): Update.
8345 * user-regs.c (_initialize_user_regs): Update.
8346 * reggroups.c (_initialize_reggroup): Update.
8347 * regcache.c (_initialize_regcache): Update.
8348 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
8349 * libunwind-frame.c (_initialize_libunwind_frame): Update.
8350 * gnu-v3-abi.c (init_gnuv3_ops): Update.
8351 * frame-unwind.c (_initialize_frame_unwind): Update.
8352 * frame-base.c (_initialize_frame_base): Update.
8353 * user-regs.c (user_reg_add): Update.
8354 * reggroups.c (reggroup_add): Update.
8355 * mips-linux-tdep.c (set_mips_linux_register_addr): Update.
8356 * libunwind-frame.c (libunwind_frame_set_descr): Update.
8357 * frame-unwind.c (frame_unwind_append_sniffer): Update.
8358 * frame-base.c (frame_base_table): Update.
8359 * remote.c (_initialize_remote): Update.
8360 * gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
8361
8362 2004-03-15 Andrew Cagney <cagney@redhat.com>
8363
8364 * cris-tdep.c (bfd_lookup_symbol): Delete unused function.
8365
8366 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8367
8368 * Makefile.in (frv-linux-tdep.o): Add dependencies.
8369 * frv-linux-tdep.c: New file.
8370 * frv-tdep.c (struct gdbarch_tdep): Add new field
8371 ``sigcontext_reg_addr''.
8372 (frv_set_sigcontext_reg_addr, frv_sigtramp,frame_cache)
8373 (frv_sigtramp_frame_this_id, frv_sigtramp_frame_prev_register)
8374 (frv_sigramp_frame_sniffer): New functions.
8375 (frv_sigtramp_frame_unwind): New static global.
8376 (frv_gdbarch_init): Hook in ABI-specific overrides. Hook up frame
8377 sniffers.
8378 * frv-tdep.h (frv_set_sigcontext_reg_addr): New function.
8379 * config/frv/frv.mt (TDEPFILES): Add frv-linux-tdep.o.
8380
8381 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8382
8383 * frv-tdep.c (frv_analyze_prologue): Terminate prologue scan,
8384 but not via a call to error(), when unable to read memory.
8385
8386 2004-03-15 Kevin Buettner <kevinb@redhat.com>
8387
8388 * frv-tdep.c (frv_call_dummy_words): Delete.
8389 (frv_frame_unwind_cache): Delete unused variable, ``prev_sp''.
8390
8391 2004-03-15 Andrew Cagney <cagney@redhat.com>
8392
8393 * infrun.c (handle_step_into_function, step_over_function): Only
8394 update and use STEP_FRAME_ID when the system is using legacy
8395 frames. Update comments.
8396
8397 2004-03-14 Mark Kettenis <kettenis@gnu.org>
8398
8399 * amd64-linux-tdep.h: Remove file.
8400 * amd64-linux-tdep.c: Don't include "inferior.h" and
8401 "amd64-linux-tdep.h". Include "frame.h" and "solib-svr4.h".
8402 (USER_R15, USER_R14, USER_R13, USER_R12, USER_RBP, USER_RBX)
8403 (USER_R11, USER_R10, USER_R9, USER_R8, USER_RAX, USER_RCX)
8404 (USER_RDX, USER_RSI, USER_RDI, USER_RIP, USER_CS, USER_EFLAGS)
8405 (USER_RSP, USER_SS, USER_DS, USER_ES, USER_FS, USER_GS): Remove
8406 macros.
8407 (user_to_gdb_regmap): Remove variable.
8408 (amd64_linux_gregset_reg_offset): New variable.
8409 (amd64_core_fns): Remove variable.
8410 (fetch_core_registers): Remove function.
8411 (amd64_linux_supply_gregset, amd64_linux_fill_gregset): Remove
8412 functions.
8413 (_initialize_amd64_linux_tdep): Don't set add_core_fns.
8414 * amd64-linux-nat.c: Don't include "amd64-linux-tdep.h".
8415 * Makefile.in (amd64_linux_tdep_h): Remove.
8416 (amd64-linux-nat.o): Update dependencies.
8417 (amd64-linux-tdep.o): Update dependencies.
8418
8419 * amd64-linux-nat.c (GETFPREGS_SUPPLIES): Remove macro.
8420 (fetch_regs, fetch_fpregs, store_regs, store_fpregs): Remove
8421 functions.
8422 (fetch_inferior_registers, store_inferior_registers): Rewrite.
8423
8424 * amd64-tdep.h (amd64_fill_fxsave): Remove prototype.
8425 * amd64-tdep.c (amd64_fill_fxsave): Remove function.
8426
8427 2004-03-14 Daniel Jacobowitz <drow@mvista.com>
8428
8429 * dwarf2read.c (read_structure_type): Rename from
8430 read_structure_scope. Don't create a symbol or call process_die.
8431 Return immediately if die->type is set. Call read_type_die before
8432 dwarf2_add_member_fn.
8433 (process_structure_scope): New function.
8434 (read_enumeration_type, process_enumeration_scope): New functions,
8435 broken out from read_enumeration. Don't create the enumeration
8436 type if it has already been created.
8437 (read_enumeration): Removed.
8438 (process_die): Call read_structure_type, process_structure_scope,
8439 read_enumeration_type, and process_enumeration_scope. Just call
8440 new_symbol for base and subrange types. Add a comment about other
8441 type dies.
8442 (read_type_die): Call read_enumeration_type.
8443 (add_partial_structure, new_symbol): Update comments.
8444
8445 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
8446
8447 * m68hc11-tdep.c (m68hc11_register_name): Get soft reg information.
8448
8449 2004-03-13 Stephane Carrez <stcarrez@nerim.fr>
8450
8451 * tui/tui-win.h (tui_get_cmd_list): Declare.
8452 * tui/tui-win.c (tui_command): New function.
8453 (tui_get_cmd_list): New function.
8454 (_initialize_tui_win): Moved initialization of tui command in
8455 tui_get_cmd_list.
8456
8457 * tui/tui-data.c (init_content_element): Setup new data members.
8458 (init_win_info): Likewise.
8459 (free_content_elements): Free it.
8460 * tui/tui-data.h (struct tui_data_element): Store the register
8461 content to print.
8462 (struct tui_data_info): Keep the current register group.
8463
8464 * tui/tui-layout.c (tui_set_layout): Update call to tui_show_registers.
8465
8466 * tui/tui-regs.h (tui_show_registers): Update prototype.
8467 (tui_toggle_float_regs, tui_calculate_regs_column_count): Remove.
8468 (tui_resize_all): No need to calculate anything for register window.
8469 * tui/tui-regs.c (tui_calculate_regs_column_count): Remove.
8470 (tui_set_register_element, tui_set_general_regs_content): Remove.
8471 (tui_set_special_regs_content): Remove.
8472 (tui_set_general_and_special_regs_content): Remove.
8473 (tui_set_float_regs_content): Remove.
8474 (tui_reg_value_has_changed, tui_get_register_raw_value): Remove.
8475 (tui_set_regs_content): Remove.
8476 (tui_toggle_float_regs, _tui_toggle_float_regs_command): Remove.
8477 (tui_v_show_registers_command_support): Remove.
8478 (tui_show_registers): Use a reggroup to specify the registers to show.
8479 (tui_show_register_group): New function.
8480 (tui_display_registers_from): Compute the layout of register window
8481 and refresh with new API; be sure to delete old register windows.
8482 (tui_check_register_values): Update to use tui_get_register and
8483 tui_display_data.
8484 (tui_display_register): Just refresh the register window part.
8485 (tui_register_format): Format registers and save in tui_data_element.
8486 (tui_get_register): New to combine tui_reg_value_has_changed and
8487 tui_get_register_raw_value; fix to use the new gdb API.
8488 (tui_show_float_command): Renamed tui_reg_float_command.
8489 (tui_show_general_command): Renamed tui_reg_general_command.
8490 (tui_show_special_command): Renamed tui_reg_system_command.
8491 (_initialize_tui_regs): Remove unused commands.
8492
8493 2004-03-13 Mark Kettenis <kettenis@gnu.org>
8494
8495 * NEWS (New native configurations): Mention OpenBSD/amd64.
8496
8497 * config/i386/nm-fbsd.h: Include "config/nm-bsd.h".
8498 (PTRACE_ARG3_TYPE, FETCH_INFERIOR_REGISTERS, ATTACH_DETACH):
8499 Remove defines.
8500 * config/i386/nm-fbsd64.h: Likewise.
8501 * config/i386/nm-obsd.h: Likewise.
8502 * config/sparc/nm-fbsd.h: Likewise. Update copyright year.
8503 * config/alpha/nm-fbsd.h: Likewise. Update copyright year.
8504
8505 2004-03-12 Kevin Buettner <kevinb@redhat.com>
8506
8507 * frv-tdep.c (set_variant_scratch_registers): New function.
8508 * frv-tdep.h (scr0_regnum, scr1_regnum, scr2_regnum, scr3_regnum):
8509 New constants.
8510
8511 From Richard Sandiford <rsandifo@redhat.com>:
8512 * frv-tdep.c (frv_gdbarch_init): Add FR450 support.
8513
8514 2004-03-12 Kevin Buettner <kevinb@redhat.com>
8515
8516 * frv-tdep.c, frv-tdep.h (first_gpr_regnum, sp_regnum, fp_regnum)
8517 (struct_return_regnum, last_gpr_regnum, first_fpr_regnum)
8518 (last_fpr_regnum, pc_regnum, first_spr_regnum, psr_regnum, ccr_regnum)
8519 (cccr_regnum, fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum)
8520 (tbr_regnum, brr_regnum, dbar0_regnum, dbar1_regnum, dbar2_regnum)
8521 (dbar3_regnum, lr_regnum, lcr_regnum, iacc0h_regnum, iacc0l_regnum)
8522 (last_spr_regnum, frv_num_regs, first_pseudo_regnum, iacc0_regnum)
8523 (last_pseudo_regnum, frv_num_pseudo_regs): Move constant (enum)
8524 definitions from frv-tdep.c to frv-tdep.h.
8525
8526 2004-03-12 Kevin Buettner <kevinb@redhat.com>
8527
8528 Add shared library support for FR-V FDPIC ABI:
8529 * Makefile.in (solib-frv.o): Add dependencies.
8530 * frv-tdep.c (find_func_descr, frv_convert_from_func_ptr_addr):
8531 New functions.
8532 (frv_push_dummy_call): Add support for FDPIC ABI.
8533 (frv_gdbarch_init): Call set_gdbarch_convert_from_func_ptr_addr()
8534 for FDPIC ABI.
8535 * frv-tdep.h (frv_fdpic_find_global_pointer): Declare.
8536 (frv_fdpic_find_canonical_descriptor): Declare.
8537 * solib-frv.c: New file.
8538 * config/frv/frv.mt (TDEPFILES): Add solib.o and solib-frv.o.
8539 * config/frv/tm-frv.h (solib.h): Include.
8540
8541 2004-03-12 Kevin Buettner <kevinb@redhat.com>
8542
8543 * Makefile.in (elf_frv_h, frv_tdep_h): Define.
8544 (frv-tdep.o): Update dependencies.
8545 * frv-tdep.h: New file.
8546 * frv-tdep.c (elf-bfd.h, elf/frv.h, osabi.h, frv-tdep.h): Include.
8547 (fdpic_loadmap_exec_regnum, fdpic_loadmap_interp_regnum): New
8548 constants.
8549 (struct gdbarch_tdep): Add new member ``frv_abi''.
8550 (frv_abi, frv_fdpic_loadmap_addresses, set_variant_abi_fdpic): New
8551 functions.
8552 (new_variant): Set ``frv_abi'' field.
8553 (gdb_arch_init): Detect FDPIC executables.
8554
8555 2004-03-12 Mark Kettenis <kettenis@gnu.org>
8556
8557 * solib-svr4.h: Change SOLIB_SVR4 wrapper into SOLIB_SVR4_H
8558 wrapper.
8559
8560 2004-03-11 Andrew Cagney <cagney@redhat.com>
8561
8562 * solib-svr4.h: Add #ifndef SOLIB_SVR4 wrapper.
8563
8564 2004-03-11 Kevin Buettner <kevinb@redhat.com>
8565
8566 * solist.h (master_so_list): New function.
8567 * solib.c (master_so_list): Likewise.
8568 * solib-svr4.c (enable_break): Iterate over so_list entries
8569 obtained from master list instead of entries obtained directly
8570 via svr4_current_sos().
8571
8572 2004-03-10 Ben Elliston <bje@gnu.org>
8573
8574 * MAINTAINERS: Update my mail address.
8575
8576 2004-03-10 Kei Sakamoto <sakamoto.kei@renesas.com>
8577
8578 * remote-m32r-sdi.c: Support hardware watchpoint.
8579
8580 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8581
8582 * user-regs.c: Update copyright years.
8583 (struct user_regs): Rename to gdb_user_regs.
8584 (append_user_reg, builtin_user_regs, user_regs_init)
8585 (user_reg_add, user_reg_map_name_to_regnum)
8586 (usernum_to_user_reg): Update.
8587
8588 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8589
8590 * dwarf2read.c (skip_leb128, peek_die_abbrev, skip_one_die)
8591 (skip_children): New functions.
8592 (locate_pdi_sibling): Call skip_children.
8593
8594 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8595
8596 * arm-tdep.c (arm_use_struct_convention): Look through typedefs.
8597 * gdbtypes.c (check_typedef): Update comments.
8598
8599 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8600
8601 * dwarf2read.c (struct comp_unit_head): Remove dwarf2_abbrevs array.
8602 (struct dwarf2_cu): Add abbrev_obstack and dwarf2_abbrevs
8603 pointer. Update comment about comp_unit_head.
8604 (struct abbrev_info): Shorten two int flags.
8605 (dwarf_alloc_abbrev): Take a CU argument.
8606 (dwarf2_build_psymtabs_hard): Call dwarf2_free_abbrev_table
8607 each time through the loop. Update cleanup argument.
8608 (psymtab_to_symtab_1): Update cleanup call.
8609 (dwarf2_read_abbrevs, dwarf2_alloc_abbrev): Allocate on the
8610 abbrev_obstack.
8611 (dwarf2_free_abbrev_table): Renamed from dwarf2_empty_abbrev_table.
8612 Just call obstack_free and clear the pointer.
8613
8614 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8615
8616 * infrun.c (handle_inferior_event): Remove short-circuit code for
8617 events in a different thread.
8618
8619 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8620
8621 * target.c (debug_to_xfer_memory): If targetdebug is 1, don't
8622 print the whole transfer.
8623 (initialize_targets): Update description of "set debug target".
8624
8625 2004-03-09 Daniel Jacobowitz <drow@mvista.com>
8626
8627 * arm-tdep.c (thumb_get_next_pc): Handle Thumb BLX.
8628
8629 2004-03-08 Nathan J. Williams <nathanw@wasabisystems.com>
8630
8631 * MAINTAINERS (write after approval): Add myself.
8632
8633 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
8634
8635 * sh-tdep.c (sh_print_registers_info): Use for loop.
8636 Don't skip multiple registers when a float register is encountered.
8637
8638 2004-03-08 Corinna Vinschen <vinschen@redhat.com>
8639
8640 Fix PR tdep/1291.
8641 * sh-tdep.c (sh_analyze_prologue): Align PC relative addressing
8642 to official SH documentation.
8643
8644 2004-03-07 Andrew Cagney <cagney@redhat.com>
8645
8646 * ppc-linux-nat.c (ppc_ptrace_cannot_fetch_store_register): Delete
8647 unused function.
8648
8649 2004-03-07 Daniel Jacobowitz <drow@mvista.com>
8650
8651 * arm-tdep.c (thumb_get_next_pc): Handle BX.
8652 (arm_get_next_pc): Handle BX and BLX.
8653
8654 2004-03-07 Andrew Cagney <cagney@redhat.com>
8655
8656 * hppa-tdep.c: Replace DEPRECATED_FP_REGNUM with HPPA_FP_REGNUM,
8657 FP0_REGNUM with HPPA_FP0_REGNUM, and SP_REGNUM with
8658 HPPA_SP_REGNUM.
8659 (hppa_register_raw_size, hppa_register_byte, hppa_read_fp)
8660 (hppa_target_read_fp): Delete.
8661 (hppa_gdbarch_init): Do not set deprecated register_raw_size,
8662 register_virtual_size, max_register_raw_size,
8663 max_register_virtual_size, register_byte, register_size,
8664 target_read_fp, fp_regnum, and register_bytes. Set register_type
8665 instead of register_virtual_type.
8666 (hppa32_register_type, hppa64_register_type): Replace
8667 hppa32_register_virtual_type and hppa64_register_virtual_type.
8668 * config/pa/tm-hppa.h (HPPA_FP0_REGNUM, HPPA_SP_REGNUM)
8669 (HPPA_FP_REGNUM): Define.
8670
8671 * hppa-tdep.c (hppa_gdbarch_init): Add missing "break".
8672
8673 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO)
8674 (pa_do_registers_info): Delete.
8675 * hppa-tdep.c (pa_do_registers_info, pa_do_strcat_registers_info)
8676 (pa_print_registers, pa_print_fp_reg, pa_strcat_registers)
8677 (pa_strcat_fp_reg, pa_register_look_aside): Delete.
8678
8679 * infcall.c (legacy_push_dummy_code): Delete #ifdef
8680 GDB_TARGET_IS_HPPA code.
8681 * config/pa/tm-hppa.h (DEPRECATED_FIX_CALL_DUMMY)
8682 (hppa_fix_call_dummy, DEPRECATED_CALL_DUMMY_HAS_COMPLETED)
8683 (DEPRECATED_DUMMY_WRITE_SP, CALL_DUMMY): Delete.
8684 * config/pa/tm-hppa64.h (CALL_DUMMY): Delete.
8685 * hppa-tdep.c (hppa_frame_chain, hppa_frame_chain_valid)
8686 (hppa_push_dummy_frame, hppa_pop_frame, hppa_push_arguments)
8687 (hppa_fix_call_dummy, hppa64_stack_align, hppa_frame_saved_pc)
8688 (hppa_init_extra_frame_info, hppa_saved_pc_after_call)
8689 (hppa64_call_dummy_breakpoint_offset, hppa_frame_init_saved_regs)
8690 (hppa_frameless_function_invocation, hppa64_store_return_value)
8691 (hppa_store_struct_return, hppa64_extract_return_value)
8692 (hppa64_use_struct_convention, hppa_frame_find_saved_regs)
8693 (hppa32_call_dummy_length, hppa64_call_dummy_length)
8694 (find_dummy_frame_regs, FUNC_LDIL_OFFSET, FUNC_LDO_OFFSET)
8695 (find_proc_framesize, deposit_21, restore_pc_queue)
8696 (find_return_regnum, pc_in_interrupt_handler, deposit_14)
8697 (rp_saved, pc_in_linker_stub): Delete.
8698
8699 Unconditionally enable 64-bit frame and ABI code.
8700 * hppa-tdep.c (hppa_gdbarch_init): Do not set deprecated
8701 call_dummy_breakpoint_offset, call_dummy_length, stack_align,
8702 push_dummy_frame, fix_call_dummy, push_arguments,
8703 call_dummy_location, extract_return_value, use_struct_convention,
8704 store_return_value, store_struct_return, saved_pc_after_call,
8705 init_frame_pc, frame_init_saved_regs, init_extra_frame_info,
8706 frame_chain, frame_chain_valid, frameless_function_invocation,
8707 frame_saved_pc, and pop_frame.
8708
8709 * hppa-tdep.c: Replace PC_REGNUM with PCOQ_HEAD_REGNUM.
8710 (hppa64_return_value, hppa64_push_dummy_call): Rewrite.
8711 (hppa_gdbarch_init): Do not set PC_REGNUM.
8712
8713 2004-03-06 Mark Kettenis <kettenis@gnu.org>
8714
8715 * config/alpha/tm-fbsd.h: Remove file.
8716 * config/alpha/fbsd.mt: Tweak comment.
8717 (TM_FILE): Set to tm-alpha.h.
8718
8719 2004-03-05 Andrew Cagney <cagney@redhat.com>
8720
8721 * infrun.c (step_over_function): When non-legacy code, and no
8722 step_frame_id, use the unwinder to get the caller's frame ID.
8723
8724 2004-03-05 Mark Kettenis <kettenis@gnu.org>
8725
8726 * i386bsd-tdep.c (_initialize_i386bsd_tdep): Register
8727 i386bsd_core_osabi_sniffer for bfd_arch_i386 instead of
8728 bfd_arch_unknown. Adjust comment.
8729
8730 * i386-nat.c: Fix typo in comment. Re-introduce paranoiac.
8731 * i386obsd-tdep.c: Correct spelling in comment.
8732 * i386nbsd-tdep.c: Correct spelling in comment.
8733 * sparc-tdep.c: Correct spelling in comments.
8734
8735 2004-03-05 David Carlton <carlton@kealia.com>
8736
8737 * cp-namespace.c (cp_lookup_transparent_type_loop): Fix recursion
8738 bug.
8739
8740 2004-03-05 Mark Kettenis <kettenis@gnu.org>
8741
8742 * sparc-tdep.c: Fix typo in comment.
8743
8744 2004-03-04 J. Brobecker <brobecker@gnat.com>
8745
8746 * hppa-tdep.c (hppa_frame_cache): Avoid undefined return value.
8747
8748 2004-03-04 Daniel Jacobowitz <drow@mvista.com>
8749
8750 * dwarf2read.c: Add comment describing memory lifetimes.
8751 (struct dwarf2_pinfo): Update comment.
8752 (dwarf2_add_field, dwarf2_add_member_fn, read_structure_scope)
8753 (read_enumeration, new_symbol): Don't use obsavestring.
8754
8755 2004-03-04 Mark Kettenis <kettenis@gnu.org>
8756
8757 * amd64-linux-nat.c (fill_fpregset): Call amd64_colletc_fxsave
8758 instead of amd64_fill_fxsave.
8759 * amd64bsd-nat.c (store_inferior_registers): Likewise.
8760 * amd64fbsd-nat.c (fill_fpregset): Likewise.
8761
8762 * sparc-tdep.c (sparc_frame_cache): Don't bail out if %fp is zero.
8763 Reorganize code a bit.
8764
8765 2004-03-04 Orjan Friberg <orjanf@axis.com>
8766
8767 * cris-tdep.c (cris_scan_prologue): Save the frame pointer's offset
8768 when the frame pointer is pushed. Don't set the frame pointer's
8769 address on the stack unless it's actually located there.
8770 Set the SRP's address on the stack correctly when the PC is still in
8771 the prologue.
8772 (cris_return_value): New function.
8773 (cris_gdbarch_init): Clear deprecated store_return_value,
8774 extract_return_value.
8775
8776 2004-03-02 Jim Blandy <jimb@redhat.com>
8777
8778 * stabsread.c (reg_value_complaint): The maximum register number
8779 is one less than the number of registers.
8780
8781 2004-03-02 Andrew Cagney <cagney@redhat.com>
8782
8783 * i386-tdep.h (enum i386_regnum): Add I386_DS_REGNUM,
8784 I386_ES_REGNUM, I386_FS_REGNUM, and I386_GS_REGNUM. Remove
8785 trailing comma and redundant assignment of I386_ST0_REGNUM.
8786 * amd64-nat.c (amd64_collect_native_gregset): Zero-extend the
8787 32-bit segment registers.
8788
8789 2004-03-01 Andrew Cagney <cagney@redhat.com>
8790
8791 * rs6000-tdep.c (rs6000_init_frame_pc_first): Fix compiler error,
8792 use frame_relative_level and get_next_frame.
8793
8794 2004-02-29 Andrew Cagney <cagney@redhat.com>
8795
8796 * rs6000-tdep.c (rs6000_init_frame_pc_first): New function.
8797 (rs6000_gdbarch_init): Set deprecated_init_frame_pc_first.
8798 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST):
8799 Delete macro.
8800
8801 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
8802
8803 * inflow.c (terminal_inferior): Don't give up the terminal if we
8804 previously couldn't get the inferior's terminal state.
8805
8806 2004-02-29 Daniel Jacobowitz <drow@mvista.com>
8807
8808 * regcache.c (read_pc_pid): Restore inferior_ptid after reading
8809 PC_REGNUM.
8810
8811 2004-02-28 Andrew Cagney <cagney@redhat.com>
8812
8813 * NEWS: Refer to GDB 6.1.
8814 * README: Refer to GDB 6.1.
8815 * PROBLEMS: Refer to GDB 6.1.
8816
8817 2004-02-28 Daniel Jacobowitz <drow@mvista.com>
8818
8819 * thread-db.c (disable_thread_signals): Remove unused function.
8820
8821 2004-02-28 Mark Kettenis <kettenis@gnu.org>
8822
8823 * amd64-nat.c: Include "gdb_string.h".
8824 (amd64_collect_native_gregset): Zero-extend the 32-bit
8825 general-purpose registers and %eip.
8826
8827 * amd64-tdep.h: (amd64_collect_fxsave): New prototype.
8828 * amd64-tdep.c (amd64_collect_fxsave): New function.
8829 (amd64_fill_fxsave): Simply call amd64_collect_fxsave.
8830
8831 * i387-tdep.h: Update copyright year.
8832 (i387_collect_fxsave): New prototype.
8833 * i387-tdep.c: Update copyright year.
8834 (i387_collect_fxsave): New function containing most of the code
8835 from i387_fill_fxsave.
8836 (i387_fill_fxsave): Call i387_collect_fxsave.
8837
8838 2004-02-28 Andrew Cagney <cagney@redhat.com>
8839
8840 * amd64-linux-nat.c (ps_get_thread_area): When architecture is
8841 i386 use PTRACE_GET_THREAD_AREA. Suggested by Roland McGrath.
8842
8843 2004-02-28 Mark Kettenis <kettenis@gnu.org>
8844
8845 * amd64-tdep.c (amd64_frame_cache): Fix comment.
8846
8847 2004-02-28 Andrew Cagney <cagney@redhat.com>
8848
8849 * utils.c: Use "", instead of <>, to include readline.
8850 tui/tui-win.c, tui/tui.c, tui/tui-hooks.c: Ditto.
8851 * tracepoint.c, top.c, symmisc.c, symfile.c: Ditto.
8852 * source.c, solib.c, exec.c, event-top.c: Ditto.
8853 * corelow.c, completer.c, cli/cli-setshow.c: Ditto.
8854 * cli/cli-dump.c, cli/cli-cmds.c: Ditto.
8855 * Makefile.in: Update all dependencies.
8856 (readline_tilde_h, readline_history_h): Define.
8857 (readline_headers): Delete.
8858
8859 2004-02-28 Mark Kettenis <kettenis@gnu.org>
8860
8861 * config/djgpp/fnchange.lst: Rename "config/i386/nm-linux64.h" to
8862 "config/i386/nm-lx64.h" and "config/i386/tm-linux64.h" to
8863 "config/i386/tm-lx64.h".
8864
8865 * config/djgpp/fnchange.lst: Rename "amd64-linux-tdep.c" to
8866 "amd64-ltdep.c" and "amd64-linux-nat.c" to "amd64-lnat.c". Remove
8867 rules for "x86-64-linux-tdep.c" and "x86-64-linux-nat.c".
8868
8869 2004-02-28 Andrew Cagney <cagney@redhat.com>
8870
8871 * dwarf2-frame.h (struct gdbarch): Add opaque declaration.
8872
8873 * breakpoint.c (_initialize_breakpoint): Use
8874 "add_setshow_auto_boolean_cmd. Better word-wrap help messages.
8875 Add help to show command.
8876
8877 2004-02-28 Mark Kettenis <kettenis@gnu.org>
8878
8879 * i386-nat.c: Reformat to be closer to coding standards.
8880 (i386_handle_nonaligned_watchpoint): Rename local variable `rv' to
8881 `retval'. Make variables `align' and `size' local to while-loop.
8882 (i386_stopped_data_address): Rename local variable `ret' to `addr'.
8883 (_initialize_i386_nat): New prototype.
8884
8885 * tui/tui.c: Include <readline/readline.h> instead of
8886 "readline/readline.h". Include it after <term.h> and
8887 "gdb_curses.h".
8888
8889 2004-02-27 Andrew Cagney <cagney@redhat.com>
8890
8891 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always use
8892 the new frame unwind code.
8893 (hppa_frame_cache): Use PCOQ_HEAD_REGNUM instead of PC_REGNUM.
8894 (hppa_frame_prev_register): Compute PCOQ_TAIL_REGNUM from
8895 PCOQ_HEAD_REGNUM.
8896
8897 * hppa-tdep.c (hppa_gdbarch_init): On 32-bit systems always
8898 "return_value" and "push_dummy_call".
8899 (hppa32_use_struct_convention): Delete unused function.
8900 (hppa32_store_return_value): Delete unused function.
8901 (hppa32_extract_return_value): Delete unused function.
8902 (hppa32_stack_align): Delete function.
8903
8904 2004-02-27 Eli Zaretskii <eliz@elta.co.il>
8905
8906 * coffread.c (enter_linenos): Don't let rawptr reference memory
8907 outside linetab[]'s limits.
8908
8909 2004-02-27 Andrew Cagney <cagney@redhat.com>
8910
8911 * hppa-tdep.c (hppa32_push_dummy_call): Fix code reserving
8912 inferior stack space - the stack needs to grow upwards.
8913 (hppa32_frame_align): New function.
8914 (hppa64_frame_align): Replace hppa_frame_align.
8915 (hppa_gdbarch_init): Update.
8916
8917 2004-02-26 Orjan Friberg <orjanf@axis.com>
8918
8919 * cris-tdep.c (frame_unwind.h, frame-base.h, trad-frame.h)
8920 (dwarf2-frame.h): Include.
8921 (enum cris_regnums): New enum CRIS_FP_REGNUM.
8922 Remove static variables related to ABI setting.
8923 (struct gdbarch_tdep): Remove cris_abi member.
8924 (struct frame_extra_info): Remove.
8925 (cris_unwind_cache, stack_item): New structs.
8926 (cris_frame_unwind, cris_frame_base): New variables.
8927 (push_stack_item, pop_stack_item)
8928 (cris_frame_unwind_cache, cris_frame_this_id)
8929 (cris_frame_prev_register, cris_unwind_dummy_id, cris_frame_align)
8930 (cris_push_dummy_code, cris_push_dummy_call, cris_frame_sniffer)
8931 (cris_frame_base_address, cris_scan_prologue, cris_unwind_pc)
8932 (cris_unwind_sp, cris_store_return_value, cris_extract_return_value)
8933 (cris_reg_struct_has_addr): New functions.
8934 (cris_examine, cris_frame_init_saved_regs, cris_frame_chain)
8935 (cris_frame_saved_pc, cris_saved_pc_after_call,
8936 (cris_store_struct_return, cris_frameless_function_invocation)
8937 (cris_pop_frame, cris_skip_prologue_main)
8938 (cris_abi_original_store_return_value)
8939 (cris_abi_v2_store_return_value)
8940 (cris_abi_original_extract_return_value)
8941 (cris_abi_v2_extract_return_value)
8942 (cris_abi_original_reg_struct_has_addr)
8943 (cris_abi_v2_reg_struct_has_addr)
8944 (cris_abi_original_push_arguments, cris_abi_v2_push_arguments)
8945 (cris_push_return_address, cris_abi_update): Remove.
8946 (_initialize_cris_tdep): Remove ABI command.
8947 (cris_dump_tdep): Ditto.
8948 (cris_gdbarch_init): Remove ABI command.
8949 Set store_return_value, extract_return_value, push_dummy_code,
8950 push_dummy_call, frame_align, unwind_pc, unwind_sp, unwind_dummy_id,
8951 frame_unwind_append_sniffer, frame_base_set_default.
8952 Clear deprecated init_frame_pc, push_arguments, store_return_value,
8953 extract_return_value, fp_regnum, pc_in_call_dummy, call_dummy_words,
8954 sizeof_call_dummy_words, get_saved_register, push_return_address,
8955 pop_frame, store_struct_return, frame_init_saved_regs,
8956 init_extra_frame_info, frameless_function_invocation, frame_chain,
8957 frame_saved_pc, saved_pc_after_call, save_dummy_frame_tos,
8958 dummy_write_sp.
8959
8960 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
8961
8962 * valprint.h (print_hex_chars, print_char_chars): New prototypes.
8963 * valprint.c (print_hex_chars): Change from static to external.
8964 (print_char_chars): New function.
8965 * printcmd.c (print_scalar_formatted): For integer and enum types
8966 that are longer than LONGEST, perform processing via appropriate
8967 print_*_chars routines.
8968
8969 2004-02-26 Andrew Cagney <cagney@redhat.com>
8970
8971 * Makefile.in: Update dependencies.
8972 Changes from Ulrich Weigand,
8973 * s390-tdep.c: Include "dwarf2-frame.h".
8974 (s390_dwarf2_frame_init_reg): New function.
8975 (s390_gdbarch_init): Install dwarf2_frame_sniffer and
8976 dwarf2_frame_base_sniffer. Call dwarf2_frame_set_init_reg.
8977
8978 2004-02-26 Jeff Johnston <jjohnstn@redhat.com>
8979
8980 * breakpoint.c (pending_break_support): New setting variable.
8981 (break_command_1): Account for pending_break_support setting
8982 when creating pending breakpoints.
8983 (set_breakpoint_cmd, show_breakpoint_cmd): New functions.
8984 (_initialize_breakpoint): Add "set breakpoint pending" and
8985 "show breakpoint pending" commands.
8986
8987 2004-02-26 Andrew Cagney <cagney@redhat.com>
8988
8989 Fix PR i18n/1570.
8990 * charset.c (backslashable, backslashed, represented): Remove 'e'
8991 from list of escaped characters, not part of ISO-C.
8992
8993 2004-02-25 J. Brobecker <brobecker@gnat.com>
8994
8995 From Peter Schauer <schauer@pdf.de>:
8996 * tui/tui.c: Move system header includes after local includes.
8997 Fixes a build failure on solaris systems.
8998
8999 2004-02-25 J. Brobecker <brobecker@gnat.com>
9000
9001 * configure.in: Refine the previous change.
9002 * configure: Regenerate.
9003
9004 2004-02-25 Mark Kettenis <kettenis@gnu.org>
9005
9006 * amd64-tdep.h: Renamed from x86-64-tdep.h.
9007 * amd64-tdep.c: Renamed from x86-64-tdep.c. Include
9008 "amd64-tdep.h" instead of "x86-64-tdep.h".
9009 * amd64-nat.c: Include "amd64-tdep.h" instead of "x86-64-tdep.h".
9010 * amd64-linux-tdep.h: Renamed from x86-64-linux.h.
9011 * amd64-linux-tdep.c: Renamed from x86-64-linux-tdep.c. Include
9012 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
9013 and "x86-64-tdep.c".
9014 * amd64-linux-nat.c: Renamed from x86-64-linux-nat.c. Include
9015 "amd64-tdep.h" and "amd64-linux-tdep.h" instead of "x86-64-tdep.h"
9016 and "x86-64-tdep.c".
9017 * amd64bsd-nat.c: Update copyright year.
9018 Include "amd64-tdep.h" instead of "x86-64-tdep.h".
9019 * amd64fbsd-tdep.c: Include "amd64-tdep.h" instead of
9020 "x86-64-tdep.h".
9021 * amd64fbsd-nat.c: Include "amd64-tdep.h" instead of
9022 "x86-64-tdep.h".
9023 * amd64nbsd-tdep.c: Include "amd64-tdep.h" instead of
9024 "x86-64-tdep.h".
9025 * amd64nbsd-nat.c: Include "amd64-tdep.h" instead of
9026 "x86-64-tdep.h".
9027 * amd64obsd-tdep.c: Include "amd64-tdep.h" instead of
9028 "x86-64-tdep.h".
9029 * amd64obsd-nat.c: Include "amd64-tdep.h" instead of
9030 "x86-64-tdep.h".
9031 * configure.host: (x86_64-*-linux*): Set gdb_target to linux64.
9032 * configure.tgt (x86_64-*-linux*): Set gdb_target to linux64.
9033 * Makefile.in (amd64_linux_tdep_h): Renamed from
9034 x86_64_linux_tdep_h.
9035 (amd64_tdep_h): Renamed from x86_64_tdep_h.
9036 (amd64bsd-nat.o, amd64fbsd-nat.o, amd64fbsd-tdep.o, amd64-nat.o)
9037 (amd64nbsd-nat.o, amd64nbsd-tdep.o, amd64obsd-nat.o)
9038 (amd64obsd-tdep.o): Update dependencies.
9039 (amd64-tdep.o, amd64-linux-nat.o, amd64-linux-tdep.o): New
9040 dependencies.
9041 (x86-64-linux-nat.o, x86-64-linux-tdep.o, x86-64-tdep.o): Remove
9042 dependencies.
9043 (ALLDEPFILES): Add amd64-tdep.c, amd64obsd-nat.c, amd64obsd-nat.c,
9044 amd64-linux-nat.c amd64-linux-tdep.c.
9045 * config/i386/tm-linux64.h: Renamed from tm-x86-64linux.h
9046 * config/i386/nm-linux64.h: Renamed from nm-x86-64linux.h.
9047 * config/i386/linux64.mt: Renamed from x86-64linux.mt.
9048 (TDEPFILES): Replace x86-64-tdep.o and x86-64-linux-tdep.o with
9049 amd64-tdep.o and amd64-linux-tdep.o.
9050 (TM_FILE): Set to tm-linux64.h.
9051 * config/i386/linux64.mh: Renamed from x86-64linux.mh.
9052 (NAT_FILE): Set to nm-linux64.h.
9053 (NATDEPFILES): Replace x86-64-linux-nat.o with amd64-linux-nat.o.
9054 * config/i386/fbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9055 amd64-tdep.o.
9056 * config/i386/nbsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9057 amd64-tdep.o.
9058 * config/i386/obsd64.mt (TDEPFILES): Replace x86-64-tdep.o with
9059 amd64-tdep.o.
9060
9061 2004-02-25 Roland McGrath <roland@redhat.com>
9062
9063 * remote.c (remote_protocol_qPart_auxv): New variable.
9064 (init_all_packet_configs): Initialize it.
9065 (set_remote_protocol_qPart_auxv_packet_cmd): New function.
9066 (show_remote_protocol_qPart_auxv_packet_cmd): New function.
9067 (show_remote_cmd): Call it.
9068 (_initialize_remote): Initialize commands.
9069 (remote_xfer_partial): If enabled, use qPart:auxv:read:... query to
9070 service TARGET_OBJECT_AUXV requests.
9071
9072 2004-02-25 J. Brobecker <brobecker@gnat.com>
9073
9074 * configure.in: Make sure that the wborder function is available.
9075 Otherwise, search for it in the cur_colr library.
9076 * configure: Regenerate.
9077
9078 2004-02-25 Andrew Cagney <cagney@redhat.com>
9079
9080 * hppa-tdep.c (hppa32_push_dummy_call): Rewrite.
9081
9082 2004-02-25 Mark Kettenis <kettenis@gnu.org>
9083
9084 * config/i386/tm-x86-64linux.h: Tweak comments.
9085
9086 2004-02-25 Richard Sandiford <rsandifo@redhat.com>
9087
9088 * MAINTAINERS: Add self to write-after-approval list.
9089
9090 2004-02-25 Andrew Cagney <cagney@redhat.com>
9091
9092 PR cli/1566. Problem found, and fix suggested by David Allan.
9093 * cli/cli-script.c (execute_control_command): Unconditionally
9094 install a cleanup. Default "ret" to "invalid_control". Use
9095 "break" instead of "return" to escape from the switch.
9096
9097 2004-02-24 J. Brobecker <brobecker@gnat.com>
9098
9099 * tui/tui-disasm.c: %s/lines/asm_lines/g to avoid a collision
9100 with the lines macro defined in term.h on AiX.
9101 * tui/tui-regs.c: %s/label_width/tui_label_width/g, to avoid
9102 a collision with the label_width macro defined in term.h on AiX.
9103
9104 2004-02-23 David Mosberger <davidm@hpl.hp.com>
9105
9106 Committed by Kevin Buettner <kevinb@redhat.com>.
9107
9108 * ia64-tdep.h (ia64_write_pc, ia64_linux_write_pc): Declare.
9109 * ia64-tdep.c (ia64_write_pc): Make it a global function.
9110 (ia64_gdbarch_init): For Linux targets, use ia64_linux_write_pc()
9111 instead of ia64_write_pc().
9112 * ia64-linux-tdep.c (regcache.h): Include.
9113 (ia64_linux_write_pc): New function.
9114
9115 2004-02-23 Roland McGrath <roland@redhat.com>
9116
9117 * auxv.c (info_auxv_command): Fix typos in error messages.
9118
9119 2004-02-23 Mark Kettenis <kettenis@gnu.org>
9120
9121 * x86-64-tdep.h: Tweak comment.
9122 (enum amd64_regnum): New.
9123 (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM)
9124 (X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM)
9125 (X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM)
9126 (X86_64_XMM1_REGNUM): Removed.
9127 (AMD64_NUM_GREGS): Renamed from X86_64_NUM_GREGS.
9128 (amd64_init_abi, amd64_supply_fxsave, amd64_fill_fxsave): Adjust
9129 prototypes for renamed functions.
9130 * x86-64-tdep.c: Fix typo.
9131 (amd64_dwarf_regmap): Use constants from `enum amd64_regnum' for
9132 register numbers.
9133 (amd64_return_value, amd64_push_arguments, amd64_push_dummy_call):
9134 Use constants from `enum amd64_regnum' for register numbers.
9135 (AMD64_NUM_SAVED_REGS): Adjust for renamed macros.
9136 (amd64_analyze_prologue, amd64_frame_cache,
9137 amd64_sigtramp_frame_cache): Use constants from `enum
9138 amd64_regnum' for register numbers.
9139 (amd64_supply_fpregset): Adjust for renamed functions.
9140 (amd64_init_abi): Rename from x86_64_init_abi. Use constants from
9141 `enum amd64_regnum' for register numbers.
9142 (I387_ST0_REGNUM): Use constant from `enum amd64_regnum'.
9143 (amd64_supply_fxsave): Rename from x86_64_supply_fxsave.
9144 (amd64_fill_fxsave): Rename fro x86_64_fill_fxsave.
9145 * x86-64-linux-tdep.c (amd64_linux_supply_gregset)
9146 (amd64_linux_fill_gregset): Adjust for renamed macros.
9147 (fetch_core_registers): Adjust for renamed functions.
9148 (amd64_linux_init_abi): Adjust for renamed functions.
9149 * x86-64-linux-nat.c (supply_gregset, fill_gregset): Adjust for
9150 renamed functions.
9151 * amd64-nat.c: Adjust for renamed macros.
9152 * amd64bsd-nat.c (fetch_inferior_registers)
9153 (store_inferior_registers): Use constants from `enum amd64_regnum'
9154 for register numbers. Adjust for renamed variables.
9155 * amd64fbsd-nat.c (supply_gregset, fill_gregset): Adjust for
9156 renamed variables.
9157 (_initialize_amd64fbsd_nat): Use constants from `enum
9158 amd64_regnum' for register numbers.
9159 * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use constants from
9160 `enum amd64_regnum' for register numbers.
9161 (amd64fbsd_init_abi): Adjust for renamed functions.
9162 * amd64nbsd-tdep.c (amd64nbsd_sigcontext_addr): Use constants from
9163 `enum amd64_regnum' for register numbers.
9164 (amd64nbsd_init_abi): Adjust for renamed functions.
9165 (_initialize_amd64nbsd_ndep): Adjust for renamed macros.
9166 * amd64obsd-tdep.c (amd64obsd_sigcontext_addr): Use constants from
9167 `enum amd64_regnum' for register numbers.
9168 (amd64obsd_init_abi): Adjust for renamed functions.
9169 (_initialize_amd64obsd_ndep): Adjust for renamed macros.
9170
9171 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9172
9173 * breakpoint.c (print_one_breakpoint): Do not output spaces
9174 after printing <PENDING> for a pending breakpoint.
9175
9176 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9177
9178 * printcmd.c (print_scalar_formatted): Initialize val_long
9179 to remove compiler warning message.
9180
9181 2004-02-23 Jeff Johnston <jjohnstn@redhat.com>
9182
9183 * defs.h (nquery, yquery): New prototypes.
9184 * breakpoint.c (break_command_1): Use new nquery interface.
9185 * utils.c (defaulted_query, nquery, yquery): New functions.
9186
9187 2004-02-23 Andrew Cagney <cagney@redhat.com>
9188
9189 * hppa-tdep.c (hppa_frame_align): New function.
9190 (hppa32_push_dummy_call): New function.
9191 (hppa64_push_dummy_call): New function.
9192 (hppa_gdbarch_init): Set frame_align and push_dummy_call; keep
9193 disabled.
9194
9195 * infcall.c (legacy_push_dummy_code): Don't call deprecated
9196 FIX_CALL_DUMMY when push_dummy_call is available.
9197 (call_function_by_hand, push_dummy_code): Ditto.
9198
9199 2004-02-22 Andrew Cagney <cagney@redhat.com>
9200
9201 * config/pa/tm-hppa.h (CALL_DUMMY_LOCATION): Delete macro.
9202 (DEPRECATED_PC_IN_CALL_DUMMY): Delete macro.
9203 (DEPRECATED_USE_GENERIC_DUMMY_FRAMES): Delete macro.
9204 * hppa-tdep.c (hppa_gdbarch_init): Clear deprecated
9205 use_generic_dummy_frames, set deprecated pc_in_call_dummy, set
9206 call_dummy_location to ON_STACK.
9207
9208 2004-02-22 Mark Kettenis <kettenis@gnu.org>
9209
9210 * x86-64-linux-tdep.c: Tweak comment.
9211 (amd64_linux_supply_gregset): Renamed from
9212 x86_64_linux_supply_gresget.
9213 (amd64_linux_fill_gregset): Renamed from
9214 x86_64_linux_fill_gregset.
9215 (fetch_core_registers): Adjust for renamed functions.
9216 (amd64_core_fns): Renamed from x86_64_core_fns.
9217 (amd64_linux_sigtramp_start): Renamed from
9218 x86_64_linux_sigtramp_start.
9219 (amd64_linux_pc_in_sigtramp): Renamed from
9220 x86_64_linux_pc_in_sigtramp. Adjust for renamed functions.
9221 (AMD64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Renamed from
9222 X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET.
9223 (amd64_linux_sigcontext_addr): Renamed from
9224 x86_64_linux_sigcontext_addr.
9225 (amd64_linux_sc_reg_offset): Renamed from
9226 x86_64_linux_sc_reg_offset.
9227 (amd64_linux_init_abi): Renamed from x86_64_linux_init_abi.
9228 Adjust for renamed functions and variables.
9229 (_initialize_amd64_linux_tdep): Renamed from
9230 _initialize_x86_64_linux_tdep. Adjust for renamed functions and
9231 variables.
9232 * x86-64-linux-tdep.h: Update copyright year. Tweak comment.
9233 Adjust for renamed functions.
9234
9235 * x86-64-linux-nat.c (amd64_linux_gregset64_reg_offset): Rename
9236 from x86_64_linux_gregset64_reg_offset.
9237 (amd64_linux_gregset32_reg_offset): Rename from
9238 x86_64_linux_gregset64_reg_offset.
9239 (amd64_linux_dr_get): Renamed from x86_64_linux_dr_get.
9240 (amd64_linux_dr_set): Renamed from x86_64_linux_dr_set.
9241 (amd64_linux_dr_set_control): Renamed from
9242 x86_64_linux_dr_set_control. Adjust for renamed functions.
9243 (amd64_linux_dr_set_addr): Renamed from x86_64_linux_dr_set_addr.
9244 Adjust for renamed functions.
9245 (amd64_linux_dr_reset_addr): Renamed from
9246 x86_64_linux_dr_reset_addr. Adjust for renamed functions.
9247 (amd64_linux_dr_get_status): Renamed from
9248 x86_64_linux_dr_get_status. Adjust for renamed functions.
9249 (_initialize_amd64_linux_nat): Renamed from
9250 _initialize_x86_64_linux_nat. Adjust for renamed variables and
9251 functions.
9252 * config/i386/nm-x86-64linux.h: Update copyright year.
9253 Adjust for renamed functions.
9254
9255 * amd64fbsd-tdep.c (amd64fbsd_sigtramp_start_addr): Renamed from
9256 amd64fbsd_sigtramp_start.
9257 (amd64fbsd_sigtramp_end_addr): Renamed from
9258 amd64fbsd_sigtramp_end.
9259 (amd64fbsd_init_abi): Adjust for renamed variables.
9260 * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Adjust for renamed
9261 variables.
9262 * x86-64-tdep.h (amd64fbsd_sigtramp_start_addr): Renamed from
9263 amd64fbsd_sigtramp_start.
9264 (amd64fbsd_sigtramp_end_addr): Renamed from
9265 amd64fbsd_sigtramp_end.
9266
9267 2004-02-22 Andrew Cagney <cagney@redhat.com>
9268
9269 * hppa-tdep.c (hppa32_return_value): New function.
9270 (hppa64_return_value): New function.
9271 (hppa_gdbarch_init): Set return_value; keep disabled.
9272
9273 * hppa-tdep.c (hppa_gdbarch_init): Re-order separating
9274 struct-return and inferior function call methods.
9275
9276 * hppa-tdep.c: Include "trad-frame.h", "frame-unwind.h", and
9277 "frame-base.h".
9278 (struct hppa_frame_cache): Define.
9279 (hppa_frame_cache, hppa_frame_this_id): New functions.
9280 (hppa_frame_prev_register): New function.
9281 (hppa_frame_unwind, hppa_frame_base): New variables.
9282 (hppa_frame_unwind_sniffer): New function.
9283 (hppa_frame_base_address, hppa_unwind_pc): New function.
9284 (hppa_gdbarch_init): Set unwind_dummy_id, unwind_pc, frame unwind
9285 sniffer, and frame base sniffer; keep disabled.
9286 (hppa_frame_base_sniffer, hppa_unwind_dummy_id): New functions.
9287 * Makefile.in: Update dependencies, fix s/nbsd/obsd/ typo.
9288
9289 * frame-unwind.c (frame_unwind_find_by_frame): Add legacy_frame_p
9290 to predicates for "seriously old code".
9291
9292 * hppa-tdep.c (hppa_gdbarch_init): Convert compile time #if0s into
9293 runtime if(0).
9294
9295 * hppa-tdep.c (hppa_breakpoint_from_pc): Make "breakpoint"
9296 unsigned.
9297 (hppa_frame_find_saved_regs): Fix "std" instruction pattern
9298
9299 * config/pa/tm-hppa.h: Update copyright.
9300 (DEPRECATED_INIT_FRAME_PC): Delete macro.
9301 (deprecated_init_frame_pc_default): Delete declaration.
9302 (hppa_frame_init_saved_regs): Delete declaration.
9303 (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
9304 * hppa-tdep.c: Include "arch-utils.h".
9305 (hppa_gdbarch_init): Set deprecated init_frame_pc
9306 and deprecated frame_init_saved_regs.
9307 (hppa_frame_init_saved_regs): Make static.
9308
9309 2004-02-22 Mark Kettenis <kettenis@gnu.org>
9310
9311 Remove old 386BSD support.
9312 * NEWS (REMOVED configurations and files): Add i[3456]86-*-bsd*.
9313 * configure.host: Remove i[34567]86-*-bsd*.
9314 * configure.tgt: Remove i[34567]86-*-bsd*.
9315 * i386b-nat.c: Removed.
9316 * Makefile.in (ALLDEPFILES): Remove i386b-nat.c.
9317 (i386b-nat.o): Remove dependencies.
9318
9319 * config/i386/i386bsd.mh: Removed.
9320 * config/i386/i386bsd.mt: Removed.
9321 * config/i386/nm-i386bsd.h: Removed.
9322 * config/i386/tm-i386bsd.h: Removed.
9323 * config/i386/xm-i386bsd.h: Removed.
9324
9325 * x86-64-tdep.h (amd64obsd_r_reg_offset): New extern declaration.
9326
9327 * amd64fbsd-tdep.c: Include "solib-svr4.h".
9328 (amd64fbsd_init_abi): Set link map offsets.
9329 * amd64nbsd-tdep.c: Include "slib-svr4.h".
9330 (amd64nbsd_init_abi): Set link map offsets.
9331 * amd64obsd-tdep.c: Include "solib-svr4.h".
9332 (amd64obsd_init_abi): Set link map offsets.
9333 * i386fbsd-tdep.c: Include "solib-svr4.h".
9334 (i386fbsd_init_abi): Set link map offsets.
9335 * i386nbsd-tdep.c: Include "solib-svr4.h".
9336 (i386nbsdelf_init_abi): Set link map offsets.
9337 * Makefile.in (amd64fbsd-tdep.o, amd64nbsd-tdep.o)
9338 (amd64obsd-tdep.o, i386fbsd-tdep.o): Update dependencies.
9339 * config/i386/fbsd.mh (NATDEPFILES): Remove solib.o, solib-svr4.o,
9340 solib-legacy.o and core-aout.o. Reformat.
9341 * config/i386/fbsd64.mh (NATDEPFILES): Remove solib.o,
9342 solib-svr4.o, solib-legacy.o. Reformat.
9343 * config/i386/nbsdaout.mh (NATDEPFILES): Add solib.o. Reformat.
9344 * config/i386/nbsdelf.mh: Reformat.
9345 * config/i386/nbsd64.mh (NATDEPFILES): Remove solib.o,
9346 solib-svr4.o, solib-legacy.o and corelow.o.
9347 * config/i386/obsd.mh, config/i386/obsdaout.mh: Reformat.
9348 * config/i386/obsd64.mh (NATDEPFILES): Remove solib.o,
9349 solib-svr4.o, solib-legacy.o and corelow.o. Reformat.
9350 * config/i386/fbsd.mt (TDEPFILES): Add solib.o, solib-svr4.o.
9351 * config/i386/fbsd64.mt (TDEPFILES): Add solib.o, solib-svr4.o.
9352 (TM_FILE): Set to tm-fbsd.h.
9353 * config/i386/nbsd.mt (TDEPFILES): Reformat.
9354 * config/i386/nbsd64.mt (TDEPFILES): Add corelow.o, solib.o and
9355 solib-svr4.o.
9356 * config/i386/obsd.mt (TDEPFILES): Add corelow.o, solib.o and
9357 solib-svr4.o.
9358 (TM_FILE): Set to nm-nbsd.h.
9359 * config/i386/nm-fbsd.h: Update copyright year. Tweak comments.
9360 Simplify shared library support. Don't include "elf/common.h".
9361 (SVR4_SHARED_LIBS): Don't define.
9362 * config/i386/nm-fbsd64.h: Update copyright year. Don't include
9363 "solib.h".
9364 * config/i386/nm-nbsd.h, config/i386/nm-nbsdaout.h,
9365 config/i386/nm-obsd.h: Update copyright year. Tweak comments.
9366 * config/i386/tm-fbsd.h: Update copyright tear. Tweak comments.
9367 Don't include "i386/tm-i386.h". Include "solib.h".
9368 * config/i386/tm-nbsd.h: Update copyright year. Tweak comments.
9369 Don't include "i386/tm-i386.h".
9370 * config/i386/xm-i386.h: Update copyright year. Tweak comments.
9371 * config/i386/xm-nbsd.h: Update copyright year. Tweak comments.
9372 Include "i386/xm-i386.h".
9373 (HOST_LONG_DOUBLE_FORMAT): Remove.
9374
9375 Fix OpenBSD/i386 sigtramp recognition.
9376 * i386-tdep.h: Update copyright year.
9377 (i386bsd_pc_in_sigtramp, i386bsd_sigtramp_start)
9378 (i386bsd_sigtramp_end): New prototypes.
9379 (i386fbsd_sigtramp_start_addr): Renamed from
9380 i386fbsd_sigtramp_start.
9381 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
9382 (i386obsd_sigtramp_start_addr): Renamed from
9383 i386obsd_sigtramp_start.
9384 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
9385 * i386bsd-tdep.c: Update copyright year.
9386 (i386bsd_pc_in_sigtramp): Make public.
9387 * i386fbsd-nat.c: Update copyright year.
9388 (_initialize_i386fbsd_nat): Adjust for renamed variables.
9389 * i386fbsd-tdep.c: Update copyright year.
9390 (i386fbsd_sigtramp_start_addr): Renamed from
9391 i386fbsd_sigtramp_start.
9392 (i386fbsd_sigtramp_end_addr): Renamed from i386fbsd_sigtramp_end.
9393 (i386fbsdaout_init_abi): Adjust for renamed variables.
9394 * i386obsd-nat.c: Update copyright year.
9395 (_initialize_i386obsd_nat): Adjust for renamed variables.
9396 * i386obsd-tdep.c: Include "target.h".
9397 (i386obsd_page_size): New variable.
9398 (i386obsd_pc_in_sigtramp, i386obsd_sigtramp_start)
9399 (i386obsd_sigtramp_end): New functions.
9400 (i386obsd_sigtramp_start_addr): Renamed from
9401 i386obsd_sigtramp_start.
9402 (i386obsd_sigtramp_end_addr): Renamed from i386obsd_sigtramp_end.
9403 (i386obsd_init_abi): Adjust for renamed variables. Set
9404 pc_in_sigtramp, sigtramp_start and sigtramp_end.
9405 * Makefile.in (i386obsd-tdep.o): Update dependencies.
9406
9407 * amd64obsd-tdep.c (amd64obsd_pc_in_sigtramp): Adjust for signal
9408 trampoline change in OpenBSD kernel.
9409
9410 * amd64-nat.c: Update copyright year.
9411 (amd64_supply_native_gregset, amd64_collect_native_gregset): Use
9412 architecture from REGCACHE.
9413
9414 * x86-64-linux-nat.c (x86_64_linux_gregset32_reg_offset): Use
9415 symbolic constants from <sys/reg.h> instead of hard-coded numbers.
9416
9417 2004-02-21 Mark Kettenis <kettenis@gnu.org>
9418
9419 * configure.host: Add i[34567]86-*-openbsd[0-2].* and
9420 i[34567]86-*-openbsd3.[0-3].
9421 * config/i386/obsdaout.mh: New file.
9422
9423 * config/i386/obsd.mh (MH_FLAGS): Remove.
9424
9425 Fix PR build/1549.
9426 * i386obsd-tdep.c: Update copyright years. Include
9427 "solib-svr4.h".
9428 (i386obsd_init_abi): Don't set regset_from_core_section here.
9429 (i386obsd_aout_init_abi): New function. Set
9430 regset_from_core_section here.
9431 (i386obsd_elf_init_abi): New function.
9432 (_initialize_i386obsd_tdep): Register OS/ABI for OpenBSD ELF.
9433 * Makefile.in (i386obsd-tdep.o): Update dependecies.
9434 * config/i386/obsd.mt (TDEPFILES): Add solib.o and solib-svr4.o.
9435 (TM_FILE): Set to tm-nbsd.h.
9436
9437 * config/i386/obsd.mh (NATDEPFILES): Remove solib.o and
9438 solib-sunos.o.
9439
9440 * solib-svr4.h: Update copyright year.
9441 (svr4_ilp32_fetch_link_map_offsets)
9442 (svr4_lp64_fetch_link_map_offsets): New prototype.
9443 * solib-svr4.c: Update copyright year.
9444 (svr4_ilp32_fetch_link_map_offsets)
9445 (svr4_lp64_fetch_link_map_offsets): New function.
9446
9447 2004-02-20 Daniel Jacobowitz <drow@mvista.com>
9448
9449 * dwarf2read.c (add_partial_symbol): Fix typo in adding enumerators
9450 to the partial symbol table.
9451
9452 2004-02-20 J. brobecker <brobecker@gnat.com>
9453
9454 * PROBLEMS: Add description of problem documented under gdb/1560.
9455
9456 2004-02-20 Mark Kettenis <kettenis@gnu.org>
9457
9458 * amd64obsd-tdep.c: Include "regset.h" and "i387-tdep.h". Fix
9459 comments.
9460 (amd64obsd_supply_regset, amd64obsd_regset_from_core_section): New
9461 functions.
9462 (amd64obsd_init_abi): Reorder initializations. Use
9463 amd64obsd_r_reg_offset to initialize the general-purpose register
9464 set details. Set regset_from_core_section.
9465 (_initialize_amd64obsd_tdep): Rename from
9466 _initialize_amd64obsd_ndep. Add OS ABI handler for core dumps.
9467 * Makefile.in (amd64obsd-tdep.o): Update dependencies.
9468 * config/i386/obsd64.mt (TDEPFILES): Add i386-tdep.o.
9469
9470 * NEWS (New native configurations): Mention OpenBSD/alpha.
9471 * configure.tgt: Add alpha*-*-openbsd*.
9472 * configure.host: Add alpha*-*-openbsd*.
9473 * alphanbsd-tdep.c: Update copyright year.
9474 (_initialize_alphanbsd_tdep): Register OS ABI for OpenBSD ELF.
9475
9476 2004-02-20 Andrew Cagney <cagney@redhat.com>
9477
9478 Fix PR tdep/1372.
9479 * configure.tgt: Delete target "none-*-*".
9480 * configure.host: Delete host "none-*-*".
9481 * config/none/none.mh: Delete file.
9482 * config/none/none.mt: Delete file.
9483 * config/none/xm-none.h: Delete file.
9484 * config/none/tm-none.h: Delete file.
9485 * config/none/nm-none.h: Delete file.
9486
9487 2004-02-19 Fred Fish <fnf@redhat.com>
9488
9489 * sh-tdep.c (sh_analyze_prologue): Eliminate useless test of
9490 cache->uses_fp prior to setting it.
9491
9492 2004-02-19 Fred Fish <fnf@redhat.com>
9493
9494 Fix for PR breakpoint/1558.
9495 * sh-tdep.c (IS_JSR): New macro.
9496 (sh_analyze_prologue): Use IS_JSR to terminate prologue scan.
9497
9498 2004-02-19 Jim Blandy <jimb@redhat.com>
9499
9500 * findvar.c (value_from_register): Doc fix.
9501
9502 2004-02-19 Jeff Johnston <jjohnstn@redhat.com>
9503
9504 * printcmd.c (print_scalar_formatted): Do not check for sizeof
9505 type being greater than sizeof of host's LONGEST. Always use
9506 unpack_long() unless format 'f' chosen.
9507
9508 2004-02-19 Joel Brobecker <brobecker@gnat.com>
9509
9510 Committed by Elena Zannoni <ezannoni@redhat.com>
9511
9512 * symtab.c (find_pc_sect_psymtab): Return the psymtab that
9513 contains a symbol wich is the best, non-exact match for the given
9514 pc. Update comments.
9515
9516 2004-02-19 Elena Zannoni <ezannoni@redhat.com>
9517
9518 * event-top.c (async_request_quit): Remove uses of REQUEST_QUIT
9519 macro, which was part of the now removed Mach 3 port.
9520 * utils.c (request_quit): Ditto.
9521
9522 2004-02-18 Mark Kettenis <kettenis@gnu.org>
9523
9524 * config/djgpp/fnchange.lst: Rename "amd64obsd-tdep.c" and
9525 "amd64obsd-nat.c" to "a64ob-tdep.c" and "a64ob-nat.c".
9526
9527 2004-02-18 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
9528
9529 Committed by Mark Kettenis <kettenis@gnu.org>.
9530
9531 * config/s390/nm-linux.h (TARGET_REGION_OK_FOR_HW_WATCHPOINT):
9532 Define.
9533
9534 2004-02-18 Andrew Cagney <cagney@redhat.com>
9535
9536 * configure.in: Add a TUI target to CONFIG_ALL, CONFIG_CLEAN,
9537 CONFIG_INSTALL and CONFIG_UNINSTALL.
9538 * configure: Re-generate.
9539 * interps.h (INTERP_TUI): Define.
9540 * Makefile.in: Update dependencies.
9541 (TUI): New macro.
9542 (tui-main.o): Specify dependencies.
9543 (install-tui, uninstall-tui, clean-tui, all-tui): New rules.
9544 * tui/tui-main.c: New file.
9545
9546 2004-02-18 Mark Kettenis <kettenis@gnu.org>
9547
9548 * amd64obsd-tdep.c, amd64obsd-nat.c: New files.
9549 * Makefile.in (amd64obsd-nat.o, amd64obsd-tdep.o): New
9550 dependencies.
9551 * configure.host: Add x86_64-*-openbsd*.
9552 * configure.tgt: Add x86_64-*-openbsd*.
9553 * config/i386/obsd64.mt, config/i386/obsd64.mh: New files.
9554
9555 * tui/tui.c: Don't include <malloc.h>.
9556
9557 * Makefile.in (ALLDEPFILES): Add amd64-nat.c, amd64bsd-nat.c,
9558 amdfbsd-nat.c, amd64-fbsd-tdep.c, amd64nbsd-nat.c and
9559 amd64nbsd-tdep.c.
9560
9561 * i386obsd-tdep.c (i386obsd_aout_regset_from_core_section): Make
9562 static. Remove extraneous whitespace.
9563 * i386nbsd-tdep.c (i386nbsd_aout_regset_from_core_section): Make
9564 static.
9565
9566 2004-02-17 Jim Blandy <jimb@redhat.com>
9567
9568 * findvar.c (value_from_register): Doc fix.
9569
9570 2004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
9571
9572 Committed by Jim Blandy <jimb@redhat.com>.
9573
9574 * eval.c (evaluate_subexp_standard, case OP_OBJC_MSGCALL): Use
9575 CORE_ADDR as type for selectors. Correct types for GNU run time
9576 message lookup function to use double indirection.
9577 * objc-lang.c (lookup_child_selector): Use CORE_ADDR as return type.
9578 * objc-lang.h (lookup_child_selector): Adapt prototype.
9579
9580 * s390-nat.c (SUBOFF): New macro.
9581 (supply_gregset, fill_gregset): Use it to handle debugging
9582 of 32-bit exectuables running under a 64-bit kernel.
9583 * s390-tdep.c: Include "solib-svr4.h".
9584 (s390_svr4_fetch_link_map_offset): New function.
9585 (s390x_svr_fetch_link_map_offset): Likewise.
9586 (s390_gdbarch_init): Call set_solib_svr4_fetch_link_map_offsets.
9587 * Makefile.in (s390-tdep.o): Update dependencies.
9588
9589 * s390-tdep.c: Include "trad-frame.h", "frame-base.h", and
9590 "frame-unwind.h".
9591 (s390_readinstruction): Reformat. Use read_memory_nobpt.
9592 (GDB_TARGET_IS_ESAME, S390_GPR_SIZE, S390_FPR_SIZE): Remove.
9593 (S390_SYSCALL_OPCODE, S390_SYSCALL_SIZE): Remove.
9594 (S390_SIGCONTEXT_SREGS_OFFSET, S390X_SIGCONTEXT_SREGS_OFFSET,
9595 S390_SIGREGS_FP0_OFFSET, S390X_SIGREGS_FP0_OFFSET,
9596 S390_UC_MCONTEXT_OFFSET, S390X_UC_MCONTEXT_OFFSET,
9597 S390_SIGNAL_FRAMESIZE,
9598 s390_NR_sigreturn, s390_NR_rt_sigreturn): Remove.
9599 (struct frame_extra_info): Remove.
9600 (s390_memset_extra_info): Remove.
9601 (op1_ag, op1_ay, op1_brasl, op1_brc, op1_brcl, op1_lay, op1_lg)
9602 (op1_lmy, op1_ly, op1_sg, op1_stmy, op1_sty, op1_sy, op_a)
9603 (op_agr, op_bas, op_bc, op_bcr, op_sgr, op_sr): New opcodes.
9604 (is_rse): Renamed to ...
9605 (is_rsy): ... this. Support long displacements.
9606 (is_rxe): Renamed to ...
9607 (is_rxy): ... this. Support long displacements.
9608 (compute_x_addr): Support long displacements.
9609 (struct s390_prologue_data): New data type.
9610 (s390_on_stack): Change API to use struct s390_prologue_data.
9611 (s390_store): Reimplement.
9612 (s390_load): New function.
9613 (s390_get_signal_frame_info): Remove.
9614 (s390_get_frame_info): Remove, replace by ...
9615 (s390_analyze_prolog): ... this new function.
9616 (s390_check_function_end): Remove.
9617 (s390_function_start): Remove.
9618 (s390_frameless_function_invokation): Remove.
9619 (s390_is_sigreturn): Remove.
9620 (s390_init_frame_pc_first): Remove.
9621 (s390_init_frame_extra_info): Remove.
9622 (s390_frame_init_saved_regs): Remove.
9623 (s390_frame_saved_pc_nofix): Remove.
9624 (s390_frame_saved_pc): Remove.
9625 (s390_frame_chain): Remove.
9626 (s390_fp_regnum, s390_read_fp): Remove.
9627 (s390_pop_frame_regular, s390_pop_frame): Remove.
9628 (s390_saved_pc_after_call): Remove.
9629 (s390_skip_prologue): Reimplement.
9630 (s390_in_function_epilogue_p): Support long displacements.
9631 (struct s390_unwind_cache): New data structure.
9632 (s390_frame_unwind_cache): New function.
9633 (s390_prologue_frame_unwind_cache): Likewise.
9634 (s390_backchain_frame_unwind_cache): Likewise.
9635 (s390_frame_this_id, s390_frame_prev_register): Likewise.
9636 (s390_frame_unwind): Define.
9637 (s390_frame_sniffer): New function.
9638 (struct s390_pltstub_unwind_cache): New data structure.
9639 (s390_pltstub_frame_unwind_cache): New function.
9640 (s390_pltstub_frame_this_id): Likewise.
9641 (s390_pltstub_frame_prev_register): Likewise.
9642 (s390_pltstub_frame_unwind): Define.
9643 (s390_pltstub_frame_sniffer): New function.
9644 (struct s390_sigtramp_unwind_cache): New data structure.
9645 (s390_sigtramp_frame_unwind_cache): New function.
9646 (s390_sigtramp_frame_this_id): Likewise.
9647 (s390_sigtramp_frame_prev_register): Likewise.
9648 (s390_sigtramp_frame_unwind): Define.
9649 (s390_sigtramp_frame_sniffer): New function.
9650 (s390_frame_base_address, s390_local_base_address): New functions.
9651 (s390_frame_base): Define.
9652 (s390_unwind_pc, s390_unwind_sp): New function.
9653 (s390_push_dummy_call): Use new frame base location.
9654 (s390_unwind_dummy_id): Likewise.
9655 (s390_gdbarch_init): Remove calls to:
9656 set_gdbarch_frameless_function_invocation,
9657 set_gdbarch_deprecated_init_frame_pc,
9658 set_gdbarch_deprecated_frame_chain,
9659 set_gdbarch_deprecated_frame_init_saved_regs,
9660 set_gdbarch_deprecated_pop_frame,
9661 set_gdbarch_deprecated_init_extra_frame_info,
9662 set_gdbarch_deprecated_init_frame_pc_first,
9663 set_gdbarch_deprecated_target_read_fp,
9664 set_gdbarch_deprecated_frame_saved_pc,
9665 set_gdbarch_deprecated_saved_pc_after_call,
9666 set_gdbarch_deprecated_fp_regnum.
9667 Add calls to:
9668 set_gdbarch_in_solib_call_trampoline,
9669 frame_unwind_append_sniffer,
9670 frame_base_set_default,
9671 set_gdbarch_unwind_pc,
9672 set_gdbarch_unwind_sp.
9673 * Makefile.in (s390-tdep.o): Update dependencies.
9674
9675 * s390-tdep.c (struct gdbarch_tdep): Add 'abi' member.
9676 (S390_STACK_FRAME_OVERHEAD): Remove.
9677 (S390_STACK_PARAMETER_ALIGNMENT): Remove.
9678 (S390_NUM_FP_PARAMETER_REGISTERS): Remove.
9679 (s390_promote_integer_argument): Remove.
9680 (s390_cannot_extract_struct_value_address): Remove.
9681 (s390_use_struct_convention, s390_store_struct_return): Remove.
9682 (s390_extract_return_value, s390_store_return_value): Remove.
9683 (s390_return_value_convention, s390_return_value): New functions.
9684 (is_float_singleton): Handle typedefs.
9685 (is_double_or_float, is_double_arg, is_simple_arg, pass_by_copy_ref):
9686 Remove, replace by ...
9687 (s390_function_arg_pass_by_reference, s390_function_arg_float,
9688 s390_function_arg_integer): ... these new functions.
9689 (s390_push_arguments, s390_push_return_address): Remove, replace by ...
9690 (s390_push_dummy_call, s390_unwind_dummy_id): ... these new functions.
9691 (s390_gdbarch_init): Remove s390_call_dummy_words and elf_flags.
9692 Fill in tdep->abi.
9693 Remove calls to:
9694 set_gdbarch_deprecated_store_struct_return,
9695 set_gdbarch_deprecated_extract_return_value,
9696 set_gdbarch_deprecated_store_return_value,
9697 set_gdbarch_use_struct_convention,
9698 set_gdbarch_extract_struct_value_address,
9699 set_gdbarch_deprecated_pc_in_call_dummy,
9700 set_gdbarch_deprecated_push_arguments,
9701 set_gdbarch_deprecated_save_dummy_frame_tos,
9702 set_gdbarch_deprecated_push_return_address,
9703 set_gdbarch_deprecated_sizeof_call_dummy_words,
9704 set_gdbarch_deprecated_call_dummy_words,
9705 set_gdbarch_deprecated_dummy_write_sp.
9706 Add calls to:
9707 set_gdbarch_push_dummy_call,
9708 set_gdbarch_unwind_dummy_id,
9709 set_gdbarch_return_value.
9710
9711 * config/s390/nm-linux.h: Update comments.
9712 (target_insert_watchpoint, target_remove_watchpoint): Redefine.
9713 (STOPPED_BY_WATCHPOINT): Redefine.
9714 (TARGET_CAN_USE_HARDWARE_WATCHPOINT): Redefine to 1.
9715 (s390_insert_watchpoint, s390_remove_watchpoint): Update prototype.
9716 (s390_stopped_by_watchpoint): Likewise.
9717 (watch_area_cnt): Remove.
9718 * s390-nat.c: Update comments.
9719 (watch_area): Remove typedef.
9720 Global replace watch_area by struct watch_area.
9721 (watch_area_cnt, watch_lo_addr, watch_hi_addr): Remove.
9722 (s390_stopped_by_watchpoint): Remove pid argument,
9723 use s390_inferior_tid. Add short-cut for the no watchpoint case.
9724 (s390_fix_watch_points): Remove pid argument,
9725 use s390_inferior_tid. Recompute area spanned by watchpoints.
9726 (s390_insert_watchpoint, s390_remove_watchpoint): Remove pid
9727 argument. Reimplement.
9728
9729 * config/s390/nm-linux.h: Update comments. Do not include "solib.h".
9730 (KERNEL_U_ADDR, REGISTER_U_ADDR, U_REGS_OFFSET): Remove.
9731 (FETCH_INFERIOR_REGISTERS): Define.
9732 * config/s390/s390.mh (NATDEPFILES): Remove core-aout.o and
9733 core-regset.o.
9734 * config/s390/s390x.mt: Remove.
9735 * config/s390/tm-s390.h: Remove.
9736 * config/s390/tm-linux.h: Do not include "s390/tm-s390.h".
9737 (TARGET_ELF64): Remove.
9738 (SKIP_TRAMPOLINE_CODE): Do not undefine.
9739 * configure.tgt [s390-*-*, s390x-*-*]: Merge into single
9740 s390*-*-* case; always set gdb_target to s390.
9741 * regformats/reg-s390.dat: Remove control registers.
9742 * regformats/reg-s390x.dat: Likewise.
9743 * s390-tdep.h: New file.
9744 * s390-nat.c: Do not include <asm/processor.h> or <value.h>.
9745 Include "inferior.h" and "s390-tdep.h".
9746 Remove private definition of offsetof.
9747 (s390_register_u_addr): Remove.
9748 (regmap_gregset, regmap_fpregset): Define.
9749 (supply_gregset, fill_gregset): Reimplement.
9750 (supply_fpregset, fill_fpregset): Likewise.
9751 (s390_inferior_tid): New function.
9752 (fetch_regs, store_regs, fetch_fpregs, store_fpregs): Likewise.
9753 (fetch_inferior_registers, store_inferior_registers): Likewise.
9754 * s390-tdep.c: Do not define S390_TDEP. Include "defs.h" instead
9755 of <defs.h>. Include "reggroups.h", "regset.h", and "s390-tdep.h".
9756 Global replace of S390_GP0_REGNUM by S390_R0_REGNUM.
9757 Global replace of S390_FP0_REGNUM by S390_F0_REGNUM.
9758 (struct gdbarch_tdep): Define.
9759 (struct s390_register_info): Define.
9760 (s390_register_info): New variable.
9761 (s390_register_name): Reimplement.
9762 (s390_register_type): New function.
9763 (s390_register_raw_size, s390x_register_raw_size): Remove.
9764 (s390_cannot_fetch_register): Remove.
9765 (s390_register_byte): Remove.
9766 (s390_register_virtual_type, s390x_register_virtual_type): Remove.
9767 (s390_dwarf_regmap): New variable.
9768 (s390_dwarf_reg_to_regnum): New function.
9769 (s390_stab_reg_to_regnum): Remove.
9770 (s390_pseudo_register_read, s390_pseudo_register_write): New functions.
9771 (s390x_pseudo_register_read, s390x_pseudo_register_write): Likewise.
9772 (s390_convert_register_p): Likewise.
9773 (s390_register_to_value, s390_value_to_register): Likewise.
9774 (s390_register_reggroup_p): Likewise.
9775 (s390_regmap_gregset, s390x_regmap_gregset, s390_regmap_fpregset,
9776 s390_gregset, s390x_gregset, s390_fpregset): New variables.
9777 (s390_supply_regset, s390_regset_from_core_section): New functions.
9778 (GDB_TARGET_IS_ESAME): Move here from tm-s390.h.
9779 (S390_FPR_SIZE): Likewise.
9780 (S390_GPR_SIZE): Likewise. Redefine in terms of GDB_TARGET_IS_ESAME.
9781 Global replace of DEPRECATED_REGISTER_SIZE by S390_GPR_SIZE.
9782 (S390_NUM_GPRS): Move here from tm-s390.h.
9783 (S390_NUM_FPRS): Likewise.
9784 (s390_in_function_epilogue_p): New function.
9785 (s390_is_sigreturn): Replace S390_PSW_ADDR_SIZE by S390_GPR_SIZE.
9786 Replace S390_PC_REGNUM by S390_PSWA_REGNUM.
9787 (s390_gdbarch_init): Allocate and set up gdbarch_tdep structure.
9788 Replace s390_stab_reg_to_regnum by s390_dwarf_reg_to_regnum.
9789 Replace S390_FP_REGNUM by S390_SP_REGNUM.
9790 Remove calls to:
9791 set_gdbarch_deprecated_max_register_raw_size,
9792 set_gdbarch_deprecated_max_register_virtual_size,
9793 set_gdbarch_deprecated_register_byte,
9794 set_gdbarch_cannot_fetch_register,
9795 set_gdbarch_cannot_store_register,
9796 set_gdbarch_deprecated_register_size,
9797 set_gdbarch_deprecated_register_raw_size,
9798 set_gdbarch_deprecated_register_virtual_size,
9799 set_gdbarch_deprecated_register_virtual_type,
9800 set_gdbarch_deprecated_register_bytes.
9801 Add calls to:
9802 set_gdbarch_num_pseudo_regs,
9803 set_gdbarch_register_type,
9804 set_gdbarch_convert_register_p,
9805 set_gdbarch_register_to_value,
9806 set_gdbarch_value_to_register,
9807 set_gdbarch_register_reggroup_p,
9808 set_gdbarch_regset_from_core_section,
9809 set_gdbarch_pseudo_register_read,
9810 set_gdbarch_pseudo_register_write,
9811 set_gdbarch_in_function_epilogue_p.
9812 * Makefile.in (s390-nat.o, s390-tdep.o): Update dependencies.
9813 (s390_tdep_h): New variable.
9814
9815 2004-02-17 Jim Blandy <jimb@redhat.com>
9816
9817 * findvar.c (value_from_register): If the type has no length, just
9818 return an acceptable value --- don't report an internal error.
9819
9820 * stabsread.c (read_type): If we find any type numbers that are
9821 forward references, complain if the references aren't resolved by
9822 the time we're finished reading.
9823 (cleanup_undefined_types): Make error message more appropriate for
9824 a complaint.
9825
9826 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
9827
9828 * Makefile.in (defs_h): Remove dependency on progress_h.
9829 * defs.h (QUIT): Remove use of PROGRESS macro. Remove include of
9830 progress.h.
9831 * main.c (captured_main): Delete use of START_PROGRESS and
9832 END_PROGRESS.
9833
9834 2004-02-17 Elena Zannoni <ezannoni@redhat.com>
9835
9836 * objfiles.c (terminate_minimal_symbol_table): Add back
9837 initialization of MSYMBOL_TYPE.
9838
9839 2004-02-17 David Mosberger <davidm@hpl.hp.com>
9840
9841 Committed by Andrew Cagney.
9842 * Makefile.in (ia64_tdep_h): New macro.
9843 (ia64-linux-tdep.o): Mention $(ia64_tdep_h).
9844 (ia64-tdep.o): Likewise.
9845 * ia64-tdep.h: New file.
9846 * ia64-tdep.c: Update copyright notice. Include "ia64-tdep.h".
9847 (ia64_linux_sigcontext_register_address): Move decl to ia64-tdep.h.
9848 (ia64_aix_sigcontext_register_address): Likewise.
9849 (ia64_linux_getunwind_table): Delete declaration.
9850 * ia64-linux-tdep.c: Likewise.
9851
9852 2004-02-17 Corinna Vinschen <vinschen@redhat.com>
9853
9854 * sh-tdep.c (sh_dsp_register_sim_regno): Use DSP_Rx_BANK_REGNUM.
9855 * sh-tdep.h: Rename R0_BANK_REGNUM and R7_BANK_REGNUM to
9856 DSP_R0_BANK_REGNUM and DSP_R7_BANK_REGNUM.
9857
9858 2004-02-17 Andrew Cagney <cagney@redhat.com>
9859
9860 * symtab.c (skip_prologue_using_sal): New function.
9861 * symtab.h (skip_prologue_using_sal): Declare.
9862 * frv-tdep.c: Include "symtab.h".
9863 (skip_prologue_using_sal): Delete function.
9864 * mips-tdep.c (skip_prologue_using_sal): Delete function.
9865 * rs6000-tdep.c (refine_prologue_limit): Mention
9866 skip_prologue_using_sal.
9867 * ia64-tdep.c (refine_prologue_limit): Ditto.
9868 * Makefile.in: Update dependencies.
9869
9870 2004-02-16 Andrew Cagney <cagney@redhat.com>
9871
9872 * config/alpha/tm-nbsd.h: Update copyright, delete #undef
9873 START_INFERIOR_TRAPS_EXPECTED.
9874 * config/alpha/tm-fbsd.h: Update copyright, delete #undef
9875 START_INFERIOR_TRAPS_EXPECTED.
9876 * config/alpha/tm-alphalinux.h (START_INFERIOR_TRAPS_EXPECTED):
9877 Delete macro.
9878 * config/alpha/tm-alpha.h (START_INFERIOR_TRAPS_EXPECTED): Delete
9879 macro, moved to "nm-osf.h". Update copyright.
9880 * config/alpha/nm-osf.h (START_INFERIOR_TRAPS_EXPECTED): Define,
9881 update copyright.
9882
9883 * gdbarch.sh (DEPRECATED_FRAMELESS_FUNCTION_INVOCATION): Predicate
9884 and function replacing FRAMELESS_FUNCTION_INVOCATION.
9885 * blockframe.c (legacy_frameless_look_for_prologue): Rename
9886 frameless_look_for_prologue.
9887 * frame.h (legacy_frameless_look_for_prologue): Rename
9888 frameless_look_for_prologue.
9889 * gdbarch.h, gdbarch.c: Re-generate.
9890 * sh64-tdep.c (sh64_gdbarch_init): Update.
9891 * sh-tdep.c (sh_gdbarch_init): Update.
9892 * s390-tdep.c (s390_gdbarch_init): Update.
9893 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
9894 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
9895 * m68k-tdep.c (m68k_gdbarch_init): Update.
9896 (delta68_frame_args_address): Update.
9897 * m32r-tdep.c (m32r_gdbarch_init): Update.
9898 * hppa-tdep.c (hppa_gdbarch_init): Update.
9899 * h8300-tdep.c (h8300_gdbarch_init): Update.
9900 * frv-tdep.c (frv_gdbarch_init): Update.
9901 (frv_frameless_function_invocation): Update.
9902 * cris-tdep.c (cris_gdbarch_init): Update.
9903 (cris_frameless_function_invocation): Update.
9904 * avr-tdep.c (avr_gdbarch_init): Update.
9905 * arm-tdep.c (arm_gdbarch_init): Update.
9906 * stack.c (frame_info): Update, call predicate.
9907 * rs6000-tdep.c (rs6000_frame_chain): Update, call predicate..
9908 * frame.c (legacy_get_prev_frame): Update, call predicate..
9909 * arch-utils.c (generic_frameless_function_invocation_not): Delete.
9910 * arch-utils.h (generic_frameless_function_invocation_not): Delete.
9911 * alpha-tdep.c (alpha_gdbarch_init): Do not set frameless function
9912 invocation.
9913 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
9914 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
9915 * vax-tdep.c (vax_gdbarch_init): Ditto.
9916
9917 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): Delete unused
9918 function.
9919
9920 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
9921
9922 * objfiles.c (terminate_minimal_symbol_table): Remove unnecessary
9923 initializations.
9924
9925 2004-02-16 Andrew Cagney <cagney@redhat.com>
9926
9927 * tui/tui-windata.c: Include "gdb_string.h".
9928 * tui/tui-source.c, tui/tui-winsource.c: Ditto.
9929 * tui/tui-layout.c, tui/tui-command.c: Ditto.
9930 * Makefile.in: Update dependencies.
9931
9932 2004-02-16 Daniel Jacobowitz <drow@mvista.com>
9933
9934 * Makefile.in (infrun.o): Add $(gdb_assert_h).
9935 * infrun.c: Include "gdb_assert.h".
9936 (singlestep_ptid, saved_singlestep_ptid)
9937 (stepping_past_singlestep_breakpoint): New variables.
9938 (resume): Set singlestep_ptid. Check for singlestep thread
9939 hop.
9940 (init_wait_for_inferior): Clear stepping_past_singlestep_breakpoint.
9941 (handle_inferior_event): Handle singlestep thread hop.
9942
9943 2004-02-16 Andrew Cagney <cagney@redhat.com>
9944
9945 * dwarf2-frame.c (dwarf2_frame_ops): New function.
9946 (dwarf2_frame_set_init_reg): Use, instead of gdbarch_data.
9947 (dwarf2_frame_init_reg): Ditto.
9948
9949 * printcmd.c (display_command): Check that EXP isn't NULL. Fix
9950 suggested by Joshua Neuheisel
9951
9952 * configure.in: Always check for curses, including pdcurses.
9953 Warn, instead of error, when no curses are found. Enable TUI when
9954 curses is available.
9955 * configure: Re-generate.
9956
9957 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
9958
9959 * sh-tdep.c (sh_register_convert_to_virtual): Rename from
9960 sh_sh4_register_convert_to_virtual.
9961 (sh_register_convert_to_raw): Rename from
9962 sh_sh4_register_convert_to_raw.
9963 (sh_pseudo_register_read): Accomodate above name change.
9964 (sh_pseudo_register_write): Ditto.
9965
9966 2004-02-16 Corinna Vinschen <vinschen@redhat.com>
9967
9968 * sh-tdep.c (sh_generic_register_name): Remove.
9969 (sh_gdbarch_init): Use sh_sh_register_name in default case.
9970
9971 2004-02-15 Andrew Cagney <cagney@redhat.com>
9972
9973 * configure.in (build_warnings): Add -Wunused-function.
9974 * configure: Re-generate.
9975
9976 * config/tm-lynx.h (START_INFERIOR_TRAPS_EXPECTED): Delete macro.
9977 * config/rs6000/tm-rs6000.h (START_INFERIOR_TRAPS_EXPECTED): Ditto.
9978
9979 * procfs.c (procfs_init_inferior): Assume that
9980 START_INFERIOR_TRAPS_EXPECTED is defined.
9981 * config/ns32k/nbsdaout.mt (TM_FILE): Set to tm-ns32k.h.
9982 * config/ns32k/tm-nbsd.h: Delete file,
9983 START_INFERIOR_TRAPS_EXPECTED already defined as 2.
9984
9985 * config/vax/tm-vaxbsd.h: Do not include "tm-vax.h".
9986 * config/vax/tm-vax.h: Delete file.
9987
9988 * config/mips/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9989 * config/i386/tm-i386bsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9990 * config/arm/tm-linux.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9991 * config/vax/tm-vaxbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9992 * vax-tdep.c (vax_sigtramp_saved_pc): Inline only reference.
9993 * config/ns32k/tm-nbsd.h (SIGCONTEXT_PC_OFFSET): Delete macro.
9994 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): Inline only reference.
9995
9996 2004-02-15 Mark Kettenis <kettenis@gnu.org>
9997
9998 * dwarf2-frame.h (dwarf2_frame_set_init_reg): New prototype.
9999 * dwarf2-frame.c (dwarf2_frame_data): New variable.
10000 (struct dwarf2_frame_ops): New.
10001 (dwarf2_frame_default_init_reg): New function, based on
10002 dwarf2_frame_init_reg.
10003 (dwarf2_frame_init, dwarf2_frame_set_init_reg): New function.
10004 (dwarf2_frame_init_reg): Call architecture-specific function.
10005 (dwarf2_frame_objfile_data): Renamed from dwarf2_frame_data.
10006 (dwarf2_frame_find_fde, add_fde): Use dwarf2_frame_objfile_data
10007 instead of dwarf2_frame_data.
10008 (_initialize_dwarf2_frame): Initailize new dwarf2_frame_data.
10009 Initialize dwarf2_frame_objfile instead of old dwarf2_frame_data.
10010
10011 2004-02-15 Andrew Cagney <cagney@redhat.com>
10012
10013 * gdbarch.sh (deprecated_register_gdbarch_swap): Rename
10014 register_gdbarch_swap.
10015 (DEPRECATED_REGISTER_GDBARCH_SWAP): Rename REGISTER_GDBARCH_SWAP.
10016 * f-lang.c (_initialize_f_language): Update, use
10017 DEPRECATED_REGISTER_GDBARCH_SWAP.
10018 * remote.c (_initialize_remote): Ditto.
10019 * regcache.c (_initialize_regcache): Ditto.
10020 * parse.c (_initialize_parse): Ditto.
10021 * infrun.c (_initialize_infrun): Ditto.
10022 * mi/mi-main.c (_initialize_mi_main): Ditto.
10023 * gdbtypes.c (_initialize_gdbtypes): Ditto.
10024
10025 * solib.c (solib_map_sections): Use bfd_set_cacheable instead of
10026 poking .cacheable directly.
10027 * symfile.c (symfile_bfd_open): Ditto.
10028
10029 * Makefile.in: Update all dependencies.
10030
10031 * Makefile.in: (.SUFFIXES): Add ".l" and ".y".
10032 (.y.c, .l.c): Specify implicit rule. Instead of .tab.c, generate
10033 .c. Update references. Delete unnecessary .tab.c and -lex.c rules.
10034 (ada-exp.o, c-exp.o, f-exp.o): Replace ada-exp.tab.o et.al. rule.
10035 (jv-exp.o, m2-exp.o, objc-exp.o, p-exp.o): Similar.
10036
10037 2004-02-14 Andrew Cagney <cagney@redhat.com>
10038
10039 * arch-utils.c (legacy_convert_register_p): Check
10040 DEPRECATED_REGISTER_CONVERTIBLE_P.
10041 * findvar.c (value_of_register): Ditto.
10042
10043 * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Add predicate.
10044 * gdbarch.h, gdbarch.c: Re-generate.
10045 * arch-utils.c (deprecated_register_convertible_not): Delete.
10046 * arch-utils.h (deprecated_register_convertible_not): Delete.
10047 * mi/mi-main.c (get_register): Update. Update copyright.
10048 * infcmd.c (default_print_registers_info): Update.
10049
10050 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
10051 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Delete.
10052 (DEPRECATED_CALL_DUMMY_ADDRESS): Delete.
10053 * gdbarch.h, gdbarch.c: Re-generate.
10054 * frame.c (deprecated_get_next_frame_hack): Delete function.
10055 * frame.h (deprecated_get_next_frame_hack): Delete declaration.
10056 * blockframe.c (deprecated_pc_in_call_dummy_at_entry_point):
10057 Update.
10058 * infcall.c (call_function_by_hand): Update.
10059
10060 2004-02-14 Elena Zannoni <ezannoni@redhat.com>
10061
10062 * symfile.c (init_entry_point_info, entry_point_address): Move
10063 from here...
10064 * objfiles.c (init_entry_point_info, entry_point_address):..to
10065 here.
10066 * symfile.h (init_entry_point_info, entry_point_address): Remove
10067 prototypes.
10068 * objfiles.h (init_entry_point_info, entry_point_address):Add
10069 prototypes.
10070 * cris-tdep.c: Remove include of symfile.h. Add include of
10071 objfiles.h.
10072 * infcall.c: Ditto.
10073 * mcore-tdep.c: Ditto.
10074 * mn10300-tdep.c: Ditto.
10075 * sh64-tdep.c: Ditto.
10076 * v850-tdep.c: Ditto.
10077 * arm-tdep.c: Remove include of symfile.h.
10078 * blockframe.c: Ditto.
10079 * coffread.c: Ditto.
10080 * dbxread.c: Ditto.
10081 * dwarf2read.c: Ditto.
10082 * dwarfread.c: Ditto.
10083 * frv-tdep.c: Ditto.
10084 * ia64-tdep.c: Ditto.
10085 * mdebugread.c: Ditto.
10086 * mipsread.c: Ditto.
10087 * rs6000-tdep.c: Ditto.
10088 * s390-tdep.c: Ditto.
10089 * sh-tdep.c: Ditto.
10090 * xstormy16-tdep.c: Ditto.
10091 * gdbarch.sh: Remove include of symfile.h.
10092 * gdbarch.c: Regenerate.
10093 * solib-irix.c (enable_break): Use entry_point_address().
10094 Add comment about include file.
10095 * xcoffread.c: Add comment about include file.
10096 * Makefile.in (arm-tdep.o, blockframe.o, coffread.o, cris-tdep.o)
10097 (dbxread.o, dwarf2read.o, dwarfread.o, frv-tdep.o, gdbarch.o)
10098 (ia64-tdep.o, infcall.o, mcore-tdep.o, mdebugread.o, mipsread.o)
10099 (mn10300-tdep.o, rs6000-nat.o, s390-tdep.o, sh64-tdep.o)
10100 (sh-tdep.o, v850-tdep.o, xstormy16-tdep.o): Update dependencies.
10101
10102 2004-02-13 Andrew Cagney <cagney@redhat.com>
10103
10104 * corelow.c (core_xfer_partial): Use "struct bfd_section".
10105 * config/sparc/nm-nbsd.h (struct target_ops): Declare, update
10106 copyright.
10107 * mips-linux-tdep.c: Use "GNU/Linux", update copyright.
10108
10109 2004-02-12 Fred Fish <fnf@redhat.com>
10110
10111 * m68hc11-tdep.c (m68hc11_gdbarch_init): Remove duplicate call to
10112 set_gdbarch_store_return_value.
10113
10114 2004-02-12 Andrew Cagney <cagney@redhat.com>
10115
10116 * remote-rdi.c (arm_rdi_start_remote): Delete unused function.
10117 (arm_rdi_interrupt, arm_rdi_interrupt_twice): Ditto.
10118 (interrupt_query): Ditto.
10119 (ofunc): Delete unused variable.
10120 * cris-tdep.c (cris_abi): Delete unused function.
10121 (reg_pop_op, move_reg_to_mem_index_inc_op): Ditto.
10122 (cris_get_wide_opcode, cris_get_short_size): Ditto.
10123 (cris_get_asr_quick_shift_steps): Ditto.
10124 (cris_skip_prologue_frameless_p): Ditto.
10125 * arm-tdep.c (arm_push_return_address): Delete unused function.
10126 (arm_push_dummy_frame, arm_fix_call_dummy): Ditto.
10127 * rs6000-tdep.c (rs6000_pc_in_call_dummy): Delete unused function.
10128 * s390-tdep.c (s390_function_start): Delete unused function.
10129
10130 2004-02-12 Andrew Cagney <cagney@redhat.com>
10131
10132 * gdbarch.sh (PROLOGUE_FRAMELESS_P): Delete.
10133 gdbarch.h, gdbarch.c: Re-generate.
10134 * cris-tdep.c (cris_gdbarch_init): Do not set prologue_frameless_p
10135 to generic_prologue_frameless_p.
10136 * arch-utils.h (generic_prologue_frameless_p): Delete declaration.
10137 * arch-utils.c (generic_prologue_frameless_p): Delete function.
10138
10139 2004-02-11 Daniel Jacobowitz <drow@mvista.com>
10140
10141 * mips-linux-tdep.c: Include "frame.h".
10142 (mips_linux_in_dynsym_stub, mips_linux_in_dynsym_resolve_code)
10143 (mips_linux_skip_resolver): New functions.
10144 (mips_linux_init_abi): Call set_gdbarch_skip_solib_resolver
10145 and set_gdbarch_in_solib_call_trampoline.
10146 * mips-tdep.c (mips_gdbarch_init): Move gdbarch_init_osabi call
10147 to after set_gdbarch_in_solib_return_trampoline. Only set the
10148 solib hooks to mips16 functions if the OS ABI is unknown.
10149 * config/mips/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Undefine after
10150 including "config/tm-linux.h".
10151 (IN_SOLIB_DYNSYM_RESOLVE_CODE): Define.
10152 * Makefile.in (mips-linux-tdep.o): Update.
10153
10154 2004-02-11 David Carlton <carlton@kealia.com>
10155
10156 * linespec.c (decode_compound): Only look for a class symbol when
10157 considering all but the rightmost component.
10158
10159 2004-02-11 Andrew Cagney <cagney@redhat.com>
10160
10161 * hppa-tdep.c (hppa_gdbarch_init): Re-order so that the frame and
10162 abi code are are separatly grouped.
10163
10164 2004-02-11 Andrew Cagney <cagney@redhat.com>
10165
10166 * gdbarch.sh (FRAME_ARGS_SKIP): Default to 0.
10167 * gdbarch.h, gdbarch.c: Re-generate.
10168 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
10169 * v850-tdep.c (v850_gdbarch_init): Update.
10170 * sh64-tdep.c (sh64_gdbarch_init): Update.
10171 * sh-tdep.c (sh_gdbarch_init): Update.
10172 * s390-tdep.c (s390_gdbarch_init): Update.
10173 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
10174 * mips-tdep.c (mips_gdbarch_init): Update.
10175 * mcore-tdep.c (mcore_gdbarch_init): Update.
10176 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
10177 * m32r-tdep.c (m32r_gdbarch_init): Update.
10178 * ia64-tdep.c (ia64_gdbarch_init): Update.
10179 * hppa-tdep.c (hppa_gdbarch_init): Update.
10180 * h8300-tdep.c (h8300_gdbarch_init): Update.
10181 * frv-tdep.c (frv_gdbarch_init): Update.
10182 * d10v-tdep.c (d10v_gdbarch_init): Update.
10183 * cris-tdep.c (cris_gdbarch_init): Update.
10184 * avr-tdep.c (avr_gdbarch_init): Update.
10185 * arm-tdep.c (arm_gdbarch_init): Update.
10186 * alpha-tdep.c (alpha_gdbarch_init): Update.
10187
10188 2004-02-11 Corinna Vinschen <vinschen@redhat.com>
10189
10190 * sh-tdep.c (sh_sh3_dsp_register_name): Fix formatting. Add missing
10191 comma.
10192 (sh_sh4al_dsp_register_name): Ditto.
10193
10194 2004-02-10 Andrew Cagney <cagney@redhat.com>
10195
10196 * mips-tdep.c (mips_gdbarch_init): Delete deprecated frame code.
10197 (mips_init_frame_pc_first): Delete function.
10198 (mips_frame_saved_pc): Delete function.
10199 (mips_frame_chain): Delete function.
10200 (mips_init_extra_frame_info): Delete function.
10201 (mips_xfer_register): Delete unused variable "reg".
10202 (mips_n32n64_push_dummy_call): Delete unused variable "valbuf".
10203 (mips_n32n64_return_value): Delete unused variable "reg".
10204 (mips_n32n64_return_value): Delete unused variable "pos".
10205 (mips_o32_push_dummy_call): Delete unused variable "valbuf".
10206 (mips_o32_return_value): Delete unused variable "pos".
10207 (mips_o64_push_dummy_call): Delete unused variable "valbuf".
10208 (mips_print_fp_register): Delete unused variable "namelen"
10209 (mips_print_fp_register): Delete unused variable "flt2"
10210 (get_frame_pointer): Delete function.
10211 (cached_proc_desc): Delete static variable.
10212 (mips_pop_frame): Delete function.
10213 (mips_find_saved_regs): Delete function.
10214 (mips_get_saved_register): Delete function.
10215 (mips_saved_pc_after_call): Delete function.
10216 (SIGFRAME_BASE): Delete macro.
10217 (SIGFRAME_FPREGSAVE_OFF): Delete macro.
10218 (SIGFRAME_PC_OFF): Delete macro.
10219 (SIGFRAME_REGSAVE_OFF): Delete macro.
10220 (mips_dump_tdep): Do not print deleted macro definitions.
10221
10222 2004-02-10 Andrew Cagney <cagney@redhat.com>
10223
10224 * Makefile.in (SFILES): Remove explictly listed tui files.
10225 (SUBDIR_GDBTK_SRCS): Fix path to gdbtk-interp.c.
10226
10227 2004-02-10 Jeff Johnston <jjohnstn@redhat.com>
10228
10229 * ia64-tdep.c (ia64_frame_this_id): Fix tracing print statement
10230 to use paddr functions to format ia64 addresses and long values.
10231 (ia64_frame_prev_register, ia64_sigtramp_frame_this_id): Ditto.
10232 (ia64_sigtramp_frame_prev_register, ia64_access_reg): Ditto.
10233 (get_kernel_table, ia64_find_proc_info_x): Ditto.
10234 (ia64_get_dyn_info_list, ia64_libunwind_this_frame_id): Ditto.
10235 (ia64_libunwind_frame_prev_register, ia64_unwind_dummy_id): Ditto.
10236
10237 2004-02-10 Andrew Cagney <cagney@redhat.com>
10238
10239 * defs.h: Do not include "tui.h".
10240 * gdb_curses.h: New file.
10241 * tui/tui-hooks.h: New file.
10242 * tui/tui.h (tui_update_all_exec_infos): Delete declaration.
10243 (tui_install_hooks, tui_remove_hooks): Delete declarations.
10244 (tui_initialize_io): Delete declaration.
10245 (tui_initialize_readline: Delete redundant declaration.
10246 (struct tui_point): Delete definition.
10247 * tui/tui-data.h (struct tui_point): Define.
10248 * cli/cli-decode.c [TUI]: Include "tui/tui.h".
10249 * utils.c: Include "tui/tui.h".
10250 * tui/tui-data.h: Include "tui/tui.h" and "gdb_curses.h".
10251 * printcmd.c [TUI]: Include "tui/tui.h".
10252 * cli/cli-cmds.c [TUI]: Include "tui/tui.h".
10253 * tui/tui-command.c: Include "gdb_curses.h".
10254 * tui/tui.c, tui/tui-winsource.c, tui/tui-wingeneral.c: Ditto.
10255 * tui/tui-windata.c, tui/tui-win.c, tui/tui-stack.c: Ditto.
10256 * tui/tui-source.c, tui/tui-regs.c, tui/tui-layout.c: Ditto.
10257 * tui/tui-io.c, tui/tui-disasm.c, tui/tui-data.c: : Ditto.
10258 * tui/tui-hooks.c: Include "tui-hooks.h" and "gdb_curses.h".
10259 * Makefile.in: Update all dependencies.
10260 (tui_hooks_h, gdb_curses_h): Define.
10261 (SUBDIR_TUI_CFLAGS): Remove -I${srcdir}/tui.
10262
10263 2004-02-10 Elena Zannoni <ezannoni@redhat.com>
10264
10265 * objfiles.h (struct objfile): Remove unused fields auxf1 and
10266 auxf2. Add comments about some other rarely used fields.
10267
10268 2004-02-10 Andrew Cagney <cagney@redhat.com>
10269
10270 * Makefile.in (init.c): Fix script removing duplicates. Problem
10271 reported by Peter Schauer.
10272
10273 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
10274
10275 * bcache.c (bcache_xmalloc): Use obstack_init instead of
10276 obstack_specify_allocation.
10277 * objfiles.c (allocate_objfile): Ditto.
10278 * solib-sunos.c (solib_add_common_symbols)
10279 (allocate_rt_common_objfile): Ditto.
10280 * symfile.c (reread_symbols): Ditto.
10281 * gdb_obstack.h: Add comment.
10282
10283 2004-02-09 Elena Zannoni <ezannoni@redhat.com>
10284
10285 * linespec.c (decode_line_1, locate_first_half)
10286 (decode_compound, lookup_prefix_sym): Update comments. Delete old
10287 commented out code.
10288
10289 2004-02-09 Daniel Jacobowitz <drow@mvista.com>
10290
10291 * cp-namespace.c (check_one_possible_namespace_symbol): Don't use
10292 obstack_free.
10293
10294 2004-02-09 Andrew Cagney <cagney@redhat.com>
10295
10296 * blockframe.c (find_pc_partial_function): If find_pc_overlay
10297 fails, try find_pc_section. Fix PR c++/1267.
10298 * minsyms.c (lookup_minimal_symbol_by_pc): Use find_pc_section
10299 instead of find_pc_mapped_section.
10300 (lookup_minimal_symbol_by_pc_section): If the SECTION is NULL, do
10301 not default to the section containing PC. Fix PR symtab/1519.
10302
10303 2004-02-09 Andrew Cagney <cagney@redhat.com>
10304
10305 * Makefile.in (mips-tdep.o): Update dependencies.
10306 * mips-tdep.c: Include "frame-unwind.h", "frame-base.h" and
10307 "trad-frame.h".
10308 (mips_unwind_pc): Return the pseudo PC register.
10309 (mips_unwind_dummy_id): New function.
10310 (mips16_fetch_instruction): New function.
10311 (mips32_fetch_instruction): New function.
10312 (struct mips_frame_cache): Define.
10313 (mips_mdebug_frame_cache): New function.
10314 (mips_mdebug_frame_this_id): New function.
10315 (mips_mdebug_frame_prev_register): New function.
10316 (mips_mdebug_frame_unwind): Define.
10317 (mips_mdebug_frame_sniffer): New function.
10318 (mips_mdebug_frame_base_address): New function.
10319 (mips_mdebug_frame_base): Define.
10320 (mips_mdebug_frame_base_sniffer): New function.
10321 (mips_gdbarch_init): Append unwind and base sniffers. Set
10322 unwind_dummy_id.
10323
10324 2004-02-08 Andrew Cagney <cagney@redhat.com>
10325
10326 * frame.c: Print both the register number and name.
10327
10328 * Makefile.in (init.c): Eliminate duplicates. Combine two greps
10329 and a sed into a single sed. Make .c and .o patterns more robust.
10330 (OBS): Delete.
10331 (INIT_FILES): Replace OBS with COMMON_OBS.
10332 (COMMON_OBS): Move DEPFILES and YYOBJ to start of definition.
10333
10334 2004-02-08 Mark Kettenis <kettenis@gnu.org>
10335
10336 * sparc-nat.c (sparc_xfer_wcookie): Try to fetch the cookie using
10337 the PT_WCOOKIE request.
10338
10339 2004-02-08 Andrew Cagney <cagney@redhat.com>
10340
10341 * mips-tdep.c (mips_unwind_pc): New function.
10342 (mips_gdbarch_init): Set mips_unwind_pc.
10343
10344 * frame.c (legacy_saved_regs_this_id): Return a null frame ID.
10345 (get_frame_id): Allow the UNKNOWN_FRAME.
10346 (frame_register_unwind, get_frame_type): Ditto.
10347
10348 * frame.c (legacy_frame_p): Check for DEPRECATED_TARGET_READ_FP_P
10349 and DEPRECATED_FP_REGNUM. Don't assume that the lack of
10350 unwind_dummy_id indicates a legacy frame.
10351
10352 * configure.in (CONFIG_LIB_OBS): Replace with CONFIG_OBS.
10353 * configure: Re-generate.
10354
10355 * mips-tdep.c (mips_gdbarch_init): Group deprecated frame unwind
10356 methods.
10357
10358 2004-02-08 Andrew Cagney <cagney@redhat.com>
10359
10360 * configure.in (CONFIG_ALL): Set to Makefile target, and not
10361 makefile macro.
10362 * configure: Re-generate.
10363 (CONFIG_CLEAN, CONFIG_INSTALL, CONFIG_UNINSTALL): Ditto.
10364 * Makefile.in (SUBDIR_CLI_CLEAN): Delete.
10365 (SUBDIR_CLI_INSTALL, SUBDIR_CLI_UNINSTALL): Delete.
10366 (SUBDIR_CLI_ALL, SUBDIR_GDBTK_ALL): Delete.
10367 (SUBDIR_GDBTK_CLEAN, SUBDIR_GDBTK_INSTALL): Delete.
10368 (SUBDIR_GDBTK_UNINSTALL, SUBDIR_MI_ALL): Delete.
10369 (SUBDIR_MI_CLEAN, SUBDIR_MI_INSTALL): Delete.
10370 (SUBDIR_MI_UNINSTALL, SUBDIR_TUI_ALL): Delete.
10371 (SUBDIR_TUI_CLEAN, SUBDIR_TUI_INSTALL): Delete.
10372 (SUBDIR_TUI_UNINSTALL, SUBDIR_CLI_CLEAN): Delete.
10373
10374 2004-02-07 Andrew Cagney <cagney@redhat.com>
10375
10376 * Makefile.in: Update all dependencies.
10377
10378 * configure.in (CONFIG_INITS, CONFIG_LIB_OBS): Delete.
10379 * configure: Re-generate.
10380 * Makefile.in (INIT_FILES): Replace CONFIG_INITS with CONFIG_SRCS.
10381 (CONFIG_LIB_OBS, CONFIG_INITS): Delete.
10382 (COMMON_OBS): Add "main.o" and "annotate.o".
10383 (ANNOTATE_OBS): Delete.
10384 (OBS): Remove ANNOTATE_OBS.
10385 (DEPFILES): Replace CONFIG_LIB_OBS with CONFIG_LIB_OBS, remove
10386 CONFIG_INITS.
10387 (gdb$(EXEEXT), insight$(EXEEXT)): Do not depend on, or link
10388 against CONFIG_OBS and "main.o".
10389 (SUBDIR_CLI_INITS, SUBDIR_MI_INITS): Delete.
10390 (SUBDIR_TUI_INITS, SUBDIR_GDBTK_INITS): Delete.
10391
10392 * tui/tui-command.c: Include "gdb_string.h", delete register
10393 attribute, use ISO-C function signatures.
10394 * tui/tui-disasm.c, tui/tui-file.c, tui/tui-io.c: Ditto.
10395 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
10396 * tui/tui-stack.c, tui/tui-win.c, tui/tui-winsource.c: Ditto.
10397 * tui/tui.c: Ditto.
10398
10399 * tui/tui-command.c: Change variable and function names to lower
10400 case.
10401 * tui/tui-data.c, tui/tui-disasm.c: Ditto.
10402 * tui/tui-hooks.c, tui/tui-io.c, tui/tui-layout.c: Ditto.
10403 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
10404 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
10405 * tui/tui-winsource.c, tui/tui.c: Ditto.
10406
10407 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
10408
10409 * buildsym.c (free_pending_blocks, finish_block)
10410 (record_pending_block, make_blockvector, end_symtab): Replace
10411 symbol_obstack with objfile_obstack.
10412 * coffread.c (process_coff_symbol, coff_read_struct_type)
10413 (coff_read_enum_type): Ditto.
10414 * cp-namespace.c (initialize_namespace_symtab)
10415 (check_one_possible_namespace_symbol): Ditto.
10416 * dwarf2read.c (new_symbol, dwarf2_const_value, macro_start_file)
10417 (dwarf2_symbol_mark_computed): Ditto.
10418 * dwarfread.c (enum_type, new_symbol, synthesize_typedef): Ditto.
10419 * elfread.c (elf_symtab_read): Ditto.
10420 * hpread.c (hpread_symfile_init, hpread_symfile_init)
10421 (hpread_read_enum_type, hpread_read_function_type)
10422 (hpread_read_doc_function_type, hpread_process_one_debug_symbol):
10423 Ditto.
10424 * jv-lang.c (get_java_class_symtab, add_class_symbol)
10425 (java_link_class_type): Ditto.
10426 * mdebugread.c (parse_symbol, psymtab_to_symtab_1, new_symtab)
10427 (new_symbol): Ditto.
10428 * minsyms.c (install_minimal_symbols): Ditto.
10429 * objfiles.c (allocate_objfile): Remove init of symbol_obstack.
10430 (terminate_minimal_symbol_table): Replace symbol_obstack with
10431 objfile_obstack.
10432 (free_objfile): Remove freeing of symbol_obstack.
10433 * objfiles.h: Remove symbol_obstack field.
10434 * pa64solib.c (add_to_solist): Replace symbol_obstack with
10435 objfile_obstack.
10436 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
10437 symbol_obstack.
10438 (solib_add_common_symbols): Replace symbol_obstack with
10439 objfile_obstack.
10440 * somsolib.c (som_solib_add): Ditto.
10441 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
10442 (common_block_start, common_block_end): Ditto.
10443 * symfile.c (reread_symbols): Remove freeing and init of
10444 symbol_obstack.
10445 (allocate_symtab): Rename symbol_obstack to objfile_obstack.
10446 * symfile.h: Update comment.
10447 * symmisc.c (print_objfile_statistics): Remove symbol_obstack
10448 stats printing.
10449 * symtab.c (symbol_set_names): Replace symbol_obstack with
10450 objfile_obstack.
10451 * symtab.h (struct general_symbol_info, struct minimal_symbol):
10452 Update comments.
10453 * xcoffread.c (read_xcoff_symtab, SYMBOL_DUP, SYMNAME_ALLOC)
10454 (init_stringtab, xcoff_initial_scan): Replace symbol_obstack with
10455 objfile_obstack.
10456
10457 2004-02-07 Andrew Cagney <cagney@redhat.com>
10458
10459 * tui/tui.h: Do not include <stdarg.h>, <string.h>, and
10460 "ansidecl.h". Do not undef "reg" and "chtype". Fix case of
10461 fields and variables.
10462 * tui/tui-wingeneral.h (m_beVisible): Delete macro.
10463 (m_beInvisible): Delete macro.
10464 * tui/tui-data.h: Fix case case fields and variables.
10465 (m_genWinPtrIsNull): Delete macro.
10466 (tui_win_list): Rename winList.
10467 (TUI_SRC_WIN): Rename srcWin.
10468 (TUI_DISASM_WIN): Rename disassemWin.
10469 (TUI_DATA_WIN): Rename dataWin.
10470 (TUI_CMD_WIN): Rename cmdWin.
10471 (m_genWinPtrNotNull): Delete macro.
10472 (m_winPtrIsNull): Delete macro.
10473 (m_winPtrNotNull): Delete macro.
10474 (tui_win_is_source_type): Replace m_winIsSourceType
10475 (tui_win_is_auxillary): Replace m_winIsAuzillary.
10476 (tui_win_has_locator): Replace m_hasLocator.
10477 (tui_set_win_highlight): Replace m_setWinHighlightOn and
10478 m_setWinHighlightOff.
10479 * tui/tui-data.c: Update references.
10480 (tui_win_is_source_type, tui_set_win_highlight): New functions.
10481 (tui_win_has_locator, tui_win_is_auxillary): New functions.
10482 * tui/tui-command.c, tui/tui-disasm.c: Update references.
10483 * tui/tui-io.c, tui/tui-layout.c, tui/tui-regs.c: Ditto.
10484 * tui/tui-regs.h, tui/tui-source.c, tui/tui-stack.c: Ditto.
10485 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
10486 * tui/tui-winsource.c, tui/tui.c: Ditto.
10487
10488 2004-02-07 Mark Kettenis <kettenis@gnu.org>
10489
10490 * sparc-tdep.h (sparc_fetch_wcookie): New prototype.
10491 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): Handle
10492 StackGhost.
10493
10494 * sparc-tdep.c (sparc32_frame_prev_register): Rename local
10495 variable `i6' to `i7'.
10496 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
10497
10498 2004-02-07 Andrew Cagney <cagney@redhat.com>
10499
10500 * tui/tui.h (Opaque, OpaquePtr OpaqueList): Delete definition.
10501 (TuiPoint, TuiPointPtr): Ditto.
10502 (TuiStatus, TuiStatusPtr): Ditto.
10503 (TuiWinType, TuiWinTypePtr): Ditto.
10504 (struct tui_point): Rename _TuiPoint.
10505 (tui_get_low_disassembly_address): Rename
10506 tuiGetLowDisassemblyAddress.
10507 (tui_update_all_exec_infos): Rename tuiUpdateAllExecInfos.
10508 (tuiFree): Delete declaration.
10509 (OpaqueFuncPtr, TuiOpaqueFuncPtr): Delete definitions.
10510 (TuiVoidFuncPtr, TuiIntFuncPtr): Delete definitions.
10511 * tui/tui.c (tuiFree): Delete function.
10512 * cli/cli-cmds.c (disassemble_command): Update references.
10513 * tui/tui-data.c, tui/tui-data.h, tui/tui-disasm.c: Ditto.
10514 * tui/tui-layout.c, tui/tui-regs.c, tui/tui-source.c: Ditto.
10515 * tui/tui-stack.c, tui/tui-win.c, tui/tui-wingeneral.c: Ditto.
10516 * tui/tui-winsource.c: Ditto.
10517
10518 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
10519
10520 * dbxread.c (dbx_symfile_init, start_psymtab, end_psymtab,
10521 coffstab_build_psymtabs, elfstab_build_psymtabs)
10522 (stabsect_build_psymtabs): Replace psymbol_obstack with
10523 objfile_obstack.
10524 * dwarf2-frame.c (decode_frame_entry_1): Ditto.
10525 * dwarf2read.c (dwarf2_build_psymtabs_hard, dwarf2_read_section):
10526 Ditto.
10527 * dwarfread.c (scan_compilation_units): Ditto.
10528 * elfread.c (elfstab_offset_sections): Ditto.
10529 * hppa-tdep.c (read_unwind_info): Ditto.
10530 * hpread.c (hpread_build_psymtabs, hpread_start_psymtab)
10531 (hpread_end_psymtab): Ditto.
10532 * mdebugread.c (mdebug_build_psymtabs, add_pending)
10533 (parse_partial_symbols, new_psymtab, elfmdebug_build_psymtabs):
10534 Ditto.
10535 * mips-tdep.c (non_heuristic_proc_desc): Ditto.
10536 * objfiles.c (add_to_objfile_sections)
10537 (build_objfile_section_table): Ditto.
10538 (allocate_objfile): Remove init of psymbol_obstack.
10539 (free_objfile): Remove freeing of psymbol_obstack.
10540 * objfiles.h (struct objfile): Remove field
10541 psymbol_obstack. Update comments.
10542 * pa64solib.c (pa64_solib_add_solib_objfile): Replace
10543 psymbol_obstack with objfile_obstack.
10544 * solib-sunos.c (allocate_rt_common_objfile): Remove init of
10545 psymbol_obstack.
10546 * somread.c (som_symfile_offsets, init_import_symbols)
10547 (init_export_symbols): Replace psymbol_obstack with
10548 objfile_obstack.
10549 * somsolib.c (som_solib_add_solib_objfile): Ditto.
10550 * symfile.c (default_symfile_offsets, syms_from_objfile)
10551 (reread_symbols): Remove freeing and init of psymbol_obstack.
10552 (cashier_psymtab): Update comment.
10553 * symmisc.c (print_objfile_statistics): Don't report stats for
10554 psymbol obstack.
10555 * symtab.h (struct general_symbol_info, struct partial_symtab):
10556 Update comments.
10557 * xcoffread.c (xcoff_start_psymtab, xcoff_end_psymtab, swap_sym)
10558 (xcoff_symfile_offsets): Replace psymbol_obstack with
10559 objfile_obstack.
10560
10561 2004-02-07 Elena Zannoni <ezannoni@redhat.com>
10562
10563 * objfiles.h (struct objfile): Add objfile_obstack field.
10564 Remove type_obstack field.
10565
10566 * dwarf2read.c (dwarf2_add_field,dwarf2_add_member_fn,
10567 read_structure_scope read_enumeration, new_symbol): Replace
10568 type_obstack with objfile_obstack.
10569 * dwarfread.c (struct_type, enum_type): Ditto.
10570 * gdbtypes.c (alloc_type, alloc_type_instance, init_type)
10571 (lookup_fundamental_type): Ditto.
10572 * gdbtypes.h (TYPE_ALLOC): Ditto.
10573 * hpread.c (hpread_read_enum_type, hpread_read_function_type)
10574 (hpread_read_doc_function_type, hpread_read_struct_type)
10575 (fix_static_member_physnames, hpread_read_array_type)
10576 (hpread_read_subrange_type, hpread_type_lookup): Ditto.
10577 * jv-lang.c (java_lookup_class, type_from_class, type_from_class)
10578 (java_link_class_type): Ditto.
10579 * mdebugread.c (parse_type): Ditto.
10580 * objfiles.c (allocate_objfile, free_objfile): Ditto.
10581 * solib-sunos.c (solib_add_common_symbols): Ditto.
10582 * stabsread.c (define_symbol, read_type, read_member_functions,
10583 read_cpp_abbrev, read_one_struct_field): Ditto.
10584 * symfile.c (reread_symbols): Ditto.
10585 * symmisc.c (print_objfile_statistics): Ditto.
10586
10587 2004-02-07 Andrew Cagney <cagney@redhat.com>
10588
10589 * tui/tui-data.h (tui_win_element): Rename TuiWinElement.
10590 (tui_exec_info_content): Rename TuiExecInfoContent.
10591 (TuiGenWinInfo, TuiGenWinInfoPtr): Delete definitions.
10592 (TuiWinInfo, TuiWinInfoPtr): Ditto.
10593 (TuiScrollDirection, TuiScrollDirectionPtr): Ditto.
10594 (TuiList, TuiListPtr): Ditto.
10595 (TuiLayoutType, TuiLayoutTypePtr): Ditto.
10596 (TuiDataType, TuiDataTypePtr): Ditto.
10597 (TuiRegisterDisplayType, TuiRegisterDisplayTypePtr): Ditto.
10598 (TuiLineOrAddress, TuiLineOrAddressPtr): Ditto.
10599 (TuiLayoutDef, TuiLayoutDefPtr): Ditto.
10600 (TuiSourceElement, TuiSourceElementPtr): Ditto.
10601 (TuiDataElement, TuiDataElementPtr): Ditto.
10602 (TuiWinElement, TuiWinElementPtr): Ditto.
10603 (TuiDataInfo, TuiDataInfoPtr): Ditto.
10604 (TuiCommandElement, TuiCommandElementPtr): Ditto.
10605 (TuiLocatorElement, TuiLocatorElementPtr): Ditto.
10606 (TuiWhichElement, TuiWhichElementPtr): Ditto.
10607 (TuiSourceInfo, TuiSourceInfoPtr): Ditto.
10608 (TuiCommandInfo, TuiCommandInfoPtr): Ditto.
10609 * tui/tui-command.c, tui/tui-data.c: Update references.
10610 * tui/tui-data.h, tui/tui-disasm.c, tui/tui-layout.c: Ditto.
10611 * tui/tui-regs.c, tui/tui-source.c, tui/tui-stack.c: Ditto.
10612 * tui/tui-win.c, tui/tui-windata.c, tui/tui-wingeneral.c: Ditto.
10613 * tui/tui-winsource.c, tui/tui.c: Ditto.
10614
10615 2004-02-07 Mark Kettenis <kettenis@gnu.org>
10616
10617 * dwarf2-frame.h: Update copyright.
10618 (enum dwarf2_frame_reg_rule): New.
10619 (struct dwarf2_frame_state_reg): New.
10620 (dwarf2_frame_sniffer, dwarf2_frame_base_sniffer): Make extern.
10621 * dwarf2-frame.c: Update copyright.
10622 (enum dwarf2_reg_rule): Remove.
10623 (struct dwarf2_frame_state): Remove defenition of `struct
10624 dwarf2_frame_state_reg'.
10625 (read_reg): Call get_frame_arch to get the architecture instead of
10626 using CURRENT_GDBARCH.
10627 (execute_cfa_program): Prefix old `enum dwarf2_reg_rule' tags with
10628 DWARF2_FRAME_.
10629 (dwarf2_frame_init_reg): New function.
10630 (dwarf2_frame_cache): Call get_frame_arch to get the architecture
10631 instead of using CURRENT_GDBARCH. Call dwarf2_frame_init_reg to
10632 initialize the register state. Prefix old `enum dwarf2_reg_rule'
10633 tags with DWARF2_FRAME_.
10634 (dwarf2_frame_prev_register): Call get_frame_arch to get the
10635 architecture instead of using CURRENT_GDBARCH. Prefix old `enum
10636 dwarf2_reg_rule' tags with DWARF2_FRAME_.
10637
10638 2004-02-06 Andrew Cagney <cagney@redhat.com>
10639
10640 * tui/tui-data.h (struct tui_list): Rename _TuiList.
10641 (enum tui_data_type): Rename _TuiDataType.
10642 (struct tui_layout_def): Rename _TuiLayoutDef.
10643 (struct tui_source_element): Rename _TuiSourceElement.
10644 (struct tui_data_element): Rename _TuiDataElement.
10645 (struct tui_command_element): Rename _TuiCommandElement.
10646 (struct tui_locator_element): Rename _TuiLocatorElement.
10647 (union tui_which_element): Define.
10648 (struct tui_win_element): Rename _TuiWinElement.
10649 (struct tui_data_info): Rename _TuiDataInfo.
10650 (struct tui_source_info): Rename _TuiSourceInfo.
10651 (struct tui_command_info): Rename _TuiCommandInfo.
10652 (tui_initialize_static_data): Rename initializeStaticData.
10653 (tui_alloc_generic_win_info): Rename allocGenericWinInfo.
10654 (tui_alloc_win_info): Rename allocWinInfo.
10655 (tui_init_generic_part): Rename initGenericPart.
10656 (tui_init_win_info): Rename initWinInfo.
10657 (tui_alloc_content): Rename allocContent.
10658 (tui_add_content_elements): Rename addContentElements.
10659 (tui_init_content_element): Rename initContentElement.
10660 (tui_free_window): Rename freeWindow.
10661 (tui_free_win_content): Rename freeWinContent.
10662 (tui_free_data_content): Rename freeDataContent.
10663 (tui_free_all_source_wins_content): Rename
10664 freeAllSourceWinsContent.
10665 (tui_del_window): Rename tuiDelWindow.
10666 (tui_del_data_windows): Rename tuiDelDataWindows.
10667 (tui_partial_win_by_name): Rename partialWinByName.
10668 (tui_win_name): Rename winName.
10669 (tui_current_layout): Rename currentLayout.
10670 (tui_set_current_layout_to): Rename setCurrentLayoutTo.
10671 (tui_term_height): Rename termHeight.
10672 (tui_set_term_height_to): Rename setTermHeightTo.
10673 (tui_term_width): Rename termWidth.
10674 (tui_set_term_width_to): Rename setTermWidthTo.
10675 (tui_set_gen_win_origin): Rename setGenWinOrigin.
10676 (tui_locator_win_info_ptr): Rename locatorWinInfoPtr.
10677 (tui_source_exec_info_win_ptr): Rename tui_gen_win_info.
10678 (tui_disassem_exec_info_win_ptr): Rename disassemExecInfoWinPtr.
10679 (tui_source_windows): Rename sourceWindows.
10680 (tui_clear_source_windows): Rename clearSourceWindows.
10681 (tui_clear_source_windows_detail): Rename
10682 clearSourceWindowsDetail.
10683 (tui_clear_win_detail): Rename clearWinDetail.
10684 (tui_add_to_source_windows): Rename tuiAddToSourceWindows.
10685 (tui_default_tab_len): Rename tuiDefaultTabLen.
10686 (tui_set_default_tab_len): Rename tuiSetDefaultTabLen.
10687 (tui_win_with_focus): Rename tuiWinWithFocus.
10688 (tui_set_win_with_focus): Rename tuiSetWinWithFocus.
10689 (tui_layout_def): Rename tuiLayoutDef.
10690 (tui_win_resized): Rename tuiWinResized.
10691 (tui_set_win_resized_to): Rename tuiSetWinResizedTo.
10692 (tui_next_win): Rename tuiNextWin.
10693 (tui_prev_win): Rename tuiPrevWin.
10694 (tui_add_to_source_windows): Rename addToSourceWindows.
10695 * tui/tui-winsource.c, tui/tui-win.c: Update references.
10696 * tui/tui-layout.c, tui/tui-source.c: Ditto.
10697 * tui/tui-stack.c, tui/tui-io.c: Ditto.
10698 * tui/tui.c, tui/tui-data.c: Ditto.
10699 * tui/tui-interp.c, tui/tui-data.c: Ditto.
10700 * tui/tui-disasm.c, tui/tui-command.c: Ditto.
10701
10702 * tui/tui-source.h: Update copyright. Include "tui-data.h".
10703 (struct symtab): Declare.
10704 (tui_set_source_content): Rename tuiSetSourceContent.
10705 (tui_show_symtab_source): Rename tuiShowSource.
10706 (tui_source_is_displayed): Rename tuiSourceIsDisplayed.
10707 (tui_vertical_source_scroll): Rename tuiVerticalSourceScroll.
10708 * tui/tui-source.c: Update copyright. Update references.
10709 * tui/tui-win.c, tui/tui-winsource.c: Update references.
10710 * tui/tui-stack.c: Update references.
10711
10712 * tui/tui-win.h: Update copyright. Include "tui-data.h".
10713 (struct tui_win_info): Declare.
10714 (tui_scroll_forward): Rename tuiScrollForward.
10715 (tui_scroll_backward): Rename tuiScrollBackward.
10716 (tui_scroll_left): Rename tuiScrollLeft.
10717 (tui_scroll_right): Rename tuiScrollRight.
10718 (tui_set_win_focus_to): Rename tuiSetWinFocusTo.
10719 (tui_resize_all): Rename tuiResizeAll.
10720 (tui_refresh_all_win): Rename tuiRefreshAll.
10721 (tui_sigwinch_handler): Rename tuiSigwinchHandler.
10722 * tui/tui-layout.c, * tui/tui-io.c: Update references.
10723 * tui/tui-wingeneral.h, * tui/tui.c: Update references.
10724 * tui/tui-disasm.c, * tui/tui-command.c: Update references.
10725
10726 * tui/tui-windata.h: Update copyright. Include "tui-data.h".
10727 (tui_erase_data_content): Rename tuiEraseDataContent.
10728 (tui_display_all_data): Rename tuiDisplayAllData.
10729 (tui_check_data_values): Rename tuiCheckDataValues.
10730 (tui_display_data_from_line): Rename tuiDisplayDataFromLine.
10731 (tui_first_data_item_displayed): Rename tuiFirstDataItemDisplayed.
10732 (tui_first_data_element_no_in_line): Rename
10733 tuiFirstDataElementNoInLine.
10734 (tui_delete_data_content_windows): Rename
10735 tuiDeleteDataContentWindows.
10736 (tui_refresh_data_win): Rename tuiRefreshDataWin.
10737 (tui_display_data_from): Rename tuiDisplayDataFrom.
10738 (tui_vertical_data_scroll): Rename tuiVerticalDataScroll.
10739 * tui/tui-windata.c, tui/tui-hooks.c: Update references.
10740 * tui/tui-win.c, tui/tui-regs.c: Update references.
10741 * tui/tui-layout.c, tui/tui.c: Update references.
10742
10743 * tui/tui-wingeneral.h: Update copyright.
10744 (m_allBeVisible): Delete macro.
10745 (m_allBeInvisible): Delete macro.
10746 (struct tui_gen_win_info): Declare.
10747 (struct tui_win_info): Declare.
10748 (tui_unhighlight_win): Rename unhighlightWin.
10749 (tui_make_visible, tui_make_invisible): Replace makeVisible.
10750 (tui_make_all_visible, tui_make_all_invisible): Replace makeAllVisible.
10751 (tui_make_window): Rename makeWindow.
10752 (tui_copy_win): Rename copyWin.
10753 (tui_box_win): Rename boxWin.
10754 (tui_highlight_win): Rename highlightWin.
10755 (tui_check_and_display_highlight_if_needed): Rename
10756 checkAndDisplayHighlightIfNeeded.
10757 (tui_refresh_all): Rename refreshAll.
10758 (tui_delete_win): Rename tuiDelwin.
10759 (tui_refresh_win): Rename tuiRefreshWin.
10760 * tui/tui-wingeneral.c (make_visible): Rename makeVisible.
10761 (tui_make_visible, tui_make_invisible): New functions.
10762 (tui_make_all_visible, tui_make_all_invisible): New functions.
10763 (make_all_visible): Rename makeAllVisible.
10764 * tui/tui-winsource.c, tui/tui-windata.c: Update references.
10765 * tui/tui-data.c, tui/tui-winsource.c: Update references.
10766 * tui/tui-windata.c, tui/tui-win.c: Update references.
10767 * tui/tui-regs.c, tui/tui-layout.c: Update references.
10768 * tui/tui-data.h (struct tui_gen_win_info): Rename _TuiGenWinInfo.
10769
10770 2004-02-06 Mark Kettenis <kettenis@gnu.org>
10771
10772 * proc-api.c (write_with_trace): Initialize local variable to
10773 silence compiler warning.
10774
10775 2004-02-06 Andrew Cagney <cagney@redhat.com>
10776
10777 * tui/tui-source.h: Do not include "defs.h".
10778 (struct tui_win_info): Declare.
10779 (tui_set_source_content_nil): Declare.
10780 * tui/tui-data.h (struct tui_win_info): Rename _TuiWinInfo.
10781 (union tui_line_or_address): Rename _TuiLineOrAddress.
10782 * tui/tui-winsource.h: Update copyright. Include "tui-data.h".
10783 (tui_update_source_window): Rename tuiUpdateSourceWindow.
10784 (tui_update_source_window_as_is): Rename
10785 tuiUpdateSourceWindowAsIs.
10786 (tui_update_source_windows_with_addr): Rename
10787 tuiUpdateSourceWindowsWithAddr.
10788 (tui_update_source_windows_with_line): Rename
10789 tuiUpdateSourceWindowsWithLine.
10790 (tui_clear_source_content): Rename tuiClearSourceContent.
10791 (tui_erase_source_content): Rename tuiEraseSourceContent.
10792 (tui_set_source_content_nil): Rename tuiSetSourceContentNil.
10793 (tui_show_source_content): Rename tuiShowSourceContent.
10794 (tui_horizontal_source_scroll): Rename tuiHorizontalSourceScroll.
10795 (tui_set_exec_info_content): Rename tuiSetExecInfoContent.
10796 (tui_show_exec_info_content): Rename tuiShowExecInfoContent.
10797 (tui_erase_exec_info_content): Rename tuiEraseExecInfoContent.
10798 (tui_clear_exec_info_content): Rename tuiClearExecInfoContent.
10799 (tui_update_exec_info): Rename tuiUpdateExecInfo.
10800 (tui_set_is_exec_point_at): Rename tuiSetIsExecPointAt.
10801 (tui_alloc_source_buffer): Rename tuiAllocSourceBuffer.
10802 (tui_line_is_displayed): Rename tuiLineIsDisplayed.
10803 (tui_addr_is_displayed): Rename tuiAddrIsDisplayed.
10804 (struct tui_win_info): Declare.
10805 * tui/tui-stack.c: Update references.
10806 * tui/tui-layout.c, tui/tui-winsource.c: Ditto.
10807 * tui/tui-win.c, tui/tui-source.c: Ditto.
10808 * tui/tui.c, tui/tui-disasm.c: Ditto.
10809
10810 2004-02-06 Mark Kettenis <kettenis@gnu.org>
10811
10812 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Fix calculation
10813 of UCONTEXT_ADDR. Fixes PR backtrace/1545.
10814
10815 2004-02-05 Mark Kettenis <kettenis@gnu.org>
10816
10817 * infrun.c (handle_inferior_event): Allow for breakpoint
10818 instructions to generate a SIGSEGV in addition to SIGTRAP, SIGILL
10819 and SIGEMT. Update comments.
10820 * NEWS (Revised SPARC target): Mention support for non-executable
10821 stack.
10822
10823 2004-02-04 Mark Kettenis <kettenis@gnu.org>
10824
10825 * target.h (target_object): Add TARGET_OBJECT_WCOOKIE.
10826 * inftarg.c: Update copyright year.
10827 (child_xfer_partial): Add support for TARGET_OBJECT_WCOOKIE.
10828 * sparc-nat.c: Include "target.h" and "gdb_assert.h".
10829 (sparc_xfer_wcookie): New function.
10830 * sparc-tdep.c (sparc_fetch_wcookie): New function.
10831 * Makefile.in (sparc-nat.o): Update dependencies.
10832 * config/sparc/nm-nbsd.h: Include "target.h".
10833 (NATIVE_XFER_WCOOKIE): New define.
10834 (sparc_xfer_wcookie): New prototype.
10835
10836 2004-02-04 Andrew Cagney <cagney@redhat.com>
10837
10838 * m68k-tdep.c (m68k_saved_pc_after_call): Delete #ifdef
10839 SYSCALL_TRAP function.
10840 (m68k_gdbarch_init): Delete #ifdef SYSCALL_TRAP code.
10841
10842 2004-02-04 Andrew Cagney <cagney@redhat.com>
10843 Daniel Jacobowitz <drow@mvista.com>
10844
10845 * objfiles.h: Delete comments refering to inside_entry_func and
10846 DEPRECATED_FRAME_CHAIN_VALID.
10847 * defs.h (inside_entry_func): Update prototype..
10848 * blockframe.c (inside_entry_func): Rename to
10849 legacy_inside_entry_func. Add new inside_entry_func taking a frame.
10850 * frame.c (get_prev_frame): Pass the frame to inside_entry_func.
10851
10852 2004-02-03 Jeff Johnston <jjohnstn@redhat.com>
10853
10854 * breakpoint.c (struct captured_parse_breakpoint_args): Move
10855 outside of #ifdef SOLIB_ADD region.
10856 (do_restore_lang_radix_cleanup): Ditto.
10857 (resolve_pending_breakpoint): Ditto.
10858
10859 2004-02-03 Andrew Cagney <cagney@redhat.com>
10860
10861 * ia64-tdep.c (read_sigcontext_register): Delete unused function.
10862 (process_note_abi_tag_sections): Delete unused function.
10863 (ia64_read_fp): Delete unused function.
10864 (gdbarch_extract_struct_value_address): Delete declaration.
10865
10866 2004-02-02 Andrew Cagney <cagney@redhat.com>
10867
10868 * vax-tdep.c (vax_frame_chain): Delete call to
10869 deprecated_inside_entry_file.
10870 * ns32k-tdep.c (ns32k_frame_chain): Ditto.
10871
10872 2004-02-02 Mark Kettenis <kettenis@gnu.org>
10873
10874 * dwarf2-frame.c (dwarf2_frame_cache): Deal with a return address
10875 column that's "empty" or "same value" when eliminating REG_RA
10876 rules.
10877
10878 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
10879
10880 * NEWS: Add information about new pending breakpoint support.
10881
10882 2004-02-02 Jeff Johnston <jjohnstn@redhat.com>
10883
10884 * breakpoint.h (struct breakpoint): Add new flag, from_tty,
10885 and pending fields for pending breakpoint support.
10886 * breakpoint.c (breakpoint_enabled): Add check for not pending.
10887 (condition_command): Only parse condition if not a pending
10888 breakpoint.
10889 (print_one_breakpoint): Add support for pending breakpoints.
10890 (describe_other_breakpoints): Add checks to verify we are not
10891 dealing with pending breakpoints.
10892 (check_duplicates): Don't check pending breakpoints.
10893 (set_raw_breakpoint): Initialize pending flag.
10894 (do_restore_lang_radix_cleanup): New cleanup routine.
10895 (resolve_pending_breakpoint): New function.
10896 (re_enable_breakpoints_in_shlibs): Try and resolve any
10897 pending breakpoints via resolve_pending_breakpoint.
10898 (mention): Add pending breakpoint support.
10899 (parse_breakpoint_sals): Add new parameter to pass to
10900 decode_line_1 to indicate silent errors when files or functions
10901 are not found. Change all callers.
10902 (do_captured_parse_breakpoint): New function.
10903 (break_command_1): Change prototype to return an rc value and to
10904 take an optional pending breakpoint pointer. Support creating
10905 a pending breakpoint if a "not found" form of error occurs when
10906 parsing the breakpoint. Also support resolving an existing pending
10907 breakpoint and be silent if the resolution fails.
10908 (create_breakpoints): Change prototype to take pending breakpoint
10909 pointer. When resolving a pending breakpoint, use the new pointer
10910 to provide a conditional or commands added by the end-user.
10911 (delete_breakpoint): Add appropriate check for pending.
10912 (breakpoint_re_set_one): Ditto.
10913 (do_enable_breakpoint): Ditto.
10914
10915 2004-02-02 David Carlton <carlton@kealia.com>
10916
10917 * valops.c (enum oload_classification): New.
10918 (find_overload_match): Break implementation into separate
10919 functions; delete #if 0'd code; look for symbols within
10920 namespaces.
10921 (find_oload_champ_namespace,find_oload_champ_namespace_loop)
10922 (find_oload_champ,oload_method_static,classify_oload_match): New.
10923 * cp-support.h: Add declaration for cp_func_name; update
10924 declaration for make_symbol_overload_list.
10925 * cp-support.c (cp_func_name): New.
10926 (overload_list_add_symbol): Fix comment, use
10927 SYMBOL_LINKAGE_NAME and SYMBOL_NATURAL_NAME.
10928 (make_symbol_overload_list): Take a function name and a namespace
10929 instead of a symbol; change implementation.
10930 (make_symbol_overload_list_using): New.
10931 (make_symbol_overload_list_qualified, read_in_psymtabs): New.
10932
10933 2004-02-02 Fred Fish <fnf@redhat.com>
10934
10935 * main.c (gdb_stdtarg): Move definition to group with other
10936 gdb_stdtarg definitions and update copyright years.
10937 * remote-sim.c (gdb_os_write_stderr): Write output to
10938 gdb_stdtargerr stream instead of gdb_stdtarg stream.
10939 (gdb_os_flush_stderr): Flush gdb_stdtargerr steam instead of
10940 gdb_stderr stream and update copyright years.
10941
10942 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
10943
10944 * Makefile.in (mips-linux-nat.o): Update dependencies.
10945 * mips-linux-nat.c: Include mips-tdep.h.
10946
10947 2004-02-01 Roland McGrath <roland@redhat.com>
10948
10949 * sol-thread.c (sol_thread_xfer_partial): New function.
10950 (init_sol_thread_ops): Use that for to_xfer_partial hook.
10951 (init_sol_core_ops): Likewise.
10952
10953 * procfs.c (procfs_xfer_partial): New function.
10954 (init_procfs_ops): Use that for procfs_ops.to_xfer_partial.
10955 * Makefile.in (procfs.o): Add $(auxv_h) dep.
10956
10957 * config/nm-linux.h (NATIVE_XFER_AUXV): New macro, uses auxv.c's
10958 procfs_xfer_auxv function.
10959
10960 * procfs.c (procfs_make_note_section): If we can read
10961 TARGET_OBJECT_AUXV data, add an NT_AUXV note containing it.
10962 * linux-proc.c (linux_make_note_section): Likewise.
10963
10964 * auxv.h: New file.
10965 * auxv.c: New file.
10966 * Makefile.in (auxv_h): New variable.
10967 (COMMON_OBS): Add auxv.o here.
10968 (auxv.o): New target.
10969
10970 * corelow.c (core_xfer_partial): New function.
10971 (init_core_ops): Use it for core_ops.to_xfer_partial.
10972
10973 * target.h (enum target_object): Add TARGET_OBJECT_AUXV.
10974 * inftarg.c (child_xfer_partial): Support it using NATIVE_XFER_AUXV
10975 macro if that is defined.
10976
10977 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
10978
10979 * breakpoint.c (bpstat_stop_status): Take a ptid_t argument,
10980 and check the specified thread for each breakpoint.
10981 * breakpoint.h (bpstat_stop_status): Update prototype.
10982 * infrun.c (handle_inferior_event): Update calls to
10983 bpstat_stop_status.
10984
10985 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
10986
10987 * Makefile.in (cli-cmds.o): Add $(readline_h).
10988
10989 2004-02-01 Daniel Jacobowitz <drow@mvista.com>
10990
10991 * cli/cli-cmds.c: Include readline.h.
10992 (complete_command): Pass the start of the last word to
10993 complete_line.
10994
10995 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
10996
10997 * breakpoint.c (bpstat_stop_status): Remove not_a_sw_breakpoint
10998 argument, and change first argument to a CORE_ADDR.
10999 * breakpoint.h (bpstat_stop_status): Update prototype.
11000 * infrun.c (adjust_pc_after_break): Add a new comment.
11001 (handle_inferior_event): Update calls to bpstat_stop_status.
11002
11003 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
11004
11005 * breakpoint.h: Update copyright years.
11006
11007 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
11008
11009 * breakpoint.c (software_breakpoint_inserted_here_p): New function.
11010 (bpstat_stop_status): Don't decrement PC.
11011 * breakpoint.h (software_breakpoint_inserted_here_p): Add
11012 prototype.
11013 * infrun.c (adjust_pc_after_break): New function.
11014 (handle_inferior_event): Call it, early. Remove later references
11015 to DECR_PC_AFTER_BREAK.
11016 (normal_stop): Add commentary.
11017
11018 2004-01-31 Daniel Jacobowitz <drow@mvista.com>
11019
11020 * breakpoint.c (breakpoint_re_set_one): Add missing chunk of
11021 2004-01-27 double-free fix.
11022
11023 2004-01-31 Mark Kettenis <kettenis@gnu.org>
11024
11025 * sparc-tdep.c (sparc_fetch_wcookie): New function.
11026 (sparc32_frame_prev_register): Handle StackGhost.
11027 (sparc_supply_rwindow, sparc_collect_rwindow): Likewise.
11028
11029 2004-01-29 Roland McGrath <roland@redhat.com>
11030
11031 * configure.in (NEW_PROC_API): Also match solaris2.9 for this test.
11032 * configure: Regenerated.
11033
11034 * procfs.c: Include gdb_string.h for str* decls, otherwise warnings.
11035 * Makefile.in (procfs.o): Add dep.
11036
11037 2004-01-28 Andrew Cagney <cagney@redhat.com>
11038
11039 * tui/tui-stack.h: Update copyright.
11040 (struct frame_info): Add opaque declaration.
11041 (tui_update_locator_filename): Rename tuiUpdateLocatorFilename.
11042 (tui_show_locator_content): Rename tuiShowLocatorContent.
11043 (tui_show_frame_info): Rename tuiShowFrameInfo.
11044 * tui/tui-stack.c: Update copyright. Update references.
11045 * tui/tui-winsource.c: Update references.
11046 * tui/tui-win.c: Update references.
11047 * tui/tui-layout.c: Update references.
11048 * tui/tui-hooks.c: Update copyright, update references.
11049 * tui/tui.c: Update copyright, update references.
11050 * tui/tui-disasm.c: Update references.
11051
11052 2004-01-28 David Carlton <carlton@kealia.com>
11053
11054 * dwarf2read.c (add_partial_structure): Use demangled name if
11055 namespace equals "".
11056
11057 2004-01-27 Jim Blandy <jimb@redhat.com>
11058
11059 Clean up misapplied patch:
11060 * dwarf2read.c (determine_prefix): Change one of the two forward
11061 declarations for 'determine_prefix_aux' to a declaration for this.
11062 (read_func_scope): Use cu->language, not cu_language. Pass 'cu'
11063 argument to 'die_specification'.
11064
11065 * dwarf2read.c (read_func_scope): Re-indent comment.
11066
11067 2004-01-27 Paul N. Hilfinger <hilfinger@gnat.com>
11068
11069 * breakpoint.c (breakpoint_re_set_one): Set b->cond, b->val, and
11070 b->exp to NULL after freeing so that error during re-parsing or
11071 evaluation of expressions associated with breakpoint don't
11072 eventually lead to re-freeing of storage.
11073 Committed by Andrew Cagney.
11074
11075 2004-01-27 Andrew Cagney <cagney@redhat.com>
11076
11077 * source.c (ambiguous_line_spec): Delete undefined declaration.
11078 * m32r-rom.c (m32r_set_board_address): Delete unused function.
11079 (m32r_set_server_address, m32r_set_download_path): Ditto.
11080 * remote-fileio.c (remote_fileio_to_fio_int): Ditto.
11081
11082 2004-01-27 Daniel Jacobowitz <drow@mvista.com>
11083
11084 * dwarf2read.c: Update calls to changed and renamed functions, and
11085 references to moved variables.
11086
11087 (struct dwarf2_cu): Add first_fn, last_fn, cached_fn,
11088 language, language_defn, list_in_scope, and ftypes members.
11089 (cu_first_fn, cu_last_fn, cu_cached_fn, cu_language)
11090 (cu_language_defn, list_in_scope, ftypes, cu_header_offset)
11091 (baseaddr): Remove globals.
11092
11093 (dwarf_attr): Renamed to dwarf2_attr. Add CU argument.
11094 (set_cu_language, die_is_declaration, die_specification)
11095 (determine_prefix, determin_prefix_aux, class_name, namespace_name)
11096 (dwarf2_linkage_name, dwarf2_name, dwarf2_extension)
11097 (dwarf2_get_ref_die_offset, dwarf2_fundamental_type)
11098 (initialize_cu_func_list, add_to_cu_func_list): Add CU argument.
11099
11100 (dwarf2_build_psymtabs_hard): Add local baseaddr. Initialize
11101 cu.list_in_scope. Don't initialize cu_header_offset.
11102 (add_partial_symbol): Add local baseaddr.
11103 (psymtab_to_symtab_1): Add local baseaddr. Use
11104 objfile->section_offsets for consistency. Don't initialize
11105 cu_header_offset; do initialize cu.header.offset and
11106 cu.list_in_scope.
11107 (read_file_scope, read_func_scope, read_lexical_block_scope)
11108 (dwarf_decode_lines, new_symbol): Add local baseaddr.
11109
11110 2004-01-27 Michael Chastain <mec.gnu@mindspring.com>
11111
11112 * PROBLEMS: Add gdb/1516.
11113
11114 2003-12-29 Robert Millan <robertmh@gnu.org>
11115
11116 Patch committed by Andrw Cagney.
11117 * configure.host: Match knetbsd*-gnu and kfreebsd*-gnu.
11118 * configure.tgt: Match knetbsd*-gnu.
11119
11120 2004-01-26 Andrew Cagney <cagney@redhat.com>
11121
11122 * breakpoint.c (catch_command_1): Delete #ifdef code.
11123 (catch_fork_command_1): Delete #ifdef wrapper.
11124 (catch_exec_command_1): Ditto.
11125 (catch_load_command_1): Ditto.
11126 (catch_unload_command_1): Ditto.
11127
11128 * breakpoint.c (watchpoint_check): Delete #if0ed variable.
11129 (catch_breakpoint): Delete #if0ed function.
11130 (disable_catch_breakpoint): Ditto.
11131 (delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
11132 (disable_catch, enable_catch, delete_catch): Ditto.
11133
11134 2004-01-26 Andrew Cagney <cagney@redhat.com>
11135
11136 * remote.c (echo_check, quit_flag): Delete variables.
11137 (cisco_kernel_mode): Delete variable.
11138 (minitelnet_return, tty_input, escape_count): Delete variables.
11139 (remote_cisco_mode): Delete variable.
11140 (remote_cisco_open, remote_cisco_close): Delete function.
11141 (remote_cisco_mourn, remote_cisco_wait): Delete function.
11142 (init_remote_cisco_ops): Delete function.
11143 (_initialize_remote): Do not install "remote cisco" code.
11144 (read_frame): Delete cisco specific code.
11145 (remote_info_process): Delete function.
11146 (remote_wait): Delete cisco specific code.
11147 (remote_cisco_section_offsets): Delete function.
11148 (remote_cisco_objfile_relocate): Delete function.
11149 (remote_async_wait): Delete cisco specific code.
11150 (minitelnet, readtty, readsocket): Delete function.
11151
11152 2004-01-26 Andrew Cagney <cagney@redhat.com>
11153
11154 * gdbarch.sh (EXTRACT_STRUCT_VALUE_ADDRESS): Deprecate. Add
11155 comments mentioning extract_returned_value_address.
11156 * infcmd.c (print_return_value): Update. Add comments on
11157 extract_returned_value_address.
11158 * stack.c (return_command): Add comments on
11159 extract_returned_value_address.
11160 * values.c: Update comment.
11161 * m32r-tdep.c: Update comment.
11162 * sparc-tdep.c: Update comment.
11163 * ia64-tdep.c (ia64_use_struct_convention): Update comment.
11164 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
11165 * sh64-tdep.c (sh64_gdbarch_init): Update.
11166 * sh-tdep.c (sh_gdbarch_init): Update.
11167 * s390-tdep.c (s390_gdbarch_init): Update.
11168 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
11169 * m68klinux-tdep.c (m68k_linux_init_abi): Update.
11170 * m68k-tdep.c (m68k_gdbarch_init): Update.
11171 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
11172 * m32r-tdep.c (m32r_gdbarch_init): Update.
11173 * ia64-tdep.c (ia64_gdbarch_init): Update.
11174 * h8300-tdep.c (h8300_gdbarch_init): Update.
11175 * frv-tdep.c (frv_gdbarch_init): Update.
11176 * arm-tdep.c (arm_gdbarch_init): Update.
11177 * alpha-tdep.c (alpha_gdbarch_init): Update.
11178
11179 2004-01-26 Andrew Cagney <cagney@redhat.com>
11180
11181 * dwarf2loc.c (dwarf_expr_frame_base): Use SYMBOL_OPS instead of
11182 SYMBOL_LOCATION_FUNCS
11183 (dwarf2_loclist_funcs, dwarf2_locexpr_funcs): Change type to
11184 "struct symbol_ops".
11185 * dwarf2loc.h (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Change
11186 type to "struct symbol_ops".
11187 * symtab.h (struct symbol_ops): Rename "struct location_funcs".
11188 (struct symbol): Replace ".aux_value.loc.funcs" and
11189 ".aux_value.loc.baton" with ".ops" and ".aux_value.ptr".
11190 (SYMBOL_OBJFILE): Delete macro.
11191 (SYMBOL_LOCATION_FUNCS): Delete macro.
11192 (SYMBOL_LOCATION_BATON): Update.
11193 * dwarf2read.c (dwarf2_symbol_mark_computed): Set SYMBOL_OPS
11194 intead of SYMBOL_LOCATION_FUNCS.
11195 * ax-gdb.c (gen_var_ref): Ditto.
11196 * printcmd.c (address_info): Ditto.
11197 * findvar.c (read_var_value): Ditto.
11198 (symbol_read_needs_frame): Ditto.
11199
11200 2004-01-26 Andrew Cagney <cagney@redhat.com>
11201
11202 * dwarf2read.c (read_func_scope): Document frame-base hack.
11203
11204 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11205
11206 * infcmd.c (print_return_value): Plug memory leak; delete
11207 ui_stream object. Rename argument `structure_return' to
11208 `struct_return'.
11209
11210 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11211
11212 * infcmd.c (print_return_value): Wrap long lines.
11213 (finish_command_continuation, finish_command): Remove unused
11214 variable `funcaddr'. Fix some coding-standards problems.
11215
11216 * sparc-tdep.c (sparc_regset_from_core_section): Check whether
11217 SECT_SIZE is large enough, not whether it's exactly the right size.
11218 (sparc32_gdbarch_init): Initialize TDEP->sizeof_gregset and
11219 TDEP->fpregset to zero.
11220
11221 * sparcnbsd-tdep.c (sparc32nbsd_supply_gregset): Also supply the
11222 floating-point registers for traditional NetBSD core files.
11223 (sparc32nbsd_init_abi): Initialize TDEP->sizeof_gregset and
11224 TDEP->sizeof_fpregset here.
11225
11226 2004-01-25 Mark Kettenis <kettenis@gnu.org>
11227
11228 * sparc-tdep.h (sparc32nbsd_sigcontext_saved_regs): New prototype.
11229 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_saved_regs): New
11230 function with code split out from
11231 sparc32nbsd_sigcontext_frame_cache.
11232 (sparc32nbsd_sigcontext_frame_cache): Use
11233 sparc32nbsd_sigcontext_saved_regs.
11234 (_initialize_sparc32nbsd_tdep): Don't register OS ABI handler for
11235 OpenBSD.
11236 * sparcobsd-tdep.c: New file.
11237 * Makefile.in (ALLDEPFILES): Add sparcobsd-tdep.c.
11238 (sparcobsd-tdep.o): New dependency.
11239 * configure.tgt (sparc-*-openbsd*): Set gdb_target to obsd.
11240 * config/sparc/obsd.mt: New file.
11241
11242 * sparc-tdep.c (sparc32_gdbarch_init): Don't require
11243 TDEP->fpregset to be initialized to enable core file register
11244 sets.
11245
11246 2004-01-24 Mark Kettenis <kettenis@gnu.org>
11247
11248 * sparc64-tdep.h (struct frame_info, struct trad_frame_saved_reg):
11249 Add opaque declarations.
11250 (sparc64nbsd_sigcontext_saved_regs): New prototype.
11251 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_saved_regs): New
11252 function with code split out from
11253 sparc64nbsd_sigcontext_frame_cache.
11254 (sparc64nbsd_sigcontext_frame_cache): Use
11255 sparc64nbsd_sigcontext_saved_regs.
11256 (_initialize_sparc64nbsd_tdep): Don't register OS ABI handler for
11257 OpenBSD.
11258 * sparc64obsd-tdep.c: New file.
11259 * Makefile.in (ALLDEPFILES): Add sparc64obsd-tdep.c.
11260 (sparc64obsd-tdep.o): New dependency.
11261 * configure.tgt (sparc64-*-openbsd*): Set gdb_target to obsd64 and
11262 gdb_osabi to GDB_OSABI_OPENBSD_ELF.
11263 * config/sparc/obsd64.mt: New file.
11264
11265 * sparc-tdep.c (sparc_fetch_instruction): Return zero if we can't
11266 read the instruction at PC.
11267
11268 * sparcnbsd-tdep.c (GDB_OSABI_NETBSD_CORE): Define, based on the
11269 value of GDB_OSABI_DEFAULT.
11270 (sparcnbsd_core_osabi_sniffer): Return GDB_OSABI_NETBSD_CORE
11271 instead of GDB_OSABI_NETBSD_AOUT.
11272
11273 2004-01-24 Nick Roberts <nick@nick.uklinux.net>
11274
11275 * mi/mi-cmd-stack.c, mi/mi-cmd-var.c, mi/mi-cmds.h: Update
11276 copyright.
11277
11278 2004-01-23 Andrew Cagney <cagney@redhat.com>
11279
11280 * printcmd.c (display_command): Replace tui_set_display call with
11281 tui_set_layout_for_display_command.
11282 * tui/tui.h (enum tui_win_type): Define.
11283 (tui_set_layout): Delete declaration.
11284 (tui_set_layout_for_display_command): Rename set_tui_layout.
11285 * tui/tui-data.h (enum tui_layout_type): Define.
11286 * tui/tui-layout.h: Update copyright. Include "tui-data.h" and
11287 "tui.h".
11288 (tui_add_win_to_layout): Rename tuiAddWinToLayout.
11289 (tui_default_win_height): Rename tuiDefaultWinHeight.
11290 (tui_default_win_viewport_height): Rename
11291 tuiDefaultWinViewportHeight.
11292 (tui_set_layout): RenametuiSetLayout.
11293 * tui/tui-layout.c: Update references.
11294 * tui/tui.c: Update references.
11295 * tui/tui-disasm.c: Update references.
11296
11297 2004-01-23 David Carlton <carlton@kealia.com>
11298
11299 Partial workaround for PR c++/1511:
11300 * cp-namespace.c: Include frame.h.
11301 (cp_lookup_transparent_type): New
11302 (cp_lookup_transparent_type_loop): New.
11303 * cp-support.h: Declare cp_lookup_transparent_type.
11304 * symtab.c (basic_lookup_transparent_type): Renamed from
11305 lookup_transparent_type.
11306 (lookup_transparent_type): Replace old body by a call to
11307 current_language->la_lookup_transparent_type.
11308 * symtab.h: Update copyright. Declare
11309 basic_lookup_transparent_type.
11310 * language.h: Update copyright.
11311 (struct language_defn): Add la_lookup_transparent_type.
11312 * language.c: Update copyright.
11313 (unknown_language_defn): Add basic_lookup_transparent_type.
11314 (auto_language_defn): Add basic_lookup_transparent_type.
11315 (local_language_defn): Add basic_lookup_transparent_type.
11316 * ada-lang.c: Update copyright.
11317 (ada_language_defn): Add basic_lookup_transparent_type.
11318 * c-lang.c: Update copyright.
11319 (c_language_defn): Add basic_lookup_transparent_type.
11320 (cplus_language_defn): Add basic_lookup_transparent_type.
11321 (asm_language_defn): Add basic_lookup_transparent_type.
11322 (minimal_language_defn): Add basic_lookup_transparent_type.
11323 * f-lang.c: Update copyright.
11324 (f_language_defn): Add basic_lookup_transparent_type.
11325 * jv-lang.c: Update copyright.
11326 (java_language_defn): Add basic_lookup_transparent_type.
11327 * m2-lang.c: Update copyright.
11328 (m2_language_defn): Add basic_lookup_transparent_type.
11329 * objc-lang.c: Update copyright.
11330 (objc_language_defn): Add basic_lookup_transparent_type.
11331 * p-lang.c: Update copyright.
11332 (p_language_defn): Add basic_lookup_transparent_type.
11333 * scm-lang.c: Update copyright.
11334 (scm_language_defn): Add basic_lookup_transparent_type.
11335 * Makefile.in (cp-namespace.o): Depend on frame.h.
11336
11337 2004-01-23 David Carlton <carlton@kealia.com>
11338
11339 Patch for PR c++/1520:
11340 * dwarf2read.c (read_func_scope): Set processing_current_prefix
11341 properly if we have a specification die.
11342 (determine_prefix_aux): Rename from determine_prefix.
11343 (determine_prefix): Like the old determine_prefix, but never
11344 returns NULL.
11345
11346 2004-01-23 Theodore A. Roth <troth@openavr.org>
11347
11348 * avr-tdep.c: Update copyright.
11349 (avr_iaddr_p): Delete unused function.
11350 (avr_saddr_p): Delete unused function.
11351
11352 2004-01-23 David Carlton <carlton@kealia.com>
11353
11354 * symfile.c (reread_symbols): Clear objfile->cp_namespace_symtab.
11355 Fix for PR symtab/1534.
11356
11357 2004-01-23 Mark Kettenis <kettenis@gnu.org>
11358
11359 * NEWS (New native configurations): Mention OpenBSD/sparc and
11360 OpenBSD/sparc64.
11361 * configure.tgt: Add sparc-*-openbsd* and sparc64-*-openbsd*.
11362 * configure.host: Likewise.
11363 * sparcnbsd-tdep.c (_initialize_sparnbsd_tdep): Register OS ABI
11364 handler for OpenBSD.
11365 * sparc64nbsd-tdep.c (_initialize_sparc64nbsd_tdep): Likewise.
11366
11367 2004-01-22 Mark Kettenis <kettenis@gnu.org>
11368
11369 * sparcnbsd-tdep.c (sparcnbsd_core_osabi_sniffer): New function.
11370 (_initialize_sparnbsd_tdep): Register sparcnbsd_core_osabi_sniffer.
11371
11372 * ser-pipe.c (pipe_open): Use proper null pointer in execl call.
11373 * cli/cli-cmds.c (shell_escape): Likewise.
11374
11375 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Recognize
11376 OpenBSD .note.openbsd.ident sections.
11377
11378 2004-01-22 David Carlton <carlton@kealia.com>
11379
11380 * dwarf2read.c (psymtab_to_symtab_1): Calculate lowpc, highpc via
11381 get_scope_pc_bounds.
11382 (read_file_scope): Ditto.
11383 (get_scope_pc_bounds): New function, produced by extracting code
11384 from the above two functions, consolidating it, and adding support
11385 for DW_TAG_namespace.
11386
11387 2004-01-22 Mark Kettenis <kettenis@gnu.org>
11388
11389 * osabi.c (MAX_NOTESZ): New define.
11390 (check_note): New function.
11391 (generic_elf_osabi_sniff_abi_tag_sections): Reorganize code using
11392 check_note.
11393
11394 2004-01-21 Roland McGrath <roland@redhat.com>
11395
11396 * MAINTAINERS (write after approval): Add myself.
11397
11398 2004-01-21 Eli Zaretskii <eliz@gnu.org>
11399
11400 * utils.c (init_page_info): Move declarations of `rows' and
11401 `cols' before the __GO32__-specific code. Move the closing brace
11402 outside the #ifdef __GO32__..#endif block.
11403 [__GO32__]: Use `rows' and `cols' to avoid compiler warnings.
11404
11405 2004-01-21 Paul Brook <paul@codesourcery.com>
11406
11407 * infrun.c (handle_inferior_event): Check stop_stack_dummy if handling
11408 BPSTAT_WHAT_CHECK_SHLIBS.
11409
11410 2004-01-21 Paul Brook <paul@codesourcery.com>
11411
11412 * MAINTAINERS: Add myself to write-after-approval.
11413
11414 2004-01-20 Andrew Cagney <cagney@redhat.com>
11415
11416 * ax-gdb.c (print_axs_value): Delete unused function.
11417 * jv-lang.c (java_lookup_type): Delete unused function.
11418 * cli/cli-dump.c (dump_filetype): Delete unused function.
11419 * remote-mips.c (remote_mips_insert_hw_breakpoint)
11420 (remote_mips_remove_hw_breakpoint): Delete unused functions.
11421 (mips_getstring): Delete unused function.
11422 (pmon_insert_breakpoint): Delete #if0ed function.
11423 (PMON_MAX_BP): Delete #if0ed MACRO.
11424 (mips_pmon_bp_info): Delete #if0ed variable.
11425 (pmon_remove_breakpoint): Delete #if0ed function.
11426 * monitor.c (monitor_write_even_block): Delete unused function.
11427 (monitor_write_memory_block): Delete #if0ed code.
11428 * dink32-rom.c (dink32_load): Delete unused function.
11429 (_initialize_dink32_rom): Delete #if0ed code.
11430 * d10v-tdep.c (d10v_daddr_p): Delete unused function.
11431
11432 * tui/tui-command.c: Update references.
11433 * tui/tui-io.c: Update references.
11434 * tui/tui-command.h: Update copyright.
11435 (tui_dispatch_ctrl_char): Rename tuiDispatchCtrlChar.
11436
11437 * source.c (ambiguous_line_spec): Delete never-defined function.
11438 * remote-rdi.c (arm_rdi_mourn, arm_rdi_send): Ditto.
11439 * gdbtypes.c (add_name, add_mangled_type): Ditto.
11440 * cli/cli-cmds.c (validate_comname): Ditto.
11441
11442 * tui/tui-disasm.h: Update copyright. Include "tui.h" and
11443 "tui-data.h".
11444 (tui_set_disassem_content): Rename tuiSetDisassemContent.
11445 (tui_show_disassem): Rename tuiShowDisassem.
11446 (tui_show_disassem_and_update_source): Rename
11447 tuiVerticalDisassemScroll.
11448 (tui_vertical_disassem_scroll): Rename tuiVerticalDisassemScroll.
11449 (tui_get_begin_asm_address): Rename tuiGetBeginAsmAddress.
11450 * tui/tui.h: Update copyright.
11451 (enum tui_status): Define.
11452 * tui/tui-data.h (enum tui_scroll_direction): Define.
11453 * tui/tui-disasm.c: Update copyright. Update references.
11454 * tui/tui-winsource.c: Update copyright. Update references.
11455 * tui/tui-win.c: Update references.
11456 * tui/tui-layout.c: Update references.
11457
11458 2004-01-20 Andrew Cagney <cagney@redhat.com>
11459
11460 * mi/mi-cmd-stack.c (list_args_or_locals): Move declaration of
11461 sym2 to start of block.
11462
11463 2004-01-19 Michael Chastain <mec.gnu@mindspring.com>
11464
11465 * MAINTAINERS: Delete mmalloc.
11466 * Makefile.in: Delete MMALLOC, MMALLOC_CFLAGS, -lmmalloc, mmalloc_h.
11467 * NEWS: Mention removal of --with-malloc.
11468 * acconfig.h: Delete USE_MMALLOC, MMCHECK_FORCE.
11469 * config.in: Regenerate.
11470 * configure: Regenerate.
11471 * configure.in: Delete MMALLOC_CFLAGS, MMALLOC, --with-mmalloc,
11472 USE_MMALLOC, MMCHECK_FORCE.
11473 * gdbinit.in: Remove mmalloc.
11474 * utils.c: Delete USE_MMALLOC, NO_MMCHECK, MMCHECK_FORCE, malloc_botch.
11475 * config/alpha/alpha-linux.mh: Delete MMALLOC, MMALLOC_CFLAGS.
11476 * config/i386/go32.mh: Likewise.
11477 * config/i386/interix.mh: Likewise.
11478 * config/powerpc/xm-linux.h: Delete MMAP_BASE_ADDRESS, MMAP_INCREMENT.
11479
11480 2004-01-19 Jeff Johnston <jjohnstn@redhat.com>
11481
11482 * linespec.c (decode_variable, symtab_from_filename): Call
11483 error_silent with error message instead of throwing an exception
11484 directly.
11485 * defs.h (error_silent, error_output_message): Add prototypes.
11486 (catch_exceptions_with_msg): Ditto.
11487 * utils.c (error_silent, error_output_message): New functions.
11488 * top.c (catch_exceptions_with_msg): New function.
11489
11490 2004-01-20 Nick Roberts <nick@nick.uklinux.net>
11491
11492 * mi/mi-cmds.h (enum print_values): Add definition.
11493
11494 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Print the name,
11495 type and value for simple data types and just the name and type
11496 for complex ones, if required.
11497
11498 * mi/mi-cmd-var.c (mi_cmd_var_list_children): Print the values of the
11499 children, if required.
11500
11501 2004-01-19 Kevin Buettner <kevinb@redhat.com>
11502
11503 * frv-tdep.c (frv_push_arguments, frv_saved_pc_after_call): Delete
11504 unused declarations.
11505
11506 2004-01-19 Andrew Cagney <cagney@redhat.com>
11507
11508 * top.h (mapped_symbol_files): Delete declaration.
11509 * main.c (captured_main): Delete option "m" and "mapped".
11510 * objfiles.c (mapped_symbol_files): Delete variable.
11511 * symfile.c (symbol_file_command): Delete mmap code.
11512 (symbol_file_add_with_addrs_or_offsets): Ditto.
11513 (add_symbol_file_command, reread_separate_symbols): Ditto.
11514 * objfiles.h (OBJF_MAPPED): Delete.
11515 * objfiles.c (allocate_objfile) [USE_MMALLOC]: Delete.
11516 (free_objfile) [USE_MMALLOC]: Ditto.
11517 (open_existing_mapped_file): Delete function.
11518 (open_mapped_file): Delete function.
11519 (map_to_file): Delete function.
11520
11521 2004-01-19 Kevin Buettner <kevinb@redhat.com>
11522
11523 * infrun.c (step_into_function): Account for possible breakpoint
11524 adjustment when computing ``stop_func_start''.
11525
11526 2004-01-19 Kevin Buettner <kevinb@redhat.com>
11527
11528 * target.c (default_region_size_ok_for_hw_watchpoint): Compare
11529 the region size against the size of a pointer, not the size of
11530 a register as given by DEPRECATED_REGISTER_SIZE.
11531
11532 2004-01-19 Andrew Cagney <cagney@redhat.com>
11533
11534 * tui/tui-regs.h: Include "tui-data.h".
11535 (tuiFirstRegElementNoInLine): Delete declaration.
11536 (tui_display_registers_from): Rename tuiDisplayRegistersFrom.
11537 (tui_last_regs_line_no): Rename tuiLastRegsLineNo.
11538 (tui_line_from_reg_element_no): Rename tuiLineFromRegElementNo.
11539 (tui_calculate_regs_column_count): Rename
11540 tuiCalculateRegsColumnCount.
11541 (tui_check_register_values): Rename tuiCheckRegisterValues.
11542 (tui_show_registers): Rename tuiShowRegisters.
11543 (tui_display_registers_from_line): Rename
11544 tuiDisplayRegistersFromLine.
11545 (tui_first_reg_element_inline): Rename tuiFirstRegElementInLine.
11546 (tui_toggle_float_regs): Rename tuiToggleFloatRegs.
11547 (tui_first_reg_element_no_inline): Rename
11548 tuiFirstRegElementNoInLine.
11549 * tui/tui-data.h: Update copyright.
11550 (enum tui_register_display_type): Rename _TuiRegisterDisplayType.
11551 * tui/tui-windata.c: Update copyright, update references.
11552 * tui/tui-regs.c: Update copyright, update references.
11553 * tui/tui-win.c: Update copyright, update references.
11554 * tui/tui-layout.c: Update copyright, update references.
11555
11556 2004-01-18 Andrew Cagney <cagney@redhat.com>
11557
11558 * tui/tui-io.c: Update copyright.
11559 (key_is_end_sequence, key_is_backspace): New functions.
11560 (key_is_command_char, key_is_start_sequence): New function.
11561 (tui_getc): Update references.
11562 * tui/tui-io.h: Update copyright.
11563 (m_tuiStartNewLine): Delete macro.
11564 (m_isBackspace, m_isDeleteChar): Delete macros.
11565 (m_isDeleteLine, m_isDeleteToEol): Delete macros.
11566 (m_isNextPage, m_isPrevPage): Delete macros.
11567 (m_isLeftArrow, m_isRightArrow): Delete macros.
11568 (m_isXdbStyleCommandChar): Delete macro.
11569 (key_is_start_sequence): Declare, replace m_isStartSequence.
11570 (key_is_end_sequence): Declare, replace m_isEndSequence.
11571 (key_is_backspace): Declare ,replace m_isBackspace.
11572 (key_is_command_char): Declare, replace m_isCommandChar.
11573 * tui/tui-command.c: Update copyright.
11574 (tuiDispatchCtrlChar): Update references.
11575
11576 * config/djgpp/fnchange.lst: Delete tui/tuiSourceWin.c and
11577 tuiSourceWin.h.
11578
11579 * tui/tui-command.c: Rename tui/tuiCommand.c.
11580 * tui/tui-command.h: Rename tui/tuiCommand.h.
11581 * tui/tui-data.c: Rename tui/tuiData.c.
11582 * tui/tui-data.h: Rename tui/tuiData.h.
11583 * tui/tui-disasm.c: Rename tui/tuiDisassem.c.
11584 * tui/tui-disasm.h: Rename tui/tuiDisassem.h.
11585 * tui/tui-io.c: Rename tui/tuiIO.c.
11586 * tui/tui-io.h: Rename tui/tuiIO.h.
11587 * tui/tui-layout.c: Rename tui/tuiLayout.c.
11588 * tui/tui-layout.h: Rename tui/tuiLayout.h.
11589 * tui/tui-regs.c: Rename tui/tuiRegs.c.
11590 * tui/tui-regs.h: Rename tui/tuiRegs.h.
11591 * tui/tui-source.c: Rename tui/tuiSource.c.
11592 * tui/tui-source.h: Rename tui/tuiSource.h.
11593 * tui/tui-stack.c: Rename tui/tuiStack.c.
11594 * tui/tui-stack.h: Rename tui/tuiStack.h.
11595 * tui/tui-win.c: Rename tui/tuiWin.c.
11596 * tui/tui-win.h: Rename tui/tuiWin.h.
11597 * tui/tui-windata.c: Rename tui/tuiDataWin.c.
11598 * tui/tui-windata.h: Rename tui/tuiDataWin.h.
11599 * tui/tui-wingeneral.c: Rename tui/tuiGeneralWin.c.
11600 * tui/tui-wingeneral.h: Rename tui/tuiGeneralWin.h.
11601 * tui/tui-winsource.c: Rename tui/tuiSourceWin.c.
11602 * tui/tui-winsource.h: Rename tui/tuiSourceWin.h.
11603 * tui/tui-file.c: Update includes.
11604 * tui/tui-hooks.c: Update includes.
11605 * tui/tui-interp.c: Update includes.
11606 * tui/tui.c: Update includes.
11607 * Makefile.in: Update all tui/ dependencies.
11608 (SUBDIR_TUI_OBS, SUBDIR_TUI_SRCS): Update file names.
11609
11610 * Makefile.in: Update copyright. Update dependencies.
11611
11612 * tui/tuiSourceWin.c (tui_update_breakpoint_info): Fix compile
11613 problem.
11614
11615 2004-01-18 Andrew Cagney <cagney@redhat.com>
11616
11617 * mn10300-tdep.c (_initialize_mn10300_tdep): Call gdbarch_register
11618 instead of register_gdbarch_init.
11619
11620 * remote-sds.c (tohex): Delete unused function. Update copyright.
11621 * xstormy16-tdep.c (xstormy16_register_virtual_size): Ditto.
11622 * v850-tdep.c (v850_register_virtual_size): Ditto.
11623 * target.c (normal_target_post_startup_inferior): Ditto.
11624 * source.c (ambiguous_line_spec): Ditto.
11625 * remote.c (adapt_remote_get_threadinfo): Ditto.
11626 * mi/mi-out.c (out_field_fmt): Ditto.
11627 * mi/mi-interp.c (mi_interp_read_one_line_hook): Ditto.
11628 (output_control_change_notification): Ditto.
11629 * m68k-tdep.c (m68k_register_byte): Ditto.
11630 (m68k_remote_breakpoint_from_pc): Ditto.
11631 * ui-out.c (init_ui_out_state): Delete unused declaration.
11632 * stabsread.c (search_value): Ditto.
11633 * mi/mi-cmd-env.c (env_cli_command): Ditto.
11634 * maint.c (print_section_table): Ditto.
11635 * infrun.c (set_follow_fork_mode_command): Ditto.
11636
11637 2004-01-18 Mark Kettenis <kettenis@gnu.org>
11638
11639 * dwarf2-frame.c (execute_cfa_program): Move DWA_CFA_nop before
11640 DW_CFA_def_cfa_exporession. Add support for
11641 DW_CFA_offset_extendend_sf, DW_CFA_def_cfa_sf and
11642 DW_CFA_def_cfa_offset_sf. This should fix PR backtrace/1391.
11643
11644 2004-01-18 Andrew Cagney <cagney@redhat.com>
11645
11646 * ocd.c: Update copyright.
11647 (bdm_read_register_command): Delete unused function.
11648 (_initialize_remote_ocd): Delete commented out reference.
11649 (get_quoted_char, reset_packet): Delete #if0ed function.
11650 (output_packet, put_quoted_char): Delete #if0ed function.
11651 (stu_put_packet, stu_get_packet): Delete #if0ed function.
11652 (ocd_start_remote): Delete #if0ed code, remove #if1 wrapper.
11653 (BDM_BREAKPOINT): Delete #if0ed macro.
11654 (remote_timeout): Delete #if0ed variable.
11655
11656 2004-01-18 Mark Kettenis <kettenis@gnu.org>
11657
11658 * Makefile.in (ALLDEPFILES): Remove core-sol2.c.
11659 (core-sol2.o): Remove dependency.
11660 * core-sol2.c: Remove file.
11661
11662 2004-01-17 Andrew Cagney <cagney@redhat.com>
11663
11664 * mdebugread.c (compare_blocks): Make addr_diff a LONGEST.
11665 * block.h: Make GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOOCK
11666 enums.
11667
11668 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11669
11670 * remote.c: Update copyright years.
11671
11672 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11673
11674 * remote.c (remote_vcont_resume): Use xstrprintf instead of sprintf.
11675
11676 2004-01-17 Andrew Cagney <cagney@redhat.com>
11677
11678 * mdebugread.c: Update copyright.
11679 (parse_symbol): Replace DEPRECATED_STREQ with strcmp.
11680 (parse_type, parse_procedure): Ditto.
11681 (parse_partial_symbols, psymtab_to_symtab_1): Ditto.
11682
11683 * cris-tdep.c (cris_store_struct_return): Put back accidently
11684 deleted function.
11685
11686 * gdbarch.sh: Update copyright year.
11687 * gdbarch.h, gdbarch.c: Re-generate.
11688
11689 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11690
11691 Suggested by George Anzinger.
11692 * dwarf2expr.c (execute_stack_op): Fetch the second item from the
11693 correct stack offset. Include unknown opcode numbers in the error
11694 message.
11695
11696 2004-01-17 Andrew Cagney <cagney@redhat.com>
11697
11698 * x86-64-tdep.c (x86_64_init_abi): No need to clear
11699 extract_struct_value_address, i386 does not set it.
11700 * sparc64-tdep.c (sparc64_init_abi): Do not set
11701 extract_struct_value_address, never called.
11702 (sparc64_extract_struct_value_address): Delete function.
11703 * m68hc11-tdep.c: Update copyright.
11704 (m68hc11_gdbarch_init): Delete redundant assignment of
11705 extract_struct_value_address.
11706 * i386-tdep.c: Update copyright.
11707 (i386_gdbarch_init): Do not set extract_struct_value_address,
11708 never called.
11709 (i386_extract_struct_value_address): Delete function.
11710 * sparc-tdep.c (sparc32_gdbarch_init): Do not set
11711 extract_struct_value_address, never called.
11712 (sparc32_extract_struct_value_address): #if 0 function. Add
11713 comments explaining its future.
11714
11715 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11716
11717 * arm-tdep.c (arm_write_pc): New function.
11718 (arm_gdbarch_init): Call set_gdbarch_write_pc.
11719
11720 2004-01-17 Daniel Jacobowitz <drow@mvista.com>
11721
11722 * breakpoint.c (must_shift_inst_regs): Delete.
11723 (bpstat_stop_status): Delete references to DECR_PC_AFTER_HW_BREAK
11724 and SHIFT_INST_REGS.
11725 * infcmd.c (step_1, step_1_continuation): Delete references to
11726 SHIFT_INST_REGS.
11727 * infrun.c (keep_going): Likewise.
11728 * target.h (DECR_PC_AFTER_HW_BREAK): Don't define.
11729 * config/i386/nm-i386.h (DECR_PC_AFTER_HW_BREAK): Likewise.
11730
11731 2004-01-17 Andrew Cagney <cagney@redhat.com>
11732
11733 * gdbarch.sh (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
11734 * gdbarch.h, gdbarch.c: Re-generate.
11735 * infcmd.c (print_return_value): Delete reference to
11736 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
11737
11738 * cris-tdep.c (cris_gdbarch_init): Do not set
11739 deprecated_extract_struct_value_address.
11740
11741 * xstormy16-tdep.c: Update copyright.
11742 (xstormy16_extract_struct_value_address): Update to current
11743 extract struct value address interface.
11744 (xstormy16_gdbarch_init): Set extract_struct_value_address.
11745 * sh64-tdep.c (sh64_extract_struct_value_address): Update to
11746 current extract struct value address interface.
11747 (sh64_gdbarch_init): Set extract_struct_value_address.
11748
11749 * cris-tdep.c: Update copyright.
11750 (cris_extract_struct_value_address): Delete function.
11751 (struct_return_address): Delete variable.
11752 (cris_store_struct_return): Do not set struct_return_address.
11753
11754 * mcore-tdep.c: Update copyright.
11755 (mcore_extract_struct_value_address): Delete function. Update
11756 comments.
11757 (mcore_gdbarch_init): Update.
11758 * mn10300-tdep.c: Update copyright.
11759 (mn10300_extract_struct_value_address): Delete function.
11760 (mn10300_gdbarch_init): Update.
11761 * v850-tdep.c: Update copyright.
11762 (v850_extract_struct_value_address): Delete.
11763 (v850_gdbarch_init): Update.
11764 * ns32k-tdep.c: Update copyright.
11765 (ns32k_extract_struct_value_address): Delete.
11766 (ns32k_gdbarch_init): Update.
11767 * hppa-tdep.c (hppa_extract_struct_value_address): Delete.
11768 (hppa_gdbarch_init): Update.
11769 * vax-tdep.c: Update copyright.
11770 (vax_extract_struct_value_address): Delete.
11771 (vax_gdbarch_init): Update.
11772
11773 * gdbarch.sh (DEPRECATED_NPC_REGNUM): Delete.
11774 * gdbarch.h, gdbarch.c: Re-generate.
11775 * procfs.c (procfs_fetch_registers): Delete reference to
11776 DEPRECATED_NPC_REGNUM.
11777 (procfs_store_registers): Ditto.
11778 * regcache.c (generic_target_write_pc): Simplify.
11779 * lynx-nat.c: Delete #ifdef SPARC code. Not used.
11780
11781 * core-sol2.c (fetch_core_registers): Replace
11782 DEPRECATED_NPC_REGNUM with equivalent tdep value.
11783
11784 * hppa-tdep.c: Update copyright year.
11785 (hppa_target_write_pc): Use PCOQ_TAIL_REGNUM instead of
11786 NPC_REGNUM.
11787 (hppa_gdbarch_init): Do not set deprecated_npc_regnum.
11788
11789 * mips-tdep.c (mips_write_pc): New function.
11790 (mips_gdbarch_init): Set "write_pc" to "mips_write_pc".
11791 (mips_read_pc): Use mips_regnum instead of PC_REGNUM.
11792 (mips_find_saved_regs, mips_software_single_step: Ditto.
11793 (mips_frame_saved_pc, mips_frame_saved_pc): Ditto.
11794 mips_init_extra_frame_info, mips_pop_frame): Ditto.
11795
11796 2004-01-17 Andrew Cagney <cagney@redhat.com>
11797
11798 * mips-tdep.c: Re-indent. Group functions by ABI.
11799
11800 2004-01-17 Andrew Cagney <cagney@redhat.com>
11801
11802 * gdbarch.sh (DECR_PC_AFTER_BREAK): Make zero the default.
11803 * gdbarch.c: Re-generate.
11804 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
11805 DECR_PC_AFTER_BREAK to zero.
11806 * vax-tdep.c (vax_gdbarch_init): Ditto.
11807 * v850-tdep.c (v850_gdbarch_init): Ditto.
11808 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
11809 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
11810 * sh-tdep.c (sh_gdbarch_init): Ditto.
11811 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
11812 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
11813 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
11814 * mips-tdep.c (mips_gdbarch_init): Ditto.
11815 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
11816 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11817 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
11818 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
11819 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
11820 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
11821 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
11822 * frv-tdep.c (frv_gdbarch_init): Ditto.
11823 * cris-tdep.c (cris_gdbarch_init): Ditto.
11824 * avr-tdep.c (avr_gdbarch_init): Ditto.
11825 * arm-tdep.c (arm_gdbarch_init): Ditto.
11826 * i386-nto-tdep.c (i386nto_init_abi): Add comment.
11827
11828 2004-01-17 J. Brobecker <brobecker@gnat.com>
11829
11830 * dwarf2read.c (dwarf2_non_const_array_bound_ignored_complaint):
11831 Delete, no longer used.
11832 (read_subrange_type): New function, mostly extracted from
11833 read_array_type().
11834 (read_array_type): Replace extracted code by call to
11835 read_subrange_type().
11836 (dwarf2_get_attr_constant_value): New function.
11837 (scan_partial_symbols): Add handling for DW_TAG_subrange_type.
11838 (add_partial_symbol): Likewise.
11839 (process_die): Likewise.
11840 (new_symbol): Likewise.
11841 (read_type_die): Likewise.
11842
11843 2004-01-16 Andrew Cagney <cagney@redhat.com>
11844
11845 * symfile.c: Update copyright year.
11846 (compare_symbols): Delete unused function.
11847 * stabsread.c: Update copyright year.
11848 (lrs_general_complaint): Delete unused function.
11849 (ref_search_value): Ditto.
11850 (get_substring): Delete declaration.
11851 * sh64-tdep.c: Update copyright year.
11852 (sh64_get_gdb_regnum): Delete unused function.
11853 * dwarf2read.c (dwarf2_unsupported_at_frame_base_complaint):
11854 Delete unused function.
11855
11856 2004-01-17 Mark Kettenis <kettenis@gnu.org>
11857
11858 * defs.h (gdb_osabi): Add GDB_OSABI_OPENBSD_ELF.
11859 * osabi.c (gdb_osabi_names): Add "OpenBSD ELF".
11860
11861 2004-01-16 Andrew Cagney <cagney@redhat.com>
11862
11863 Changes from Peter Schauer.
11864 * rs6000-tdep.c: Update copyright year.
11865 (rs6000_push_dummy_call): Update the stack pointer before
11866 accessing the corresponding stack region.
11867 * rs6000-nat.c: Update copyright year.
11868 (set_host_arch): Set "info.abfd" to "exec_bfd".
11869
11870 2004-01-15 Mark Kettenis <kettenis@gnu.org>
11871
11872 * blockframe.c: Update copyright year.
11873 (inside_entry_func): Don't treat a zero PC specially.
11874
11875 2004-01-14 Elena Zannoni <ezannoni@redhat.com>
11876
11877 * gcore.c (gcore_copy_callback): Use paddr_d to print size
11878 variable.
11879 (gcore_create_callback): Ditto. Skip any memory segment that has
11880 no permissions set.
11881
11882 2004-01-14 David Carlton <carlton@kealia.com>
11883
11884 Change symbols for C++ nested types to contain the fully qualified
11885 name, if possible. (At least in the DWARF-2 case.) Partial fix
11886 for PR's c++/57, c++/488, c++/539, c++/573, c++/609, c++/832,
11887 c++/895.
11888 * c-exp.y (qualified_type): Handle types nested within classes.
11889 * cp-namespace.c: Update comments.
11890 (cp_set_block_scope): Delete #if 0.
11891 (cp_lookup_nested_type): Handle types nested within classes.
11892 * dwarf2read.c: (scan_partial_symbols): Call add_partial_structure
11893 when appropriate.
11894 (add_partial_symbol): Add the name of the enclosing namespace to
11895 types.
11896 (pdi_needs_namespace): New.
11897 (add_partial_namespace): Tweak comment.
11898 (add_partial_structure): New.
11899 (psymtab_to_symtab_1): Initialize processing_current_prefix
11900 here...
11901 (process_die): instead of here.
11902 (read_structure_scope): Try to figure out the name of the class or
11903 namespace that the structure might be defined within.
11904 (read_enumeration): Generate fully-qualified names, if possible.
11905 (read_namespace): Don't set name to NULL.
11906 (die_specification): New.
11907 (new_symbol): Generate fully-qualified names for types.
11908 (read_type_die): Determine appropriate prefix.
11909 (determine_prefix): New.
11910 (typename_concat): New.
11911 (class_name): New.
11912 * valops.c (value_aggregate_elt): Pass NOSIDE to
11913 value_struct_elt_for_reference.
11914 (value_struct_elt_for_reference): Make static, add NOSIDE
11915 parameter, call value_maybe_namespace_elt as a last resort.
11916 (value_namespace_elt): Break out code into
11917 value_maybe_namespace_elt.
11918 (value_maybe_namespace_elt): New.
11919
11920 2004-01-12 Andrew Cagney <cagney@redhat.com>
11921
11922 * mips-tdep.c (mips_convert_register_p): Handle both raw and
11923 cooked floating-point registers.
11924 (mips_gdbarch_init): Set convert_register_p, register_to_value,
11925 and value_to_register.
11926
11927 2004-01-13 Andrew Cagney <cagney@redhat.com>
11928
11929 * gdbarch.sh (FUNCTION_START_OFFSET): Make zero the default.
11930 * gdbarch.c: Re-generate.
11931 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
11932 FUNCTION_START_OFFSET.
11933 * v850-tdep.c (v850_gdbarch_init): Ditto.
11934 * sparc-tdep.c (sparc32_gdbarch_init): Ditto.
11935 * sh64-tdep.c (sh64_gdbarch_init): Ditto.
11936 * sh-tdep.c (sh_gdbarch_init): Ditto.
11937 * s390-tdep.c (s390_gdbarch_init): Ditto.
11938 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
11939 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
11940 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
11941 * mips-tdep.c (mips_gdbarch_init): Ditto.
11942 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
11943 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
11944 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
11945 * m32r-tdep.c (m32r_gdbarch_init): Ditto.
11946 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
11947 * i386-tdep.c (i386_gdbarch_init): Ditto.
11948 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
11949 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
11950 * frv-tdep.c (frv_gdbarch_init): Ditto.
11951 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
11952 * cris-tdep.c (cris_gdbarch_init): Ditto.
11953 * avr-tdep.c (avr_gdbarch_init): Ditto.
11954 * arm-tdep.c (arm_gdbarch_init): Ditto.
11955 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
11956
11957 2004-01-13 Daniel Jacobowitz <drow@mvista.com>
11958
11959 * infrun.c (follow_fork_mode_ask): Remove.
11960 (follow_fork_mode_kind_names): Remove follow_fork_mode_ask.
11961 (follow_fork): Simplify and remove internal error for
11962 follow_fork_mode_ask.
11963 (_initialize_infrun): Update "set follow-fork-mode" help text.
11964
11965 2004-01-13 Andrew Cagney <cagney@redhat.com>
11966
11967 * configure.in: Update copyright year.
11968 (build_warnings): Add -Wunused-label.
11969 * configure: Re-generate.
11970
11971 2004-01-12 Andrew Cagney <cagney@redhat.com>
11972
11973 * exec.h (exec_ops): Make "extern".
11974
11975 * mips-tdep.c (mips_pseudo_register_read): Don't return a value,
11976 the function is void.
11977 (mips_pseudo_register_write): Ditto.
11978
11979 2004-01-12 Andrew Cagney <cagney@redhat.com>
11980
11981 * stack.c (frame_info): Delete DEPRECATED_PRINT_EXTRA_FRAME_INFO
11982 call. Never defined.
11983 * sparc-tdep.h (struct frame_info): Add opaque declaration.
11984 * sparc64-tdep.h (struct gdbarch): Add opaque declaration.
11985 (struct sparc_gregset, struct regcache): Ditto.
11986 * sparc-nat.c: Update copyright. Specify "GNU/Linux".
11987
11988 2004-01-12 Andrew Cagney <cagney@redhat.com>
11989
11990 * mi/ChangeLog: Delete file. Renamed to ...
11991 * mi/ChangeLog-1999-2003: New file.
11992 * tui/ChangeLog: Delete file. Renamed to ...
11993 * tui/ChangeLog-1998-2003: New file.
11994
11995 2004-01-11 Mark Kettenis <kettenis@gnu.org>
11996
11997 * sparc64nbsd-tdep.c: Include "regset.h".
11998 (sparc64nbsd_sizeof_struct_reg, sparc64nbsd_sizeof_struct_fpreg):
11999 Remove variables.
12000 (fetch_core_registers): Remove function.
12001 (sparc64nbsd_core_fns): Remove variable.
12002 (sparc64nbsd_supply_gregset, sparc64nbsd_supply_fpregset): New
12003 functions.
12004 (sparc64nbsd_init_abi): Initialize TDEP->gregset,
12005 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
12006 (_initialize_sparc64nbsd_tdep): Remove call to add_core_fns.
12007
12008 * sparc-tdep.c (sparc32_extract_struct_value_address): Rename from
12009 sparc_extract_struct_value_address.
12010 (sparc32_gdbarch_init): Set extract_struct_value_address.
12011 * sparc64-tdep.c (sparc64_extract_struct_value_address): New
12012 function.
12013 (sparc64_init_abi): Set extract_struct_value_address. Don't set
12014 return_value_on_stack.
12015
12016 * NEWS: Mention that %cs and %ss have been added to the AMD64
12017 configurations
12018
12019 * frame.c: Update copyright year.
12020 (get_prev_frame): Improve comment.
12021
12022 * sparc64fbsd-tdep.c: Include "regset.h".
12023 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
12024 Remove variables.
12025 (fetch_core_registers): Remove function.
12026 (sparc64fbsd_core_fns): Remove variable.
12027 (sparc64fbsd_supply_gregset, sparc64fbsd_supply_fpregset): New
12028 functions.
12029 (sparc64fbsd_init_abi): Initialize TDEP->gregset,
12030 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_gregset.
12031 (_initialize_sparc64fbsd_tdep): Remove call to add_core_fns.
12032
12033 * sparcnbsd-tdep.c: Include "regset.h".
12034 (fetch_core_registers): Remove function.
12035 (sparcnbsd_core_fns, sparcnbsd_elfcore_fns): Remove varaibles.
12036 (sparc32nbsd_supply_gregset, sparc32nbsd_supply_fpregset): New
12037 functions.
12038 (sparc32nbsd_init_abi): Initialize TDEP->gregset and
12039 TDEP->fpregset.
12040 (_initialize_sparcnbsd_tdep): Remove calls to add_core_fns.
12041
12042 * sparc-tdep.h (struct regset): Provide opaque declaration.
12043 (struct gdbarch_tdep): Add gregset, sizeof_gregset,
12044 fpregset and sizeof_fpregset members.
12045 * sparc-tdep.c (struct regset): Provide opaque declaration.
12046 (sparc_regset_from_core_section): New function.
12047 (sparc32_gdbarch_init): Initialize TDEP->gregset,
12048 TDEP->sizeof_gregset, TDEP->fpregset and TDEP->sizeof_fpregset.
12049 Set regset_from_core_section when appropriate.
12050
12051 2004-01-10 Mark Kettenis <kettenis@gnu.org>
12052
12053 * x86-64-tdep.c (amd64_non_pod_p): New function.
12054 (amd64_classify_aggregate): Return class memory for non-POD
12055 C++ structure types.
12056
12057 * x86-64-tdep.c (amd64_push_arguments): Add struct_return
12058 argument. Use it to reserve a register if necessary.
12059 (amd64_push_dummy_call): Pass STRUCT_RETURN in call to
12060 amd64_push_arguments.
12061
12062 * x86-64-tdep.c (amd64_classify_aggregate): Ignore static fields.
12063
12064 * x86-64-tdep.c (amd64_register_info): Add %cs and %ss. Adjust
12065 register numbers in comments.
12066 * x86-64-tdep.h: Update copyright year.
12067 (X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM, X86_64_XMM1_REGNUM):
12068 Adjust for addition of %cs and %ss.
12069 * amd64fbsd-nat.c: Update copyright year.
12070 (reg_offset): Add register offsets for %cs and %ss.
12071 * amd64fbsd-tdep.c: Update copyright year.
12072 (amd64fbsd_r_reg_offset): Add register offsets for %cs and %ss.
12073 (amd64fbsd_sc_reg_offset): Likewise.
12074 * x86-64-linux-nat.c: Update copyright year.
12075 (x86_64_linux_gregset64_reg_offset): Add register offsets for %cs
12076 and %ss.
12077 * amd64nbsd-nat.c: Update copyright year.
12078 (amd64nbsd32_r_reg_offset): Add register offsets for %cs and %ss.
12079 * amd64nbsd-tdep.c: Update copyright year.
12080 (amd64nbsd_r_reg_offset): Add register offsets for %cs and %ss.
12081 * x86-64-linux-tdep.c: Update copyright year.
12082 (user_to_gdb_regmap): Add mapping for %cs and %ss.
12083 (x86_64_linux_sc_reg_offset): Adjust for addition of %cs and %ss.
12084 * regformats/reg-x86-64.dat: Add %cs and %ss.
12085
12086 * blockframe.c (inside_entry_func): Reformat. Introduce new local
12087 variables to prevent long lines. Update comments to reflect
12088 reality.
12089
12090 2004-01-09 David Carlton <carlton@kealia.com>
12091
12092 Checked in by Elena Zannoni <ezannoni@redhat.com>.
12093 * dwarf2read.c (read_namespace): Pull out name-generating code
12094 into namespace_name. Rename previous_namespace to previous_prefix
12095 and processing_current_namespace to processing_current_prefix..
12096 (namespace_name): New function.
12097 (add_partial_symbol): Substitute uses of pdi->name with
12098 actual_name.
12099 * cp-support.h: Rename processing_current_namespace to
12100 processing_current_prefix.
12101 Update copyright year.
12102 * cp-namespace.c: Rename processing_current_namespace to
12103 processing_current_prefix.
12104 Update copyright year.
12105
12106 2004-01-09 Andrew Cagney <cagney@redhat.com>
12107
12108 * jv-valprint.c, ser-unix.c: Add missing copyright years.
12109
12110 2004-01-09 Mark Kettenis <kettenis@gnu.org>
12111
12112 * dbxread.c (read_dbx_symtab): Ignore N_PATCH stabs instead of
12113 complaining.
12114 (process_one_symbol): Deal with N_PATCH stabs.
12115
12116 2004-01-09 Elena Zannoni <ezannoni@redhat.com>
12117
12118 * dwarf2read.c (read_array_type): Discard FORTRAN_HACK macro and
12119 ifdeffed code.
12120 Update copyright year.
12121
12122 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
12123
12124 * config/pa/tm-hppa.h: Update extern declarations for
12125 hppa32_hpux_frame_saved_pc_in_sigtramp,
12126 hppa32_hpux_frame_base_before_sigtramp, and
12127 hppa32_hpux_frame_find_saved_regs_in_sigtramp.
12128
12129 2004-01-08 Michael Chastain <mec.gnu@mindspring.com>
12130
12131 * config/pa/tm-hppah.h: Update copyright years.
12132
12133 2004-01-08 Andrew Cagney <cagney@redhat.com>
12134
12135 * mips-tdep.c (mips_n32n64_reg_struct_has_addr): Delete function.
12136 (mips_o32_reg_struct_has_addr): Delete function.
12137 (mips_gdbarch_init): Update.
12138 (mips_extract_struct_value_address): Delete function.
12139
12140 2004-01-08 David Mosberger <davidm@hpl.hp.com>
12141
12142 * ia64-linux-tdep.c: Update GATE_AREA_END value to reflect
12143 reality.
12144
12145 2004-01-07 Andrew Cagney <cagney@redhat.com>
12146
12147 * mips-tdep.c (mips_gdbarch_init): Set elf_flags to the previous
12148 architecture's elf flags (when available).
12149
12150 * mips-tdep.c (mips_gdbarch_init): Move code determining the MIPS
12151 FPU to the start, check the MIPS FPU when looking for an old
12152 architecture.
12153 (set_mipsfpu_single_command): Update the architecture.
12154 (set_mipsfpu_double_command, set_mipsfpu_none_command): Ditto.
12155
12156 * mips-tdep.c (MIPS_DEFAULT_MASK_ADDRESS_P): Delete macro.
12157 (mips_mask_address_p): Add "tdep" parameter.
12158 (show_mask_address, mips_addr_bits_remove): Update.
12159 (mips_dump_tdep): Update.
12160 (MIPS_DEFAULT_STACK_ARGSIZE): Delete macro.
12161 (MIPS_STACK_ARGSIZE): Delete macro.
12162 (mips_stack_argsize, mips_eabi_push_dummy_call): Update.
12163 (mips_n32n64_push_dummy_call, mips_o32_push_dummy_call): Update.
12164 (mips_o64_push_dummy_call, mips_o32_return_value): Update.
12165 (mips_dump_tdep): Update.
12166 (MIPS_SAVED_REGSIZE): Delete macro.
12167 (MIPS_DEFAULT_SAVED_REGSIZE): Delete macro.
12168 (mips_saved_regsize, mips_eabi_use_struct_convention): Update.
12169 (mips_eabi_reg_struct_has_addr, mips_find_saved_regs): Update.
12170 (mips_frame_saved_pc, mips16_heuristic_proc_desc): Update.
12171 (mips_eabi_push_dummy_call, mips_n32n64_push_dummy_call): Update.
12172 (mips_o32_push_dummy_call, mips_o64_push_dummy_call): Update.
12173 (mips_pop_frame, return_value_location): Update.
12174 (mips_n32n64_return_value, mips_dump_tdep): Update.
12175
12176 * mips-tdep.c (mips_gdbarch_init): Clean up code selecting the
12177 MIPS ABI.
12178
12179 * mips-tdep.c: Update copyright.
12180 (mips_gdbarch_init): Merge two code blocks handling the register
12181 name and number layout.
12182
12183 2004-01-02 Pawel Ostrowski <pasza@zodiac.mimuw.edu.pl>
12184
12185 * tracepoint.c (validate_actionline): Fix segv at EOF
12186
12187 2004-01-07 Michael Chastain <mec.gnu@mindspring.com>
12188
12189 * hpread.c (hpread_read_struct_type): Call SET_FIELD_PHYSNAME
12190 properly for static fields.
12191
12192 2004-01-06 Jeff Johnston <jjohnstn@redhat.com>
12193 Jason Molenda <jmolenda@apple.com>
12194
12195 * disasm.c: Update copyright to include 2004.
12196 (do_mixed_source_and_assembly): For uiout asm list
12197 and tuple cleanups, initialize to null_cleanup instead of
12198 NULL and do so prior to loop. Only reset when we close off
12199 the tuple/list. Move check for whether to close off the
12200 asm tuple/list to after dump_insns call where it will be run
12201 on each loop iteration.
12202
12203 2004-01-05 Andrew Cagney <cagney@redhat.com>
12204
12205 * ser-unix.c (ser_unix_async): Fix tipo, "NOTHING_SECHEDULED"
12206 should be a switch case and not a label.
12207 * mips-tdep.c (mips32_next_pc): Delete unused labels
12208 "greater_equal_branch" and "less_zero_branch".
12209 * jv-valprint.c (java_print_value_fields): Delete unused label
12210 "flush_it".
12211
12212 * target.c (unpush_target): Only close a target that is in the
12213 target stack.
12214
12215 2004-01-05 Mark Kettenis <kettenis@gnu.org>
12216
12217 * sparc-tdep.c (sparc_extract_struct_value_address): Get the
12218 address from [sp + 64] instead of %o2.
12219
12220 * frame.c (get_prev_frame): Don't try to unwind the PC. This
12221 fixes PR backtrace/1476.
12222
12223 2004-01-05 Andrew Cagney <cagney@redhat.com>
12224
12225 * libunwind-frame.h (struct frame_id): Add opaque declaration,
12226 move to start of file.
12227 * i386-tdep.h (struct regcache): Add opaque declaration.
12228 * config/ia64/nm-linux.h (struct target_ops): Add opaque
12229 declaration.
12230 * ia64-tdep.c (ia64_find_proc_info_x): Do not use __FUNCTION__.
12231 (ia64_gdbarch_init): Use "GNU/Linux" in comment.
12232 * win32-nat.c (fake_create_process): Use ISO C style definition.
12233 * stabsread.c (define_symbol): Delete #ifndef
12234 DEPRECATED_USE_REGISTER_NOT_ARG wrapper around
12235 stabs_argument_has_addr call, macro never defined.
12236
12237 2004-01-04 Michael Chastain <mec.gnu@mindspring.com>
12238
12239 * op50-rom.c: Delete.
12240 * w89k-rom.c: Delete.
12241 * Makefile.in: Remove references.
12242
12243 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12244
12245 * x86-64-tdep.c: Update copyright year.
12246 (struct amd64_register_info): Rename from x86_64_register_info.
12247 (amd64_register_info): Rename from x86_64_register_info.
12248 (AMD64_NUM_REGS): Rename from X86_64_NUM_REGS.
12249 (amd64_register_name): Rename from x86_64_register_name.
12250 (amd64_register_type): Rename from x86_64_register_type.
12251 (amd64_dwarf_regmap): Rename from x86_64_dwarf_regmap.
12252 (amd64_dwarf_regmap_len): Rename from x86_64_dwarf_regmap_len.
12253 (amd64_dwarf_reg_to_regnum): Rename from
12254 x86_64_dwarf_reg_to_regnum.
12255 (amd64_convert_register_p): Rename from x86_64_convert_register_p.
12256 (amd64_push_dummy_call): Rename from x86_64_push_dummy_call.
12257 (AMD64_NUM_SAVED_REGS): Rename from X86_64_NUM_SAVED_REGS.
12258 (struct amd64_frame_cache): Renamed from x86_64_frame_cache.
12259 (amd64_alloc_frame_cache): Renamed from x86_64_alloc_frame_cache.
12260 (amd64_analyze_prologue): Rename from x86_64_analyze_prologue.
12261 (amd64_skip_prologue): Rename from x86_64_skip_prologue.
12262 (amd64_frame_cache): Rename from x86_64_frame_cache.
12263 (amd64_frame_this_id): Rename from x86_64_frame_this_id.
12264 (amd64_frame_prev_register): Rename from
12265 x86_64_frame_prev_register.
12266 (amd64_frame_unwind): Rename from x86_64_frame_unwind.
12267 (amd64_frame_sniffer): Rename from x86_64_frame_sniffer.
12268 (amd64_sigtramp_frame_cache): Rename from
12269 x86_64_sigtramp_frame_cache.
12270 (amd64_sigtramp_frame_prev_register): Rename from
12271 x86_64_sigtramp_frame_prev_register.
12272 (amd64_sigtramp_frame_unwind): Rename from
12273 x86_64_sigtramp_frame_unwind.
12274 (amd64_sigtramp_frame_sniffer): Rename from
12275 x86_64_sigtramp_frame_sniffer.
12276 (amd64_frame_base_address): Rename from x86_64_frame_base_address.
12277 (amd64_frame_base): Rename from x86_64_frame_base.
12278 (amd64_unwind_dummy_id): Rename from x86_64_unwind_dummy_id.
12279 (amd64_frame_align): Rename from x86_64_frame_align.
12280 (amd64_supply_fpregset): Rename from x86_64_supply_fpregset.
12281 (amd64_regset_from_core_section): Rename from
12282 x86_64_regset_from_core_section.
12283 (x86_64_init_abi): Update comments.
12284
12285 2004-01-04 Nick Roberts <nick@nick.uklinux.net>
12286
12287 * MAINTAINERS (write after approval): Add myself.
12288
12289 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12290
12291 * sparc64-tdep.c (sparc64_store_arguments): Fix handling of
12292 `float' arguments.
12293
12294 2004-01-04 Mark Kettenis <kettenis@gnu.org>
12295
12296 * sparc64-tdep.c (sparc64_store_floating_fields): Update comment
12297 such that it mentions a specific version of GCC that exhibits this
12298 bug.
12299
12300 2004-01-03 Mark Kettenis <kettenis@gnu.org>
12301
12302 * sparc64-tdep.c (sparc64_store_floating_fields): If TYPE is a
12303 structure that has a single `float' member, store it in %f1 in
12304 addition to %f0.
12305
12306 * sparc-sol2-nat.c: Add missing '\'.
12307
12308 * sparc-tdep.c (sparc32_return_value): New function.
12309 (sparc32_use_struct_convention, sparc32_return_value_on_stack):
12310 Remove functions.
12311 (sparc32_gdbarch_init): Set return_value, don't set
12312 extract_return_value, store_return_value, use_struct_convention
12313 and return_value_on_stack.
12314
12315 * sparc-sol2-nat.c: Add missing ')'.
12316
12317 2004-01-03 J. Brobecker <brobecker@gnat.com>
12318
12319 * infrun.c (handle_step_into_function): New function.
12320 (handle_inferior_event): Extract out some code into the new
12321 function above.
12322
12323 2004-01-03 J. Brobecker <brobecker@gnat.com>
12324
12325 * infrun.c (handle_inferior_event): Move the declaration of
12326 real_stop_pc inside the if blocks where it is used.
12327
12328 2004-01-03 Mark Kettenis <kettenis@gnu.org>
12329
12330 * sparc64-tdep.c (sparc64_16_byte_align_p)
12331 (sparc64_store_floating_fields, sparc64_store_floating_fields):
12332 Use check_typedef to get subtypes of structures and unions.
12333 (sparc64_store_return_value): Fix calculation of the appropriate
12334 offset into VALBUF when storing a structure or union.
12335 (sparc64_return_value): New function.
12336 (sparc64_use_struct_convention): Remove function.
12337 (sparc64_init_abi): Set return_value, don't set
12338 extract_return_value, store_return_value and
12339 use_struct_convention.
12340
12341 2004-01-03 Eli Zaretskii <eliz@elta.co.il>
12342
12343 * config/djgpp/fnchange.lst: Add lines for COPYING.LIBGLOSS,
12344 bfd/doc/ChangeLog-9103, bfd/elf32-m68hc1x.c,
12345 gdb/config/alpha/xm-alphaosf.h,
12346 gdb/config/powerpc/tm-ppcle-eabi.h,
12347 gdb/config/rs6000/tm-rs6000-aix4.h, gdb/gdbtk/ChangeLog-2001,
12348 gdb/gdbtk/ChangeLog-2002, gdb/gdbtk/ChangeLog-2003,
12349 gdb/gdbtk/plugins/intel-pentium/intel-pentium.tcl.in,
12350 gdb/gdbtk/plugins/rhabout/rhabout.tcl.in, gdb/i386-linux-nat.c,
12351 gdb/ia64-aix-nat.c, gdb/ia64-aix-tdep.c, gdb/ia64-linux-nat.c,
12352 gdb/ia64-linux-nat.c, gdb/ppc-linux-tdep.c, gdb/ppc-linux-nat.c,
12353 gdb/sparc64nbsd-nat.c, gdb/sparc64nbsd-tdep.c,
12354 gdb/sparc64-linux-nat.c, gdb/sparc64-linux-tdep.c,
12355 gdb/sparc64-nat.c, gdb/sparc64-tdep.c, gdb/sparc64-sol2-tdep.c,
12356 gdb/sparc-sol2-nat.c, gdb/sparc-sol2-tdep.c,
12357 gdb/testsuite/gdb.gdbtk/, gdb/testsuite/gdb.mi/mi-var-child.exp,
12358 nclude/ChangeLog-9103, include/coff/ChangeLog-9103,
12359 include/elf/ChangeLog-9103, include/opcode/ChangeLog-9103,
12360 opcodes/ChangeLog-0001, opcodes/ChangeLog-0203,
12361 opcodes/openrisc-dis.c, opcodes/openrisc-desc.h,
12362 sim/frv/profile-fr550.c, sim/frv/profile-fr550.h,
12363 sim/sh64/sem-compact-switch.c, sim/sh64/sem-media-switch.c,
12364 sim/testsuite/sim/sh64/compact/ldsl-mach.cgs,
12365 sim/testsuite/sim/sh64/compact/ldsl-macl.cgs,
12366 sim/testsuite/sim/sh64/compact/stsl-mach.cgs, and
12367 sim/testsuite/sim/sh64/compact/stsl-macl.cgs.
12368 Remove lines for .cvsignore files.
12369
12370 2004-01-03 J. Brobecker <brobecker@gnat.com>
12371
12372 * infrun.c: Back out the previous change.
12373
12374 2004-01-03 Mark Kettenis <kettenis@gnu.org>
12375
12376 * NEWS: Mention revised SPARC target. Add sparc-*-lynxos* and
12377 sparc-*-sunos4* to the list of REMOVED configurations.
12378
12379 * configure.tgt: Add back sparc-*-vxworks*.
12380 * remote-vxsparc.c: Remove all includes except for "defs.h",
12381 "regcache.h", "vx-share/ptrace.h" and "vx-share/regPacket.h".
12382 Include "sparc-tdep.h".
12383 (SPARC_R_G1): New define.
12384 (vxsparc_gregset): New variable.
12385 (ext_format_sparc): Remove extern declaration.
12386 (vx_read_register): Rewrite to use sparc32_supply_gregset and
12387 sparc32_supply_fpregset.
12388 (vx_write_register): Rewrite to use sparc32_collect_gregset,
12389 sparc_collect_rwindow and sparc32_collect_fpregset.
12390 * config/sparc/tm-vxworks.h: New file, based on recently removed
12391 tm-vxsparc.h.
12392 * config/sparc/vxworks.mt: New file, based on recently removed
12393 vxworks.mt.
12394
12395 2004-01-03 J. Brobecker <brobecker@gnat.com>
12396
12397 * infrun.c (handle_step_into_function): New function.
12398 (handle_inferior_event): Extract out some code into the new
12399 function above.
12400
12401 2004-01-02 Mark Kettenis <kettenis@gnu.org>
12402
12403 * Makefile.in (ALLDEPFILES): Remove sparc-linux-nat.c and
12404 sparcl-tdep.c. Add sparc-linux-tdep.c, sparc-sol2-nat.c,
12405 sparc-sol2-tdep.c, sparc-sol2-nat.c, sparc-sol2-tdep.c,
12406 sparc64-linux-nat.c, sparc64-linux-tdep.c, sparc64-nat.c,
12407 sparc64-sol2-tdep.c, sparc64-tdep.c, sparc64fbsd-nat.c,
12408 sparc64fbsd-tdep.c, sparcnbsd-nat.c, sparcnbsd-tdep.c.
12409 (sparc_nat_h): New variable.
12410 (sparcbsd_nat_h, sparcnbsd_tdep_h): Remove variables.
12411 (tm-sun4os4.h): Remove dependency.
12412 (sparcbsd-nat.o, sparc-linux-nat.o): Remove dependencies.
12413 (sparc64fbsd-nat.o, sparc64fbsd-tdep.o, sparc64nbsd-nat.o,
12414 sparc64-tdep.o, sparc-nat.o, sparcnbsd-nat.o, sparcnbsd-tdep.o,
12415 sparc-tdep.o): Update dependencies.
12416 (sparc-linux-tdep.o, sparc-sol2-nat.o, sparc-sol2-tdep.o,
12417 sparc64-linux-nat.o, sparc64-linux-tdep.o, sparc64-nat.o,
12418 sparc64-sol2-tdep.o, sparc64-tdep.o, sparc64nbsd-tdep.o): New
12419 dependencies.
12420 * configure.host: Remove existing sparc-*-lynxos*,
12421 sparc-*-solaris*, sparc-*-sunos4*, sparc-*-sunos5*, sparc-*-*,
12422 ultrasparc-*-freebsd, sparcv9-*-freebsd, sparc64-*-linux*,
12423 sparcv9-*-* and sparc64-*-* triplets. Add new sparc64-*-linux*,
12424 sparc-*-solaris2*, sparcv9-*-solaris2* and sparc64-*-solaris2*
12425 triplets.
12426 * configure.tgt: Remove exitsing sparc-*-aout*, sparc-*-coff*,
12427 sparc-*-elf*, sparc*-lynxos*, sparc-*-solars2*, sparc-*-sunos4*,
12428 sparc-*-sunos5*, sparc-*-vxworks*, sparc64-*linux*, sparc64-*-*,
12429 sparcv9-*-* and commented out sparc64-*-solars2* triplets. Add
12430 new sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*,
12431 sparc64-*-linux, sparc-*-solaris2*, sparcv9-*-solaris*,
12432 sparc64-*-solaris2* and sparc64-*-* triplets.
12433 * sparc64-tdep.c: Update copyright year. Include "inferior.h",
12434 "symtab.h" and "objfiles.h".
12435 (BIAS): Remove define.
12436 (X_OP, X_RD, X_A, X_COND, X_OP2, X_IMM22, X_OP3, X_I, X_DISP22)
12437 (X_DISP19): Remove macros.
12438 (sparc_fetch_instruction): Remove function.
12439 (struct gdbarch_tdep): Remove definition.
12440 (SPARC64_NUM_REGS, SPARC64_NUM_PSEUDO_REGS): Use ARRAY_SIZE.
12441 (sparc_breakpoint_from_pc): Remove function.
12442 (struct sparc64_frame_cache): Remove definition.
12443 (sparc64_alloc_frame_cache, sparc64_analyze_prologue,
12444 sparc64_unwind_pc): Remove functions.
12445 (sparc64_skip_prologue): Use `struct sparc_frame_cache' instead of
12446 `struct sparc64_frame_cache. Call sparc_analyze_prologue instead
12447 of sparc64_analyze_prologue. Mark constant as ULL instead of UL.
12448 (sparc64_frame_cache): Change return type to `struct
12449 sparc_frame_cache *'. Simply call sparc_frame_cache.
12450 (sparc64_frame_this_id, sparc64_frame_prev_register,
12451 sparc64_frame_base_address): Use `struct sparc_frame_cache'
12452 instead of `struct sparc64_frame_cache.
12453 (sparc_unwind_dummy_id, sparc_extract_struct_value_address,
12454 sparc_analyze_control_transfer, sparc_software_single_step,
12455 sparc64_gdbarch_init, sparc_supply_rwindow, sparc_fill_rwindow,
12456 _initialize_sparc64_tdep): Remove functions.
12457 (TSTATE_CWP, TSTATE_ICC, TSTATE_XCC): New macros.
12458 (PSR_S, PSR_ICC, PSR_VERS, PSR_IMPL, PSR_V8PLUS, PSR_XCC): New
12459 macros.
12460 (sparc64_supply_gregset, sparc64_collect_gregset,
12461 sparc64_supply_fpregset, sparc64_collect_fpregset): New functions.
12462 (sparc64_init_abi): New function.
12463 * sparc64-tdep.h: Update copyright year. Fix typo in multiple
12464 inclusion guard. Include "sparc-tdep.h".
12465 (BIAS): Define.
12466 (r_tstate_offset, r_fprs_offset): New defines.
12467 (enum sparc_regnum): Remove defenition.
12468 (enum sparc64_regnum): Reformat.
12469 (sparc_supply_rwindow, sparc_fill_rwindow): Remove prototypes.
12470 (sparc64_init_abi, sparc64_supply_gregset,
12471 sparc64_collect_gregset, sparc64_supply_fpregset,
12472 sparc64_collect_fpregset): New prototypes.
12473 (sparc64_sol2_gregset, sparc64nbsd_gregset, sparc64fbsd_gregset):
12474 Add extern declarations.
12475 (sparc64_sol2_init_abi): New prototype.
12476 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
12477 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
12478 prototypes.
12479 * sparc64fbsd-nat.c: Include "sparc-nat.h", don't include
12480 "sparnbsd-nat.h".
12481 (sparc64fbsd_reg_supplies_p, sparc64fbsd_fpreg_supplies_p): Remove
12482 functions.
12483 (_initialize_sparc64fbsd_nat): Remove initialization of
12484 sparcbsd_supply_reg, sparcbsd_fill_reg, sparcbsd_supply_fpreg,
12485 sparcbsd_fill_fpreg, sparcbsd_reg_supplies_p,
12486 sparcbsd_fpreg_supplies_p. Initialize sparc_gregset.
12487 * sparc64fbsd-tdep.c: Update copyright year. Include "frame.h",
12488 "frame-unwind.h", "trad-frame.h" and "gdb_assert.h".
12489 (sparc64fbsd_r_global_offset, sparc64fbsd_r_out_offset)
12490 (sparc64fbsd_r_fprs_offset, sparc64fbsd_r_tnpc_offset)
12491 (sparc64fbsd_r_tpc_offset, sparc64fbsd_r_tstate_offset)
12492 (sparc64fbsd_r_y_offset): Remove variables.
12493 (sparc64fbsd_sizeof_struct_reg, sparc64fbsd_sizeof_struct_fpreg):
12494 Make static and const.
12495 (sparc64fbsd_supply_reg, sparc64fbsd_fill_reg)
12496 (sparc64fbsd_supply_fpreg, sparc64fbsd_fill_fpreg): Remove
12497 functions.
12498 (sparc64fbsd_gregset): New variable.
12499 (fetch_core_registers): Replace calls to sparc64fbsd_supply_reg
12500 and sparc64fbsd_supply_fpreg with calls to sparc64_supply_gregset
12501 and sparc64_supply_fpregset.
12502 (sparc64fbsd_pc_in_sigtramp, sparc64fbsd_sigtramp_frame_cache)
12503 (sparc64fbsd_sigtramp_frame_this_id)
12504 (sparc64fbsd_sigtramp_frame_prev_register): New functions.
12505 (sparc64fbsd_sigtramp_frame_unwind): New variable.
12506 (sparc64fbsd_sigtramp_frame_sniffer): New function.
12507 (sparc64fbsd_init_abi): Set pc_in_sigtramp, append
12508 sparc64fbsd_sigtramp_frame_sniffer. Call sparc64_init_abi.
12509 * sparcnbsd-tdep.c: Update copyright year. Include
12510 "floatformat.h", "frame.h", "frame-unwind.h", "symtab.h",
12511 "trad-frame.h" and "gdb_assert.h", don't include "target.h",
12512 "value.h" and "sparcnbsd-tdep.h".
12513 (REG32_OFFSET_PSR, REG32_OFFSET_PC, REG32_OFFSET_NPC)
12514 (REG32_OFFSET_Y, REG32_OFFSET_GLOBAL, REG32_OFFSET_OUT)
12515 (REG64_OFFSET_TSTATE, REG64_OFFSET_PC, REG64_OFFSET_NPC)
12516 (REG64_OFFSET_Y, REG64_OFFSET_GLOBAL, REG64_OFFSET_OUT): Remove
12517 defines.
12518 (sparcnbsd_gregset): New variable.
12519 (sparcnbsd_supply_reg32, sparcnbsd_supply_reg64)
12520 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64)
12521 (sparcnbsd_supply_fpreg32, sparcnbsd_supply_fpreg64)
12522 (sparcnbsd_fill_reg32, sparcnbsd_fill_reg64): Remove functions.
12523 (sparc32nbsd_sigtramp_start, sparc32nbsd_sigtramp_end): New
12524 variables.
12525 (sparc32nbsd_pc_in_sigtramp, sparc32nbsd_sigcontext_frame_cache)
12526 (sparc32nbsd_sigcontext_frame_this_id)
12527 (sparc32nbsd_sigcontext_frame_prev_register): New functions.
12528 (sparc32nbsd_sigcontext_frame_unwind): New variable.
12529 (sparc32nbsd_sigtramp_frame_sniffer): New function.
12530 (sparcnbsd_get_longjmp_target_32,
12531 sparcnbsd_get_longjmp_target_64): Remove functions.
12532 (sparcnbsd_aout_in_solib_call_trampoline): Rewrite.
12533 (sparcnbsd_init_abi_common, sparcnbsd_init_aout,
12534 sparcnbsd_init_elf): Remove.
12535 (sparcnbsd_init_abi, sparcnbsd_aout_init_abi)
12536 (sparcnbsd_elf_init_abi): New functions.
12537 (_initialize_sparcnbsd_tdep): New prototype.
12538 (_initialize_sparnbsd_tdep): Update.
12539 * config/sparc/fbsd.mh (NATDEPFILES): Remove sparcbsd-nat.o and
12540 corelow.o. Add sparc64-nat.o and sparc-nat.o.
12541 * config/sparc/fbsd.mt (TDEPFILES): Add sparc-tdep.o and corelow.o.
12542 * config/sparc/linux.mh: Update comment.
12543 (XM_FILE, HOST_IPC): Remove variables.
12544 (NATDEPFILES): Add sparc-sol2-nat.o and core-regset.o. Remove
12545 sparc-linux-nat.o.
12546 * config/sparc/linux.mt: Update comment.
12547 (TDEPFILES): Add sparc-sol2-tdep.o and sparc-linux-tdep.o.
12548 * config/sparc/nbsd.mt: Reformat.
12549 * config/sparc/nbsd64.mh: Update comment.
12550 (NATDEPFILES): Add sparc-nat.o.
12551 * config/sparc/nbsd64.mt: Update comment.
12552 (TDEPFILES): Add sparc64-tdep.o and sparc64nbsd-tdep.o.
12553 (TM_FILE): Set to tm-nbsd.h.
12554 * config/sparc/nbsdelf.mh: Update comment.
12555 (NATDEPFILES): Add sparc-nat.o.
12556 (XM_FILE): Delete.
12557 * config/sparc/nbsdaout.mh: Update comment.
12558 (NATDEPFILES): Add sparc-nat.o
12559 (XM_FILE): Delete.
12560 * config/sparc/nm-linux.h: Update copyright year. Don't include
12561 "config/nm-svr4.h" and "solib.h". Add protection against multiple
12562 inclusion.
12563 (KERNEL_U_SIZE): Remove define.
12564 (kernel_u_size): Remove prototype.
12565 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define.
12566 * config/sparc/nm-nbsd.h: Update copyright. Don't include
12567 "regcache.h".
12568 (CHILD_PREPARE_TO_STORE): Remove define.
12569 * config/sparc/nm-nbsdaout.h: Tweak some comments.
12570 * sparc-nat.c, sparc-tdep.c, sparc-tdep.h, sparc64nbsd-nat.c,
12571 sparcnbsd-nat.c: Rewrite files.
12572 * config/sparc/tm-linux.h, config/sparc/tm-nbsd.h: Rewrite files.
12573 * sparc-linux-nat.c, sparcbsd-nat.c, sparcbsd-nat.h,
12574 sparcnbsd-tdep.h: Remove files.
12575 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4os4.h,
12576 config/sparc/nm-sun4sol2.h, config/sparc/sp64.mt,
12577 config/sparc/sp64linux.mt, config/sparc/sp64sol2.mt,
12578 config/sparc/sparc-em.mt, config/sparc/sparclynx.mh,
12579 config/sparc/sparclynx.mt, config/sparc/sun4os4.mh,
12580 config/sparc/sun4os4.mt, config/sparc/sun4sol2.mh,
12581 config/sparc/sun4sol2.mt, config/sparc/tm-sp64.h,
12582 config/sparc/tm-sp64linux.h, config/sparc/tm-sparc.h,
12583 config/sparc/tm-sparclynx.h, config/sparc/tm-spc-em.h,
12584 config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h,
12585 config/sparc/tm-vxsparc.h, config/sparc/vxsparc.mt,
12586 config/sparc/xm-linux.h, config/sparc/xm-sun4sol2.h: Remove files.
12587 * sparc-linux-tdep.c, sparc-nat.h, sparc-sol2-nat.c,
12588 sparc-sol2-tdep.c, sparc64-linux-nat.c, sparc64-linux-t dep.c,
12589 sparc64-nat.c, sparc64-sol2-tdep.c, sparc64nbsd-tdep.c: New files.
12590 * config/sparc/linux64.mh, config/sparc/linux64.mt,
12591 config/sparc/nm-sol2.h, config/sparc/sol2-64.mt,
12592 config/sparc/sol2.mh, config/sparc/sol2.mt, config/sparc/sparc.mt,
12593 config/sparc/sparc64.mt, config/sparc/tm-sol2.h: New files.
12594
12595 2004-01-02 Andrew Cagney <cagney@redhat.com>
12596
12597 From 2003-12-18 Kazuhiro Inaoka:
12598 * configure.host: Add m32r-linux target.
12599
12600 2004-01-02 Michael Chastain <mec.gnu@mindspring.com>
12601
12602 * top.c (print_gdb_version): Update year to 2004.
12603
12604 2004-01-02 Mark Mitchell <mark@codesourcery.com>
12605
12606 * MAINTAINERS: Add myself to the write-after-approval category.
12607
12608 2004-01-02 Daniel Jacobowitz <drow@mvista.com>
12609
12610 From Bernardo Innocenti <bernie@develer.com>:
12611 * configure.tgt: Add uClinux target.
12612
12613 2004-01-02 Andrew Cagney <cagney@redhat.com>
12614
12615 * utils.c (do_my_cleanups): Make static, add forward declaration.
12616 * defs.h (do_my_cleanups): Delete declaration.
12617
12618 2004-01-02 Eli Zaretskii <eliz@elta.co.il>
12619
12620 * config/djgpp/fnchange.lst: Add lines for gdb/ChangeLog-2003 and
12621 bfd/ChangeLog-0203.
12622
12623 2004-01-02 Mark Kettenis <kettenis@gnu.org>
12624
12625 * configure.in: Check for <machine/reg.h>. Check for `struct reg'
12626 in <machine/reg.h>.
12627 * configure, config.in: Regenerate.
12628
12629 For older changes see ChangeLog-2003, mi/ChangeLog-1999-2003, and
12630 tui/ChangeLog-1998-2003.
12631 \f
12632 Local Variables:
12633 mode: change-log
12634 left-margin: 8
12635 fill-column: 74
12636 version-control: never
12637 End:
This page took 0.270982 seconds and 5 git commands to generate.