abb7f0d3953fb02e5593e5ec15ac4f2ad8a8e6d0
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2003-08-10 Andrew Cagney <cagney@redhat.com>
2
3 * Makefile.in (monitor.o): Do not build monitor.c with -Werror.
4
5 2003-08-10 Mark Kettenis <kettenis@gnu.org>
6
7 * i386-tdep.h (i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
8 i386obsd_sigtramp_start, i386obsd_sigtramp_end,
9 i386fbsd4_sc_reg_offset, i386fbsd_sc_reg_offset,
10 i386nbsd_sc_reg_offset, i386obsd_sc_reg_offset,
11 i386bsd_sc_reg_offset): Add extern declarations.
12 * i386obsd-nat.c: Include "i386-tdep.h"
13 (_initialize_i386obsd_nat): Remove extern declarations.
14 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Remove extern
15 declarations.
16 * i386bsd-nat.c (_initialize_i386bsd_nat): Remove extern
17 declarations.
18
19 * i386-tdep.c (i386_register_to_value): Use get_frame_register
20 instead of frame_read_register.
21 (i386_fetch_pointer_argument): Use get_frame_register_unsigned
22 instead of frame_read_register. Use I386_ESP_REGNUM instead of
23 SP_REGNUM.
24 (i386_frame_prev_register): Use frame_unwind_register_unsigned
25 instead of frame_unwind_unsigned_register. Use
26 I386_EFLAGS_REGISTER instead of PS_REGNUM.
27 (i386_get_longjmp_target): Use regcache_read_unsigned_register
28 instead of read_register. Use builtin_type_void_data_ptr instead
29 of builtin_type_void_func_ptr when extracting the address of the
30 jmp_buf.
31 (i386_extract_return_value, i386_store_return_value,
32 i386_pseudo_register_read, i386_pseudo_register_write): Use
33 register_size instead REGISTER_RAW_SIZE.
34
35 2003-08-10 Andrew Cagney <cagney@redhat.com>
36
37 * infcall.c (call_function_by_hand): Use xstrprintf instead of
38 sprintf. Make "name" constant.
39
40 2003-08-10 Mark Kettenis <kettenis@gnu.org>
41
42 * i387-tdep.c (i387_register_to_value): Use get_frame_register
43 instead of frame_read_register.
44 (i387_print_float_info): Use get_frame_register and
45 get_frame_register_unsigned instead of frame_register_read.
46
47 * i386fbsd-nat.c: Include "i386-tdep.h".
48 (child_resume): Make `eflags' an ULONGEST. Use
49 regcache_cooked_read_unsigned and regcache_cooked_write_unsigned
50 instead of register_read and register_write.
51
52 * i386bsd-nat.c (fetch_inferior_registers,
53 store_inferior_registers): Don't use && at the end of a line.
54 (_initialize_i386bsd_nat): Fix typo.
55
56 * frame.c (_initialize_frame): Add missing backslash.
57
58 From Peter Schauer (Peter.Schauer@regent.e-technik.tu-muenchen.de):
59 * sol-thread.c (sol_thread_store_registers): Use regcache_collect
60 and supply_register instead of manipulating the register buffer
61 directly.
62
63 From Peter Schauer (Peter.Schauer@regent.e-technik.tu-muenchen.de):
64 * config/i386/nm-i386sol2.h
65 (TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT): Define to one.
66
67 Based on a patch from Michael Elizabeth Chastain (mec@shout.net):
68 * i386-tdep.c (i386_analyze_frame_setup): Recognize more
69 instructions that GCC likes to mingle into the prologue. Fixes
70 gdb/1253 and gdb/1255.
71
72 2003-08-09 Andrew Cagney <cagney@redhat.com>
73
74 Fix GDB PR cli/926.
75 * cli/cli-decode.c (add_setshow_uinteger_cmd): New function.
76 * command.h (add_setshow_uinteger_cmd): Declare.
77 * frame.c (set_backtrace_cmd): New function.
78 (show_backtrace_cmd): New function.
79 * frame.c (_initialize_frame): Replace "set/show
80 backtrace-below-main" with "set/show backtrace past-main". Add
81 command "set/show backtrace limit".
82 (backtrace_past_main): Rename "backtrace_below_main".
83 (backtrace_limit): New variable.
84 (get_prev_frame): Update. Check the backtrace_limit.
85
86 2003-08-09 Andrew Cagney <cagney@redhat.com>
87
88 * defs.h (xstrprintf): Declare.
89 * utils.c (xstrprintf): New function.
90 * breakpoint.c (insert_breakpoints): Replace sprintf and
91 non-literal format strings, with xstrprintf and cleanups.
92 (delete_breakpoint,breakpoint_re_set): Ditto.
93 (commands_command, insert_breakpoints): Ditto.
94 (bpstat_stop_status, break_at_finish_at_depth_command_1): Ditto.
95 (break_at_finish_command_1): Ditto.
96
97 2003-08-09 Andrew Cagney <cagney@redhat.com>
98
99 * MAINTAINERS (language support): List Adam Fedor as Objective C
100 maintainer.
101
102 2003-08-08 J. Brobecker <brobecker@gnat.com>
103
104 * NEWS (Multi-arched targets): Document that all hppa-hpux targets
105 are now multiarched.
106
107 2003-08-08 J. Brobecker <brobecker@gnat.com>
108
109 * config/pa/tm-hppa64.h: Remove lots of macros that are no
110 longer necessary now that hppa64 is partially multiarch'ed.
111
112 2003-08-08 Andrew Cagney <cagney@redhat.com>
113
114 * interps.c (interp_set): Check for a NULL "old_interp".
115
116 2003-08-08 H.J. Lu <hongjiu.lu@intel.com>
117
118 * Makefile.in (FLAGS_TO_PASS): Add DESTDIR.
119 (install-only): Support DESTDIR.
120 (uninstall): Likewise.
121 (install-gdbtk): Likewise.
122
123 2003-08-08 Elena Zannoni <ezannoni@redhat.com>
124
125 * symtab.c (lookup_symbol_aux): Make sure that is_a_field_of_this
126 contains something meaningful at all times.
127
128 Fri Aug 8 00:28:46 UTC 2003 Brendan Conoboy <blc@redhat.com>
129
130 * configure.host: Set gdb_host_cpu=arm when host_cpu=xscale.
131
132 Fri Aug 8 00:28:38 UTC 2003 Brendan Conoboy <blc@redhat.com>
133
134 * MAINTAINERS (write after approval): Added self.
135
136 2003-08-07 Andrew Cagney <cagney@redhat.com>
137
138 * inferior.h (AT_SYMBOL): Define.
139 * blockframe.c (inside_entry_file): Check for AT_SYMBOL.
140 * infcall.c (call_function_by_hand): Add code to handle AT_SYMBOL.
141 * mips-tdep.c (mips_call_dummy_address): Delete function.
142 (mips_gdbarch_init): Set call_dummy_location to AT_SYMBOL, do not
143 set call_dummy_address.
144
145 2003-08-07 Andrew Cagney <cagney@redhat.com>
146
147 * language.c (op_error): Delete function.
148 (binop_type_check): Delete function.
149 * language.h (type_op_error, range_op_error): Delete macros.
150 (op_error): Delete declaration.
151
152 2003-08-07 Andrew Cagney <cagney@redhat.com>
153
154 * interps.h (INTERP_MI2, INTERP_MI3): Define.
155
156 2003-08-07 Michal Ludvig <mludvig@suse.cz>
157
158 * x86-64-tdep.c (x86_64_dwarf_regmap): Correct register numbers.
159 (x86_64_push_arguments): Skip the red zone.
160
161 2003-08-05 Andrew Cagney <cagney@redhat.com>
162
163 * reggroups.c (reggroup_next): Check for the final entry.
164
165 2003-08-04 Andrew Cagney <cagney@redhat.com>
166
167 * monitor.h (monitor_dump_reg_block): Remove ATTR_FORMAT.
168 * cli/cli-script.c (define_command): Call query directly, instead
169 of passing it a buffer.
170 * ocd.c (ocd_error): Pass error a constant format string.
171 * remote-mips.c (mips_error): Use fputs_filtered.
172
173 * solib-svr4.c (_initialize_svr4_solib): Update
174 register_gdbarch_data call.
175 * mips-linux-tdep.c (_initialize_mips_linux_tdep): Ditto.
176
177 * gdbarch.sh (gdbarch_data_free_ftype): Delete declaration.
178 (register_gdbarch_data): Delete "free" parameter. Update
179 comments.
180 * gdbarch.h, gdbarch.c: Re-generate.
181 * reggroups.c (_initialize_reggroup): Update.
182 * gnu-v3-abi.c (init_gnuv3_ops): Update.
183 * frame-base.c (_initialize_frame_base): Update.
184 * frame-unwind.c (_initialize_frame_unwind): Update.
185 * user-regs.c (_initialize_user_regs): Update.
186 * remote.c (_initialize_remote): Update.
187 * regcache.c (_initialize_regcache): Update.
188
189 * regcache.c (xfree_regcache_descr): Delete function.
190 (_initialize_regcache): Update call to register_gdbarch_data.
191 (init_regcache_descr, init_legacy_regcache_descr): Use
192 GDBARCH_OBSTACK_XALLOC and GDBARCH_OBSTACK_CALLOC.
193
194 * remote.c (free_remote_state): Delete function.
195 (_initialize_remote): Update register_gdbarch_data.
196 (init_remote_state): Use GDBARCH_OBSTACK_XALLOC and
197 GDBARCH_OBSTACK_CALLOC instead of xmalloc / xcalloc.
198
199 2003-08-04 Andrew Cagney <cagney@redhat.com>
200
201 * reggroups.c (struct reggroup_el): Define.
202 (struct reggroups): Delete field "nr_group". Replace array
203 "group" with a "first" to "last" linked list.
204 (reggroups_init): Update. Allocate using gdbarch's obstack.
205 (reggroups_free): Delete function.
206 (add_group): Update. Add "el" parameter.
207 (reggroup_add): Pass gdbarch obstack allocated space to add_group.
208 (default_groups): Update.
209 (reggroup_next): Replace reggroups.
210 (reggroups_dump): Update.
211 (_initialize_reggroup): Pass XMALLOC allocated space to add_group.
212 * regcache.c (regcache_dump): Use reggroup_next instead of reggroups.
213 * infcmd.c (registers_info): Use reggroup_next instead of reggroups.
214
215 2003-08-04 Daniel Jacobowitz <drow@mvista.com>
216
217 * Makefile.in (tui-interp.o): Update dependencies.
218
219 2003-08-04 David Carlton <carlton@kealia.com>
220
221 * charset.c (cached_iconv_convert): Add __FILE__ and __LINE__ args
222 to internal_error call.
223 * source.c (forward_search_command): Add "%s" format argument.
224 (reverse_search_command): Ditto.
225 * top.c (quit_confirm): Ditto.
226 * cli/cli-setshow.c (do_setshow_command): Ditto.
227 * cp-valprint.c (cp_print_class_method): Replace
228 {f,}printf_{un,}filtered by {f,}puts_{un,}filtered.
229 (cp_print_class_member): Ditto.
230 * event-top.c (command_line_handler): Ditto.
231 * linux-proc.c (linux_info_proc_cmd): Ditto.
232 * p-typeprint.c (pascal_type_print_base): Ditto.
233 * p-valprint.c (pascal_object_print_class_method): Ditto.
234 (pascal_object_print_class_member): Ditto.
235 * printcmd.c (print_scalar_formatted,printf_command): Ditto.
236 * remote.c (remote_cisco_section_offsets): Ditto.
237 * top.c (command_line_input): Ditto.
238 * utils.c (vwarning,error_stream,quit): Ditto.
239 * valprint.c (print_floating,print_binary_chars)
240 (print_octal_chars,print_decimal_chars,print_hex_chars): Ditto.
241
242 2003-08-04 Andrew Cagney <cagney@redhat.com>
243
244 * frame.c (frame_func_unwind): Use frame_unwind_address_in_block.
245
246 2003-08-02 Andrew Cagney <cagney@redhat.com>
247
248 * config/djgpp/fnchange.lst: Fix up testsuite/gdb.c++/annota3.cc,
249 gdb/testsuite/gdb.c++/annota3.exp, amd64fbsd-tdep.c and
250 amd64fbsd-nat.c.
251
252 2003-08-02 Andrew Cagney <cagney@redhat.com>
253
254 * Makefile.in: Update all dependencies and definitions.
255
256 2003-08-02 Adam Fedor <fedor@gnu.org>
257
258 * linespec.c (is_objc_method_format): New function
259 (decode_line_1, locate_first_half): Use it.
260 Fixes PR objc/1298
261
262 2003-08-01 Andrew Cagney <cagney@redhat.com>
263
264 * NEWS: Mention that m32r is multi-arch.
265 From 2003-07-28 Kei Sakamoto <sakamoto.kei@renesas.com>:
266 * configure.tgt: Recognize m32r-*-*.
267 * config/m32r/tm-m32r.h: Delete file.
268 * config/m32r/m32r.mt: New file.
269 * m32r-rom.c (m32r_upload_command): Use hostent only when
270 gethostname succeeds, in order to avoid a compilation
271 warning.
272 * m32r-tdep.c (m32r_store_return_value): Add a cast to remove a
273 compiler warning.
274
275 2003-08-01 Michael Snyder <msnyder@redhat.com>
276
277 * sh-tdep.c (sh_frame_align): New gdbarch method.
278 (sh_gdbarch_init): Set up frame_align method.
279
280 2003-07-31 Michael Snyder <msnyder@redhat.com>
281
282 * value.h, values.c, infcall.c, infcmd.c: Revert 07-30 change,
283 which is already covered by the new frames infrastructure.
284
285 2003-07-31 Andrew Cagney <cagney@redhat.com>
286
287 * user-regs.c (struct user_reg): Add "next" link.
288 (struct user_regs): Replace "user" with "first" and "last" links.
289 (append_user_reg): Add pre-allocated "reg" parameter.
290 (builtin_user_regs): Provide initial value for "last".
291 (user_reg_add_builtin): XMALLOC memory for append_user_reg.
292 (user_regs_init): Allocate memory from the gdbarch obstack.
293 (user_reg_add): GDBARCH_OBSTACK_ZALLOC memory for append_user_reg.
294 (user_reg_map_name_to_regnum): Rewrite to search the user_reg
295 linked list.
296 (usernum_to_user_reg): New function.
297 (user_reg_map_regnum_to_name): Use usernum_to_user_reg.
298 (value_of_user_reg): Use usernum_to_user_reg.
299 (user_regs_free): Delete function.
300 (_initialize_user_regs): Update register_gdbarch_data call.
301
302 2003-07-31 Daniel Jacobowitz <drow@mvista.com>
303
304 * dwarf2read.c (new_symbol): Use var_decode_location for parameters.
305
306 2003-07-30 Michael Snyder <msnyder@redhat.com>
307
308 * value.h (value_being_returned): Add a struct_addr argument.
309 * infcall.c (call_function_by_hand): Pass struct_addr to
310 value_being_returned.
311 * infcmd.c (print_return_value): Pass zero as struct_addr.
312 * values.c (value_being_returned): If struct_addr is passed,
313 use it instead of trying to recover it from the inferior.
314
315 2003-07-30 Kevin Buettner <kevinb@redhat.com>
316
317 * mn10300-tdep.c (analyze_dummy_frame): Pass ``pc'' so that
318 the prologue analyzer won't need to attempt to extract the pc
319 value from the woefully incomplete dummy frame.
320 (mn10300_analyze_prologue): Avoid calls to get_frame_pc() when
321 possible. Disable code which modifies the frame.
322
323 2003-07-28 Andrew Cagney <cagney@redhat.com>
324
325 * annotate.c (annotate_breakpoints_headers): Restrict annotation
326 to level 2.
327 (annotate_breakpoints_table, annotate_record): Ditto.
328 (annotate_breakpoints_table_end, annotate_field_begin): Ditto.
329 (annotate_field_name_end, annotate_field_value): Ditto.
330 (annotate_field_end, annotate_frame_source_begin): Ditto.
331 (annotate_frame_source_file, annotate_frame_source_file_end): Ditto.
332 (annotate_frame_source_line, annotate_frame_source_end): Ditto.
333 (annotate_frame_begin, annotate_frame_function_name): Ditto.
334 (annotate_frame_address_end, annotate_frame_address): Ditto.
335 (annotate_frame_args, annotate_frame_end): Ditto.
336 (annotate_frame_where, annotate_arg_begin): Ditto.
337 (annotate_arg_name_end, annotate_arg_value): Ditto.
338 (annotate_arg_end, annotate_signal_handler_caller): Ditto.
339 (annotate_function_call, annotate_signal_name): Ditto.
340 (annotate_signal_string, annotate_signal_name_end): Ditto.
341 (annotate_signal_string_end, annotate_value_history_begin): Ditto.
342 (annotate_value_begin, annotate_value_history_value): Ditto.
343 (annotate_value_history_end, annotate_value_end): Ditto.
344 (annotate_display_begin, annotate_display_number_end): Ditto.
345 (annotate_display_format, annotate_display_expression): Ditto.
346 (annotate_display_expression_end, annotate_display_value): Ditto.
347 (annotate_display_end, annotate_array_section_begin): Ditto.
348 (annotate_elt_rep, annotate_elt_rep_end): Ditto.
349 (annotate_elt, annotate_array_section_end): Ditto.
350
351 2003-07-28 Andrew Cagney <cagney@redhat.com>
352
353 * regcache.c (struct regcache_descr): Update comments on
354 nr_raw_registers.
355 (init_legacy_regcache_descr): Don't set nr_raw_registers or
356 sizeof_raw_register_valid_p.
357 (init_regcache_descr): Set nr_raw_registers and
358 sizeof_raw_register_valid_p before calling
359 init_legacy_regcache_descr.
360
361 2003-07-28 Andrew Cagney <cagney@redhat.com>
362
363 * mips-tdep.c (print_gp_register_row): Print the GPR's register
364 MOD NUM_REGS.
365
366 2003-07-28 Daniel Jacobowitz <drow@mvista.com>
367
368 * thread.c (info_threads_command): Use get_selected_frame ().
369 Check that there is at least one non-sentinel frame.
370
371 2003-07-27 Stephane Carrez <stcarrez@nerim.fr>
372
373 * m68hc11-tdep.c (struct frame_extra_info): Remove.
374 (m68hc11_pop_frame): Remove.
375 (m68hc11_frame_saved_pc): Remove.
376 (m68hc11_frame_chain): Remove.
377 (m68hc11_frame_init_saved_regs): Remove.
378 (m68hc11_init_extra_frame_info): Remove.
379 (m68hc11_store_struct_return): Remove.
380 (m68hc11_saved_pc_after_call): Remove.
381
382 2003-07-27 Stephane Carrez <stcarrez@nerim.fr>
383
384 * m68hc11-tdep.c (struct m68hc11_unwind_cache): New struct to hold
385 frame unwind information.
386 (m68hc11_scan_prologue): New function from m68hc11_guess_from_prologue
387 and adapted for frame unwinding.
388 (m68hc11_skip_prologue): Update to scan prologue in temporary object.
389 (m68hc11_unwind_pc): New function.
390 (m68hc11_frame_unwind_cache): New function to analyze frames.
391 (m68hc11_frame_this_id): New function to create new frame struct.
392 (m68hc11_frame_prev_register): New function to unwind a register from
393 the frame.
394 (m68hc11_frame_unwind): Default 68hc11/68hc12 unwinder.
395 (m68hc11_frame_p): New function for the above.
396 (m68hc11_frame_base_address): New function to return fp of frame.
397 (m68hc11_frame_args_address): Update for frame.
398 (m68hc11_frame_base): Default 68hc11/68hc12 frame.
399 (m68hc11_unwind_sp): New function.
400 (m68hc11_unwind_dummy_id): New function.
401 (m68hc11_gdbarch_init): Install the above frames; remove deprecated
402 calls.
403
404 2003-07-27 Stephane Carrez <stcarrez@nerim.fr>
405
406 * m68hc11-tdep.c (m68hc11_analyze_instruction): Don't advance the pc.
407 (m68hc11_guess_from_prologue): Advance the pc and frame size only
408 when we are beyond the current pc.
409
410 2003-07-27 Stephane Carrez <stcarrez@nerim.fr>
411
412 * m68hc11-tdep.c (m68hc11_push_dummy_call): New function adapted
413 from m68hc11_push_arguments.
414 (m68hc11_push_arguments): Remove.
415 (m68hc11_push_return_address): Remove.
416 (m68hc11_gdbarch_init): Install the above; remove above deprecated
417 handlers; remove deprecated_extra_stack_alignment_needed.
418
419 2003-07-27 Andrew Cagney <cagney@redhat.com>
420
421 * config/pa/tm-hppa.h (init_frame_pc_default): Declare.
422 * infcall.c (legacy_push_dummy_code) [GDB_TARGET_IS_HPPA]: Update
423 REAL_PC and not the pointer.
424 * hppa-hpux-tdep.c: Include frame.h
425
426 2003-07-27 Andrew Cagney <cagney@redhat.com>
427
428 * config/pa/tm-hppa64.h (GDB_MULTI_ARCH): Set to
429 GDB_MULTI_ACH_PARTIAL.
430
431 2003-07-27 Andrew Cagney <cagney@redhat.com>
432
433 Patch from 2003-07-22 Kei Sakamoto <sakamoto.kei@renesas.com>:
434 * m32r-tdep.c (m32r_memory_insert_breakpoint): Fix code style -
435 operator at start and not end of line.
436 (decode_prologue): Ditto.
437 (m32r_frame_unwind_cache, m32r_unwind_sp, m32r_unwind_pc): Use
438 frame_unwind_register_unsigned instead of
439 frame_unwind_unsigned_register.
440 (m32r_read_pc): Use regcache_cooked_read_unsigned instead of
441 read_register.
442 (m32r_push_dummy_call): Use register_size instead of
443 REGISTER_RAW_SIZE.
444 (m32r_frame_sniffer): Replace m32r_frame_p.
445 (m32r_gdbarch_init): Call frame_unwind_append_sniffer.
446 * m32r-rom.c (report_transfer_performance): Delete extern
447 declaration.
448 (m32r_load, m32r_upload_command): Use print_transfer_performance
449 instead of report_transfer_performance.
450 (_initialize_m32r_rom): Use add_setshow_cmd instead of add_set_cmd
451 / add_show_from_set.
452
453 2003-07-26 Andrew Cagney <cagney@redhat.com>
454
455 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set non-deprecated
456 store_return_value and extract_struct_value_address.
457
458 2003-07-26 Daniel Jacobowitz <drow@mvista.com>
459
460 PR c++/1267
461 * minsyms.c (lookup_minimal_symbol_by_pc_section): If SECTION is
462 NULL, default to the section containing PC.
463
464 2003-07-24 Stephane Carrez <stcarrez@nerim.fr>
465
466 * NEWS: Mention "regs" deprecated for m68hc11 too.
467
468 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Deprecate "regs" command.
469 (m68hc11_print_register): New function to print out one register.
470 (m68hc11_print_registers_info): New function to print registers.
471 (show_regs): Deprecate and use the above.
472 (m68hc11_gdbarch_init): Install the print_registers_info.
473
474 2003-07-24 Jeff Johnston <jjohnstn@redhat.com>
475
476 * ia64-linux-nat.c (ia64_linux_stopped_by_watchpoint): Verify
477 that we have a SIGTRAP before returning non-zero.
478
479 2003-07-23 Michal Ludvig <mludvig@suse.cz>
480 Elena Zannoni <ezannoni@redhat.com>
481
482 * linespec.c (decode_line_2): Avoid crash if
483 find_function_start_sal() returns empty record.
484
485 2003-07-23 Andreas Schwab <schwab@suse.de>
486
487 * ia64-tdep.c (ia64_print_insn): New function.
488 (ia64_gdbarch_init): Set print_insn to it.
489 (_initialize_ia64_tdep): Don't set deprecated_tm_print_insn and
490 deprecated_tm_print_insn_info.
491
492 2003-07-22 Michael Snyder <msnyder@redhat.com>
493
494 * h8300-tdep.c (h8300_extract_return_value): Teach it how to
495 handle 8-bit returns (long long).
496 (h8300h_extract_return_value): Ditto.
497 (h8300_gdbarch_init): Long long is 8 bytes, char is unsigned.
498
499 2003-07-22 Andrew Cagney <cagney@redhat.com>
500
501 * gdbarch.c Include "gdb_obstack.h".
502 (struct gdbarch): Add an "obstack".
503 (alloc_gdbarch_data): Allocate the gdbarch data using
504 GDBARCH_OBSTACK_CALLOC.
505 (free_gdbarch_data): Delete function.
506 (gdbarch_obstack_zalloc): New function.
507 (gdbarch_free): Free the obstack, do not call free_gdbarch_data.
508 Assert that the architecture is not initialized.
509 (gdbarch_alloc): Allocate an obstack, allocate the architecture
510 vector from the obstack.
511 (alloc_gdbarch_data, init_gdbarch_swap): Allocate memory using the
512 architecture obstack.
513 (GDBARCH_OBSTACK_CALLOC, GDBARCH_OBSTACK_ZALLOC): Define.
514 (set_gdbarch_data): Assert that the data is not initialized.
515 (struct gdbarch_data): Delete member "free".
516 (register_gdbarch_data): Do not initialize "free".
517 * gdbarch.h, gdbarch.c: Re-generate.
518
519 2003-07-22 Andrew Cagney <cagney@redhat.com>
520
521 * configure.in (build_warnings): Add -Wformat-nonliteral.
522 * configure: Re-generate.
523
524 2003-07-22 Elena Zannoni <ezannoni@redhat.com>
525
526 * dwarf2loc.c (locexpr_describe_location): Fix typos.
527
528 2003-07-22 Elena Zannoni <ezannoni@redhat.com>
529
530 * findvar.c (read_var_value): Remove case for thread local storage
531 variables. It is now entirely handled by the dwarf2 location
532 expression code.
533 * printcmd.c (address_info): Ditto.
534 * symtab.h (address_class): Remove LOC_THREAD_LOCAL_STATIC
535 enumeration value.
536 (struct symbol): Remove objfile field, which was used by
537 LOC_THREAD_LOCAL_STATIC only.
538 * dwarf2read.c (decode_locdesc): Remove is_thread_local variable.
539 * dwarf2loc.h (struct dwarf2_loclist_baton): Add comment about
540 usage of objfile pointer.
541 * dwarf2loc.c (locexpr_describe_location): Add case to handle
542 thread local variables.
543 Add include of objfiles.h.
544 * dwarf2expr.c (execute_stack_op): Add comments about thread local
545 storage variables.
546 * Makefile.in (dwarf2loc.o): Update dependencies.
547
548 2003-07-22 Andrew Cagney <cagney@redhat.com>
549
550 * config/pa/tm-hppa64.h (FRAME_SAVED_PC_IN_SIGTRAMP): Use
551 get_frame_base.
552 (FRAME_BASE_BEFORE_SIGTRAMP): Ditto.
553 (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP): Ditto.
554 (struct value): Add opaque declaration.
555 (DEPRECATED_FRAME_ARGS_ADDRESS): Delete.
556
557 2003-07-21 Andrew Cagney <cagney@redhat.com>
558
559 From 2003-07-04 Kei Sakamoto <sakamoto.kei@renesas.com>:
560 * m32r-tdep.c, m32r-stub.c, m32r-tdep.c: Rewrite.
561
562 2003-07-20 Stephane Carrez <stcarrez@nerim.fr>
563
564 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Use
565 regcache_cooked_read_unsigned instead of read_register.
566 (m68hc11_saved_pc_after_call): Likewise.
567 (m68hc11_pseudo_register_write): Use regcache_cooked_write_unsigned
568 instead of write_register.
569 (m68hc11_register_type): New function.
570 (m68hc11_register_virtual_type): Remove.
571 (m68hc11_store_return_value): Convert to use the regcache.
572 (m68hc11_extract_struct_value_address): Likewise.
573 (m68hc11_gdbarch_init): Remove deprecated ops for register to use
574 m68hc11_register_type; undeprecate store_return_value and
575 extract_struct_value_address.
576
577 2003-07-20 Stephane Carrez <stcarrez@nerim.fr>
578
579 * m68hc11-tdep.c (m68hc11_extract_return_value): Use regcache_raw_read
580 and translate to use regcache.
581 (m68hc11_gdbarch_init): Undeprecate extract_return_value.
582
583 2003-07-18 Andrew Cagney <cagney@redhat.com>
584
585 * gdbarch.sh (DWARF2_BUILD_FRAME_INFO): Delete method.
586 * gdbarch.h, gdbarch.c: Re-generate.
587 * i386-tdep.c (i386_gdbarch_init): Do not set
588 DWARF2_BUILD_FRAME_INFO.
589 * elfread.c (elf_symfile_read): Call dwarf2_build_frame_info
590 unconditionally.
591 * alpha-tdep.c (alpha_dwarf2_init_abi): Do not set
592 DWARF2_BUILD_FRAME_INFO.
593
594 2003-07-18 Andrew Cagney <cagney@redhat.com>
595
596 From 2003-07-04 Kei Sakamoto <sakamoto.kei@renesas.com>:
597 * disasm.c (gdb_disassemble_info): Initilize di.arch.
598
599 2003-07-18 Andrew Cagney <cagney@redhat.com>
600
601 * dwarf2-frame.c (dwarf2_frame_sniffer): Use
602 frame_unwind_address_in_block, instead of frame_pc_unwind.
603 (dwarf2_frame_cache): Ditto.
604
605 2003-07-18 Andrew Cagney <cagney@redhat.com>
606
607 * user-regs.h (struct gdbarch): Declare opaque.
608 * ui-out.h (struct ui_file): Declare opaque.
609 * dwarf2-frame.h (struct frame_info): Declare opaque.
610
611 2003-07-18 Kris Warkentin <kewarken@qnx.com>
612
613 * nto-procfs.c: Clean ARI hits. Change #include <..> to
614 #include "...".
615 (procfs_meminfo): Change strerror to safe_strerror.
616 (procfs_can_run): Remove K&R badness.
617
618 2003-07-17 Michael Snyder <msnyder@redhat.com>
619
620 * remote-sim.c: Comment typo fix.
621
622 2003-07-17 Andrew Cagney <cagney@redhat.com>
623
624 * defs.h (GDB_MULTI_ARCH): Delete conditional define. Handled by
625 configure.
626 * sparc-tdep.c (sparc_intreg_size): Make non-static.
627 * config/sparc/tm-sparc.h (GDB_MULTI_ARCH): Define to
628 GDB_MULTI_ARCH_PARTIAL.
629
630 2003-07-17 Elena Zannoni <ezannoni@redhat.com>
631
632 * Makefile.in (x86-64-linux-nat.o): Update dependencies.
633 * x86-64-linux-nat.c (ps_get_thread_area): New function. Add
634 include of asm/prctl.h, asm/ptrace.h, and gdb_proc_service.h.
635
636 2003-07-16 Theodore A. Roth <troth@openavr.org>
637
638 * avr-tdep.c (avr_skip_prologue): Return PC unchanged if no prologue
639 found.
640 (avr_frame_unwind_cache): Don't unwind FP for main.
641 Update a comment.
642 Save the computed prev_sp.
643 (avr_saved_regs_unwinder): Remove function.
644 (avr_frame_prev_register): Use PC unwind logic from
645 avr_saved_regs_unwinder(), otherwise use trad_frame_prev_register().
646
647 2003-07-16 Andrew Cagney <cagney@redhat.com>
648
649 * frame-base.h (frame_base_p_ftype): Delete definition.
650 (frame_base_append_predicate): Delete declaration.
651 * frame-unwind.h (frame_unwind_p_ftype): Delete definition.
652 (frame_unwind_append_predicate): Delete declaration.
653 * frame-unwind.c (struct frame_unwind_table): Delete field "p".
654 (append_predicate): Delete parameter "p".
655 (frame_unwind_append_predicate): Delete function.
656 (frame_unwind_append_sniffer): Update call to append_predicate.
657 (frame_unwind_free): Delete function.
658 (_initialize_frame_unwind): Pass NULL as "free" to
659 register_gdbarch_data.
660 (frame_unwind_init): Append the dummy_frame_sniffer.
661 (frame_unwind_find_by_frame): Simplify.
662 * frame-base.c (struct frame_base_table): Delete field "p".
663 (append_predicate): Delete parameter "p".
664 (frame_base_append_predicate): Delete function.
665 (frame_base_append_sniffer): Update call to append_predicate.
666 (frame_base_free): Delete function.
667 (frame_base_find_by_frame): Simplify.
668 (_initialize_frame_base): Pass NULL as "free" to
669 register_gdbarch_data.
670 * x86-64-tdep.c (x86_64_frame_sniffer): Replace "x86_64_frame_p".
671 (x86_64_sigtramp_frame_sniffer): Replace
672 "x86_64_sigtramp_frame_p".
673 (x86_64_init_abi): Set the frame unwind sniffers.
674 * m68k-tdep.c (m68k_frame_sniffer): Replace "m68k_frame_p".
675 (m68k_sigtramp_frame_sniffer): Replace "m68k_sigtramp_frame_p"
676 (m68k_gdbarch_init): Set the frame unwind sniffers.
677 * i386-tdep.c (i386_sigtramp_frame_sniffer): Replace
678 "i386_sigtramp_frame_p".
679 (i386_frame_sniffer): Replace "i386_frame_p".
680 (i386_gdbarch_init): Set the frame unwind sniffers.
681 * avr-tdep.c (avr_frame_sniffer): Replace "avr_frame_sniffer".
682 (avr_gdbarch_init): Set the frame unwind sniffers.
683 * alpha-tdep.c (alpha_sigtramp_frame_sniffer): Replace
684 "alpha_sigtramp_frame_p"
685 (alpha_heuristic_frame_sniffer): Replace
686 "alpha_heuristic_frame_p".
687 (alpha_gdbarch_init): Set the frame unwind sniffers.
688 (alpha_dwarf2_init_abi): Ditto.
689 * alpha-mdebug-tdep.c (alpha_mdebug_frame_sniffer): Replace
690 "alpha_debug_frame_p".
691 (alpha_mdebug_frame_base_sniffer): Replace
692 "alpha_mdebug_frame_base_p".
693 (alpha_mdebug_init_abi): Set the frame unwind sniffers.
694 * d10v-tdep.c (d10v_frame_sniffer): Replace "d10v_frame_p".
695 (d10v_gdbarch_init): Set the frame unwind sniffer.
696 * dwarf2-frame.c (dwarf2_frame_sniffer): Replace "dwarf2_frame_p".
697 (dwarf2_frame_base_sniffer): Replace "dwarf2_frame_base_p".
698 * dwarf2-frame.h (dwarf2_frame_sniffer): Replace "dwarf2_frame_p".
699 (dwarf2_frame_base_sniffer): Replace "dwarf2_frame_base_p".
700 * dummy-frame.c (dummy_frame_sniffer): Replace "dummy_frame_p".
701 * dummy-frame.h (dummy_frame_sniffer): Replace "dummy_frame_p".
702
703 2003-07-16 Michael Snyder <msnyder@redhat.com>
704
705 * sh-tdep.c (sh_gdbarch_init): Fetch_registers for the sh3-dsp
706 should go thru sh_dsp_register_sim_regno, else the dsp regs
707 will not get the right values.
708
709 2003-07-16 Corinna Vinschen <vinschen@redhat.com>
710
711 * sh-tdep.c (sh_sh4_register_convert_to_virtual): Substitute call to
712 deprecated_store_floating by call to store_typed_floating.
713 (sh_sh4_register_convert_to_raw): Substitute call to
714 deprecated_extract_floating by call to extract_typed_floating.
715
716 2003-07-16 Corinna Vinschen <vinschen@redhat.com>
717
718 * sh-tdep.c (sh_gdbarch_init): Set double to 4 byte on sh2e and sh3e.
719
720 2003-07-16 Corinna Vinschen <vinschen@redhat.com>
721
722 * sh-tdep.c: Substitute calls to REGISTER_RAW_SIZE by calls to
723 register_size and calls to REGISTER_VIRTUAL_TYPE by calls to
724 gdbarch_register_type in 32 bit code throughout. Avoid current_gdbarch
725 as possible.
726 (do_pseudo_register): Remove.
727 (sh_push_dummy_code): New function.
728 (sh64_store_struct_return): Rename from sh_store_struct_return.
729 Only called for sh64 now.
730 (sh_extract_struct_value_address): Regcache'ify.
731 (sh_push_dummy_call): Rename from sh_push_arguments. Regcache'ify
732 and accomodate new tasks.
733 (sh64_push_return_address): Rename from sh_push_return_address.
734 Only called for sh64 now.
735 (sh_default_extract_return_value): Rename from sh_extract_return_value.
736 Regcache'ify.
737 (sh3e_sh4_extract_return_value): Regcache'ify.
738 (sh_default_store_return_value): Ditto.
739 (sh3e_sh4_store_return_value): Ditto.
740 (sh_default_register_byte): Remove.
741 (sh_sh4_register_byte): Remove.
742 (sh_default_register_raw_size): Remove.
743 (sh_sh4_register_raw_size): Remove.
744 (sh_register_virtual_size): Remove.
745 (sh_sh3e_register_virtual_type): Remove.
746 (sh_sh3e_register_type): New function.
747 (sh_sh4_register_virtual_type): Remove.
748 (sh_sh4_register_type): New function.
749 (sh_default_register_virtual_type): Remove.
750 (sh_default_register_type): New function.
751 (do_fv_register_info): Add parameters to accomodate call from
752 sh_print_registers_info.
753 (do_dr_register_info): Ditto.
754 (sh_print_pseudo_register): Rename from sh_do_pseudo_register.
755 Add parameters to accomodate call from sh_print_registers_info.
756 (sh_do_fp_register): Ditto.
757 (sh64_do_pseudo_register): Call do_dr_register_info,
758 do_fv_register_info and sh_do_fp_register with default parameters.
759 (sh_do_register): Add parameters to accomodate call from
760 sh_print_registers_info.
761 (sh_print_register): Ditto.
762 (sh_print_registers_info): Rename from sh_do_registers_info.
763 Add parameters to be used as gdbarch_print_registers_info
764 implementation. Accomodate removed do_pseudo_register function
765 pointer.
766 (sh_compact_do_registers_info): Accomodate removed do_pseudo_register
767 function pointer. Call sh_print_register with default parameters.
768 (sh64_do_registers_info): Call sh_print_registers_info instead of
769 sh_do_registers_info.
770 (sh_gdbarch_init): Rearrange to cleanup and to allow easier
771 detection of deprecated vs. non-deprecated functionality.
772 Rename sh_call_dummy_words to sh64_call_dummy_words. Remove
773 function pointer assignments by direct function calls.
774
775 2003-07-15 Andrew Cagney <cagney@redhat.com>
776
777 * frame.c (get_frame_id): Use frame_unwind_find_by_frame.
778 (frame_register_unwind, create_new_frame): Ditto.
779 (legacy_get_prev_frame, get_frame_type): Ditto.
780 (get_frame_base_address): Use frame_base_find_by_frame.
781 (get_frame_locals_address): Use frame_base_find_by_frame.
782 (get_frame_args_address): Use frame_base_find_by_frame.
783 * frame-base.h (frame_base_sniffer_ftype): Declare.
784 (frame_base_append_sniffer): Declare.
785 (frame_base_find_by_frame): Replace frame_base_find_by_pc.
786 * frame-base.c (append_predicate): Add a "sniffer" parameter.
787 (frame_base_append_sniffer): New function.
788 (frame_base_append_predicate): Add a NULL sniffer.
789 (frame_base_find_by_frame): Replace "frame_base_find_by_pc".
790 (struct frame_base_table): Add "sniffer".
791 (frame_base_free): Free the "sniffer" table.
792 * frame-unwind.h (frame_unwind_sniffer_ftype): Define.
793 (frame_unwind_append_sniffer): Declare.
794 (frame_unwind_find_by_frame): Replace frame_unwind_find_by_pc.
795 * frame-unwind.c (frame_unwind_free): Free the "sniffer" table.
796 (struct frame_unwind_table): Add "sniffer", delete "middle".
797 (append_predicate): Add "sniffer" parameter, append the sniffer.
798 (frame_unwind_init): Update append_predicate call.
799 (frame_unwind_append_sniffer): New function.
800 (frame_unwind_append_predicate): Update append_predicate call.
801 (frame_unwind_find_by_frame): Replace frame_unwind_find_by_pc.
802
803 2003-07-15 Andrew Cagney <cagney@redhat.com>
804
805 * frame.c (get_prev_frame): Move disabled inside_entry_func to
806 before code inhibiting repeated unwind attempts. Add to
807 commentary on that test's problems.
808 * blockframe.c (inside_main_func): Look for "main" in the minimal
809 symbol table.
810 * d10v-tdep.c (d10v_frame_this_id): Delete check that frames are
811 identical.
812
813 2003-07-15 Andrew Cagney <cagney@redhat.com>
814
815 * complaints.c (struct explanation): Define.
816 (struct complaints): Change type of "explanation" to "struct
817 explanation".
818 (symfile_explanations): Convert to a "struct explanation" table.
819 (vcomplaint): Update.
820
821 2003-07-15 Michal Ludvig <mludvig@suse.cz>
822
823 * x86-64-linux-nat.c (regmap): Removed.
824 (supply_gregset, fill_gregset): Call
825 x86_64_linux_(fill,supply)_gregset functions.
826 * x86-64-linux-tdep.c (USER_*): New defines.
827 (user_to_gdb_regmap, x86_64_core_fns): New structure.
828 (x86_64_linux_supply_gregset, x86_64_linux_fill_gregset):
829 New functions.
830 (fetch_core_registers): Ditto.
831 (_initialize_x86_64_linux_tdep): Call add_core_fns().
832 * x86-64-linux-tdep.h: New file.
833 * config/i386/x86-64linux.mh (NATDEPFILES): Remove corelow.o
834 and core-regset.o.
835 * config/i386/x86-64linux.mt (TDEPFILES): Add corelow.o.
836
837 2003-07-13 Mark Kettenis <kettenis@gnu.org>
838
839 * x86-64-tdep.c (x86_64_store_return_value): Use
840 regcache_cooked_write_part instead of regcache_cooked_write.
841
842 * configure.host: Add x86_64-*-freebsd*.
843 * configure.tgt: Add x86_64-*-freebsd*.
844 * Makefile.in (amd64fbsd-nat.o, amd64fbsd-tdep.o): New targets.
845 * amd64fbsd-nat.c: New file.
846 * amd64fbsd-tdep.c: New file.
847 * config/i386/nm-fbsd64.h: New file.
848 * config/i386/fbsd64.mh: New file.
849 * config/i386/fbsd64.mt: New file.
850
851 2003-07-11 Mark Kettenis <kettenis@gnu.org>
852
853 * alpha-tdep.h (struct gdbarch_tdep): Add members `sc_pc_offset',
854 `sc_regs_offset' and `sc_fpregs_offset'.
855 * alpha-tdep.c (SIGFRAME_PC_OFF, SIGFRAME_REGSAVE_OFF,
856 SIGFRAME_FPREGSAVE_OFF): Remove defines.
857 (alpha_sigtramp_register_address): Rewrite to use new members of
858 `struct gdbarch_tdep'.
859 (alpha_gdbarch_init): Initialize new members of struct
860 gdbarch_tdep'.
861 * alphafbsd-tdep.c (alphafbsd_use_struct_convention): Use
862 ALPHA_REGISTER_SIZE instead of DEPRECATED_REGISTER_SIZE.
863 (alphafbsd_sigtramp_start, alphafbsd_sigtramp_end): Nre variables.
864 (alphafbsd_pc_in_sigtramp): Implement.
865 (alphafbsd_sigtramp_offset): New function.
866 (alphafbsd_sigcontext_addr): New function.
867 (alphafbsd_init_abi): Initialize signal trampoline related members
868 of `struct gdbarch_tdep'.
869 (_initialize_alphafbsd_tdep): Add prototype.
870
871 2003-07-11 Theodore A. Roth <troth@openavr.org>
872
873 * Makefile.in (install-only): Quote sed expression when generating
874 transformed_name.
875
876 2003-07-11 Richard Henderson <rth@redhat.com>
877
878 * Makefile.in (dwarf2-frame.o): Add complaints_h.
879 * dwarf2-frame.c: Include complaints.h.
880 (decode_frame_entry_1): Rename from decode_frame_entry; tidy
881 variable initialization; return NULL on error.
882 (decode_frame_entry): New.
883
884 2003-07-11 Andrew Cagney <cagney@redhat.com>
885
886 * frame.h (frame_address_in_block): Delete declaration.
887 * blockframe.c (frame_address_in_block): Delete function.
888 (get_frame_block): Use get_frame_address_in_block.
889 (block_innermost_frame): Ditto.
890 * stack.c (print_frame, backtrace_command_1): Ditto.
891
892 * frame.h (get_frame_address_in_block): Declare.
893 (frame_unwind_address_in_block): Declare.
894 * frame.c (frame_unwind_address_in_block): New function.
895 (get_frame_address_in_block): New function.
896
897 2003-07-10 Andrew Cagney <cagney@redhat.com>
898
899 * gdbarch.sh: Simplify predicate methods. Remove need to provide
900 pre-default. Note: re-generate has no effect.
901
902 2003-07-10 Andrew Cagney <cagney@redhat.com>
903
904 * gdbarch.sh: When a variable, but not a function, compare against
905 0. Fix problem in previous patch.
906 * gdbarch.c: Re-generate.
907
908 2003-07-10 Andrew Cagney <cagney@redhat.com>
909
910 * gdbarch.sh: Use gdb_assert instead of internal_error. Compare
911 functions against NULL, not 0.
912 * gdbarch.c: Re-generate.
913
914 2003-07-10 Fred Fish <fnf@ninemoons.com>
915
916 * coff-solib.h (SOLIB_LOADED_LIBRARY_PATHNAME): Default to a
917 null string instead of a null pointer.
918 * solib.h (SOLIB_LOADED_LIBRARY_PATHNAME): Ditto.
919
920 2003-07-09 Michael Snyder <msnyder@redhat.com>
921
922 * sh-tdep.c (sh_dsp_register_sim_regno): Off-by-one error.
923
924 2003-07-09 Mark Kettenis <kettenis@gnu.org>
925
926 * x86-64-tdep.h (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM,
927 X86_64_RDI_REGNUM, X86_64_RBP_REGNUM, X86_64_RSP_REGNUM,
928 X86_64_RIP_REGNUM, X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM,
929 X86_64_XMM0_REGNUM, X86_64_XMM1_REGNUM): Moved here ...
930 * x86-64-tdep.c: ... from here.
931
932 2003-07-09 Andreas Schwab <schwab@suse.de>
933
934 * m68k-tdep.h (enum struct_return): Define.
935 (struct gdbarch_tdep): Add struct_return.
936 * m68k-tdep.c (m68k_push_dummy_call): Non-scalars bigger than 4
937 bytes are padded to the right, not to the left. Pass struct value
938 address in register %a1, not on stack.
939 (m68k_use_struct_convention): New function.
940 (m68k_gdbarch_init): Set use_struct_convention. Initialize
941 struct_return in tdep to pcc_struct_return.
942 * m68klinux-tdep.c (m68k_linux_init_abi): Set struct_return to
943 reg_struct_return.
944
945 2003-07-09 Joel Brobecker <brobecker@gnat.com>
946
947 * somread.c (som_symfile_offsets): Fix compilation error.
948
949 2003-07-09 Andrew Cagney <cagney@redhat.com>
950
951 * regcache.c (register_size): Only check REGISTER_RAW_SIZE once.
952 Add comments about the checks.
953
954 2003-07-08 Andrew Cagney <cagney@redhat.com>
955
956 * Makefile.in: Make dependency section headers consistent.
957 (config_h): Move to $BUILD headers section.
958 (exc_request_U_h, exc_request_S_h, msg_reply_S_h): Ditto.
959 (msg_U_h, notify_S_h, process_reply_S_h): Ditto.
960 (ada-exp.tab.c): Move to YACC/LEX section.
961 (ada-lex.c, c-exp.tab.c, f-exp.tab.c): Ditto.
962 (jv-exp.tab.c, m2-exp.tab.c, objc-exp.tab.c, p-exp.tab.c): Ditto.
963
964 2003-07-08 Kris Warkentin <kewarken@qnx.com>
965
966 * nto-procfs.c: Cleaned up a bunch of ARI hits.
967 Include "gdb_dirent.h" instead of <dirent.h>, replace all instances
968 of strerror with safe_strerror, use ISO C function definitions,
969 and replace instances of sprintf with snprintf.
970
971 2003-07-07 Andrew Cagney <cagney@redhat.com>
972
973 * frame.c (get_prev_frame): Enable check for identical frames.
974 Update comments. Update error messages.
975
976 2003-07-07 Joel Brobecker <brobecker@gnat.com>
977
978 * hpread.c (hpread_psymtab_to_symtab_1): Fix compilation failure.
979
980 2003-07-07 Joel Brobecker <brobecker@gnat.com>
981
982 * xcoffread.c (xcoff_psymtab_to_symtab_1): Remove call to
983 sort_symtab_syms, no longer necessary.
984
985 2003-07-07 Joel Brobecker <brobecker@gnat.com>
986
987 * config/mips/tm-irix6.h (MIPS_REGISTER_TYPE): Add comment.
988
989 2003-07-07 Joel Brobecker <brobecker@gnat.com>
990
991 * mips-tdep.c (mips_register_raw_size): Fix compilation failure.
992 (mips_register_byte): Likewise.
993
994 2003-07-07 Daniel Jacobowitz <drow@mvista.com>
995
996 * Makefile.in (sparc_tdep_h): New.
997 (sparc-linux-nat.o, sparc-nat.o, sparc-tdep.o, sparc64nbsd-nat.o)
998 (sparcnbsd-nat.o, sparcnbsd-tdep.o): Depend on $(sparc_tdep_h).
999 * sparc-linux-nat.c: Include "sparc-tdep.h".
1000 * sparc-nat.c: Likewise.
1001 * sparc-tdep.c: Likewise.
1002 * sparc64nbsd-nat.c: Likewise.
1003 * sparcnbsd-nat.c: Likewise.
1004 * sparcnbsd-tdep.c: Likewise.
1005 * sparc-tdep.h: New file.
1006 * config/sparc/tm-sparc.h: Remove prototypes for sparc_y_regnum
1007 and sparc_npc_regnum.
1008
1009 2003-07-07 Daniel Jacobowitz <drow@mvista.com>
1010
1011 * mips-linux-nat.c (mips_linux_cannot_fetch_register)
1012 (mips_linux_cannot_store_register): List supported instead of
1013 unsupported registers.
1014
1015 2003-07-07 Daniel Jacobowitz <drow@mvista.com>
1016
1017 * disasm.c (dump_insns): Separate instructions from addresses.
1018
1019 2003-07-07 Andreas Schwab <schwab@suse.de>
1020
1021 * Makefile.in (m68k-tdep.o, m68klinux-tdep.o): Update
1022 dependencies.
1023 * m68k-tdep.c (NUM_FREGS): Delete.
1024 (SIG_PC_FP_OFFSET): Delete.
1025 (TARGET_M68K): Delete.
1026 (P_MOVEAL_SP_FP, P_ADDAW_SP, P_ADDAL_SP, P_SUBQW_SP,
1027 P_SUBQL_SP, P_LEA_SP_SP, P_LEA_PC_A5, P_FMOVEMX_SP,
1028 P_MOVEL_SP, P_MOVEML_SP): Define.
1029 (P_MOVL_SP_FP, P_MOVL, P_JSR, P_BSR, P_LEAL, P_MOVML, P_FMOVM,
1030 P_TRAP): Delete.
1031 (m68k_register_raw_size): Delete.
1032 (m68k_register_virtual_size): Delete.
1033 (m68k_register_type): Renamed from m68k_register_virtual_type and
1034 add gdbarch argument.
1035 (m68k_store_struct_return): Delete.
1036 (m68k_deprecated_extract_return_value): Delete.
1037 (m68k_deprecated_extract_struct_value_address): Delete.
1038 (m68k_frame_chain): Delete.
1039 (m68k_frame_saved_pc): Delete.
1040 (m68k_fix_call_dummy): Delete.
1041 (m68k_push_dummy_frame): Delete.
1042 (m68k_pop_frame): Delete.
1043 (m68k_extract_return_value): New function.
1044 (m68k_store_return_value): Rewrite using regcache.
1045 (m68k_extract_struct_value_address): Rewrite using regcache.
1046 (m68k_push_dummy_call): New function.
1047 (struct m68k_frame_cache): Define.
1048 (m68k_alloc_frame_cache): New function.
1049 (m68k_analyze_frame_setup): New function.
1050 (m68k_analyze_register_saves): New function.
1051 (m68k_analyze_prologue): New function.
1052 (m68k_skip_prologue): Rewrite using above functions.
1053 (m68k_unwind_pc): New function.
1054 (m68k_frame_cache): New function.
1055 (m68k_frame_this_id): New function.
1056 (m68k_frame_prev_register): New function.
1057 (m68k_frame_unwind): New variable.
1058 (m68k_frame_p): New function.
1059 (m68k_sigtramp_frame_cache): New function.
1060 (m68k_sigtramp_frame_this_id): New function.
1061 (m68k_sigtramp_frame_prev_register): New function.
1062 (m68k_sigtramp_frame_unwind): New variable.
1063 (m68k_sigtramp_frame_p): New function.
1064 (m68k_frame_base_address): New function.
1065 (m68k_frame_base): New function.
1066 (m68k_unwind_dummy_id): New function.
1067 (fill_gregset): Use regcache_collect.
1068 (fill_fpregset): Likewise.
1069 (m68k_saved_pc_after_call): Only define if SYSCALL_TRAP is
1070 defined.
1071 (m68k_gdbarch_init): Don't define call_dummy_words. Don't set
1072 deprecated_init_frame_pc, deprecated_store_struct_return,
1073 deprecated_extract_return_value, deprecated_store_return_value,
1074 deprecated_frame_chain, deprecated_frame_saved_pc,
1075 deprecated_frame_init_saved_regs, deprecated_register_raw_size,
1076 deprecated_register_virtual_size,
1077 deprecated_max_register_raw_size,
1078 deprecated_max_register_virtual_size,
1079 deprecated_register_virtual_type, deprecated_register_size,
1080 deprecated_register_byte, deprecated_register_bytes,
1081 deprecated_fp_regnum, deprecated_use_generic_dummy_frames,
1082 call_dummy_location, deprecated_call_dummy_breakpoint_offset,
1083 deprecated_pc_in_call_dummy, deprecated_call_dummy_length,
1084 deprecated_call_dummy_start_offset, deprecated_call_dummy_words,
1085 deprecated_sizeof_call_dummy_words, deprecated_fix_call_dummy,
1086 deprecated_push_dummy_frame, deprecated_pop_frame,
1087 deprecated_dummy_write_sp. Set deprecated_saved_pc_after_call
1088 only if SYSCALL_TRAP is defined. Set extract_return_value,
1089 store_return_value, extract_struct_value_address, register_type,
1090 push_dummy_call, unwind_dummy_id, unwind_pc. Add two frame unwind
1091 predicates.
1092 * m68k-tdep.h (M68K_D1_REGNUM, M68K_NUM_REGS,
1093 M68K_MAX_REGISTER_SIZE): Define.
1094 (struct m68k_sigtramp_info): Define.
1095 (struct gdbarch_tdep): Add get_sigtramp_info.
1096 * m68klinux-nat.c (fetch_register): Use register_size instead of
1097 REGISTER_RAW_SIZE. Don't put assignment in if.
1098 (store_register): Likewise.
1099 (fetch_inferior_registers): Likewise.
1100 (store_inferior_registers): Likewise.
1101 * m68klinux-tdep.c (m68k_linux_sigtramp_saved_pc): Delete.
1102 (m68k_linux_frame_saved_pc): Delete.
1103 (m68k_linux_sigcontext_reg_offset,
1104 m68k_linux_ucontext_reg_offset): Define.
1105 (m68k_linux_get_sigtramp_info): New function.
1106 (m68k_linux_extract_return_value): Rewrite using regcache.
1107 (m68k_linux_store_return_value): Likewise.
1108 (m68k_linux_extract_struct_value_address): Likewise.
1109 (m68k_linux_init_abi): Set get_sigtramp_info in tdep structure.
1110 Don't set deprecated_frame_saved_pc,
1111 deprecated_extract_return_value, deprecated_store_return_value,
1112 deprecated_extract_struct_value_address. Set
1113 extract_return_value, store_return_value,
1114 extract_struct_value_address.
1115
1116 2003-07-07 Andrew Cagney <cagney@redhat.com>
1117
1118 * expprint.c: Include "user-regs.h" instead of "frame.h".
1119 (print_subexp): Use user_reg_map_regnum_to_name, instead of
1120 frame_map_regnum_to_name.
1121 * frame.c: Include "user-regs.h" instead of "builtin-regs.h".
1122 (frame_map_name_to_regnum): Simplify, call
1123 user_reg_map_name_to_regnum.
1124 (frame_map_regnum_to_name): Simplify, call
1125 user_reg_map_regnum_to_name.
1126 (frame_register_unwind): Update.
1127 * std-regs.c: Include "user-regs.h" instead of "builtin-regs.h".
1128 (_initialize_frame_reg): Call user_reg_add_builtin.
1129 * findvar.c: Include "user-regs.h" instead of "builtin-regs.h".
1130 (value_of_register): Use value_of_user_reg.
1131 * eval.c (evaluate_subexp_standard): Update.
1132 * parse.c (write_dollar_variable): Update.
1133 * d10v-tdep.c (d10v_print_registers_info): Update.
1134 * infcmd.c (registers_info): Update.
1135 * Makefile.in (SFILES): Delete "builtin-regs.c", add "user-regs.c".
1136 (builtin_regs_h): Delete macro.
1137 (user_regs_h): Define.
1138 (COMMON_OBS): Delete "builtin-regs.o", add "user-regs.o".
1139 (builtin-regs.o): Delete target.
1140 (user-regs.o): Specify dependencies.
1141 (expprint.o): Update dependencies.
1142 (findvar.o): Update dependencies.
1143 (frame.o): Update dependencies.
1144 (std-regs.o): Update dependencies.
1145
1146 2003-07-06 Christopher Faylor <cgf@redhat.com>
1147
1148 * win32-nat.c (solib_symbols_add): Use one variable for all section
1149 address stuff. Pass variable rather than address of variable to
1150 safe_symbol_file_add.
1151
1152 2003-07-06 Andreas Schwab <schwab@suse.de>
1153
1154 * m68klinux-nat.c (fill_fpregset): Fix use of loop index.
1155
1156 2003-07-04 Joel Brobecker <brobecker@gnat.com>
1157
1158 * rs6000-nat.c (vmap_symtab): Fix compilation error.
1159
1160 2003-07-04 Kris Warkentin <kewarken@qnx.com>
1161
1162 * config/i386/nto.mh: Set XM_FILE to xm-i386.h
1163
1164 2003-07-04 Kris Warkentin <kewarken@qnx.com>
1165
1166 * nto-procfs.c: New file. Native procfs support for QNX Neutrino.
1167 * config/i386/nto.mh: New file.
1168 * config/i386/nm-nto.h: New file.
1169 * configure.host: Add i[3456]86-*-nto*.
1170
1171 2003-07-03 Joel Brobecker <brobecker@gnat.com>
1172
1173 * remote-vx.c (vx_add_symbols): Fix compilation error.
1174
1175 2003-07-03 Andrew Cagney <cagney@redhat.com>
1176
1177 * gdbarch.sh (REGISTER_NAME): Do not supply a default.
1178 * gdbarch.h, gdbarch.c: Re-generate.
1179 * config/sparc/tm-sparc.h (REGISTER_NAME): Define.
1180 (legacy_register_name): Declare.
1181 * config/sparc/tm-sp64.h (legacy_register_name): Declare.
1182 (REGISTER_NAME): Define.
1183 * sparc-tdep.c (legacy_register_name): New function.
1184 * config/pa/tm-hppa64.h (REGISTER_NAMES): Delete macro.
1185 (REGISTER_NAME): Define.
1186 (hppa64_register_name): Declare.
1187 * config/pa/tm-hppa.h (REGISTER_NAMES): Delete macro.
1188 * hppa-tdep.c (hppa_gdbarch_init): Set hppa_register_name.
1189 (hppa64_register_name): New function.
1190 (hppa_register_name): New function.
1191 * arch-utils.c (legacy_register_name): Delete.
1192 * arch-utils.h (legacy_register_name): Delete.
1193
1194 2003-07-03 Daniel Jacobowitz <drow@mvista.com>
1195
1196 * cli/cli-interp.c (cli_interpreter_resume): Update the
1197 cli_uiout's stream to gdb_stdout.
1198
1199 2003-07-03 Andrew Cagney <cagney@redhat.com>
1200
1201 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Add
1202 predicate.
1203 * gdbarch.h, gdbarch.c: Re-generate.
1204 * regcache.c (init_regcache_descr): Use legacy code when either
1205 REGISTER_BYTE or REGISTER_RAW_SIZE is set.
1206
1207 2003-07-02 Daniel Jacobowitz <drow@mvista.com>
1208
1209 * NEWS: Move "set logging" entry into GDB 6.0 section.
1210
1211 2003-07-02 Jim Blandy <jimb@redhat.com>
1212
1213 * s390-tdep.c (struct frame_extra_info): new member:
1214 'stack_bought_valid'.
1215 (s390_get_frame_info): Set fextra_info->stack_bought_valid if we
1216 initialize fextra_info->stack_bought.
1217 (s390_frameless_function_invocation): Don't trust the value of
1218 fextra_info_ptr->stack_bought unless
1219 fextra_info->stack_bought_valid is set.
1220
1221 New S390 prologue analyzer.
1222 * s390-tdep.c (struct prologue_value, enum pv_boolean): New types.
1223 (pv_set_to_unknown, pv_set_to_constant, pv_set_to_register,
1224 pv_constant_last, pv_add, pv_add_constant, pv_subtract,
1225 pv_logical_and, pv_is_identical, pv_is_register, pv_is_array_ref,
1226 compute_x_addr, s390_on_stack, s390_store,
1227 s390_get_signal_frame_info): New functions.
1228 (S390_NUM_SPILL_SLOTS): New macro.
1229 (s390_get_frame_info): Rewritten.
1230 (is_arg_reg): Deleted.
1231
1232 Break out the decoding of S/390 instructions into separate
1233 functions, to make it more legible, and easier to check
1234 against the spec.
1235 * s390-tdep.c (is_ri, is_ril, is_rr, is_rre, is_rs, is_rse,
1236 is_rx, is_rxe): New functions.
1237 (op1_aghi, op2_aghi, op1_ahi, op2_ahi, op_ar, op_basr, op1_bras,
1238 op2_bras, op_l, op_la, op1_larl, op2_larl, op_lgr, op1_lghi,
1239 op2_lghi, op1_lhi, op2_lhi, op_lr, op_nr, op_ngr, op_s, op_st,
1240 op_std, op1_stg, op2_stg, op_stm, op1_stmg, op2_stmg, op_svc): New
1241 enums for opcode values. (Is this an improvement?)
1242
1243 2003-07-02 Andrew Cagney <cagney@redhat.com>
1244
1245 * i386-tdep.c: Revert change committed as part of trad-frame code
1246 below.
1247
1248 2003-07-02 Daniel Jacobowitz <drow@mvista.com>
1249
1250 * breakpoint.c (insert_catchpoint): Make static.
1251
1252 2003-07-02 Andreas Schwab <schwab@suse.de>
1253
1254 * ia64-tdep.c (ia64_push_dummy_call): Define as combination of
1255 former ia64_push_arguments and ia64_push_return_address, and use
1256 regcache functions instead of read/write_register.
1257 (ia64_gdbarch_init): Set push_dummy_call instead of
1258 deprecated_push_arguments and deprecated_push_return_address.
1259
1260 2003-07-01 Andreas Jaeger <aj@suse.de>
1261
1262 * x86-64-tdep.c (x86_64_push_arguments): Align stack to 16-byte
1263 before the call.
1264 Set %rax only to number of SSE registers used.
1265
1266 2003-07-01 Andrew Cagney <cagney@redhat.com>
1267
1268 * trad-frame.h: Update comments, a -1 .addr is reserved.
1269 (trad_frame_value_p, trad_frame_addr_p): Declare.
1270 (trad_frame_reg_p): Declare.
1271 (trad_frame_set_value): Rename trad_frame_register_value.
1272 (trad_frame_set_unknown): Declare.
1273 * trad-frame.c (trad_frame_realreg_p): New function.
1274 (trad_frame_addr_p, trad_frame_value_p): New function.
1275 (trad_frame_set_unknown): New function.
1276 (trad_frame_alloc_saved_regs): Initialize .addr to -1, not zero.
1277 (trad_frame_prev_register): Use trad_frame_realreg_p,
1278 trad_frame_addr_p and trad_frame_value_p.
1279 (trad_frame_set_value): Rename trad_frame_register_value.
1280 * d10v-tdep.c (d10v_frame_unwind_cache): Use trad_frame_addr_p
1281 and trad_frame_set_value.
1282
1283 2003-06-30 Jim Blandy <jimb@redhat.com>
1284
1285 Patch from IBM (authors unspecified, probably Ulrich Weigand and
1286 Gerhard Tonn) for argument passing on the S/390 and S/390x:
1287 * s390-tdep.c (S390_STACK_FRAME_OVERHEAD): This is always space
1288 for 16 registers, and then 32 more bytes.
1289 (S390_STACK_PARAMETER_ALIGNMENT, S390_NUM_FP_PARAMETER_REGISTERS):
1290 New macros.
1291 (is_double_arg): The s390x doesn't handle DOUBLE_ARGS specially.
1292 Move up in the file, since it's now used by is_simple_arg.
1293 (is_simple_arg): Don't assume registers are four bytes long.
1294 Exclude all double arguments. Extended floats are not simple
1295 args.
1296 (is_power_of_two): New function.
1297 (pass_by_copy_ref): Call is_power_of_two, and check that the
1298 length fits in a register, rather than listing all the acceptable
1299 sizes. Extended floats are not passed by reference.
1300 (s390_push_arguments): Don't assume registers are four bytes long.
1301 Reserve an argument register to point to the buffer for structures
1302 returned by value. Use S390_NUM_FP_PARAMETER_REGISTERS and
1303 S390_STACK_FRAME_OVERHEAD.
1304
1305 2003-06-30 Andreas Schwab <schwab@suse.de>
1306
1307 * utils.c (internal_vproblem): Use xvasprintf, not xasprintf, to
1308 format error message.
1309
1310 2003-06-30 Joel Brobecker <brobecker@gnat.com>
1311
1312 * sparc-tdep.c (stop_after_trap): Remove declaration, not used.
1313
1314 2003-06-30 David Carlton <carlton@kealia.com>
1315
1316 Band-aid for PR c++/1245.
1317 * Makefile.in (cp-support.o): Depend on complaints_h.
1318 * cp-support.c: Include complaints.h. Add declaration for
1319 find_last_component.
1320 (cp_find_first_component): Separate code into
1321 cp_find_first_component_aux.
1322 (cp_find_first_component_aux): Call demangled_name_complaint.
1323 (demangled_name_complaint): New.
1324
1325 2003-06-30 Andrew Cagney <cagney@redhat.com>
1326
1327 * remote.c (remote_write_bytes): Explicitly compute and then use
1328 the payload size. Update comments to reflect. Fixes problem of
1329 GDB not sending small packets as found by Fred Fish.
1330
1331 2003-06-30 Andrew Cagney <cagney@redhat.com>
1332
1333 * remote.c (remote_async_wait): Fix -Wformat problem.
1334
1335 2003-06-29 Andrew Cagney <cagney@redhat.com>
1336
1337 * remote.c (remote_wait): Call error, and not warning, when the
1338 packet is corrupt.
1339 (remote_async_wait): Ditto.
1340
1341 2003-06-29 Daniel Jacobowitz <drow@mvista.com>
1342
1343 * sparc-tdep.c (sparc_y_regnum): Make external again.
1344
1345 2003-06-29 Daniel Jacobowitz <drow@mvista.com>
1346
1347 * cli/cli-logging.c (pop_output_files): Add void to function
1348 definition.
1349
1350 2003-06-29 Andrew Cagney <cagney@redhat.com>
1351
1352 * frame.c (frame_register_unwind): Use unsigned char when dumping
1353 the buffer contents.
1354
1355 2003-06-28 Daniel Jacobowitz <drow@mvista.com>
1356
1357 * cli/cli-logging.c: New file.
1358 * cli-out.c (struct ui_out_data): Add original_stream.
1359 (cli_redirect): New function.
1360 (cli_ui_out_impl): Add cli_redirect.
1361 (cli_out_new): Initialize original_stream.
1362 * ui-out.c (default_ui_out_impl): Add NULL for redirect member.
1363 (uo_redirect, ui_out_redirect): New.
1364 * ui-out.h (struct ui_out_impl): Add redirect member.
1365 (redirect_ftype): New.
1366 (ui_out_redirect): Add prototype.
1367 * Makefile.in: Add rules for cli-logging.c.
1368 * NEWS: Mention "set logging".
1369
1370 2003-06-27 Elena Zannoni <ezannoni@redhat.com>
1371
1372 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add linux-nat.o.
1373
1374 2003-06-27 Andrew Cagney <cagney@redhat.com>
1375
1376 * m68hc11-tdep.c (m68hc11_call_dummy_address): Delete function.
1377 (m68hc11_gdbarch_init): Do not set call_dummy_address.
1378 * avr-tdep.c (avr_call_dummy_address): Delete function.
1379 (avr_gdbarch_init): Do not set call_dummy_address.
1380
1381 2003-06-27 Elena Zannoni <ezannoni@redhat.com>
1382
1383 * symfile.c (syms_from_objfile): Move variables to inner block.
1384 Move the checks for the non-mainline case a bit earlier to avoid
1385 doing some useless computations.
1386
1387 2003-06-27 Elena Zannoni <ezannoni@redhat.com>
1388
1389 * dwarfread.c (decode_modified_type): Gag new compiler warning.
1390
1391 2003-06-26 Elena Zannoni <ezannoni@redhat.com>
1392
1393 * dwarf2read.c (dwarf2_locate_sections): Ignore empty .eh_frame
1394 sections.
1395
1396 2003-06-26 Michael Chastain <mec@shout.net>
1397
1398 * config/djgpp/fnchange.lst: Add gdb/testsuite/gdb.c++/pr-1210.cc,
1399 gdb/testsuite/gdb.c++/pr-1210.exp.
1400
1401 2003-06-26 Andrew Cagney <cagney@redhat.com>
1402
1403 * config/djgpp/fnchange.lst: Fix 8.3 problem with sim/ppc's
1404 altivec_expression.h and altivec_registers.h.
1405
1406 2003-06-26 Andrew Cagney <cagney@redhat.com>
1407
1408 * mips-tdep.c (gdb_print_insn_mips): Only explicitly set
1409 info->mach when MIPS16. Patch suggested by Fred Fish.
1410
1411 2003-06-26 Andrew Cagney <cagney@redhat.com>
1412
1413 * utils.c (internal_vproblem): Print the problem to a reason
1414 buffer and then pass to query. Make the msg variable more local.
1415
1416 2003-06-26 Andrew Cagney <cagney@redhat.com>
1417
1418 * gdbarch.sh (FRAME_ARGS_ADDRESS): Add predicate. Deprecate.
1419 (FRAME_LOCALS_ADDRESS): Add predicate. Deprecate.
1420 * gdbarch.h, gdbarch.c: Re-generate.
1421 * frame-base.c (default_frame_args_address): Update. Use
1422 default_frame_base_address when DEPRECATED_FRAME_ARGS_ADDRESS is
1423 not available.
1424 (default_frame_locals_address): Ditto for
1425 DEPRECATED_FRAME_LOCALS_ADDRESS.
1426 * vax-tdep.c (vax_sigtramp_saved_pc): Update.
1427 (vax_frame_num_args): Update.
1428 (vax_gdbarch_init): Update.
1429 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1430 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1431 * mcore-tdep.c (mcore_gdbarch_init): Update.
1432 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1433 * ia64-tdep.c (ia64_gdbarch_init): Update.
1434 * symtab.h (address_class): Update comments.
1435 * ns32k-tdep.c (ns32k_sigtramp_saved_pc): Update.
1436 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_ARGS_ADDRESS): Update.
1437 (DEPRECATED_FRAME_LOCALS_ADDRESS): Update.
1438 * config/pa/tm-hppa64.h (DEPRECATED_FRAME_ARGS_ADDRESS): Update.
1439 (DEPRECATED_FRAME_LOCALS_ADDRESS): Update.
1440 (DEPRECATED_FRAME_LOCALS_ADDRESS): Update.
1441 * config/m68k/tm-delta68.h (DEPRECATED_FRAME_ARGS_ADDRESS): Update.
1442 * alpha-mdebug-tdep.c: Update.
1443 * ada-lang.c (add_symbols_from_enclosing_procs): Update.
1444
1445 2003-06-26 Andreas Jaeger <aj@suse.de>
1446
1447 * x86-64-tdep.c (x86_64_push_arguments): Always set %rax to number
1448 of SSE registers so that varargs functions work. Rework handling
1449 of passing arguments on the stack.
1450 (x86_64_store_return_value): Return double and float values in SSE
1451 register.
1452
1453 2003-06-24 Michael Chastain <mec@shout.net>
1454
1455 * PROBLEMS: Document pr gdb/1091 and pr gdb/1193,
1456 the "constructor breakpoints ignored" bug.
1457
1458 2003-06-25 David Carlton <carlton@kealia.com>
1459
1460 * MAINTAINERS: Update e-mail address.
1461
1462 2003-06-24 Jim Blandy <jimb@redhat.com>
1463
1464 * ppc-linux-tdep.c: More "Linux" -> "GNU/Linux".
1465
1466 * ppc-linux-tdep.c (ppc64_linux_convert_from_func_ptr_addr): New
1467 function.
1468 (ppc_linux_init_abi): Register it as the
1469 CONVERT_FROM_FUNC_PTR_ADDR method under the PPC64 Linux ABI.
1470
1471 * ppc-linux-tdep.c (ppc64_call_dummy_address): New function.
1472 (ppc_linux_init_abi): Set it as the gdbarch's call_dummy_address
1473 method.
1474
1475 * ppc-linux-tdep.c (ppc64_desc_entry_point): New function.
1476 (ppc64_standard_linkage_target): Use it.
1477
1478 2003-06-23 Andrew Cagney <cagney@redhat.com>
1479
1480 * rs6000-tdep.c (rs6000_register_virtual_type): Add explict cases
1481 for 0 "int0" and 4 "int32" sized registers.
1482 * gdbtypes.c (builtin_type_int0): Define.
1483 (build_gdbtypes): Initialize builtin_type_int0.
1484 * gdbtypes.h (builtin_type_int0): Declare.
1485
1486 2003-06-23 Stephane Carrez <stcarrez@nerim.fr>
1487
1488 * m68hc11-tdep.c (m68hc11_gdbarch_init): Clear gdb_arch_char_signed
1489 as characters are unsigned.
1490
1491 2003-06-22 Daniel Jacobowitz <drow@mvista.com>
1492
1493 PR gdb/1179
1494 * dwarfread.c (struct_type): Skip static fields without crashing.
1495
1496 2003-06-22 Andrew Cagney <cagney@redhat.com>
1497
1498 GDB 6.0 branch created.
1499 * README: Update.
1500 * PROBLEMS: Update. Empty.
1501 * NEWS: Update.
1502
1503 2003-06-22 Daniel Jacobowitz <drow@mvista.com>
1504
1505 * symfile.c (add_symbol_file_command): Use parse_and_eval_address.
1506 Suggested by Nick Hibma <n_hibma@webweaving.org>.
1507
1508 2003-06-22 Andrew Cagney <cagney@redhat.com>
1509
1510 * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Handle
1511 GNU_ABI_TAG_FREEBSD and GNU_ABI_TAG_NETBSD. Suggested by Momchil
1512 Velikov.
1513
1514 2003-06-22 Daniel Jacobowitz <drow@mvista.com>
1515
1516 * cli/cli-cmds.c (shell_escape): Silence warnings from old
1517 compilers.
1518
1519 2003-06-21 Daniel Jacobowitz <drow@mvista.com>
1520
1521 * c-valprint.c (c_value_print): Add VALUE_OFFSET to the address
1522 argument of val_print.
1523 * cp-valprint.c (cp_print_value): Don't add the offset parameter
1524 to the address argument of baseclass_offset or target_read_memory.
1525 Do add it to the argument of cp_print_value_fields.
1526
1527 2003-06-21 Andrew Cagney <cagney@redhat.com>
1528
1529 * mips-tdep.c: Include "reggroups.h" and "sim-regno.h".
1530 (mips_register_name): Return names for NUM_REGS..2*NUM_REGS
1531 instead of 0..NUM_REGS.
1532 (mips_register_reggroup_p): New function.
1533 (mips_pseudo_register_write): New function.
1534 (mips_pseudo_register_read): New function.
1535 (mips_register_raw_size): For NUM_REGS..2*NUM_REGS return the size
1536 based on the register's type.
1537 (read_next_frame_reg): Simplify. Assert that REGNO is a pseudo /
1538 cooked.
1539 (mips_get_saved_register): Simplify. Assert that REGNO is a
1540 pseudo / cooked.
1541 (mips_register_byte): New function. Use MIPS_REGISTER_BYTE.
1542 (mips_register_type): Replace mips_register_virtual_type. Map
1543 NUM_REGS..2*NUM_REGS onto 0..NUM_REGS. Use MIPS_REGISTER_TYPE
1544 when available.
1545 (read_next_frame_reg): Simplify, but handle SP_REGNUM. Assert
1546 that the register is cooked / virtual.
1547 (mips_frame_saved_pc): Fetch the cooked PC, and not the raw PC.
1548 Only get the extra info when needed.
1549 (set_reg_offset): Save the offset in NUM_REGS..2*NUM_REGS as well.
1550 (mips32_heuristic_proc_desc): Fetch the cooked register.
1551 (heuristic_proc_desc, mips_pop_frame, get_frame_pointer): Ditto.
1552 (mips_init_extra_frame_info, get_frame_pointer): Ditto.
1553 (mips_print_register): Use gdbarch_register_type, instead of
1554 REGISTER_VIRTUAL_TYPE.
1555 (print_gp_register_row): Use gdbarch_register_type, instead of
1556 REGISTER_VIRTUAL_TYPE. Allow for a pseudo / cooked REGNUM.
1557 (mips_print_registers_info): Assert REGNO is pseodo / cooked.
1558 Print the pseudo / cooked registers.
1559 (mips_print_registers_info): Assert REGNO is pseodo / cooked.
1560 Print the pseudo / cooked registers.
1561 (mips_xfer_register): Use regcache_cooked_read_part. Assert that
1562 REG_NUM is pseudo / cooked.
1563 (mips_o32_xfer_return_value): Xfer the pseudo / cooked register.
1564 (mips_n32n64_xfer_return_value): Ditto.
1565 (mips_stab_reg_to_regnum): Map onto NUM_REGS..2*NUM_REGS.
1566 (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Ditto.
1567 (mips_register_sim_regno): New function.
1568 (mips_gdbarch_init): Set deprecated_register_byte,
1569 register_group_p, pseudo_register_write, pseudo_register_read,
1570 register_sim_regno, and num_pseudo_regs. Set register_type,
1571 instead of register_virtual_type.
1572 * Makefile.in (mips-tdep.o): Update dependencies.
1573 * config/mips/tm-mips64.h (MIPS_REGISTER_TYPE): Rename
1574 REGISTER_VIRTUAL_TYPE.
1575 * config/mips/tm-mips.h (MIPS_REGISTER_TYPE): Ditto.
1576 * config/mips/tm-irix5.h (MIPS_REGISTER_TYPE): Ditto.
1577 * config/mips/tm-mips.h (MIPS_REGISTER_BYTE): Rename REGISTER_BYTE.
1578 * config/mips/tm-irix6.h (MIPS_REGISTER_BYTE): Ditto.
1579 * config/mips/tm-irix5.h (MIPS_REGISTER_BYTE): Ditto.
1580
1581 2003-06-21 Daniel Jacobowitz <drow@mvista.com>
1582
1583 * Makefile.in (cli-cmds.o): Depend on $(gdb_vfork_h)
1584 * cli/cli-cmds.c: Include "gdb_vfork.h".
1585 (shell_escape): Use vfork.
1586
1587 2003-06-21 Andrew Cagney <cagney@redhat.com>
1588
1589 * mips-tdep.c (mips_find_saved_regs): Rewrite mdebug code handling
1590 32 bit floating-point register saves.
1591
1592 * frame.h (deprecated_unwind_get_saved_register): Delete.
1593 * frame.c (deprecated_unwind_get_saved_register): Delete function.
1594 * mips-tdep.c (mips_get_saved_register): Use frame_register_unwind
1595 and deprecated_get_next_frame_hack instead of
1596 deprecated_unwind_get_saved_register.
1597
1598 * mips-tdep.c (mips_dump_tdep): Do not print
1599 REGISTER_CONVERT_FROM_TYPE or REGISTER_CONVERT_TO_TYPE.
1600
1601 * frame.c (get_frame_register): New function.
1602 (frame_unwind_register_signed): New function.
1603 (get_frame_register_signed): New function.
1604 (frame_unwind_register_unsigned): New function.
1605 (get_frame_register_unsigned): New function.
1606 * frame.h: Add comments on naming schema.
1607 (get_frame_register, frame_unwind_register_signed): Declare.
1608 (get_frame_register_signed, get_frame_register_signed): Declare.
1609 (frame_unwind_register_unsigned): Declare.
1610 (get_frame_register_unsigned): Declare.
1611
1612 2003-06-20 Theodore A. Roth <troth@openavr.org>
1613
1614 * avr-tdep.c (avr_gdbarch_init): Don't call set_gdbarch_bfd_vma_bit.
1615
1616 2003-06-20 Theodore A. Roth <troth@openavr.org>
1617
1618 * avr-tdep.c (avr_read_pc): Use regcache instead of read_register.
1619 (avr_read_sp): Ditto.
1620
1621 2003-06-20 Daniel Jacobowitz <drow@mvista.com>
1622
1623 * config/arm/linux.mt: Remove code protected by GDBSERVER define.
1624 * config/arm/nm-linux.h: Likewise.
1625 * config/arm/tm-linux.h: Likewise.
1626 * config/ia64/nm-linux.h: Likewise.
1627 * config/ia64/tm-ia64.h: Likewise.
1628 * config/s390/tm-linux.h: Likewise.
1629 * config/s390/tm-s390.h: Likewise.
1630 * s390-nat.c: Likewise.
1631 * s390-tdep.c: Likewise.
1632
1633 * config/i386/linux.mt: Don't set GDBSERVER_DEPFILES.
1634 * config/ia64/linux.mt: Likewise.
1635 * config/m68k/linux.mh: Likewise.
1636 * config/mips/linux.mt: Likewise.
1637 * config/powerpc/linux.mh: Likewise.
1638 * config/sh/linux.mt: Likewise.
1639
1640 2003-06-19 Kris Warkentin <kewarken@qnx.com>
1641
1642 * solib.c (solib_open): Change tests for whether to search
1643 LD_LIBRARY_PATH and PATH to better deal with remotes. Update
1644 comments.
1645
1646 2003-06-19 Theodore A. Roth <troth@openavr.org>
1647
1648 * avr-tdep.c (avr_frame_address): Delete function.
1649 (avr_gdbarch_init): Don't call set_gdbarch_frame_args_address,
1650 set_gdbarch_frame_args_address.
1651
1652 2003-06-19 Andrew Cagney <cagney@redhat.com>
1653
1654 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_TYPE): Delete.
1655 (REGISTER_CONVERT_FROM_TYPE): Delete.
1656 (mips_register_convert_to_type): Delete declaration.
1657 (mips_register_convert_from_type): Delete declaration.
1658 * linux-nat.h (struct target_ops): Declare opaque. s/Linux/Linux
1659 kernel/.
1660
1661 2003-06-19 Michael Snyder <msnyder@redhat.com>
1662
1663 * linux-nat.h: New file.
1664 * linux-nat.c: Include linux-nat.h.
1665 * lin-lwp.c: Include linux-nat.h.
1666 Move struct lwp_info def to linux-nat.h.
1667 * linux-proc.c: Include linux-nat.h.
1668 (linux_make_note_section): Iterate over lwps instead of threads.
1669 (linux_do_thread_registers): Use lwp instead of merged pid.
1670 * config/nm-linux.h: Move miscelaneous def'ns to linux-nat.h.
1671 * Makefile.in (lin-lwp.o, linux-proc.o, linux-nat.o):
1672 Add dependency on linux_nat_h.
1673
1674 2003-06-19 Theodore A. Roth <troth@openavr.org>
1675
1676 * avr-tdep.c (avr_extract_return_value): Delete debugging fprintf.
1677
1678 2003-06-19 Daniel Jacobowitz <drow@mvista.com>
1679
1680 * varobj.c (get_type, get_target_type): Use check_typedef.
1681
1682 2003-06-19 Daniel Jacobowitz <drow@mvista.com>
1683
1684 * breakpoint.c (insert_catchpoint): Call internal_error.
1685
1686 2003-06-19 Theodore A. Roth <troth@openavr.org>
1687
1688 * avr-tdep.c (avr_push_dummy_code): Delete function.
1689 (avr_gdbarch_init): Don't call set_gdbarch_push_dummy_code.
1690
1691 2003-06-19 Daniel Jacobowitz <drow@mvista.com>
1692
1693 * arch-utils.c (default_prepare_to_proceed): Remove.
1694 (generic_prepare_to_proceed): Remove.
1695 * arch-utils.h (default_prepare_to_proceed): Remove prototype.
1696 (generic_prepare_to_proceed): Remove prototype.
1697 * gdbarch.sh (PREPARE_TO_PROCEED): Remove.
1698 * gdbarch.c: Regenerate.
1699 * gdbarch.h: Regenerate.
1700 * hppa-tdep.c (hppa_prepare_to_proceed): Remove dangling prototype.
1701 * hppah-nat.c (hppa_switched_threads): Remove.
1702 * infrun.c (prepare_to_proceed): New static function, copied from
1703 generic_prepare_to_proceed. Remove select_it argument.
1704 (proceed): Call prepare_to_proceed.
1705 * infttrace.c (old_gdb_pid, reported_pid, reported_bpt): Remove
1706 variables.
1707 (ptrace_wait): Don't set the removed variables.
1708 (hppa_switched_threads): Remove.
1709 * lin-lwp.c (lin_lwp_prepare_to_proceed): Remove.
1710 * config/nm-linux.h (PREPARE_TO_PROCEED): Don't define.
1711 (lin_lwp_prepare_to_proceed): Remove prototype.
1712 * config/i386/nm-x86-64linux.h (PREPARE_TO_PROCEED): Don't undefine.
1713 * config/pa/nm-hppah.h (PREPARE_TO_PROCEED): Don't define.
1714
1715 2003-06-18 Theodore A. Roth <troth@openavr.org>
1716
1717 * avr-tdep.c: Include frame.h, frame-unwind.h, frame-base.h, and
1718 trad-frame.h.
1719 (AVR_MAX_PROLOGUE_SIZE): Increase from 56 to 64.
1720 (AVR_ARG1_REGNUM, AVR_ARGN_REGNUM): Define.
1721 (AVR_RET1_REGNUM, AVR_RETN_REGNUM): Define.
1722 (AVR_PROLOGUE_*): Enumerate prologue types.
1723 (struct frame_extra_info): Remove.
1724 (struct avr_unwind_cache): Define.
1725 (avr_write_sp): Delete function.
1726 (avr_read_fp): Ditto.
1727 (avr_init_extra_frame_info): Ditto.
1728 (avr_pop_frame): Ditto.
1729 (avr_frame_saved_pc): Ditto.
1730 (avr_saved_pc_after_call): Ditto.
1731 (avr_push_return_address): Ditto.
1732 (avr_frame_chain): Ditto.
1733 (avr_store_struct_return): Ditto.
1734 (avr_push_arguments): Ditto.
1735 (avr_scan_prologue): Update comments. Changed to set up the info for
1736 cache unwinding. Now returns end of prologue PC.
1737 (avr_skip_prologue): Better handling of functions lacking a prologue
1738 by using avr_scan_prologue.
1739 (avr_scan_arg_moves): New function.
1740 (avr_saved_regs_unwinder): Ditto.
1741 (avr_frame_unwind_cache): Ditto.
1742 (avr_unwind_pc): Ditto.
1743 (avr_frame_this_id): Ditto.
1744 (avr_frame_prev_register): Ditto.
1745 (avr_frame_p): Ditto.
1746 (avr_frame_base_address ): Ditto.
1747 (avr_unwind_dummy_id): Ditto.
1748 (avr_push_dummy_code): Ditto.
1749 (push_stack_item): Ditto.
1750 (pop_stack_item): Ditto.
1751 (avr_push_dummy_call): Ditto.
1752 (struct stack_item): Define.
1753 (avr_frame_unwind): Declare structure.
1754 (avr_frame_base): Ditto.
1755 (avr_gdbarch_init): Remove calls to
1756 set_gdbarch_deprecated_init_frame_pc,
1757 set_gdbarch_deprecated_target_read_fp,
1758 set_gdbarch_deprecated_dummy_write_sp,
1759 set_gdbarch_deprecated_fp_regnum,
1760 set_gdbarch_deprecated_push_arguments,
1761 set_gdbarch_deprecated_push_return_address,
1762 set_gdbarch_deprecated_pop_frame,
1763 set_gdbarch_deprecated_store_struct_return,
1764 set_gdbarch_deprecated_frame_init_saved_regs,
1765 set_gdbarch_deprecated_init_extra_frame_info,
1766 set_gdbarch_deprecated_frame_chain,
1767 set_gdbarch_deprecated_frame_saved_pc,
1768 set_gdbarch_deprecated_saved_pc_after_call.
1769 Add calls to set_gdbarch_push_dummy_call,
1770 set_gdbarch_push_dummy_code,
1771 frame_unwind_append_predicate,
1772 frame_base_set_default,
1773 set_gdbarch_unwind_dummy_id,
1774 set_gdbarch_unwind_pc.
1775 Wrap a long line.
1776
1777 2003-06-18 Corinna Vinschen <vinschen@redhat.com>
1778
1779 * h8300-tdep.c (h8300s_register_name): Enable MACH and MACL
1780 registers for H8/300S.
1781 (h8300_print_registers_info): Ditto.
1782 (h8300_gdbarch_init): Accommodate register count for H8/300S.
1783
1784 2003-06-18 Daniel Jacobowitz <drow@mvista.com>
1785
1786 * config/nm-linux.h (linux_record_stopped_pid): New prototype.
1787 * lin-lwp.c (child_wait): Call linux_record_stopped_pid.
1788 (lin_lwp_wait): Likewise. Update comments.
1789 * linux-nat.c (struct simple_pid_list, add_to_pid_list)
1790 (pull_pid_from_list, linux_record_stopped_pid): New.
1791
1792 2003-06-17 Stephane Carrez <stcarrez@nerim.fr>
1793
1794 * ada-lang.c (scan_discrim_bound): Name first argument.
1795 (ada_add_block_symbols): Remove BLOCK_SYM to use local variable
1796 declared by ALL_BLOCK_SYMBOLS.
1797
1798 2003-06-17 Stephane Carrez <stcarrez@nerim.fr>
1799
1800 * ada-tasks.c (find_function_in_inferior): Don't declare it.
1801 ("regcache.h"): Include it.
1802 * ada-lex.l (block_lookup): Replace VAR_NAMESPACE with VAR_DOMAIN.
1803
1804 2003-06-17 Daniel Jacobowitz <drow@mvista.com>
1805
1806 * NEWS: Mention gdbserver detach change and "disconnect" command.
1807 * infcmd.c (disconnect_command): New function.
1808 (_initialize_infcmd): Add ``disconnect'' command.
1809 * remote.c (remote_async_detach): Delete.
1810 (remote_detach): Merge remote_async_detach.
1811 (remote_disconnect): New.
1812 (init_remote_ops): Set to_disconnect.
1813 (init_remote_cisco_ops): Likewise.
1814 (init_remote_async_ops): Likewise. Use remote_detach.
1815 * target.c (cleanup_target): Default to_disconnect.
1816 (update_current_target): Inherit to_disconnect.
1817 (target_disconnect, debug_to_disconnect): New functions.
1818 (setup_target_debug): Set to_disconnect.
1819 * target.h (struct target_ops): Add to_disconnect.
1820 (target_disconnect): Add prototype.
1821
1822 2003-06-17 Daniel Jacobowitz <drow@mvista.com>
1823
1824 * breakpoint.c (insert_catchpoint): New function.
1825 (insert_breakpoints): Use catch_exceptions to call
1826 insert_catchpoint. Disable catchpoints if they fail to insert.
1827
1828 2003-06-17 Daniel Jacobowitz <drow@mvista.com>
1829
1830 * symfile.c (reread_symbols): Clear sym_private.
1831
1832 2003-06-17 Andrew Cagney <cagney@redhat.com>
1833
1834 * trad-frame.h (struct frame_info): Add opaque declaration.
1835 * remote-fileio.h (struct cmd_list_element): Add opaque
1836 declaration.
1837 * h8300-tdep.c (h8300s_register_name): Avoid C++ // style
1838 comments.
1839
1840 2003-06-17 Daniel Jacobowitz <drow@mvista.com>
1841
1842 * remote.c (remote_prepare_to_store): Replace call to
1843 deprecated_read_register_bytes with multiple regcache_raw_read
1844 calls.
1845
1846 2003-06-17 Kris Warkentin <kewarken@qnx.com>
1847
1848 * nto-tdep.c (nto_map_arch_to_cputype): Recognize "powerpc".
1849 (nto_find_and_open_solib): Likewise.
1850 (nto_init_solib_absolute_prefix): Likewise.
1851 (_initialize_nto_tdep): Fix indentation.
1852
1853 2003-06-17 Kris Warkentin <kewarken@qnx.com>
1854
1855 * i386-nto-tdep.c (i386nto_sigcontext_addr): Make sp a CORE_ADDR.
1856
1857 2003-06-17 Kris Warkentin <kewarken@qnx.com>
1858
1859 * i386-nto-tdep.c (i386nto_sigcontext_addr): Declare sp before using.
1860
1861 2003-06-17 Jim Blandy <jimb@redhat.com>
1862
1863 * ppc-linux-tdep.c: "Linux" -> "GNU/Linux"
1864
1865 2003-06-16 Theodore A. Roth <troth@openavr.org>
1866
1867 * avr-tdep.c (avr_extract_return_value): New function.
1868 (avr_gdbarch_init): Set extract_return_value method.
1869
1870 2003-06-16 Andrew Cagney <cagney@redhat.com>
1871
1872 * frame.h (deprecated_get_next_frame_hack): Declare.
1873 * frame.c (legacy_saved_regs_prev_register): Only require
1874 DEPRECATED_FRAME_INIT_SAVED_REGS when it is needed. Assert that
1875 there are always saved regs.
1876 (deprecated_generic_get_saved_register): Do not require
1877 DEPRECATED_FRAME_INIT_SAVED_REGS.
1878 (legacy_get_prev_frame): Do not require DEPRECATED_FRAME_CHAIN,
1879 use frame ID unwind instead.
1880 (deprecated_get_next_frame_hack): New function.
1881
1882 2003-06-16 Corinna Vinschen <vinschen@redhat.com>
1883
1884 * h8300-tdep.c (h8300_push_arguments): Remove. Substitute by...
1885 (h8300_push_dummy_call): ...this function. Some minor optimization.
1886 (h8300_push_return_address): Remove.
1887 (h8300_gdbarch_init): Remove calls to
1888 set_gdbarch_deprecated_dummy_write_sp,
1889 set_gdbarch_deprecated_push_arguments and
1890 set_gdbarch_deprecated_push_return_address.
1891 Add call to set_gdbarch_push_dummy_call.
1892
1893 2003-06-16 Corinna Vinschen <vinschen@redhat.com>
1894
1895 * h8300-tdep.c (E_PSEUDO_CCR_REGNUM): New define.
1896 (E_PSEUDO_EXR_REGNUM): Ditto.
1897 (h8300_is_argument_spill): Check for instructions moving argument
1898 registers into safe registers.
1899 (h8300_skip_prologue): Check for stm instruction to push registers
1900 used for register variables onto stack.
1901 (gdb_print_insn_h8300): Remove.
1902 (h8300_examine_prologue): Add a comment.
1903 (h8300_register_name): Take pseudo registers into account.
1904 (h8300s_register_name): Ditto.
1905 (h8300sx_register_name): Ditto.
1906 (h8300_print_register): Ditto.
1907 (h8300_print_registers_info): Define "nice" printing order.
1908 (h8300_saved_pc_after_call): Take pseudo registers into account.
1909 (h8300_register_type): Ditto. Return type used for remote connection
1910 when requesting real CCR or EXR register, return actual type when
1911 requesting pseudo CCR or EXR.
1912 (h8300_pseudo_register_read): New function.
1913 (h8300_pseudo_register_write): Ditto.
1914 (h8300_dbg_reg_to_regnum): Ditto.
1915 (h8300s_dbg_reg_to_regnum): Ditto.
1916 (h8300_gdbarch_init): Call set_gdbarch_num_pseudo_regs,
1917 set_gdbarch_ecoff_reg_to_regnum, set_gdbarch_dwarf_reg_to_regnum,
1918 set_gdbarch_dwarf2_reg_to_regnum, set_gdbarch_stab_reg_to_regnum and
1919 set_gdbarch_print_insn architecture dependent.
1920 Call set_gdbarch_pseudo_register_read and
1921 set_gdbarch_pseudo_register_write.
1922 (_initialize_h8300_tdep): Remove assignment to deprecated_tm_print_insn.
1923
1924 2003-06-16 Andrew Cagney <cagney@redhat.com>
1925
1926 * gdbarch.sh (SAVE_DUMMY_FRAME_TOS): Deprecate.
1927 * gdbarch.h, gdbarch.c: Re-generate.
1928 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
1929 * s390-tdep.c (s390_gdbarch_init): Update.
1930 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1931 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1932 * mips-tdep.c (mips_gdbarch_init): Update.
1933 * mcore-tdep.c (mcore_gdbarch_init): Update.
1934 * cris-tdep.c (cris_gdbarch_init): Update.
1935 * infcall.c (call_function_by_hand): Update.
1936 * ia64-tdep.c (ia64_push_arguments): Update comment.
1937 * frame.c (legacy_get_prev_frame): Do not assume
1938 SAVE_DUMMY_FRAME_TOS_P.
1939 * dummy-frame.c (find_dummy_frame): Update comment.
1940
1941 2003-06-16 Andrew Cagney <cagney@redhat.com>
1942
1943 * regcache.c (do_cooked_read): Do not use register_valid_p.
1944
1945 2003-06-15 Theodore A. Roth <troth@openavr.org>
1946
1947 * avr-tdep.c (avr_register_type): Remove a blank line.
1948 (avr_scan_prologue): Correct some comments.
1949
1950 2003-06-15 Theodore A. Roth <troth@openavr.org>
1951
1952 * avr-tdep.c (avr_scan_prologue): Update comment describing the various
1953 prologue types.
1954 Properly scan prologues generated by gcc with the -mcall-prologues
1955 option.
1956 Add code to scan -mcall-prologues for mega devices.
1957
1958 2003-06-15 Theodore A. Roth <troth@openavr.org>
1959
1960 * avr-tdep.c (avr_register_byte): Delete function.
1961 (avr_register_raw_size): Delete function.
1962 (avr_register_virtual_size): Delete function.
1963 (avr_register_virtual_type): Delete function.
1964 (avr_register_type): New function.
1965 (avr_address_to_pointer): Remove unused code.
1966 (avr_read_fp): Need to read FP as two separate bytes due to change to
1967 avr_register_type() usage.
1968 (avr_gdbarch_init): Don't set deprecated_register_size.
1969 Don't set deprecated_register_bytes.
1970 Don't set deprecated_register_byte.
1971 Don't set deprecated_register_raw_size.
1972 Don't set deprecated_max_register_raw_size.
1973 Don't set deprecated_register_virtual_size.
1974 Don't set deprecated_max_register_virtual_size.
1975 Don't set deprecated_register_virtual_type.
1976 Set register_type method.
1977
1978 2003-06-15 Daniel Jacobowitz <drow@mvista.com>
1979
1980 * Makefile.in (linux-nat.o): Add rule.
1981 * linux-nat.c: New file.
1982 * config/nm-linux.h (CHILD_INSERT_FORK_CATCHPOINT): Define.
1983 (CHILD_INSERT_VFORK_CATCHPOINT): Define.
1984 (CHILD_INSERT_EXEC_CATCHPOINT): Define.
1985 * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-nat.o.
1986 * config/arm/linux.mh (NATDEPFILES): Likewise.
1987 * config/i386/linux.mh (NATDEPFILES): Likewise.
1988 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
1989 * config/ia64/linux.mh (NATDEPFILES): Likewise.
1990 * config/m68k/linux.mh (NATDEPFILES): Likewise.
1991 * config/mips/linux.mh (NATDEPFILES): Likewise.
1992 * config/powerpc/linux.mh (NATDEPFILES): Likewise.
1993 * config/s390/s390.mh (NATDEPFILES): Likewise.
1994 * config/sparc/linux.mh (NATDEPFILES): Likewise.
1995
1996 2003-06-15 Mark Kettenis <kettenis@gnu.org>
1997
1998 * i387-tdep.c: Reorder includes, fix some whitespace issues and
1999 replace out-of-date comment.
2000
2001 2003-06-15 Andrew Cagney <cagney@redhat.com>
2002
2003 * rdi-share/host.h (Fail): Change to a varargs function.
2004 * remote-rdi.c (Fail): Update.
2005
2006 2003-06-15 Mark Kettenis <kettenis@gnu.org>
2007
2008 * i386-tdep.c (i386_next_regnum): Fix bounds checking.
2009 (i386_convert_register_p, i386_register_to_value,
2010 i386_register_from_value): Handle types longer than 8 bytes.
2011
2012 2003-06-15 Mark Kettenis <kettenis@gnu.org>
2013
2014 * i386-tdep.c (i386_register_to_value, i386_value_to_register):
2015 Move floating-point code to new function in i387-tdep.c.
2016 * i387-tdep.c (i387_register_to_value, i387_value_to_register):
2017 New functions containing code moved here from i386-tdep.c.
2018 * i387-tdep.h: Add opaque declaration for `struct type'.
2019 (i387_register_to_value, i387_value_to_register): New prototypes.
2020 * x86-64-tdep.c (x86_64_convert_register_p): New function.
2021 (x86_64_init_abi): Set convert_register_p, register_to_value and
2022 value_to_register here.
2023
2024 2003-06-14 Andrew Cagney <cagney@redhat.com>
2025
2026 * mips-tdep.c (mips_register_to_value): Make static.
2027 (mips_value_to_register): Make static.
2028 * i386-tdep.c (i386_fetch_pointer_argument): Make static.
2029 * ia64-tdep.c (ia64_register_raw_size): Make static.
2030 (ia64_register_virtual_size): Make static.
2031 (ia64_register_byte): Make static.
2032 * i387-tdep.c: Include "i387-tdep.h".
2033 (print_387_control_word): Delete function.
2034 (print_387_status_word): Delete function.
2035 (print_387_status_bits): Delete function.
2036 (print_387_control_bits): Delete function.
2037 * Makefile.in (i387-tdep.o): Update dependencies.
2038 * rdi-share/host.h (Fail): Declare.
2039 * remote-rdi.c (Fail): Update to match declaration.
2040
2041 2003-06-14 Andrew Cagney <cagney@redhat.com>
2042
2043 * config/mips/embedl64.mt (TDEPFILES): Delete "remote-array.o".
2044 * config/mips/embedl.mt (TDEPFILES): Delete "remote-array.o".
2045 * config/mips/embed64.mt (TDEPFILES): Delete "remote-array.o".
2046 * config/djgpp/fnchange.lst: Delete "remote-array.c".
2047 * README: Delete reference to remote-array.
2048 * Makefile.in (ALLDEPFILES): Remove "remote-array.c".
2049 (remote-array.o): Delete target.
2050 * config/mips/embed.mt (TDEPFILES): Delete "remote-array.o".
2051 * remote-array.c: Delete file.
2052
2053 2003-06-14 Andrew Cagney <cagney@redhat.com>
2054 Mark Kettenis <kettenis@gnu.org>
2055
2056 * gdbarch.sh (CONVERT_REGISTER_P): Add "type" parameter.
2057 (REGISTER_TO_VALUE, VALUE_TO_REGISTER): Replace raw buffer
2058 parameter with "frame".
2059 * gdbarch.h, gdbarch.c: Re-generate.
2060 * frame.h (put_frame_register): Declare.
2061 * frame.c (put_frame_register): New function.
2062 * arch-utils.c (legacy_convert_register_p): Add "type" parameter.
2063 (legacy_register_to_value): Rewrite, use "frame" to get the
2064 register value.
2065 (legacy_value_to_register): Rewrite, use "frame" to find the
2066 register's location before storing.
2067 * arch-utils.h (legacy_convert_register_p): Update.
2068 (legacy_register_to_value, legacy_value_to_register): Update.
2069 * findvar.c (value_from_register): Rewrite, eliminate use of
2070 REGISTER_CONVERT_TO_TYPE, pass "type" to CONVERT_REGISTER_P, pass
2071 "frame" to REGISTER_TO_VALUE.
2072 * valops.c (value_assign): Move the CONVERT_REGISTER code to the
2073 lval_reg_frame_relative + lval_register branch of the switch. Do
2074 not use REGISTER_CONVERT_FROM_TYPE. Use put_frame_register.
2075 * i386-tdep.c (I386_EBX_REGNUM, I386_ECX_REGNUM, I386_ESI_REGNUM,
2076 I386_EDI_REGNUM): New defines.
2077 (i386_next_regnum, i386_convert_register_p,
2078 i386_register_to_value, i386_value_to_register): New functions.
2079 (i386_register_convertible, i386_register_convert_to_virtual,
2080 i386_convert_to_raw): Remove functions.
2081 (i386_gdbarch_init): Set convert_register_p, register_to_value and
2082 value_to_register instead of register_convertible,
2083 register_convert_to_virtual and register_convert_to_raw.
2084 * mips-tdep.c (mips_convert_register_p): New function.
2085 (mips_value_to_register): Replace mips_register_convert_from_type.
2086 (mips_register_to_value): Replace mips_register_convert_to_type.
2087 (mips_gdbarch_init): Set conver_register_p, value_to_register and
2088 register_to_value.
2089 * alpha-tdep.c (alpha_convert_register_p): Update.
2090 (alpha_value_to_register): Update, store the register.
2091 (alpha_register_to_value): Update, fetch the register.
2092
2093 2003-06-14 Theodore A. Roth <troth@openavr.org>
2094
2095 * avr-tdep.c (avr_remote_translate_xfer_address): Delete function.
2096 (avr_gdbarch_init): Remove avr_call_dummy_words variable.
2097 Don't set deprecated_call_dummy_words.
2098 Remove commented out set_gdbarch_believe_pcc_promotion() call.
2099 Don't set remote_translate_xfer_address.
2100 (avr_io_reg_read_command): Remove commented out debug printf.
2101 Wrap a long line.
2102
2103 2003-06-14 Theodore A. Roth <troth@openavr.org>
2104
2105 * avr-tdep.c (avr_scan_prologue): Fix to avoid a buffer over run which
2106 causes gdb to seg fault.
2107
2108 2003-06-14 Daniel Jacobowitz <drow@mvista.com>
2109
2110 * sparc-nat.c (fetch_inferior_registers): Correct
2111 a reference to "registers".
2112
2113 2003-06-14 Jeroen Dekkers <jeroen@dekkers.cx>
2114
2115 * Makefile.in (exc_request_U_h): Define
2116 (exc_request_S_h): Likewise.
2117 (msg_reply_S_h): Likewise.
2118 (msg_U_h): Likewise.
2119 (notify_S_h): Likewise.
2120 (process_reply_S_h): Likewise.
2121 (gnu-nat.o): Depend on gdb_obstack_h
2122 * gnu-nat.c: Include "gdb_obstack.h".
2123
2124 2003-06-13 Andrew Cagney <cagney@redhat.com>
2125
2126 * gdbarch.sh: Document what PUSH_DUMMY_CALL replaces.
2127 * gdbarch.h, gdbarch.c: Re-generate.
2128
2129 2003-06-13 Andrew Cagney <cagney@redhat.com>
2130
2131 * gdbarch.sh: Document what UNWIND_DUMMY_ID replaces. Clarify
2132 when deprecated REGISTER macros can be deleted.
2133 * gdbarch.h, gdbarch.c: Re-generate.
2134
2135 2003-06-13 Jim Blandy <jimb@redhat.com>
2136
2137 * solib-svr4.c (solib_break_names): Recognize the 64-bit PowerPC
2138 Linux entry point symbols for _dl_debug_state, too.
2139
2140 2003-06-13 Andrew Cagney <cagney@redhat.com>
2141
2142 * infcall.c (call_function_by_hand): When UNWIND_DUMMY_ID is
2143 available, do not use the FP register, and always save the TOS.
2144 * dummy-frame.c (dummy_frame_this_id): Do not assert
2145 SAVE_DUMMY_FRAME_TOS.
2146 * i386-tdep.c (i386_save_dummy_frame_tos): Delete function.
2147 (i386_gdbarch_init): Do not set save_dummy_frame_tos.
2148 (i386_push_dummy_call): Add 8 to the returned SP.
2149 * frame.c (legacy_frame_p): Do not require SAVE_DUMMY_FRAME_TOS.
2150 * d10v-tdep.c (d10v_unwind_dummy_id): Use d10v_unwind_sp.
2151 (d10v_gdbarch_init): Do not set save_dummy_frame_tos.
2152 * x86-64-tdep.c (x86_64_save_dummy_frame_tos): Delete function.
2153 (x86_64_push_dummy_call): Return "sp + 16".
2154 (x86_64_init_abi): Do not set save_dummy_frame_tos.
2155 * alpha-tdep.c (alpha_gdbarch_init): Do not set
2156 save_dummy_frame_tos.
2157
2158 2003-06-13 Jim Blandy <jimb@redhat.com>
2159
2160 * frv-tdep.c (frv_use_struct_convention): Delete static
2161 declaration for function deleted in my change of 2003-06-12.
2162
2163 2003-06-13 Theodore A. Roth <troth@openavr.org>
2164
2165 * avr-tdep.c (avr_address_to_pointer): Shift code addrs right 1 bit.
2166 (avr_pointer_to_address): Shift code addrs left 1 bit.
2167 (avr_convert_from_func_ptr_addr): Delete function since operation is
2168 better handled by avr_address_to_pointer and avr_pointer_to_address.
2169 (avr_gdbarch_init): Don't set convert_from_func_ptr_add method.
2170
2171 2003-06-13 Mark Kettenis <kettenis@gnu.org>
2172
2173 From Kelley Cook <kelleycook@wideopenwest.com>:
2174 * configure.host: Accept i[34567]86 variants.
2175 * configure.tgt: Likewise.
2176 * nlm/configure.in: Likewise.
2177 * nlm/configure: Regenerated.
2178
2179 2003-06-13 Richard Earnshaw <rearnsha@arm.com>
2180
2181 * arm-tdep.c (solib-svr4.h): Dont' include it.
2182 (arm_linux_svr4_fetch_link_map_offsets): Move to ...
2183 * arm-linux-tdep.c: ... here. Make static.
2184 (arm_linux_init_abi): Register it.
2185 (solib-svr4.h): Include it.
2186 * Makefile.in: Update dependencies.
2187 * config/arm/tm-linux.h (SVR4_FETCH_LINK_MAP_OFFSETS): Delete.
2188 (arm_linux_svr4_fetch_link_map_offsets): Delete declaration.
2189
2190 2003-06-13 Corinna Vinschen <vinschen@redhat.com>
2191
2192 * h8300-tdep.c: Add definitions E_RET0_REGNUM and E_RET1_REGNUM to
2193 indicate registers used for return values.
2194 (struct frame_extra_info): Drop args_pointer and locals_pointer.
2195 (h8300_examine_prologue): Remove initializing dropped frame_extra_info
2196 members.
2197 (h8300_init_extra_frame_info): Ditto.
2198 (h8300_frame_locals_address): Removed.
2199 (h8300_frame_args_address): Removed.
2200 (h8300_extract_return_value): Use new regcache structure. Only care
2201 for 16 bit CPUs.
2202 (h8300h_extract_return_value): Same function for 32 bit CPUs.
2203 (h8300_store_return_value): Use new regcache structure. Only care
2204 for 16 bit CPUs.
2205 (h8300h_store_return_value): Same function for 32 bit CPUs.
2206 (h8300_store_struct_return): Removed.
2207 (h8300_extract_struct_value_address): Use new regcache structure.
2208 (h8300h_extract_struct_value_address): Removed.
2209 (h8300_push_dummy_code): New function.
2210 (h8300_gdbarch_init): Slightly rearranged to stress deprecated calls.
2211 Remove call_dummy_words. Call set_gdbarch_extract_return_value and
2212 set_gdbarch_store_return_value architecture dependent.
2213 Call set_gdbarch_push_dummy_code and
2214 set_gdbarch_extract_struct_value_address.
2215 Remove calls to set_gdbarch_frame_args_address,
2216 set_gdbarch_frame_locals_address,
2217 set_gdbarch_deprecated_store_struct_return,
2218 set_gdbarch_deprecated_extract_return_value,
2219 set_gdbarch_deprecated_extract_struct_value_address,
2220 set_gdbarch_deprecated_call_dummy_words and
2221 set_gdbarch_deprecated_sizeof_call_dummy_words.
2222
2223 2003-06-13 Corinna Vinschen <vinschen@redhat.com>
2224
2225 * h8300-tdep.c (h8300_register_byte): Remove.
2226 (h8300h_register_byte): Remove.
2227 (h8300_register_virtual_type): Remove. Substitute by...
2228 (h8300_register_type): New function.
2229 (h8300_extract_struct_value_address): Drop usage of h8300_register_byte.
2230 (h8300h_extract_struct_value_address): Ditto.
2231 (h8300_gdbarch_init): Drop calls to
2232 set_gdbarch_deprecated_register_byte and
2233 set_gdbarch_deprecated_register_virtual_type.
2234 Add call to set_gdbarch_register_type.
2235
2236 2003-06-13 Andrew Cagney <cagney@redhat.com>
2237
2238 * gdbarch.sh: Update comments on registers.
2239 (deprecated_register_byte): Rename register_byte.
2240 (deprecated_register_raw_size): Rename register_raw_size.
2241 (deprecated_register_virtual_size): Rename register_virtual_size.
2242 (deprecated_register_virtual_type): Rename register_virtual_type.
2243 * gdbarch.h, gdbarch.c: Re-generate.
2244 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2245 * vax-tdep.c (vax_gdbarch_init): Update.
2246 * v850-tdep.c (v850_gdbarch_init): Update.
2247 * sparc-tdep.c (sparc_gdbarch_init): Update.
2248 * sh-tdep.c (sh_gdbarch_init): Update.
2249 * s390-tdep.c (s390_gdbarch_init): Update.
2250 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2251 * ns32k-tdep.c: Update.
2252 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2253 * mips-tdep.c (mips_gdbarch_init): Update.
2254 * mcore-tdep.c (mcore_gdbarch_init): Update.
2255 * m68k-tdep.c (m68k_gdbarch_init): Update.
2256 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2257 * ia64-tdep.c (ia64_gdbarch_init): Update.
2258 * hppa-tdep.c (hppa_gdbarch_init): Update.
2259 * h8300-tdep.c (h8300_gdbarch_init): Update.
2260 * frv-tdep.c (frv_gdbarch_init): Update.
2261 * cris-tdep.c (cris_gdbarch_init): Update.
2262 * avr-tdep.c (avr_gdbarch_init): Update.
2263 * alpha-tdep.c (alpha_gdbarch_init): Update.
2264 * arm-tdep.c (arm_gdbarch_init): Update.
2265
2266 2003-06-13 Andrew Cagney <cagney@redhat.com>
2267
2268 * mips-tdep.c (mips_gdbarch_init): Replace remaining instances of
2269 mips_o32_use_struct_convention with always_use_struct_convention.
2270
2271 2003-06-12 David Carlton <carlton@kealia.com>
2272
2273 * cp-namespace.c (cp_set_block_scope): Comment out
2274 processing_has_namespace_info branch.
2275
2276 2003-06-12 Jim Blandy <jimb@redhat.com>
2277
2278 Recognize and skip 64-bit PowerPC Linux linkage functions.
2279 * ppc-linux-tdep.c (insn_d, insn_ds, insn_xfx, read_insn, struct
2280 insn_pattern, insns_match_pattern, d_field, ds_field): New
2281 functions, macros, and types for working with PPC instructions.
2282 (ppc64_standard_linkage, PPC64_STANDARD_LINKAGE_LEN,
2283 ppc64_in_solib_call_trampoline, ppc64_standard_linkage_target,
2284 ppc64_skip_trampoline_code): New functions, variables, and macros
2285 for recognizing and skipping linkage functions.
2286 (ppc_linux_init_abi): Use ppc64_in_solib_call_trampoline and
2287 ppc64_skip_trampoline_code for the 64-bit PowerPC Linux ABI.
2288
2289 * ppc-linux-nat.c (ppc_register_u_addr): Correctly compute u-area
2290 register offsets for both the 32- and 64-bit interfaces.
2291
2292 Actually finish the job started by my change of 2003-05-29.
2293 * config/powerpc/tm-linux.h (SKIP_TRAMPOLINE_CODE): Remove the
2294 other #definition of this.
2295 (ppc_linux_skip_trampoline_code): Remove declaration.
2296 * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Make this
2297 static.
2298 (ppc_linux_init_abi): Register it as the skip_trampoline_code
2299 method for GDBARCH.
2300
2301 * config/powerpc/nm-ppc64-linux.h (PTRACE_XFER_TYPE): This is
2302 'long' on ppc64-*-linux*.
2303
2304 * ppc-linux-nat.c (ppc_register_u_addr, fill_gregset): If PT_MQ
2305 isn't #defined, assume the register doesn't exist: act as if
2306 tdep->ppc_mq_regnum were -1.
2307
2308 * configure.host, configure.tgt: Add entries for
2309 powerpc64-*-linux, selecting powerpc/ppc64-linux.mh and
2310 powerpc/linux.mt.
2311 * config/powerpc/ppc64-linux.mh, config/powerpc/nm-ppc64-linux.mh:
2312 New files.
2313
2314 * arch-utils.c (always_use_struct_convention): New function.
2315 * arch-utils.h (always_use_struct_convention): New prototype.
2316 * alpha-tdep.c (alpha_use_struct_convention): Delete.
2317 (alpha_gdbarch_init): Register always_use_struct_convention,
2318 instead of alpha_use_struct_convention.
2319 * cris-tdep.c (cris_use_struct_convention): Delete.
2320 (cris_gdbarch_init): Register always_use_struct_convention,
2321 instead of cris_use_struct_convention.
2322 * frv-tdep.c (frv_use_struct_convention): Delete.
2323 (frv_gdbarch_init): Register always_use_struct_convention,
2324 instead of frv_use_struct_convention.
2325 * h8300-tdep.c (h8300_use_struct_convention): Delete.
2326 (h8300_gdbarch_init): Register always_use_struct_convention,
2327 instead of h8300_use_struct_convention.
2328 * mips-tdep.c (mips_o32_use_struct_convention): Delete.
2329 (mips_o32_gdbarch_init): Register always_use_struct_convention,
2330 instead of mips_o32_use_struct_convention.
2331
2332 2003-06-12 Andrew Cagney <cagney@redhat.com>
2333
2334 * wince.c: Include "mips-tdep.h".
2335 * mips-tdep.h (mips_next_pc): Declare.
2336 * mcore-tdep.c: Make more local functions static.
2337 * Makefile.in (wince.o): Update dependencies.
2338
2339 2003-06-12 David Carlton <carlton@kealia.com>
2340
2341 * symtab.c (lookup_symbol_aux_minsyms): Replace
2342 DEPRECATED_SYMBOL_NAME by SYMBOL_LINKAGE_NAME.
2343 (find_pc_sect_line, search_symbols, rbreak_command): Ditto.
2344 (COMPLETION_LIST_ADD_SYMBOL): Rewrite in terms of
2345 SYMBOL_NATURAL_NAME.
2346
2347 2003-06-12 Andreas Schwab <schwab@suse.de>
2348
2349 * Makefile.in (tuiDisassem.o): Update dependencies.
2350
2351 2003-06-12 David Carlton <carlton@bactrian.org>
2352
2353 * symtab.h: Delete declaration of make_symbol_overload_list.
2354 Add declaration of lookup_partial_symbol.
2355 * symtab.c (remove_params): Move to cp-support.c.
2356 (overload_list_add_symbol, make_symbol_overload_list)
2357 (sym_return_val_size, sym_return_val_index): Ditto.
2358 (lookup_partial_symbol): Make extern.
2359 * cp-support.h: Add declaration of make_symbol_overload_list.
2360 * cp-support.c: Include dictionary.h, objfiles.h, frame.h,
2361 symtab.h, and block.h.
2362 (remove_params): Move here from symtab.c.
2363 (overload_list_add_symbol, make_symbol_overload_list)
2364 (sym_return_val_size, sym_return_val_index): Ditto.
2365 * valops.c: Include cp-support.h.
2366 * Makefile.in (cp-support.o): Depend on dictionary_h, objfiles_h,
2367 frame_h, and block_h.
2368 (valops.o): Depend on cp_support_h.
2369
2370 2003-06-12 Corinna Vinschen <vinschen@redhat.com>
2371
2372 * h8300-tdep.c: Add H8SX registers. Drop E_NUM_REGS entirely,
2373 substitute by NUM_REGS throughout.
2374 (h8300_register_name): Only care for H8/300 and H8/300H registers.
2375 (h8300s_register_name): New function for H8S registers.
2376 (h8300sx_register_name): Ditto for H8SX registers.
2377 (h8300_print_register): Revise register printing, avoid depending
2378 on 32 bit long.
2379 (h8300_register_byte): Only care for H8/300 registers.
2380 (h8300h_register_byte): New function for any other architecture.
2381 (h8300_register_raw_size): Remove.
2382 (h8300_register_virtual_type): Revise to return actually useful
2383 type.
2384 (h8300_extract_struct_value_address): Only care for H8/300 registers.
2385 (h8300h_extract_struct_value_address): New function for any other
2386 architecture.
2387 (h8300_gdbarch_init): Add h8300sxn. Call set_gdbarch_num_regs,
2388 set_gdbarch_register_name, set_gdbarch_register_byte,
2389 set_gdbarch_ptr_bit and set_gdbarch_addr_bit architecture dependent.
2390 Remove calls to set_gdbarch_deprecated_register_size,
2391 set_gdbarch_deprecated_register_bytes, set_gdbarch_register_raw_size,
2392 set_gdbarch_deprecated_max_register_raw_size,
2393 set_gdbarch_register_virtual_size and
2394 set_gdbarch_deprecated_max_register_virtual_size entirely.
2395 Call set_gdbarch_long_long_bit, set_gdbarch_double_bit and
2396 set_gdbarch_long_double_bit.
2397
2398 2003-06-11 Jeff Johnston <jjohnstn@redhat.com>
2399
2400 * doublest.c (convert_doublest_to_floatformat): When dealing
2401 with the implied integer bit, only alter mant_bits if we are
2402 processing a full 32 bits of mantissa.
2403
2404 2003-06-11 David Carlton <carlton@bactrian.org>
2405
2406 * dictionary.h: New.
2407 * dictionary.c: New.
2408 * block.h: Add opaque declaration for struct dictionary.
2409 (struct block): Add 'dict' member; delete 'hashtable', 'nsyms',
2410 'sym' members.
2411 (BLOCK_DICT): New macro.
2412 Delete macros BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM,
2413 BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE,
2414 BLOCK_SHOULD_SORT.
2415 (ALL_BLOCK_SYMBOLS): Update definition.
2416 * Makefile.in (SFILES): Add dictionary.c.
2417 (dictionary_h): New.
2418 (COMMON_OBS): Add dictionary.o.
2419 (dictionary.o): New.
2420 (ada-lang.o): Depend on dictionary_h.
2421 (buildsym.o, coffread.o, jv-lang.o, mdebugread.o, objfiles.o)
2422 (stack.o, symmisc.o, symtab.o, tracepoint.o, valops.o)
2423 (mi-cmd-stack.o): Ditto.
2424 (gdbtk-cmds.o): Update dependencies.
2425 (gdbtk-stack.o): Ditto.
2426 * ada-lang.c: Include dictionary.h.
2427 (symtab_for_sym): Update uses of ALL_BLOCK_SYMBOLS.
2428 (fill_in_ada_prototype, debug_print_block): Ditto.
2429 (ada_add_block_symbols): Update uses of ALL_BLOCK_SYMBOLS; replace
2430 explicit iteration by use of ALL_BLOCK_SYMBOLS. Delete variable
2431 'is_sorted'.
2432 * mdebugread.c: Include dictionary.h.
2433 (struct parse_stack): Delete 'maxsyms' member.
2434 (parse_symbol): Update calls to new_block. Delete calls to
2435 shrink_block. Use dictionary methods.
2436 (psymtab_to_symtab_1): Delete calls to sort_symtab_syms.
2437 Update calls to new_symtab. Don't maintain maxsyms data.
2438 (mylookup_symbol): Update use of ALL_BLOCK_SYMBOLS.
2439 (add_symbol): Just call dict_add_symbol.
2440 (new_symtab): Delete 'maxsyms' argument.
2441 (new_symtab): Update calls to new_block.
2442 (new_block): Delete 'maxsyms' argument; add 'function' argument.
2443 (shrink_block): Delete function.
2444 (fixup_sigtramp): Update call to new_block. Add symbol via
2445 dict_add_symbol.
2446 * jv-lang.c: Include dictionary.h.
2447 (get_java_class_symtab): Set the BLOCK_DICT of the blocks
2448 appropriately. Set class_symtab->free_func. Make sure the
2449 blockvector is big enough to hold two blocks.
2450 (add_class_symtab_symbol): Use dictionary methods.
2451 (free_class_block): New function.
2452 (type_from_class): Replace explicit iteration by
2453 ALL_BLOCK_SYMBOLS.
2454 * symtab.h (struct symtab): Replace 'free_ptr' method by
2455 'free_func'.
2456 * dwarf2read.c (psymtab_to_symtab_1): Delete call to
2457 sort_symtab_syms.
2458 * dwarfread.c (psymtab_to_symtab_1): Delete call to
2459 sort_symtab_syms.
2460 * coffread.c (coff_symfile_read): Delete call to sort_symtab_syms.
2461 Include dictionary.h.
2462 (patch_opaque_types): Update use of ALL_BLOCK_SYMBOLS.
2463 * dbxread.c (dbx_psymtab_to_symtab_1): Delete call to
2464 sort_symtab_syms.
2465 * objfiles.c: Include dictionary.h.
2466 (objfile_relocate): Update use of ALL_BLOCK_SYMBOLS.
2467 * buildsym.c: Include dictionary.h.
2468 (finish_block): Use dictionary methods.
2469 (end_symtab): Set free_func to NULL, not free_ptr.
2470 * tracepoint.c: Include dictionary.h.
2471 (add_local_symbols): Update use of ALL_BLOCK_SYMBOLS.
2472 (scope_info): Ditto.
2473 * stack.c: Include dictionary.h.
2474 (print_block_frame_locals): Update use of ALL_BLOCK_SYMBOLS.
2475 (print_block_frame_labels, print_frame_arg_vars)
2476 (print_frame_args): Ditto.
2477 * symmisc.c (free_symtab_block): Use dictionary methods.
2478 (dump_symtab): Ditto.
2479 (free_symtab): Replace use of 'free_ptr' by 'free_func'.
2480 Include dictionary.h.
2481 * symfile.h: Delete declarations of sort_block_syms,
2482 sort_symtab_syms.
2483 * symfile.c (sort_block_syms): Delete.
2484 (sort_symtab_syms): Delete.
2485 * symtab.c: Include dictionary.h.
2486 (lookup_block_symbol): Use dictionary iterators.
2487 (find_pc_sect_symtab): Update use of ALL_BLOCK_SYMBOLS.
2488 (search_symbols, make_symbol_completion_list): Ditto.
2489 (make_symbol_overload_list): Ditto.
2490 * valops.c (value_of_local): Use dict_empty.
2491 Include dictionary.h.
2492
2493 2003-06-11 J. Brobecker <brobecker@gnat.com>
2494
2495 * win32-nat.c (solib_symbols_add): Fix a small compilation error.
2496
2497 2003-06-11 David Carlton <carlton@bactrian.org>
2498
2499 * block.h (BLOCK_SHOULD_SORT): Delete.
2500 * symtab.c (lookup_block_symbol): Don't worry about sorted linear
2501 blocks.
2502 * ada-lang.c (ada_add_block_symbols): Ditto.
2503 * symfile.c (sort_block_syms): Delete.
2504 (sort_symtab_syms): Ditto.
2505 * symfile.h: Delete sort_symtabs_syms and sort_block_syms
2506 declarations.
2507 * coffread.c (coff_symfile_read): Don't call sort_symtab_syms.
2508 * dbxread.c (dbx_psymtab_to_symtab_1): Ditto.
2509 * dwarf2read.c (psymtab_to_symtab_1): Ditto.
2510 * dwarfread.c (psymtab_to_symtab_1): Ditto.
2511 * hpread.c (hpread_psymtab_to_symtab_1): Ditto.
2512 * mdebugread.c (psymtab_to_symtab_1): Ditto.
2513 * xcoffread.c (xcoff_psymtab_to_symtab_1): Ditto.
2514
2515 2003-06-11 Jeff Johnston <jjohnstn@redhat.com>
2516
2517 * ia64-tdep.c (ia64_gdbarch_init): Set number of long double
2518 bits to 128.
2519
2520 2003-06-11 Andrew Cagney <cagney@redhat.com>
2521
2522 * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Deprecate
2523 REGISTER_CONVERTIBLE.
2524 (DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL): Same.
2525 (DEPRECATED_REGISTER_CONVERT_TO_RAW): Same, make "from" constant.
2526 * gdbarch.h, gdbarch.c: Re-generate.
2527 * arch-utils.h (deprecated_register_convertible_not): Rename
2528 generic_register_convertible_not.
2529 * arch-utils.c (deprecated_register_convertible_not): Rename
2530 generic_register_convertible.
2531 (legacy_convert_register_p, legacy_register_to_value): Update.
2532 * sh-tdep.c (sh64_push_arguments): Update.
2533 * m68klinux-tdep.c (m68k_linux_extract_return_value): Update.
2534 * config/m68k/tm-delta68.h (DEPRECATED_EXTRACT_RETURN_VALUE): Update.
2535 * m68klinux-tdep.c (m68k_linux_store_return_value): Update.
2536 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Update.
2537 * arch-utils.c (legacy_value_to_register): Update.
2538 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2539 (rs6000_register_convert_to_raw): Make parameter "from" const.
2540 * mips-tdep.c (mips_gdbarch_init): Update.
2541 (mips_register_convert_to_raw): Make parameter"virt_buf" const.
2542 * infcmd.c (default_print_registers_info): Update.
2543 * ia64-tdep.c (ia64_gdbarch_init): Update.
2544 (ia64_register_convert_to_raw): Make parameter "from" const.
2545 * i386-tdep.c (i386_gdbarch_init): Update.
2546 (i386_register_convert_to_raw): Update.
2547
2548 2003-06-11 Andrew Cagney <cagney@redhat.com>
2549
2550 * remote-fileio.c: Include "remote-fileio.h".
2551 * Makefile.in (remote-fileio.o): Update dependencies.
2552 (remote_fileio_h): Fix typo.
2553
2554 2003-06-11 Andrew Cagney <cagney@redhat.com>
2555
2556 * xstormy16-tdep.c (xstormy16_push_return_address): Make static.
2557 (xstormy16_save_dummy_frame_tos): Make static.
2558 (_initialize_xstormy16_tdep): Add declaration.
2559 * vax-tdep.c (_initialize_vax_tdep): Add declaration.
2560 * v850-tdep.c: Make local functions static.
2561 (_initialize_v850_tdep): Add declaration.
2562 * sparc-tdep.c: Make local functions static.
2563 (_initialize_sparc_tdep): Add declaration.
2564 * sh-tdep.c: Make local functions static.
2565 (_initialize_sh_tdep): Add declaration.
2566 * sh3-rom.c (_initialize_sh3_rom): Add declaration.
2567 * s390-tdep.c: Make local functions static.
2568 (_initialize_s390_tdep): Add declaration.
2569 * dbxread.c (find_stab_function_addr): Make static.
2570 * ppc-bdm.c (_initialize_bdm_ppc): Add declaration.
2571 * ocd.c (_initialize_remote_ocd): Add declaration.
2572 * dink32-rom.c (_initialize_dink32_rom): Add declaration.
2573 * ppcbug-rom.c (_initialize_ppcbug_rom): Add declaration.
2574 * ns32k-tdep.c (_initialize_ns32k_tdep): Add declaration.
2575 * ns32knbsd-tdep.c (_initialize_ns32knbsd_tdep): Add declaration.
2576 * mips-tdep.c (_initialize_mips_tdep): Add declaration.
2577 * remote-array.c (_initialize_array): Add declaration.
2578 (_initialize_remote_monitors): Add declaration.
2579 * remote-mips.c: Make local functions static.
2580 (_initialize_remote_mips): Add declaration.
2581 * mcore-tdep.c: Make all local functions static.
2582 (_initialize_mcore_tdep): Add declaration.
2583 * dbug-rom.c (_initialize_dbug_rom): Add declaration.
2584 * abug-rom.c (_initialize_abug_rom): Add declaration.
2585 * rom68k-rom.c (_initialize_rom68k): Add declaration.
2586 * cpu32bug-rom.c (_initialize_cpu32bug_rom): Add declaration.
2587 * m68k-tdep.c (_initialize_m68k_tdep): Add declaration.
2588 * remote-est.c (_initialize_est): Add declaration.
2589 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Add declaration.
2590 (m68hc11_call_dummy_address): Make static.
2591 * ia64-tdep.c: Make local functions static.
2592 (_initialize_ia64_tdep): Add declaration.
2593 * solib-legacy.c (_initialize_svr4_lm): Add declaration.
2594 * monitor.c (monitor_wait_filter): Make static.
2595 (_initialize_remote_monitors): Add declaration.
2596 * remote-hms.c (_initialize_remote_hms): Add declaration.
2597 * remote-e7000.c (fetch_regs_from_dump): Make static.
2598 (expect_n): Make static.
2599 (_initialize_remote_e7000): Add declaration.
2600 * ser-e7kpc.c: Always include "defs.h".
2601 (_initialize_ser_e7000pc): Add declaration.
2602 * h8300-tdep.c (_initialize_h8300_tdep): Add declaration.
2603 * cris-tdep.c: Make all but one function static.
2604 (_initialize_cris_tdep): Add declaration.
2605 * solib-svr4.c (_initialize_svr4_solib): Add declaration.
2606 * solib.c (update_solib_list): Make static.
2607 (_initialize_solib): Add declaration.
2608 * avr-tdep.c (avr_breakpoint_from_pc): Make static.
2609 (_initialize_avr_tdep): Add declaration.
2610 * remote-rdi.c (voiddummy): Make static.
2611 (_initialize_remote_rdi): Add declaration.
2612 * arm-tdep.c (_initialize_arm_tdep): Add declaration.
2613 * remote-rdp.c (send_rdp): Make static.
2614 (_initialize_remote_rdp): Add declaration.
2615 * alpha-tdep.c (_initialize_alpha_tdep): Add declaration.
2616
2617 2003-06-11 Corinna Vinschen <vinschen@redhat.com>
2618
2619 * remote-fileio.c: Make ari happy.
2620
2621 2003-06-10 J. Brobecker <brobecker@gnat.com>
2622
2623 * rs6000-nat.c (child_xfer_memory): Compute the right address when
2624 fetching the trailing bytes of the buffer we are about to write.
2625
2626 2003-06-10 Andrew Cagney <cagney@redhat.com>
2627
2628 * remote-fileio.h (REMOTE_FILEIO_H): Replace FILEIO_H.
2629 * Makefile.in (remote-fileio.o): Update dependencies.
2630 * remote-fileio.c: Include "gdb_wait.h" and "gdb_stat.h". Do not
2631 include <setjmp.h>, or <sys/types.h> conditional on USG.
2632 (remote_fio_jmp_buf): Delete global variable.
2633
2634 2003-06-10 Corinna Vinschen <vinschen@redhat.com>
2635 Martin M. Hunt <hunt@redhat.com>
2636
2637 * Makefile.in (REMOTE_OBS): Add remote-fileio.o
2638 (SFILES): Add remote-fileio.c.
2639 Add dependencies for building remote-fileio.o. Add remote-fileio.h to
2640 dependencies for building remote.o.
2641 * remote-fileio.c: New file implementing the remote File-I/O protocol.
2642 * remote-fileio.h: New header file defining remote File-I/O interface.
2643 * remote.c (remote_write_bytes, remote_read_bytes): Remove
2644 static storage class.
2645 (remote_wait, remote_async_wait): Call remote_fileio_request() on
2646 'F' packet.
2647 (_initialize_remote): Call initialize_remote_fileio().
2648 * remote.h: Declare remote_write_bytes() and remote_read_bytes().
2649 * defs.h: Declare gdb_stdin, gdb_stdtargerr and gdb_stdtargin.
2650 * main.c: New ui_file gdb_stdin, gdb_stdtargerr and gdb_stdtargin.
2651 (captured_main): Initialize new ui_files.
2652 * ui-file.c: Add read and fgets input functions.
2653 (ui_file_new): set ui_file_fputs and ui_file_read to null functions.
2654 (null_file_read): New function.
2655 (ui_file_read): New function.
2656 (set_ui_file_read): New function.
2657 (stdio_file_read): New function.
2658 * ui-file.h: New type ui_file_read_ftype.
2659 (set_ui_file_read): Declare.
2660 (ui_file_read): Declare.
2661
2662 2003-06-09 Andrew Cagney <cagney@redhat.com>
2663
2664 * frame.h (deprecated_unwind_get_saved_register): Rename
2665 generic_unwind_get_saved_register, update comments.
2666 * mips-tdep.c (mips_get_saved_register): Update.
2667 * frame.c (deprecated_unwind_get_saved_register): Update.
2668
2669 2003-06-09 Andrew Cagney <cagney@redhat.com>
2670
2671 * vax-tdep.c (vax_frame_locals_address): Delete function.
2672 (vax_gdbarch_init): Do not set frame_locals_address.
2673 * m68hc11-tdep.c (m68hc11_frame_locals_address): Delete function.
2674 (m68hc11_gdbarch_init): Do not set frame_locals_address.
2675 * s390-tdep.c (s390_frame_args_address): Delete function.
2676 (s390_gdbarch_init): Do not set frame_args_address or
2677 frame_locals_address.
2678 * ns32k-tdep.c (ns32k_frame_locals_address): Delete.
2679 (ns32k_gdbarch_init): Do not set frame_locals_address.
2680 * hppa-tdep.c (hppa_frame_args_address): Delete function.
2681 (hppa_frame_locals_address): Delete function.
2682 (hppa_gdbarch_init): Do not set frame_args_address, or
2683 frame_locals_address.
2684 * arm-tdep.c (arm_frame_args_address): Delete.
2685 (arm_frame_locals_address): Delete.
2686 (arm_gdbarch_init): Do not set frame_args_address, or
2687 frame_locals_address.
2688
2689 2003-06-09 Andrew Cagney <cagney@redhat.com>
2690
2691 * gdbarch.sh (FRAME_NUM_ARGS): Change to function with predicate.
2692 * gdbarch.h, gdbarch.c: Re-generate.
2693 * arch-utils.h (frame_num_args_unknown): Delete both declarations.
2694 * arch-utils.c (frame_num_args_unknown): Delete function.
2695 * stack.c (print_args_stub): Use FRAME_NUM_ARGS_P.
2696 (frame_info): Use FRAME_NUM_ARGS_P.
2697 * arm-tdep.c (arm_frame_num_args): Delete function.
2698 (arm_gdbarch_init): Do not set frame_num_args.
2699 * config/pa/tm-hppa64.h (FRAME_NUM_ARGS): Delete.
2700 * hppa-tdep.c (hppa_frame_num_args): Delete function.
2701 (hppa_gdbarch_init): Do not set frame_num_args.
2702 * config/sparc/tm-sparc.h (FRAME_NUM_ARGS): Delete.
2703 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
2704 frame_num_args to default frame_num_args_unknown.
2705 * v850-tdep.c (v850_gdbarch_init): Ditto.
2706 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
2707 * sh-tdep.c (sh_gdbarch_init): Ditto.
2708 * s390-tdep.c (s390_gdbarch_init): Ditto.
2709 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
2710 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2711 * mips-tdep.c (mips_gdbarch_init): Ditto.
2712 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
2713 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
2714 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2715 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
2716 * i386-tdep.c (i386_gdbarch_init): Ditto.
2717 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
2718 * frv-tdep.c (frv_gdbarch_init): Ditto.
2719 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
2720 * cris-tdep.c (cris_gdbarch_init): Ditto.
2721 * avr-tdep.c (avr_gdbarch_init): Ditto.
2722 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
2723
2724 2003-06-09 Andrew Cagney <cagney@redhat.com>
2725
2726 * printcmd.c (print_frame_nameless_args): Moved to "stack.c".
2727 (print_frame_args): Moved to "stack.c".
2728 * stack.c: Include "gdb_assert.h".
2729 (print_frame_nameless_args): Moved from "printcmd.c", made static.
2730 (print_frame_args): Moved from "printcmd.c".
2731 * frame.h (print_frame_args): Delete declaration.
2732 * Makefile.in (stack.o): Update dependencies.
2733
2734 2003-06-08 Andrew Cagney <cagney@redhat.com>
2735
2736 * frame.c (get_prev_frame): Remove reference to
2737 frame_args_address_correct in comments.
2738 * frame-base.c (default_frame_args_address): Delete code
2739 conditional on FRAME_ARGS_ADDRESS_CORRECT.
2740 * vax-tdep.c (vax_frame_args_address_correct): Delete.
2741 (vax_frame_args_address): Merge in vax_frame_args_address_correct.
2742 * config/vax/tm-vax.h (FRAME_ARGS_ADDRESS_CORRECT): Delete
2743 (vax_frame_args_address_correct): Delete declaration.
2744
2745 2003-06-08 Andrew Cagney <cagney@redhat.com>
2746
2747 * gdbarch.sh (UNWIND_SP): Add.
2748 * gdbarch.h, gdbarch.c: Re-generate.
2749 * frame.c (frame_sp_unwind): New function.
2750 (get_frame_sp): New function.
2751 * frame.h (get_frame_sp, frame_sp_unwind): Declare.
2752 * regcache.c (read_sp): Rewrite, try each of TARGET_READ_SP,
2753 gdbarch_unwind_sp and SP_REGNUM when looking for the SP register
2754 value.
2755 * d10v-tdep.c (d10v_unwind_sp): Replace d10v_read_sp.
2756 (d10v_gdbarch_init): Set unwind_sp instead of read_sp.
2757
2758 2003-06-08 Andrew Cagney <cagney@redhat.com>
2759
2760 Deprecate BIG_REMOTE_BREAKPOINT, LITTLE_REMOTE_BREAKPOINT and
2761 REMOTE_BREAKPOINT.
2762 * remote.c: Update.
2763 * config/sh/tm-sh.h (DEPRECATED_BIG_REMOTE_BREAKPOINT): Update.
2764 (DEPRECATED_LITTLE_REMOTE_BREAKPOINT): Update.
2765 * config/m68k/tm-sun3.h: Update.
2766 * config/m68k/tm-m68klynx.h: Update.
2767 * config/h8300/tm-h8300.h (DEPRECATED_REMOTE_BREAKPOINT): Update.
2768
2769 * trad-frame.h (struct trad_frame_saved_reg): Rename "struct
2770 trad_frame". Update comments.
2771 * d10v-tdep.c (struct d10v_unwind_cache): Update.
2772 * trad-frame.c (trad_frame_alloc_saved_regs): Update.
2773 (trad_frame_register_value, trad_frame_prev_register): Update.
2774
2775 2003-06-08 Andrew Cagney <cagney@redhat.com>
2776
2777 * acinclude.m4 (gcc_AC_CHECK_DECL, (gcc_AC_CHECK_DECL): Stolen
2778 from GCC's acinclude.m4.
2779 * configure.in: Check for getopt's delcaration.
2780 * aclocal.m4, config.in, configure: Re-generate.
2781 * main.c (error_init): Delete declaration.
2782 * defs.h (error_init): Declare.
2783 * rs6000-tdep.c (rs6000_fetch_pointer_argument): Make static.
2784 (rs6000_convert_from_func_ptr_addr): Make static.
2785 (_initialize_rs6000_tdep): Add declaration.
2786 * cli/cli-cmds.c (dont_repeat): Delete declaration.
2787 (show_commands, set_verbose, show_history): Delete declaration.
2788 * top.h (set_verbose): Add declaration.
2789 (show_history, set_history, show_commands): Add declaration.
2790 (do_restore_instream_cleanup): Add declaration.
2791 * objc-lang.c (specialcmp): Make static.
2792 (print_object_command): Make static.
2793 (find_objc_msgsend): Make static.
2794 (find_objc_msgcall_submethod_helper): Make static.
2795 (find_objc_msgcall_submethod): Make static.
2796 (_initialize_objc_language): Add declaration.
2797 (find_implementation_from_class): Make static.
2798 (find_implementation): Make static.
2799 * objc-exp.y (yylex): Delete lookup_struct_typedef declaration.
2800 * objc-lang.h (lookup_struct_typedef): Add declaration.
2801 * cli/cli-interp.c (_initialize_cli_interp): Add declaration.
2802 * cli/cli-script.c (clear_hook_in_cleanup): Make static.
2803 (do_restore_user_call_depth): Make static.
2804 (do_restore_instream_cleanup): Delete declaration.
2805 (dont_repeat): Delete declaration.
2806 * cli/cli-decode.c (add_abbrev_cmd): Delete function.
2807 * cli/cli-dump.c (_initialize_cli_dump): Add declaration.
2808 * reggroups.c (_initialize_reggroup): Add declaration.
2809 * cp-support.c (_initialize_cp_support): Add declaration.
2810 * cp-abi.c (_initialize_cp_abi): Add declaration.
2811 * hpacc-abi.c (_initialize_hpacc_abi): Add declaration.
2812 * gnu-v3-abi.c (gnuv3_baseclass_offset): Make static.
2813 (_initialize_gnu_v3_abi): Add declaration.
2814 * gnu-v2-abi.c (gnuv2_value_rtti_type): Make static.
2815 (_initialize_gnu_v2_abi): Add declaration.
2816 * frame-base.c (_initialize_frame_base): Add declaration.
2817 * doublest.c (floatformat_from_length): Make static.
2818 * frame-unwind.c (_initialize_frame_unwind): Add declaration.
2819 * frame.c (create_sentinel_frame): Make static.
2820 (_initialize_frame): Add declaration.
2821 * top.c (do_catch_errors): Make static.
2822 (gdb_rl_operate_and_get_next_completion): Make static.
2823 * typeprint.c: Include "typeprint.h".
2824 * sentinel-frame.c (sentinel_frame_prev_register): Make static.
2825 (sentinel_frame_this_id): Make static.
2826 * p-valprint.c (_initialize_pascal_valprint): Add declaration.
2827 * ui-out.c (make_cleanup_ui_out_begin_end): Delete function.
2828 * dwarf2-frame.c (dwarf2_frame_cache): Make static.
2829 * p-exp.y (push_current_type, pop_current_type): ISO C declaration.
2830 * dwarf2expr.h (dwarf_expr_context): ISO C declaration.
2831 * maint.c (maintenance_print_architecture): Make static.
2832 * signals/signals.c (_initialize_signals): Add declaration.
2833 * std-regs.c (_initialize_frame_reg): Add declaration.
2834 * jv-exp.y (push_variable): ISO C definition.
2835 (push_qualified_expression_name): Ditto.
2836 * memattr.c (_initialize_mem): Add declaration.
2837 * remote.c (remote_check_watch_resources): Make static.
2838 (remote_stopped_by_watchpoint): Make static.
2839 (remote_stopped_data_address): Make static.
2840 * d10v-tdep.c (nr_dmap_regs): Make static.
2841 (a0_regnum): Make static.
2842 (d10v_frame_unwind_cache): Make static.
2843 (d10v_frame_p): Make static.
2844 * osabi.c (show_osabi): Make static.
2845 (_initialize_gdb_osabi): Add extern declaration.
2846 * gdbtypes.c (make_qualified_type): Make static.
2847 (safe_parse_type): Make static.
2848 * macrocmd.c (_initialize_macrocmd): Add extern declaration.
2849 * macrotab.c (macro_bcache_free): Make static.
2850 * interps.c (interp_set_quiet): Make static.
2851 (interpreter_exec_cmd): Make static.
2852 * stack.h (select_frame_command): New file.
2853 * stack.c: Include "stack.h".
2854 (select_frame_command_wrapper): Delete function.
2855 (select_frame_command): Make global.
2856 * infcall.c: Include "infcall.h".
2857 * linespec.c: Include "linespec.h".
2858 * symfile.c (sections_overlap): Make static.
2859 * cp-support.h (cp_initialize_namespace): ISO C declaration.
2860 * charset.c (_initialize_charset): Add missing prototype.
2861 * regcache.c (init_legacy_regcache_descr): Make static.
2862 (do_regcache_xfree): Make static.
2863 (regcache_xfer_part): Make static.
2864 (_initialize_regcache): Add missing prototype.
2865 * breakpoint.c (parse_breakpoint_sals): Make static.
2866 (breakpoint_sals_to_pc): Make static.
2867 * interps.h (clear_interpreter_hooks): ISO C declaration.
2868 * Makefile.in (stack_h): Define.
2869 (stack.o, typeprint.o, mi-main.o): Update dependencies.
2870 (mi-cmd-stack.o, infcall.o, linespec.o): Update dependencies.
2871
2872 2003-06-08 Andrew Cagney <cagney@redhat.com>
2873
2874 * Makefile.in (d10v-tdep.o): Update dependencies.
2875 (SFILES): Add trad-frame.c.
2876 (trad_frame_h): Define.
2877 (COMMON_OBS): Add trad-frame.o.
2878 (trad-frame.o): Specify dependencies.
2879 * d10v-tdep.c: Include "trad-frame.h".
2880 (saved_regs_unwinder): Delete function.
2881 (d10v_frame_prev_register): Use trad_frame_prev_register.
2882 (struct d10v_unwind_cache): Change type of "saved_regs" to "struct
2883 trad_frame", delete "regs" and "prev_sp".
2884 (prologue_find_regs): Use trad-frame.
2885 * trad-frame.h, trad-frame.c: New files.
2886
2887 2003-06-08 Mark Kettenis <kettenis@gnu.org>
2888
2889 * dwarf2cfi.c, dwarf2cfi.h: Remove.
2890
2891 2003-06-07 Adam Fedor <fedor@gnu.org>
2892
2893 * gdb/objc-lang.c (FETCH_ARGUMENT): Remove macro.
2894 (OBJC_FETCH_POINTER_ARGUMENT): Shorthand macro for
2895 using FETCH_POINTER_ARGUMENT with Objective-C method arguments.
2896 (find_implementation, resolve_msgsend, resolve_msgsend_stret,
2897 resolve_msgsend_super, resolve_msgsend_super_stret):
2898 Use it.
2899
2900 2003-06-07 Andrew Cagney <cagney@redhat.com>
2901
2902 * symfile.h: Re-indent, clean up comments.
2903
2904 2003-06-07 Andrew Cagney <cagney@redhat.com>
2905
2906 * inferior.h (deprecated_write_sp): Replace
2907 generic_target_write_sp.
2908 * regcache.c (deprecated_write_sp): Replace
2909 generic_target_write_sp.
2910 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2911 * vax-tdep.c (vax_gdbarch_init): Update.
2912 * v850-tdep.c (v850_gdbarch_init): Update.
2913 * sparc-tdep.c (sparc_gdbarch_init): Update.
2914 * sh-tdep.c (sh_gdbarch_init): Update.
2915 * s390-tdep.c (s390_gdbarch_init): Update.
2916 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2917 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2918 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2919 * mcore-tdep.c (mcore_gdbarch_init): Update.
2920 * m68k-tdep.c (m68k_gdbarch_init): Update.
2921 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2922 * ia64-tdep.c (ia64_gdbarch_init): Update.
2923 * h8300-tdep.c (h8300_gdbarch_init): Update.
2924 * frv-tdep.c (frv_gdbarch_init): Update.
2925 * cris-tdep.c (cris_gdbarch_init): Update.
2926 * config/pa/tm-hppa.h (DEPRECATED_DUMMY_WRITE_SP): Update.
2927
2928 2003-06-07 Andrew Cagney <cagney@redhat.com>
2929
2930 * dwarf2-frame.c (dwarf2_frame_cache): Add comments on PC_REGNUM.
2931 Assert that PC_REGNUM is valid.
2932 (dwarf2_frame_prev_register): Add comments on SP_REGNUM.
2933
2934 2003-06-07 Andrew Cagney <cagney@redhat.com>
2935
2936 * gdbarch.sh (TARGET_READ_SP): Add predicate, delete default.
2937 * gdbarch.h, gdbarch.c: Regenerate.
2938 * mn10300-tdep.c: Include "gdb_assert.h".
2939 (mn10300_read_fp): New function.
2940 (mn10300_gdbarch_init): Set deprecated_target_read_fp to
2941 mn10300_read_fp. Do not set read_sp to generic_target_read_sp.
2942 * ia64-tdep.c: Include "gdb_assert.h".
2943 (ia64_read_fp): New function.
2944 (ia64_gdbarch_init): Set deprecated_target_read_fp to
2945 ia64_read_sp. Do not set read_sp to generic_target_read_sp.
2946 * regcache.c (generic_target_read_sp): Delete function.
2947 (read_sp): Try TARGET_READ_SP and SP_REGNUM for the SP register.
2948 * inferior.h (generic_target_read_sp): Delete declaration.
2949 * frv-tdep.c (frv_gdbarch_init): Do not set read_sp to
2950 generic_target_read_sp.
2951 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2952 * sparc-tdep.c (sparc_gdbarch_init): Ditto
2953 * sh-tdep.c (sh_gdbarch_init): Ditto.
2954 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
2955 * Makefile.in (mn10300-tdep.o, ia64-tdep.o): Update dependencies.
2956
2957 2003-06-07 Andrew Cagney <cagney@redhat.com>
2958
2959 * gdbarch.sh: Comment each field of startup_gdbarch.
2960 * gdbarch.h, gdbarch.c: Re-generate.
2961
2962 2003-06-07 Andrew Cagney <cagney@redhat.com>
2963
2964 * gdbarch.sh (TARGET_READ_PC): Add predicate, remove default.
2965 * gdbarch.h, gdbarch.c: Re-generate.
2966 * regcache.c: Update comments on read_pc et.al.
2967 (generic_target_read_pc): Delete function.
2968 (read_pc_pid): Try TARGET_READ_PC and PC_REGNUM for a PC register.
2969 * inferior.h (generic_target_read_pc): Delete declaration.
2970 * frv-tdep.c (frv_gdbarch_init): Do not set read_pc to
2971 generic_target_read_pc.
2972 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
2973 * sh-tdep.c (sh_gdbarch_init): Ditto.
2974 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
2975 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2976
2977 2003-06-07 Andrew Cagney <cagney@redhat.com>
2978
2979 * elfread.c (elf_symtab_read): Replace "special_local_sym_p" and
2980 "index" with "special_local_sect". Use strcmp instead of STREQ.
2981 Append period to coments.
2982
2983 2003-06-06 Mark Mitchell <mark@codesourcery.com>
2984
2985 * elfread.c (elf_symtab_read): Avoid use of SECT_OFF_MAX.
2986 (elfstab_offset_sections): Likewise.
2987 * gdb-stabs.h (stab_section_info): Likewise.
2988 * i386-interix-tdep.c (pei_adjust_objfile_offsets): Likewise.
2989 * objfiles.c (objfile_relocate): Likewise.
2990 * pa64solib.c (pa64_solib_add_solib_objfile): Likewise.
2991 * remote.c (get_offsets): Likewise.
2992 (remote_cisco_objfile_relocate): Likewise.
2993 * somread.c (som_symfile_offsets): Likewise.
2994 * symfile.c (alloc_section_addr_info): New function.
2995 (build_section_addr_info_from_section_tab): Use it.
2996 (free_section_addr_info): Adjust.
2997 (default_symfile_offsets): Avoid use of SECT_OFF_MAX.
2998 (syms_from_objfile): Allocate local_addr dynamically.
2999 (symbol_file_add_with_addrs_or_offsets): Allocate orig_addrs
3000 dynamically.
3001 (add_symbol_file_command): Allocate sect_opts dynamically.
3002 (reread_symbols): Avoid use of SECT_OFF_MAX.
3003 * symfile.h (section_addr_info): Do not use MAX_SECTIONS.
3004 (alloc_section_addr_info): Declare it.
3005 * symtab.h (SIZEOF_SECTION_OFFSETS): Remove.
3006 * win32-nat.c (solib_symbols_add): Allocate section_addrs
3007 dynamically.
3008 * xcoffread.c (xcoff_symfile_offsets): Avoid use of SECT_OFF_MAX.
3009
3010 2003-06-06 Andrew Cagney <cagney@redhat.com>
3011
3012 * d10v-tdep.c (struct d10v_unwind_cache): Delete "return_pc".
3013 (d10v_frame_unwind_cache): Do not set "return_pc".
3014
3015 2003-06-06 Michael Snyder <msnyder@redhat.com>
3016
3017 * h8300-tdep.c: Make tidy (long lines).
3018
3019 2003-06-06 Michal Ludvig <mludvig@suse.cz>
3020
3021 * x86-64-tdep.c (x86_64_fill_fxsave): Pass correct regnums
3022 to regcache_collect().
3023
3024 2003-06-05 J. Brobecker <brobecker@gnat.com>
3025
3026 * hppa-hpux-tdep.c (hppa_hpux_init_abi): New function, setting
3027 pc_in_sigtramp multiarch method.
3028 (hppa_hpux_som_init_abi): Use it.
3029 (hppa_hpux_elf_init_abi): Likewise.
3030 * config/pa/tm-hppah.h (PC_IN_SIGTRAMP): Remove, now that this
3031 macro has been multiarched.
3032 * config/pa/tm-hppa64.h (PC_IN_SIGTRAMP): Temporarily set this
3033 macro here, as hppa64 isn't multiarched yet.
3034
3035 2003-06-05 Andrew Cagney <cagney@redhat.com>
3036
3037 * Makefile.in (value_h): Add $(frame_h).
3038 * value.h: Include "frame.h".
3039 (struct value): Replace "frame_addr" with "frame_id".
3040 (VALUE_FRAME_ID): Replace VALUE_FRAME.
3041 * values.c (allocate_value): Use VALUE_FRAME_ID.
3042 (value_copy): Use VALUE_FRAME_ID.
3043 * findvar.c (value_from_register): Use VALUE_FRAME_ID.
3044 * valops.c (value_assign): Update. Use frame_find_by_id.
3045
3046 2003-06-05 Michal Ludvig <mludvig@suse.cz>
3047
3048 * x86-64-tdep.c (x86_64_push_arguments): Don't clear offset
3049 in each pass.
3050
3051 2003-06-05 Jeff Johnston <jjohnstn@redhat.com>
3052
3053 * thread-db.c (check_event): For create/death event breakpoints,
3054 loop through all messages to ensure that we read the message
3055 corresponding to the breakpoint we are at.
3056
3057 2003-06-04 Michael Snyder <msnyder@redhat.com>
3058
3059 * h8300-tdep.c (h8300_gdbarch_init): Add h8300hn, h8300sn.
3060
3061 2003-06-04 Mark Kettenis <kettenis@gnu.org>
3062
3063 * dwarf2-frame.c (struct comp_unit): Add member `dbase'.
3064 (read_encoded_value): Handle DW_EH_PE_datarel encoding.
3065 (dwarf2_build_frame_info): Set base for DW_EH_PE_datarel encodings
3066 when handling .eh_frame sections.
3067
3068 2003-06-04 J. Brobecker <brobecker@gnat.com>
3069
3070 * config/pa/nm-hppah.h (PREPARE_TO_PROCEED): Use the generic
3071 prepare_to_proceed procedure instead of the hppa-specific one.
3072 * hppa-tdep.c (hppa_prepare_to_proceed): Remove, no longer used.
3073
3074 2003-06-04 Jeff Johnston <jjohnstn@redhat.com>
3075
3076 * acconfig.h: Add HAVE_TKILL_SYSCALL definition check.
3077 * config.in: Regenerated.
3078 * configure.in: Add test for syscall function and check for
3079 __NR_tkill macro in <syscall.h> to set HAVE_TKILL_SYSCALL.
3080 * configure: Regenerated.
3081 * lin-lwp.c [HAVE_TKILL_SYSCALL]: Include <unistd.h> and
3082 <sys/syscall.h>.
3083 (kill_lwp): New function that uses tkill syscall or
3084 uses kill, depending on whether threading model is nptl or not.
3085 All callers of kill() changed to use kill_lwp().
3086 (lin_lwp_wait): Make special check when WIFEXITED occurs to
3087 see if all threads have already exited in the nptl model.
3088 (stop_and_resume_callback): New callback function used by the
3089 lin_lwp_wait thread exit handling code.
3090 (stop_wait_callback): Check for threads already having exited and
3091 delete such threads fromt the lwp list when discovered.
3092 (stop_callback): Don't assert retcode of kill call.
3093
3094 Roland McGrath <roland@redhat.com>
3095 * i386-linux-nat.c (ps_get_thread_area): New function needed by
3096 nptl libthread_db.
3097
3098 2003-06-03 Richard Henderson <rth@redhat.com>
3099
3100 * alpha-tdep.c (alpha_next_pc): Use alpha_read_insn.
3101 (alpha_sigtramp_frame_this_id): Use get_frame_memory.
3102 (alpha_sigtramp_frame_prev_register): Likewise.
3103 (alpha_heuristic_frame_prev_register): Likewise.
3104 * alpha-mdebug-tdep.c (alpha_mdebug_frame_prev_register): Likewise.
3105
3106 * alpha-mdebug-tdep.c (alpha_mdebug_after_prologue): Use
3107 alpha-specific register id names.
3108 (alpha_mdebug_frame_unwind_cache): Likewise.
3109 (alpha_mdebug_frame_prev_register): Likewise.
3110
3111 2003-06-03 Richard Henderson <rth@redhat.com>
3112
3113 * alpha-tdep.c (alpha_dwarf2_init_abi): New.
3114 * alpha-tdep.h (alpha_dwarf2_init_abi): Declare it.
3115 * alpha-linux-tdep.c (alpha_linux_init_abi): Use it.
3116 * alphafbsd-tdep.c (alphafbsd_init_abi): Register dwarf2 and mdebug
3117 unwind routines.
3118 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
3119 * config/alpha/fbsd.mt (TDEPFILES): Add alpha-mdebug-tdep.o.
3120 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
3121
3122 * alpha-linux-tdep.c: Remove unnecessary includes.
3123 * Makefile.in (alpha-linux-tdep.o): Update.
3124
3125 2003-06-03 Richard Henderson <rth@redhat.com>
3126
3127 * alphabsd-tdep.c (alphabsd_supply_fpreg): Fix typo last change.
3128 (alphabsd_fill_fpreg): Likewise.
3129
3130 2003-06-03 J. Brobecker <brobecker@gnat.com>
3131
3132 * alphanbsd-tdep.c (alphanbsd_sigcontext_addr): Replace
3133 references to struct frame_info fields by calls to the equivalent
3134 accessors. Necessary now that frame_info is opaque.
3135
3136 2003-06-03 J. Brobecker <brobecker@gnat.com>
3137
3138 * alphanbsd-tdep.c (alphanbsd_skip_sigtramp_frame): Delete.
3139 (alphanbsd_init_abi): Do not set skip_sigtramp_frame in tdep
3140 structure, field no longer exists.
3141
3142 2003-06-03 J. Brobecker <brobecker@gnat.com>
3143
3144 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-mdebug-tdep.o.
3145 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Enable the mdebug module.
3146
3147 2003-06-03 J. Brobecker <brobecker@gnat.com>
3148
3149 * alpha-osf1-tdep.c (alpha_osf1_sigcontext_addr): Replace
3150 references to struct frame_info fields by calls to the equivalent
3151 accessors. Necessary now that frame_info is opaque.
3152
3153 2003-06-03 J. Brobecker <brobecker@gnat.com>
3154
3155 * alpha-osf1-tdep.c (alpha_osf1_skip_sigtramp_frame): Delete.
3156 (alpha_osf1_init_abi): Do not set skip_sigtramp_frame in tdep
3157 structure, field no longer exists.
3158
3159 2003-06-03 Theodore A. Roth <troth@openavr.org>
3160
3161 * remote.c (init_remote_state): Compute sizeof_g_packet by
3162 accumulation of the size of all registers instead of blindly using
3163 DEPRECATED_REGISTER_BYTES.
3164
3165 2003-06-03 Michael Snyder <msnyder@redhat.com>
3166
3167 * config/h8300/tm-h8300.h (h8300sxmode): Declare.
3168 * h8300-tdep.c (h8300_gdbarch_init): Set machine mode
3169 for h8300sx.
3170
3171 2003-06-03 J. Brobecker <brobecker@gnat.com>
3172
3173 * alpha-osf1-tdep.c (objfiles.h): #include, needed for symfile_objfile.
3174 * Makefile.in (alpha-osf1-tdep.o): Update dependencies.
3175
3176 2003-06-03 Andrew Cagney <cagney@redhat.com>
3177
3178 * sparc-tdep.c (sparc_convert_to_virtual): Delete function.
3179 (sparc_convert_to_raw): Delete function.
3180 (sparc_gdbarch_init): Do not set register_convert_to_raw or
3181 register_convert_to_virtual.
3182
3183 2003-06-03 Jeff Johnston <jjohnstn@redhat.com>
3184
3185 * thread-db.c (thread_db_mourn_inferior): Unpush thread target
3186 layer if not dealing with a statically-linked threaded program.
3187
3188 2003-06-03 Kris Warkentin <kewarken@qnx.com>
3189
3190 * solib.c (solib_open): Update comment to reflect actual search order.
3191
3192 2003-06-03 Andrew Cagney <cagney@redhat.com>
3193
3194 * frame.c (get_frame_memory_signed): New function.
3195 (get_frame_memory, get_frame_memory_unsigned): New function.
3196 (get_frame_arch): New function.
3197 * frame.h (get_frame_signed_memory, get_frame_arch): Declare.
3198 (get_frame_memory, get_frame_unsigned_memory): Declare.
3199 * d10v-tdep.c (d10v_frame_unwind_cache): Use
3200 get_frame_memory_unsigned and get_frame_arch.
3201 (d10v_frame_unwind_cache, saved_regs_unwinder): Ditto.
3202
3203 2003-06-03 Raoul Gough <RaoulGough@yahoo.co.uk>
3204
3205 * MAINTAINERS (write after approval): Add myself.
3206
3207 2003-06-03 Jim Blandy <jimb@redhat.com>
3208
3209 * s390-nat.c (supply_gregset, fill_gregset): On the s390x, the
3210 elements of gregset_t are 64 bits each, but access registers
3211 are still 32 bits, so they're packed two per gregset_t
3212 element. Unpack/pack them properly.
3213
3214 2003-06-02 David Carlton <carlton@bactrian.org>
3215
3216 * linespec.c (find_methods): Break out code into
3217 add_matching_methods and add_constructors.
3218 (add_matching_methods): New.
3219 (add_constructors): Ditto.
3220
3221 2003-06-02 Andrew Cagney <cagney@redhat.com>
3222
3223 * sparc-tdep.c (sparc_print_registers): Delete call to
3224 REGISTER_CONVERTIBLE.
3225 (sparc_gdbarch_init): Do not set register_convertible.
3226 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
3227 * frv-tdep.c (frv_gdbarch_init): Ditto.
3228 * cris-tdep.c (cris_gdbarch_init): Ditto.
3229
3230 2003-06-02 Elena Zannoni <ezannoni@redhat.com>
3231
3232 * target.h (TARGET_SYMFILE_POSTREAD): Delete unused macro.
3233 * symfile.c (reread_symbols): Delete call to TARGET_SYMFILE_POSTREAD.
3234 (syms_from_objfile): Ditto.
3235
3236 2003-06-03 Andreas Schwab <schwab@suse.de>
3237
3238 * m68k-tdep.c (m68k_gdbarch_init): Use set_gdbarch_print_insn ...
3239 (_initialize_m68k_tdep): ... instead of deprecated_tm_print_insn.
3240
3241 2003-06-02 Richard Henderson <rth@redhat.com>
3242
3243 * alpha-tdep.c (alpha_register_reggroup_p): Zero is only
3244 a member of all_reggroup.
3245
3246 2003-06-02 Richard Henderson <rth@redhat.com>
3247
3248 * alpha-tdep.c (alpha_register_type): Change from _virtual_type.
3249 (alpha_convert_flt_dbl, alpha_convert_dbl_flt): Remove.
3250 (alpha_lds, alpha_sts): New.
3251 (alpha_convert_register_p): Change from _register_convertible.
3252 (alpha_register_to_value): Change from _convert_to_virtual;
3253 restructure and fail for type sizes other than 4 or 8.
3254 (alpha_value_to_register): Similarly.
3255 (alpha_extract_return_value): Use alpha_sts.
3256 (alpha_store_return_value): Use alpha_lds.
3257 (alpha_gdbarch_init): Update hooks.
3258
3259 2003-06-02 Richard Henderson <rth@redhat.com>
3260
3261 * alpha-tdep.c (alpha_register_virtual_type): Use alpha-specific
3262 regnum identifiers.
3263 (alpha_sigtramp_register_address): Likewise.
3264
3265 2003-06-02 Richard Henderson <rth@redhat.com>
3266
3267 * alpha-tdep.c (alpha_supply_int_regs, alpha_fill_int_regs): New.
3268 (alpha_supply_fp_regs, alpha_fill_fp_regs): New.
3269 * alpha-tdep.h: Declare them.
3270
3271 * alpha-nat.c (fetch_osf_core_registers): Constify core_reg_mapping.
3272 Remove zerobuf. Don't error on UNIQUE.
3273 (fetch_elf_core_registers): Use alpha_supply_{int,fp}_regs.
3274 (ALPHA_REGSET_UNIQUE): Provide default.
3275 (supply_gregset): Use alpha_supply_int_regs.
3276 (fill_gregset): Use alpha_fill_int_regs.
3277 (supply_fpregset): Use alpha_supply_fp_regs.
3278 (fill_fpregset): Use alpha_fill_fp_regs.
3279 * alphabsd-tdep.c (NUM_GREGS, NUM_FPREGS): Remove.
3280 (alphabsd_supply_reg): Use alpha_supply_int_regs.
3281 (alphabsd_fill_reg): Use alpha_fill_int_regs.
3282 (alphabsd_supply_fpreg): Use alpha_supply_fp_regs.
3283 (alphabsd_fill_fpreg): Use alpha_fill_fp_regs.
3284 * config/alpha/nm-linux.h (ALPHA_REGSET_UNIQUE): New.
3285
3286 2003-06-02 Richard Henderson <rth@redhat.com>
3287
3288 * alpha-tdep.c (alpha_store_return_value): Avoid switch fallthru.
3289
3290 * alpha-tdep.c (alpha_extract_return_value): Use internal_error.
3291 (alpha_store_return_value): Likewise.
3292
3293 2003-06-02 David Carlton <carlton@math.stanford.edu>
3294
3295 * block.c (contained_in): Add 'const' to arguments.
3296 (block_function): Ditto.
3297 * block.h: Update declarations for block_function and
3298 contained_in.
3299
3300 2003-06-02 David Carlton <carlton@math.stanford.edu>
3301
3302 * objc-lang.c (find_imps): Delete unneeded variable 'sym_symtab'.
3303 * c-valprint.c (c_val_print): Delete unneeded variable 's'.
3304 * p-valprint.c (pascal_val_print): Ditto.
3305 * ada-lang.c (standard_lookup): Delete unneded variable 'symtab'.
3306
3307 2003-06-02 Richard Henderson <rth@redhat.com>
3308
3309 * alpha-tdep.c (alpha_push_dummy_call): Use
3310 builtin_type_ieee_double_little instead of builtin_type_double.
3311
3312 * alpha-tdep.c (alpha_push_dummy_call): Handle ABI mandated
3313 sign-extension of 32-bit values.
3314 (alpha_store_return_value): Similarly.
3315
3316 * alpha-tdep.c (alpha_push_dummy_call): Handle COMPLEX types.
3317 (alpha_extract_return_value): Likewise.
3318 (alpha_store_return_value): Likewise.
3319
3320 * alpha-tdep.c (alpha_extract_return_value): Handle IEEE Quad floats.
3321 (alpha_store_return_value): Error on IEEE Quad floats.
3322
3323 * alpha-tdep.c (alpha_extract_return_value): Convert to regcache.
3324 (alpha_extract_struct_value_address): Likewise.
3325 (alpha_store_return_value): Likewise.
3326 (alpha_store_struct_return): Remove.
3327 (alpha_gdbarch_init): Update hook registration to match.
3328
3329 * alpha-tdep.c (alpha_register_convert_to_virtual): Tidy use of
3330 deprecated interfaces; use ALPHA_REGISTER_SIZE instead of gdbarch
3331 macros where appropriate.
3332 (alpha_register_convert_to_raw): Similarly. Use unpack_long.
3333 (alpha_convert_flt_dbl, alpha_convert_dbl_flt): New.
3334
3335 * alpha-tdep.c (alpha_register_virtual_type): Use void_data_ptr
3336 for SP, GP; void_func_ptr for PC; non-language-specific types
3337 for all others.
3338 * alpha-tdep.h (ALPHA_GP_REGNUM): New.
3339
3340 2003-06-02 Richard Henderson <rth@redhat.com>
3341
3342 * top.h (lim_at_start): Declare.
3343 * main.c (captured_main): Set it.
3344 * top.c (lim_at_start): Define.
3345 (command_loop): Use it instead of &environ.
3346 * event-top.c (command_handler): Likewise.
3347
3348 2003-06-01 Jason Thorpe <thorpej@wasabisystems.com>
3349
3350 * mipsnbsd-tdep.c: Update copyright years.
3351 (fetch_core_registers): Correct arguments to mipsnbsd_supply_fpreg.
3352
3353 2003-06-01 Richard Henderson <rth@redhat.com>
3354
3355 * Makefile.in (ALLDEPFILES): Add alpha-mdebug-tdep.c.
3356 (alpha-linux-tdep.o): Update dependencies.
3357 (alpha-nat.o, alpha-tdep.o, alpha-mdebug-tdep.o): Likewise.
3358 * alpha-mdebug-tdep.c: Remove unneeded includes.
3359
3360 2003-06-01 Richard Henderson <rth@redhat.com>
3361
3362 * alpha-tdep.c (alpha_register_reggroup_p): New.
3363 (alpha_gdbarch_init): Register it.
3364
3365 2003-06-02 Andrew Cagney <cagney@redhat.com>
3366
3367 * dwarfread.c: Eliminate "register"
3368 (decode_die_type): Eliminate assignment within "if".
3369 (struct_type, decode_array_element_type): Ditto.
3370 (dwarf_read_array_type, read_tag_pointer_type): Ditto.
3371 (read_subroutine_type, enum_type, add_enum_psymbol): Ditto.
3372 (decode_modified_type, completedieinfo): Ditto.
3373 * block.c: Eliminate "register".
3374 (blockvector_for_pc_sect): Eliminate assignment within "if".
3375 * cp-support.h (struct symbol): Opaque declaration.
3376 * breakpoint.c (handle_gnu_v3_exceptions): Use xfree, not free.
3377
3378 2003-06-01 Richard Henderson <rth@redhat.com>
3379
3380 * alpha-tdep.c (alpha_gdbarch_init): Use set_gdbarch_print_insn ...
3381 (_initialize_alpha_tdep): ... not deprecated_tm_print_insn.
3382
3383 2003-06-01 Adam Fedor <fedor@gnu.org>
3384
3385 * gdbarch.sh (function_list): Add FETCH_POINTER_ARGUMENT.
3386 * gdbarch.[ch]: Regenerate.
3387 * hppa-tdep.c (hppa_fetch_pointer_argument): New function.
3388 (hppa_gdbarch_init): Set it in the gdbarch vector.
3389 * i386-tdep.c (i386_fetch_pointer_argument): New
3390 (i386_gdbarch_init): Set it into gdbarch.
3391 * rs6000-tdep.c (rs6000_fetch_pointer_argument): New.
3392 (rs6000_gdbarch_init): Set it in gdbarch.
3393 * sparc-tdep.c (sparc_fetch_pointer_argument): New
3394 (sparc_gdbarch_init): Set it in gdbarch.
3395
3396 2003-06-01 Andrew Cagney <cagney@redhat.com>
3397
3398 * defs.h (extract_address): Delete declaration.
3399 * findvar.c (extract_address): Delete function.
3400 * xstormy16-tdep.c (xstormy16_extract_return_value): Replace
3401 extract_address with the inline equivalent,
3402 extract_unsigned_integer.
3403 (xstormy16_extract_struct_value_address): Ditto.
3404 (xstormy16_pointer_to_address): Ditto.
3405 * vax-tdep.c (vax_extract_struct_value_address): Ditto.
3406 * v850-tdep.c (v850_push_arguments): Ditto.
3407 (v850_extract_return_value): Ditto.
3408 (v850_extract_struct_value_address): Ditto.
3409 * sparcnbsd-tdep.c (sparcnbsd_get_longjmp_target_32): Ditto.
3410 (sparcnbsd_get_longjmp_target_64): Ditto.
3411 * sparc-tdep.c (sparc_frame_saved_pc): Ditto.
3412 (get_longjmp_target): Ditto.
3413 * sh-tdep.c (sh_extract_struct_value_address): Ditto.
3414 (sh64_extract_struct_value_address): Ditto.
3415 (sh_push_arguments): Ditto.
3416 (sh64_push_arguments): Ditto.
3417 * remote-vxsparc.c (vx_read_register): Ditto.
3418 * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Ditto.
3419 * ns32k-tdep.c (ns32k_extract_struct_value_address): Ditto.
3420 * mn10300-tdep.c (mn10300_extract_struct_value_address): Ditto.
3421 * mipsv4-nat.c (get_longjmp_target): Ditto.
3422 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Ditto.
3423 * mips-nat.c (get_longjmp_target): Ditto.
3424 * mips-linux-tdep.c (mips_linux_get_longjmp_target): Ditto.
3425 * mcore-tdep.c (mcore_extract_struct_value_address): Ditto.
3426 * m68k-tdep.c (m68k_get_longjmp_target): Ditto.
3427 * m68hc11-tdep.c (m68hc11_extract_struct_value_address): Ditto.
3428 * irix5-nat.c (get_longjmp_target): Ditto.
3429 * irix4-nat.c (get_longjmp_target): Ditto.
3430 * ia64-tdep.c (generic_elf_find_global_pointer): Ditto.
3431 (ia64_push_arguments): Ditto.
3432 * hpux-thread.c (hpux_thread_store_registers): Ditto.
3433 * h8300-tdep.c (h8300_push_arguments): Ditto.
3434 (h8300_store_return_value): Ditto.
3435 (h8300_extract_struct_value_address): Ditto.
3436 * frv-tdep.c (frv_extract_struct_value_address): Ditto.
3437 (frv_push_arguments): Ditto.
3438 * avr-tdep.c (avr_pointer_to_address): Ditto.
3439 (avr_push_arguments): Ditto.
3440 * arm-tdep.c (arm_push_dummy_call): Ditto.
3441 (arm_get_longjmp_target): Ditto.
3442 * arm-linux-tdep.c (arm_linux_push_arguments): Ditto.
3443 * alpha-tdep.c (alpha_extract_struct_value_address): Ditto.
3444 (alpha_get_longjmp_target): Ditto.
3445
3446 * solib-irix.c (extract_mips_address): Inline extract_address,
3447 replacing it with extract_signed_integer.
3448 * solib-svr4.c (SOLIB_EXTRACT_ADDRESS): Ditto.
3449 (LM_NAME, IGNORE_FIRST_LINK_MAP_ENTRY): Ditto.
3450 (first_link_map_member, open_symbol_file_object): Ditto.
3451 (svr4_fetch_objfile_link_map, svr4_fetch_objfile_link_map): Ditto.
3452 * solib-sunos.c (SOLIB_EXTRACT_ADDRESS): Ditto.
3453 (LM_NEXT, LM_NAME): Ditto.
3454
3455 2003-06-01 Richard Henderson <rth@redhat.com>
3456
3457 * alpha-tdep.h (ALPHA_FP_REGNUM): Remove.
3458 * alpha-tdep.c (alpha_register_name): Remove vfp entry.
3459 (alpha_cannot_fetch_register): Remove ALPHA_FP_REGNUM.
3460 (alpha_cannot_store_register): Likewise.
3461 * alphabsd-nat.c (fetch_inferior_registers): Don't set FP_REGNUM.
3462 * alpha-nat.c (supply_gregset): Likewise.
3463 * alphanbsd-tdep.c (fetch_core_registers): Likewise.
3464
3465 2003-06-01 Andrew Cagney <cagney@redhat.com>
3466
3467 * infcall.c (call_function_by_hand): Update comment on
3468 DEPRECATED_DUMMY_WRITE_SP.
3469
3470 * mips-tdep.c (mips_gdbarch_init): Do not set
3471 deprecated_dummy_write_sp.
3472 (mips_eabi_push_dummy_call): Set the SP register.
3473 (mips_o64_push_dummy_call): Set the SP register.
3474 (mips_o32_push_dummy_call): Set the SP register.
3475 (mips_n32n64_push_dummy_call): Set the SP register.
3476
3477 2003-06-01 Richard Henderson <rth@redhat.com>
3478
3479 * alpha-nat.c (fetch_osf_core_registers): Use ALPHA_REGISTER_SIZE
3480 instead of ALPHA_MAX_REGISTER_RAW_SIZE.
3481 (supply_gregset): Likewise.
3482 * alpha-tdep.c (alpha_store_return_value): Likewise.
3483 (alpha_get_longjmp_target): Likewise.
3484 (alpha_register_name): Constify array.
3485 (alpha_gdbarch_init): Remove deprecated_fp_regnum,
3486 deprecated_register_size, deprecated_register_bytes,
3487 deprecated_max_register_raw_size, deprecated_max_register_virtual_size.
3488 * alpha-tdep.h (ALPHA_MAX_REGISTER_RAW_SIZE): Remove.
3489 (ALPHA_MAX_REGISTER_VIRTUAL_SIZE): Remove.
3490
3491 2003-06-01 Richard Henderson <rth@redhat.com>
3492
3493 * alpha-tdep.c (alpha_push_dummy_call): Store sp. Tidy copies
3494 from arg_reg_buffer to regcache to avoid double conversion.
3495
3496 2003-06-01 Mark Kettenis <kettenis@gnu.org>
3497
3498 * i386-linux-nat.c (child_resume): Use I386_ESP_REGNUM instead of
3499 SP_REGNUM.
3500 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Likewise.
3501 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Likewise.
3502
3503 2003-06-01 Richard Henderson <rth@redhat.com>
3504
3505 * dwarf2-frame.c (struct dwarf2_cie): Add saw_z_augmentation.
3506 (decode_frame_entry): Set it. Skip FDE augmentation.
3507
3508 2003-06-01 Richard Henderson <rth@redhat.com>
3509
3510 * dwarf2-frame.c (dwarf2_frame_cache): Handle retaddr_column
3511 not overlapping PC_REGNUM.
3512
3513 2003-06-01 Richard Henderson <rth@redhat.com>
3514
3515 * alpha-tdep.c (alpha_push_dummy_call): Transmography from
3516 alpha_push_arguments. Don't dump argument register data to
3517 the target stack. Fix float and 128-bit long double semantics.
3518 Store $t12 and $ra as specified by the ABI. Use regcache everywhere.
3519 (alpha_fix_call_dummy): Remove.
3520 (alpha_call_dummy_words): Remove.
3521 (alpha_gdbarch_init): Kill deprecated call hooks; add push_dummy_call.
3522
3523 2003-06-01 Richard Henderson <rth@redhat.com>
3524
3525 * alpha-linux-tdep.c (alpha_linux_init_abi): Install dwarf2 unwinder.
3526
3527 2003-06-01 Andrew Cagney <cagney@redhat.com>
3528
3529 * mips-tdep.c (is_mips16_addr): New function.
3530 (make_mips16_addr, unmake_mips16_addr): New functions.
3531 (pc_is_mips16, mips_fetch_instruction): Use.
3532 (gdb_print_insn_mips, mips_breakpoint_from_pc): Use.
3533 (gdb_print_insn_mips): Eliminate TM_PRINT_INSN_MACH.
3534 (mips_dump_tdep): Delete print of TM_PRINT_INSN_MACH,
3535 UNMAKE_MIPS16_ADDR, MAKE_MIPS16_ADDR, IS_MIPS16_ADDR and
3536 TARGET_MIPS.
3537 * config/mips/tm-mips.h: Update copyright.
3538 (TARGET_MIPS, TM_PRINT_INSN_MACH): Delete.
3539 (DEPRECATED_REGISTER_SIZE, DEPRECATED_REGISTER_BYTES): Delete.
3540 (IS_MIPS16_ADDR, MAKE_MIPS16_ADDR, UNMAKE_MIPS16_ADDR): Delete.
3541 * config/mips/tm-irix6.h (DEPRECATED_REGISTER_BYTES): Delete.
3542 (TM_PRINT_INSN_MACH): Delete.
3543 * config/mips/tm-irix5.h (DEPRECATED_REGISTER_BYTES): Delete.
3544
3545 * configure.tgt: Replace mips64*vr4xxx*el-*-elf*,
3546 mips64*vr4xxx*-*-elf*, mips64*vr4300*el-*-elf*,
3547 mips64*vr4300*-*-elf*, mips64*vr4100*el-*-elf*,
3548 mips64*vr4100*-*-elf*, mips64*vr5000*el-*-elf*, and
3549 mips64*vr5000*-*-elf* with mips64 mips64*vr*-*-elf*. Delete
3550 mips*tx39*el*-elf*. Map mips*-sony-* and mips64*-big-* onto
3551 mips64. Map mips*-dec-*, mips*-big-*, mips*-little-*,
3552 mips*-*-riscos* and mips*-*-sysv* onto mips.
3553 * config/mips/mips64.mt: New file.
3554 * config/mips/mips.mt: New file.
3555 * config/mips/littlemips.mt: Delete file.
3556 * config/mips/decstation.mt: Delete file.
3557 * config/mips/vr4300el.mt: Delete file.
3558 * config/mips/vr5000el.mt: Delete file.
3559 * config/mips/vr5000.mt: Delete file.
3560 * config/mips/vr4100.mt: Delete file.
3561 * config/mips/vr4xxxel.mt: Delete file.
3562 * config/mips/vr4300.mt: Delete file.
3563 * config/mips/vr4xxx.mt: Delete file.
3564 * config/mips/bigmips.mt: Delete file.
3565 * config/mips/bigmips64.mt: Delete file.
3566 * config/mips/tx39l.mt (TM_FILE): Set to "tm-tx39.h".
3567 * config/mips/embedl64.mt (TM_FILE): Set to "tm-mips64.h".
3568 * config/mips/embed64.mt (TM_FILE): Set to "tm-mips64.h"
3569 * config/mips/embedl.mt (TM_FILE): Set to "tm-mips.h".
3570 * config/mips/tm-tx39.h: Include "tm-mips.h" instead of
3571 "tm-bigmips.h".
3572 * config/mips/tm-irix3.h: Ditto.
3573 * config/mips/tm-mipsv4.h: Ditto.
3574 * config/mips/tm-embed.h: Ditto.
3575 * config/mips/tm-irix6.h: Include "tm-mips64.h" instead of
3576 "tm-bigmips64.h".
3577 * config/mips/tm-vr5000el.h: Delete file.
3578 * config/mips/tm-tx39l.h: Delete file.
3579 * config/mips/tm-vr4300el.h: Delete file.
3580 * config/mips/tm-vr4xxxel.h: Delete file.
3581 * config/mips/tm-vr4300.h: Delete file.
3582 * config/mips/tm-vr4100.h: Delete file.
3583 * config/mips/tm-vr4xxx.h: Delete file.
3584 * config/mips/tm-vr5000.h: Delete file.
3585 * config/mips/tm-embedl64.h: Delete file.
3586 * config/mips/tm-embedl.h: Delete file.
3587 * config/mips/tm-embed64.h: Delete file.
3588 * config/mips/tm-bigmips64.h: Delete file.
3589 * config/mips/tm-bigmips.h: Delete file.
3590
3591 2003-06-01 Mark Kettenis <kettenis@gnu.org>
3592
3593 Fix gdb/1216.
3594 * shnbsd-nat.c: Include "sh-tdep.h".
3595
3596 From Richard Henderson <rth@redhat.com>:
3597 * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Fix ptr arithmetic.
3598
3599 2003-05-31 Andrew Cagney <cagney@redhat.com>
3600
3601 * mips-tdep.c (set_reg_offset): Add saved_regs parameter. Add
3602 forward declaration.
3603 (mips16_heuristic_proc_desc): Pass temp_saved_regs.
3604 (mips16_heuristic_proc_desc): Pass temp_saved_regs.
3605 (mips_find_saved_regs): Use set_reg_offset.
3606 (mips_frame_init_saved_regs): Delete function.
3607 (mips_pop_frame): Call mips_find_saved_regs instead of
3608 DEPRECATED_FRAME_INIT_SAVED_REGS.
3609
3610 2003-05-31 Andrew Cagney <cagney@redhat.com>
3611
3612 * mips-tdep.c (mips_gdbarch_init): Do not set
3613 deprecated_max_register_raw_size, register_virtual_size, and
3614 deprecated_max_register_virtual_size.
3615
3616 2003-05-31 Mark Kettenis <kettenis@gnu.org>
3617
3618 * i386-tdep.c: Include "dwarf2-frame.h".
3619 (i386_gdbarch_init): Hook in the DWARF CFI frame unwinder.
3620 * Makefile.in (i386-tdep.o): Update dependencies.
3621
3622 * dwarf2-frame.c, dwarf2-frame.h: New files.
3623 * Makefile.in (SFILES): Add dwarf2-frame.c.
3624 (dwarf2_frame_h): Define.
3625 (COMMON_OBS): Add dwarf2-frame.o.
3626 (dwarf2-frame.o): Add dependencies.
3627
3628 2003-05-31 Andreas Jaeger <aj@suse.de>
3629
3630 * x86-64-linux-nat.c: Fix comment.
3631
3632 2003-05-31 Mark Kettenis <kettenis@gnu.org>
3633
3634 * x86-64-tdep.c (x86_64_push_dummy_call): Adjust for changed
3635 function signature.
3636
3637 * i386-tdep.c (i386_sigtramp_frame_p): Only handle frames if we
3638 have a sigcontext_addr handler.
3639 * x86-64-tdep.c (x86_64_sigtramp_frame_p): Assert that we have a
3640 sigcontext_addr handler.
3641
3642 2003-05-31 Andrew Cagney <cagney@redhat.com>
3643
3644 * mips-tdep.c (print_gp_register_row): Replace do_gp_register_row.
3645 (print_fp_register_row): Replace do_fp_register_row.
3646 (mips_print_fp_register): Add "file" and "frame" parameters.
3647 (mips_print_register): Add "file" and "frame" parameters.
3648 (mips_print_registers_info): Replace mips_do_registers_info.
3649 (mips_gdbarch_init): Set print_registers_info instead of
3650 deprecated_do_registers_info.
3651 (mips_read_fp_register_single): Add "frame" parameter.
3652 (mips_read_fp_register_double): Add "frame" parameter.
3653
3654 2003-05-31 Mark Kettenis <kettenis@gnu.org>
3655
3656 * i386-tdep.c (i386_register_name): Check for MMX registers first.
3657 Fixes a bug where GDB would print the wrong register names for
3658 targets without SSE.
3659
3660 * x86-64-tdep.c (X86_64_NUM_SAVED_REGS): Set to X86_64_NUM_GREGS.
3661 (x86_64_sigtramp_frame_cache): Use `sc_reg_offset' to find saved
3662 registers.
3663
3664 * x86-64-linux-tdep.c (x86_64_linux_sc_reg_offset): New variable.
3665 (x86_64_linux_init_abi): Initialize TDEP->sc_reg_offset and
3666 TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
3667 TDEP->sc_sp_offset.
3668
3669 From Michal Ludvig <mludvig@suse.cz>:
3670 * i386-tdep.h (struct gdbarch_tdep): Add members `sc_reg_offset'
3671 and `sc_num_regs'.
3672 (I386_EAX_REGNUM, I386_EDX_REGNUM, I386_ESP_REGNUM,
3673 I386_EBP_REGNUM, I386_EIP_REGNUM, I386_EFLAGS_REGNUM,
3674 I386_ST0_REGNUM): Move here from...
3675 * i386-tdep.c: ... here.
3676 (I386_NUM_SAVED_REGS): Define to I386_NUM_REGS.
3677 (i386_sigtramp_frame_cache): Use `sc_reg_offset' to find saved
3678 registers if possible.
3679 (i386_gdbarch_init): Initialize TDEP->sc_reg_offset.
3680 * i386bsd-tdep.c (i386bsd_sc_pc_offset, i386bsd_sc_sp_offset):
3681 Remove variables.
3682 (i386bsd_sc_reg_offset): New variable.
3683 (i386bsd_init_abi): Initialize TDEP->sc_reg_offset and
3684 TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
3685 TDEP->sc_sp_offset.
3686 (i386fbsd_sc_reg_offset): New variable.
3687 (i386fbsdaout_init_abi): Initialize TDEP->sc_reg_offset and
3688 TDEP->sc_num_regs.
3689 (i386fbsd4_sc_pc_offset, i386fbsd4_sc_sp_offset): Remove
3690 variables.
3691 (i386fbsd4_sc_reg_offset): New variable.
3692 (i3864bsd4_init_abi): Initialize TDEP->sc_reg_offset and
3693 TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
3694 TDEP->sc_sp_offset.
3695 * i386-linux-tdep.c (i386_linux_sc_reg_offset): New variable.
3696 (i386_linux_init_abi): Set TDEP->sc_reg_offset and TDEP->sc_num_regs.
3697 * i386nbsd-tdep.c (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset):
3698 Remove variables.
3699 (i386nbsd_sc_reg_offset): New variable.
3700 (i386nbsd_init_abi): Initialize TDEP->sc_reg_offset and
3701 TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
3702 TDEP->sc_sp_offset.
3703 * i386obsd-tdep.c (i386obsd_sc_pc_offset, i386obsd_sc_sp_offset):
3704 Remove variables.
3705 (i386obsd_sc_reg_offset): New variable.
3706 (i386obsd_init_abi): Initialize TDEP->sc_reg_offset and
3707 TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
3708 TDEP->sc_sp_offset.
3709 * i386bsd-nat.c (_initialize_i386bsd_nat): Adjust for changes in
3710 i386bsd-tdep.c, i386nbsd-tdep.c and i386obsd-tdep.c. Add check
3711 for frame pointer offset in `struct sigcontext'.
3712
3713 2003-05-31 Andrew Cagney <cagney@redhat.com>
3714
3715 * mips-tdep.c (mips_gdbarch_init): Do not set the deprecated
3716 architecture methods call_dummy_words, sizeof_call_dummy_words,
3717 push_return_address, store_struct_return, and fix_call_dummy. Set
3718 push_dummy_call instead of deprecated_push_arguments.
3719 (mips_store_struct_return): Delete function.
3720 (mips_fix_call_dummy): Delete function.
3721 (mips_push_return_address): Delete function.
3722 (mips_eabi_push_dummy_call): Replace mips_eabi_push_arguments, set
3723 RA_REGNUM and T9_REGNUM.
3724 (mips_n32n64_push_dummy_call): Ditto for
3725 mips_n32n64_push_arguments.
3726 (mips_o32_push_dummy_call): Ditto for mips_o32_push_arguments.
3727 (mips_o64_push_dummy_call): Ditto for mips_o64_push_arguments.
3728
3729 2003-05-31 Andrew Cagney <cagney@redhat.com>
3730
3731 * gdbarch.sh (PUSH_DUMMY_CALL): Add "func_addr" parameter. Rename
3732 "dummy_addr" to "bp_addr".
3733 * infcall.c (call_function_by_hand): Pass "funaddr" to
3734 gdbarch_push_dummy_call.
3735 * gdbarch.h, gdbarch.c: Re-generate.
3736 * i386-tdep.c (i386_push_dummy_call): Update.
3737 * arm-tdep.c (arm_push_dummy_call): Update.
3738 * d10v-tdep.c (d10v_push_dummy_call): Update.
3739
3740 2003-05-31 Mark Kettenis <kettenis@gnu.org>
3741
3742 * x86-64-tdep.h (x86_64_num_regs, x86_64_num_gregs): Remove
3743 variable declarations.
3744 (x86_64_register_number, x86_64_register_name): Remove prototypes.
3745 (x86_64_linux_frame_saved_pc, x86_64_linux+saved_pc_after_call,
3746 x86_64_linux_in_sigtramp, x86_64_linux_frame_chain,
3747 x86_64_init_frame_pc, x86_64_init_frame_pc,
3748 x86_64_function_has_prologue): Remove prototypes.
3749 (X86_64_NUM_GREGS): New define.
3750 (x86_64_supply_fxsave, x86_64_fill_fxsave): New prototypes.
3751 * x86-64-tdep.c: Don't include "dwarf2cfi.h". Include
3752 "dummy_frame.h", "frame.h", "frame-base.h", "frame-unwind.h".
3753 (RAX_REGNUM, RDX_REGNUM, RDI_REGNUM, EFLAGS_REGNUM, ST0_REGNUM,
3754 XMM1_REGNUM): Remove defines.
3755 (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM,
3756 X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM,
3757 X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM,
3758 X86_64_XMM1_REGNUM): New defines.
3759 (struct x86_64_register_info): Renamed from `struct
3760 register_info'. Remove `size' member.
3761 (x86_64_register_info_table): Remove variable.
3762 (x86_64_register_info): New variable.
3763 (X86_64_NUM_REGS): New define.
3764 (X86_64_NUM_GREGS): Remove define.
3765 (x86_64_num_regs, x86_64_num_gregs): Remove variables.
3766 (x86_64_dwarf2gdb_regno_map, x86_64_dwarf2gdb_regno_map_length):
3767 Remove variables.
3768 (x86_54_dwarf2_reg_to_regnum): Remove function.
3769 (x86_64_dwarf_regmap, x86_64_dwarf_regmap_len): New variables.
3770 (x86_64_dwarf_reg_to_regnum): New function.
3771 (x86_64_register_name): Rewrite.
3772 (x86_64_register_raw_size): Remove function.
3773 (x86_64_register_byte_table): Remove variable.
3774 (x86_64_register_byte): Remove function.
3775 (x86_64_register_virtual_type): Remove function.
3776 (x86_64_register_type): New function.
3777 (x86_64_register_convertible, x86_64_register_convert_to_virtual,
3778 x86_64_register_convert_to_raw): Remove functions.
3779 (x86_64_push_return_address, x86_64_pop_frame): Remove functon.
3780 (x86_64_use_struct_convention): Make static. Adjust for renamed
3781 defines.
3782 (x86_64_frame_init_saved_regs): Remove function.
3783 (x86_64_push_arguments): Make static. Change to accept a regcache
3784 as argument.
3785 (x86_64_store_return_value, x86_64_extract_return_value): Make
3786 static. Rewrite based on i386 counterparts.
3787 (x86_64_push_dummy_call): New function.
3788 (X86_64_NUM_SAVED_REGS): New define.
3789 (x86_64_register_number): Remove function.
3790 (x86_64_store_struct_return): Remove function.
3791 (x86_64_frameless_function_invocation,
3792 x86_64_function_has_prologue): Remove functions.
3793 (PROLOG_BUFSIZE): Remove define.
3794 (struct x86_64_frame_cache): New structure.
3795 (x86_64_alloc_frame_cache, x86_64_analyze_prologue,
3796 x86_64_frame_cache, x86_64_frame_this_id,
3797 x86_64_frame_prev_register, x86_64_frame_p,
3798 x86_64_sigtramp_frame_cache, x86_64_sigtramp_frame_this_id,
3799 x86_64_sigtramp_frame_prev_register, x86_sigtramp_frame_p): New
3800 functions.
3801 (x86_64_frame_unwind, x86_64_sigtramp_frame_unwind): New
3802 variables.
3803 (x86_64_skip_prologue): Rewrite in terms of
3804 x86_64_analyze_prologue.
3805 (x86_64_frame_base_address): New function.
3806 (x86_64_frame_base): New variable.
3807 (x86_64_save_dummy_frame_tos, x86_64_unwind_dummy_id): Rewrite.
3808 (x86_64_init_abi): Set register_type and push_dummy_call. Don't
3809 set deprecated_fp_regnum, deprecated_register_size,
3810 deprecated_register_bytes, register_raw_size, register_byte,
3811 register_virtual_type, register_convertiable,
3812 register_convert_to_virtual, convert_to_raw,
3813 deprecated_get_saved_register, deprecated_target_read_fp,
3814 deprecated_push_arguments, deprecated_push_return_address,
3815 deprecated_pop_frame, deprecated_store_struct_return,
3816 deprecated_frame_init_saved_regs, deprecated_frame_chain,
3817 frameless_function_invocation, deprecated_frame_saved_pc,
3818 deprecated_saved_pc_after_call, frame_num_args, pc_in_sigtramp,
3819 dwarf2_build_frame_info, deprecated_init_extra_frame_info,
3820 deprecated_init_frame_pc and virtual_frame_pointer. Call
3821 frame_unwind_append_predicate to register x86_64_sigtramp_frame_p
3822 and x86_64_frame_p. Call frame_base_set_default to register
3823 x86_64_frame_base.
3824 (I387_FISEG_REGNUM, I387_FOSEG_REGNUM): New defines.
3825 (x86_64_supply_fxsave, x86_64_fill_fxsave): New functions.
3826 (_initialize_x86_64_tdep): Remove function.
3827 * x86-64-linux-tdep.c: Don't include "dwarf2cfi.h".
3828 (LINUX_SIGINFO_SIZE, LINUX_UCONTEXT_SIGCONTEXT_OFFSET,
3829 LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONTEXT_FP_OFFSET): Don't
3830 define.
3831 (X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Define.
3832 (x86_64_linux_sigcontext_addr): Rewrite.
3833 (x86_64_linux_sigtramp_saved_pc, x86_64_linux_saved_pc_after_call,
3834 x86_64_linux_frame_saved_pc): Remove functions.
3835 (x86_64_linux_pc_in_sigtramp): Renamed from
3836 x86_64_linux_in_sigtramp. Try harder to recognize a signal
3837 trampoline.
3838 (x86_64_linux_frame_chain, x86_64_init_frame_pc):
3839 Remove_functions.
3840 (x86_64_linux_init_abi): Set pc_in_sigtramp. Initialize
3841 TDEP->sigcontext_addr, TDEP->sc_pc_offset and TDEP->sc_sp_offset.
3842 * x86-64-linux-nat.c: Sync with i386-linux-tdep.c.
3843 (x86_64_regmap): Rename to regmap.
3844 (GETREGS_SUPPLIES): Use X86_64_NUM_GREGS instead of
3845 x86_64_num_gregs.
3846 (supply_gregset, fill_gregset): Likewise. Use regmap instead of
3847 x86_64_regmap.
3848 (x86_64_fxsave_offset): Remove function.
3849 (supply_fpregset): Simply call x86_64_supply_fxsave.
3850 (fill_fpregset): Simply call x86_64_fill_fxsave.
3851 (fetch_inferior_registers, store_inferior_registers): Avoid
3852 asignment in if-statement.
3853 (LINUX_SYSCALL_LEN, LINUX_SYSCALL_REGNUM, SYS_Sigreturn,
3854 SYS_rt_sigreturn, LINUX_SIGCONTEXT_EFLAGS_OFFSET,
3855 LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Remove defines.
3856 (fetch_core_registers): Remove function.
3857 (linux_elf_core_fns): Remove.
3858 (offsetoff): Don't define.
3859 (_initialize_x86_64_linux_nat, kernel_u_size): Remove functions.
3860 * config/i386/x86-64linux.mt (TDEPFILES): Add i386-linux-tdep.o.
3861 * config/i386/x86-64linux.mh (NATDEPFILES): Remove core-aout.o,
3862 add core-regset.o.
3863 * config/i386/nm-x86-64linux.h: Use NM_X86_64_LINUX_H for
3864 protection against multiple includes instead of NM_X86_64_h. Add
3865 various comments. Include "config/nm-linux.h". Don't include
3866 <signal.h>.
3867 (REGISTER_U_ADDR, KERNEL_U_SIZE, U_REGS_OFFSET, KERN_U_ADDR,
3868 GET_THREAD_SIGNALS): Remove defines.
3869 (x86_64_register_u_addr, kernel_u_size,
3870 lin_thread_get_thread_signals): Remove prototypes.
3871 (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define to `long'.
3872 [HAVE_LINK_H]: Don't include "solib.h".
3873 [HAVE_LINK_H] (SVR4_SHARED_LIBS): Remove define.
3874 * config/i386/tm-x86-64linux.h: Fix comments.
3875 * Makefile.in (x86-64-linux-nat.o, x86_64-linux-tdep.o,
3876 x86-64-tdep.o): Update dependencies.
3877
3878 2003-05-30 Andrew Cagney <cagney@redhat.com>
3879
3880 * config/sparc/tm-sparc.h (sparc_extract_struct_value_address):
3881 Change parameter type to a "struct regcache *".
3882
3883 * gdbarch.sh: Regardless of the multi-arch level, always define
3884 the macro when not already defined.
3885 * gdbarch.h, gdbarch.c: Re-generate.
3886
3887 2003-05-30 Richard Henderson <rth@redhat.com>
3888
3889 * alpha-mdebug-tdep.c (alpha_mdebug_frame_p): Reject prologues.
3890 (alpha_mdebug_frame_unwind_cache): Don't call the heuristic unwinder.
3891 (alpha_mdebug_frame_this_id): Likewise.
3892 (alpha_mdebug_frame_prev_register): Likewise.
3893 (alpha_mdebug_frame_base_address): Likewise.
3894 (alpha_mdebug_frame_locals_address): Likewise.
3895 (alpha_mdebug_frame_args_address): Likewise.
3896 (struct alpha_mdebug_unwind_cache): Remove in_prologue_cache.
3897 * alpha-tdep.c (alpha_heuristic_proc_start): Use get_pc_function_start.
3898 (alpha_heuristic_frame_unwind_cache): Make static; add missing
3899 loop increment.
3900 (alpha_heuristic_frame_this_id): Make static.
3901 (alpha_heuristic_frame_prev_register): Likewise.
3902 (alpha_heuristic_frame_base_address): Likewise.
3903 * alpha-tdep.h: Update.
3904
3905 2003-05-30 Mark Kettenis <kettenis@gnu.org>
3906
3907 * i386-tdep.h (i386bsd_sigcontext_addr): Remove prototype.
3908 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS): Remove
3909 defenitions.
3910 (IS_FP_REGNUM, IS_SSE_REGNUM): Remove definitions.
3911 * i386-tdep.c: Mark functions that are 64-bit safe as such.
3912 (I386_EAX_REGNUM, I386_EDX_REGNUM, I386_ESP_REGNUM,
3913 I386_EBP_REGNUM, I386_EIP_REGNUM, I386_EFLAGS_REGNUM,
3914 I386_ST0_REGNUM): New defines.
3915 (CODESTREAM_BUFSIZ, codestream_tell, codestream_peek,
3916 codestream_get): Remove define.
3917 (codestream_next_addr, condestream_addr, condestream_buf,
3918 codestream_off, codestream_cnt): Remove variables.
3919 (codestream_fill, codestream_seek, codestream_read): Remove
3920 functions.
3921 (i386_follow_jump): Rewrite to avoid usage of removed codestream
3922 functionality.
3923 (i386_get_frame_setup, i386_frameless_signal_p, i386_frame_chain,
3924 i386_sigtramp_saved_pc, i386_sigtramp_saved_sp,
3925 i386_frame_saved_pc, i386_saved_pc_after_call,
3926 i386_frame_num_args, i386_frame_init_saved_regs,
3927 i386_push_return_address, i386_do_pop_frame, i386_pop_frame,
3928 i386_push_arguments): Remove functions.
3929 (i386_skip_prologue): Rewrite to avoid usage of removed codestream
3930 functionality. Use i386_analyze_prologue instead of
3931 i386_get_frame_setup.
3932 (I386_NUM_SAVED_REGS): New define.
3933 (struct i386_frame_cache): New structure.
3934 (i386_alloc_frame_cache, i386_analyze_struct_return,
3935 i386_skip_probe, i386_analyze_frame_setup,
3936 i386_analyze_register_saves, i386_analyze_prologue,
3937 i386_unwind_pc, i386_frame_cache, i386_frame_this_id,
3938 i386_frame_prev_register, i386_sigtramp_frame_cache,
3939 i386_sigtramp_frame_this_id, i386_sigtramp_frame_prev_register,
3940 i386_frame_p, i386_sigtramp_frame_p, i386_frame_base_address,
3941 i386_unwind_dummy_id, i386_save_dummy_tos, i386_push_dummy_call):
3942 New functions.
3943 (i386_frame_unwind, i386_sigtramp_frame_unwind, i386_frame_base):
3944 New variables.
3945 (LOW_RETURN_REGNUM, HIGH_RETURN_REGNUM): Define in terms of
3946 I386_EAX_REGNUM and I386_EDX_REGNUM.
3947 (i386_extract_return_value, i386_store_return_value): Use
3948 I386_ST0_REGNUM where appropriate.
3949 (i386_extract_struct_value_address): Rewrite to use extract_address.
3950 (i386_svr4_pc_in_sigtramp): Add comment.
3951 (i386_svr4_sigcontext_addr): Rewrite.
3952 (i386_svr4_init_abi): Adjust TDEP->sc_pc_offset and
3953 TDEP->sc_sp_offset.
3954 (i386_gdbarch_init): Don't set deprecated_init_frame_pc. Set
3955 sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum in terms
3956 of new defines. Set push_dummy_call, don't set
3957 deprecated_push_arguments, deprecated_push_return_address,
3958 deprecated_pop_frame. Don't set parm_boundary. Don't set
3959 deprecated_frame_chain, deprecated_frame_saved_pc,
3960 deprecated_saved_pc_after_call. Set unwind_dummy_id,
3961 save_dummy_frame_tos, unwind_pc. Call
3962 frame_unwind_append_predicate and frame_base_set_default. Don't
3963 set deprecated_dummy_write_pc. Don't set deprecated_fp_regnum.
3964 Don't set frameless_function_invocation. Don't set
3965 deprecated_register_bytes, deprecated_register_size,
3966 deprecated_call_dummy_words and deprecated_sizeof_call_dummy.
3967 * i386-linux-tdep.c: Fix formatting in some comments.
3968 (LINUX_SIGTRAMP_INSN0, LINUX_SIGTRAMP_OFFSET0,
3969 LINUX_SIGTRAMP_INSN1, LINUX_SIGTRAMP_OFFSET1,
3970 LINUX_SIGTRAMP_INSN2, LINUX_SIGTRAMP_OFFSET2,
3971 LINUX_RT_SIGTRAMP_INSN0, LINUX_RT_SIGTRAMP_OFFSET0,
3972 LINUX_RT_SIGTRAMP_INSN1, LINUX_RT_SIGTRAMP_OFFSET1): Drop
3973 redundant parentheses.
3974 (I386_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): New define.
3975 (i386_linux_sigcontext_addr): Use it. Rewrite.
3976 (find_minsym_and_objfile): Change name of second argument.
3977 (skip_gnu_resolver): Renamed from skip_hurd_resolver. All callers
3978 changed. Use frame_pc_unwind instead of
3979 DEPRECATED_SAVED_PC_AFTER_CALL.
3980 (i386_linux_init_abi): Don't set deprecated_register_bytes.
3981 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Rewrite.
3982 * i386-nto-tdep.c (i386nto_sigcontext_addr): Adapt for new frame
3983 unwinder.
3984 * i386-cygwin-tdep.c: Don't include "gdbcore.h", "frame.h" and
3985 "dummy-frame.h".
3986 (i386_cygwin_frame_chain_valid, i386_cygwin_frame_chain): Removed.
3987 (_initialize_i386_cygwin_tdep): New prototype.
3988 (i386_cygwin_init_abi): Don't set deprecated_frame_chain and
3989 deprecated_frame_chain_valid.
3990 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't set
3991 TDEP->sigcontext_addr, TDEP->sc_pc_offset and TDEP->sc_sp_offset.
3992 Rely on the SVR4 defaults.
3993 * config/i386/i386sol2.mt (TDEPFILES): Remove i386bsd-tdep.o.
3994 * Makefile.in (i386-tdep.o, i386-cygwin-tdep.o): Update dependencies.
3995
3996 2003-05-30 Andrew Cagney <cagney@redhat.com>
3997
3998 * infcall.c (call_function_by_hand): Always call
3999 DEPRECATED_FIX_CALL_DUMMY, even for AT_ENTRY_POINT case.
4000
4001 2003-05-30 Richard Henderson <rth@redhat.com>
4002
4003 * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Fix loop
4004 increment.
4005
4006 2003-05-29 Jim Blandy <jimb@redhat.com>
4007
4008 Use gdbarch methods for solib stuff on PowerPC Linux.
4009 * config/powerpc/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE,
4010 SKIP_TRAMPOLINE_CODE): #undef these, so the gdbarch methods will
4011 show through.
4012 * ppc-linux-tdep.c (ppc_linux_init_abi): Register
4013 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE methods here,
4014 giving the same effect as the #definitions above.
4015
4016 2003-05-29 Adam Fedor <fedor@gnu.org>
4017
4018 * objc-lang.c (CONVERT_FUNCPTR): Remove macro
4019 (find_implementation_from_class): Replace it with the standard
4020 case i.e. do nothing.
4021
4022 2003-05-29 Richard Henderson <rth@redhat.com>
4023
4024 * alpha-linux-tdep.c (alpha_linux_sigtramp_offset_1): New.
4025 (alpha_linux_sigtramp_offset): Use it. Make static.
4026 (alpha_linux_sigcontext_addr): Handle __NR_rt_sigreturn;
4027 update for new frame model.
4028 * alpha-mdebug-tdep.c: New file.
4029 * alpha-osf1-tdep.c (alpha_call_dummy_address): Move from alpha-tdep.c.
4030 (alpha_osf1_init_abi): Install it.
4031 * alpha-tdep.c (PROC_*): Move to alpha-mdebug-tdep.c.
4032 (linked_proc_desc_table): Remove.
4033 (alpha_frame_past_sigtramp_frame): Remove.
4034 (alpha_dynamic_sigtramp_offset): Remove.
4035 (ALPHA_PROC_SIGTRAMP_MAGIC): Remove.
4036 (alpha_proc_desc_is_dyn_sigtramp): Remove.
4037 (alpha_set_proc_desc_is_dyn_sigtramp): Remove.
4038 (push_sigtramp_desc): Remove.
4039 (alpha_cannot_fetch_register): Use ALPHA_FP_REGNUM.
4040 (alpha_cannot_store_register): Likewise.
4041 (alpha_sigcontext_addr): Remove.
4042 (alpha_find_saved_regs): Remove.
4043 (alpha_frame_init_saved_regs): Remove.
4044 (alpha_init_frame_pc_first): Remove.
4045 (read_next_frame_reg): Remove.
4046 (alpha_frame_saved_pc): Remove.
4047 (alpha_saved_pc_after_call): Remove.
4048 (temp_proc_desc, temp_saved_regs): Remove.
4049 (alpha_about_to_return): Remove.
4050 (cached_proc_desc): Remove.
4051 (alpha_frame_chain): Remove.
4052 (alpha_print_extra_frame_info): Remove.
4053 (alpha_init_extra_frame_info): Remove.
4054 (alpha_frame_locals_address): Remove.
4055 (alpha_frame_args_address): Remove.
4056 (alpha_push_arguments): Use ALPHA_REGISTER_BYTES not sizeof CORE_ADDR.
4057 (alpha_push_dummy_frame): Remove.
4058 (alpha_pop_frame): Remove.
4059 (alpha_after_prologue): Rename from after_prologue; remove mdebug bits.
4060 (alpha_read_insn): New.
4061 (alpha_skip_prologue): Merge alpha_skip_prologue_internal; adjust
4062 for different insn encodings.
4063 (alpha_in_lenient_prologue): Remove.
4064 (struct alpha_sigtramp_unwind_cache): New.
4065 (alpha_sigtramp_frame_unwind_cache): New.
4066 (alpha_sigtramp_register_address): New.
4067 (alpha_sigtramp_frame_this_id): New.
4068 (alpha_sigtramp_frame_prev_register): New.
4069 (alpha_sigtramp_frame_unwind): New.
4070 (alpha_sigtramp_frame_p): New.
4071 (struct alpha_heuristic_unwind_cache): New.
4072 (alpha_heuristic_proc_start): Rename from heuristic_proc_start;
4073 don't count nop insns that occur between functions.
4074 (alpha_heuristic_frame_unwind_cache): New; incorporate much of
4075 heuristic_proc_desc, but without the mdebug wrapping.
4076 (alpha_heuristic_frame_this_id): New.
4077 (alpha_heuristic_frame_prev_register): New.
4078 (alpha_heuristic_frame_unwind): New.
4079 (alpha_heuristic_frame_p): New.
4080 (alpha_heuristic_frame_base_address): New.
4081 (alpha_heuristic_frame_base): New.
4082 (alpha_unwind_dummy_id): New.
4083 (alpha_unwind_pc): New.
4084 (alpha_gdbarch_init): Don't set skip_sigtramp_frame. Kill use of
4085 frame related deprecated initializations; install replacements.
4086 (alpha_dump_tdep): Remove.
4087 * alpha-tdep.h (struct gdbarch_tdep): Remove skip_sigtramp_frame.
4088 (alpha_read_insn, alpha_after_prologue,
4089 alpha_heuristic_frame_unwind_cache, alpha_heuristic_frame_this_id,
4090 alpha_heuristic_frame_prev_register,
4091 alpha_heuristic_frame_base_address, alpha_mdebug_init_abi): Declare.
4092 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-mdebug-tdep.o.
4093 * config/alpha/tm-alpha.h (PRINT_EXTRA_FRAME_INFO): Remove.
4094 * config/alpha/tm-alphalinux.h (SIGTRAMP_START, SIGTRAMP_END): Remove.
4095
4096 2003-05-29 Andrew Cagney <cagney@redhat.com>
4097
4098 * gdb_assert.h (gdb_assert_fail): Provide different definitions
4099 dependant on the availability of ASSERT_FUNCTION.
4100 (ASSERT_FUNCTION): Do not define when there is no function name.
4101
4102 2003-05-29 Kevin Buettner <kevinb@redhat.com>
4103
4104 From Jimi X <jimix@watson.ibm.com>:
4105 * rs6000-tdep.c (skip_prologue): Improve support for 64-bit code.
4106
4107 2003-05-28 Jim Blandy <jimb@redhat.com>
4108
4109 * ppc-linux-nat.c (store_altivec_registers): Don't cast fourth
4110 argument to ptrace to int; the system headers should give it the
4111 right type, and pointers don't fit in ints on powerpc64-*-*.
4112
4113 2003-05-28 H.J. Lu <hongjiu.lu@intel.com>
4114
4115 * dwarf2read.c (process_die): Handle DW_TAG_try_block and
4116 DW_TAG_catch_block.
4117
4118 2003-05-26 Elena Zannoni <ezannoni@redhat.com>
4119
4120 * stabsread.c (dbx_lookup_type): Make static.
4121 (read_type): Ditto.
4122 (add_undefined_type): Ditto.
4123 * stabsread.h (dbx_lookup_type, read_type, add_undefined_type): Do
4124 not export.
4125
4126 2003-05-26 Elena Zannoni <ezannoni@redhat.com>
4127
4128 * hpread.c (hpread_has_name): Make static.
4129 (hpread_psymtab_to_symtab): Ditto.
4130 (file_exists): Ditto.
4131 (hpread_call_pxdb): Ditto.
4132 (hpread_pxdb_needed): Ditto.
4133 (hpread_quick_traverse): Ditto.
4134 (hpread_get_header): Ditto.
4135 (hpread_get_lntt): Ditto.
4136 (hpread_get_slt): Ditto.
4137 (class_of): Ditto.
4138
4139 2003-05-25 Andreas Schwab <schwab@suse.de>
4140
4141 * m68k-tdep.c (m68k_gdbarch_init): Set parm_boundary instead of
4142 stack_align and deprecated_extra_stack_alignment_needed.
4143 (m68k_stack_align): Delete.
4144
4145 * m68k-tdep.c (m68k_register_raw_size): Remove cast.
4146 (m68k_register_virtual_size): Likewise.
4147 (altos_skip_prologue): Remove obsolete function.
4148 (isi_frame_num_args): Likewise.
4149 (news_frame_num_args): Likewise.
4150 (m68k_fix_call_dummy): Make static.
4151 (m68k_push_dummy_frame): Likewise.
4152 (m68k_pop_frame): Likewise.
4153 (m68k_skip_prologue): Likewise.
4154 (m68k_frame_init_saved_regs): Likewise.
4155 (m68k_saved_pc_after_call): Likewise.
4156 (m68k_get_longjmp_target): Make multi-arch.
4157 (m68k_gdbarch_init): Allocate and initialize gdbarch_tdep
4158 structure. Register m68k_get_longjmp_target if enabled.
4159 * m68k-tdep.h (struct gdbarch_tdep): Define.
4160 * config/m68k/tm-m68k.h: Don't include "regcache.h".
4161
4162 * Makefile.in (config.status): Also depend on configure.tgt
4163 and configure.host.
4164 (m68klinux-tdep.o): Update dependencies.
4165 * configure.tgt (m68*-*-linux*): Set gdb_multi_arch to 1.
4166 * m68klinux-tdep.c (M68K_LINUX_JB_ELEMENT_SIZE): Define.
4167 (M68K_LINUX_JB_PC): Define.
4168 (m68k_linux_pc_in_sigtramp): Renamed from m68k_linux_in_sigtramp
4169 and take additional parameter.
4170 (m68k_linux_sigtramp_saved_pc): Update.
4171 (m68k_linux_init_abi): Set jb_pc and jb_elt_size. Register
4172 m68k_linux_pc_in_sigtramp, in_plt_section,
4173 find_solib_trampoline_target.
4174 * config/m68k/tm-linux.h: Don't include any tm headers.
4175 (START_INFERIOR_TRAPS_EXPECTED): Remove definition.
4176 (JB_ELEMENT_SIZE): Likewise.
4177 (JB_PC): Likewise.
4178 (GET_LONGJMP_TARGET): Likewise.
4179 (IN_SIGTRAMP): Likewise.
4180 (SVR4_SHARED_LIBS): Define this and include "solib.h".
4181
4182 2003-05-25 Mark Kettenis <kettenis@gnu.org>
4183
4184 * sparc-tdep.c (sparc32_do_push_arguments): New function.
4185 (sparc32_push_arguments): Re-implement by calling
4186 sparc32_do_push_arguments.
4187
4188 2003-05-25 Mark Kettenis <kettenis@gnu.org>
4189
4190 * sparc-tdep.c (SPARC_F0_REGNUM, SPARC_F1_REGNUM, SPARC_O0_REGNUM,
4191 SPARC_O1_REGNUM): New defines.
4192 (sparc32_extract_return_value): Rewrite to operate on a regcache.
4193 (sparc32_store_return_value): New function.
4194 (sparc_extract_struct_value_address): Rewrite to operate on a
4195 regcache.
4196 (sparc_gdbarch_init): Don't set
4197 deprecated_extract_struct_value_address. Set
4198 extract_struct_value_address instead. Don't set
4199 deprecated_extract_return_value and deprecated_store_return_value
4200 for 32-bit targets. Set extract_return_value and
4201 store_return_value instead.
4202 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE,
4203 DEPRECTAED_EXTRACT_RETURN_VALUE,
4204 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Don't define these.
4205 (STORE_RETURN_VALUE, EXTRACT_RETURN_VALUE,
4206 EXTRACT_STRUCT_VALUE_ADDRESS): Define these instead.
4207 (sparc_store_return_value): Remove prototype.
4208 (sparc32_store_return_value): New prototype.
4209 (sparc32_extract_return_value, sparc_extract_struct_value_address):
4210 Adjust prototypes.
4211
4212 2003-05-24 Mark Kettenis <kettenis@gnu.org>
4213
4214 * sparcnbsd-tdep.c: Include "gdb_string.h".
4215
4216 2003-05-23 Andrew Cagney <cagney@redhat.com>
4217
4218 * p-valprint.c (pascal_val_print): Replace extract_address with
4219 the inline equivalent extract_unsigned_integer.
4220 * jv-valprint.c (java_value_print): Ditto.
4221 * ada-valprint.c (ada_val_print_1): Ditto.
4222 * ada-lang.h (EXTRACT_ADDRESS): Ditto.
4223
4224 2003-05-23 Theodore A. Roth <troth@openavr.org>
4225
4226 * blockframe.c (frameless_look_for_prologue): Remove unused
4227 after_prologue variable.
4228
4229 2003-05-23 Mark Kettenis <kettenis@gnu.org>
4230
4231 * blockframe.c (get_pc_function_start): Rewrite to avoid
4232 asignments in if-statements.
4233
4234 2003-05-23 Raoul Gough <RaoulGough@yahoo.co.uk>
4235
4236 Committed by Elena Zannoni <ezannoni@redhat.com>.
4237 * coffread.c(coff_symtab_read): Do relocate static symbols from PE
4238 files, don't relocate absolute symbols (and do use mst_abs).
4239
4240 2003-05-23 Andrew Cagney <cagney@redhat.com>
4241
4242 * objc-lang.c: Include "gdb_assert.h".
4243 (objc_op_print_tab): Use OP_NULL and PREC_NULL instead of 0.
4244 (CHECK, CHECK_FATAL, __CHECK_FUNCTION): Delete macros.
4245 (gdb_check, gdb_check_fatal): Delete functions.
4246 (read_objc_methlist_method): Replace CHECK and CHECK_FATAL with
4247 gdb_assert.
4248 (parse_selector, parse_method, find_methods, find_imps): Ditto.
4249 * Makefile.in (objc-lang.o): Update dependencies.
4250
4251 2003-05-22 Ian Lance Taylor <ian@airs.com>
4252
4253 * disasm.c (gdb_disassemble_info): Initialize disassemble_info
4254 with fprintf_filtered, not fprintf_unfiltered.
4255
4256 2003-05-22 Andrew Cagney <cagney@redhat.com>
4257
4258 * stack.c (frame_info): Inline extract_address, replacing it with
4259 extract_unsigned_integer.
4260 * findvar.c (unsigned_pointer_to_address): Ditto.
4261 * dwarf2loc.c (dwarf_expr_read_reg): Ditto.
4262 * dwarf2expr.c (dwarf2_read_address): Ditto.
4263 * frame.c (frame_pc_unwind): Update comment.
4264 * dummy-frame.c (deprecated_read_register_dummy): Update comment.
4265
4266 2003-05-22 Jeff Johnston <jjohnstn@redhat.com>
4267
4268 * infptrace.c (detach): Call print_sys_errmsg rather than
4269 perror_with_name to issue warning message when errno is non-zero
4270 after calling ptrace detach.
4271
4272 2003-05-21 J. Brobecker <brobecker@gnat.com>
4273
4274 * config/pa/tm-hppa.h: Delete some unused macros. Move some
4275 macro definitions from here...
4276 * hppa-tdep.c: ...to there.
4277
4278 2003-05-20 Kevin Buettner <kevinb@redhat.com>
4279
4280 * mips-nat.c (REGISTER_PTRACE_ADDR): Convert macro to function
4281 register_ptrace_addr(). Fix all callers.
4282
4283 2003-05-21 Andreas Schwab <schwab@suse.de>
4284
4285 * Makefile.in (m68k-tdep.o, m68klinux-tdep.o): Update
4286 dependencies.
4287 * m68k-tdep.c (m68k_gdbarch_init): Call gdbarch_init_osabi at the
4288 end.
4289 * m68klinux-tdep.c (m68k_linux_init_abi): New function.
4290 (_initialize_m68k_linux_tdep): New function.
4291 (m68k_linux_frame_saved_pc): Make static.
4292 (m68k_linux_extract_return_value): Likewise.
4293 (m68k_linux_store_return_value): Likewise.
4294 (m68k_linux_extract_struct_value_address): Likewise.
4295 * config/m68k/tm-linux.h (DEPRECATED_EXTRACT_RETURN_VALUE):
4296 Remove.
4297 (DEPRECATED_STORE_RETURN_VALUE): Remove.
4298 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
4299 (DEPRECATED_FRAME_SAVED_PC): Remove.
4300
4301 2003-05-20 Kris Warkentin <kewarken@qnx.com>
4302
4303 * nto-tdep.c (fetch_core_registers): Match gdb's idea of
4304 regset numbering rather than our own.
4305
4306 2003-05-19 David Carlton <carlton@bactrian.org>
4307
4308 * config/djgpp/fnchange.lst: Add testsuite/gdb.c++/rtti*.
4309
4310 2003-05-19 David Carlton <carlton@bactrian.org>
4311
4312 Partial fix for PR c++/827.
4313 * cp-support.h: Include symtab.h.
4314 Declare cp_lookup_symbol_nonlocal, cp_lookup_symbol_namespace.
4315 * cp-namespace.c: Update contributors.
4316 (cp_lookup_symbol_nonlocal): New.
4317 (lookup_namespace_scope, cp_lookup_symbol_namespace)
4318 (lookup_symbol_file): Ditto.
4319 * c-lang.c (cplus_language_defn): Use cp_lookup_symbol_nonlocal.
4320 * block.h: Declare block_scope, block_using, block_global_block.
4321 * block.c (block_scope): New.
4322 (block_using, block_global_block): Ditto.
4323 * Makefile.in (cp_support_h): Depend on symtab_h.
4324 * config/djgpp/fnchange.lst: Add testsuite/gdb.c++/namespace1.cc.
4325
4326 2003-05-19 David Carlton <carlton@bactrian.org>
4327
4328 * language.h (struct language_defn): Add 'la_value_of_this'
4329 and 'la_lookup_symbol_nonlocal' members.
4330 * symtab.h: Declare basic_lookup_symbol_nonlocal,
4331 lookup_symbol_static, lookup_symbol_global,
4332 lookup_symbol_aux_block.
4333 * symtab.c (lookup_symbol_aux): Call language hooks to determine
4334 if we should search fields of this and how to do static/global
4335 lookup.
4336 (lookup_symbol_aux_block): Make extern.
4337 (basic_lookup_symbol_nonlocal): New.
4338 (lookup_symbol_static, lookup_symbol_global): Ditto.
4339 * ada-lang.c (ada_language_defn): Set 'la_value_of_this' and
4340 'la_lookup_symbol_nonlocal' members.
4341 * c-lang.c (c_language_defn, cplus_language_defn)
4342 (asm_language_defn, minimal_language_defn): Ditto.
4343 * jv-lang.c (java_language_defn): Ditto.
4344 * language.c (unknown_language_defn, auto_language_defn)
4345 (local_language_defn): Ditto.
4346 * m2-lang.c (m2_language_defn): Ditto.
4347 * objc-lang.c (objc_language_defn): Ditto.
4348 * scm-lang.c (scm_language_defn): Ditto.
4349 * f-lang.c (f_language_defn): Ditto, and include value.h as well.
4350 * p-lang.c (pascal_language_defn): Ditto for both.
4351 * Makefile.in (f-lang.o): Depend on value_h.
4352 (p-lang.o): Ditto.
4353
4354 2003-05-19 David Carlton <carlton@bactrian.org>
4355
4356 * block.h: Declare block_static_block.
4357 * block.c (block_static_block): New.
4358 * symtab.c (lookup_symbol_aux): Remove 'static_block' argument to
4359 lookup_symbol_aux_local, calling block_static_block instead.
4360 (lookup_symbol_aux_local): Delete 'static_block' argument.
4361
4362 2003-05-19 David Carlton <carlton@bactrian.org>
4363
4364 * symtab.c (lookup_symbol_aux): Delete #if 0 hunk.
4365
4366 2003-05-19 Michal Ludvig <mludvig@suse.cz>
4367
4368 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map): Fix
4369 register numbers mapping.
4370
4371 2003-05-18 Adam Fedor <fedor@gnu.org>
4372
4373 * symtab.c (completion_list_objc_symbol): New function.
4374 (make_symbol_completion_list): Use it to add ObjC symbols
4375 when looking though the list.
4376 (language_search_unquoted_string): New function.
4377 (make_file_symbol_completion_list): Use it.
4378
4379 2003-05-18 Andreas Schwab <schwab@suse.de>
4380
4381 * Makefile (m68klinux-nat.o, m68klinux-tdep.o): Update
4382 dependencies.
4383 * config/m68k/tm-linux.h (DEPRECATED_EXTRACT_RETURN_VALUE): Define
4384 as m68k_linux_extract_return_value.
4385 (DEPRECATED_STORE_RETURN_VALUE): Define as
4386 m68k_linux_store_return_value.
4387 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Define as
4388 m68k_linux_extract_struct_value_address.
4389 * m68klinux-tdep.c (m68k_linux_sigtramp_saved_pc): Use
4390 get_next_frame, get_frame_base, get_frame_pc.
4391 (m68k_linux_frame_saved_pc): Use get_frame_base.
4392 (m68k_linux_extract_return_value): New function.
4393 (m68k_linux_store_return_value): New function.
4394 (m68k_linux_extract_struct_value_address): New function.
4395 * config/m68k/tm-m68k.h: Declare m68k_get_longjmp_target.
4396
4397 * c-exp.y (typebase): Remove duplicate occurence of
4398 `SIGNED_KEYWORD LONG LONG'. Use builtin_type_long_long instead
4399 of lookup_signed_typename.
4400
4401 2003-05-18 Mark Kettenis <kettenis@gnu.org>
4402
4403 * dwarf2loc.c (find_location_expression): Change type of second
4404 argument to `size_t *'.
4405 (loclist_read_variable, loclist_tracepoint_var_ref): Use size_t
4406 for size variable.
4407
4408 2003-05-18 David Carlton <carlton@bactrian.org>
4409
4410 * symtab.c (lookup_symbol_aux): Rename 'mangled_name' argument to
4411 'linkage_name'. Add comment.
4412 (lookup_symbol_aux_local): Rename 'mangled_name' argument to
4413 'linkage_name'.
4414 (lookup_symbol_aux_block, lookup_symbol_aux_symtabs)
4415 (lookup_symbol_aux_psymtabs, lookup_symbol_aux_minsyms)
4416 (lookup_block_symbol): Ditto.
4417
4418 2003-05-16 Andrew Cagney <cagney@redhat.com>
4419
4420 * gdbarch.sh (DEPRECATED_REGISTER_BYTES): Rename REGISTER_BYTES.
4421 * gdbarch.h, gdbarch.c: Re-generate.
4422 * arm-linux-tdep.c (arm_linux_extract_return_value): Delete reference.
4423 * TODO (REGISTER_BYTES): Delete reference.
4424 * alpha-tdep.c (alpha_gdbarch_init): Update.
4425 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4426 * x86-64-tdep.c (x86_64_init_abi): Update.
4427 * vax-tdep.c (vax_gdbarch_init): Update.
4428 * v850-tdep.c (v850_gdbarch_init): Update.
4429 * sparc-tdep.c (sparc_gdbarch_init): Update.
4430 * sh-tdep.c (sh_gdbarch_init): Update.
4431 * s390-tdep.c (s390_gdbarch_init): Update.
4432 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4433 * ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
4434 (ns32k_gdbarch_init_32382): Update.
4435 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
4436 * mcore-tdep.c (mcore_gdbarch_init): Update.
4437 * m68k-tdep.c (m68k_gdbarch_init): Update.
4438 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4439 * ia64-tdep.c (ia64_gdbarch_init): Update.
4440 * i386-tdep.c (i386_gdbarch_init): Update.
4441 * i386-linux-tdep.c (i386_linux_init_abi): Update.
4442 * hppa-tdep.c (hppa_gdbarch_init): Update.
4443 * h8300-tdep.c (h8300_gdbarch_init): Update.
4444 * frv-tdep.c (frv_gdbarch_init): Update.
4445 * cris-tdep.c (cris_gdbarch_init): Update.
4446 * avr-tdep.c (avr_gdbarch_init): Update.
4447 * arm-tdep.c (arm_gdbarch_init): Update.
4448 * sparc-tdep.c (sparc_pop_frame): Update.
4449 * rs6000-tdep.c (rs6000_pop_frame): Update.
4450 * remote.c (init_remote_state): Update.
4451 (remote_prepare_to_store): Update.
4452 * remote-vx.c (vx_prepare_to_store): Update.
4453 * remote-sds.c (sds_fetch_registers): Update.
4454 (sds_prepare_to_store): Update.
4455 * remote-array.c: Update.
4456 * regcache.c (init_legacy_regcache_descr): Update.
4457 (init_regcache_descr): Update.
4458 * mips-tdep.c (mips_eabi_extract_return_value): Update.
4459 (mips_o64_extract_return_value): Update.
4460 * irix5-nat.c (fetch_core_registers): Update.
4461 * irix4-nat.c (fetch_core_registers): Update.
4462 * i386-tdep.h: Update.
4463 * hppa-tdep.c (pa_do_registers_info): Update.
4464 (pa_do_strcat_registers_info): Update.
4465 * cris-tdep.c (cris_register_bytes_ok): Update.
4466 * config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
4467 * config/sparc/tm-sparc.h (DEPRECATED_REGISTER_BYTES): Update.
4468 * config/sparc/nm-sun4sol2.h (CHILD_PREPARE_TO_STORE): Update.
4469 * config/sparc/nm-sun4os4.h (CHILD_PREPARE_TO_STORE): Update.
4470 * config/sparc/nm-nbsd.h (CHILD_PREPARE_TO_STORE): Update.
4471 * config/sparc/tm-sp64.h (DEPRECATED_REGISTER_BYTES): Update.
4472 * config/s390/tm-s390.h (DEPRECATED_REGISTER_BYTES): Update.
4473 * config/pa/tm-hppa64.h (DEPRECATED_REGISTER_BYTES): Update.
4474 * config/mips/tm-mips.h (DEPRECATED_REGISTER_BYTES): Update.
4475 * config/mips/tm-irix6.h (DEPRECATED_REGISTER_BYTES): Update.
4476 * config/mips/tm-irix5.h (DEPRECATED_REGISTER_BYTES): Update.
4477 * config/m68k/tm-sun3.h (DEPRECATED_REGISTER_BYTES): Update.
4478 (REGISTER_BYTES_OK): Update.
4479 * config/m68k/nm-sun3.h (CHILD_PREPARE_TO_STORE): Update.
4480 * config/ia64/tm-ia64.h (DEPRECATED_REGISTER_BYTES): Update.
4481
4482 2003-05-16 Ian Lance Taylor <ian@airs.com>
4483
4484 * vax-tdep.c (INVALID_FLOAT, MAXLEN, NOPCODES): Don't define.
4485 (vax_print_insn, print_insn_arg): Remove static functions.
4486 (vax_gdbarch_init): Call set_gdbarch_print_insn with
4487 print_insn_vax from opcodes library.
4488 (_initialize_vax_tdep): Don't set deprecated_tm_print_insn.
4489
4490 2003-05-15 Andrew Cagney <cagney@redhat.com>
4491
4492 * arch-utils.h (legacy_breakpoint_from_pc): Delete declaration.
4493 * target.h (memory_breakpoint_from_pc): Delete declaration.
4494 * mem-break.c (memory_breakpoint_from_pc): Delete function.
4495 * arch-utils.c (legacy_breakpoint_from_pc): Delete function.
4496 * monitor.c (monitor_insert_breakpoint): Use
4497 gdbarch_breakpoint_from_pc instead of memory_breakpoint_from_pc.
4498 * gdbarch.sh (BREAKPOINT_FROM_PC): Do not provide a default.
4499 * gdbarch.h, gdbarch.c: Re-generate.
4500 * sparc-tdep.c (sparc_breakpoint_from_pc): New function.
4501 (sparc_gdbarch_init): Set breakpoint_from_pc to
4502 sparc_breakpoint_from_pc.
4503 * config/sparc/tm-sparc.h (BREAKPOINT): Delete macro.
4504 (BREAKPOINT_FROM_PC): Define.
4505 (sparc_breakpoint_from_pc): Declare.
4506 * hppa-tdep.c (hppa_breakpoint_from_pc): New function.
4507 * config/pa/tm-hppa.h (hppa_breakpoint_from_pc): Declare.
4508 (BREAKPOINT_FROM_PC): Define.
4509 (BREAKPOINT): Delete macro.
4510 * target.h: Update comment.
4511 * s390-tdep.c (s390_gdbarch_init): Update comments.
4512 * remote.c: Update comments.
4513 * remote-mips.c: Update comments.
4514 * proc-api.c (write_with_trace): Do not check for a breakpoint.
4515 * mem-break.c: Update comment.
4516 * ia64-tdep.c (IA64_BREAKPOINT): Rename BREAKPOINT.
4517 (ia64_memory_insert_breakpoint): Update.
4518 * config/sparc/tm-sparc.h: Update comment.
4519 * config/pa/tm-hppa64.h: Update comment.
4520 * rs6000-tdep.c (BIG_BREAKPOINT, LITTLE_BREAKPOINT): Delete macro.
4521 (rs6000_breakpoint_from_pc): Update.
4522 * mips-tdep.c (BIG_BREAKPOINT, LITTLE_BREAKPOINT): Delete macro.
4523 (PMON_BIG_BREAKPOINT, PMON_LITTLE_BREAKPOINT): Delete macro.
4524 (IDT_LITTLE_BREAKPOINT, IDT_LITTLE_BREAKPOINT): Delete macro.
4525 (MIPS16_LITTLE_BREAKPOINT, MIPS16_BIG_BREAKPOINT): Delete macro.
4526 (mips_breakpoint_from_pc): Update.
4527 (mips_dump_tdep): Update.
4528
4529 * symtab.h (DEPRECATED_SYMBOL_MATCHES_NAME): Delete macro.
4530 * minsyms.c (lookup_minimal_symbol): Inline
4531 DEPRECATED_SYMBOL_MATCHES_NAME. Replace STREQ with strcmp.
4532
4533 * c-lang.c (c_printstr): Delete "extern inspect_it" declaration.
4534 * p-valprint.c (pascal_object_print_value_fields): Ditto.
4535 * p-lang.c (pascal_printstr): Ditto.
4536 * objc-lang.c (objc_printstr): Ditto.
4537 * m2-lang.c (m2_printstr): Ditto.
4538 * jv-valprint.c (java_print_value_fields): Ditto.
4539 * f-lang.c (f_printstr): Ditto.
4540 * cp-valprint.c (cp_print_value_fields): Ditto. Include "valprint.h".
4541 * ada-valprint.c (inspect_it, repeat_count_threshold): Ditto, and
4542 for repeat_count_threshold.
4543 * Makefile.in (cp-valprint.o): Update dependencies.
4544
4545 2003-05-15 Jeff Johnston <jjohnstn@redhat.com>
4546
4547 * ia64-tdep.c: Increase max_skip_non_prologue_insns to 40.
4548 (examine_prologue): Support looking through leaf functions, knowing
4549 they start with mov r2,r12. Support skipping over indirect stores
4550 of the input registers. Upon hitting a non-nop branch instruction
4551 or predicated instruction, bail out by setting lim_pc to the current
4552 pc value in the loop. At the end, if the lim_pc value is still
4553 beyond our calculated value and we have trust_limit set,
4554 use the lim_pc value.
4555
4556 2003-05-15 Andrew Cagney <cagney@redhat.com>
4557
4558 * dummy-frame.h (deprecated_find_dummy_frame_regcache): Rename
4559 generic_find_dummy_frame.
4560 * dummy-frame.c (deprecated_find_dummy_frame_regcache): Update.
4561 (deprecated_generic_find_dummy_frame): Update.
4562 (deprecated_read_register_dummy): Update.
4563 * frame.c (deprecated_generic_get_saved_register): Update.
4564
4565 2003-05-15 Theodore A. Roth <troth@openavr.org>
4566
4567 * avr-tdep.c (avr_breakpoint_from_pc): New function.
4568 (avr_gdbarch_init): Set breakpoint_from_pc method.
4569
4570 2003-05-15 Andrew Cagney <cagney@redhat.com>
4571
4572 * regcache.c (build_regcache): Set deprecated_register_valid
4573 directly.
4574 (deprecated_grub_regcache_for_register_valid): Delete function.
4575 * regcache.h (deprecated_grub_regcache_for_register_valid): Delete
4576 declaration.
4577
4578 2003-05-15 David Carlton <carlton@bactrian.org>
4579
4580 Committed by Elena Zannoni <ezannoni@redhat.com>
4581 * symtab.c (lookup_symbol_aux): Delete calls to
4582 lookup_symbol_aux_minsyms.
4583 (lookup_symbol_aux_minsyms): Comment out function and
4584 prototype. Delete lookup by mangled name.
4585
4586 2003-05-14 Kevin Buettner <kevinb@redhat.com>
4587
4588 * dwarf2expr.c (new_dwarf_expr_context): Set ``stack_len'' to
4589 correctly indicate an empty stack and ``stack_allocated'' to the
4590 indicate the number of elements initially allocated.
4591 (dwarf_expr_grow_stack): Simplify method for computing new
4592 stack size. Don't loop infinitely if ``stack_len'' is zero.
4593 (execute_stack_op): Move ``ctx->in_reg'' initialization
4594 out of loop. Allow DW_OP_reg0 ... DW_OP_reg31 and DW_OP_regx to
4595 be used in conjuction with DW_OP_piece. Revise error message
4596 accordingly.
4597
4598 2003-05-14 Theodore A. Roth <troth@openavr.org>
4599
4600 * MAINTAINERS: Update my email address.
4601 * avr-tdep.c: Ditto.
4602
4603 2003-05-14 Elena Zannoni <ezannoni@redhat.com>
4604
4605 * symtab.h (enum domain_enum): Rename from namespace_enum.
4606 (UNDEF_DOMAIN, VAR_DOMAIN, STRUCT_DOMAIN, LABEL_DOMAIN,
4607 VARIABLES_DOMAIN, FUNCTIONS_DOMAIN, TYPES_DOMAIN, METHODS_DOMAIN):
4608 Rename from UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE,
4609 LABEL_NAMESPACE, VARIABLES_NAMESPACE, FUNCTIONS_NAMESPACE,
4610 TYPES_NAMESPACE, METHODS_NAMESPACE.
4611 (SYMBOL_NAMESPACE): Rename to SYMBOL_DOMAIN.
4612 (struct symbol, struct partial_symbol): Rename field
4613 'namespace_enum namespace' to 'domain_enum domain'.
4614 (PSYMBOL_NAMESPACE): Rename to PSYMBOL_DOMAIN.
4615 Delete old define kludge for namespace.
4616
4617 * ada-exp.y, ada-lang.c, ada-lang.h, alpha-tdep.c, arm-tdep.c,
4618 blockframe.c, c-exp.y, c-valprint.c, coffread.c, dbxread.c,
4619 dwarf2read.c, dwarfread.c, f-exp.y, gdbtypes.c, gdbtypes.h,
4620 gnu-v3-abi.c, hppa-tdep.c, hpread.c, jv-exp.y, jv-lang.c,
4621 language.c, linespec.c, m2-exp.y, m3-nat.c, mdebugread.c,
4622 mips-tdep.c, nlmread.c, objc-exp.y, objc-lang.c, objfiles.c,
4623 p-exp.y, p-valprint.c, parse.c, printcmd.c, scm-lang.c, source.c,
4624 stabsread.c, stack.c, symfile.c, symfile.h, symmisc.c, symtab.c,
4625 valops.c, values.c, xcoffread.c, xstormy16-tdep.c: Replace all
4626 occurrences of the above.
4627
4628 2003-05-14 Ian Lance Taylor <ian@airs.com>
4629
4630 * Makefile.in (install-only): Use $(SHELL) when running
4631 mkinstalldirs.
4632
4633 2003-05-13 Ian Lance Taylor <ian@airs.com>
4634
4635 * MAINTAINERS (write after approval): Add myself.
4636
4637 * ser-pipe.c (_initialize_ser_pipe): Correct call to memset--swap
4638 second and third arguments.
4639 * ser-tcp.c (_initialize_ser_tcp): Likewise.
4640 * ser-unix.c (_initialize_ser_hardwire): Likewise.
4641
4642 2003-05-13 Andrew Cagney <cagney@redhat.com>
4643
4644 * defs.h (store_address): Delete declaration.
4645 findvar.c (store_address): Delete function.
4646 * arm-tdep.c (arm_push_dummy_call): Replace store_address with
4647 store_unsigned_integer.
4648 * xstormy16-tdep.c (xstormy16_address_to_pointer): Ditto.
4649 * v850-tdep.c (v850_push_arguments): Ditto.
4650 * sparc-tdep.c (sparc_get_saved_register): Ditto.
4651 * sh-tdep.c (sh64_get_saved_register): Ditto.
4652 * rs6000-tdep.c (rs6000_push_arguments): Ditto.
4653 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): Ditto.
4654 * mips-tdep.c (mips_eabi_push_arguments): Ditto.
4655 (mips_get_saved_register): Ditto.
4656 * ia64-tdep.c (ia64_get_saved_register): Ditto.
4657 (find_func_descr, ia64_push_arguments): Ditto.
4658 * i386-tdep.c (i386_push_arguments): Ditto.
4659 * hpux-thread.c (hpux_thread_fetch_registers): Ditto.
4660 * frv-tdep.c (frv_push_arguments): Ditto.
4661 * frame.c (legacy_saved_regs_prev_register): Ditto.
4662 (deprecated_generic_get_saved_register): Ditto.
4663 * findvar.c (unsigned_address_to_pointer): Ditto.
4664 * dwarf2read.c (dwarf2_const_value): Ditto.
4665 * arm-linux-tdep.c (arm_linux_push_arguments): Ditto.
4666 * alpha-tdep.c (alpha_push_arguments): Ditto.
4667
4668 2003-05-12 J. Brobecker <brobecker@gnat.com>
4669
4670 * NEWS: Mention that the hppa-hpux port has been partially
4671 multiarched (32bit ABIT only, so far).
4672
4673 2003-05-11 Andrew Cagney <cagney@redhat.com>
4674
4675 * Makefile.in (mi-symbol-cmds.o): Rename mi-cmd-symbol.
4676 * config/djgpp/fnchange.lst: Rename include/xtensa-isa-internal.h,
4677 include/xtensa-isa.h, sim/testsuite/sim/arm/misaligned1.ms,
4678 sim/testsuite/sim/arm/misaligned2.ms, and
4679 sim/testsuite/sim/arm/misaligned3.ms.
4680 * disasm.h (struct ui_file): Add opaque struct declaration.
4681 * config/pa/tm-hppa64.h (struct type, struct frame_info): Ditto.
4682 * frame.h (struct ui_file): Ditto.
4683
4684 2003-05-11 Mark Kettenis <kettenis@gnu.org>
4685
4686 * value.h: Pretty print.
4687
4688 2003-05-10 Mark Kettenis <kettenis@gnu.org>
4689
4690 * config/i386/tm-linux.h (I386_GNULINUX_TARGET): Remove define.
4691
4692 2003-05-08 Andrew Cagney <cagney@redhat.com>
4693
4694 * regcache.h (max_register_size): Delete declaration.
4695 * regcache.c (max_register_size): Delete function.
4696 (struct regcache_descr): Delete field "max_register_size".
4697 (init_regcache_descr, init_legacy_regcache_descr): Assert that all
4698 registers fit in MAX_REGISTER_SIZE.
4699 (regcache_save): Replace max_register_size with MAX_REGISTER_SIZE.
4700 (regcache_restore, regcache_xfer_part, regcache_dump): Ditto.
4701 * thread-db.c: Replace max_register_size with MAX_REGISTER_SIZE.
4702 * sh-tdep.c, rom68k-rom.c, remote-sim.c, remote-mips.c: Ditto.
4703 * remote-e7000.c, monitor.c, mipsv4-nat.c, mips-nat.c: Ditto.
4704 * m68klinux-nat.c, lynx-nat.c, irix4-nat.c: Ditto.
4705 * hpux-thread.c, hppah-nat.c, hppab-nat.c, hppa-tdep.c: Ditto.
4706 * dve3900-rom.c, hppa-tdep.c: Ditto.
4707
4708 2003-05-08 David Carlton <carlton@math.stanford.edu>
4709
4710 * valops.c (push_word): Fix typo.
4711
4712 2003-05-08 Andrew Cagney <cagney@redhat.com>
4713
4714 * gdbarch.sh: Delete references to MAX_REGISTER_RAW_SIZE.
4715 * gdbarch.h: Re-generate.
4716 * defs.h (MAX_REGISTER_RAW_SIZE): Delete macro.
4717 (legacy_max_register_raw_size): Delete declaration.
4718 * regcache.c (legacy_max_register_raw_size): Delete function.
4719 * valops.c: Replace MAX_REGISTER_RAW_SIZE with MAX_REGISTER_SIZE.
4720 * target.c, stack.c, sparc-tdep.c, sh-tdep.c: Ditto.
4721 * rs6000-tdep.c, rs6000-nat.c, remote.c, remote-sim.c: Ditto.
4722 * remote-rdp.c, remote-array.c, regcache.c: Ditto.
4723 * ppc-linux-nat.c, monitor.c, mn10300-tdep.c: Ditto.
4724 * mips-tdep.c, mips-linux-tdep.c, m68klinux-nat.c: Ditto.
4725 * infptrace.c, ia64-tdep.c, i386-tdep.c, frame.c: Ditto.
4726 * findvar.c, dwarf2cfi.c: Ditto.
4727
4728 2003-05-08 Andrew Cagney <cagney@redhat.com>
4729
4730 * mips-tdep.c (read_signed_register): New function, moved to here
4731 from "regcache.c".
4732 (read_signed_register_pid): Ditto.
4733 * regcache.c (read_signed_register_pid): Delete function, moved to
4734 "mips-tdep.c".
4735 (read_signed_register): Ditto.
4736 * regcache.h (read_signed_register): Delete declaration.
4737 (read_signed_register_pid): Delete declaration.
4738
4739 2003-05-08 Andrew Cagney <cagney@redhat.com>
4740
4741 * gdbarch.sh: Add comments on MAX_REGISTER_SIZE.
4742 * gdbarch.h: Re-generate.
4743 * defs.h (MAX_REGISTER_VIRTUAL_SIZE): Delete macro.
4744 (legacy_max_register_virtual_size): Delete declaration.
4745 * infcmd.c (default_print_registers_info): Use MAX_REGISTER_SIZE.
4746 * d10v-tdep.c (d10v_print_registers_info): Ditto.
4747 * tracepoint.c (memrange_sortmerge): Ditto.
4748 * sparc-tdep.c (sparc_print_registers): Ditto.
4749 * regcache.c (legacy_max_register_virtual_size): Delete function.
4750
4751 2002-05-08 J. Brobecker <brobecker@gnat.com>
4752
4753 * fork-child.c (escape_bang_in_quoted_argument): New function.
4754 (fork_inferior): Escape '!' characters in quoted arguments
4755 only when needed.
4756
4757 2003-05-08 J. Brobecker <brobecker@gnat.com>
4758
4759 * dwarf2read.c (set_cu_language): Set the language to "minimal" if
4760 the language of the CU is not currently supported by GDB.
4761
4762 2003-05-08 J. Brobecker <brobecker@gnat.com>
4763
4764 * defs.h (language): Add language_minimal enum value.
4765 * c-lang.c (minimal_language_defn): New language definition.
4766 (_initialize_c_language): Add the new minimal language to the list
4767 of languages known to GDB.
4768
4769 2003-05-08 Kevin Buettner <kevinb@redhat.com>
4770
4771 * frame.c (get_frame_type): Don't attempt to lazily initialize
4772 frame's unwinder for legacy frames.
4773
4774 2003-05-07 Andrew Cagney <cagney@redhat.com>
4775
4776 * ia64-tdep.c (ia64_remote_translate_xfer_address): Add "gdbarch"
4777 and "regcache" parameters.
4778 * avr-tdep.c (avr_remote_translate_xfer_address): Ditto.
4779
4780 2003-05-07 Jeff Johnston <jjohnstn@redhat.com>
4781
4782 * dwarf2read.c (dwarf_decode_lines): Only use output of
4783 check_cu_functions() when calling record_line(). Do not update
4784 the current address.
4785
4786 2003-05-07 Andrew Cagney <cagney@redhat.com>
4787
4788 * fork-child.c (startup_inferior): Delete #ifdef STARTUP_INFERIOR
4789 code.
4790
4791 2003-05-07 Jim Blandy <jimb@redhat.com>
4792
4793 Rename commands 'maint list symtabs' and 'maint list psymtabs' to
4794 'maint info symtabs' and 'maint info psymtabs'.
4795 * symmisc.c (maintenance_info_symtabs, maintenance_info_psymtabs):
4796 Renamed from maintenance_list_symtabs and maintenance_list_psymtabs.
4797 * symtab.h (maintenance_info_symtabs, maintenance_info_psymtabs):
4798 Declarations updated.
4799 * maint.c (maintenance_list_command): Delete.
4800 (_initialize_maint_cmds): Update calls to add_cmd.
4801 * gdbcmd.h (maintenancelistlist): Delete declaration.
4802 * cli/cli-cmds.c (maintenancelistlist): Delete.
4803 (init_cmd_lists): Don't initialize it.
4804 * cli/cli-cmds.h (maintenancelistlist): Delete declaration.
4805
4806 2003-05-07 Andrew Cagney <cagney@redhat.com>
4807
4808 * d10v-tdep.c (remote_d10v_translate_xfer_address): Add
4809 "regcache".
4810 (d10v_print_registers_info): Update.
4811 (d10v_dmap_register, d10v_imap_register): Delete functions.
4812 (struct gdbarch_tdep): Add "regcache" parameter to "dmap_register"
4813 and "imap_register".
4814 (d10v_ts2_dmap_register, d10v_ts2_imap_register): Add "regcache".
4815 (d10v_ts3_dmap_register, d10v_ts3_imap_register): Add "regcache".
4816 * arch-utils.c (generic_remote_translate_xfer_address): Add
4817 "regcache" and "gdbarch" parameters.
4818 * gdbarch.sh (REMOTE_TRANSLATE_XFER_ADDRESS): Add "regcache"
4819 parameter. Change class to multi-arch.
4820 * gdbarch.h, gdbarch.c: Re-generate.
4821 * remote.c (remote_xfer_memory): Use
4822 gdbarch_remote_translate_xfer_address.
4823
4824 2003-05-07 Jeff Johnston <jjohnstn@redhat.com>
4825
4826 * infrun.c (prev_pc): Move declaration ahead of proceed().
4827 (proceed): Refresh prev_pc value before resuming.
4828 (stop_stepping): Remove code to refresh prev_pc.
4829
4830 2003-05-06 Kris Warkentin <kewarken@qnx.com>
4831
4832 * nto-tdep.c: Removed stray comment.
4833
4834 2003-05-06 Kris Warkentin <kewarken@qnx.com>
4835
4836 * i386-nto-tdep.c: Fix old K&R function definitions.
4837 * nto-tdep.c: Likewise and change stat.h include to gdb_stat.h.
4838 Also change add_show_from_set() call to add_setshow_cmd().
4839 * nto-tdep.h: Remove PARAMS and grep ^func ARI hits.
4840
4841 2003-05-05 Andrew Cagney <cagney@redhat.com>
4842
4843 * dummy-frame.c: Include "command.h" and "gdbcmd.h".
4844 (fprint_dummy_frames): New function.
4845 (maintenance_print_dummy_frames): New function.
4846 (_initialize_dummy_frame): Add command "maint print dummy-frames".
4847 * frame.c (fprint_frame_id): Make global.
4848 * frame.h (fprint_frame_id): Declare.
4849 * Makefile.in (dummy-frame.o): Update dependencies.
4850
4851 2003-05-05 Andrew Cagney <cagney@redhat.com>
4852
4853 * gdbarch.sh (DEPRECATED_REGISTER_SIZE): Rename REGISTER_SIZE.
4854 (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Rename
4855 SIZEOF_CALL_DUMMY_WORDS.
4856 (DEPRECATED_CALL_DUMMY_WORDS): Rename CALL_DUMMY_WORDS.
4857 (DEPRECATED_FIX_CALL_DUMMY): Rename FIX_CALL_DUMMY.
4858 (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET): Rename
4859 CALL_DUMMY_BREAKPOINT_OFFSET.
4860 (DEPRECATED_CALL_DUMMY_START_OFFSET): Rename
4861 CALL_DUMMY_START_OFFSET.
4862 (DEPRECATED_CALL_DUMMY_LENGTH): Rename CALL_DUMMY_LENGTH.
4863 * gdbarch.h, gdbarch.c: Re-generate.
4864 * alpha-tdep.c, alphafbsd-tdep.c, arm-linux-tdep.c: Update.
4865 * arm-tdep.c, avr-tdep.c, breakpoint.c, cris-tdep.c: Update.
4866 * dummy-frame.c, dummy-frame.h, frv-tdep.c, gdbarch.c: Update.
4867 * gdbarch.h, gdbarch.sh, h8300-tdep.c, hppa-tdep.c: Update.
4868 * i386-tdep.c, ia64-tdep.c, infcall.c, inferior.h: Update.
4869 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Update.
4870 * mips-tdep.c, mn10300-tdep.c, ns32k-tdep.c: Update.
4871 * rs6000-tdep.c, s390-tdep.c, sh-tdep.c, sol-thread.c: Update.
4872 * sparc-tdep.c, target.c, v850-tdep.c, valops.c: Update.
4873 * vax-tdep.c, x86-64-tdep.c, xstormy16-tdep.c: Update.
4874 * config/ia64/tm-ia64.h, config/m68k/tm-vx68.h: Update.
4875 * config/mips/tm-mips.h, config/pa/nm-hppah.h: Update.
4876 * config/pa/tm-hppa.h, config/pa/tm-hppa64.h: Update.
4877 * config/s390/tm-s390.h, config/sparc/tm-sp64.h: Update.
4878 * config/sparc/tm-sparc.h: Update.
4879
4880 2003-05-05 Kris Warkentin <kewarken@qnx.com>
4881
4882 * configure.tgt: Add i[3456]86-*-nto*.
4883 * i386-nto-tdep.c: New file. i386 specific support for QNX Neutrino.
4884 * nto-tdep.c: New file. Neutrino target support routines.
4885 * nto-tdep.h: New file. Neutrino target header.
4886 * config/tm-qnxnto.h: New file.
4887 * config/i386/i386nto.mt: New file.
4888 * config/i386/tm-i386nto.h: New file.
4889
4890 2003-05-04 Andrew Cagney <cagney@redhat.com>
4891
4892 * gdbthread.h (save_infrun_state): Drop prev_func_name parameter.
4893 (load_infrun_state): Ditto.
4894 (struct thread_info): Drop "prev_func_name" field.
4895 * thread.c (load_infrun_state): Update.
4896 (save_infrun_state): Update.
4897 * infrun.c (prev_func_name): Delete variable.
4898 (init_wait_for_inferior): Do not clear prev_func_name.
4899 (stop_stepping, keep_going, context_switch): Do not swap
4900 prev_func_name.
4901 (handle_inferior_event, check_sigtramp2): Use pc_in_sigtramp
4902 instead of PC_IN_SIGTRAMP.
4903
4904 2003-05-04 Andrew Cagney <cagney@redhat.com>
4905
4906 * sentinel-frame.c (sentinel_frame_prev_register): Replace
4907 REGISTER_BYTE with register_offset_hack.
4908 * regcache.c (init_regcache_descr): When REGISTER_BYTE_P, check
4909 that REGISTER_BYTE is consistent with the regcache.
4910 * gdbarch.sh (REGISTER_BYTE): Add a predicate.
4911 * gdbarch.h, gdbarch.c: Regenerate.
4912
4913 2003-05-04 Mark Kettenis <kettenis@gnu.org>
4914
4915 * i387-tdep.c (fxsave_offset): Add entries for %xmm8-%xmm15.
4916 (FXSAVE_ADDR, i387_supply_fxsave): Add support for %xmm8-%xmm15.
4917
4918 * i386-linux-nat.c (supply_gregset): Remove unnecessary casts.
4919
4920 2003-05-03 J. Brobecker <brobecker@gnat.com>
4921
4922 From Thierry Schneider <tpschneider1@yahoo.com>
4923 * Makfile.in (SUBDIR_MI_OBS): Add dependency on mi-cmd-symbol.o.
4924 (SUBDIR_MI_SRCS): Add mi-cmd-symbol.c.
4925 (mi-cmd-symbol.o): Add rule.
4926
4927 2003-05-03 Andrew Cagney <cagney@redhat.com>
4928
4929 * gdbarch.sh (PUSH_DUMMY_CODE): New architecture method, add
4930 comments noteing that it replaces the old FIX_CALL_DUMMY code.
4931 * gdbarch.h, gdbarch.c: Re-generate.
4932 * d10v-tdep.c (d10v_push_dummy_code): New function.
4933 (d10v_gdbarch_init): Set push_dummy_code.
4934 * infcall.c (legacy_push_dummy_code): New function.
4935 (generic_push_dummy_code): New function.
4936 (push_dummy_code): New function.
4937 (call_function_by_hand): Call push_dummy_code. Pass bp_addr,
4938 instead of dummy_addr, to push_dummy_call. Move call to
4939 generic_save_call_dummy_addr to outside of CALL_DUMMY_LOCATION
4940 switch.
4941 * sparc-tdep.c (sparc_gdbarch_init): Mention push_dummy_code.
4942
4943 2003-05-03 Andrew Cagney <cagney@redhat.com>
4944
4945 * disasm.h (print_insn): Declare.
4946 * disasm.c (init_gdb_disassemble_info): New function.
4947 (gdb_disassembly): Call init_gdb_disassemble_info.
4948 (gdb_print_insn): New function.
4949 * v850-tdep.c (v850_scan_prologue): Call gdb_print_insn, instead
4950 of TARGET_PRINT_INSN. Send debug info to "gdb_stdlog".
4951 * mcore-tdep.c: Include "disasm.h"
4952 (mcore_dump_insn): Call gdb_print_insn, instead of TARGET_PRINT_INSN.
4953 * d10v-tdep.c: Include "disasm.h".
4954 (display_trace): Call gdb_print_insn, instead of print_insn.
4955 (print_insn): Delete function.
4956 * printcmd.c: Include "disasm.h".
4957 (print_insn): Delete function.
4958 (print_formatted): Call gdb_print_insn, instead of print_insn.
4959 * Makefile.in (printcmd.o): Update dependencies.
4960 (mcore-tdep.o, d10v-tdep.o): Ditto.
4961
4962 2003-05-02 Andrew Cagney <cagney@redhat.com>
4963
4964 * std-regs.c (value_of_builtin_frame_pc_reg): Delete #ifdef
4965 PC_REGNUM, re-indent.
4966 * stack.c (frame_info): Use "pc" for the name of get_frame_pc when
4967 PC_REGNUM isn't set.
4968
4969 * gdbarch.sh (REGISTER_SIZE, REGISTER_BYTES): Make optional.
4970 * gdbarch.h, gdbarch.c: Re-generate.
4971 * d10v-tdep.c (d10v_gdbarch_init): Do not set register_size,
4972 register_virtual_size, pc_regnum, or register_bytes.
4973 (D10V_PC_REGNUM): Rename _PC_REGNUM.
4974 (d10v_register_type): Use D10V_PC_REGNUM.
4975 (d10v_print_registers_info, d10v_read_pc): Ditto.
4976 (d10v_write_pc, d10v_eva_prepare_to_trace): Ditto.
4977 (d10v_unwind_pc, d10v_frame_prev_register): Ditto.
4978
4979 2003-05-02 David Carlton <carlton@bactrian.org>
4980
4981 * objfiles.c (allocate_objfile): For anonymous objfiles, allocate
4982 the name with mstrsave.
4983
4984 2003-05-02 Elena Zannoni <ezannoni@redhat.com>
4985
4986 * charset.c (GDB_DEFAULT_TARGET_CHARSET,
4987 GDB_DEFAULT_HOST_CHARSET): Move to earlier in the file.
4988 (host_charset_name, target_charset_name): New vars for use by
4989 set/show commands.
4990 (host_charset_enum, target_charset_enum): New enums for set/show
4991 commands.
4992 (set_charset_sfunc, set_host_charset_sfunc,
4993 set_target_charset_sfunc): New functions.
4994 (set_host_charset, set_target_charset): Make static.
4995 (list_charsets, set_host_charset_command,
4996 set_target_charset_command): Delete functions.
4997 (show_charset_command): Rewrite as....
4998 (show_charset): Hook this up with the set/show command mechanism.
4999 (_initialize_charset): Change names of charsets to match the
5000 set/show enums. Use host_charset_name and target_charset_name.
5001 Use set/show mechanism for charset, host-charset, target-charset
5002 commands. Do not make 'show host-charset' and 'show
5003 target-charset' be aliases of 'show charset'.
5004
5005 * charset.h (set_host_charset, set_target_charset): Don't export,
5006 they are not used outside the file.
5007
5008 2003-05-01 Andrew Cagney <cagney@redhat.com>
5009
5010 * disasm.c (gdb_disassemble_from_exec): Delete global variable.
5011 (gdb_disassembly): Make "di" non static, always initialize and
5012 cleanup. Always use dis_asm_read_memory.
5013 (gdb_dis_asm_read_memory): Delete function.
5014
5015 2003-05-01 Andrew Cagney <cagney@redhat.com>
5016
5017 * d10v-tdep.c (d10v_frame_align): Replace d10v_stack_align.
5018 (d10v_gdbarch_init): Set frame_align instead of stack_align.
5019
5020 2003-04-30 Andrew Cagney <cagney@redhat.com>
5021
5022 * gdbarch.sh (deprecated_tm_print_insn_info): Rename
5023 "tm_print_insn_info".
5024 (TARGET_PRINT_INSN_INFO): Delete macro.
5025 (dis_asm_read_memory): Delete function declaration.
5026 (dis_asm_memory_error, dis_asm_print_address): Ditto.
5027 (tm_print_insn_info): Delete variable definition.
5028 (_initialize_gdbarch): Do not initialize "tm_print_insn_info".
5029 * gdbarch.h, gdbarch.c: Re-generate.
5030 * d10v-tdep.c (display_trace): Replace "tm_print_insn_info" with
5031 "deprecated_tm_print_insn_info".
5032 * mcore-tdep.c (mcore_dump_insn): Ditto.
5033 * mips-tdep.c (mips_gdbarch_init): Ditto.
5034 * sparc-tdep.c (_initialize_sparc_tdep): Ditto.
5035 * v850-tdep.c (v850_scan_prologue, v850_gdbarch_init): Ditto.
5036 * ia64-tdep.c (_initialize_ia64_tdep): Ditto.
5037 * printcmd.c (print_insn): Use "deprecated_tm_print_insn_info"
5038 instead of TARGET_PRINT_INSN_INFO, add comment.
5039 * s390-tdep.c (s390_get_frame_info): Instead of
5040 "dis_asm_read_memory", use "deprecated_tm_print_insn_info".
5041 (s390_check_function_end, s390_is_sigreturn): Ditto.
5042 * corefile.c (dis_asm_read_memory): Move to "disasm.c".
5043 (dis_asm_memory_error, dis_asm_print_address): Ditto.
5044 * disasm.c: Include "gdbcore.h".
5045 (_initialize_disasm): New function, initialize
5046 "deprecated_tm_print_insn_info".
5047 (deprecated_tm_print_insn_info): New variable.
5048 (dis_asm_read_memory): Moved from "corefile.c", made static.
5049 (dis_asm_print_address, dis_asm_memory_error): Ditto.
5050 * Makefile.in (disasm.o): Update dependencies.
5051
5052 2003-04-30 Andrew Cagney <cagney@redhat.com>
5053
5054 * sparc-tdep.c (SPARC_HAS_FPU): When multi-arch, define as 1.
5055
5056 2003-04-29 Adam Fedor <fedor@gnu.org>
5057
5058 * eval.c (evaluate_subexp_standard): Handle ObjC ops.
5059 * infcall.c (find_function_addr): Make non-static.
5060 * infcall.h (find_function_addr): Declare.
5061 * Makefile.in (eval.o): Update dependencies.
5062
5063 2003-04-28 Adam Fedor <fedor@gnu.org>
5064
5065 * symtab.c (symbol_find_demangled_name): Check for and demangle
5066 ObjC symbols.
5067 (symbol_init_demangled_name): Init for language_objc as well.
5068
5069 2003-04-28 Andrew Cagney <cagney@redhat.com>
5070
5071 * gdbarch.sh (DEPRECATED_TARGET_READ_FP): Replace TARGET_READ_FP.
5072 (DEPRECATED_FP_REGNUM): Replace FP_REGNUM.
5073 * gdbarch.h, gdbarch.c: Re-generate.
5074 * infcall.c (call_function_by_hand): Use DEPRECATED_FP_REGNUM,
5075 DEPRECATED_TARGET_READ_FP, or "sp" to create the dummy frame ID.
5076 * inferior.h (deprecated_read_fp): Rename read_fp.
5077 (generic_target_read_fp): Delete declaration.
5078 * regcache.c (generic_target_read_fp): Delete function.
5079 (deprecated_read_fp): Replace read_fp, use
5080 DEPRECATED_TARGET_READ_FP or DEPRECATED_FP_REGNUM.
5081 * d10v-tdep.c (d10v_read_fp): Delete function.
5082 (d10v_gdbarch_init): Do not set deprecated_read_fp.
5083
5084 * sparc-tdep.c (sparc_gdbarch_init): Do not set
5085 deprecated_target_read_fp to generic_target_read_fp.
5086 * sh-tdep.c (sh_gdbarch_init): Ditto.
5087 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5088 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
5089 * frv-tdep.c (frv_gdbarch_init): Ditto.
5090
5091 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set
5092 deprecated_fp_regnum.
5093 * x86-64-tdep.c (x86_64_init_abi): Ditto.
5094 * vax-tdep.c (vax_gdbarch_init): Ditto.
5095 * v850-tdep.c (v850_gdbarch_init): Ditto.
5096 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
5097 * sh-tdep.c (sh_gdbarch_init): Ditto.
5098 * s390-tdep.c (s390_gdbarch_init): Ditto.
5099 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5100 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
5101 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
5102 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
5103 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
5104 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
5105 * i386-tdep.c (i386_gdbarch_init): Ditto.
5106 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
5107 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
5108 * frv-tdep.c (frv_gdbarch_init): Ditto.
5109 * cris-tdep.c (cris_gdbarch_init): Ditto.
5110 * avr-tdep.c (avr_gdbarch_init): Ditto.
5111 * arm-tdep.c (arm_gdbarch_init): Ditto.
5112 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
5113
5114 * x86-64-tdep.c (x86_64_init_abi): Set deprecated_target_read_fp.
5115 * v850-tdep.c (v850_gdbarch_init): Ditto.
5116 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
5117 * sh-tdep.c (sh_gdbarch_init): Ditto.
5118 * s390-tdep.c (s390_gdbarch_init): Ditto.
5119 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5120 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
5121 * mips-tdep.c (mips_gdbarch_init): Ditto.
5122 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
5123 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
5124 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
5125 * frv-tdep.c (frv_gdbarch_init): Ditto.
5126 * avr-tdep.c (avr_gdbarch_init): Ditto.
5127 * arm-tdep.c (arm_gdbarch_init): Ditto.
5128
5129 * vax-tdep.c (vax_frame_init_saved_regs): Replace FP_REGNUM with
5130 DEPRECATED_FP_REGNUM.
5131 (vax_push_dummy_frame, vax_pop_frame): Ditto.
5132 * std-regs.c (value_of_builtin_frame_fp_reg): Ditto.
5133 * sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
5134 (sparc_push_dummy_frame, sparc64_read_fp): Ditto.
5135 (sparc32_register_virtual_type): Ditto.
5136 * sh-tdep.c (sh64_frame_chain): Ditto.
5137 (sh64_get_saved_register, sh64_pop_frame): Ditto.
5138 (sh_nofp_frame_init_saved_regs): Ditto.
5139 (sh64_nofp_frame_init_saved_regs): Ditto.
5140 (sh_fp_frame_init_saved_regs): Ditto.
5141 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
5142 * remote-e7000.c (fetch_regs_from_dump): Ditto.
5143 * procfs.c (procfs_fetch_registers): Ditto.
5144 (procfs_store_registers): Ditto.
5145 * ns32knbsd-nat.c (fetch_inferior_registers): Ditto.
5146 (store_inferior_registers, fetch_core_registers): Ditto.
5147 (fetch_kcore_registers, clear_regs): Ditto.
5148 * ns32k-tdep.c (ns32k_frame_init_saved_regs): Ditto.
5149 (ns32k_push_dummy_frame, ns32k_pop_frame): Ditto.
5150 * nlm/i386.h (DEPRECATED_FP_REGNUM): Ditto.
5151 * nlm/i386.c (do_status): Ditto.
5152 * mipsv4-nat.c (supply_gregset): Ditto.
5153 * mips-tdep.c: Ditto for comments.
5154 * mips-nat.c (fetch_inferior_registers): Ditto.
5155 (store_inferior_registers, fetch_core_registers): Ditto.
5156 * m68k-tdep.c (m68k_push_dummy_frame): Ditto.
5157 (m68k_pop_frame, m68k_frame_init_saved_regs): Ditto.
5158 * i386-tdep.c (i386_frame_init_saved_regs): Ditto.
5159 (i386_do_pop_frame, i386_register_type): Ditto.
5160 * hppa-tdep.c (hppa_frame_chain): Ditto.
5161 (hppa_push_dummy_frame, find_dummy_frame_regs): Ditto.
5162 (hppa_pop_frame, hppa_read_fp): Ditto.
5163 (skip_prologue_hard_way, hppa_frame_find_saved_regs): Ditto.
5164 * cris-tdep.c (cris_examine, cris_pop_frame): Ditto.
5165 * config/vax/nm-vax.h (REGISTER_U_ADDR): Ditto.
5166 * config/sparc/tm-sparc.h (DEPRECATED_FP_REGNUM): Ditto.
5167 * config/sparc/tm-sp64.h (DEPRECATED_FP_REGNUM): Ditto.
5168 * config/s390/tm-s390.h (DEPRECATED_FP_REGNUM): Ditto.
5169 * config/pa/tm-hppa64.h (DEPRECATED_FP_REGNUM): Ditto.
5170 * config/ia64/tm-ia64.h (DEPRECATED_FP_REGNUM): Ditto.
5171 * blockframe.c: Ditto for comments.
5172 * arch-utils.h: Ditto for comments.
5173 * arch-utils.c (legacy_virtual_frame_pointer): Ditto.
5174 * alphanbsd-tdep.c (fetch_core_registers): Ditto.
5175 * alphabsd-nat.c (fetch_inferior_registers): Ditto.
5176 * alpha-tdep.h: Ditto for comments.
5177 * alpha-tdep.c (alpha_cannot_fetch_register): Ditto.
5178 (alpha_cannot_store_register): Ditto.
5179 (alpha_push_dummy_frame): Ditto.
5180 * alpha-nat.c (supply_gregset): Ditto.
5181
5182 * config/sparc/tm-sp64.h (DEPRECATED_TARGET_READ_FP): Update.
5183 * config/pa/tm-hppa64.h (DEPRECATED_TARGET_READ_FP): Update.
5184 * config/sparc/tm-sparc.h: Update comment.
5185
5186 * hppa-tdep.c (hppa_init_extra_frame_info): Use
5187 deprecated_read_fp instead of TARGET_READ_FP.
5188 (hppa_init_extra_frame_info, hppa_frame_chain): Ditto.
5189 (hppa_push_dummy_frame, hppa_read_fp): Ditto.
5190 * sparc-tdep.c (sparc_init_extra_frame_info): Use
5191 deprecated_read_fp instead of read_fp.
5192 * s390-tdep.c (s390_push_arguments): Ditto.
5193 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
5194 * frame.h: Ditto in comments.
5195 * frame.c (legacy_get_prev_frame): Ditto.
5196 * dummy-frame.c (dummy_frame_this_id): Ditto.
5197 * arm-tdep.c (arm_init_extra_frame_info): Ditto.
5198
5199 2003-04-28 Andrew Cagney <cagney@redhat.com>
5200
5201 * gdbarch.sh (deprecated_tm_print_insn): Rename tm_print_insn.
5202 * gdbarch.h, gdbarch.c: Re-generate.
5203 * xstormy16-tdep.c (_initialize_xstormy16_tdep): Update.
5204 * vax-tdep.c (_initialize_vax_tdep): Update.
5205 * v850-tdep.c (_initialize_v850_tdep): Update.
5206 * sparc-tdep.c (_initialize_sparc_tdep): Update.
5207 * s390-tdep.c (_initialize_s390_tdep): Update.
5208 * ns32k-tdep.c (_initialize_ns32k_tdep): Update.
5209 * mn10300-tdep.c (_initialize_mn10300_tdep): Update.
5210 * mips-tdep.c (_initialize_mips_tdep): Update.
5211 * mcore-tdep.c (_initialize_mcore_tdep): Update.
5212 * m68k-tdep.c (_initialize_m68k_tdep): Update.
5213 * ia64-tdep.c (_initialize_ia64_tdep): Update.
5214 * hppa-tdep.c (_initialize_hppa_tdep): Update.
5215 * h8300-tdep.c (_initialize_h8300_tdep): Update.
5216 * frv-tdep.c (_initialize_frv_tdep): Update.
5217 * cris-tdep.c (cris_delayed_get_disassembler): Update.
5218 (_initialize_cris_tdep): Update.
5219 * arch-utils.c (legacy_print_insn): Update.
5220 * alpha-tdep.c (_initialize_alpha_tdep): Update.
5221
5222 2003-04-26 Adam Fedor <fedor@gnu.org>
5223
5224 * linespec.c (decode_objc): New function to decode ObjC calls
5225 (decode_line_1): Check for ObjC calls (using decode_objc)
5226 * Makefile (linespec.o): Update dependencies.
5227
5228 2003-04-26 Daniel Jacobowitz <drow@mvista.com>
5229
5230 * breakpoint.h (struct breakpoint_ops): New.
5231 (struct breakpoint): Add ops member.
5232
5233 * breakpoint.c (print_bp_stop_message, print_one_breakpoint)
5234 (mention): Use new breakpoint ops member.
5235 (set_raw_breakpoint): Initialize ops field to NULL.
5236 (print_exception_catchpoint, print_one_exception_catchpoint)
5237 (print_mention_exception_catchpoint, handle_gnu_v3_exceptions): New.
5238 (gnu_v3_exception_catchpoint_ops): New.
5239 (catch_exception_command_1): Call handle_gnu_v3_exceptions.
5240
5241 2003-04-25 Adam Fedor <fedor@gnu.org>
5242
5243 * Makefile.in (COMMON_OBS): Add objc-lang.o
5244
5245 2003-04-25 Andrew Cagney <cagney@redhat.com>
5246
5247 * d10v-tdep.c (print_insn): Delete function.
5248 (display_trace): Use TARGET_PRINT_INSN.
5249 (_initialize_d10v_tdep): Do not set tm_print_insn.
5250 (d10v_gdbarch_init): Set print_insn.
5251
5252 2003-04-25 Andrew Cagney <cagney@redhat.com>
5253
5254 * d10v-tdep.c (d10v_extract_return_value): Delete call to printf.
5255 (_initialize_d10v_tdep): Use add_setshow_boolean_cmd.
5256 (d10v_frame_unwind_cache): Use FRAME_OBSTACK_CALLOC.
5257 (NR_DMAP_REGS, A0_REGNUM): Delete, replaced by ...
5258 (nr_dmap_regs, a0_regnum): ... new functions.
5259 (d10v_print_registers_info): Use a0_regnum, use register_size.
5260 (d10v_register_byte): Delete function.
5261 (d10v_register_raw_size): Delete function.
5262 (d10v_register_type): Use a0_regnum.
5263 (d10v_print_registers_info): Use a0_regnum.
5264 (D10V_SP_REGNUM): Rename _SP_REGNUM, replace it and SP_REGNUM.
5265 (d10v_gdbarch_init): Do not set register_byte or
5266 register_raw_size, use D10V_SP_REGNUM to set sp_regnum.
5267 (d10v_pointer_to_address): Use extract_unsigned_integer instead of
5268 extract_address.
5269 (trace_command): Use XCALLOC.
5270 (print_insn): Delete reference to tm_print_insn.
5271 (saved_regs_unwinder): Use store_unsigned_integer instead of
5272 store_address.
5273 * frame.h (FRAME_OBSTACK_CALLOC): Define
5274
5275 2003-04-25 David Carlton <carlton@bactrian.org>
5276
5277 * config/djgpp/fnchange.lst: Add testsuite/gdb.c++/maint.exp.
5278
5279 2003-04-24 Adam Fedor <fedor@gnu.org>
5280
5281 * objc-lang.c: Include "valprint.h"
5282 * Makefile.in (objc-lang.o): Update dependencies.
5283
5284 2003-04-24 Adam Fedor <fedor@gnu.org>
5285
5286 * objc-lang.c (FETCH_ARGUMENT, CONVERT_FUNCPTR): Remove
5287 architecture dependant compilation and mark as unimplemented
5288 (until they get put in the gdbarch vector).
5289
5290 2003-04-23 David Carlton <carlton@bactrian.org>
5291
5292 * cp-support.c (cp_find_first_component): Accept 'operator' in
5293 more locations.
5294
5295 2003-04-23 Andrew Cagney <cagney@redhat.com>
5296
5297 * infcall.c (call_function_by_hand): Eliminate redundant
5298 indentation. Move "saved_async" and "old_cleanups" to where they
5299 are needed.
5300
5301 2003-04-23 Andrew Cagney <cagney@redhat.com>
5302
5303 * infcall.c (call_function_by_hand): Eliminate the variables "rc"
5304 and "buffer". Move the "name" code to where it is needed.
5305
5306 2003-04-23 Andrew Cagney <cagney@redhat.com>
5307
5308 * infcall.c (call_function_by_hand): Move variables "start_sp",
5309 "dummy", "sizeof_dummy1" and "dummy1" and corresponding dummy call
5310 code to ON_STACK switch branch.
5311
5312 2003-04-23 Andrew Cagney <cagney@redhat.com>
5313
5314 * infcall.c (call_function_by_hand): Make declaration of "i",
5315 "sal", "bpt" and "old_sp" more local to their use. Delete #if
5316 lint.
5317
5318 2003-04-23 Andrew Cagney <cagney@redhat.com>
5319
5320 * infcall.c (call_function_by_hand): Delete variable
5321 "n_method_args". Localize "param_type"'s declaration to the loop
5322 that it is used. Reinstate code assigning to said variable -
5323 deleted on 2002-06-14. Rationalize calls to value_args_coerce.
5324 Rationalize code using "param_type".
5325
5326 2003-04-22 Andrew Cagney <cagney@redhat.com>
5327
5328 * infcall.c (call_function_by_hand): Use new variable "bp_addr" to
5329 compute the breakpoint address. Only call FIX_CALL_DUMMY when
5330 ON_STACK. Eliminate the variable "addr". Do not pass "real_pc"
5331 to DEPRECATED_PUSH_RETURN_ADDRESS.
5332
5333 2003-04-22 Kevin Buettner <kevinb@redhat.com>
5334
5335 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Invoke DWARF2_REG_TO_REGNUM
5336 on the DWARF2 register number prior to fetching a register.
5337
5338 2003-04-22 J. Brobecker <brobecker@gnat.com>
5339
5340 * config/pa/tm-hppa.h (SOFT_FLOAT): Delete this macro.
5341 Update all the tests using SOFT_FLOAT considering the fact that
5342 this macro was always set to 0.
5343 * config/pa/tm-hppa64.h: Update all the tests using SOFT_FLOAT
5344 considering the fact that this macro was always set to 0.
5345 * hppa-tdep.h (hppa_store_return_value): Likewise.
5346 (hppa_extract_return_value): Likewise.
5347
5348 2003-04-22 J. Brobecker <brobecker@gnat.com>
5349
5350 * config/pa/tm-hppa.h: Remove obsolete code, was used by
5351 the hppa-pro target only.
5352
5353 2003-04-21 J. Brobecker <brobecker@gnat.com>
5354
5355 Ongoing multi-arch conversion effort for HP/UX:
5356 * config/pa/tm-hppa.h: Move all macro that are no longer
5357 defined now that GDB_MULTI_ARCH is now set to 1 from here...
5358 * config/pa/tm-hppa64.h: ... to here (hppa64 is not multiarch'ed yet).
5359
5360 2003-04-21 J. Brobecker <brobecker@gnat.com>
5361
5362 * config/pa/tm-hppa.h: Obsolete a section that was only used
5363 for hppa-pro.
5364
5365 2003-04-21 J. Brobecker <brobecker@gnat.com>
5366
5367 Ongoing multi-arch conversion for HP/UX.
5368 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): Set to 1. Do not define
5369 if already defined (allows hppa64 to stay non-multiarched for now).
5370 * config/pa/tm-hppa64.h (GDB_MULTI_ARCH): Define.
5371
5372 2003-04-21 Andrew Cagney <cagney@redhat.com>
5373
5374 * frame.c (frame_id_eq): Fail when the code_addr's do not match.
5375
5376 2003-04-21 Andrew Cagney <cagney@redhat.com>
5377
5378 * i386-tdep.c (i386_gdbarch_init): Replace "mmx_num_regs" with
5379 "i386_num_mmx_regs".
5380
5381 2003-04-21 Andrew Cagney <cagney@redhat.com>
5382
5383 * infcall.c: New file.
5384 * infcall.h: New file.
5385 * valarith.c: Include "infcall.h".
5386 * scm-lang.c, objc-lang.cm, hppa-tdep.c, gcore.c: Ditto.
5387 * eval.c, ada-valprint.c, ada-lang.c: Ditto.
5388 * Makefile.in (valarith.o, scm-lang.o): Update dependencies.
5389 (objc-lang.o, hppa-tdep.o, gcore.o): Update dependencies.
5390 (eval.o, ada-valprint.o, ada-lang.o): Update dependencies.
5391 (SFILES): Add "infcall.c"
5392 (COMMON_OBS): Add "infcall.o".
5393 (infcall.o): Specify dependencies.
5394 * value.h (call_function_by_hand): Delete declaration.
5395 * inferior.h (run_stack_dummy): Delete declaration.
5396 * infcmd.c (breakpoint_auto_delete_contents): Move to "infcall.c".
5397 (run_stack_dummy): Move to "infcall.c", merged into
5398 call_function_by_hand.
5399 * valops.c (call_function_by_hand): Moved to "infcall.c".
5400 (find_function_addr, value_arg_coerce): Ditto.
5401 (unwindonsignal_p, coerce_float_to_double): Ditto.
5402 (_initialize_valops): Move "set/show coerce-float-to-double", and
5403 "set/show unwindonsignal" commands to "infcall.c".
5404 * v850-tdep.c, target.h: Update comments.
5405 * sparc-tdep.c (sparc_fix_call_dummy): Update comments.
5406 * sh-tdep.c (sh_init_extra_frame_info): Update comments.
5407 (sh64_init_extra_frame_info): Update comments.
5408 * mn10300-tdep.c: Update comments.
5409 * mcore-tdep.c (mcore_init_extra_frame_info): Update comments.
5410 * config/sparc/tm-sparc.h: Update comments.
5411 * breakpoint.h: Update comments.
5412 * avr-tdep.c (avr_init_extra_frame_info): Update comments.
5413 * arm-tdep.c: Update comment.
5414
5415 2003-04-19 Mark Kettenis <kettenis@gnu.org>
5416
5417 * i386-tdep.c (i386_num_register_names): New variable.
5418 (i386_num_mmx_regs): Renamed from mmx_num_regs.
5419 (MM0_REGNUM): Remove redundant parentheses in define.
5420 (i386_mmx_regnum_p): Use i386_mmx_regnum instead of mmx_num_regs.
5421 (i386_fp_regnum_p, i386_fpc_regnum_p, i386_sse_regnum_p,
5422 i386_mxcsr_regnum_p): Remove redundant parentheses.
5423 (i386_register_name): Use i386_num_register_names.
5424
5425 * i386-tdep.c (i386_extract_return_value,
5426 i386_store_return_value): Correct check for availability of
5427 floating-point registers.
5428
5429 * i386-tdep.c (i386_frame_num_args): Remove function.
5430 (i386_gdbarch_init): Set frame_num_args to frame_num_args_unknown.
5431
5432 * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Renamed from
5433 mmx_regnum_to_fp_regnum. Adjust all callers.
5434
5435 * i386-tdep.c (i386_get_longjmp_target): Use
5436 TYPE_LENGTH(builtin_type_void_func_ptr) instead of TARGET_PTR_BIT
5437 and TARGET_CHAR_BIT. Use extract_typed_address instead of
5438 extract_address.
5439
5440 2003-04-19 Mark Kettenis <kettenis@gnu.org>
5441
5442 * core-regset.c: Update comments to reflect reality. Re-order
5443 includes.
5444 (fetch_core_registers): Use switch instead of if. Remove
5445 redundant prototype.
5446
5447 2003-04-18 Jim Blandy <jimb@redhat.com>
5448
5449 * s390-tdep.c (s390_frame_align): New function.
5450 (s390_gdbarch_init): Register it with the gdbarch object.
5451
5452 2003-04-17 Richard Henderson <rth@redhat.com>
5453
5454 * remote.c (minitelnet): Don't redeclare escape_count, echo_check.
5455
5456 2003-04-17 Michael Snyder <msnyder@redhat.com>
5457 Karen Bennet <bennet@redhat.com>
5458
5459 Committed by Elena Zannoni <ezannoni@redhat.com>
5460 * gdb_gcore.sh: New script to create a core dump of a process.
5461
5462 2003-04-17 Elena Zannoni <ezannoni@redhat.com>
5463
5464 * values.c (value_being_returned): Don't fetch the return
5465 value if the return type is void.
5466
5467 2003-04-17 Jeff Johnston <jjohnstn@redhat.com>
5468
5469 * thread-db.c: Reindented.
5470
5471 2003-04-17 Jeff Johnston <jjohnstn@redhat.com>
5472
5473 * gdb_indent.sh: Recognize td_thrhandle_t, td_event_msg_t,
5474 td_thr_events_t, td_notify_t, td_thr_iter_f, and td_thrinfo_t
5475 as types.
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501 2003-04-16 Kevin Buettner <kevinb@redhat.com>
5502
5503 * rs6000-tdep.c (rs6000_gdbarch_init): For the SysV ABI, set
5504 the size of ``long double'' to 16, instead of 8.
5505
5506 2003-04-16 Mark Kettenis <kettenis@gnu.org>
5507
5508 * i386-linux-nat.c: Add some whitespace to make things more
5509 readable.
5510 (fetch_register, store_register, fetch_inferior_registers,
5511 store_inferior_registers): Get rid of assignment in if-statement.
5512 (store_register): Fix typo in error message.
5513
5514 2003-04-16 Andrew Cagney <cagney@redhat.com>
5515
5516 * utils.c (xmmalloc): Always allocate something, matches
5517 libiberty/xmalloc's semantics.
5518 (xmrealloc, xmcalloc): Ditto.
5519
5520 2003-04-16 Andrew Cagney <cagney@redhat.com>
5521
5522 * frame.c (get_prev_frame): Do not initialize "unwind" or "type",
5523 update comments.
5524 (get_frame_type): Initialize unwind and type when needed.
5525 (get_frame_id, frame_register_unwind): Ditto.
5526
5527 2003-04-16 Andrew Cagney <cagney@redhat.com>
5528
5529 * NEWS: Mention that sparclet-*-* and sparclite-*-* have been made
5530 obsolete.
5531 * sparc-tdep.c: Obsolete SPARCLET and SPARCLITE code.
5532 * sparcl-stub.c: Obsolete file.
5533 * config/sparc/tm-sparclet.h: Obsolete file.
5534 * sparclet-stub.c: Obsolete file.
5535 * sparclet-rom.c: Obsolete file.
5536 * sparcl-tdep.c: Obsolete file.
5537 * config/sparc/tm-sparclite.h: Obsolete file.
5538 * config/sparc/sparclite.mt: Obsolete file.
5539 * config/sparc/sparclet.mt: Obsolete file.
5540 * configure.tgt: Make sparclet-*-*, sparclite-*-*, and
5541 sparc86x-*-* obsolete.
5542
5543 2003-04-15 David Carlton <carlton@math.stanford.edu>
5544
5545 * Makefile.in (SFILES): Add cp-namespace.c.
5546 (COMMON_OBS): Add cp-namespace.o.
5547 (block.o): Depend on gdb_obstack_h and cp_support_h.
5548 (buildsym.o): Depend on cp_support_h.
5549 (cp-namespace.o): New.
5550 (cp-support.o): Depend on gdb_string_h, demangle_h, gdb_assert_h,
5551 gdb_obstack_h, symtab_h, symfile_h, and gdbcmd_h.
5552 (dwarf2read.o): Depend on cp_support_h.
5553 * jv-lang.c (get_java_class_symtab): Set BLOCK_NAMESPACE.
5554 * dwarf2read.c (process_die): Set processing_has_namespace_info,
5555 processing_current_namespace.
5556 (read_namespace): Update processing_current_namespace; check for
5557 anonymous namespaces.
5558 (dwarf2_name): New function.
5559 (dwarf2_extension): Ditto.
5560 * cp-support.h: Update copyright, contributors.
5561 Add inclusion guards.
5562 Add opaque declaration for structs obstack, block, symbol.
5563 (struct using_direct): New struct.
5564 Add declarations for cp_find_first_component,
5565 cp_entire_prefix_len, processing_has_namespace_info,
5566 processing_current_namespace, cp_is_anonymous,
5567 cp_add_using_directive, cp_initialize_namespace,
5568 cp_finalize_namespace, cp_set_block_scope,
5569 cp_scan_for_anonymous_namespaces.
5570 * cp-namespace.c: New file.
5571 * cp-support.c: Update copyright.
5572 Include ctype.h, gdb_assert.h, gdbcmd.h.
5573 New variable maint_cplus_cmd_list.
5574 (cp_find_first_component): New function.
5575 (cp_entire_prefix_len, maint_cplus_command)
5576 (first_component_command, _initialize_cp_support): Ditto.
5577 * buildsym.c: Include cp-support.h.
5578 New variable using_list.
5579 (add_symbol_to_list): Check for anonymous namespaces.
5580 (finish_block): Set block's scope.
5581 (start_symtab): Initialize C++ namespace support.
5582 (end_symtab): Finalize C++ namespace support.
5583 * block.h: Add opaque declarations for structs
5584 block_namespace_info, using_direct, and obstack.
5585 Add declarations for block_set_scope and block_set_using.
5586 (struct block): Add 'language_specific' member.
5587 (BLOCK_NAMESPACE): New macro.
5588 * block.c: Include gdb_obstack.h and cp-support.h.
5589 (struct block_namespace_info): New struct.
5590 (block_set_scope): New function.
5591 (block_set_using, block_initialize_namespace): Ditto.
5592
5593 2003-04-14 Kevin Buettner <kevinb@redhat.com>
5594
5595 * solib-svr4.c (svr4_have_link_map_offsets): New function.
5596 (locate_base): Return early if there aren't any link map offsets.
5597 (svr4_solib_create_inferior_hook): Warn if shared library support
5598 is unavailable.
5599
5600 2003-04-14 David Carlton <carlton@math.stanford.edu>
5601
5602 * symtab.c (symbol_set_names): Add prefix when storing Java names
5603 in hash table. Fix for PR java/1039.
5604
5605 2003-04-14 David Carlton <carlton@math.stanford.edu>
5606
5607 * symtab.c (symbol_set_names): Rename 'name' arg to
5608 'linkage_name', and 'tmpname' variable to 'linkage_name_copy'.
5609 * symtab.h: Change 'name' argument in declaration of
5610 symbol_set_names to 'linkage_name'.
5611 (SYMBOL_SET_NAMES): Change 'name' argument to 'linkage_name'.
5612
5613 2003-04-14 Andrew Cagney <cagney@redhat.com>
5614
5615 * mips-tdep.c (mips_read_sp): Do not apply ADDR_BITS_REMOVE,
5616 return the fully sign-extended register value.
5617 (get_frame_pointer): Ditto.
5618 (mips_pop_frame): Initialize "proc_desc" after checking for a
5619 dummy frame.
5620
5621 2003-04-14 Andrew Cagney <cagney@redhat.com>
5622
5623 * mips-tdep.c (mips_push_dummy_frame): Delete function.
5624 (MASK, PUSH_FP_REGNUM, GEN_REG_SAVE_MASK): Delete macros.
5625 (FLOAT_REG_SAVE_MASK, FLOAT_SINGLE_REG_SAVE_MASK): Delete macro.
5626 (mips_push_register): Delete function.
5627 (mips_dump_tdep): Delete references to GEN_REG_SAVE_MASK and
5628 PUSH_FP_REGNUM.
5629
5630 2003-04-14 Jim Blandy <jimb@redhat.com>
5631
5632 * symmisc.c: #include "gdb_regex.h".
5633 (maintenance_list_symtabs, maintenance_list_psymtabs): New
5634 functions.
5635 * maint.c (maintenance_list_command): New function.
5636 (_initialize_maint_cmds): Register the above as commands.
5637 * symtab.h (maintenance_list_symtabs,
5638 maintenance_list_psymtabs): New declarations.
5639 * cli/cli-cmds.c (maintenancelistlist): New variable.
5640 (init_cmd_lists): Initialize it.
5641 * cli/cli-cmds.h (maintenancelistlist): New declaration.
5642 * gdbcmd.h (maintenancelistlist): New declaration.
5643 * Makefile.in (symmisc.o): Update dependencies.
5644
5645 2003-04-14 Elena Zannoni <ezannoni@redhat.com>
5646
5647 * s390-nat.c: Include asm/types.h for addr_t.
5648
5649 2003-04-14 Corinna Vinschen <vinschen@redhat.com>
5650
5651 * cp-valprint.c (cp_print_class_method): Call unpack_pointer() with
5652 actually incoming type.
5653
5654 2003-04-13 Andrew Cagney <cagney@redhat.com>
5655
5656 * ppc-linux-tdep.c: Use get_frame_base, get_frame_pc,
5657 get_next_frame and get_frame_saved_regs.
5658
5659 2003-04-13 Andrew Cagney <cagney@redhat.com>
5660
5661 * reggroups.c (default_register_reggroup_p): Use NUM_REGS instead
5662 of gdbarch_num_regs.
5663
5664 2003-04-13 Andrew Cagney <cagney@redhat.com>
5665
5666 * frame.h: Mention what replaced what in "struct frame_info".
5667 * hppa-hpux-tdep.c: Use get_frame_base, get_frame_pc and
5668 deprecated_update_frame_base_hack and
5669 deprecated_update_frame_pc_hack.
5670 * hppa-tdep.c: Ditto.
5671
5672 2003-04-13 Daniel Jacobowitz <drow@mvista.com>
5673
5674 * dwarf2expr.h (struct dwarf_expr_context): Remove extra arguments
5675 to read_reg and update its comment. Remove regnum member.
5676 * dwarf2expr.c (execute_stack_op): Remove memaddr and expr_lval.
5677 Don't call read_reg when setting in_reg. Call read_reg to get
5678 the frame base if it's in a register. Return the register number
5679 on the stack instead of in the context. Remove extra arguments
5680 to read_reg.
5681 * dwarf2loc.c (dwarf_expr_read_reg): Remove extra arguments.
5682 (dwarf2_evaluate_loc_desc): Call value_from_register. Expect
5683 the register number on the expression stack.
5684 (needs_frame_read_reg): Remove extra arguments.
5685
5686 2003-04-13 Daniel Jacobowitz <drow@mvista.com>
5687
5688 * dwarf2expr.c (dwarf2_read_address): Renamed from read_address;
5689 made non-static.
5690 (execute_stack_op): All callers updated.
5691 * dwarf2expr.h: Add prototype for dwarf2_read_address.
5692 * dwarf2loc.c (find_location_expression): New function.
5693 (dwarf_expr_frame_base): Call it.
5694 (dwarf2_evaluate_loc_desc): Handle 0-length location expressions.
5695 (dwarf2_tracepoint_var_ref): New function, broken out from
5696 locexpr_tracepoint_var_ref.
5697 (locexpr_tracepoint_var_ref): Call dwarf2_tracepoint_var_ref.
5698 Make static.
5699 (loclist_read_variable, loclist_read_needs_frame): New functions.
5700 (loclist_describe_location, loclist_tracepoint_var_ref): New
5701 functions.
5702 (dwarf2_loclist_funcs): New struct location_funcs.
5703 * dwarf2loc.h (struct dwarf2_loclist_baton): New type.
5704 (struct dwarf2_locexpr_baton): Add comments.
5705 (dwarf2_loclist_funcs): New extern.
5706 * dwarf2read.c (struct comp_unit_head): Remove DIE member, add
5707 base_address and base_known.
5708 (dwarf_loc_buffer): New variable.
5709 (struct dwarf2_pinfo): Add dwarf_loc_buffer and dwarf_loc_size.
5710 (DWARF_LOC_BUFFER, DWARF_LOC_SIZE): New macros.
5711 (dwarf2_has_info): Initialize dwarf_loc_offset.
5712 (dwarf2_build_psymtabs): Read in .debug_loc.
5713 (dwarf2_build_psymtabs_hard): Use DWARF_LOC_BUFFER and
5714 DWARF_LOC_SIZE.
5715 (psymtab_to_symtab_1): Likewise. Move base address calculation
5716 here, from...
5717 (dwarf2_get_pc_bounds): ... here. Use the base address from
5718 cu_header.
5719 (dwarf2_symbol_mark_computed): Handle location lists.
5720
5721 2003-04-13 Daniel Jacobowitz <drow@mvista.com>
5722
5723 * minsyms.c (install_minimal_symbols): Only switch to gnu-v3 mode
5724 if the linkage name demangled successfully.
5725
5726 2003-04-13 Mark Kettenis <kettenis@gnu.org>
5727
5728 * x86-64-tdep.c (att_flavour, intel_flavour, valid_flavours,
5729 disassmbly_flavour): Removed.
5730
5731 * x86-64-tdep.c (gdb_print_insn_x86_64): Removed.
5732
5733 2003-04-13 Mark Kettenis <kettenis@gnu.org>
5734
5735 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Removed.
5736
5737 2003-04-12 Andrew Cagney <cagney@redhat.com>
5738
5739 * frame.h (struct frame_info): Move definition from here ...
5740 * frame.c (struct frame_info): ... to here.
5741
5742 2003-04-12 Andrew Cagney <cagney@redhat.com>
5743
5744 * gdbthread.h (save_infrun_state): Delete parameter
5745 "prev_func_start".
5746 (struct thread_info): Delete field "prev_func_start".
5747 (load_infrun_state): Ditto.
5748 * thread.c (load_infrun_state, save_infrun_state): Update.
5749 * infrun.c (prev_func_start): Delete variable.
5750 (context_switch, init_wait_for_inferior): Update.
5751 (stop_stepping, keep_going): Update.
5752
5753 2003-04-12 Andrew Cagney <cagney@redhat.com>
5754
5755 * gdbarch.sh: Add missing opaque declarations.
5756 * gdbarch.h: Regnerate.
5757 * symtab.h: Add missing opaque declarations.
5758 * value.h, target.h, symfile.h, stabsread.h: Ditto.
5759 * x86-64-tdep.h, xmodem.h, monitor.h, typeprint.h: Ditto.
5760 * srec.h, solib-svr4.h, source.h, inferior.h: Ditto.
5761 * ser-unix.h, serial.h, remote-utils.h, gdbcore.h: Ditto.
5762 * ppc-tdep.h, ocd.h, mips-tdep.h, gdbtypes.h: Ditto.
5763 * buildsym.h, builtin-regs.h, linespec.h, language.h: Ditto.
5764 * i387-tdep.h, gdbthread.h, event-top.h, gdb.h: Ditto.
5765 * dwarf2cfi.h, doublest.h, disasm.h, cp-abi.h: Ditto.
5766 * cli-out.h, c-lang.h, ax-gdb.h, arch-utils.h: Ditto.
5767 * ada-lang.h, config/nm-lynx.h, config/nm-linux.h: Ditto.
5768 * config/sparc/tm-sp64.h, config/rs6000/tm-rs6000.h: Ditto.
5769 * config/pa/tm-hppah.h, config/m68k/tm-delta68.h: Ditto.
5770 * cli/cli-setshow.h, cli/cli-script.h: Ditto.
5771
5772 2003-04-11 Andrew Cagney <cagney@redhat.com>
5773
5774 * frame.c (get_frame_id): Return this frame's "id".
5775 (legacy_get_prev_frame): Set prev's frame ID code_addr to the
5776 function start.
5777 (legacy_saved_regs_this_id): Replace function body with
5778 internal-error.
5779 (deprecated_frame_xmalloc): Mark the frame ID as valid, use
5780 FRAME_OBSTACK_ZALLOC.
5781 (create_new_frame): Mark the frame ID as valid.
5782
5783 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
5784
5785 * Makefile.in (libbfd_h): Added missing setting.
5786 * mips-tdep.c (mips_gdbarch_init): Set disassembler_options
5787 according to the selected ABI.
5788
5789 2003-04-11 Jeff Johnston <jjohnstn@redhat.com>
5790
5791 * gdb_indent.sh: Recognize pid_t and sigset_t as types.
5792
5793 2003-04-11 Andrew Cagney <cagney@redhat.com>
5794
5795 * gdbarch.sh (DEPRECATED_SAVED_PC_AFTER_CALL): Deprecate
5796 SAVED_PC_AFTER_CALL.
5797 * gdbarch.h, gdbarch.c: Regenerate.
5798 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5799 * x86-64-tdep.c (x86_64_init_abi): Update.
5800 * vax-tdep.c (vax_gdbarch_init): Update.
5801 * v850-tdep.c (v850_gdbarch_init): Update.
5802 * sparc-tdep.c (sparc_gdbarch_init): Update.
5803 * sh-tdep.c (sh_gdbarch_init): Update.
5804 * s390-tdep.c (s390_gdbarch_init): Update.
5805 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5806 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5807 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
5808 * mips-tdep.c (mips_gdbarch_init): Update.
5809 * mcore-tdep.c (mcore_gdbarch_init): Update.
5810 * m68k-tdep.c (m68k_gdbarch_init): Update.
5811 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5812 * ia64-tdep.c (ia64_gdbarch_init): Update.
5813 (ia64_saved_pc_after_call): Update declaration.
5814 * i386ly-tdep.c (i386lynx_init_abi): Update.
5815 * i386-tdep.c (i386_gdbarch_init): Update.
5816 * hppa-tdep.c (hppa_gdbarch_init): Update.
5817 * h8300-tdep.c (h8300_gdbarch_init): Update.
5818 * frv-tdep.c (frv_gdbarch_init): Update.
5819 * cris-tdep.c (cris_gdbarch_init): Update.
5820 * avr-tdep.c (avr_gdbarch_init): Update.
5821 * arm-tdep.c (arm_gdbarch_init): Update.
5822 * alpha-tdep.c (alpha_gdbarch_init): Update.
5823 * ns32knbsd-nat.c (frame_num_args): Update.
5824 * ns32k-tdep.c (umax_frame_num_args): Update.
5825 * mips-tdep.c (mips_init_frame_pc_first): Update.
5826 * infrun.c (step_over_function): Update.
5827 * i386-linux-tdep.c (skip_hurd_resolver): Update.
5828 * i386-interix-tdep.c (i386_interix_back_one_frame): Update.
5829 * config/sparc/tm-sparc.h (DEPRECATED_SAVED_PC_AFTER_CALL): Update.
5830 (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
5831 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
5832 * config/pa/tm-hppa.h (DEPRECATED_SAVED_PC_AFTER_CALL): Update.
5833 * arm-linux-tdep.c (skip_hurd_resolver): Update.
5834 * arch-utils.c (init_frame_pc_default): Update.
5835 * alpha-tdep.c (alpha_init_frame_pc_first): Update.
5836 * x86-64-tdep.h (x86_64_linux_saved_pc_after_call): Update
5837 declaration.
5838
5839 2003-04-11 Andrew Cagney <cagney@redhat.com>
5840
5841 * i387-tdep.c: Update copyright.
5842 (i387_to_double): Delete function.
5843 (double_to_i387): Delete function.
5844
5845 2003-04-10 Andrew Cagney <cagney@redhat.com>
5846
5847 * d10v-tdep.c (d10v_frame_this_id): Set the code addr to the
5848 frame's function's address. Simplify.
5849 (d10v_frame_unwind_cache): Check that the frame's function is
5850 non-zero.
5851
5852 2003-04-10 Jim Blandy <jimb@redhat.com>
5853
5854 * s390-tdep.c (s390_gdbarch_init): Put back accidentally deleted
5855 call to set_gdbarch_deprecated_push_arguments.
5856
5857 2003-04-10 Andrew Cagney <cagney@redhat.com>
5858
5859 * frame.c (fprint_frame_id): New function.
5860 (fprint_frame_type, fprint_frame): New function.
5861 (frame_pc_unwind, frame_func_unwind): Add/update trace code.
5862 (create_sentinel_frame, get_frame_id): Ditto.
5863 (frame_id_p, frame_id_eq): Ditto.
5864 (frame_id_inner, create_new_frame): Ditto.
5865 (legacy_get_prev_frame, get_prev_frame): Ditto.
5866 (deprecated_update_frame_pc_hack): Ditto.
5867 (frame_register_unwind): Ditto.
5868 (deprecated_update_frame_base_hack): Ditto.
5869
5870 2003-04-10 Corinna Vinschen <vinschen@redhat.com>
5871
5872 * i386-cygwin-tdep.c (i386_cygwin_frame_chain): New function.
5873 (i386_cygwin_init_abi): Set i386_cygwin_frame_chain as new
5874 frame_chain function.
5875 * Makefile.in: Add dependencies due to above change.
5876
5877 2003-04-10 Corinna Vinschen <vinschen@redhat.com>
5878
5879 * blockframe.c (legacy_frame_chain_valid): Move call to
5880 DEPRECATED_FRAME_CHAIN_VALID before calls to inside_entry_func and
5881 inside_entry_file.
5882
5883 2003-04-09 Andrew Cagney <cagney@redhat.com>
5884
5885 * frame.h (struct frame_id): Replace "pc" and "base" with
5886 "stack_addr" and "code_addr". Update comments.
5887 (frame_id_build): Update parameter names and comment.
5888 (struct frame_info): Replace "id_p" and "id" with "this_id".
5889 * dummy-frame.c (dummy_frame_this_id): Update.
5890 * breakpoint.c (print_one_breakpoint): Update.
5891 * frame.c (get_frame_id): Update.
5892 (get_frame_base, frame_id_build): Update.
5893 (create_sentinel_frame, legacy_get_prev_frame): Update.
5894 (deprecated_update_frame_base_hack): Update.
5895 (frame_id_p, frame_id_eq): Rework, return 0 when an invalid ID.
5896 (frame_id_inner): Ditto.
5897
5898 2003-04-09 Andrew Cagney <cagney@redhat.com>
5899
5900 * defs.h (gdb_print_host_address): Make "addr" parameter a
5901 pointer constant.
5902 * utils.c (gdb_print_host_address): Update.
5903
5904 2003-04-09 Kevin Buettner <kevinb@redhat.com>
5905
5906 * rs6000-tdep.c (frame_get_saved_regs): Don't assume that the
5907 register number for R0 is 0.
5908
5909 2003-04-09 J. Brobecker <brobecker@gnat.com>
5910
5911 * frame.h (struct gdbarch): Add opaque structure definition
5912 to avoid a compilation warning on LynxOS 4.0.
5913
5914 2003-04-09 Andrew Cagney <cagney@redhat.com>
5915
5916 * frame.h (struct frame_info): Delete field "pc". Replace
5917 "pc_unwind_cache" and "pc_unwind_cache_p" with "prev_pc"
5918 structure.
5919 * frame.c (frame_pc_unwind): Update.
5920 (create_sentinel_frame): Do not set "pc".
5921 (get_prev_frame): Do not set "pc". Use frame_pc_unwind.
5922 (get_frame_pc): Call frame_pc_unwind.
5923 (deprecated_update_frame_pc_hack): Update.
5924 (create_new_frame): Use "pc" not "->pc".
5925
5926 2003-04-09 Andrew Cagney <cagney@redhat.com>
5927
5928 * frame.c (get_frame_id): Eliminate code updating "frame".
5929 (legacy_get_prev_frame): Ditto.
5930 (get_frame_base): Return id.base directly.
5931 (deprecated_update_frame_base_hack): Update "id.base".
5932 * frame.h (struct frame_info): Delete field "frame".
5933
5934 2003-04-09 Andrew Cagney <cagney@redhat.com>
5935
5936 * NEWS: Mention that the "Sequent family" is obsolete.
5937 * configure.tgt: Obsolete i[3456]86-sequent-bsd*,
5938 i[3456]86-sequent-sysv4*, and i[3456]86-sequent-sysv*.
5939 * configure.host: Obsolete i[3456]86-sequent-bsd*,
5940 i[3456]86-sequent-sysv4*, and i[3456]86-sequent-sysv*.
5941 * config/i386/tm-ptx4.h: Obsolete file.
5942 * config/i386/tm-ptx.h: Obsolete file.
5943 * symm-tdep.c: Obsolete file.
5944 * config/i386/symmetry.mt: Obsolete file.
5945 * config/i386/tm-symmetry.h: Obsolete file.
5946 * symm-nat.c: Obsolete file.
5947 * config/i386/nm-symmetry.h: Obsolete file.
5948 * config/i386/xm-symmetry.h: Obsolete file.
5949 * config/i386/symmetry.mh: Obsolete file.
5950 * config/i386/nm-ptx4.h: Obsolete file.
5951 * config/i386/ptx4.mh: Obsolete file.
5952 * config/i386/ptx.mt: Obsolete file.
5953 * config/i386/ptx.mh: Obsolete file.
5954 * config/i386/xm-ptx4.h: Obsolete file.
5955 * config/i386/xm-ptx.h: Obsolete file.
5956
5957 2003-04-09 Andrew Cagney <cagney@redhat.com>
5958
5959 Obsolete mips*-*-mach3*.
5960 * NEWS: Mention that mips*-*-mach3* is obsolete.
5961 * m3-nat.c: Obsolete file.
5962 * config/nm-m3.h: Obsolete file.
5963 * config/mips/tm-mipsm3.h: Obsolete file.
5964 * config/mips/mipsm3.mt: Obsolete file.
5965 * config/mips/mipsm3.mh: Obsolete file.
5966 * config/mips/xm-mipsm3.h: Obsolete file.
5967 * mipsm3-nat.c: Obsolete file.
5968 * configure.host: Obsolete mips-dec-mach3*.
5969 * configure.tgt: Obsolete mips*-*-mach3*.
5970
5971 2003-04-09 Andrew Cagney <cagney@redhat.com>
5972
5973 * doublest.h: Update copyright.
5974 (deprecated_store_floating, deprecated_extract_floating): Rename
5975 store_floating and extract_floating. Update comments.
5976 * doublest.c: Update copyright.
5977 (extract_floating_by_length): Replace extract_floating.
5978 (store_floating_by_length): Replace store_floating.
5979 (deprecated_extract_floating): New function.
5980 (deprecated_store_floating): New function.
5981 (extract_typed_floating): Call extract_floating_by_length.
5982 (store_typed_floating): Call store_floating_by_length.
5983 * x86-64-tdep.c (x86_64_store_return_value): Update.
5984 * sh-tdep.c (sh3e_sh4_extract_return_value): Update.
5985 (sh64_extract_return_value): Update.
5986 (sh_sh4_register_convert_to_virtual): Update.
5987 (sh_sh64_register_convert_to_virtual): Update.
5988 (sh_sh4_register_convert_to_raw): Update.
5989 (sh_sh64_register_convert_to_raw): Update.
5990 * rs6000-tdep.c (rs6000_register_convert_to_virtual): Update.
5991 (rs6000_register_convert_to_raw): Update.
5992 * ia64-tdep.c (ia64_register_convert_to_virtual): Update.
5993 (ia64_register_convert_to_raw): Update.
5994 * config/i386/tm-symmetry.h (REGISTER_CONVERT_TO_RAW): Update.
5995 (REGISTER_CONVERT_TO_VIRTUAL): Update.
5996 * arm-linux-tdep.c (arm_linux_push_arguments): Update.
5997 * alpha-tdep.c (alpha_register_convert_to_virtual): Update.
5998 (alpha_register_convert_to_raw): Update.
5999
6000 2003-04-08 Andrew Cagney <cagney@redhat.com>
6001
6002 * gdbarch.sh (SAVED_PC_AFTER_CALL): Add a predicate.
6003 * gdbarch.h, gdbarch.c: Re-generate.
6004 * d10v-tdep.c (d10v_saved_pc_after_call): Delete function.
6005 (d10v_gdbarch_init): Do not set saved_pc_after_call.
6006 * infrun.c (step_over_function): Call SAVED_PC_AFTER_CALL_P
6007 conditionally, use frame_pc_unwind as an alternative. Add
6008 comments.
6009 * arch-utils.c (init_frame_pc_default): Only call
6010 SAVED_PC_AFTER_CALL when available.
6011
6012 2003-04-08 Elena Zannoni <ezannoni@redhat.com>
6013
6014 * infrun.c (stop_soon): Rename from stop_soon_quietly.
6015 (struct inferior_status): Rename stop_soon_quietly field to stop_soon.
6016 (clear_proceed_status): Rename stop_soon_quietly to stop_soon.
6017 (start_remote): Ditto.
6018 (handle_inferior_event): Ditto.
6019 (save_inferior_status): Ditto.
6020 (restore_inferior_status): Ditto.
6021 * infcmd.c (attach_command): Ditto.
6022 * fork-child.c (startup_inferior): Ditto.
6023 * inferior.h (stop_soon): Rename from stop_soon_quietly.
6024 * alpha-tdep.c (heuristic_proc_start): Ditto.
6025 * mips-tdep.c (heuristic_proc_start): Ditto.
6026 * solib-svr4.c (svr4_solib_create_inferior_hook): Ditto.
6027 * solib-sunos.c (sunos_solib_create_inferior_hook): Ditto.
6028 * solib-osf.c (osf_solib_create_inferior_hook): Ditto.
6029 * solib-irix.c (irix_solib_create_inferior_hook): Ditto.
6030 * remote-vx.c (vx_create_inferior): Ditto.
6031
6032 2003-04-08 Elena Zannoni <ezannoni@redhat.com>
6033
6034 * infrun.c (stop_soon_quietly): Make it an enum, to better
6035 override the default behavior of handle_inferior_event.
6036 (clear_proceed_status): Update uses of stop_soon_quietly to
6037 reflect that it is now an enum.
6038 (start_remote): Ditto.
6039 (handle_inferior_event): Change logic a bit if stop_soon_quietly
6040 is set to handle the new GNU/Linux kernel behavior for
6041 attach/sigstop. Update uses of stop_soon_quietly.
6042 * inferior.h (enum stop_kind): New enum.
6043 * infcmd.c (attach_command): Use STOP_QUIETLY_NO_SIGSTOP.
6044 Reset normal handle_inferior_event behavior, afterwards.
6045 * fork-child.c (startup_inferior): Update.
6046 * alpha-tdep.c (heuristic_proc_start): Update.
6047 * solib-svr4.c (svr4_solib_create_inferior_hook): Update.
6048 * solib-sunos.c (sunos_solib_create_inferior_hook): Update.
6049 * solib-osf.c (osf_solib_create_inferior_hook): Update.
6050 * solib-irix.c (irix_solib_create_inferior_hook): Update.
6051 * remote-vx.c (vx_create_inferior): Update.
6052 * mips-tdep.c (heuristic_proc_start): Update.
6053
6054 2003-04-07 Elena Zannoni <ezannoni@redhat.com>
6055
6056 * disasm.c (dump_insns): Move variables inside loop, or they will
6057 be freed more than once, causing wild memory corruptions.
6058 (gdb_disassembly): Look for the substring "-thread",
6059 instead of "-threads" in the target name, to make sure to find
6060 the 'multi-thread' target. Also, make sure we do the right thing
6061 with the "core" target.
6062
6063 2003-04-07 Kevin Buettner <kevinb@redhat.com>
6064
6065 * mips-tdep.c (mips_print_fp_register): New function, created from
6066 do_fp_register_row(). Registers are now (also) printed as hex.
6067 Only one register is printed per row.
6068 (mips_print_register, do_fp_register_row): Print floating point
6069 registers with mips_print_fp_register().
6070
6071 2003-04-06 Andrew Cagney <cagney@redhat.com>
6072
6073 * valprint.h (inspect_it): Add extern declaration.
6074 * objc-lang.c (value_nsstring): Avoid assignment inside of "if".
6075 (selectors_info, classes_info): Ditto.
6076 (find_objc_msgcall): Fix indentation.
6077 (objc_printstr): Delete extern declarations.
6078
6079 * arm-tdep.c (arm_frameless_function_invocation): Fix typo.
6080
6081 2003-04-06 Andrew Cagney <cagney@redhat.com>
6082
6083 * frame.h (legacy_frame_chain_valid): Rename frame_chain_valid.
6084 Update comment.
6085 * frame.c (legacy_saved_regs_this_id): Update.
6086 (legacy_get_prev_frame): Update.
6087 * xstormy16-tdep.c: Update comment.
6088 * sparc-tdep.c (sparc_frame_chain): Update comment.
6089 * blockframe.c (legacy_frame_chain_valid): Update.
6090
6091 2003-04-06 Andrew Cagney <cagney@redhat.com>
6092
6093 * valprint.c (val_print_type_code_int): Delete #ifdef
6094 PRINT_TYPELESS_INTEGER code.
6095
6096 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES)
6097 (CALL_DUMMY_LOCATION, DEPRECATED_PC_IN_CALL_DUMMY): Allow partial
6098 multi-arch definition.
6099 * gdbarch.h: Re-generate.
6100
6101 2003-04-05 Andrew Cagney <cagney@redhat.com>
6102
6103 Eliminate FRAME_FIND_SAVED_REGS.
6104 * config/pa/tm-hppah.h (hppa_hpux_frame_find_saved_regs_in_sigtramp):
6105 Change FSR parameter to a pointer.
6106 * config/pa/tm-hppa64.h (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP):
6107 Assume FSR parameter is a pointer.
6108 * hppa-hpux-tdep.c (hppa_hpux_frame_find_saved_regs_in_sigtramp):
6109 Make fsr a pointer.
6110 * hppa-tdep.c (hppa_frame_find_saved_regs): New function.
6111 (hppa_frame_saved_pc): Call hppa_frame_init_saved_regs. Make
6112 saved_regs a pointer.
6113 (hppa_frame_saved_pc): Ditto.
6114 (find_dummy_frame_regs): Make frame_saved_regs a pointer
6115 (hppa_pop_frame): Call hppa_frame_init_saved_regs. Make fsr a
6116 pointer.
6117 (restore_pc_queue): Make fsr a pointer.
6118 (hppa_frame_find_saved_regs): Make frame_saved_regs a pointer.
6119 (hppa_frame_chain): Make saved_regs a pointer, call
6120 hppa_frame_init_saved_regs.
6121 * sparc-tdep.c: Include "gdb_assert.h".
6122 (sparc_frame_find_saved_regs): Replace internal_error with
6123 gdb_assert.
6124 * remote-vxsparc.c (vx_read_register): Delete reference to
6125 FRAME_FIND_SAVED_REGS.
6126 * gdbarch.sh: Delete check for FRAME_FIND_SAVED_REGS.
6127 * gdbarch.h: Regenerate.
6128 * frame.h (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
6129 (deprecated_get_frame_saved_regs): Delete declaration.
6130 (struct frame_saved_regs): Delete definition.
6131 * frame.c (deprecated_get_frame_saved_regs): Delete function.
6132 * config/pa/tm-hppa.h (hppa_frame_init_saved_regs): Declare.
6133 (hppa_frame_find_saved_regs): Delete declaration.
6134 (FRAME_FIND_SAVED_REGS): Delete macro.
6135 (DEPRECATED_FRAME_INIT_SAVED_REGS): Define.
6136 * config/i386/tm-ptx.h (FRAME_FIND_SAVED_REGS): Delete
6137 FRAME_FIND_SAVED_REGS in comment.
6138
6139 2003-04-05 Andrew Cagney <cagney@redhat.com>
6140
6141 * frame.c (frame_func_unwind, get_frame_func): New functions.
6142 * frame.h (get_frame_func, frame_func_unwind): Declare.
6143 (struct frame_info): Add field "prev_func" for caching the
6144 previous frame's function address.
6145 * arm-tdep.c (arm_frameless_function_invocation): Combine
6146 get_pc_function_start and get_frame_pc into get_frame_func.
6147 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
6148 (sh64_nofp_frame_init_saved_regs): Ditto.
6149 * s390-tdep.c (s390_function_start): Ditto.
6150 * rs6000-tdep.c (rs6000_pop_frame): Ditto.
6151 (rs6000_frameless_function_invocation): Ditto.
6152 (rs6000_frame_saved_pc): Ditto.
6153 * m68k-tdep.c (m68k_frame_init_saved_regs): Ditto.
6154 * ia64-tdep.c (ia64_frame_init_saved_regs): Ditto.
6155 * i386-tdep.c (i386_frameless_signal_p): Ditto.
6156 (i386_frame_init_saved_regs): Ditto.
6157 * hppa-tdep.c (hppa_frame_find_saved_regs): Ditto.
6158 * d10v-tdep.c (d10v_frame_unwind_cache): Combine
6159 get_pc_function_start and frame_pc_unwind into frame_func_unwind.
6160 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
6161 * blockframe.c (frameless_look_for_prologue): Ditto.
6162
6163 2003-04-05 Andrew Cagney <cagney@redhat.com>
6164
6165 * frame.c (legacy_get_prev_frame): Link prev to next at the
6166 function start. Update comments.
6167
6168 2003-04-05 Andrew Cagney <cagney@redhat.com>
6169
6170 * frame.c (get_frame_id): Update comment.
6171 (legacy_get_prev_frame): Update comment.
6172 * gdbarch.sh: Delete check for EXTRA_FRAME_INFO.
6173 * gdbarch.h: Regenerate.
6174 * config/sparc/tm-sparc.h (EXTRA_FRAME_INFO): Delete.
6175 * frame.h: Delete #ifdef EXTRA_FRAME_INFO code.
6176
6177 2003-04-05 Andrew Cagney <cagney@redhat.com>
6178
6179 * stack.c (print_frame_info): Use get_frame_pc.
6180
6181 2003-04-04 Andrew Cagney <cagney@redhat.com>
6182
6183 * frame.c (get_prev_frame): Do not call frame_type_from_pc. Set
6184 the frame's type from the unwinder.
6185 (get_frame_type): Map UNKNOWN_FRAME onto NORMAL_FRAME.
6186 (create_new_frame, legacy_get_prev_frame): When the unwinder's
6187 type isn't UNKNOWN_FRAME, initalize "type" from the unwinder.
6188 (get_frame_base_address): Use get_frame_type.
6189 (get_frame_locals_address, get_frame_args_address): Ditto.
6190 (legacy_saved_regs_unwinder): Set the type to UNKNOWN_TYPE.
6191 * frame.h (enum frame_type): Add UNKNOWN_FRAME.
6192 (struct frame_info): Add comment explaining why the frame contains
6193 a "type" field.
6194 * dummy-frame.c (dummy_frame_unwind): Set the type to DUMMY_FRAME.
6195 * d10v-tdep.c (d10v_frame_unwind): Set the type to NORMAL_FRAME.
6196 * sentinel-frame.c (sentinel_frame_unwinder): Set the type to
6197 NORMAL_FRAME.
6198 * frame-unwind.h: Include "frame.h".
6199 (struct frame_unwind): Add "type" field.
6200 * Makefile.in (frame_unwind_h): Add $(frame_h).
6201
6202 2003-04-04 Andrew Cagney <cagney@redhat.com>
6203
6204 * x86-64-tdep.c (x86_64_unwind_dummy_id): Use frame_id_build.
6205 * dummy-frame.c (dummy_frame_this_id): Use frame_id_build.
6206 * d10v-tdep.c (d10v_frame_this_id): Use get_frame_pc and
6207 get_frame_base.
6208 (d10v_unwind_dummy_id): Use frame_id_build.
6209 * frame.c (find_frame_sal): Use get_frame_pc.
6210 (create_new_frame): Use deprecated_update_frame_pc_hack and
6211 deprecated_update_frame_base_hack.
6212 (create_sentinel_frame): Add comment about ->pc going away.
6213 (get_prev_frame): Add comment about ->pc going away.
6214 (legacy_get_prev_frame): Use get_frame_base, get_frame_pc,
6215 frame_id_build, deprecated_update_frame_pc_hack and
6216 deprecated_update_frame_base_hack.
6217 (select_frame): Use get_frame_pc.
6218 (legacy_saved_regs_this_id): Use frame_id_build.
6219
6220 2003-04-04 Elena Zannoni <ezannoni@redhat.com>
6221
6222 * x86-64-tdep.c (x86_64_push_arguments): Handle correctly the
6223 signed integer case.
6224 (classify_argument): Handle enumerations and references.
6225
6226 2003-04-04 Andrew Cagney <cagney@redhat.com>
6227
6228 * frame.c (create_sentinel_frame): Initialize the sentinel frame's
6229 ID to NULL.
6230
6231 2003-04-01 Adam Fedor <fedor@gnu.org>
6232
6233 * gdb/objc-lang.c (selectors_info): Replace calls to
6234 SYMBOL_DEMANGLED_NAME and DEPRECATED_SYMBOL_NAME with
6235 SYMBOL_NATURAL_NAME.
6236 (classes_info, find_methods): Likewise.
6237
6238 2003-04-03 Kevin Buettner <kevinb@redhat.com>
6239
6240 * rs6000-tdep.c (rs6000_gdbarch_init): For xcoff executables, set
6241 ``mach'' to the value determined by bfd_default_set_arch_mach().
6242
6243 2003-04-02 Bob Rossi <bob_rossi@cox.net>
6244
6245 * Makefile.in (SUBDIR_MI_OBS): Add "mi-cmd-file.o".
6246 (SUBDIR_MI_SRCS): Add "mi-cmd-file.c".
6247 (mi-cmd-file.o): Update dependencies.
6248
6249 2003-04-01 Kevin Buettner <kevinb@redhat.com>
6250
6251 * mips-tdep.c (mips_dwarf_dwarf2_ecoff_reg_to_regnum)
6252 (mips_stab_reg_to_regnum): Add mappings for HI_REGNUM and LO_REGNUM.
6253
6254 2003-04-01 Adam Fedor <fedor@gnu.org>
6255
6256 * Makefile.in (c_lang.o, jv_lang.o, language.o): Add $(demangle_h).
6257 * language.h (struct language_defn): Add la_demangle.
6258 (language_demangle): Declare.
6259 * language.c (language_demangle): New function.
6260 (unk_lang_demangle): Likewise.
6261 (unknown_language_defn, auto_language_defn, local_language_defn):
6262 Add ukn_lang_demangle.
6263 * ada-lang.c (ada_language_defn): Add NULL for la_demangle element.
6264 * f-lang.c, m2-lang.c, p-lang.c, scm-lang.c: Likewise.
6265 * c-lang.c (c_language_defn, asm_language_defn): Likewise.
6266 (cplus_language_defn): Add cplus_demangle for la_demangle element.
6267 * jv-lang.c (java_demangle): New function
6268 (java_language_defn): Use it for la_demangle element.
6269 * objc-lang.c (objc_demangle): Add options argument
6270 (objc_language_defn): Use objc_demangle for la_demangle element.
6271 * maint.c (maintenance_demangle): Replace switch with
6272 call to language_demangle.
6273 * utils.c (fprintf_symbol_filtered): Likewise.
6274
6275 2003-04-01 Andrew Cagney <cagney@redhat.com>
6276
6277 * printcmd.c (print_frame_nameless_args): Delete #ifdef
6278 NAMELESS_ARG_VALUE, PRINT_NAMELESS_INTEGER and
6279 PRINT_TYPELESS_INTEGER.
6280 * config/sparc/tm-sp64.h (DEPRECATED_PUSH_RETURN_ADDRESS): Rename
6281 PUSH_RETURN_ADDRESS.
6282
6283 2003-04-01 Andrew Cagney <cagney@redhat.com>
6284
6285 * Makefile.in (d10v-tdep.o): Update dependencies.
6286 * d10v-tdep.c: Include "frame-base.h".
6287 (d10v_frame_unwind): Make constant.
6288 (d10v_frame_base_address): New function.
6289 (d10v_frame_base): New variable.
6290 (d10v_gdbarch_init): Set frame_base default.
6291 (struct d10v_unwind_cache): Add the field "prev_sp". Update
6292 comment for base.
6293 (d10v_frame_unwind_cache): Set and use "prev_sp".
6294 (d10v_frame_this_id): Use the previous frame's inner most stack
6295 address and this frame's func address for the frame ID. Use
6296 frame_id_build. Don't analyze beyond the current instruction.
6297
6298 2003-04-01 Andrew Cagney <cagney@redhat.com>
6299
6300 * frame.h (get_frame_locals_address, get_frame_args_address):
6301 Refer to the base address, instead of the address of the first
6302 local or parameter.
6303
6304 2003-04-01 Andrew Cagney <cagney@redhat.com>
6305
6306 Add frame debug info addresses:
6307 * frame-base.c: New file.
6308 * frame-base.h: New file.
6309 * frame.h (struct frame_base): Add opaque declaration.
6310 (get_frame_base): Update comment.
6311 (get_frame_base_address): Declare.
6312 (get_frame_locals_address): Declare.
6313 (get_frame_args_address): Declare.
6314 (struct frame_info): Add "base" and "base_cache". Update
6315 comments on the unwinder.
6316 * frame.c: Include "frame-base.h".
6317 (get_frame_locals_address): New function.
6318 (get_frame_base_address): New function.
6319 (get_frame_args_address): New function.
6320 * findvar.c (read_var_value): Use get_frame_locals_address and
6321 get_frame_args_address.
6322 * stack.c (frame_info): Use get_frame_locals_address and
6323 get_frame_args_address.
6324 (FRAME_ARGS_ADDRESS_CORRECT): Delete conditionally defined macro,
6325 moved to "frame-base.c".
6326 * printcmd.c (print_frame_nameless_args): Ditto.
6327 * symtab.h (address_class): Update comments.
6328 * dwarf2loc.c (dwarf_expr_frame_base): Add note about
6329 get_frame_base_address.
6330 * dwarf2expr.c (execute_stack_op): Ditto.
6331 * Makefile.in (frame_base_h): Define.
6332 (frame.o): Update dependencies.
6333 (frame-base.o): Add dependencies.
6334 (SFILES): Add frame-base.c.
6335 (COMMON_OBS): Add frame-base.o.
6336
6337 2003-04-01 Andrew Cagney <cagney@redhat.com>
6338
6339 * gdbarch.sh (CALL_DUMMY_START_OFFSET): Default to zero.
6340 CALL_DUMMY_LENGTH): Ditto.
6341 * gdbarch.c: Re-generate.
6342 * inferior.h (CALL_DUMMY_START_OFFSET): Delete macro.
6343 (CALL_DUMMY_LENGTH): Delete macro.
6344 * alpha-tdep.c (alpha_gdbarch_init): Do not set above when zero.
6345 * arm-tdep.c (arm_gdbarch_init): Ditto.
6346 * avr-tdep.c (avr_gdbarch_init): Ditto.
6347 * cris-tdep.c (cris_gdbarch_init): Ditto.
6348 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
6349 * frv-tdep.c (frv_gdbarch_init): Ditto.
6350 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6351 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
6352 * i386-tdep.c (i386_gdbarch_init): Ditto.
6353 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
6354 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
6355 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6356 * mips-tdep.c (mips_gdbarch_init): Ditto.
6357 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6358 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6359 * s390-tdep.c (s390_gdbarch_init): Ditto.
6360 * sh-tdep.c (sh_gdbarch_init): Ditto.
6361 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
6362 * v850-tdep.c (v850_gdbarch_init): Ditto.
6363 * vax-tdep.c (vax_gdbarch_init): Ditto.
6364 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
6365
6366 2003-04-01 Corinna Vinschen <vinschen@redhat.com>
6367
6368 * frame.c (get_prev_frame): Disable call to inside_entry_file().
6369
6370 2003-04-01 Andrew Cagney <cagney@redhat.com>
6371
6372 * gdbarch.sh (CALL_DUMMY_BREAKPOINT_OFFSET): Default to zero.
6373 (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
6374 * gdbarch.h, gdbarch.c: Re-generate.
6375 * config/sparc/tm-sp64.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
6376 (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
6377 * config/pa/tm-hppa64.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
6378 * inferior.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
6379 (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
6380 * infcmd.c (run_stack_dummy): Simplify assuming
6381 CALL_DUMMY_BREAKPOINT_OFFSET_P.
6382 * infrun.c (handle_inferior_event): Ditto.
6383 * alpha-tdep.c (alpha_gdbarch_init): Do not set
6384 call_dummy_breakpoint_offset or call_dummy_breakpoint_offset_p.
6385 * arm-tdep.c (arm_gdbarch_init): Ditto.
6386 * avr-tdep.c (avr_gdbarch_init): Ditto.
6387 * cris-tdep.c (cris_gdbarch_init): Ditto.
6388 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
6389 * frv-tdep.c (frv_gdbarch_init): Ditto.
6390 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6391 * i386-tdep.c (i386_gdbarch_init): Ditto.
6392 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
6393 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
6394 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
6395 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6396 * mips-tdep.c (mips_gdbarch_init): Ditto.
6397 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6398 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
6399 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6400 * s390-tdep.c (s390_gdbarch_init): Ditto.
6401 * sh-tdep.c (sh_gdbarch_init): Ditto.
6402 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
6403 * v850-tdep.c (v850_gdbarch_init): Ditto.
6404 * vax-tdep.c (vax_gdbarch_init): Ditto.
6405 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
6406
6407 2003-04-01 Daniel Jacobowitz <drow@mvista.com>
6408
6409 * symfile.c (symfile_relocate_debug_section): Update call to
6410 bfd_simple_get_relocated_section_contents.
6411
6412 2003-03-31 Andrew Cagney <cagney@redhat.com>
6413
6414 * gdbarch.sh (FIX_CALL_DUMMY): Change to function with predicate.
6415 * gdbarch.h, gdbarch.c: Regenerate.
6416 * inferior.h (FIX_CALL_DUMMY): Delete macro.
6417 * valops.c (hand_function_call): Only call FIX_CALL_DUMMY when
6418 available.
6419 * frame.h (generic_fix_call_dummy): Delete declaration.
6420 * dummy-frame.h: Update comment.
6421 * dummy-frame.c (generic_fix_call_dummy): Delete function.
6422 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
6423 fix_call_dummy.
6424 * sh-tdep.c (sh_gdbarch_init): Ditto.
6425 * s390-tdep.c (s390_gdbarch_init): Ditto.
6426 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6427 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6428 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
6429 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
6430 * i386-tdep.c (i386_gdbarch_init): Ditto.
6431 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6432 * frv-tdep.c (frv_gdbarch_init): Ditto.
6433 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
6434 * cris-tdep.c (cris_gdbarch_init): Ditto.
6435 * avr-tdep.c (avr_gdbarch_init): Ditto.
6436 * arm-tdep.c (arm_gdbarch_init): Ditto.
6437
6438 2003-03-31 J. Brobecker <brobecker@gnat.com>
6439
6440 * config/pa/tm-hppa64.h (FRAME_ARGS_ADDRESS): Delete macro, not useful.
6441 (INIT_FRAME_AP): Likewise.
6442 (EXTRA_FRAME_INFO): Likewise.
6443
6444 2003-03-31 Andrew Cagney <cagney@redhat.com>
6445
6446 * gdbarch.sh: Include "symfile.h".
6447 (CALL_DUMMY_ADDRESS): Default to entry_point_address.
6448 * gdbarch.h, gdbarch.c: Re-generate.
6449 * inferior.h (CALL_DUMMY_ADDRESS): Delete macro.
6450 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
6451 call_dummy_address, the default is at entry_point_address.
6452 * v850-tdep.c (v850_gdbarch_init): Ditto.
6453 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
6454 * sh-tdep.c (sh_gdbarch_init): Ditto.
6455 * s390-tdep.c (s390_gdbarch_init): Ditto.
6456 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6457 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6458 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6459 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
6460 * i386-tdep.c (i386_gdbarch_init): Ditto.
6461 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6462 * frv-tdep.c (frv_gdbarch_init): Ditto.
6463 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
6464 * cris-tdep.c (cris_gdbarch_init): Ditto.
6465 * arm-tdep.c (arm_gdbarch_init): Ditto.
6466
6467 2003-03-31 Andrew Cagney <cagney@redhat.com>
6468
6469 * gdbarch.sh (CALL_DUMMY_P): Delete.
6470 * gdbarch.h, gdbarch.c: Re-generate.
6471 * inferior.h (CALL_DUMMY_P): Delete macro.
6472 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6473 * vax-tdep.c (vax_gdbarch_init): Update.
6474 * v850-tdep.c (v850_gdbarch_init): Update.
6475 * sparc-tdep.c (sparc_gdbarch_init): Update.
6476 * sh-tdep.c (sh_gdbarch_init): Update.
6477 * s390-tdep.c (s390_gdbarch_init): Update.
6478 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6479 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
6480 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
6481 * mips-tdep.c (mips_gdbarch_init): Update.
6482 * mcore-tdep.c (mcore_gdbarch_init): Update.
6483 * m68k-tdep.c (m68k_gdbarch_init): Update.
6484 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6485 * ia64-tdep.c (ia64_gdbarch_init): Update.
6486 * i386-tdep.c (i386_gdbarch_init): Update.
6487 * h8300-tdep.c (h8300_gdbarch_init): Update.
6488 * frv-tdep.c (frv_gdbarch_init): Update.
6489 * d10v-tdep.c (d10v_gdbarch_init): Update.
6490 * cris-tdep.c (cris_gdbarch_init): Update.
6491 * breakpoint.c (deprecated_frame_in_dummy): Update.
6492 * avr-tdep.c (avr_gdbarch_init): Update.
6493 * alpha-tdep.c (alpha_gdbarch_init): Update.
6494 * arm-tdep.c (arm_gdbarch_init): Update.
6495 * dummy-frame.c (dummy_frame_this_id): Update comments.
6496 * rs6000-tdep.c (rs6000_extract_struct_value_address): Ditto.
6497 * frame.c (legacy_get_prev_frame): Ditto.
6498 * valops.c (call_function_by_hand): Delete function.
6499 (hand_function_call): Rename to call_function_by_hand
6500
6501 2003-03-30 Andrew Cagney <cagney@redhat.com>
6502
6503 2002-11-10 Klee Dienes <kdienes@apple.com>
6504 * value.h (struct value): Update comment.
6505
6506 2003-03-30 Andrew Cagney <cagney@redhat.com>
6507
6508 * d10v-tdep.c: Replace _FP_REGNUM and FP_REGNUM with
6509 D10V_FP_REGNUM.
6510 (d10v_gdbarch_init): Do not set fp_regnum.
6511
6512 * frame.c (get_frame_base): Force ID initialization.
6513 (get_prev_frame): Move computation of the frame ID from here ...
6514 (get_frame_id): ... to here.
6515 (legacy_get_prev_frame): Mark the frame ID as valid.
6516 * frame.h (struct frame_info): Add field "id_p".
6517
6518 2003-03-30 Mark Kettenis <kettenis@gnu.org>
6519
6520 * i386-tdep.c (i386_store_struct_return): Removed.
6521 (i386_gdbarch_init): Don't set deprecated_store_struct_return.
6522
6523 2003-03-30 Andrew Cagney <cagney@redhat.com>
6524
6525 * gdbarch.sh (DEPRECATED_DUMMY_WRITE_SP): Replace TARGET_WRITE_SP.
6526 * gdbarch.h, gdbarch.c: Regenerate.
6527 * v850-tdep.c (v850_gdbarch_init): Set deprecated_dummy_write_sp.
6528 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
6529 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6530 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
6531 * i386-tdep.c (i386_gdbarch_init): Ditto.
6532 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6533 * cris-tdep.c (cris_gdbarch_init): Ditto.
6534 * vax-tdep.c (vax_gdbarch_init): Ditto.
6535 * s390-tdep.c (s390_gdbarch_init): Ditto.
6536 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
6537 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6538 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
6539 * sparc-tdep.c (sparc_push_dummy_frame, sparc_pop_frame): Update.
6540 * config/sparc/tm-sp64.h (DEPRECATED_DUMMY_WRITE_SP): Update.
6541 * config/pa/tm-hppa.h (DEPRECATED_DUMMY_WRITE_SP): Define.
6542 * sparc-tdep.c (sparc_gdbarch_init): Update.
6543 * sh-tdep.c (sh_gdbarch_init): Update.
6544 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6545 * mips-tdep.c (mips_gdbarch_init): Update.
6546 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6547 * ia64-tdep.c (ia64_gdbarch_init): Update.
6548 * frv-tdep.c (frv_gdbarch_init): Update.
6549 * avr-tdep.c (avr_gdbarch_init): Update.
6550 * valops.c (hand_function_call): Replace TARGET_WRITE_SP with
6551 DEPRECATED_DUMMY_WRITE_SP. Call when the method is available,
6552 instead of when push_dummy_call is not available.
6553
6554 2003-03-30 Andrew Cagney <cagney@redhat.com>
6555
6556 * infttrace.c: Include "gdbthread.h".
6557 (parent_attach_all): Fix function signature.
6558 (call_ptrace): Update call.
6559 * Makefile.in (infttrace.o): Update dependencies.
6560
6561 2003-03-30 Andrew Cagney <cagney@redhat.com>
6562
6563 * gdbarch.sh (DEPRECATED_PUSH_RETURN_ADDRESS): Replace
6564 PUSH_RETURN_ADDRESS.
6565 * gdbarch.h, gdbarch.c: Regenerate.
6566 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6567 * x86-64-tdep.c (x86_64_init_abi): Update.
6568 * v850-tdep.c (v850_gdbarch_init): Update.
6569 * sparc-tdep.c (sparc_gdbarch_init): Update.
6570 * sh-tdep.c (sh_gdbarch_init): Update.
6571 * s390-tdep.c (s390_gdbarch_init): Update.
6572 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6573 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
6574 * mips-tdep.c (mips_gdbarch_init): Update.
6575 * mcore-tdep.c (mcore_gdbarch_init): Update.
6576 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6577 * ia64-tdep.c (ia64_gdbarch_init): Update.
6578 * i386-tdep.c (i386_gdbarch_init): Update.
6579 * h8300-tdep.c (h8300_gdbarch_init): Update.
6580 * frv-tdep.c (frv_gdbarch_init): Update.
6581 * cris-tdep.c (cris_gdbarch_init): Update.
6582 * avr-tdep.c (avr_gdbarch_init): Update.
6583 * arm-tdep.c (arm_gdbarch_init): Update.
6584 * valops.c (hand_function_call): Update.
6585
6586 2003-03-29 Andrew Cagney <cagney@redhat.com>
6587
6588 * d10v-tdep.c (d10v_gdbarch_init): Do not set call_dummy_words or
6589 sizeof_call_dummy_words.
6590 * gdbarch.sh (CALL_DUMMY_WORDS, SIZEOF_CALL_DUMMY_WORDS): Always
6591 define.
6592 * gdbarch.h: Regenerate.
6593
6594 2003-03-29 Andrew Cagney <cagney@redhat.com>
6595
6596 * infttrace.h: New file.
6597 * hpread.c: Include "gdb_assert.h" and "somsolib.h".
6598 (hpread_get_textlow): Detect an uninitialized dn_bufp.
6599 (hpread_read_doc_function_type): Detect an initialized type1.
6600 (hpread_quick_traverse): Initialize mod_name_string.
6601 * somsolib.h: Add #ifdef SOMSOLIB_H wrapper.
6602 (som_solib_get_solib_by_pc): Declare.
6603 (so_lib_thread_start_addr): Declare.
6604 (no_shared_libraries): Declare.
6605 * somread.c (init_import_symbols): Make static. Add forward
6606 declaration.
6607 * config/pa/nm-hppah.h: Include "infttrace.h" for
6608 parent_attach_all.
6609 (hppa_insert_hw_watchpoint): Declare.
6610 (hppa_can_use_hw_watchpoint, hppa_remove_hw_watchpoint): Declare.
6611 * hppah-nat.c: Include "gdb_string.h".
6612 (parent_attach_all): Delete extern declaration, moved to
6613 "infttrace.h".
6614 (hppa_can_use_hw_watchpoint): Change type of "type" parameter to
6615 int.
6616 (hppa_remove_hw_watchpoint, hppa_insert_hw_watchpoint): Ditto.
6617 * Makefile.in (infttrace_h): Define.
6618 (hpread.o): Update dependencies.
6619 (hppah-nat.o, hppa-hpux-tdep.o, hppa-tdep.o): Ditto.
6620 * hppa-hpux-tdep.c: Include "gdb_string.h".
6621 * hppa-tdep.c (hppa_frame_saved_pc): Initialize "old_pc".
6622 * infrun.c (handle_inferior_event): Always initialize
6623 stepped_after_stopped_by_watchpoint. Add default and remove
6624 fallthrough in switch statement.
6625 * infttrace.c (hppa_can_use_hw_watchpoint): Change type of "type"
6626 parameter to int.
6627 (hppa_remove_hw_watchpoint): Ditto.
6628
6629 2003-03-29 Andrew Cagney <cagney@redhat.com>
6630
6631 * ns32k-tdep.c (ns32k_gdbarch_init): Set the call dummy breakpoint
6632 offset.
6633
6634 2003-03-29 Richard Earnshaw <rearnsha@arm.com>
6635
6636 * arm-tdep.c (arm_push_arguments): Delete.
6637 (struct stack_item): New type.
6638 (push_stack_item, pop_stack_item, arm_push_dummy_call): New functions.
6639 (arm_store_struct_return): Delte.
6640 (arm_gdbarch_init): Register arm_push_dummy_call. Don't register
6641 arm_push_arguments or arm_store_struct_return.
6642
6643 2003-03-28 Andrew Cagney <cagney@redhat.com>
6644
6645 * Makefile.in (d10v-tdep.o): Update dependencies.
6646 * remote.h (target_resume_hook, target_wait_loop_hook): Declare.
6647 * d10v-tdep.c: Include "remote.h".
6648 (target_resume_hook): Delete extern declaration.
6649 (target_wait_loop_hook): Ditto.
6650 (tdisassemble_command): Eliminate assignment in "if" conditional.
6651 (d10v_ts2_register_sim_regno): Eliminate call to
6652 legacy_register_sim_regno.
6653 (d10v_ts3_register_sim_regno): Ditto.
6654
6655 2003-03-28 Jeff Johnston <jjohnstn@redhat.com>
6656
6657 * thread.c: Reindented.
6658 * lin-lwp.c: Ditto.
6659 * linux-proc.c: Ditto.
6660
6661 2003-03-28 Bob Rossi <bob_rossi@cox.net>
6662
6663 * MAINTAINERS (write after approval): Add myself.
6664
6665 2003-03-27 Theodore A. Roth <troth@openavr.org>
6666
6667 * objc-exp.y: Add missing semi-colons.
6668
6669 2003-03-27 Andrew Cagney <cagney@redhat.com>
6670
6671 * regcache.c (write_sp): Delete function and references.
6672 * inferior.h (write_sp): Delete declaration.
6673 * valops.c (hand_function_call): Replace write_sp with
6674 TARGET_WRITE_SP.
6675 * sparc-tdep.c (sparc_push_dummy_frame): Ditto.
6676 (sparc_pop_frame): Ditto.
6677
6678 2003-03-27 Andrew Cagney <cagney@redhat.com>
6679
6680 * NEWS: Mention removal of support for hppa*-*-bsd* and
6681 hppa*-*-osf* natives, and hppa*-*-pro* target.
6682 * config/pa/xm-hppah.h: Do not include "pa/xm-pa.h".
6683 * config/pa/xm-pa.h: Obsolete file.
6684 * config/pa/xm-hppab.h: Obsolete file.
6685 * config/pa/nm-hppab.h: Obsolete file.
6686 * config/pa/tm-hppab.h: Obsolete file.
6687 * config/pa/tm-hppao.h: Obsolete file.
6688 * config/pa/nm-hppao.h: Obsolete file.
6689 * config/pa/tm-pro.h: Obsolete file.
6690 * config/pa/hppaosf.mt: Obsolete file.
6691 * config/pa/hppaosf.mh: Obsolete file.
6692 * config/pa/hppapro.mt: Obsolete file.
6693 * config/pa/hppabsd.mt: Obsolete file.
6694 * config/pa/hppabsd.mh: Obsolete file.
6695 * configure.host: Disable hppa*-*-bsd* and hppa*-*-osf*.
6696 * configure.tgt: Disable hppa*-*-bsd*, hppa*-*-pro* and
6697 hppa*-*-osf*.
6698
6699 2003-03-27 Andrew Cagney <cagney@redhat.com>
6700
6701 * d10v-tdep.c (d10v_gdbarch_init): Set push_dummy_call instead of
6702 push_arguments. Don't set push_return_address or write_sp.
6703 (d10v_push_dummy_call): Replace d10v_push_arguments.
6704 (d10v_push_return_address, d10v_write_sp): Delete function,
6705 handled by push_dummy_call.
6706
6707 2003-03-26 Andrew Cagney <cagney@redhat.com>
6708
6709 * gdbarch.sh (DEPRECATED_PUSH_ARGUMENTS): Rename PUSH_ARGUMENTS.
6710 (push_dummy_call): New pure multi-arch replacement with gdbarch,
6711 regcache and dummy_addr parameters.
6712 * gdbarch.h, gdbarch.c: Re-generate.
6713 * valops.c (hand_function_call): Use gdbarch_push_dummy_call when
6714 available; assume it will handle stack alignment and return
6715 address issues. Fall back to DEPRECATED_PUSH_ARGUMENTS and
6716 legacy_push_arguments.
6717 (legacy_push_arguments): Rename default_push_arguments.
6718 * value.h (legacy_push_arguments): Rename default_push_arguments.
6719 * i386-tdep.c (i386_push_arguments): Call legacy_push_arguments.
6720 * config/sparc/tm-sparc.h (DEPRECATED_PUSH_ARGUMENTS): Update.
6721 * config/sparc/tm-sp64.h (DEPRECATED_PUSH_ARGUMENTS): Update.
6722 * config/pa/tm-hppa.h (DEPRECATED_PUSH_ARGUMENTS): Update.
6723 * config/i386/tm-symmetry.h: Update.
6724 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6725 * x86-64-tdep.c (x86_64_init_abi): Update.
6726 * v850-tdep.c (v850_gdbarch_init): Update.
6727 * sparc-tdep.c (sparc_gdbarch_init): Update.
6728 * sh-tdep.c (sh_gdbarch_init): Update.
6729 * s390-tdep.c (s390_gdbarch_init): Update.
6730 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6731 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
6732 * mips-tdep.c (mips_gdbarch_init): Update.
6733 * mcore-tdep.c (mcore_gdbarch_init): Update.
6734 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6735 * ia64-tdep.c (ia64_gdbarch_init): Update.
6736 * i386-tdep.c (i386_gdbarch_init): Update.
6737 * hppa-tdep.c (hppa_gdbarch_init): Update.
6738 * h8300-tdep.c (h8300_gdbarch_init): Update.
6739 * frv-tdep.c (frv_gdbarch_init): Update.
6740 * d10v-tdep.c (d10v_gdbarch_init): Update.
6741 * cris-tdep.c (cris_gdbarch_init): Update.
6742 * avr-tdep.c (avr_gdbarch_init): Update.
6743 * arm-tdep.c (arm_gdbarch_init): Update.
6744 * arm-linux-tdep.c (arm_linux_init_abi): Update.
6745 * alpha-tdep.c (alpha_gdbarch_init): Update.
6746
6747 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
6748
6749 * signals/signals.c (do_target_signal_to_host): Correct realtime
6750 signal range test.
6751
6752 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
6753
6754 * breakpoint.c (handle_gnu_4_16_catch_command, get_catch_sals)
6755 (struct sal_chain, map_catch_names): Remove.
6756 (catch_exception_command_1): Don't call
6757 handle_gnu_4_16_catch_command.
6758
6759 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
6760
6761 From Mark Dettinger <dettinge@de.ibm.com>:
6762 * dwarf2cfi.c (read_2u): Increment pointer by two.
6763
6764 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
6765
6766 * signals/signals.c: Fix typos in last change.
6767
6768 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
6769
6770 * signals/signals.c (REALTIME_LO, REALTIME_HI): Define if
6771 not already defined. Use __SIGRTMIN if available.
6772 (target_signal_from_host): Remove SIGRTMIN block.
6773 (do_target_signal_to_host): Remove SIGRTMIN block; check that
6774 the signal is within the realtime range.
6775
6776 2003-03-25 Adam Fedor <fedor@gnu.org>
6777
6778 * Makefile.in (infrun.o): Add $(language_h)
6779 * infrun.c (handle_inferior_event): Use skip_language_trampoline
6780 for language specific trampolines.
6781 * language.h (struct language_defn): Add skip_trampoline.
6782 (skip_language_trampoline): Declare.
6783 * language.c (unk_lang_trampoline, skip_language_trampoline):
6784 New functions.
6785 (unknown_language_defn, auto_language_defn, local_language_defn):
6786 Add ukn_lang_trampoline.
6787 * ada-lang.c (ada_language_defn): Add NULL for language
6788 specific skip_trampoline.
6789 * c-lang.c, f-lang.c, jv-lang.c, m2-lang.c, p-lang.c,
6790 scm-lang.c: Likewise.
6791 * objc-lang.c (objc_skip_trampoline): New function.
6792 (objc_language_defn): Add objc_skip_trampoline.
6793
6794 2003-03-25 Andrew Cagney <cagney@redhat.com>
6795
6796 * frame.c (get_prev_frame): Delay validating a frame's ID -
6797 non-NULL, didn't go backwards - until an attempt to unwind it to
6798 the previous frame.
6799
6800 2003-03-25 Andrew Cagney <cagney@redhat.com>
6801
6802 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Replace
6803 EXTRA_STACK_ALIGNMENT_NEEDED. Default to 0 not 1.
6804 * gdbarch.h, gdbarch.c: Re-generate.
6805 * config/sparc/tm-sparc.h
6806 (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Define.
6807 * sparc-tdep.c (sparc_gdbarch_init): Set
6808 deprecated_extra_stack_alignment_needed.
6809 * config/pa/tm-hppa.h (EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
6810 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not clear
6811 extra_stack_alignment_needed.
6812 * v850-tdep.c (v850_gdbarch_init): Ditto.
6813 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
6814 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6815 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
6816 * cris-tdep.c (cris_gdbarch_init): Ditto.
6817 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
6818 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
6819
6820 2003-03-25 Andrew Cagney <cagney@redhat.com>
6821
6822 * gdbarch.sh (DEPRECATED_STORE_STRUCT_RETURN): Replace
6823 STORE_STRUCT_RETURN.
6824 * gdbarch.h, gdbarch.c: Regenerate.
6825 * d10v-tdep.c (d10v_store_struct_return): Delete function.
6826 (d10v_push_arguments): Set the struct return register.
6827 (d10v_gdbarch_init): Update.
6828 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6829 * x86-64-tdep.c (x86_64_init_abi): Update.
6830 * vax-tdep.c (vax_gdbarch_init): Update.
6831 * v850-tdep.c (v850_gdbarch_init): Update.
6832 * sparc-tdep.c (sparc_gdbarch_init): Update.
6833 * sh-tdep.c (sh_gdbarch_init): Update.
6834 * s390-tdep.c (s390_gdbarch_init): Update.
6835 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
6836 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
6837 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
6838 * mips-tdep.c (mips_gdbarch_init): Update.
6839 * mcore-tdep.c (mcore_gdbarch_init): Update.
6840 * m68k-tdep.c (m68k_gdbarch_init): Update.
6841 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6842 * ia64-tdep.c (ia64_gdbarch_init): Update.
6843 * i386-tdep.c (i386_gdbarch_init): Update.
6844 * hppa-tdep.c (hppa_gdbarch_init): Update.
6845 * h8300-tdep.c (h8300_gdbarch_init): Update.
6846 * frv-tdep.c (frv_gdbarch_init): Update.
6847 * cris-tdep.c (cris_gdbarch_init): Update.
6848 * avr-tdep.c (avr_gdbarch_init): Update.
6849 * arm-tdep.c (arm_gdbarch_init): Update.
6850 * alpha-tdep.c (alpha_gdbarch_init): Update.
6851
6852 2003-03-25 Andrew Cagney <cagney@redhat.com>
6853
6854 * gdbarch.sh (CALL_DUMMY_STACK_ADJUST_P): Delete.
6855 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Replace
6856 CALL_DUMMY_STACK_ADJUST with a predicate variable.
6857 * gdbarch.h, gdbarch.c: Regenerate.
6858 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
6859 call_dummy_stack_adjust_p.
6860 * vax-tdep.c (vax_gdbarch_init): Ditto.
6861 * v850-tdep.c (v850_gdbarch_init): Ditto.
6862 * sh-tdep.c (sh_gdbarch_init): Ditto.
6863 * s390-tdep.c (s390_gdbarch_init): Ditto.
6864 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
6865 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
6866 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
6867 * mips-tdep.c (mips_gdbarch_init): Ditto.
6868 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
6869 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
6870 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
6871 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
6872 * i386-tdep.c (i386_gdbarch_init): Ditto.
6873 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
6874 * frv-tdep.c (frv_gdbarch_init): Ditto.
6875 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
6876 * cris-tdep.c (cris_gdbarch_init): Ditto.
6877 * avr-tdep.c (avr_gdbarch_init): Ditto.
6878 * arm-tdep.c (arm_gdbarch_init): Ditto.
6879 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
6880 * config/sparc/tm-sp64.h (CALL_DUMMY_STACK_ADJUST): Update.
6881 * config/sparc/tm-sparc.h (CALL_DUMMY_STACK_ADJUST): Update.
6882 * config/sparc/tm-sp64.h (CALL_DUMMY_STACK_ADJUST): Update.
6883 * sparc-tdep.c (sparc_gdbarch_init): Update. Do not set
6884 call_dummy_stack_adjust_p.
6885 * inferior.h (CALL_DUMMY_STACK_ADJUST_P): Delete macro.
6886 (CALL_DUMMY_STACK_ADJUST): Delete macro.
6887 * sparc-tdep.c (sparc32_push_arguments): Update.
6888 * valops.c (hand_function_call): Update.
6889
6890 2003-03-25 Corinna Vinschen <vinschen@redhat.com>
6891
6892 * xstormy16-tdep.c (xstormy16_gdbarch_init): Add call to
6893 set_gdbarch_char_signed.
6894
6895 2003-03-25 Richard Earnshaw <rearnsha@arm.com>
6896
6897 PR cli/548
6898 * arm-tdep.c (_initialize_arm_tdep): Command is "set arm disassembler".
6899
6900 2003-03-25 Richard Earnshaw <rearnsha@arm.com>
6901
6902 * arm-tdep.c (arm_gdbarch_init): Register the disassembler function.
6903 (_initialize_arm_tdep): Don't set tm_print_insn.
6904
6905 2003-03-24 Adam Fedor <fedor@gnu.org>
6906
6907 * Makefile.in (YYOBJ): Add objc-exp.tab.o
6908 * objc-lang.h: Add multiple inclusion protection.
6909 (start_msglist, add_msglist, end_msglist): Additional declarations.
6910
6911 2003-03-24 Richard Earnshaw <rearnsha@arm.com>
6912
6913 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): ARM_FLOAT_SOFT enum
6914 value was renamed to ARM_FLOAT_SOFT_FPA.
6915
6916 2003-03-23 Andrew Cagney <cagney@redhat.com>
6917
6918 * gdbarch.sh (DEPRECATED_FRAME_CHAIN): Replace FRAME_CHAIN.
6919 (DEPRECATED_FRAME_CHAIN_VALID): Replace FRAME_CHAIN_VALID.
6920 * gdbarch.h, gdbarch.c: Regenerate.
6921 * valops.c (hand_function_call): Update.
6922 * objfiles.h (DEPRECATED_FRAME_CHAIN_VALID): Update.
6923 * frame.c (legacy_saved_regs_this_id): Update.
6924 (legacy_get_prev_frame, get_prev_frame, legacy_frame_p): Update.
6925 * dummy-frame.h: Update.
6926 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_CHAIN): Update.
6927 * config/pa/tm-hppa.h (DEPRECATED_FRAME_CHAIN_VALID): Update.
6928 * config/m68k/tm-vx68.h (DEPRECATED_FRAME_CHAIN): Update.
6929 * config/m68k/tm-os68k.h (DEPRECATED_FRAME_CHAIN): Update.
6930 * config/m68k/tm-sun3.h: Update.
6931 * blockframe.c (inside_main_func, frame_chain_valid): Update.
6932 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
6933 * x86-64-tdep.c (x86_64_init_abi): Update.
6934 * vax-tdep.c (vax_gdbarch_init): Update.
6935 * v850-tdep.c (v850_gdbarch_init): Update.
6936 * sparc-tdep.c (sparc_frame_chain, sparc_gdbarch_init): Update.
6937 * sh-tdep.c (sh_gdbarch_init): Update.
6938 * s390-tdep.c (s390_gdbarch_init): Update.
6939 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
6940 (rs6000_gdbarch_init, rs6000_frame_saved_pc): Update.
6941 (frame_get_saved_regs): Update.
6942 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
6943 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
6944 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
6945 * mips-tdep.c (mips_gdbarch_init): Update.
6946 * mcore-tdep.c (mcore_gdbarch_init): Update.
6947 * m68k-tdep.c (m68k_gdbarch_init): Update.
6948 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
6949 * ia64-tdep.c (ia64_gdbarch_init): Update.
6950 * i386-tdep.c (i386_frame_num_args, i386_gdbarch_init): Update.
6951 * i386-interix-tdep.c (i386_interix_init_abi): Update.
6952 (i386_interix_back_one_frame): Update.
6953 * hppa-tdep.c (hppa_gdbarch_init): Update.
6954 (hppa_init_extra_frame_info): Update.
6955 * h8300-tdep.c (h8300_gdbarch_init): Update.
6956 * frv-tdep.c (frv_gdbarch_init): Update.
6957 * cris-tdep.c (cris_gdbarch_init): Update.
6958 * avr-tdep.c (avr_gdbarch_init): Update.
6959 * arm-tdep.c (arm_gdbarch_init): Update.
6960 * alpha-tdep.c (alpha_gdbarch_init): Update.
6961
6962 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
6963
6964 * arm-tdep.h (arm_float_model): Add AUTO and LAST values.
6965 (arm_get_fp_model): Declare.
6966 * arm-tdep.c (fp_model_strings): New string array.
6967 (arm_fp_model, current_fp_model): New variables.
6968 (arm_get_fp_model): New function.
6969 (arm_set_fp): New function.
6970 (set_fp_model_sfunc): New function.
6971 (show_fp_model): New function.
6972 (_initialize_arm_tdep): Add new command to set/show the FPU.
6973 (arm_extract_return_value): Use arm_get_fp_model.
6974 (arm_store_return_value): Likewise.
6975 (arm_gdbarch_init): Default fpa model is softfpa. Call arm_set_fp
6976 to initialize the floating-point data types.
6977 * arm-linux-tdep.c (arm_linux_init_abi): The default floating point
6978 model is FPA.
6979
6980 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
6981
6982 * arm-tdep.c (show_arm_command): Don't print out help. Instead, show
6983 the current setting of each value.
6984 (_initialize_arm_tdep): Delete variable new_cmd and add new vars
6985 new_set and new_show. Use add_setshow_cmd_full and
6986 add_setshow_boolean_cmd as appropriate. Deprecate "set/show apcs32"
6987 commands and add new version as subcommands of "set/show arm".
6988
6989 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
6990
6991 * arm-tdep.c (setarmcmdlist, showarmcmdlist): New command lists.
6992 (set_arm_command, show_arm_command): New functions.
6993 (_initialize_arm_tdep): Add them.
6994 (num_disassembly_options): Renamed from num_flavor_options.
6995 (valid_disassembly_styles): Renamed from valid_flavors.
6996 (disassembly_style): Renamed from disassembly_flavor.
6997 (set_disassembly_style_sfunc): Renamed from
6998 set_disassembly_flavor_sfunc.
6999 (set_disassembly_style): Renamed from set_disassembly_flavor.
7000 (arm_othernames): Updated.
7001 (_initialize_arm_tdep): Deprecate "set/show disassembly-flavor"
7002 command. Add "set/show arm disassembly" commands. Deprecate
7003 "othernames" command.
7004
7005 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
7006
7007 * Makefile.in (elf_reloc_macros_h, elf_arm_h): Define.
7008 (arm-tdep.o): Depend on elf_arm_h.
7009
7010 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
7011
7012 * Makefile.in (coff_internal_h): Define.
7013 (arm-tdep.o): Update dependencies.
7014
7015 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
7016
7017 * arm-tdep.c (prologue_cache): Delete.
7018 (check_prologue_cache, save_prologue_cache): Delete.
7019 (arm_scan_prologue): Don't check or update the prologue_cache.
7020 (arm_gdb_arch_init): Don't initialize it.
7021 (_initialize_arm_tdep): Likewise.
7022
7023 2003-03-21 Stephane Carrez <stcarrez@nerim.fr>
7024
7025 * MAINTAINERS (tui): Maintainer of tui code.
7026
7027 2003-03-21 Corinna Vinschen <vinschen@redhat.com>
7028
7029 * Makefile.in (ALLDEPFILES): Add i386-cygwin-tdep.c.
7030 (i386-cygwin-tdep.o): Add dependencies.
7031 * defs.h (enum gdb_osabi): Add GDB_OSABI_CYGWIN.
7032 * i386-cygwin-tdep.c: New file.
7033 * osabi.c (gdb_osabi_name): Add string for GDB_OSABI_CYGWIN.
7034 * config/i386/cygwin.mt (TDEPFILES): Add i386-cygwin-tdep.o.
7035
7036 2003-03-20 Andrew Cagney <cagney@redhat.com>
7037
7038 * infrun.c (DYNAMIC_TRAMPOLINE_NEXTPC): Delete macro.
7039 (handle_inferior_event): Remove code calling
7040 DYNAMIC_TRAMPOLINE_NEXTPC.
7041
7042 * Makefile.in (init.c): Don't add $(srcdir) prefix when a file
7043 already has a full path.
7044
7045 * main.c (gdb_main): Return 1.
7046 (captured_main): Call error to report an invalid interpreter.
7047
7048 * Makefile.in (alpha-osf1-tdep.o): Update dependencies.
7049 * alpha-osf1-tdep.c: Include "gdb_string.h".
7050
7051 2003-03-19 J. Brobecker <brobecker@gnat.com>
7052
7053 Continuing work to convert the hppa targets to multiarch partial.
7054
7055 * hppa-tdep.c (hppa_gdbarch_init): Set the push_dummy_frame gdbarch
7056 method, now that hppa_push_dummy_frame has a conformant prototype.
7057 * config/pa/tm-hppa.h (DEPRECATED_PUSH_DUMMY_FRAME): Wrap macro
7058 inside "#if !GDB_MULTI_ARCH ... #endif" conditional, in preparation
7059 for the switch to multiarch partial.
7060
7061 2003-03-19 Kevin Buettner <kevinb@redhat.com>
7062
7063 * mdebugread.c (parse_symbol): For stEnd, we're done counting
7064 when iss is issNull.
7065
7066 2003-03-18 Kevin Buettner <kevinb@redhat.com>
7067
7068 * mips-tdep.c (mips_register_name): Fix fencepost error involving
7069 NUM_REGS bounds check.
7070
7071 2003-03-18 Kevin Buettner <kevinb@redhat.com>
7072
7073 * Makefile.in (mips-tdep.o): Add dependency on $(gdb_assert_h).
7074 * mips-tdep.c (gdb_assert.h): Include.
7075 (mips_generic_reg_names, mips_processor_reg_names): Make static.
7076 (mips_register_name): Handle integer registers explicitly. Add
7077 bounds checking.
7078 (mips_r3041_reg_names, mips_r3051_reg_names, mips_r3081_reg_names)
7079 (mips_lsi33k_reg_names): Don't list integer registers; they're
7080 handled by mips_register_name() now.
7081 * config/mips/tm-irix3.h (MIPS_REGISTER_NAMES): Likewise.
7082 * config/mips/tm-irix6.h (MIPS_REGISTER_NAMES): Likewise.
7083 * config/mips/tm-mips.h (MIPS_REGISTER_NAMES): Likewise.
7084 * config/mips/tm-tx39.h (MIPS_REGISTER_NAMES): Likewise.
7085 * config/mips/tm-tx39l.h (MIPS_REGISTER_NAMES): Likewise.
7086
7087 2003-03-18 Andrew Cagney <cagney@redhat.com>
7088
7089 * printcmd.c (print_scalar_formatted): Change VALADDR parameter to
7090 a void pointer.
7091 * gdbtypes.h (print_scalar_formatted): Update declaration.
7092 * expression.h (enum exp_opcode): Remove non-ISO C trailing comma.
7093
7094 2003-03-18 J. Brobecker <brobecker@gnat.com>
7095
7096 * infrun.c (observer.h): Add #include.
7097 (normal_stop): Add call to observer_notify_normal_stop.
7098 * Makefile.in (infrun.o): Add dependency on observer.h.
7099
7100 2003-03-18 J. Brobecker <brobecker@gnat.com>
7101
7102 Continuing work to convert the hppa targets to multiarch partial.
7103 * hppa-tdep.c (hppa_push_dummy_frame): Remove unused function
7104 parameter. Reformat comment.
7105 * config/pa/tm-hppa.h (hppa_push_dummy_frame): Update profile.
7106 (DEPRECATED_PUSH_DUMMY_FRAME): Update call to hppa_push_dummy_frame()
7107 to match new profile.
7108
7109 2003-03-18 J. Brobecker <brobecker@gnat.com>
7110
7111 * hppa-tdep.c (hppa_push_dummy_frame): Remove hack which does not
7112 appear to be working in any case.
7113
7114 2003-03-18 J. Brobecker <brobecker@gnat.com>
7115
7116 * observer.c (observer_test_first_observer): New static variable.
7117 (observer_test_second_observer): Likewise.
7118 (observer_test_third_observer): Likewise.
7119 (observer_test_first_notification_function): New static function.
7120 (observer_test_second_notification_function): Likewise.
7121 (observer_test_third_notification_function): Likewise.
7122
7123 2003-03-17 J. Brobecker <brobecker@gnat.com>
7124
7125 * hppa-tdep.c (gdb_assert.h): Add missing #include.
7126 * somsolib.c (gdb_assert.h): Likewise.
7127 * Makefile.in (hppa-tdep.o): Add dependency on gdb_assert.h.
7128 (somsolib.o): Likewise.
7129
7130 2003-03-17 Andrew Cagney <cagney@redhat.com>
7131
7132 * disasm.c (gdb_disassembly): Set di.mach using the architecture's
7133 BFD. Simplify setting of di.endian.
7134
7135 2003-03-17 Andrew Cagney <cagney@redhat.com>
7136
7137 * rs6000-tdep.c (ppc_floating_point_unit_p): New function.
7138 * ppc-tdep.h (ppc_floating_point_unit_p): Declare.
7139
7140 From Elena Zannoni <ezannoni@redhat.com>
7141 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): Handle e500
7142 vector and floating-point parameters.
7143 (ppc_sysv_abi_use_struct_convention): Handle e500 struct return
7144 convention.
7145 (ppc_sysv_abi_broken_use_struct_convention): Ditto.
7146
7147 2003-03-17 Fernando Nasser <fnasser@redhat.com>
7148
7149 * MAINTAINERS: Remove my name from several maintainership roles.
7150
7151 2003-03-17 Andrew Cagney <cagney@redhat.com>
7152
7153 Fix frame off-by-one bug.
7154 * frame-unwind.h (frame_this_id_ftype): Replace
7155 frame_unwind_id_ftype.
7156 (frame_prev_register_ftype): Replace frame_unwind_reg_ftype.
7157 (struct frame_unwind): Replace "id" with "this_id". Replace "reg"
7158 with "prev_register".
7159 * frame-unwind.c (frame_unwind_find_by_pc): Return
7160 legacy_saved_regs_unwind instead of trad_frame_unwind. Update
7161 comment.
7162 * dummy-frame.c (cached_find_dummy_frame): Delete function.
7163 (dummy_frame_this_id): Replace dummy_frame_id_unwind.
7164 (dummy_frame_prev_register): Replace dummy_frame_register_unwind.
7165 (dummy_frame_unwind): Update.
7166 * sentinel-frame.c (sentinel_frame_prev_register): Replace
7167 sentinel_frame_register_unwind.
7168 (sentinel_frame_this_id): Replace sentinel_frame_id_unwind.
7169 (sentinel_frame_unwinder): Update.
7170 * frame.h (legacy_saved_regs_unwind): Replace trad_frame_unwind.
7171 (struct frame_info): Rename "unwind_cache" to "prologue_cache".
7172 * frame.c (create_sentinel_frame): Update. Initialize
7173 "prologue_cache" instead of "unwind_cache".
7174 (frame_register_unwind): Call this frame's prev_register with the
7175 next frame and this frame's prologue cache.
7176 (get_prev_frame): Simplify. Always call prev frame's this_id with
7177 this frame and prev frame's prologue cache. Document that this
7178 call is shifted one to the left when compared to the
7179 frame_register_unwind call.
7180 (legacy_saved_regs_prev_register): Replace
7181 frame_saved_regs_register_unwind.
7182 (legacy_saved_regs_this_id): Replace frame_saved_regs_id_unwind.
7183 (legacy_saved_regs_unwinder): Replace trad_frame_unwinder.
7184 (legacy_saved_regs_unwind): Replace trad_frame_unwind.
7185 * d10v-tdep.c (d10v_frame_this_id): Replace d10v_frame_id_unwind.
7186 (d10v_frame_unwind): Update.
7187 (d10v_frame_prev_register): Replace d10v_frame_register_unwind.
7188 (d10v_frame_unwind_cache): Replace this "fi" with "next_frame".
7189 (saved_regs_unwinder): Replace this "frame" with "next_frame", and
7190 "saved_regs" with "this_saved_regs".
7191
7192 2003-03-16 Andrew Cagney <cagney@redhat.com>
7193
7194 * frame.c (frame_pop): Don't call target_store_registers. Fix
7195 problem reported by Mark Kettenis.
7196
7197 2003-03-16 Mark Kettenis <kettenis@gnu.org>
7198
7199 * i386-tdep.c (i386_register_type): Renamed from
7200 i386_register_virtual_type. Adjust function signature.
7201 (i386_gdbarch_init): Set register_type instead of
7202 deprecated_max_register_raw_size,
7203 deprecated_max_register_virtual_size and register_virtual_type.
7204
7205 2003-03-14 Andrew Cagney <cagney@redhat.com>
7206
7207 * frame.c (get_prev_frame): When a legacy frame, always call
7208 legacy_get_prev_frame. Simplify unwind code using assumption that
7209 the unwinder is new.
7210 (legacy_get_prev_frame): Handle legacy sentinel frame unwind here.
7211 (legacy_frame_p): When no gdbarch_unwind_dummy_id, or
7212 SAVED_DUMMY_FRAME_TOS, assume a legacy frame.
7213
7214 2003-03-14 Andrew Cagney <cagney@redhat.com>
7215
7216 * frame.c (get_saved_register): Delete function.
7217 * frame.h (get_saved_register): Delete declaration.
7218 * xstormy16-tdep.c: Update comment.
7219 * regcache.h: Update comments.
7220 * sparc-tdep.c (sparc_init_extra_frame_info): Instead of
7221 get_saved_register and extract_address, use
7222 frame_read_unsigned_register.
7223 (sparc_frame_saved_pc): Ditto.
7224 (sparc_get_saved_register): Instead of get_saved_register, use
7225 frame_register.
7226 (sparc_pop_frame): Ditto.
7227 * findvar.c: Update comments.
7228 (value_of_register): Call frame_register instead of
7229 get_saved_register.
7230 (value_from_register): Ditto.
7231 * config/sparc/tm-sparc.h: Update comment.
7232 * breakpoint.c: Update comment.
7233
7234 2003-03-14 Andrew Cagney <cagney@redhat.com>
7235
7236 * gdbarch.sh (DEPRECATED_GET_SAVED_REGISTER): Replace
7237 GET_SAVED_REGISTER.
7238 * gdbarch.h, gdbarch.c: Re-generate.
7239 * frame.h: Update comments.
7240 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
7241 * x86-64-tdep.c (x86_64_init_abi): Update.
7242 * sparc-tdep.c (sparc_gdbarch_init): Update.
7243 * sh-tdep.c (sh_gdbarch_init): Update.
7244 * mips-tdep.c (mips_gdbarch_init): Update.
7245 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
7246 * cris-tdep.c (cris_gdbarch_init): Update.
7247 * ia64-tdep.c (ia64_gdbarch_init): Update.
7248 * frame.c (frame_register): Update.
7249 (get_saved_register): Update.
7250 * config/sparc/tm-sparc.h (DEPRECATED_GET_SAVED_REGISTER): Update.
7251
7252 2003-03-13 Andrew Cagney <cagney@redhat.com>
7253
7254 * gdbarch.sh (DEPRECATED_POP_FRAME): Replace POP_FRAME.
7255 * gdbarch.h, gdbarch.c: Regenerate.
7256 * valops.c (hand_function_call): Update comment.
7257 * stack.c (return_command): Update comment.
7258 * config/sparc/tm-sparc.h (DEPRECATED_POP_FRAME): Update.
7259 * config/pa/tm-hppa.h (DEPRECATED_POP_FRAME): Update.
7260 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
7261 * x86-64-tdep.c (x86_64_init_abi): Update.
7262 * vax-tdep.c (vax_gdbarch_init): Update.
7263 * v850-tdep.c (v850_gdbarch_init): Update.
7264 * sparc-tdep.c (sparc_gdbarch_init): Update.
7265 * sh-tdep.c (sh_gdbarch_init): Update.
7266 * s390-tdep.c (s390_gdbarch_init): Update.
7267 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
7268 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
7269 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
7270 * mips-tdep.c (mips_gdbarch_init): Update.
7271 * mcore-tdep.c (mcore_gdbarch_init): Update.
7272 * m68k-tdep.c (m68k_gdbarch_init): Update.
7273 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
7274 * ia64-tdep.c (ia64_gdbarch_init): Update.
7275 * i386-tdep.c (i386_gdbarch_init): Update.
7276 * hppa-tdep.c (hppa_gdbarch_init): Update.
7277 * h8300-tdep.c (h8300_gdbarch_init): Update.
7278 * frv-tdep.c (frv_gdbarch_init): Update.
7279 * cris-tdep.c (cris_gdbarch_init): Update.
7280 * avr-tdep.c (avr_gdbarch_init): Update.
7281 * arm-tdep.c (arm_gdbarch_init): Update.
7282 * alpha-tdep.c (alpha_gdbarch_init): Update.
7283
7284 2003-03-13 Andrew Cagney <cagney@redhat.com>
7285
7286 * frame.c (legacy_frame_p): New function.
7287 (get_prev_frame): Use legacy_frame_p.
7288 * frame.h (legacy_frame_p): Declare.
7289
7290 2003-03-13 D. Venkatasubramanian <dvenkat@noida.hcltech.com>
7291
7292 * MAINTAINERS (write after approval): Alphabetically
7293 listing corrected.
7294
7295 2003-03-13 D. Venkatasubramanian <dvenkat@noida.hcltech.com>
7296
7297 * MAINTAINERS (write after approval): Add myself.
7298
7299 2003-03-12 Andrew Cagney <cagney@redhat.com>
7300
7301 * frame.c (get_prev_frame): Rename the frame parameter to
7302 "this_frame".
7303 (get_next_frame, legacy_get_prev_frame): Ditto.
7304
7305 2003-03-12 Andrew Cagney <cagney@redhat.com>
7306
7307 * frame.c (get_current_frame): Check target_has_registers before
7308 checking target_has_stack.
7309 * eval.c (evaluate_subexp_standard): Use get_selected_frame,
7310 instead of deprecated_selected_frame.
7311 * findvar.c (value_of_register): Pass "frame", not
7312 deprecated_selected_frame, to value_of_builtin_reg.
7313
7314 2003-03-12 Andrew Cagney <cagney@redhat.com>
7315
7316 * regcache.c (regcache_cooked_write_signed): New function.
7317 (regcache_cooked_write_unsigned): New function.
7318 (regcache_cooked_read_unsigned): Fix regnum in range assertion.
7319 (regcache_cooked_read_signed): Fix regnum in range assertion.
7320 * regcache.h (regcache_cooked_write_signed): Declare.
7321 (regcache_cooked_write_unsigned): Declare.
7322
7323 2003-03-12 Andrew Cagney <cagney@redhat.com>
7324
7325 * gdbarch.sh (DEPRECATED_FRAME_SAVED_PC): Replace FRAME_SAVED_PC.
7326 * gdbarch.h, gdbarch.c: Re-generate.
7327 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
7328 * x86-64-tdep.h: Update.
7329 * x86-64-tdep.c (x86_64_init_abi): Update.
7330 * v850-tdep.c (v850_gdbarch_init): Update.
7331 * sparc-tdep.c (sparc_gdbarch_init): Update.
7332 * sh-tdep.c (sh_gdbarch_init): Update.
7333 * s390-tdep.c (s390_gdbarch_init): Update.
7334 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
7335 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
7336 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
7337 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
7338 * mips-tdep.c (mips_gdbarch_init): Update.
7339 * mcore-tdep.c (mcore_gdbarch_init): Update.
7340 * m68k-tdep.c (m68k_gdbarch_init): Update.
7341 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
7342 * ia64-tdep.c (ia64_gdbarch_init): Update.
7343 * i386-tdep.c (i386_gdbarch_init): Update.
7344 * i386-interix-tdep.c (i386_interix_init_abi): Update.
7345 * hppa-tdep.c (hppa_gdbarch_init): Update.
7346 * h8300-tdep.c (h8300_gdbarch_init): Update.
7347 * frv-tdep.c (frv_gdbarch_init): Update.
7348 * cris-tdep.c (cris_gdbarch_init): Update.
7349 * avr-tdep.c (avr_gdbarch_init): Update.
7350 * arm-tdep.c (arm_gdbarch_init): Update.
7351 * alpha-tdep.c (alpha_gdbarch_init): Update.
7352 * sh-tdep.c (sh_init_extra_frame_info): Update.
7353 (sh64_init_extra_frame_info): Update.
7354 * ns32knbsd-nat.c (frame_num_args): Update.
7355 * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Update.
7356 * xstormy16-tdep.c (xstormy16_pop_frame): Update.
7357 (xstormy16_frame_chain_valid): Update.
7358 * vax-tdep.c (vax_saved_pc_after_call): Update.
7359 * v850-tdep.c (v850_frame_chain): Update.
7360 (v850_pop_frame): Update.
7361 (v850_init_extra_frame_info): Update.
7362 * sparc-tdep.c (setup_arbitrary_frame): Update.
7363 * ns32k-tdep.c (umax_frame_num_args): Update.
7364 * s390-tdep.c (s390_pop_frame_regular): Update.
7365 * mn10300-tdep.c (mn10300_frame_chain): Update.
7366 (mn10300_pop_frame_regular): Update.
7367 (mn10300_init_extra_frame_info): Update.
7368 * mips-tdep.c (mips_init_frame_pc_first): Update.
7369 (mips_frame_chain): Update.
7370 (mips_pop_frame): Update.
7371 * mcore-tdep.c (mcore_frame_chain): Update.
7372 (mcore_pop_frame): Update.
7373 (mcore_init_extra_frame_info): Update.
7374 * arch-utils.c (init_frame_pc_default): Update.
7375 * m68k-tdep.c (isi_frame_num_args): Update.
7376 (delta68_frame_num_args): Update.
7377 (news_frame_num_args): Update.
7378 * ia64-tdep.c (ia64_pop_frame_regular): Update.
7379 * alpha-tdep.c (alpha_init_frame_pc_first): Update.
7380 (alpha_frame_chain): Update.
7381 (alpha_pop_frame): Update.
7382 * hppa-tdep.c (hppa_saved_pc_after_call): Update.
7383 (hppa_init_extra_frame_info): Update.
7384 (hppa_frame_chain): Update.
7385 (hppa_frame_chain_valid): Update.
7386 * cris-tdep.c (cris_init_extra_frame_info): Update.
7387 * avr-tdep.c (avr_init_extra_frame_info): Update.
7388 * arm-tdep.c (arm_frame_chain_valid): Update.
7389 (arm_init_extra_frame_info): Update.
7390 (arm_pop_frame): Update.
7391 * frame.c (frame_pc_unwind): Update.
7392 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_SAVED_PC): Update.
7393 (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
7394 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
7395 * config/pa/tm-hppa.h (DEPRECATED_FRAME_SAVED_PC): Update.
7396 * config/m68k/tm-delta68.h (DEPRECATED_FRAME_SAVED_PC): Update.
7397 * config/m68k/tm-linux.h (DEPRECATED_FRAME_SAVED_PC): Update.
7398
7399 2003-03-12 Andrew Cagney <cagney@redhat.com>
7400
7401 Eliminate the need for POP_FRAME.
7402 * frame.c (do_frame_unwind_register): New function.
7403 (frame_pop): When no POP_FRAME, pop the frame using register
7404 unwind and a scratch regcache.
7405 (frame_saved_regs_pop): Delete function.
7406 (trad_frame_unwinder): Update.
7407 * d10v-tdep.c (d10v_frame_pop): Delete function.
7408 (d10v_frame_unwind): Update.
7409 * sentinel-frame.c (sentinel_frame_pop): Delete function.
7410 (sentinel_frame_unwinder): Update.
7411 * dummy-frame.c (dummy_frame_pop): Delete function.
7412 (dummy_frame_unwind): Update.
7413 * frame-unwind.h (frame_unwind_pop_ftype): Delete definition.
7414 (struct frame_unwind): Update.
7415
7416 2003-03-11 Kevin Buettner <kevinb@redhat.com>
7417
7418 * mips-tdep.c (mips_ecoff_reg_to_regnum): Rename to
7419 mips_dwarf_dwarf2_ecoff_reg_to_regnum().
7420 (mips_dwarf_dwarf2_ecoff_reg_to_regnum, mips_stab_reg_to_regnum):
7421 Do range checks on register number obtained from debugging info.
7422 (mips_gdbarch_init): Call set_gdbarch_dwarf_reg_to_regnum() and
7423 set_gdbarch_dwarf2_reg_to_regnum(). Adjust call of
7424 set_gdbarch_ecoff_reg_to_regnum() to account for new name of
7425 mapping function.
7426 (do_fp_register_row): Fix typo which caused double type to be
7427 used when attempting to unpack a float.
7428
7429 2003-03-11 J. Brobecker <brobecker@gnat.com>
7430
7431 * breakpoint.c (bpstat_stop_status): Fix a small memory leak.
7432
7433 2003-03-11 Andrew Cagney <cagney@redhat.com>
7434
7435 * frame.c (deprecated_update_frame_pc_hack): Don't assume a next
7436 frame. Problem found by Corinna Vinschen.
7437
7438 2003-03-11 Pierre Muller <muller@ics.u-strasbg.fr>
7439
7440 * doublest.c (floatformat_from_length): Accept also
7441 the real size of 'long double' type.
7442
7443 2003-03-10 Daniel Jacobowitz <drow@mvista.com>
7444
7445 From Klee Dienes <kdienes@apple.com>:
7446 * breakpoint.c (bpstat_copy): Copy the command lines as well
7447 as the old value, to match what is freed in bpstat_clear.
7448
7449 2003-03-10 David Carlton <carlton@math.stanford.edu>
7450
7451 * minsyms.c (add_minsym_to_hash_table): Replace
7452 DEPRECATED_SYMBOL_NAME by SYMBOL_LINKAGE_NAME.
7453 (compare_minimal_symbols, compact_minimal_symbols)
7454 (install_minimal_symbols, find_solib_trampoline_target): Ditto.
7455 (lookup_minimal_symbol_text): Use strcmp on linkage names instead
7456 of DEPRECATED_SYMBOL_MATCHES_NAME.
7457 (lookup_minimal_symbol_solib_trampoline): Ditto.
7458
7459 2003-03-10 Andrew Cagney <cagney@redhat.com>
7460
7461 * regcache.h (regcache_cooked_read_ftype): Define.
7462 (regcache_save, regcache_restore): Add a cooked_read parameter.
7463 * regcache.c (regcache_save, regcache_restore): Update.
7464 (do_cooked_read): New function.
7465 (regcache_cpy): Pass do_cooked_read to regcache_save and
7466 regcache_restore.
7467
7468 2003-03-10 Andrew Cagney <cagney@redhat.com>
7469
7470 * gdbarch.sh (DEPRECATED_FRAME_SAVED_PC): Replace FRAME_SAVED_PC.
7471 * gdbarch.h, gdbarch.c: Re-generate.
7472 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
7473 * x86-64-tdep.h: Update.
7474 * x86-64-tdep.c (x86_64_init_abi): Update.
7475 * v850-tdep.c (v850_gdbarch_init): Update.
7476 * sparc-tdep.c (sparc_gdbarch_init): Update.
7477 * sh-tdep.c (sh_gdbarch_init): Update.
7478 * s390-tdep.c (s390_gdbarch_init): Update.
7479 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
7480 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
7481 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
7482 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
7483 * mips-tdep.c (mips_gdbarch_init): Update.
7484 * mcore-tdep.c (mcore_gdbarch_init): Update.
7485 * m68k-tdep.c (m68k_gdbarch_init): Update.
7486 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
7487 * ia64-tdep.c (ia64_gdbarch_init): Update.
7488 * i386-tdep.c (i386_gdbarch_init): Update.
7489 * i386-interix-tdep.c (i386_interix_init_abi): Update.
7490 * hppa-tdep.c (hppa_gdbarch_init): Update.
7491 * h8300-tdep.c (h8300_gdbarch_init): Update.
7492 * frv-tdep.c (frv_gdbarch_init): Update.
7493 * cris-tdep.c (cris_gdbarch_init): Update.
7494 * avr-tdep.c (avr_gdbarch_init): Update.
7495 * arm-tdep.c (arm_gdbarch_init): Update.
7496 * alpha-tdep.c (alpha_gdbarch_init): Update.
7497 * sh-tdep.c (sh_init_extra_frame_info): Update.
7498 (sh64_init_extra_frame_info): Update.
7499 * ns32knbsd-nat.c (frame_num_args): Update.
7500 * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Update.
7501 * xstormy16-tdep.c (xstormy16_pop_frame): Update.
7502 (xstormy16_frame_chain_valid): Update.
7503 * vax-tdep.c (vax_saved_pc_after_call): Update.
7504 * v850-tdep.c (v850_frame_chain): Update.
7505 (v850_pop_frame): Update.
7506 (v850_init_extra_frame_info): Update.
7507 * sparc-tdep.c (setup_arbitrary_frame): Update.
7508 * ns32k-tdep.c (umax_frame_num_args): Update.
7509 * s390-tdep.c (s390_pop_frame_regular): Update.
7510 * mn10300-tdep.c (mn10300_frame_chain): Update.
7511 (mn10300_pop_frame_regular): Update.
7512 (mn10300_init_extra_frame_info): Update.
7513 * mips-tdep.c (mips_init_frame_pc_first): Update.
7514 (mips_frame_chain): Update.
7515 (mips_pop_frame): Update.
7516 * mcore-tdep.c (mcore_frame_chain): Update.
7517 (mcore_pop_frame): Update.
7518 (mcore_init_extra_frame_info): Update.
7519 * arch-utils.c (init_frame_pc_default): Update.
7520 * m68k-tdep.c (isi_frame_num_args): Update.
7521 (delta68_frame_num_args): Update.
7522 (news_frame_num_args): Update.
7523 * ia64-tdep.c (ia64_pop_frame_regular): Update.
7524 * alpha-tdep.c (alpha_init_frame_pc_first): Update.
7525 (alpha_frame_chain): Update.
7526 (alpha_pop_frame): Update.
7527 * hppa-tdep.c (hppa_saved_pc_after_call): Update.
7528 (hppa_init_extra_frame_info): Update.
7529 (hppa_frame_chain): Update.
7530 (hppa_frame_chain_valid): Update.
7531 * cris-tdep.c (cris_init_extra_frame_info): Update.
7532 * avr-tdep.c (avr_init_extra_frame_info): Update.
7533 * arm-tdep.c (arm_frame_chain_valid): Update.
7534 (arm_init_extra_frame_info): Update.
7535 (arm_pop_frame): Update.
7536 * frame.c (frame_pc_unwind): Update.
7537 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_SAVED_PC): Update.
7538 (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
7539 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
7540 * config/pa/tm-hppa.h (DEPRECATED_FRAME_SAVED_PC): Update.
7541 * config/m68k/tm-delta68.h (DEPRECATED_FRAME_SAVED_PC): Update.
7542 * config/m68k/tm-linux.h (DEPRECATED_FRAME_SAVED_PC): Update.
7543
7544 2003-03-10 Andrew Cagney <cagney@redhat.com>
7545
7546 * gdbarch.sh (gdbarch_unwind_pc): New method.
7547 * gdbarch.h, gdbarch.c: Regenerate.
7548 * frame.c (frame_pc_unwind): Rewrite. Prefer gdbarch_unwind_pc,
7549 but use read_pc and FRAME_SAVED_PC as fall backs.
7550 (frame_saved_regs_pc_unwind): Delete function.
7551 (trad_frame_unwinder): Update.
7552 * frame-unwind.h (frame_unwind_pc_ftype): Delete declaration.
7553 (struct frame_unwind): Update.
7554 * dummy-frame.c (dummy_frame_pc_unwind): Delete function.
7555 (dummy_frame_unwind): Update.
7556 * sentinel-frame.c (sentinel_frame_pc_unwind): Delete function.
7557 (sentinel_frame_unwinder): Update.
7558 * d10v-tdep.c (d10v_frame_pc_unwind): Delete function.
7559 (d10v_frame_unwind): Update.
7560 (d10v_unwind_pc): New function.
7561 (d10v_gdbarch_init): Set unwind_pc.
7562
7563 2003-03-10 Andrew Cagney <cagney@redhat.com>
7564
7565 * gdbarch.h: Re-generate.
7566
7567 * d10v-tdep.c (d10v_frame_register_unwind): Correctly unwind the
7568 PC.
7569 (d10v_frame_pop): Unwind the PC, and not the LR, when restoring
7570 the PC register.
7571
7572 2003-03-08 Mark Kettenis <kettenis@gnu.org>
7573
7574 * gdbarch.sh (save_dummy_frame_tos): Add comment.
7575
7576 2003-03-08 Andrew Cagney <cagney@redhat.com>
7577
7578 * cli-out.c: Update copyright.
7579 (cli_out_data): Define typedef. Use instead of ui_out_data.
7580
7581 2003-03-08 Andrew Cagney <cagney@redhat.com>
7582
7583 * valarith.c (value_subscripted_rvalue): Copy the array's REGNO to
7584 the result.
7585
7586 2003-03-07 Andrew Cagney <cagney@redhat.com>
7587
7588 * gdbarch.sh: Don't generate two macro definitions when an
7589 undefined macro taking no arguments.
7590 * gdbarch.h: Regenerate.
7591
7592 2002-03-07 Michal Ludvig <mludvig@suse.cz>
7593
7594 * x86-64-tdep.c (x86_64_save_dummy_frame_tos)
7595 (x86_64_unwind_dummy_id): New functions.
7596 (x86_64_init_abi): Register these two new functions.
7597
7598 2003-03-07 Michal Ludvig <mludvig@suse.cz>
7599
7600 * x86-64-tdep.c (x86_64_function_has_prologue): New function.
7601 (x86_64_skip_prologue): Move prologue detection to
7602 separate function.
7603 * x86-64-tdep.h (x86_64_function_has_prologue): New prototype.
7604
7605 2003-03-05 Andrew Cagney <cagney@redhat.com>
7606
7607 * d10v-tdep.c (d10v_unwind_dummy_id): New function.
7608 (d10v_gdbarch_init): Set unwind_dummy_id and save_dummy_frame_tos.
7609 * frame.c (get_prev_frame): Restructure the frame ID unwind code
7610 to use unwind_dummy_id when a dummy frame.
7611 * gdbarch.sh (unwind_dummy_id): New multi-arch method with
7612 predicate.
7613 * gdbarch.h, gdbarch.c: Regneerate.
7614
7615 2003-03-05 Andrew Cagney <cagney@redhat.com>
7616
7617 * d10v-tdep.c (struct d10v_unwind_cache): Add field "base".
7618 (d10v_frame_unwind_cache): Rewrite code computing the base and SP.
7619 Do not use d10v_read_sp or d10v_read_fp when obtaining register
7620 values.
7621
7622 2003-03-05 Andrew Cagney <cagney@redhat.com>
7623
7624 * d10v-tdep.c (struct frame_extra_info): Delete unused structure.
7625 (struct d10v_unwind_cache): Delete field "frameless". Replace
7626 "next_addr" with "sp_offset". Add "r11_offset".
7627 (d10v_frame_unwind_cache): Update.
7628 (prologue_find_regs): Update. When "mv r11, sp", save the
7629 "sp_offset" in "r11_offset". Recognize "st rn, @r11", note that
7630 RN was saved in r11_offset.
7631
7632 2003-03-05 Andrew Cagney <cagney@redhat.com>
7633
7634 * frame.c (deprecated_update_frame_pc_hack): Also update the the
7635 cached PC value in the next frame.
7636
7637 2003-03-05 Andrew Cagney <cagney@redhat.com>
7638
7639 * frame.h (struct frame_info): Replace "id_unwind_cache_p" and
7640 "id_unwind_cache" with "id".
7641 (frame_id_unwind): Delete declaration.
7642 * frame.c (frame_id_unwind): Delete function.
7643 (get_prev_frame): Call the frame id unwind method directly. Store
7644 the returned next frame's ID value in NEXT_FRAME. Note that there
7645 is a problem with the wrong unwind ID being called with the wrong
7646 unwind cache.
7647
7648 2003-03-05 Daniel Jacobowitz <drow@mvista.com>
7649
7650 * Makefile.in (FLAGS_TO_PASS): Add LDFLAGS.
7651
7652 2003-03-05 James Ingham <jingham@apple.com>
7653 Daniel Jacobowitz <drow@mvista.com>
7654
7655 * cp-abi.c: Include "command.h", "gdbcmd.h", and "ui-out.h".
7656 (auto_cp_abi): New variable.
7657 (current_cp_abi, num_cp_abis): Make static.
7658 (CP_ABI_MAX): Define.
7659 (cp_abis): Turn into an array.
7660 (value_virtual_fn_field): Fix formatting.
7661 (switch_to_cp_abi, register_cp_abi): Update. register_cp_abi now
7662 takes a pointer.
7663 (set_cp_abi_as_auto_default, set_cp_abi_cmd, show_cp_abi_cmd)
7664 (list_cp_abis, _initialize_cp_abi): New functions.
7665 * cp-abi.h: Add prototype for set_cp_abi_as_auto_default. Remove
7666 declarations for cp_abis, num_cp_abis, current_cp_abi, and
7667 switch_to_cp_abi. Update prototype for register_cp_abi.
7668 * Makefile.in (cp-abi.o): Update dependencies.
7669 * minsyms.c (install_minimal_symbols): Call set_cp_abi_as_auto_default
7670 instead of switch_to_cp_abi.
7671 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Likewise. Update call to
7672 register_cp_abi.
7673 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Update call to
7674 register_cp_abi.
7675 * hpacc-abi.c (_initialize_hpacc_abi): Likewise.
7676
7677 2003-03-05 Daniel Jacobowitz <drow@mvista.com>
7678
7679 * dwarf2expr.c (new_dwarf_expr_context): Add (void) to definition.
7680 * dwarf2loc.c: Include "regcache.h".
7681 (dwarf_expr_read_reg): Rename regnum argument to dwarf_regnum. Use
7682 register_size.
7683 * Makefile.in (dwarf2loc.o): Update dependencies.
7684
7685 2003-03-04 Theodore A. Roth <troth@openavr.org>
7686
7687 * avr-tdep.c (avr_io_reg_read_command): Fix to handle case when the
7688 number of io registers reported by remote target is not a multiple of
7689 step.
7690
7691 2003-03-04 David Carlton <carlton@math.stanford.edu>
7692
7693 * symtab.c (lookup_partial_symbol): Add linkage_name argument.
7694 (lookup_symbol_aux_psymtabs): Update call to
7695 lookup_partial_symbol.
7696 (lookup_transparent_type, find_main_psymtab)
7697 (make_symbol_overload_list): Ditto.
7698
7699 2003-03-04 Kazu Hirata <kazu@cs.umass.edu>
7700
7701 * MAINTAINERS (Write after approval): Update my email address.
7702
7703 2003-03-03 Andrew Cagney <cagney@redhat.com>
7704
7705 Make MAX_REGISTER_RAW_SIZE and MAX_REGISTER_VIRTUAL_SIZE optional.
7706 * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE): Variable with
7707 predicate. Replace MAX_REGISTER_RAW_SIZE.
7708 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto for
7709 MAX_REGISTER_VIRTUAL_SIZE.
7710 * regcache.c (legacy_max_register_raw_size): New function.
7711 (legacy_max_register_virtual_size): New function.
7712 * defs.h (MAX_REGISTER_VIRTUAL_SIZE): Define.
7713 (MAX_REGISTER_RAW_SIZE): Define.
7714 (legacy_max_register_raw_size): Declare.
7715 (legacy_max_register_virtual_size): Declare.
7716 * config/sparc/tm-sparc.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
7717 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Update.
7718 * config/sparc/tm-sp64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
7719 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto.
7720 * config/pa/tm-hppa.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
7721 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto.
7722 * config/pa/tm-hppa64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
7723 * config/ia64/tm-ia64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
7724 * config/i386/tm-ptx.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
7725 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
7726 * vax-tdep.c (vax_gdbarch_init): Update.
7727 * v850-tdep.c (v850_gdbarch_init): Update.
7728 * sparc-tdep.c (sparc_gdbarch_init): Update.
7729 * sh-tdep.c (sh_gdbarch_init): Update.
7730 * s390-tdep.c (s390_gdbarch_init): Update.
7731 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
7732 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
7733 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
7734 * mips-tdep.c (mips_gdbarch_init): Update.
7735 * mcore-tdep.c (mcore_gdbarch_init): Update.
7736 * m68k-tdep.c (m68k_gdbarch_init): Update.
7737 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
7738 * ia64-tdep.c (ia64_gdbarch_init): Update.
7739 * i386-tdep.c (i386_gdbarch_init): Update.
7740 * hppa-tdep.c (hppa_gdbarch_init): Update.
7741 * h8300-tdep.c (h8300_gdbarch_init): Update.
7742 * frv-tdep.c (frv_gdbarch_init): Update.
7743 * cris-tdep.c (cris_gdbarch_init): Update.
7744 * avr-tdep.c (avr_gdbarch_init): Update.
7745 * arm-tdep.c (arm_gdbarch_init): Update.
7746 * alpha-tdep.c (alpha_gdbarch_init): Update.
7747 * d10v-tdep.c (d10v_gdbarch_init): Do not set
7748 max_register_raw_size or max_register_virtual_size.
7749
7750 2003-03-03 David Carlton <carlton@math.stanford.edu>
7751
7752 * symtab.h (DEPRECATED_SYMBOL_MATCHES_NAME): Rename from
7753 SYMBOL_MATCHES_NAME, add comment.
7754 (SYMBOL_MATCHES_NATURAL_NAME): New.
7755 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Replace
7756 SYMBOL_MATCHES_NAME with DEPRECATED_SYMBOL_MATCHES_NAME.
7757 (lookup_minimal_symbol, lookup_minimal_symbol_text): Ditto.
7758 * symtab.c (lookup_partial_symbol): Use
7759 SYMBOL_MATCHES_NATURAL_NAME, not SYMBOL_MATCHES_NAME. Delete
7760 unhelpful comment.
7761 (lookup_block_symbol): Use SYMBOL_MATCHES_NATURAL_NAME, not
7762 SYMBOL_MATCHES_NAME.
7763 Fix for PR c++/33.
7764
7765 2003-03-03 David Carlton <carlton@math.stanford.edu>
7766
7767 * symtab.h (SYMBOL_MATCHES_REGEXP): Delete.
7768 * symtab.c (search_symbols): Replace uses of SYMBOL_MATCHES_REGEXP
7769 by regexp matching against SYMBOL_NATURAL_NAME.
7770
7771 2003-03-03 David Carlton <carlton@math.stanford.edu>
7772
7773 * linespec.c (find_method): Extract code into collect_methods.
7774 (collect_methods): New.
7775
7776 2003-03-02 Mark Kettenis <kettenis@gnu.org>
7777
7778 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Use get_next_frame and
7779 get_frame_base.
7780
7781 * i386-tdep.c (i386_pe_skip_trampoline_code): Replace usage of
7782 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
7783
7784 2003-03-02 Stephane Carrez <stcarrez@nerim.fr>
7785
7786 * arch-utils.c (generic_register_byte): Fix to use the loop index
7787 and not regnum when summing the size of all registers up to regnum.
7788
7789 2003-03-01 Andrew Cagney <cagney@redhat.com>
7790
7791 * gdbarch.sh (DEPRECATED_FRAME_INIT_SAVED_REGS): Rename
7792 FRAME_INIT_SAVED_REGS.
7793 * gdbarch.h, gdbarch.c: Regenerate.
7794 * stack.c (frame_info): Update.
7795 * sh-tdep.c (sh_find_callers_reg, sh64_get_saved_pr): Update.
7796 (sh_init_extra_frame_info, sh64_init_extra_frame_info): Update.
7797 (sh64_get_saved_register, sh_pop_frame, sh64_pop_frame): Update.
7798 * ns32k-tdep.c (ns32k_pop_frame): Update.
7799 * mips-tdep.c (mips_pop_frame): Update.
7800 * m68hc11-tdep.c (m68hc11_pop_frame): Update.
7801 * ia64-tdep.c (ia64_frame_chain): Update.
7802 (ia64_frame_saved_pc, ia64_get_saved_register): Update.
7803 (ia64_frameless_function_invocation): Update.
7804 (ia64_init_extra_frame_info): Update.
7805 (ia64_pop_frame_regular): Update.
7806 * frame.h (struct frame_info): Update comment.
7807 (DEPRECATED_FRAME_INIT_SAVED_REGS): Rename macro.
7808 * frame.c (frame_saved_regs_register_unwind): Update.
7809 (frame_saved_regs_register_unwind): Update.
7810 (deprecated_generic_get_saved_register): Update.
7811 * cris-tdep.c: Update comment.
7812 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_INIT_SAVED_REGS):
7813 Rename macro.
7814 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
7815 * x86-64-tdep.c (x86_64_init_abi): Update.
7816 * vax-tdep.c (vax_gdbarch_init): Update.
7817 * v850-tdep.c (v850_gdbarch_init): Update.
7818 * sparc-tdep.c (sparc_gdbarch_init): Update.
7819 * sh-tdep.c (sh_gdbarch_init): Update.
7820 * s390-tdep.c (s390_gdbarch_init): Update.
7821 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
7822 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
7823 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
7824 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
7825 * mips-tdep.c (mips_gdbarch_init): Update.
7826 * mcore-tdep.c (mcore_gdbarch_init): Update.
7827 * m68k-tdep.c (m68k_gdbarch_init): Update.
7828 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
7829 * ia64-tdep.c (ia64_gdbarch_init): Update.
7830 * i386-tdep.c (i386_gdbarch_init): Update.
7831 * frv-tdep.c (frv_gdbarch_init): Update.
7832 * avr-tdep.c (avr_gdbarch_init): Update.
7833 * arm-tdep.c (arm_gdbarch_init): Update.
7834 * alpha-tdep.c (alpha_gdbarch_init): Update.
7835
7836 2003-03-01 Andrew Cagney <cagney@redhat.com>
7837
7838 * main.c (captured_main): Add OPT_WINDOWS and OPT_NOWINDOWS to
7839 option enum and switch. When no windows, set the interpreter to
7840 INTERP_CONSOLE.
7841
7842 2003-03-01 Andrew Cagney <cagney@redhat.com>
7843
7844 * main.c (captured_main): Replace magic option characters with an
7845 enum.
7846
7847 2003-03-01 Andrew Cagney <cagney@redhat.com>
7848
7849 * gdbarch.sh (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename
7850 INIT_EXTRA_FRAME_INFO.
7851 * gdbarch.h, gdbarch.c: Regenerate.
7852 * arm-tdep.c: Update comments.
7853 * sh-tdep.c, mcore-tdep.c, m68hc11-tdep.c: Ditto.
7854 * i386-interix-tdep.c, hppa-tdep.c, h8300-tdep.c: Ditto.
7855 * frame.h, avr-tdep.c: Ditto.
7856 * frame.c (get_prev_frame): DEPRECATED_INIT_EXTRA_FRAME_INFO.
7857 (create_new_frame, legacy_get_prev_frame): Ditto.
7858 * config/sparc/tm-sparc.h (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename.
7859 * config/pa/tm-hppa.h (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename.
7860 * xstormy16-tdep.c (xstormy16_gdbarch_init): Initialize
7861 deprecated_init_extra_frame_info instead of init_extra_frame_info.
7862 * x86-64-tdep.c (x86_64_init_abi): Ditto.
7863 * v850-tdep.c (v850_gdbarch_init): Ditto.
7864 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
7865 * sh-tdep.c (sh_gdbarch_init): Ditto.
7866 * s390-tdep.c (s390_gdbarch_init): Ditto.
7867 * ppc-linux-tdep.c (ppc_linux_init_abi): Ditto.
7868 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
7869 * mips-tdep.c (mips_gdbarch_init): Ditto.
7870 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
7871 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
7872 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
7873 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
7874 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
7875 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
7876 * frv-tdep.c (frv_gdbarch_init): Ditto.
7877 * cris-tdep.c (cris_gdbarch_init): Ditto.
7878 * avr-tdep.c (avr_gdbarch_init): Ditto.
7879 * arm-tdep.c (arm_gdbarch_init): Ditto.
7880 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
7881 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7882
7883 2003-03-01 Andrew Cagney <cagney@redhat.com>
7884
7885 * gdbarch.sh (register_type): New function with predicate.
7886 (REGISTER_VIRTUAL_TYPE): Change to function with predicate.
7887 * gdbarch.h, gdbarch.c: Re-generate.
7888 * arch-utils.c (generic_register_byte): Use generic_register_size.
7889 (generic_register_size): When available, use
7890 gdbarch_register_type.
7891 * regcache.c (init_regcache_descr): When available, initialize the
7892 register type array using gdbarch_register_type. If the
7893 architecture supplies gdbarch_register_type, do not use the legacy
7894 regcache layout.
7895 * d10v-tdep.c (d10v_register_type): Replace
7896 d10v_register_virtual_type.
7897 (d10v_gdbarch_init): Set register_type instead of
7898 register_virtual_type.
7899
7900 2003-03-01 Andrew Cagney <cagney@redhat.com>
7901
7902 * Makefile.in (ax-gdb.o): Update dependencies.
7903 * ax-gdb.c: Include "regcache.h".
7904 (gen_expr): Use register_type instead of REGISTER_VIRTUAL_TYPE.
7905 * findvar.c (value_of_register): Ditto.
7906 * infcmd.c (default_print_registers_info): Ditto.
7907
7908 2003-03-01 Mark Kettenis <kettenis@gnu.org>
7909
7910 * i386-linux-tdep.c (find_minsym_and_objfile): Replace usage of
7911 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
7912
7913 2003-03-01 Mark Kettenis <kettenis@gnu.org>
7914
7915 * i386-linux-tdep.c (find_minsym_and_objfile): Use strcmp instead
7916 of STREQ.
7917
7918 2003-02-28 Daniel Jacobowitz <drow@mvista.com>
7919
7920 * Makefile.in (dwarf2loc.o): Update dependencies.
7921 * ax-gdb.c (gen_var_ref): Handle LOC_COMPUTED and LOC_COMPUTED_ARG.
7922 * dwarf2expr.c (read_uleb128, read_sleb128): Make non-static.
7923 * dwarf2expr.h (read_uleb128, read_sleb128): Add prototypes.
7924 * dwarf2loc.c: Include "ax.h" and "ax-gdb.h".
7925 (locexpr_tracepoint_var_ref): New function.
7926 (dwarf2_locexpr_funcs): Add locexpr_tracepoint_var_ref.
7927
7928 2003-02-28 Andrew Cagney <cagney@redhat.com>
7929
7930 * regcache.c (register_size): New function.
7931 * regcache.h (register_size): Declare
7932 * d10v-tdep.c: Use register_size instead of REGISTER_RAW_SIZE, use
7933 max_register_size instead of MAX_REGISTER_RAW_SIZE.
7934
7935 2003-02-28 David Carlton <carlton@math.stanford.edu>
7936
7937 * linespec.c (decode_compound): Extract code into find_method.
7938 (find_method): New.
7939
7940 2003-02-28 J. Brobecker <brobecker@gnat.com>
7941
7942 * Makefile.in: Add rules to build and link in observer.o.
7943
7944 2003-02-27 J. Brobecker <brobecker@gnat.com>
7945
7946 * observer.c: Minor comments edits.
7947
7948 2003-02-27 J. Brobecker <brobecker@gnat.com>
7949
7950 * observer.h, observer.c: New file.
7951
7952 2003-02-27 Andrew Cagney <cagney@redhat.com>
7953
7954 * arm-tdep.c (gdb_print_insn_arm): Rename _bfd to just bfd.
7955
7956 2003-02-27 Stephane Carrez <stcarrez@nerim.fr>
7957
7958 * m68hc11-tdep.c (M6811_OP_LDX_EXT, M6811_OP_STS_EXT): New defines.
7959 (M6812_OP_STS_EXT): Likewise.
7960 (m6811_prologue): Use the above to recognize prologue.
7961 (m6812_prologue): Likewise.
7962
7963 2003-02-27 David Carlton <carlton@math.stanford.edu>
7964
7965 * symfile.c (compare_symbols): Use SYMBOL_NATURAL_NAME, not
7966 SYMBOL_PRINT_NAME.
7967 (compare_psymbols): Ditto.
7968 * symtab.c (lookup_partial_symbol, lookup_block_symbol): Ditto.
7969
7970 2003-02-27 Michael Snyder <msnyder@redhat.com>
7971
7972 * f-lang.c (build_fortran_types): New function.
7973 (_initialize_f_language): Gdbarch-register built-in fortran types.
7974 * doublest.c (extract_floating): Fix warning text.
7975
7976 2003-02-27 Andrew Cagney <cagney@redhat.com>
7977
7978 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Procedure with
7979 predicate. Replaces PUSH_DUMMY_FRAME.
7980 * gdbarch.h, gdbarch.c: Regnerate.
7981 * valops.c (hand_function_call): Update. Call
7982 generic_push_dummy_frame directly.
7983 * vax-tdep.c (vax_gdbarch_init): Update.
7984 * sparc-tdep.c (sparc_gdbarch_init): Update.
7985 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
7986 * m68k-tdep.c (m68k_gdbarch_init): Update.
7987 * hppa-tdep.c (hppa_gdbarch_init): Update.
7988 * alpha-tdep.c (alpha_gdbarch_init): Update.
7989 * config/sparc/tm-sparc.h (DEPRECATED_PUSH_DUMMY_FRAME): Update.
7990 * config/pa/tm-hppa.h (DEPRECATED_PUSH_DUMMY_FRAME): Update.
7991 * inferior.h (PUSH_DUMMY_FRAME): Delete definition.
7992 * xstormy16-tdep.c (xstormy16_gdbarch_init): Don't set
7993 push_dummy_frame to generic_push_dummy_frame.
7994 * v850-tdep.c (v850_gdbarch_init): Ditto.
7995 * sh-tdep.c (sh_gdbarch_init): Ditto.
7996 * s390-tdep.c (s390_gdbarch_init): Ditto.
7997 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
7998 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
7999 * mips-tdep.c (mips_gdbarch_init): Ditto.
8000 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
8001 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
8002 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
8003 * i386-tdep.c (i386_gdbarch_init): Ditto.
8004 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
8005 * frv-tdep.c (frv_gdbarch_init): Ditto.
8006 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
8007 * cris-tdep.c (cris_gdbarch_init): Ditto.
8008 * avr-tdep.c (avr_gdbarch_init): Ditto.
8009 * arm-tdep.c (arm_gdbarch_init): Ditto.
8010
8011 2003-02-26 Kevin Buettner <kevinb@redhat.com>
8012
8013 * mips-tdep.c (show_mips_abi): New function.
8014 (_initialize_mips_tdep): Use show_mips_abi() to implement the
8015 command ``show mips abi''.
8016
8017 2003-02-26 Jeff Johnston <jjohnstn@redhat.com>
8018
8019 From Elena Zannoni <ezannoni@redhat.com>
8020 * dbxread.c (process_one_symbol): Only record line 0 if one or
8021 more sline entries have been seen for the function.
8022
8023 2003-02-26 Michael Chastain <mec@shout.net>
8024
8025 * configure: Regenerate with autoconf 000227.
8026
8027 2003-02-26 Michael Chastain <mec@shout.net>
8028
8029 Close PR build/660.
8030 * PROBLEMS (i[3456]86-*-linux*): Note explicit error message
8031 for old libc5/glibc.
8032 * gdb_thread_db.h: Die if not HAVE_UINTPTR_T.
8033
8034 2003-02-26 Kris Warkentin <kewarken@qnx.com>
8035
8036 * defs.h (gdb_osabi): Add GDB_OSABI_QNXNTO.
8037 * osabi.c (gdb_osabi_names): Add "QNX Neutrino".
8038
8039 2003-02-26 Michael Chastain <mec@shout.net>
8040
8041 * configure.in: New variable HAVE_UINTPTR_T.
8042 * configure, config.in: Regenerated.
8043
8044 2003-02-26 Daniel Jacobowitz <drow@mvista.com>
8045
8046 Fix PR build/1097.
8047 * utils.c (gdb_realpath): Move closing brace outwards one #endif.
8048
8049 2003-02-25 Andrew Cagney <cagney@redhat.com>
8050
8051 * frame.c (get_prev_frame): Add comment on check for
8052 inside_entry_func. Only check for inside_entry_file when not a
8053 dummy and not a sentinel. Check that the new frame is not inner
8054 to the old frame.
8055
8056 2003-02-25 Andrew Cagney <cagney@redhat.com>
8057
8058 * frame.c (frame_debug): New variable.
8059 (_initialize_frame): Add "set/show debug frame" command.
8060 (get_prev_frame): When frame_debug, print reason why unwind
8061 failed.
8062
8063 2003-02-25 Michael Chastain <mec@shout.net>
8064
8065 * PROBLEMS (i[3456]86-*-linux*): Require glibc 2.1.3 or later
8066 to avoid uintptr_t definition problems.
8067
8068 2003-02-25 David Carlton <carlton@math.stanford.edu>
8069
8070 * symtab.h (SYMBOL_NATURAL_NAME): New macro.
8071 (SYMBOL_LINKAGE_NAME): Ditto.
8072 (SYMBOL_PRINT_NAME): Use SYMBOL_NATURAL_NAME and
8073 SYMBOL_LINKAGE_NAME.
8074 (struct general_symbol_info): Expand comment.
8075 (DEPRECATED_SYMBOL_NAME): Rename from SYMBOL_NAME.
8076 (SYMBOL_MATCHES_NAME): Use DEPRECATED_SYMBOL_NAME.
8077 (SYMBOL_MATCHES_REGEXP): Ditto.
8078 * symtab.c (symbol_natural_name): New function.
8079 * objfiles.h: Replace all uses of SYMBOL_NAME by
8080 DEPRECATED_SYMBOL_NAME.
8081 * xcoffread.c, valops.c, typeprint.c, tracepoint.c: Ditto.
8082 * symtab.c, symmisc.c, symfile.c, stack.c, stabsread.c: Ditto.
8083 * somsolib.c, sol-thread.c, rs6000-tdep.c, p-valprint.c: Ditto.
8084 * printcmd.c, objfiles.c, objc-lang.c, mipsread.c: Ditto.
8085 * minsyms.c, mdebugread.c, linespec.c, jv-lang.c: Ditto.
8086 * i386-tdep.c, i386-linux-tdep.c, hpread.c, hppa-tdep.c: Ditto.
8087 * gnu-v2-abi.c, f-valprint.c, findvar.c, expprint.c: Ditto.
8088 * dwarfread.c, dwarf2read.c, dbxread.c, c-valprint.c: Ditto.
8089 * cp-valprint.c, coffread.c, buildsym.c, breakpoint.c: Ditto.
8090 * blockframe.c, ax-gdb.c, arm-linux-tdep.c, ada-lang.c: Ditto.
8091 * ada-exp.y: Ditto.
8092 * ada-exp.y: Update copyright.
8093 * sol-thread.c, mipsread.c, jv-lang.c, f-valprint.c: Ditto.
8094 * cp-valprint.c: Ditto.
8095
8096 2003-02-25 Jeff Johnston <jjohnstn@redhat.com>
8097
8098 * infptrace.c (detach): Do not flag error if ptrace detach fails
8099 and errno is set to ESRCH.
8100
8101 2003-02-24 Andrew Cagney <cagney@redhat.com>
8102
8103 * infptrace.c (udot_info): Change type of udot_off to long. Use
8104 paddr when printing udot_off's value.
8105
8106 2003-02-24 David Carlton <carlton@math.stanford.edu>
8107
8108 * symtab.c (make_symbol_overload_list): Only read in partial
8109 symtabs containing a matching partial symbol.
8110
8111 2003-02-24 David Carlton <carlton@math.stanford.edu>
8112
8113 * symtab.c (lookup_partial_symbol): Use strcmp_iw_ordered to
8114 do the comparison, not strcmp.
8115 * symfile.c (compare_psymbols): Ditto.
8116 * defs.h: Declare strcmp_iw_ordered.
8117 * utils.c (strcmp_iw_ordered): New function.
8118
8119 2003-02-24 Jim Blandy <jimb@redhat.com>
8120
8121 * MAINTAINERS (GNU/Linux/x86, linespec, breakpoints, Scheme
8122 support, shared libs): Remove my name from here, to better reflect
8123 reality.
8124
8125 2003-02-24 Kris Warkentin <kewarken@qnx.com>
8126
8127 * target.h: (HAVE_CONTINUABLE_WATCHPOINT): Define.
8128 (target_ops): Add to_have_continuable_watchpoint.
8129 * target.c (update_current_target): Add INHERIT line for
8130 to_have_continuable_watchpoint.
8131 * infrun.c: Remove HAVE_CONTINUABLE_WATCHPOINT defines.
8132 * config/i386/nm-i386.h, config/i386/nm-i386sco5.h,
8133 config/i386/nm-i386sol2.h, config/s390/nm-linux.h,
8134 config/sparc/nm-sun4sol2.h: HAVE_CONTINUABLE_WATCHPOINT defined as 1.
8135
8136 2003-02-24 Elena Zannoni <ezannoni@redhat.com>
8137
8138 * MAINTAINERS (Core): Drop main.c and top.c. Clarify event loop
8139 maintainership.
8140
8141 2003-02-24 Kris Warkentin <kewarken@qnx.com>
8142
8143 * solib.c (solib_open): Call target defined search function after
8144 failing with solib-search-path.
8145 * solist.h (target_so_ops): Add find_and_open_solib function hook and
8146 create define TARGET_SO_FIND_AND_OPEN_SOLIB.
8147
8148 2003-02-24 Kris Warkentin <kewarken@qnx.com>
8149
8150 * MAINTAINERS: Add myself to Write After section.
8151
8152 2003-02-23 Stephane Carrez <stcarrez@nerim.fr>
8153
8154 * m68hc11-tdep.c (m68hc11_gdbarch_init): long double is 64-bit wide.
8155
8156 2003-02-22 Stephane Carrez <stcarrez@nerim.fr>
8157
8158 * m68hc11-tdep.c (m68hc11_init_reggroups): New function.
8159 (m68hc11_add_reggroups): New function.
8160 (m68hc11_register_reggroup_p): New to register hard/soft reggroups.
8161 (m68hc11_gdbarch_init): Install the reggroups.
8162 (_initialize_m68hc11_tdep): Initialize them.
8163
8164 2003-02-21 James E Wilson <wilson@tuliptree.org>
8165
8166 * MAINTAINERS: Update my email address.
8167
8168 2003-02-21 David Carlton <carlton@math.stanford.edu>
8169
8170 * arm-tdep.c (arm_gdbarch_init): Add break after default label.
8171
8172 2003-02-21 Daniel Jacobowitz <drow@mvista.com>
8173
8174 Based on a patch from Daniel Berlin (dberlin@dberlin.org).
8175 * symtab.h: Add opaque declarations of struct axs_value and
8176 struct agent_expr.
8177 (enum address_class): Add LOC_COMPUTED and LOC_COMPUTED_ARG.
8178 (struct location_funcs): New type.
8179 (struct symbol): Add "loc" to aux_value.
8180 (SYMBOL_LOCATION_BATON, SYMBOL_LOCATION_FUNCS): New macros.
8181 * dwarf2read.c: Include "dwarf2expr.h".
8182 (dwarf2_symbol_mark_computed): New function.
8183 (read_func_scope): Use it.
8184 (var_decode_location): New function.
8185 (new_symbol): Use it.
8186 * dwarf2expr.c, dwarf2expr.h, dwarf2loc.c, dwarf2loc.h: New files.
8187
8188 * Makefile.in (SFILES): Add dwarf2loc.c and dwarf2expr.c.
8189 (dwarf2expr_h, dwarf2loc_h): New variables.
8190 (COMMON_OBS): Add dwarf2expr.o and dwarf2loc.o.
8191 (dwarf2expr.o, dwarf2loc.o): New rules.
8192 (dwarf2read.o): Add $(dwarf2expr_h) and $(dwarf2loc_h).
8193 * buildsym.c (finish_block): Handle LOC_COMPUTED and
8194 LOC_COMPUTED_ARG.
8195 * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
8196 * m2-exp.y (yylex): Likewise.
8197 * printcmd.c (address_info, print_frame_args): Likewise.
8198 * stack.c (print_block_frame_locals, print_frame_arg_vars): Likewise.
8199 * symmisc.c (print_symbol, print_partial_symbols): Likewise.
8200 * ada-lang.c (ada_resolve_subexp, symtab_for_sym)
8201 (ada_add_block_symbols, fill_in_ada_prototype): Likewise.
8202 * symtab.c (lookup_block_symbol): Likewise.
8203
8204 2003-02-20 Adam Fedor <fedor@gnu.org>
8205
8206 * symtab.h: Remove objc_specific struct
8207 (SYMBOL_OBJC_DEMANGLED_NAME): Remove.
8208 * symtab.c (symbol_init_language_specific, symbol_demangled_name):
8209 Have language_objc use cplus_specific struct.
8210
8211 2003-02-20 Tom Tromey <tromey@redhat.com>
8212
8213 * jv-valprint.c (java_value_print): Look at TYPE_TAG_NAME, not
8214 TYPE_NAME, when printing a String value. PR java/1075.
8215
8216 2003-02-20 Adam Fedor <fedor@gnu.org>
8217
8218 * objc-lang.h (find_methods): Remove declaration.
8219 * objc-lang.c (find_methods): Make static.
8220
8221 2003-02-20 Christopher Faylor <cgf@redhat.com>
8222
8223 * win32-nat.c (get_image_name): Check return value from
8224 ReadProcessMemory.
8225 (child_xfer_memory): Ditto.
8226
8227 2003-02-20 Alexandre Oliva <aoliva@redhat.com>
8228
8229 * configure.in (TARGET_SYSTEM_ROOT): Set default to
8230 ${exec_prefix}/${target_alias}/sys-root. Match explicit
8231 '${exec_prefix}' (in addition to the expansion thereof) as
8232 relocatable.
8233 * configure: Rebuilt.
8234
8235 2003-02-20 David Carlton <carlton@math.stanford.edu>
8236
8237 * symtab.c (search_symbols): Revert the search_symbols part of my
8238 2002-12-23 patch. Add comment.
8239
8240 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8241
8242 * coffread.c (coff_symfile_read): Clean up minimal symbols earlier.
8243 * dbxread.c (elfstab_build_psymtabs): Don't call
8244 install_minimal_symbols.
8245 (stabsect_build_psymtabs): Likewise.
8246 * elfread.c (elf_symfile_read): Call install_minimal_symbols
8247 earlier.
8248 * somread.c (som_symfile_read): Call install_minimal_symbols
8249 and do_cleanups earlier.
8250 * nlmread.c (nlm_symfile_read): Likewise.
8251 * mdebugread.c (elfmdebug_build_psymtabs): Call
8252 install_minimal_symbols and make appropriate cleanups.
8253
8254 2003-02-20 Kevin Buettner <kevinb@redhat.com>
8255
8256 * solib.c (reload_shared_libraries): New function.
8257 (_initialize_solib): Add callbacks for ``set solib-search-path''
8258 and ``set solib-absolute-prefix''.
8259
8260 2003-02-20 David Carlton <carlton@math.stanford.edu>
8261
8262 * symtab.h (SYMBOL_PRINT_NAME): Rename from SYMBOL_SOURCE_NAME;
8263 expand comment.
8264 * ada-lang.c (user_select_syms, ada_finish_decode_line_1): Replace
8265 SYMBOL_PRINT_NAME with SYMBOL_SOURCE_NAME.
8266 * ada-typeprint.c (ada_typedef_print): Ditto.
8267 * ax-gdb.c (gen_var_ref): Ditto.
8268 * breakpoint.c (print_one_breakpoint): Ditto.
8269 * buildsym.c (finish_block): Ditto.
8270 * c-valprint.c (c_val_print): Ditto.
8271 * expprint.c (print_subexp): Ditto.
8272 * findvar.c (locate_var_value): Ditto.
8273 * infcmd.c (jump_command): Ditto.
8274 * linespec.c (decode_line_2, decode_compound): Ditto.
8275 * maint.c (maintenance_translate_address): Ditto.
8276 * objc-lang.c (compare_selectors, compare_classes): Ditto.
8277 * printcmd.c (build_address_symbolic, sym_info, print_frame_args):
8278 Ditto.
8279 * p-valprint.c (pascal_val_print): Ditto.
8280 * stabsread.c (define_symbol): Ditto.
8281 * stack.c (print_frame, frame_info, print_block_frame_locals)
8282 (print_frame_arg_vars, return_command): Ditto.
8283 * symfile.c (compare_symbols, compare_psymbols): Ditto.
8284 * symmisc.c (print_symbol): Ditto.
8285 * symtab.c (lookup_partial_symbol, lookup_block_symbol)
8286 (compare_search_syms, print_symbol_info, print_msymbol_info)
8287 (rbreak_command): Ditto.
8288 * tracepoint.c (tracepoints_info): Ditto.
8289 * typeprint.c (typedef_print): Ditto.
8290 * valops.c (value_of_variable, hand_function_call): Ditto.
8291 * cli/cli-cmds.c (edit_command, list_command): Ditto.
8292 * ada-typeprint.c: Update Copyright.
8293 * infcmd.c, objc-lang.c, p-valprint.c, symmisc.c: Ditto.
8294 * tracepoint.c, cli/cli-cmds.c: Ditto.
8295
8296 2003-02-20 Kevin Buettner <kevinb@redhat.com>
8297
8298 * frame.c (generic_unwind_get_saved_register): Make non-static.
8299 * frame.h (generic_unwind_get_saved_register): Declare.
8300 * mips-tdep.c (read_next_frame_reg): Fetch register from
8301 current regcache when frame is NULL.
8302 (mips_init_extra_frame_info): Pass NULL explicitly for parameter
8303 that must be NULL.
8304 (mips_get_saved_register): Call generic_unwind_get_saved_register()
8305 instead of frame_register_unwind().
8306
8307 2003-02-20 Andrew Cagney <ac131313@redhat.com>
8308
8309 * remote-sim.c (gdbsim_insert_breakpoint)
8310 (gdbsim_remove_breakpoint): Delete #ifdef SIM_HAS_BREAKPOINTS
8311 code.
8312
8313 2003-02-20 Andrew Cagney <ac131313@redhat.com>
8314
8315 * remote.c (_initialize_remote): Add commands "set/show remote
8316 hardware-watchpoint-limit" and "set/show remote
8317 hardware-breakpoint-limit".
8318 (remote_hw_watchpoint_limit): Initialize to -1.
8319 (remote_hw_breakpoint_limit): Ditto.
8320 (remote_check_watch_resources): Treat a limit of -1 as unlimited.
8321
8322 2003-02-19 Raoul Gough <RaoulGough@yahoo.co.uk>
8323
8324 * coff-pe-read.c: New file - support reading of minimal symbols from a
8325 portable executable using the export table.
8326 * coff-pe-read.h: New file.
8327 * coffread.c: Include coff-pe-read.h.
8328 (coff_symtab_read): Call read_pe_exported_syms iff no recognized
8329 debugging symbols found.
8330 * Makefile.in (SFILES): Add coff-pe-read.o.
8331 (coff_pe_read_h): Define.
8332 (COMMON_OBS): Add coff-pe-read.o.
8333 (coffread.o): Add coff_pe_read_h dependency.
8334 (coff-pe-read.o): New target.
8335
8336 2003-02-19 David Carlton <carlton@math.stanford.edu>
8337
8338 * Makefile.in (SFILES): Add block.c.
8339 (block_h): New.
8340 (COMMON_OBS): Add block.o.
8341 (block.o): New.
8342 (x86-64-tdep.o): Add $(block_h).
8343 (values.o, valops.o, tracepoint.o, symtab.o, symmisc.o, symfile.o)
8344 (stack.o, printcmd.o, p-exp.tab.o, parse.o, objfiles.o)
8345 (objc-exp.tab.o, objc-lang.o, nlmread.o, mips-tdep.o, mdebugread.o)
8346 (m2-exp.tab.o, linespec.o, jv-lang.o, jv-exp.tab.o, infcmd.o)
8347 (f-valprint.o, findvar.o, f-exp.tab.o, expprint.o, coffread.o)
8348 (c-exp.tab.o, buildsym.o, breakpoint.o, blockframe.o, ax-gdb.o)
8349 (alpha-tdep.o, ada-lang.o, ada-exp.tab.o, mi-cmd-stack.o): Ditto.
8350 * value.h: Add opaque declaration for struct block.
8351 * parser-defs.h, objc-lang.h, buildsym.h, breakpoint.h: Ditto.
8352 * ada-lang.h: Ditto.
8353 * x86-64-tdep.c: #include "block.h"
8354 * values.c, valops.c, tracepoint.c, symtab.c, symmisc.c: Ditto.
8355 * symfile.c, stack.c, printcmd.c, p-exp.y, parse.c: Ditto.
8356 * objfiles.c, objc-exp.y, objc-lang.c, nlmread.c: Ditto.
8357 * mips-tdep.c, mdebugread.c, m2-exp.y, linespec.c: Ditto.
8358 * jv-lang.c, jv-exp.y, infcmd.c, f-valprint.c: Ditto.
8359 * findvar.c, f-exp.y, expprint.c, coffread.c, c-exp.y: Ditto.
8360 * buildsym.c, breakpoint.c, blockframe.c, ax-gdb.c: Ditto.
8361 * alpha-tdep.c, ada-lang.c, ada-exp.y: Ditto.
8362 * blockframe.c (blockvector_for_pc_sect): Move to "block.c".
8363 (blockvector_for_pc, block_for_pc_sect, block_for_pc): Ditto.
8364 * symtab.c (block_function): Ditto.
8365 (contained_in): Ditto.
8366 * frame.h: Move block_for_pc and block_for_pc_sect declarations to
8367 block.h. Add opaque declaration for struct block.
8368 * symtab.h: Move block_function and contained_in declarations to
8369 block.h. Add opaque declarations for struct block, struct
8370 blockvector.
8371 (struct block): Move to block.h.
8372 (struct blockvector): Ditto.
8373 (BLOCK_START, BLOCK_END, BLOCK_FUNCTION, BLOCK_SUPERBLOCK)
8374 (BLOCK_GCC_COMPILED, BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM)
8375 (BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE)
8376 (ALL_BLOCK_SYMBOLS, BLOCK_SHOULD_SORT, BLOCKVECTOR_NBLOCKS)
8377 (BLOCKVECTOR_BLOCK, GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOCK):
8378 Ditto.
8379 * block.c: New file.
8380 * block.h: New file.
8381
8382 2003-02-19 Theodore A. Roth <troth@openavr.org>
8383
8384 * avr-tdep.c (avr_extract_return_value): Remove function.
8385 (avr_store_return_value): Remove function.
8386 (avr_extract_struct_value_address): Remove function.
8387 (avr_gdbarch_init): Remove set_gdbarch_deprecated_*() calls.
8388
8389 2003-02-19 Andrew Cagney <ac131313@redhat.com>
8390
8391 * rs6000-tdep.c: Include "gdb_assert.h".
8392 (registers_e500): Add "acc" and "spefscr".
8393 (PPC_GPRS_PSEUDO_REGS): Remove trailing comma.
8394 (rs6000_gdbarch_init): Update initialization of ppc_gp0_regnum,
8395 ppc_gplast_regnum, sp_regnum and fp_regnum. Check that gp0_regnum
8396 really is "r0".
8397 (registers_e500): Mark the "acc" as a 64 bit (from Jim Willson).
8398
8399 2003-02-18 Keith Seitz <keiths@redhat.com>
8400
8401 * Makefile.in: Add gdbtk-interps.c.
8402
8403 2003-02-18 Kevin Buettner <kevinb@redhat.com>
8404
8405 * sparc-tdep.c (sparc_frame_chain): Adjust return value.
8406 * config/sparc/tm-sparc.h (init_frame_pc_noop): Declare.
8407
8408 2003-02-18 Andrew Cagney <cagney@redhat.com>
8409
8410 * symtab.h (struct objfile): Add opaque declaration.
8411
8412 2003-02-18 Elena Zannoni <ezannoni@redhat.com>
8413
8414 From Jim Ingham <jingham@apple.com>:
8415 * dbxread.c (process_one_symbol): Use last_function_start rather
8416 than function_start_offset to find the real beginning of the
8417 current function. The latter is just the text section offset on
8418 some systems, the former is always the real function start.
8419
8420 2003-02-17 Andrew Cagney <cagney@redhat.com>
8421
8422 * configure.in: Revert ${target} != ${host}.
8423
8424 2003-02-17 Andrew Cagney <ac131313@redhat.com>
8425
8426 * configure.in (Makefile): Use the test ${target} != ${host},
8427 instead of the absence of the "nm.h" file, to determine of the
8428 configuration non-native.
8429 * configure: Regenerate.
8430
8431 2003-02-14 Elena Zannoni <ezannoni@redhat.com>
8432
8433 From Brian Ford <ford@vss.fsi.com>
8434
8435 * cli/cli-decode.c (lookup_cmd_composition) [TUI]: Properly
8436 conditionalize tui_active test.
8437 (lookup_cmd_1): Ditto.
8438
8439 2003-02-14 Mark Kettenis <kettenis@gnu.org>
8440
8441 * configure.in: Add check for _etext.
8442 * maint.c (maintenance_set_profile_cmd): Use etext if _etext isn't
8443 available.
8444 * config.in, configure: regenerated.
8445
8446 2003-02-14 Daniel Jacobowitz <drow@mvista.com>
8447
8448 * dwarf2read.c (dwarf2_get_pc_bounds): Offset addresses by base.
8449
8450 2003-02-14 Andrew Cagney <ac131313@redhat.com>
8451
8452 * main.c (tui_version): Delete variable.
8453 (captured_main): When --tui, set interpreter_p to "tui" instead of
8454 enabling tui_version.
8455 * printcmd.c (display_command) [TUI]: Test tui_active instead of
8456 tui_version.
8457 * cli/cli-decode.c (lookup_cmd_composition): Ditto.
8458 * cli/cli-cmds.c (disassemble_command): Ditto.
8459 * defs.h (tui_version): Delete declaration.
8460 * Makefile.in (SUBDIR_TUI_SRCS): Add "tui/tui-interp.c".
8461 (tui-interp.o): Add rules.
8462 (SUBDIR_TUI_OBS): Add "tui-interp.o".
8463
8464 2003-02-14 Christopher Faylor <cgf@redhat.com>
8465
8466 * win32-nat.c (register_loaded_dll): Correctly set address range for
8467 just-loaded dll.
8468
8469 2003-02-12 Jason Molenda (jmolenda@apple.com)
8470
8471 * symmisc.c (print_objfile_statistics): Include information about
8472 the number of psymtabs and symtabs in each object file.
8473
8474 2003-02-13 Keith R Seitz <keiths@redhat.com>
8475
8476 * main.h (struct captured_main_args): Add interpreter_p.
8477 * main.c (captured_main): Initialize interpreter_p from context.
8478 * gdb.c (main): Set interpreter_p argument.
8479 * Makefile.in (gdb.o): Add dependency for interps.h.
8480
8481 2003-02-12 Andrew Cagney <ac131313@redhat.com>
8482
8483 * event-top.c (cli_command_loop): Delete declaration.
8484 (_initialize_event_loop): Delete function setting event_loop_hook.
8485 * event-top.h (cli_command_loop): Declare. Update copyright.
8486 (EVENT_TOP_H): Define. Wrap header in #ifdef EVENT_TOP_H.
8487 * interps.c (current_interp_command_loop): When event_loop_p, call
8488 cli_command_loop.
8489
8490 2003-02-12 Andrew Cagney <ac131313@redhat.com>
8491
8492 * interps.h (interp_command_loop_ftype): Change return type to
8493 void.
8494
8495 2003-02-12 Michal Ludvig <mludvig@suse.cz>
8496
8497 * x86-64-tdep.c (x86_64_extract_return_value)
8498 (x86_64_store_return_value): Use regcache instead of regbuf.
8499 (x86_64_gdbarch_init): Change related set_gdbarch_* functions.
8500 * x86-64-linux-nat.c (fill_gregset): Use regcache.
8501
8502 2003-02-11 Andrew Cagney <ac131313@redhat.com>
8503
8504 * acinclude.m4 (no_tcl): SUBST TCL_CC_SEARCH_FLAGS.
8505 * aclocal.m4: Regenerate.
8506 * configure: Regenerate.
8507
8508 * Makefile.in (TCL): Use TCL_CC_SEARCH_FLAGS instead of
8509 TCL_LD_SEARCH_FLAGS.
8510
8511 2003-02-10 Michal Ludvig <mludvig@suse.cz>
8512
8513 * dwarf2cfi.c: Reindented.
8514
8515 2003-02-09 Andrew Cagney <ac131313@redhat.com>
8516
8517 * interps.c (clear_interpreter_hooks): Convert function definition
8518 to ISO C.
8519
8520 2003-02-07 David Carlton <carlton@math.stanford.edu>
8521
8522 * gdb_mbuild.sh: Delete extra shift after parsing '-f'.
8523
8524 2003-02-07 Kevin Buettner <kevinb@redhat.com>
8525
8526 * gdbtypes.h (struct main_type): Move ``length'' field from here...
8527 (struct type): ...to here.
8528 (TYPE_LENGTH): Adjust to reflect different location of ``length''
8529 field.
8530 * gdbtypes.c (make_qualified_type): Set length on newly created type.
8531 (replace_type): Set length on all type variants for a given type.
8532
8533 2003-02-07 Andrew Cagney <ac131313@redhat.com>
8534
8535 * sol-thread.c, hpux-thread.c: Include "gdb_stat.h" instead of
8536 <sys/stat.h>.
8537 * Makefile.in (sol-thread.o, hpux-thread.o): Update dependencies.
8538
8539 2003-02-06 Andrew Cagney <ac131313@redhat.com>
8540
8541 * Makefile.in (symm-nat.o): Update dependencies.
8542 (sparc-nat.o, procfs.o, proc-api.o, ppc-linux-nat.o): Ditto.
8543 (lynx-nat.o, ia64-linux-nat.): Ditto.
8544 * symm-nat.c, sparc-nat.c, procfs.c, proc-api.c: Include
8545 "gdb_wait.h" instead of <wait.h> or <sys/wait.h>.
8546 * ppc-linux-nat.c, lynx-nat.c, ia64-linux-nat.c: Ditto.
8547
8548 * Makefile.in (inflow_h): Define.
8549 (procfs.o, inflow.o, procfs.o): Update dependencies.
8550 * inftarg.c (child_stop): Delete extern declaration of
8551 inferior_process_group. Include "inflow.h".
8552 * procfs.c (procfs_stop): Ditto. Include "inflow.h".
8553 * inflow.c (PROCESS_GROUP_TYPE): Move definitions from here ...
8554 * inflow.h (PROCESS_GROUP_TYPE): ... to here. New file.
8555 (our_process_group, inferior_process_group): Extern declarations.
8556
8557 * procfs.c: Include "gdb_assert.h".
8558
8559 * linux-proc.c: Include "gdb_stat.h" instead of <sys/stat.h>.
8560 * cp-valprint.c (cp_print_value_fields): Eliminate STREQN.
8561 * jv-typeprint.c (java_type_print_base): Ditto.
8562 * typeprint.c (typedef_print): Eliminate STREQ.
8563 * cli/cli-script.c (define_command, define_command): Ditto.
8564 * main.c (captured_main): Ditto.
8565 * values.c (lookup_internalvar): Ditto.
8566 * utils.c (safe_strerror, parse_escape): Eliminate assignment
8567 within `if' conditional.
8568 * linespec.c (decode_line_2): Ditto.
8569 * cli/cli-dump.c (bfd_openr_with_cleanup): Ditto.
8570 (bfd_openw_with_cleanup): Ditto.
8571
8572 2003-02-07 Mark Kettenis <kettenis@gnu.org>
8573
8574 * x86-64-tdep.c (x86_64_init_abi): Set extract_return_value to
8575 legacy_extract_return_value and store_return_value to
8576 legacy_return_value.
8577
8578 2003-02-06 Raoul Gough <RaoulGough@yahoo.co.uk>
8579
8580 * win32-nat.c (get_relocated_section_addrs): New function. Find
8581 section load addresses for symbol handling in relocated DLLs.
8582 (solib_symbols_add): Open a bfd and call get_relocated_section_addrs.
8583
8584 2003-02-05 Fred Fish <fnf@intrinsity.com>
8585
8586 * remote-e7000.c (e7000_drain_command): Fix precedence problem with
8587 '=' and '!='.
8588 * rdi-share/ardi.c (wait_for_debug_message): Fix precedence problem
8589 with '&' and '=='.
8590 (angel_RDI_info): Ditto.
8591 * infttrace.c (threads_continue_all_but_one): Fix precedence problem
8592 with '&' and '!='.
8593 (threads_continue_all_with_signals): Ditto.
8594
8595 2003-02-05 Jim Ingham <jingham@apple.com>
8596 Keith Seitz <keiths@redhat.com>
8597 Elena Zannoni <ezannoni@redhat.com>
8598 Andrew Cagney <ac131313@redhat.com>
8599
8600 * Makefile.in (SUBDIR_CLI_OBS): Add "cli-interp.o".
8601 (SUBDIR_CLI_SRCS): Add "cli/cli-interp.c".
8602 (SUBDIR_MI_OBS): Add "mi-interp.o".
8603 (SUBDIR_MI_SRCS): Add "mi/mi-interp.c".
8604 (SFILES): Add "interps.c".
8605 (COMMON_OBS): Add "interps.o".
8606 (interps_h, mi_main_h): Define.
8607 (interps.o, cli-interp.o, mi-interp.o): Add dependencies.
8608 (mi-main.o, main.o, event-top.o): Update dependencies.
8609 * cli/cli-interp.c: New file.
8610 * interps.h, interps.c: New files.
8611 * top.c: (gdb_init): Don't install the default interpreter, handed
8612 by captured_main.
8613 * main.c: Include "interps.h".
8614 (interpreter_p): Note that it should malloc'ed.
8615 (captured_command_loop): Call current_interp_command_loop.
8616 (captured_main): Initialize interpreter_p to INTERP_CONSOLE. Use
8617 xfree and xstrdup when updating interpreter_p. Install the
8618 default interpreter. Add hack to stop mi1's copyright notice
8619 being encoded.
8620 * event-top.h (gdb_setup_readline): Declare.
8621 (gdb_disable_readline): Declare.
8622 * event-top.c: Include "interps.h".
8623 (display_gdb_prompt): Call current_interp_display_prompt_p.
8624 (gdb_setup_readline): Initialize gdb_stdout, gdb_stderr,
8625 gdb_stdlog, and gdb_stdtarg.
8626 (_initialize_event_loop): Don't call gdb_setup_readline.
8627 * cli-out.c (cli_out_set_stream): New function.
8628 * cli-out.h (cli_out_set_stream): Declare.
8629
8630 2003-02-06 Mark Kettenis <kettenis@gnu.org>
8631
8632 * configure.tgt (i[3456]86-*-sysv4.2*, i[3456]86-*-sysv4*,
8633 i[3456]86-*-sysv5*, i[3456]86-*-sco3.2v5*): Remove. These are all
8634 handled fine by i[3456]86-*sco* and i[3456]86-sysv*.
8635 * config/i386/i386sco5.mt, config/i386/i386v4.mt,
8636 config/i386/i386v42mp.mt: Removed.
8637
8638 2003-02-05 Mark Kettenis <kettenis@gnu.org>
8639
8640 * configure.tgt (*-*-solaris*): Set gdb_osabi to
8641 GDB_OSABI_SOLARIS.
8642
8643 2003-02-05 Michael Chastain <mec@shout.net>
8644
8645 * PROBLEMS (i[3456]86-*-linux*): Warn about binutils
8646 2.12.1 and earlier versions.
8647
8648 2003-02-05 Andrew Cagney <ac131313@redhat.com>
8649
8650 Remove orphaned hosts, targets and files.
8651 * config/i386/gdbserve.mt, config/m68k/nm-apollo68b.h: Delete.
8652 * config/m68k/nm-hp300bsd.h, config/m68k/tm-apollo68b.h: Delete.
8653 * config/m68k/tm-es1800.h, config/m68k/tm-hp300bsd.h: Delete.
8654 * config/m68k/tm-mac.h, config/m68k/xm-apollo68b.h: Delete.
8655 * config/pa/hpux1020.mt, config/pa/hpux11.mt: Delete.
8656 * config/pa/hpux11w.mt, config/powerpc/gdbserve.mt: Delete.
8657 * config/powerpc/ppcle-eabi.mt, config/powerpc/ppcle-sim.mt: Delete.
8658 * config/powerpc/tm-ppc-sim.h, config/sparc/sp64sim.mt: Delete.
8659 * config/sparc/tm-sp64sim.h: Delete.
8660 * configure.host: Delete strongarm-*-*, xscale-*-*, and arm*-*-*
8661 hosts.
8662 * configure.tgt: Delete i[3456]86-*-sco3.2v4*, and
8663 mips*-dec-mach3* targets.
8664
8665 2003-02-04 Michael Chastain <mec@shout.net>
8666
8667 * NEWS: Fix typo: sepcifying -> specifying.
8668
8669 2003-02-04 Michael Chastain <mec@shout.net>
8670
8671 * dwarfread.c: Add documentation on the state of dwarf-1,
8672 looking towards obsoletion.
8673
8674 2003-02-03 Michael Chastain <mec@shout.net>
8675
8676 * config/djgpp/fnchange.lst: Add gdb/testsuite/gdb.c++/pr-1023.cc,
8677 gdb/testsuite/gdb.c++/pr-1023.exp.
8678
8679 2003-02-04 Andrew Cagney <ac131313@redhat.com>
8680
8681 * values.c: Delete code conditional on IS_TRAPPED_INTERNALVAR.
8682 * TODO: Delete reference to IS_TRAPPED_INTERNALVAR.
8683
8684 * utils.c (init_page_info): Delete reference to MPW in comments.
8685 * main.c (captured_main): Delete #ifdef MPW.
8686
8687 2003-02-04 Andrew Cagney <ac131313@redhat.com>
8688
8689 * NEWS: Note that the m32r-*-elf* is obsolete.
8690 * monitor.c (monitor_expect): Obsolete reference to m32r.
8691 * configure.tgt: Mark m32r-*-elf* as obsolete.
8692 * MAINTAINERS: Mark m32k as obsolete.
8693 * m32r-rom.c: Obsolete file.
8694 * config/m32r/m32r.mt: Obsolete file.
8695 * config/m32r/tm-m32r.h: Obsolete file.
8696 * m32r-stub.c: Obsolete file.
8697 * m32r-tdep.c: Obsolete file.
8698
8699 2003-02-04 Andrew Cagney <ac131313@redhat.com>
8700
8701 * NEWS: Mention that the z8k-zilog-none is obsolete.
8702 * MAINTAINERS: Mark z8k as obsolete.
8703 * configure.tgt: Obsolete the z8k-*-coff* target.
8704 * config/z8k/z8k.mt: Obsolete file.
8705 * config/z8k/tm-z8k.h: Obsolete file.
8706 * z8k-tdep.c: Obsolete file.
8707
8708 2003-02-04 Andrew Cagney <ac131313@redhat.com>
8709
8710 * NEWS: Mention that the mn10200-elf is obsolete.
8711 * configure.tgt: Obsolete mn10200-*-* target.
8712 * breakpoint.c (update_breakpoints_after_exec): Update comment to
8713 mention that the mn10200 is obsolete.
8714 * breakpoint.h: Ditto.
8715 * MAINTAINERS: Mark the mn10200-elf as obsolete.
8716 * config/mn10200/mn10200.mt: Obsolete file.
8717 * config/mn10200/tm-mn10200.h: Obsolete file.
8718 * mn10200-tdep.c: Obsolete file.
8719
8720 2003-02-04 Andrew Cagney <ac131313@redhat.com>
8721
8722 * MAINTAINERS: Mark h8500 as obsolete.
8723 * configure.tgt (h8500-*-*): Mark h8500 code as obsolete.
8724 * findvar.c (value_from_register): Ditto.
8725 * h8500-tdep.c: Mark file as obsolete.
8726 * config/h8500/h8500.mt: Ditto.
8727 * config/h8500/tm-h8500.h: Ditto.
8728 * NEWS: Mention that h8500 is obsolete.
8729
8730 2003-02-04 David Carlton <carlton@math.stanford.edu>
8731
8732 * objfiles.c (allocate_objfile): Always set name. Add comment at
8733 start of function.
8734 * jv-lang.c (get_dynamics_objfile): Add comment.
8735
8736 2003-02-04 David Carlton <carlton@math.stanford.edu>
8737
8738 * symtab.h (SYMBOL_LINKAGE_NAME): Delete.
8739 * printcmd.c (build_address_symbolic): Replace uses of
8740 SYMBOL_LINKAGE_NAME by equivalent uses of SYMBOL_SOURCE_NAME,
8741 SYMBOL_NAME, and asm_demangle.
8742 Update copyright.
8743
8744 2003-02-04 David Carlton <carlton@math.stanford.edu>
8745
8746 * linespec.c (decode_compound): Extract code into
8747 lookup_prefix_sym.
8748 (lookup_prefix_sym): New function.
8749
8750 2003-02-04 David Carlton <carlton@math.stanford.edu>
8751
8752 * gdbtypes.h: Delete INTEGER_COERCION_BADNESS,
8753 FLOAT_COERCION_BADNESS.
8754 * gdbtypes.c (rank_one_type): Replace all uses of
8755 INTEGER_COERCION_BADNESS by INTEGER_CONVERSION_BADNESS.
8756
8757 2003-02-04 Jim Blandy <jimb@redhat.com>
8758
8759 * dwarf2read.c (dwarf2_locate_sections): When we find a macro info
8760 section, let dwarf_macinfo_section point to it, not
8761 dwarf_loc_section.
8762
8763 2003-02-04 Daniel Jacobowitz <drow@mvista.com>
8764
8765 Pointed out by Anton Blanchard <anton@samba.org>.
8766 * ppc-linux-tdep.c (insn_is_sigreturn): New function.
8767 (ppc_linux_at_sigtramp_return_path): Use it.
8768
8769 2003-02-04 Daniel Jacobowitz <drow@mvista.com>
8770
8771 * defs.h (streq): Add prototype.
8772 * utils.c (streq): New function.
8773
8774 * dwarf2read.c (new_symbol): Use SYMBOL_SET_NAMES instead of
8775 SYMBOL_NAME and SYMBOL_INIT_DEMANGLED_NAME.
8776 * mdebugread.c (new_symbol): Likewise.
8777 * stabsread.c (define_symbol): Likewise.
8778 * coffread.c (process_coff_symbol): Likewise.
8779 * dwarfread.c (new_symbol): Likewise.
8780
8781 * minsyms.c (prim_record_minimal_symbol_and_info): Use
8782 SYMBOL_SET_NAMES instead of setting SYMBOL_NAME. Set the language
8783 here.
8784 (install_minimal_symbols): Don't set SYMBOL_LANGUAGE or call
8785 SYMBOL_INIT_DEMANGLED_NAME.
8786 * objfiles.c: Include "hashtab.h".
8787 (allocate_objfile): Call htab_set_functions_ex for the
8788 demangled_names_hash.
8789 (free_objfile): Call htab_delete for the demangled_names_hash.
8790 * objfiles.h (struct htab): Add declaration.
8791 (struct objfile): Add demangled_names_hash.
8792 * symfile.c: Include "hashtab.h".
8793 (reread_symbols): Call htab_delete for the demangled_names_hash.
8794 (add_psymbol_to_list): Use SYMBOL_SET_NAMES instead of putting
8795 SYMBOL_NAME in the bcache.
8796 * symtab.c: Include "hashtab.h". Update comments.
8797 (create_demangled_names_hash, symbol_set_names): New functions.
8798 (symbol_find_demangled_name): New function, broken out from
8799 symbol_init_demangled_names.
8800 (symbol_init_demangled_names): Use it.
8801 * symtab.h (SYMBOL_INIT_DEMANGLED_NAME): Add missing parentheses.
8802 (SYMBOL_SET_NAMES): New macro.
8803 (symbol_set_names): Add prototype.
8804
8805 2003-02-03 Jim Blandy <jimb@redhat.com>
8806
8807 Use a single, consistent representation for an empty minimal
8808 symbol table in an objfile.
8809 * objfiles.c (terminate_minimal_symbol_table): New function.
8810 (allocate_objfile): Call it.
8811 * objfiles.h (terminate_minimal_symbol_table): New declaration.
8812 (ALL_MSYMBOLS): No need to test whether (objfile)->msymbols is
8813 non-NULL.
8814 * minsyms.c (lookup_minimal_symbol_by_pc_section): To see whether
8815 objfile has minimal symbols, compare minimal_symbol_count to zero,
8816 instead of comparing msymbols with NULL.
8817 * objfiles.c (have_minimal_symbols): Same.
8818 * solib-sunos.c (solib_add_common_symbols): Call
8819 terminate_minimal_symbol_table.
8820 * symfile.c (reread_symbols): Same.
8821
8822 2003-02-03 Kevin Buettner <kevinb@redhat.com>
8823
8824 * s390-tdep.c (s390_address_class_type_flags)
8825 (s390_address_class_type_flags_to_name)
8826 (s390_address_class_name_to_type_flags): New functions.
8827 (s390_gdbarch_init): Define ADDRESS_CLASS_TYPE_FLAGS_TO_NAME,
8828 ADDRESS_CLASS_NAME_TO_TYPE_FLAGS, and ADDRESS_CLASS_TYPE_FLAGS.
8829
8830 2003-02-03 Michael Snyder <msnyder@redhat.com>
8831
8832 * arm-tdep.c: Fix spell-o in comment.
8833
8834 2003-02-03 Michal Ludvig <mludvig@suse.cz>
8835
8836 * dwarf2cfi.c (pointer_encoding): Added new parameter.
8837 * dwarf2cfi.c, dwarf2read.c: Changed all warnings and
8838 error messages to contain BFD filename.
8839
8840 2003-02-02 Elena Zannoni <ezannoni@redhat.com>
8841
8842 Fix PR gdb/742 gdb/743 gdb/877
8843 * disasm.c (dump_insns): Use make_cleanup_ui_out_tuple_begin_end.
8844 (do_mixed_source_and_assembly): Use
8845 make_cleanup_ui_out_tuple_begin_end and
8846 make_cleanup_ui_out_tuple_begin_end.
8847 (do_mixed_source_and_assembly): Ditto.
8848 * thread.c (do_captured_list_thread_ids): Ditto.
8849 * ui-out.h (ui_out_table_begin, ui_out_list_begin,
8850 ui_out_tuple_begin, ui_out_table_end, ui_out_list_end,
8851 ui_out_tuple_end): Delete prototypes.
8852 * ui-out.c (ui_out_list_begin, ui_out_tuple_begin,
8853 ui_out_list_end, ui_out_tuple_end): Delete.
8854
8855 From Kevin Buettner <kevinb@redhat.com>:
8856 * ui-out.h (make_cleanup_ui_out_table_begin_end): New function.
8857 * ui-out.c (make_cleanup_ui_out_table_begin_end)
8858 (do_cleanup_table_end): New functions.
8859 * breakpoint.c (print_it_typical, print_one_breakpoint, mention):
8860 Use cleanups to invoke_ui_out_tuple_end().
8861 (breakpoint_1): Use cleanup to invoke ui_out_table_end().
8862 * cli/cli-setshow.c (cmd_show_list): Use
8863 make_cleanup_ui_out_tuple_begin_end.
8864
8865 2003-02-02 Andrew Cagney <ac131313@redhat.com>
8866
8867 * frame.c (frame_unwind_register): New function.
8868 (frame_unwind_unsigned_register): Use.
8869 (frame_unwind_signed_register): Use.
8870 (frame_read_register): New function.
8871 * frame.h (frame_unwind_register): Declare.
8872 (frame_read_register): Declare.
8873
8874 * d10v-tdep.c (d10v_frame_pop): Rewrite. Use regcache_cooked_write
8875 and frame_unwind_register instead of read_memory, write_register
8876 and deprecated_write_register_bytes.
8877
8878 2003-02-02 Andrew Cagney <ac131313@redhat.com>
8879
8880 * frame.h: Note that namelen can be negative.
8881 * frame.c (frame_map_name_to_regnum): When LEN is negative, use
8882 NAME's length.
8883
8884 * NEWS: Mention that the d10v's `regs' command is deprecated.
8885 * d10v-tdep.c (d10v_gdbarch_init): Set print_registers_info.
8886 (d10v_print_registers_info): New function.
8887 (show_regs): Call d10v_print_registers_info.
8888 (_initialize_d10v_tdep): Mark "show regs" command as deprecated.
8889
8890 2003-02-02 Mark Kettenis <kettenis@gnu.org>
8891
8892 * stack.c (print_frame_info): Restore call to annotate_frame_begin
8893 lost in the previous patch.
8894
8895 2003-02-01 Andrew Cagney <ac131313@redhat.com>
8896
8897 From 2002-11-09 Jason Molenda (jason-cl@molenda.com)
8898 * stack.c (print_frame_info_base): Output complete FRAME tuple
8899 for synthesized frames.
8900
8901 2003-02-02 Andrew Cagney <ac131313@redhat.com>
8902
8903 * mips-nat.c (zerobuf): Delete.
8904 (fetch_inferior_registers): Alloc local zerobuf.
8905 (fetch_core_registers): Alloc local zerobuf.
8906 * d10v-tdep.c (show_regs): Don't allocate a dynamic array using
8907 MAX_REGISTER_RAW_SIZE or MAX_REGISTER_VIRTUAL_SIZE.
8908 * thread-db.c (thread_db_store_registers): Ditto.
8909 * sh-tdep.c (sh_do_register): Ditto.
8910 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
8911 * remote-sim.c (gdbsim_store_register): Ditto.
8912 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
8913 * remote-e7000.c (fetch_regs_from_dump): Ditto.
8914 * monitor.c (monitor_supply_register): Ditto.
8915 * mipsv4-nat.c (supply_gregset, supply_fpregset): Ditto.
8916 * mips-nat.c (fetch_inferior_registers): Ditto.
8917 * m68klinux-nat.c (fetch_register): Ditto.
8918 * lynx-nat.c (fetch_inferior_registers): Ditto.
8919 (fetch_inferior_registers): Ditto.
8920 * irix4-nat.c (supply_gregset, supply_fpregset): Ditto.
8921 * hpux-thread.c (hpux_thread_fetch_registers): Ditto.
8922 (hpux_thread_store_registers): Ditto.
8923 * hppah-nat.c (fetch_register): Ditto.
8924 * hppab-nat.c (fetch_register): Ditto.
8925 * hppa-tdep.c (pa_register_look_aside): Ditto.
8926 (pa_print_fp_reg, pa_strcat_fp_reg): Ditto.
8927 * dve3900-rom.c (fetch_bitmapped_register): Ditto.
8928
8929 2003-02-01 Andrew Cagney <ac131313@redhat.com>
8930
8931 * gdbarch.sh: Explictly specify all method levels. When a
8932 variable with an empty level, provide a non-multi-arch default.
8933 (BELIEVE_PCC_PROMOTION_TYPE): Set level to empty.
8934 * gdbarch.h: Re-generate.
8935 * stabsread.c (BELIEVE_PCC_PROMOTION_TYPE): Delete. Always defined.
8936 * config/m68k/tm-sun3.h (BELIEVE_PCC_PROMOTION_TYPE): Define as 1
8937
8938 2003-02-01 Andrew Cagney <ac131313@redhat.com>
8939
8940 * defs.h (host_pointer_to_address): Delete declaration.
8941 (address_to_host_pointer): Delete declaration.
8942 * utils.c (host_pointer_to_address): Delete function.
8943 (address_to_host_pointer): Delete function.
8944 * procfs.c (procfs_address_to_host_pointer): New function.
8945 * procfs.c (proc_set_watchpoint): Use.
8946 (procfs_can_use_hw_breakpoint): Update comments.
8947 * somsolib.c (hpux_address_to_host_pointer_hack): New function.
8948 (som_solib_add): Use.
8949 * hppa-tdep.c (hppa_pointer_to_address_hack): New function.
8950 * hppa-tdep.c (unwind_command): Use.
8951
8952 2003-02-01 Andrew Cagney <ac131313@redhat.com>
8953
8954 * gdb_dirent.h: Mark up valid uses of <dirent.h>, d_namelen and
8955 strlen d_name.
8956
8957 * main.c (captured_main): Delete #ifdef ADDITIONAL_OPTIONS,
8958 ADDITIONAL_OPTION_CASES, and ADDITIONAL_OPTION_HANDLER code.
8959 (print_gdb_help): Delete #ifdef ADDITIONAL_OPTION_HELP code.
8960 * stabsread.c (DBX_PARM_SYMBOL_CLASS): Delete macro.
8961 (define_symbol): Update.
8962 * symfile.c (generic_load): Remove references to nindy.
8963 * symtab.c: Remove references to nindy.
8964
8965 2003-02-01 Andrew Cagney <ac131313@redhat.com>
8966
8967 * infcmd.c (print_float_info): Delete code conditional on
8968 FLOAT_INFO.
8969 * config/nm-lynx.h: Delete #undef FLOAT_INFO. Update copyright.
8970 * config/m68k/nm-apollo68b.h: Ditto.
8971 * config/i386/tm-ptx.h (FLOAT_INFO): Delete. Update copyright.
8972 * config/ns32k/nm-nbsd.h (FLOAT_INFO): Ditto.
8973 * config/i386/tm-symmetry.h (FLOAT_INFO): Ditto.
8974
8975 2003-02-01 Mark Kettenis <kettenis@gnu.org>
8976
8977 * config/i386/tm-i386os9k.h: Removed.
8978
8979 * configure.host (i[3456]86-*-isc*): Set gdb_host to i386v.
8980 Remove i[3456]86-*-sysv3.2* and i[3456]86-*-sysv32* entries since
8981 they're identical to i[3456]86-*-sysv* now.
8982 * config/i386/i386v32.mh: Removed.
8983 * config/i386/xm-i386v32.h: Removed.
8984 * config/i386/xm-i386sco.h (U_FPSTATE): Remove macro.
8985
8986 * config/i386/i386mk.mt, config/i386/i386mk.mh: Removed.
8987
8988 * config/i386/i386dgux.mh: Removed.
8989 * configure.host (i[3456]86-*-dgux): Set gdb_host to i386v4.
8990
8991 * configure.in: Fix typo.
8992 * configure: Regenerated.
8993
8994 2003-01-31 David Carlton <carlton@math.stanford.edu>
8995
8996 * dwarf2read.c (dwarf2_locate_sections): Set
8997 dwarf_ranges_section.
8998
8999 2003-01-31 Andrew Cagney <ac131313@redhat.com>
9000
9001 * objc-exp.y, c-exp.y, f-exp.y: Remove PTR casts.
9002 * utils.c: Update comments documenting legitimate uses of PTR.
9003
9004 * utils.c: Re-indent.
9005
9006 * config/djgpp/fnchange.lst: Delete nindy files.
9007 * nindy-share/ttyflush.c, nindy-share/stop.h: Delete files.
9008 * nindy-share/nindy.c, nindy-share/env.h: Delete files.
9009 * nindy-share/coff.h, nindy-share/block_io.h: Delete files.
9010 * nindy-share/b.out.h, nindy-share/VERSION: Delete files.
9011 * nindy-share/README, nindy-share/Onindy.c: Delete files.
9012 * nindy-tdep.c, nindy-share/Makefile: Delete files.
9013 * Makefile.in (init.c): Remove nindy references.
9014 (saber_gdb): Delete rule.
9015 (ALLDEPFILES): Delete hp300ux-nat.c, nindy-tdep.c,
9016 nindy-share/Onindy.c, nindy-share/nindy.c, nindy-share/ttyflush.c,
9017 and a68v-nat.c.
9018 (hp300ux-nat.o, a68v-nat.o, ptx4-nat.o): Delete rules.
9019 (Onindy.o, nindy.o, ttyflush.o, nindy-tdep.o): Delete rules.
9020 (HFILES_NO_SRCDIR): Delete nindy-share/b.out.h,
9021 nindy-share/block_io.h, nindy-share/coff.h, nindy-share/env.h, and
9022 nindy-share/stop.h.
9023 * hp300ux-nat.c, a68v-nat.c, ptx4-nat.c: Delete files.
9024 * saber.suppress: Delete file.
9025
9026 2003-01-31 Daniel Jacobowitz <drow@mvista.com>
9027
9028 * dbxread.c (stabs_data): New static variable.
9029 (fill_symbuf): Support an in-memory buffer for stabs data.
9030 (stabs_seek): New function.
9031 (dbx_psymtab_to_symtab): Relocate the stabs data if necessary.
9032 (read_ofile_symtab): Use stabs_seek.
9033 (elfstab_build_psymtabs): Take an asection* instead of
9034 an offset and size. Relocate the stabs data if necessary.
9035 Save the section* for dbx_psymtab_to_symtab.
9036 * dwarf2read.c: Add section variables for each debug section.
9037 (dwarf2_locate_sections): Fill them in.
9038 (dwarf2_read_section): Take an asection* argument.
9039 Relocate the section contents if necessary.
9040 (dwarf2_build_psymtabs, dwarf2_build_psymtabs_easy): Update callers.
9041 * dwarf2cfi.c (parse_frame_info): Take a section argument and pass
9042 it to dwarf2_read_section.
9043 (dwarf2_build_frame_info): Update callers.
9044 * elfread.c (elf_symfile_read): Update call to
9045 elfstab_build_psymtabs.
9046 * gdb-stabs.h (struct dbx_symfile_info): Add stab_section.
9047 (DBX_STAB_SECTION): New macro.
9048 * stabsread.h (elfstab_build_psymtabs): Update prototype.
9049 * symfile.c (symfile_dummy_outputs): New function.
9050 (symfile_relocate_debug_section): New function.
9051 * symfile.h (symfile_relocate_debug_section): Add prototype.
9052
9053 2003-01-31 Richard Henderson <rth@redhat.com>
9054
9055 * alpha-nat.c (REGISTER_PTRACE_ADDR): Merge into ...
9056 (register_addr): ... here. Support ALPHA_UNIQUE_REGNUM.
9057 (fetch_elf_core_registers): Support ALPHA_UNIQUE_REGNUM.
9058 * alpha-tdep.c (alpha_register_name): Add "unique".
9059 * alpha-tdep.h (ALPHA_NUM_REGS): Increment.
9060 (ALPHA_UNIQUE_REGNUM): New.
9061 * config/alpha/nm-linux.h (ALPHA_UNIQUE_PTRACE_ADDR): New.
9062
9063 2003-01-31 Andrew Cagney <ac131313@redhat.com>
9064
9065 * README: Remove reference to Ericsson 1800 monitor.
9066 * Makefile.in (remote-es.o): Delete rule.
9067 (ALLDEPFILES): Delete remote-es.c.
9068 * remote-es.c: Delete file.
9069 * config/m68k/es1800.mt: Delete file.
9070 * config/djgpp/fnchange.lst: Update.
9071 * configure.tgt: Delete m68*-ericsson-* target.
9072
9073 2003-01-31 Adam Fedor <fedor@gnu.org>
9074
9075 * infrun.c (handle_inferior_event): Rename 'tmp' to real_stop_pc.
9076 Remove duplicate/shadowing variable of same name.
9077
9078 2003-01-30 Jim Blandy <jimb@redhat.com>
9079
9080 * symfile.c (find_separate_debug_file): Assert that the objfile's
9081 directory name we compute ends with a slash, and then assume that
9082 that's so everywhere we use it.
9083
9084 2003-01-30 Daniel Jacobowitz <drow@mvista.com>
9085
9086 * valops.c (value_assign): Flush frame cache after stores to memory
9087 also.
9088
9089 2003-01-30 Andrew Cagney <ac131313@redhat.com>
9090
9091 * Makefile.in (mon960-rom.o): Delete rule.
9092 * mon960-rom.c: Delete file.
9093
9094 2003-01-30 Andrew Cagney <ac131313@redhat.com>
9095
9096 * d10v-tdep.c: Include "frame-unwind.h".
9097 (d10v_gdbarch_init): Append d10v_frame_p to the unwind predicate
9098 list.
9099 (next_addr, uses_frame): Delete.
9100 (struct d10v_unwind_cache): Define.
9101 (prologue_find_regs): Add struct d10v_unwind_cache info parameter.
9102 Use info instead of next_addr and uses_frame globals.
9103 (d10v_frame_init_saved_regs): Delete function.
9104 (d10v_init_extra_frame_info): Delete function.
9105 (d10v_gdbarch_init): Do not initialize init_extra_frame_info,
9106 frame_init_saved_regs or pop_frame, frame_chain, frame_chain_valid,
9107 init_frame_pc or frame_saved_pc.
9108 (d10v_pop_frame): Delete function.
9109 (do_d10v_pop_frame): Delete function.
9110 (d10v_frame_chain): Delete function.
9111 (d10v_frame_chain_valid): Delete function.
9112 (d10v_frame_pc_unwind): New function.
9113 (d10v_frame_id_unwind): New function.
9114 (saved_regs_unwinder): New function.
9115 (d10v_frame_register_unwind): New function.
9116 (d10v_frame_pop): New function.
9117 (d10v_frame_unwind): New variable.
9118 (d10v_frame_p): New function.
9119 (d10v_frame_saved_pc): Delete function.
9120 * Makefile.in (d10v-tdep.o): Update dependencies.
9121
9122 2003-01-30 J. Brobecker <brobecker@gnat.com>
9123
9124 * config/pa/tm-hppa64.h (CALL_DUMMY_LOCATION): Remove #undef
9125 causing some regressions due to a change in the default value
9126 for this macro.
9127
9128 2003-01-29 Richard Henderson <rth@redhat.com>
9129 Elena Zannoni <ezannoni@redhat.com>
9130 Daniel Jacobowitz <drow@mvista.com>
9131
9132 Fix PR gdb/961.
9133 * dwarf2read.c (dwarf_ranges_offset, dwarf_ranges_size): New
9134 variables.
9135 (RANGES_SECTION): New.
9136 (dwarf_ranges_buffer): New variable.
9137 (struct comp_unit_head): Add member "die".
9138 (struct dwarf2_pinfo): Add dwarf_ranges_buffer, dwarf_ranges_size.
9139 (DWARF_RANGES_BUFFER, DWARF_RANGES_SIZE): New.
9140 (dwarf2_has_info): Init dwarf_ranges_offset and dwarf_ranges_size.
9141 (dwarf2_locate_sections): Likewise.
9142 (dwarf2_build_psymtabs): Read .debug_ranges.
9143 (dwarf2_build_psymtabs_hard): Swap dwarf_ranges out.
9144 (psymtab_to_symtab_1): Swap dwarf_ranges in. Set cu_header.die.
9145 (dwarf2_get_pc_bounds): New cu_header argument; adjust all callers.
9146 Look for DW_AT_ranges and return the bounding box.
9147
9148 2003-01-29 Brian Ford <ford@vss.fsi.com>
9149
9150 * win32-nat.c (cygwin_pid): Removed as unused.
9151 (child_attach): Try fall back to Cygwin pid.
9152
9153 2003-01-29 Jim Blandy <jimb@redhat.com>
9154
9155 * objfiles.h (struct objfile): Doc fix.
9156
9157 2003-01-29 Andrew Cagney <ac131313@redhat.com>
9158
9159 * frame.c (frame_saved_regs_id_unwind): Assert FRAME_CHAIN_P.
9160 (legacy_get_prev_frame): Assert FRAME_CHAIN_P.
9161 (get_prev_frame): When FRAME_CHAIN_P, call legacy_get_prev_frame.
9162 (frame_saved_regs_pc_unwind): Assert FRAME_SAVED_PC_P.
9163 * gdbarch.sh (FRAME_CHAIN): Change to a function with predicate.
9164 (FRAME_SAVED_PC): Change to a function with predicate.
9165 * gdbarch.h, gdbarch.c: Re-generate.
9166
9167 2003-01-28 Andrew Cagney <ac131313@redhat.com>
9168
9169 * hppah-nat.c (child_pid_to_exec_file): Don't use boolean.
9170
9171 * complaints.c (complain): Delete function.
9172 * complaints.h (struct deprecated_complaint): Delete definition.
9173 (complain): Delete declaration.
9174
9175 2003-01-28 Kevin Buettner <kevinb@redhat.com>
9176
9177 * mips-tdep.c (mips_init_extra_frame_info): Return early for
9178 dummy frames.
9179
9180 2003-01-27 Andrew Cagney <ac131313@redhat.com>
9181
9182 * sentinel-frame.h, sentinel-frame.c: New files.
9183 * Makefile.in (frame.o): Update dependencies.
9184 (SFILES): Add sentinel-frame.c.
9185 (sentinel_frame_h): Define.
9186 (COMMON_OBS): Add sentinel-frame.o.
9187 (sentinel-frame.o): Specify dependencies.
9188 * frame.c: Include "sentinel-frame.h".
9189 (frame_register_unwind): Rewrite assuming that there is always a a
9190 ->next frame.
9191 (frame_register, generic_unwind_get_saved_register): Ditto.
9192 (frame_read_unsigned_register, frame_read_signed_register): Ditto.
9193 (create_sentinel_frame, unwind_to_current_frame): New functions.
9194 (get_current_frame): Rewrite using create_sentinel_frame and
9195 unwind_to_current_frame. When possible, always create a frame.
9196 (create_new_frame): Set next to the sentinel frame.
9197 (get_next_frame): Rewrite. Don't go below the level 0 frame.
9198 (deprecated_update_frame_pc_hack): Update the next frame's PC and
9199 ID cache when necessary.
9200 (frame_saved_regs_id_unwind): Use frame_relative_level.
9201 (deprecated_generic_get_saved_register): Use frame_relative_level,
9202 get_frame_saved_regs, get_frame_pc, get_frame_base and
9203 get_next_frame.
9204 (frame_saved_regs_register_unwind): Use get_frame_saved_regs and
9205 frame_register.
9206
9207 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
9208
9209 * gdb_indent.sh: Add -T bfd and -T asection to the indent arguments.
9210
9211 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
9212
9213 * maint.c [! (HAVE_MONSTARTUP && HAVE__MCLEANUP)]
9214 (maintenance_set_profile_cmd): Use error () instead of warning ().
9215
9216 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
9217
9218 * configure.in: Check that -pg works if using --enable-profiling.
9219 Check for monstartup and _mcleanup regardless of --enable-profiling.
9220 * maint.c: Check for monstartup and _mcleanup before using them.
9221 * config.in: Regenerated.
9222 * configure: Regenerated.
9223
9224 2003-01-24 Nick Clifton <nickc@redhat.com>
9225
9226 * Add sh2e support:
9227
9228 2002-04-02 Elena Zannoni <ezannoni@redhat.com>
9229
9230 * gdb/sh-tdep.c (sh_sh2e_register_name): New.
9231 (sh2e_show_regs): New.
9232 (sh_gdbarch_init): Handle bfd_mach_sh2e.
9233 * config/sh/tm-sh.h: Added sh2e to comments.
9234
9235 2003-01-23 Jim Blandy <jimb@redhat.com>
9236
9237 * symfile.c (syms_from_objfile): Don't print the "(no debugging
9238 symbols found)" message here; we haven't checked for a separate
9239 debug info file yet, so we don't know yet.
9240 (symbol_file_add_with_addrs_or_offsets): Print it here, after
9241 we've looked everywhere. Also, there's no need to print a special
9242 message when we're loading the separate debug info file: the one
9243 symbol_file_add prints is fine.
9244
9245 2003-01-23 Alexander Larsson <alexl@redhat.com>
9246 Jim Blandy <jimb@redhat.com>
9247
9248 Add support for executables whose debug info has been separated
9249 out into a separate file, leaving only a link behind.
9250 * objfiles.h (struct objfile): New fields: separate_debug_objfile
9251 and separate_debug_objfile_backlink.
9252 (put_objfile_before): New declaration.
9253 * symfile.c: #include "filenames.h".
9254 (symbol_file_add_with_addrs_or_offsets): If this objfile has its
9255 debug info in a separate file, read that, too. Save the addrs
9256 argument, so we can use it again to read the separated debug info;
9257 syms_from_objfile modifies the table we pass it.
9258 (reread_symbols): After re-reading an objfile, call
9259 reread_separate_symbols to refresh its separate debug info
9260 objfile, if it has one.
9261 (reread_separate_symbols, find_separate_debug_file,
9262 get_debug_link_info, separate_debug_file_exists): New functions.
9263 (debug_file_directory): New global var.
9264 (_initialize_symfile): Initialize debug_file_directory, and
9265 provide the new `set debug-file-directory' command to let the user
9266 change it.
9267 * objfiles.c (free_objfile): If this objfile has its debug info in
9268 a separate objfile, free that one too. If this is itself a
9269 separate debug info objfile, clear our parent's backlink.
9270 (put_objfile_before): New function.
9271 * utils.c (gnu_debuglink_crc32): New function.
9272 * defs.h (gnu_debuglink_crc32): New declaration.
9273 * Makefile.in (symfile.o): Note dependency on "filenames.h".
9274 * configure.in: Handle --with-separate-debug-dir config option.
9275 * acinclude.m4 (AC_DEFINE_DIR): New macro.
9276 * acconfig.h (DEBUGDIR): New macro.
9277 * configure, aclocal.m4, config.in: Regenerated.
9278
9279 2003-01-22 Jim Blandy <jimb@redhat.com>
9280
9281 * symfile.c (symbol_file_add_with_addrs_or_offsets): New function,
9282 like the old symbol_file_add, but taking new arguments: you can
9283 now pass in either a `struct section_addr_info' list to say where
9284 each section is loaded, or a `struct section_offsets' table. Pass
9285 these new arguments through to syms_from_objfile as appropriate.
9286 (symbol_file_add): Just call symbol_file_add_with_addrs_or_offsets,
9287 with the appropriate quiescent values for the new arguments.
9288
9289 * symfile.c: #include "gdb_assert.h".
9290 (syms_from_objfile): Add the ability to pass in a section offset
9291 table directly, as an alternative to the section_addr_info table.
9292 Document arguments better.
9293 (symbol_file_add): Pass extra arguments to syms_from_objfile.
9294 * symfile.h (syms_from_objfile): Update declaration.
9295 * rs6000-nat.c (objfile_symbol_add): Pass new arguments to
9296 syms_from_objfile.
9297 * Makefile.in (symfile.o): List dependency on $(gdb_assert_h).
9298
9299 2003-01-22 Daniel Jacobowitz <drow@mvista.com>
9300
9301 Original patch by Tom Tromey <tromey@cygnus.com> and
9302 Jason Molenda <jmolenda@apple.com>.
9303 * Makefile.in (PROFILE_CFLAGS): Substitute from configure.
9304 (INTERNAL_LDFLAGS): Don't include PROFILE_CFLAGS.
9305 * NEWS: Mention profiling.
9306 * configure.in (--enable-gdbtk): Fix typo.
9307 (--enable-profiling): New. Set PROFILE_CFLAGS.
9308 * maint.c (maintenance_set_profile_cmd): Remove NOTYET.
9309 Fill in function.
9310 (profiling_state): New variable.
9311 (mcleanup_wrapper): New function.
9312 (_initialize_maint): Remove NOTYET, fix call to
9313 add_setshow_boolean_cmd for "maint set profile".
9314 * configure: Regenerated.
9315
9316 2003-01-21 Martin M. Hunt <hunt@redhat.com>
9317
9318 * Makefile.in (install-gdbtk): Install PNG images too.
9319
9320 2003-01-21 Andrew Cagney <ac131313@redhat.com>
9321
9322 * exec.c (text_start): Delete global variable.
9323 (exec_file_attach): Make text_start local to the function.
9324 * inferior.h (BEFORE_TEXT_END, AFTER_TEXT_END): Delete macros.
9325 * valops.c (hand_function_call): Delete code that handles
9326 BEFORE_TEXT_END and AFTER_TEXT_END.
9327 * gdbarch.sh (CALL_DUMMY_LENGTH): Test call_dummy_length instead
9328 of CALL_DUMMY_LOCATION.
9329 * gdbarch.c: Regenerate.
9330 * inferior.h (deprecated_pc_in_call_dummy_before_text_end)
9331 (deprecated_pc_in_call_dummy_after_text_end): Delete declaration.
9332 * blockframe.c (deprecated_pc_in_call_dummy_before_text_end)
9333 (deprecated_pc_in_call_dummy_after_text_end): Delete functions.
9334 (text_end): Delete extern declaration.
9335
9336 2003-01-21 Andrew Cagney <ac131313@redhat.com>
9337
9338 * frame.h (FRAME_OBSTACK_ZALLOC): Define.
9339 * blockframe.c (backtrace_below_main): Move to "frame.c".
9340 (frame_chain_valid): Delete check for backtrace_below_main.
9341 (_initialize_blockframe): Delete initialization, move ``set
9342 backtrace-below-main'' command to "frame.c".
9343 (do_flush_frames_sfunc): Delete function.
9344 * frame.c: Include "command.h" and "gdbcmd.h".
9345 (frame_type_from_pc): New function.
9346 (create_new_frame): Use frame_type_from_pc.
9347 (legacy_get_prev_frame): New function.
9348 (get_prev_frame): Rewrite. When an old style frame, call
9349 legacy_get_prev_frame. Otherwize, unwind the PC first.
9350 (_initialize_frame): Add ``set backtrace-below-main'' command.
9351 * Makefile.in (frame.o): Update dependencies.
9352
9353 2003-01-19 Andrew Cagney <ac131313@redhat.com>
9354
9355 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO): Rename
9356 DEPRECATED_REGISTERS_INFO.
9357
9358 2003-01-19 Andrew Cagney <ac131313@redhat.com>
9359
9360 * MAINTAINERS: Replace `Blanket Write Privs' with `Global
9361 Maintainers'. Update `Various Maintainers'.
9362
9363 2003-01-19 Andrew Cagney <ac131313@redhat.com>
9364
9365 * frame.c (frame_saved_regs_pop): Assert POP_FRAME_P.
9366 * gdbarch.sh (POP_FRAME): Change to function with predicate.
9367 Suppress actual parameters when `-'.
9368 * gdbarch.h, gdbarch.c: Regenerate.
9369
9370 2003-01-19 Andrew Cagney <ac131313@redhat.com>
9371
9372 * d10v-tdep.c (d10v_frame_saved_pc, d10v_frame_chain): Restore
9373 code handling dummy frames.
9374
9375 2003-01-19 Andrew Cagney <ac131313@redhat.com>
9376
9377 * frame-unwind.h (frame_unwind_pop_ftype): Declare.
9378 (struct frame_unwind): Add field pop.
9379 * frame.h (frame_pop): Declare.
9380 * frame.c (frame_saved_regs_pop): New function.
9381 (trad_frame_unwinder): Add frame_saved_regs_pop.
9382 (frame_pop): New function.
9383 * dummy-frame.c (dummy_frame_pop): New function.
9384 (discard_innermost_dummy): New function.
9385 (generic_pop_dummy_frame): Use discard_innermost_dummy.
9386 (dummy_frame_unwind): Add dummy_frame_pop.
9387 * infrun.c (normal_stop): Call frame_pop instead of POP_FRAME.
9388 * valops.c (hand_function_call): Ditto.
9389 * stack.c (return_command): Ditto.
9390
9391 2003-01-18 Andrew Cagney <ac131313@redhat.com>
9392
9393 * cris-tdep.c: Fix function declaration indentation.
9394 * dwarfread.c, gdbcore.h, gdbtypes.h, i386v-nat.c: Ditto.
9395 * mips-tdep.c, monitor.h, parse.c, proc-utils.h: Ditto.
9396 * rs6000-nat.c, ser-go32.c, somread.c, stabsread.c: Ditto.
9397 * symfile.h, symtab.h, target.c, target.h, value.h: Ditto.
9398 * xcoffread.c, config/pa/tm-hppa.h: Ditto.
9399 * config/sparc/tm-sp64.h, config/sparc/tm-sparc.h: Ditto.
9400
9401 2003-01-18 Michael Chastain <mec@shout.net>
9402
9403 * README (Unpacking and Installation -- quick overview):
9404 Warn against ".../gdb-5.3/gdb/configure".
9405
9406 2003-01-18 Andrew Cagney <ac131313@redhat.com>
9407
9408 * dummy-frame.h (dummy_frame_id_unwind): Delete declaration.
9409 (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
9410 (struct frame_unwind): Declare opaque.
9411 (dummy_frame_p): Declare function.
9412 * dummy-frame.c (dummy_frame_id_unwind): Make static.
9413 (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
9414 * dummy-frame.c: Include "frame-unwind.h".
9415 (dummy_frame_p): New function.
9416 (dummy_frame_unwind): New variable.
9417 * frame.c: Include "frame-unwind.h".
9418 (frame_pc_unwind, frame_id_unwind, frame_register_unwind): Update
9419 to use the new unwind field.
9420 (set_unwind_by_pc): Delete function.
9421 (create_new_frame, get_prev_frame): Set unwind field using
9422 frame_unwind_find_by_pc.
9423 (trad_frame_unwind, trad_frame_unwinder): New variables.
9424 * frame.h (trad_frame_unwind): Declare variable.
9425 (frame_id_unwind_ftype): Delete declaration.
9426 (frame_pc_unwind_ftype, frame_register_unwind_ftype): Ditto.
9427 (struct frame_unwind): Declare opaque.
9428 (struct frame_info): Replace the fields id_unwind, pc_unwind and
9429 register_unwind with a single unwind pointer.
9430 * frame-unwind.h, frame-unwind.c: New files.
9431 * Makefile.in (SFILES): Add frame-unwind.c.
9432 (frame_unwind_h): Define.
9433 (COMMON_OBS): Add frame-unwind.o.
9434 (frame-unwind.o): Specify dependencies.
9435 (frame.o, dummy-frame.o): Update dependencies.
9436
9437 2003-01-18 Andrew Cagney <ac131313@redhat.com>
9438
9439 * ada-valprint.c: Eliminate PTR.
9440 * breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
9441 * defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
9442 * exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
9443 * objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
9444 * remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
9445 * solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
9446 * symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
9447
9448 2003-01-17 Andrew Cagney <ac131313@redhat.com>
9449
9450 * main.c (captured_main): Don't use PTR.
9451 * cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
9452 * gdbtypes.c (lookup_primitive_typename): Ditto.
9453 (lookup_struct_elt_type): Ditto.
9454 * f-valprint.c (info_common_command): Ditto.
9455 (list_all_visible_commons): Ditto.
9456 * jv-typeprint.c (java_type_print_base): Ditto.
9457
9458 * config/djgpp/fnchange.lst: Rename mi1-var-block.exp,
9459 mi1-var-child.exp, mi1-var-cmd.exp and mi1-var-display.exp.
9460 Rename opcodes/iq2000-desc.c and opcodes/iq2000-dis.c. Rename
9461 i386-interix-nat.c and i386-interix-tdep.c. Rename
9462 m68klinux-nat.c and m68klinux-tdep.c. Rename
9463 config/mips/tm-linux.h and config/mips/tm-linux64.h. Rename
9464 bfd/po/.cvsignore and opcodes/po/.cvsignore. Rename
9465 gdb/objc-exp.tab.c and gdb/ada-exp.tab.c
9466 * main.c (captured_main): Use xfree, not free.
9467
9468 2003-01-16 Andrew Cagney <ac131313@redhat.com>
9469
9470 * frame.h (frame_id_unwind_ftype): Change type so that the frame's
9471 ID back using a parameter.
9472 * frame.c (frame_id_unwind): Update call.
9473 (frame_saved_regs_id_unwind): Update.
9474 * dummy-frame.c (dummy_frame_id_unwind): Update function.
9475 * dummy-frame.h (struct frame_id): Add opaque declaration.
9476 (dummy_frame_id_unwind): Update declaration.
9477
9478 2003-01-15 Andrew Cagney <ac131313@redhat.com>
9479
9480 * sparc-tdep.c: Delete reference to PRINT_REGISTER_HOOK.
9481
9482 2003-01-15 Stephen P. Smith <ischis2@cox.net>
9483
9484 * MAINTAINERS (Stephen P. Smith): Updated email address.
9485
9486 2003-01-14 Elena Zannoni <ezannoni@redhat.com>
9487
9488 Fix PR gdb/898
9489 * breakpoint.c (until_break_command): Add new argument. Use it to
9490 decide whether to stop only at the current frame or not.
9491 * breakpoint.h (until_break_command): Update prototype.
9492 * infcmd.c (until_command): Add new argument to until_break_command
9493 call.
9494 (advance_command): New function.
9495 (_initialize_infcmd): Update help string for 'until' command.
9496 Add new 'advance' command.
9497
9498 2003-01-14 David Carlton <carlton@math.stanford.edu>
9499
9500 * linespec.c (decode_line_1): Normalize comments.
9501 (set_flags): Ditto.
9502 (locate_first_half): Ditto.
9503 (decode_compound): Ditto.
9504 (symtab_from_filename): Ditto.
9505 (decode_all_digits): Ditto.
9506 (decode_dollar): Ditto.
9507 (find_methods): Ditto.
9508 (find_toplevel_char): Ditto.
9509
9510 2003-01-13 Andrew Cagney <ac131313@redhat.com>
9511
9512 * ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
9513 * demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
9514 * elfread.c, eval.c, expprint.c, expression.h: Update copyright.
9515 * f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
9516 * gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
9517 * language.c, language.h, m32r-tdep.c: Update copyright.
9518 * mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
9519 * somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
9520 * thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
9521 * values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
9522 * x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
9523 * cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
9524
9525 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
9526
9527 * stabsread.h (process_later, resolve_cfront_continuation):
9528 Obsolete.
9529 Update copyright years.
9530 * buildsym.c (start_subfile): Obsolete comment pertinent to Cfront.
9531 Update copyright year.
9532 * dbxread.c(struct cont_elem): Obsolete.
9533 (process_later, process_now): Obsolete functions.
9534 (read_dbx_symtab, read_ofile_symtab): Obsolete cfront support.
9535 Update copyright year.
9536 * gdbtypes.c (INIT_EXTRA, ADD_EXTRA): Obsolete macros.
9537 (add_name, add_mangled_type, cfront_mangle_name): Obsolete functions.
9538 * mdebugread.c (parse_type): Obsolete comment pertinent to Cfront.
9539 (parse_partial_symbols): Obsolete cfront support.
9540 * stabsread.c
9541 (CFRONT_VISIBILITY_PRIVATE,CFRONT_VISIBILITY_PUBLIC): Obsolete
9542 macros.
9543 (get_substring, get_cfront_method_physname, msg_unknown_complaint,
9544 read_cfront_baseclasses, read_cfront_member_functions,
9545 resolve_cfront_continuation,read_cfront_static_fields,
9546 copy_cfront_struct_fields): Obsolete functions.
9547 (define_symbol, read_one_struct_field): Obsolete cfront support.
9548 * xcoffread.c (scan_xcoff_symtab): Obsolete CFront support.
9549 Update Copyright year.
9550
9551 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
9552
9553 * stack.c (print_frame_info, print_stack_frame_base_stub,
9554 print_stack_frame_base, show_and_print_stack_frame_stub,
9555 show_and_print_stack_frame, print_only_stack_frame_stub,
9556 print_only_stack_frame): Delete functions.
9557 (print_stack_frame_stub): Call print_frame_info instead of
9558 print_frame_info_base.
9559 (print_frame_info_base): Rename to print_frame_info.
9560 (backtrace_command_1): Call print_frame_info, instead of
9561 print_frame_info_base.
9562 (current_frame_command): Call print_stack_frame, instead of
9563 print_only_stack_frame.
9564 (frame_command): Call print_stack_frame, instead of
9565 show_and_print_stack_frame.
9566 (up_command): Ditto.
9567 (down_command): Ditto.
9568 * frame.h (print_only_stack_frame): Delete prototype.
9569 * infrun.c (normal_stop): Call print_stack_frame, instead of
9570 show_and_print_stack_frame.
9571 * thread.c (info_threads_command): Call print_stack_frame, instead
9572 of print_only_stack_frame.
9573
9574 2003-01-13 Andrew Cagney <ac131313@redhat.com>
9575
9576 * README (Graphical interface to GDB): Update URL. Point at
9577 gdb/links/.
9578
9579 * gdb_indent.sh: Update to version 2.2.9. Warn when not exact
9580 version match.
9581
9582 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
9583
9584 * symtab.c (find_pc_sect_line): Don't consider end-of-function
9585 lines.
9586
9587 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
9588
9589 * thread-db.c (attach_thread): Prototype.
9590 (struct private_thread_info): Remove lwpid. Add thread handle (th),
9591 thread information (ti), and valid flags (th_valid, ti_valid).
9592 (attach_thread): Move target_pid_to_str call to after the thread
9593 is added to GDB's list. Initialize the cache.
9594 (thread_get_info_callback, thread_db_map_id2thr)
9595 (thread_db_get_info): New functions.
9596 (thread_from_lwp, lwp_from_thread, thread_db_fetch_registers)
9597 (thread_db_store_registers, thread_db_thread_alive)
9598 (thread_db_get_thread_local_address): Use them.
9599 (thread_db_pid_to_str): Likewise. Return "Missing" instead
9600 of calling error() for threads in unknown state.
9601
9602 (clear_lwpid_callback): New function.
9603 (thread_db_resume): Use it to clear the cache.
9604
9605 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
9606
9607 * lin-lwp.c (struct private_thread_info, find_lwp_callback): Remove.
9608 (resume_callback): Remove dead code.
9609
9610 2003-01-13 Andrew Cagney <ac131313@redhat.com>
9611
9612 * gdbarch.sh (FRAME_INIT_SAVED_REGS): Change to function with
9613 predicate.
9614 * gdbarch.h, gdbarch.c: Regenerate.
9615 * stack.c (frame_info): Only initialize the saved registers when
9616 FRAME_INIT_SAVED_REGS_P.
9617 * frame.c (frame_saved_regs_register_unwind): Assert
9618 FRAME_INIT_SAVED_REGS_P.
9619 (deprecated_generic_get_saved_register): Ditto.
9620
9621 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
9622
9623 * source.c (openp): Squelch warning about "filename".
9624
9625 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
9626
9627 * source.c (openp): If the file does not exist don't necessarily
9628 search the path.
9629
9630 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
9631
9632 Fix PR gdb/872.
9633 * gdbtypes.c (init_type): Mark "char" as TYPE_FLAG_NOSIGN.
9634 (integer_types_same_name_p): New function.
9635 (rank_one_type): Use it.
9636 * stabsread.c (read_range_type): Mark "char" as TYPE_FLAG_NOSIGN.
9637
9638 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
9639
9640 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): New
9641 variables.
9642 (main.o): Custom rule which uses $(TARGET_SYSTEM_ROOT_DEFINE).
9643 * configure.in: Add --with-sysroot.
9644 * configure: Regenerated.
9645 * main.c (gdb_sysroot): New variable.
9646 (captured_main): Initialize gdb_sysroot.
9647 * defs.h (gdb_sysroot): New extern declaration.
9648 * solib.c (_initialize_solib): Initialize solib_absolute_prefix.
9649
9650 2003-01-12 Michael Chastain <mec@shout.net>
9651
9652 * config/djgpp/fnchange.lst: add gdb/ChangeLog-2002.
9653
9654 2003-01-12 Michael Chastain <mec@shout.net>
9655
9656 * top.c (print_gdb_version): Bump copyright year to 2003.
9657
9658 2003-01-12 David Carlton <carlton@bactrian.org>
9659
9660 * linespec.c (symtab_from_filename): Rename variable 's' to
9661 'file_symtab'.
9662
9663 2003-01-12 Andrew Cagney <ac131313@redhat.com>
9664
9665 * d10v-tdep.c (d10v_init_extra_frame_info): Remove checks for a
9666 dummy frame.
9667 (d10v_frame_saved_pc, d10v_frame_chain): Ditto.
9668
9669 2003-01-12 Andrew Cagney <ac131313@redhat.com>
9670
9671 * d10v-tdep.c: Include "gdb_assert.h".
9672 (d10v_store_return_value): Rewrite to match current interface.
9673 (d10v_extract_struct_value_address): Ditto.
9674 (d10v_extract_return_value): Ditto.
9675 (d10v_gdbarch_init): Set store_restore_value,
9676 extract_struct_value_address and extract_return_value.
9677
9678 2003-01-12 J. Brobecker <brobecker@gnat.com>
9679
9680 * hpread.c (set_namestring): New procedure replacing the
9681 SET_NAMESTRING macro.
9682 (hpread_build_psymtabs): Replace calls to SET_NAMESTRING
9683 by calls to set_namestring.
9684
9685 2003-01-11 J. Brobecker <brobecker@gnat.com>
9686
9687 * hpread.c (SET_NAMESTRING): Remove an incorrect cast to fix
9688 a compilation warning.
9689 (hpread_process_one_debug_symbol): Likewise.
9690
9691 2003-01-10 David Carlton <carlton@math.stanford.edu>
9692
9693 * linespec.c (decode_line_1): Rename variable 's' to
9694 'file_symtab'.
9695 (decode_all_digits): Rename argument 's' to 'file_symtab'.
9696 (decode_dollar): Ditto.
9697 (decode_variable): Ditto.
9698 (symbol_found): Ditto.
9699
9700 2003-01-09 Michael Chastain <mec@shout.net>
9701
9702 * config/djgpp/fnchange.lst: update file list for testsuite/gdb.c++.
9703
9704 2003-01-07 Corinna Vinschen <vinschen@redhat.com>
9705
9706 * win32-nat.c (set_process_privilege): New function.
9707 (child_attach): Call set_process_privilege() to enable the
9708 SE_DEBUG_NAME user privilege if available in process token.
9709
9710 2003-01-10 J. Brobecker <brobecker@gnat.com>
9711
9712 * hpread.c (hpread_process_one_debug_symbol): Fix a small
9713 compilation error in the previous revision.
9714
9715 2003-01-09 David Carlton <carlton@math.stanford.edu>
9716
9717 * linespec.c: Update copyright.
9718
9719 2003-01-09 Daniel Jacobowitz <drow@mvista.com>
9720
9721 * lin-lwp.c (child_wait): Ignore exit statuses for processes other
9722 than inferior_ptid.
9723 (lin_lwp_wait): Ignore exit statuses for unknown LWPs.
9724
9725 2003-01-09 Andrew Cagney <ac131313@redhat.com>
9726
9727 * frame.h (frame_obstack_zalloc): Replace frame_obstack_alloc.
9728 Update comments.
9729 * frame.c (frame_obstack_zalloc): Replace frame_obstack_alloc.
9730 (frame_saved_regs_zalloc): Update.
9731 (frame_saved_regs_register_unwind): Update.
9732 (create_new_frame): Update.
9733 (get_prev_frame): Update.
9734 (frame_extra_info_zalloc): Update.
9735 (deprecated_get_frame_saved_regs): Update.
9736 * dwarf2cfi.c (cfi_init_extra_frame_info): Update.
9737 * cris-tdep.c: Update comment.
9738
9739 * somsolib.h: Fix function indentation.
9740 * disasm.c, buildsym.c, buildsym.h: Eliminate PTR.
9741 * gnu-v2-abi.c, f-typeprint.c, x86-64-linux-tdep.c: Eliminate STREQ.
9742 * demangle.c, ax-gdb.c, c-valprint.c: Eliminate STREQ.
9743 * alpha-osf1-tdep.c, corefile.c: Eliminate STREQ.
9744 * somsolib.c, inftarg.c: Remove assignment in if conditional.
9745
9746 * infrun.c (follow_fork): Use ISO C definition.
9747 * expprint.c (print_subexp): Use xfree instead of free.
9748 * charset.c: Include "gdb_string.h" instead of <string.h>.
9749 (register_iconv_charsets): Use ISO C definition.
9750 (host_charset, target_charset): Ditto.
9751 * Makefile.in (charset.o): Update dependencies.
9752 (mi-cmd-env.o): Update dependencies.
9753
9754 2003-01-08 Andrew Cagney <cagney@redhat.com>
9755
9756 * alpha-linux-tdep.c (alpha_linux_sigcontext_addr): Use
9757 get_frame_base.
9758
9759 2003-01-08 Andrew Cagney <ac131313@redhat.com>
9760
9761 * gdb_mbuild.sh: Add --keep option. When specified, keep the
9762 build directories. Save edited gdb output in Mbuild.log. If a
9763 build fails, remove any final GDB executable.
9764
9765 2003-01-08 Andrew Cagney <ac131313@redhat.com>
9766
9767 * gdb_mbuild.sh: Edit the output of `maint print architecture'
9768 replacing hex constants with function names and stripping leading
9769 file name directory prefixes.
9770
9771 2003-01-08 Andrew Cagney <cagney@redhat.com>
9772
9773 * gcore.c, i386-linux-tdep.c: Use get_frame_pc, get_next_frame and
9774 get_frame_base.
9775
9776 2003-01-08 David Carlton <carlton@math.stanford.edu>
9777
9778 * linespec.c (decode_line_1): Move code into decode_variable.
9779 (decode_variable): New function.
9780
9781 2003-01-08 Andrew Cagney <ac131313@redhat.com>
9782
9783 * mn10300-tdep.c (analyze_dummy_frame): Fix typo.
9784
9785 2003-01-08 Andrew Cagney <cagney@redhat.com>
9786
9787 * cris-tdep.c (cris_frame_init_saved_regs): Use
9788 get_frame_saved_regs and SIZEOF_FRAME_SAVED_REGS when copying a
9789 saved_regs buffer.
9790 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
9791 (sh64_nofp_frame_init_saved_regs): Ditto.
9792 (sh_fp_frame_init_saved_regs): Ditto.
9793 * arm-tdep.c: Use deprecated_set_frame_saved_regs_hack.
9794 * mips-tdep.c (mips_init_extra_frame_info): Ditto.
9795 * mcore-tdep.c (analyze_dummy_frame): Ditto.
9796 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
9797
9798 2003-01-08 Daniel Jacobowitz <drow@mvista.com>
9799
9800 * minsyms.c (lookup_minimal_symbol): Update comment.
9801 (lookup_minimal_symbol_text): Update comment. Use the hash table.
9802 (lookup_minimal_symbol_solib_trampoline): Likewise.
9803
9804 2003-01-08 Andrew Cagney <cagney@redhat.com>
9805
9806 * d10v-tdep.c (d10v_init_extra_frame_info): Use
9807 frame_relative_level.
9808
9809 * alpha-tdep.c: Use get_frame_extra_info.
9810 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
9811 * h8300-tdep.c, ia64-tdep.c, m68hc11-tdep.c, mcore-tdep.c: Ditto.
9812 * mips-tdep.c, mn10300-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
9813 * sparc-tdep.c, xstormy16-tdep.c: Ditto.
9814
9815 * alpha-tdep.c: Use get_next_frame.
9816 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
9817 * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
9818 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Ditto.
9819 * mips-tdep.c, mn10200-tdep.c, mn10300-tdep.c: Ditto.
9820 * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, sparc-tdep.c: Ditto.
9821 * v850-tdep.c, vax-tdep.c, x86-64-linux-tdep.c: Ditto.
9822 * xstormy16-tdep.c: Ditto.
9823
9824 2003-01-07 Andrew Cagney <cagney@redhat.com>
9825
9826 * alpha-tdep.c: Use get_frame_base.
9827 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
9828 * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
9829 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
9830 * mn10300-tdep.c, ns32k-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
9831 * sparc-tdep.c, v850-tdep.c, vax-tdep.c: Ditto.
9832 * x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
9833 * config/h8500/tm-h8500.h, config/mn10200/tm-mn10200.h: Ditto.
9834 * config/sparc/tm-sparc.h: Ditto.
9835
9836 2003-01-07 Andrew Cagney <cagney@redhat.com>
9837
9838 * frame.c (deprecated_get_frame_context): New function.
9839 (deprecated_set_frame_context): New function.
9840 * frame.h (deprecated_get_frame_context): Declare.
9841 (deprecated_set_frame_context): Declare.
9842 * dwarf2cfi.c (UNWIND_CONTEXT): Use deprecated_get_frame_context.
9843 (cfi_init_extra_frame_info): Use deprecated_set_frame_context.
9844
9845 2003-01-07 Andrew Cagney <cagney@redhat.com>
9846
9847 * frame.c (deprecated_set_frame_next_hack): New function.
9848 (deprecated_set_frame_prev_hack): New function.
9849 * frame.h (deprecated_set_frame_next_hack): Declare.
9850 (deprecated_set_frame_prev_hack): Declare.
9851 * mcore-tdep.c (analyze_dummy_frame): Use
9852 deprecated_set_frame_next_hack and deprecated_set_frame_prev_hack.
9853 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
9854
9855 2003-01-07 David Carlton <carlton@math.stanford.edu>
9856
9857 * linespec.c (decode_line_1): Move code into decode_dollar.
9858 (decode_dollar): New function.
9859
9860 2003-01-07 Andrew Cagney <cagney@redhat.com>
9861
9862 * arm-tdep.c (arm_init_extra_frame_info): Use
9863 deprecated_update_frame_base_hack.
9864 * xstormy16-tdep.c (xstormy16_scan_prologue): Ditto.
9865 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
9866 (fix_frame_pointer): Ditto.
9867 (mn10300_analyze_prologue): Ditto.
9868
9869 2003-01-07 Andrew Cagney <cagney@redhat.com>
9870
9871 * xstormy16-tdep.c (xstormy16_init_extra_frame_info): Allocate
9872 extra_info using frame_extra_info_zalloc.
9873 * sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
9874 * sh-tdep.c (sh_init_extra_frame_info): Ditto.
9875 (sh64_init_extra_frame_info): Ditto.
9876 * mn10300-tdep.c (mn10300_init_extra_frame_info): Ditto.
9877 * s390-tdep.c (s390_init_extra_frame_info): Ditto.
9878 * mips-tdep.c (mips_init_extra_frame_info): Ditto.
9879 * mcore-tdep.c (mcore_init_extra_frame_info): Ditto.
9880 * frv-tdep.c (frv_init_extra_frame_info): Ditto.
9881 * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Ditto.
9882 * ia64-tdep.c (ia64_init_extra_frame_info): Ditto.
9883 * h8300-tdep.c (h8300_init_extra_frame_info): Ditto.
9884 * d10v-tdep.c (d10v_init_extra_frame_info): Ditto.
9885 * cris-tdep.c (cris_init_extra_frame_info): Ditto.
9886 * arm-tdep.c (arm_init_extra_frame_info): Ditto.
9887 * alpha-tdep.c (alpha_init_extra_frame_info): Ditto.
9888
9889 * mn10300-tdep.c (analyze_dummy_frame): Use
9890 deprecated_set_frame_extra_info_hack.
9891 * mcore-tdep.c (analyze_dummy_frame): Ditto.
9892
9893 2003-01-07 J. Brobecker <brobecker@gnat.com>
9894
9895 * mdebugread.c (parse_symbol): Skip stProc entries which storage
9896 class is not scText. These do not define "real" procedures.
9897 (parse_partial_symbols): Likewise.
9898
9899 2003-01-06 Michael Snyder <msnyder@redhat.com>
9900
9901 * lin-lwp.c: Added or elaborated on "debug lin-lwp" info.
9902
9903 2003-01-06 Andrew Cagney <ac131313@redhat.com>
9904
9905 * frame.h (deprecated_frame_xmalloc_with_cleanup): Declare.
9906 * frame.c (deprecated_frame_xmalloc_with_cleanup): New function.
9907 * arm-tdep.c (arm_frame_chain): Allocate caller_fi using
9908 deprecated_frame_xmalloc_with_cleanup.
9909 * m32r-tdep.c (m32r_virtual_frame_pointer): Allocate `fi' using
9910 deprecated_frame_xmalloc.
9911 * mcore-tdep.c (analyze_dummy_frame): Ditto for dummy.
9912 * mn10200-tdep.c (mn10200_frame_chain): Ditto for dummy_frame.
9913
9914 2003-01-06 Andrew Cagney <cagney@redhat.com>
9915
9916 * x86-64-linux-tdep.c: Include "osabi.h".
9917 * Makefile.in (x86-64-linux-tdep.o): Update dependencies.
9918
9919 * sparc-tdep.c (sparc_dump_tdep): Fix typo, match -> mach.
9920
9921 2003-01-06 Andrew Cagney <cagney@redhat.com>
9922
9923 * MAINTAINERS (Target Instruction Set Architectures): Update
9924 arm-elf. Can be built with -Werror, has been multiarched.
9925
9926 * value.h (unpack_long): Make buffer parameter constant.
9927 (unpack_double, unpack_pointer, unpack_field_as_long): Ditto.
9928 * scm-lang.h (scm_parse): Ditto.
9929 * defs.h (extract_typed_address, extract_address): Ditto.
9930 (extract_long_unsigned_integer): Ditto.
9931 * inferior.h (unsigned_pointer_to_address): Ditto.
9932 (signed_pointer_to_address): Ditto.
9933 * gdbarch.sh (POINTER_TO_ADDRESS): Ditto.
9934 * gdbarch.h, gdbarch.c: Regenerate.
9935 * findvar.c (extract_long_unsigned_integer): Update.
9936 (extract_address): Update.
9937 (extract_typed_address): Update.
9938 (unsigned_pointer_to_address): Update.
9939 * values.c (unpack_long): Update.
9940 (unpack_double): Update.
9941 (unpack_pointer): Update.
9942 (unpack_field_as_long): Update.
9943 * d10v-tdep.c (d10v_pointer_to_address): Update.
9944 * avr-tdep.c (avr_pointer_to_address): Update.
9945 * scm-lang.c (scm_unpack): Update.
9946 * findvar.c (signed_pointer_to_address): Update.
9947
9948 2003-01-06 Michal Ludvig <mludvig@suse.cz>
9949
9950 * x86-64-linux-nat.c (i386_sse_regnum_p): Deleted. Not needed anymore
9951 since it is in i386-tdep.c.
9952
9953 2003-01-06 J. Brobecker <brobecker@gnat.com>
9954
9955 * alpha-tdep.c (alpha_gdbarch_init): Fix a small compilation
9956 failure introduced in the previous change.
9957
9958 2003-01-05 Michael Chastain <mec@shout.net>
9959
9960 * README: Remove references to deleted remote-*.c files:
9961 remote-adapt.c, remote-eb.c, remote-mm.c, remote-nindy.c,
9962 remote-nrom.c, remote-os9k.c, remote-udi.c.
9963
9964 2003-01-05 Mark Kettenis <kettenis@gnu.org>
9965
9966 * i386-tdep.c (i386_get_longjmp_target): Make usable on x86-64.
9967 * x86-64-tdep.c (x86_64_init_abi): Remove FIXME about
9968 i386_get_longjmp_target.
9969
9970 2003-01-05 Andrew Cagney <ac131313@redhat.com>
9971
9972 * arm-tdep.c (prologue_cache): Change to a pointer.
9973 (_initialize_arm_tdep): Allocate prologue_cache.
9974 (check_prologue_cache): Update.
9975 (save_prologue_cache): Update.
9976 (arm_gdbarch_init): Update.
9977
9978 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
9979
9980 * stabsread.c (update_method_name_from_physname): Call complaint()
9981 instead of error.
9982
9983 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
9984
9985 * arm-tdep.c (arm_frame_chain_valid): Remove unnecessary test.
9986 * d10v-tdep.c (d10v_frame_chain_valid): Remove unnecessary tests.
9987 * hppa-tdep.c (hppa_frame_chain_valid): Remove unnecessary test.
9988
9989 * blockframe.c: Include "gdbcmd.h" and "command.h".
9990 (backtrace_below_main): New variable.
9991 (file_frame_chain_valid, func_frame_chain_valid)
9992 (nonnull_frame_chain_valid, generic_file_frame_chain_valid)
9993 (generic_func_frame_chain_valid): Remove functions.
9994 (frame_chain_valid, do_flush_frames_sfunc): New functions.
9995 (_initialize_blockframe): New function.
9996 * Makefile.in (blockframe.o): Update dependencies.
9997 * frame.c (frame_saved_regs_id_unwind, get_prev_frame): Remove FIXME
9998 comment. Call frame_chain_valid ().
9999 * frame.h: Remove old prototypes. Add prototype for
10000 frame_chain_valid and update comments to match.
10001 * gdbarch.sh: Change FRAME_CHAIN_VALID into a predicated function.
10002 Remove old comment.
10003 * gdbarch.h: Regenerated.
10004 * gdbarch.c: Regenerated.
10005
10006 * alpha-tdep.c (alpha_gdbarch_init): Don't call
10007 set_gdbarch_frame_chain_valid.
10008 * avr-tdep.c (avr_gdbarch_init): Likewise.
10009 * cris-tdep.c (cris_gdbarch_init): Likewise.
10010 * frv-tdep.c (frv_gdbarch_init): Likewise.
10011 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
10012 * i386-tdep.c (i386_svr4_init_abi): Likewise.
10013 (i386_nw_init_abi): Likewise.
10014 (i386_gdbarch_init): Likewise.
10015 * ia64-tdep.c (ia64_gdbarch_init): Likewise.
10016 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
10017 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
10018 * mcore-tdep.c (mcore_gdbarch_init): Likewise.
10019 * mips-tdep.c (mips_gdbarch_init): Likewise.
10020 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
10021 * ns32k-tdep.c (ns32k_gdbarch_init): Likewise.
10022 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Likewise.
10023 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
10024 * s390-tdep.c (s390_gdbarch_init): Likewise.
10025 * sh-tdep.c (sh_gdbarch_init): Likewise.
10026 * sparc-tdep.c (sparc_gdbarch_init): Likewise.
10027 * v850-tdep.c (v850_gdbarch_init): Likewise.
10028 * vax-tdep.c (vax_gdbarch_init): Likewise.
10029 * x86-64-tdep.c (x86_64_init_abi): Likewise.
10030
10031 * config/m32r/tm-m32r.h (FRAME_CHAIN_VALID): Don't define.
10032 * config/m68k/tm-apollo68b.h (FRAME_CHAIN_VALID): Likewise.
10033 * config/m68k/tm-m68kv4.h (FRAME_CHAIN_VALID): Likewise.
10034 * config/m68k/tm-monitor.h (FRAME_CHAIN_VALID): Likewise.
10035 * config/m68k/tm-os68k.h (FRAME_CHAIN_VALID): Likewise.
10036 * config/m68k/tm-vx68.h (FRAME_CHAIN_VALID): Likewise.
10037 * config/mn10200/tm-mn10200.h (FRAME_CHAIN_VALID): Likewise.
10038 * config/sparc/tm-sparclite.h (FRAME_CHAIN_VALID): Likewise.
10039
10040 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
10041
10042 * Makefile.in (acconfig_h): Remove incorrect macro.
10043 (config_h): Define.
10044 (osabi.o): Update dependencies.
10045 * configure.tgt: Set gdb_osabi based on target triplet.
10046 * configure.in: Define GDB_OSABI_DEFAULT based on gdb_osabi.
10047 * configure: Regenerated.
10048 * config.in: Regenerated.
10049 * osabi.c: Include "arch-utils.h", "gdbcmd.h", and "command.h".
10050 (GDB_OSABI_DEFAULT): Define if not already defined.
10051 (user_osabi_state, user_selected_osabi, gdb_osabi_available_names)
10052 (set_osabi_string): New variables.
10053 (gdbarch_register_osabi): Add new OS ABI to
10054 gdb_osabi_available_names.
10055 (gdbarch_lookup_osabi): Honor specified and default OS ABIs.
10056 (set_osabi, show_osabi): New functions.
10057 (_initialize_gdb_osabi): Add "set osabi" and "show osabi" commands.
10058
10059 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
10060
10061 * arch-utils.c (gdbarch_info_init): Set osabi to
10062 GDB_OSABI_UNINITIALIZED.
10063 * gdbarch.sh: Add osabi to struct gdbarch and to struct
10064 gdbarch_info. Include "osabi.h" in gdbarch.c. Check osabi
10065 in gdbarch_list_lookup_by_info and in gdbarch_update_p.
10066 * gdbarch.c: Regenerated.
10067 * gdbarch.h: Regenerated.
10068 * osabi.c (gdbarch_lookup_osabi): Return GDB_OSABI_UNINITIALIZED if
10069 there's no BFD.
10070 (gdbarch_init_osabi): Remove osabi argument; use info.osabi.
10071 * osabi.h (enum gdb_osabi): Move to defs.h.
10072 (gdbarch_init_osabi): Update prototype.
10073 * defs.h (enum gdb_osabi): Moved here.
10074 * Makefile.in: Update dependencies.
10075
10076 * alpha-tdep.h: Don't include "osabi.h".
10077 (struct gdbarch_tdep): Remove osabi member.
10078 * alpha-tdep.c: Include "osabi.h".
10079 (alpha_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
10080 iterate over arches. Update call to gdbarch_init_osabi.
10081 (alpha_dump_tdep): Don't dump osabi.
10082 * alpha-linux-tdep.c: Include "osabi.h".
10083 * alpha-osf1-tdep.c: Include "osabi.h".
10084 * alphafbsd-tdep.c: Include "osabi.h".
10085 * alphanbsd-tdep.c: Include "osabi.h".
10086
10087 * arm-tdep.h: Don't include "osabi.h".
10088 (struct gdbarch_tdep): Remove osabi member.
10089 * arm-tdep.c: Include "osabi.h".
10090 (arm_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
10091 iterate over arches. Update call to gdbarch_init_osabi.
10092 (arm_dump_tdep): Don't dump osabi.
10093 * arm-linux-tdep.c: Include "osabi.h".
10094 * armnbsd-tdep.c: Include "osabi.h".
10095
10096 * hppa-tdep.c (hppa_gdbarch_init): Don't call gdbarch_lookup_osabi.
10097 Update call to gdbarch_init_osabi.
10098
10099 * i386-tdep.h: Don't include "osabi.h".
10100 (struct gdbarch_tdep): Remove osabi member.
10101 * i386-tdep.c: Include "osabi.h".
10102 (i386_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
10103 iterate over arches. Update call to gdbarch_init_osabi.
10104 (i386_dump_tdep): Don't dump osabi.
10105 * i386-linux-tdep.c: Include "osabi.h".
10106 * i386-sol2-tdep.c: Include "osabi.h".
10107 * i386bsd-tdep.c: Include "osabi.h".
10108 * i386gnu-tdep.c: Include "osabi.h".
10109 * i386ly-tdep.c: Include "osabi.h".
10110 * i386nbsd-tdep.c: Include "osabi.h".
10111 * i386obsd-tdep.c: Include "osabi.h".
10112
10113 * mips-tdep.c (struct gdbarch_tdep): Remove osabi member.
10114 (mips_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
10115 check osabi when iterating over arches. Update call to
10116 gdbarch_init_osabi.
10117 (mips_dump_tdep): Don't dump osabi.
10118
10119 * ns32k-tdep.h: Don't include "osabi.h".
10120 (struct gdbarch_tdep): Remove.
10121 * ns32k-tdep.c (ns32k_gdbarch_init): Don't call
10122 gdbarch_lookup_osabi. Don't iterate over arches. Don't
10123 allocate tdep. Update call to gdbarch_init_osabi.
10124 (ns32k_dump_tdep): Remove.
10125 (_initialize_ns32k_tdep): Update call to gdbarch_register.
10126 * ns32knbsd-tdep.c: Include "osabi.h".
10127
10128 * ppc-tdep.h: Don't include "osabi.h".
10129 (struct gdbarch_tdep): Remove osabi member.
10130 * rs6000-tdep.c: Include "osabi.h".
10131 (rs6000_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't check
10132 osabi when iterating over arches. Update call to
10133 gdbarch_init_osabi.
10134 (rs6000_dump_tdep): Don't dump osabi.
10135 * ppc-linux-tdep.c: Include "osabi.h".
10136 * ppcnbsd-tdep.c: Include "osabi.h".
10137
10138 * sh-tdep.h: Don't include "osabi.h".
10139 (struct gdbarch_tdep): Remove osabi member.
10140 * sh-tdep.c: Include "osabi.h".
10141 (sh_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
10142 iterate over arches. Update call to gdbarch_init_osabi.
10143 (sh_dump_tdep): Don't dump osabi.
10144 * shnbsd-tdep.c: Include "osabi.h".
10145
10146 * sparc-tdep.c: Include "osabi.h".
10147 (sparc_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
10148 iterate over arches. Update call to gdbarch_init_osabi.
10149 (sparc_dump_tdep): Don't dump osabi. Do dump the rest of the
10150 tdep structure.
10151
10152 * vax-tdep.h: Don't include "osabi.h".
10153 (struct gdbarch_tdep): Remove.
10154 * vax-tdep.c: Include "osabi.h".
10155 (vax_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
10156 iterate over arches. Don't allocate tdep. Update call
10157 to gdbarch_init_osabi.
10158 (vax_dump_tdep): Remove.
10159 (_initialize_vax_tdep): Update call to gdbarch_register.
10160
10161 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
10162
10163 * breakpoint.c (insert_breakpoints): Skip disabled breakpoints
10164 entirely.
10165 (breakpoint_re_set_one): Don't fetch the value for a disabled
10166 watchpoint.
10167
10168 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
10169
10170 * buildsym.h (processing_hp_compilation): Remove obsolete variable.
10171 * gdbarch.sh Remove include of "value.h" in gdbarch.h.
10172 (COERCE_FLOAT_TO_DOUBLE): Remove.
10173 * gdbarch.c: Regenerate.
10174 * gdbarch.h: Regenerate.
10175 * Makefile.in: Remove value_h from gdbarch_h.
10176 * valops.c (coerce_float_to_double): New variable.
10177 (default_coerce_float_to_double): Remove.
10178 (standard_coerce_float_to_double): Remove.
10179 (value_arg_coerce): Use coerce_float_to_double.
10180 (_initialize_valops): Add "set coerce-float-to-double".
10181 * value.h (default_coerce_float_to_double): Remove prototype.
10182 (standard_coerce_float_to_double): Remove prototype.
10183
10184 * hpread.c (hpread_process_one_debug_symbol): Mark C++ functions as
10185 prototyped.
10186 * mdebugread.c (parse_symbol): Likewise.
10187 * stabsread.c (define_symbol): Mark all functions as prototyped.
10188
10189 * hppa-tdep.c (hppa_coerce_float_to_double): Remove.
10190 * alpha-tdep.c (alpha_gdbarch_init): Remove call to
10191 set_gdbarch_coerce_float_to_double.
10192 * arm-tdep.c (arm_gdbarch_init): Likewise.
10193 * frv-tdep.c (frv_gdbarch_init): Likewise.
10194 * h8300-tdep.c (h8300_gdbarch_init): Likewise (commented out).
10195 * i386-sol2-tdep.c (i386_sol2_init_abi): Likewise.
10196 * mips-tdep.c (mips_gdbarch_init): Likewise.
10197 (mips_coerce_float_to_double): Remove.
10198 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
10199 (rs6000_coerce_float_to_double): Remove.
10200 * s390-tdep.c (s390_gdbarch_init): Likewise.
10201 * sh-tdep.c (sh_gdbarch_init): Likewise.
10202 (sh_coerce_float_to_double): Remove.
10203 * sparc-tdep.c (sparc_gdbarch_init): Likewise.
10204 (sparc_coerce_float_to_double): Remove.
10205 * v850-tdep.c (v850_gdbarch_init): Likewise.
10206 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
10207 * config/m32r/tm-m32r.h (COERCE_FLOAT_TO_DOUBLE): Remove.
10208 * config/pa/tm-hppa.h: (COERCE_FLOAT_TO_DOUBLE): Remove.
10209 (hppa_coerce_float_to_double): Remove prototype.
10210 * config/sparc/tm-sparc.h (COERCE_FLOAT_TO_DOUBLE): Remove.
10211
10212 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
10213
10214 * regformats/reg-m68k.dat: Remove fpcode and fpflags.
10215
10216 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
10217
10218 Suggested by Stewart Brown <sb24@avaya.com>:
10219 * c-typeprint.c (c_type_print_varspec_prefix): Pass value of show
10220 in recursive calls. Handle TYPE_CODE_TYPEDEF.
10221 (c_type_print_varspec_suffix): Likewise.
10222
10223 2003-01-04 Mark Kettenis <kettenis@gnu.org>
10224
10225 * configure.in: Don't set and AC_SUBST SUBDIRS.
10226 * configure: Regenerated.
10227
10228 * configure.in: Remove code dealing with shared libraries.
10229 * Makefile.in: Remove HLDFLAGS and HLDENV.
10230 * configure: Regenerated.
10231
10232 2003-01-04 Andrew Cagney <ac131313@redhat.com>
10233
10234 * frame.c (deprecated_frame_xmalloc): New function.
10235 (deprecated_set_frame_saved_regs_hack): New function.
10236 (deprecated_set_frame_extra_info_hack): New function.
10237 * frame.h (deprecated_frame_xmalloc): Declare.
10238 (deprecated_set_frame_saved_regs_hack): Declare.
10239 (deprecated_set_frame_extra_info_hack): Declare.
10240
10241 2003-01-04 Mark Kettenis <kettenis@gnu.org>
10242
10243 * configure.in: Move code that provides the --enable-gdbtk option
10244 right after the code that handles the --enable-tui option, and
10245 polish it somewhat.
10246 * configure: Regenerated.
10247
10248 * configure.in: Call AC_GNU_SOURCE. Check for pread64 using
10249 AC_CHECK_FUNCS and remove the old check for pread64.
10250 * acinclude.m4 (AC_GNU_SOURCE): New macro.
10251 * acconfig.h (_GNU_SOURCE): Add.
10252 (HAVE_PREAD64): Remove.
10253 * configure, aclocal.m4, config.in: Regenerated.
10254
10255 2003-01-03 Andrew Cagney <ac131313@redhat.com>
10256
10257 * alpha-tdep.c: Use get_frame_saved_regs.
10258 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
10259 * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
10260 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Ditto.
10261 * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, v850-tdep.c: Ditto.
10262 * vax-tdep.c, xstormy16-tdep.c: Ditto.
10263
10264 2003-01-03 Mark Kettenis <kettenis@gnu.org>
10265
10266 * configure.in: Remove all use of the SUBDIRS variable; add
10267 directories using the AC_CONFIG_SUBDIRS macro instead. Polish
10268 code providing the --enable-multi-ice option, and move it right in
10269 front of the code that checks whether gdbserver is supported.
10270 Polish that too.
10271 * configure: Regenerated.
10272 * Makefile.in (SUBDIRS): Substitute @subdirs@ instead of
10273 @SUBDIRS@.
10274
10275 2003-01-03 Andrew Cagney <cagney@redhat.com>
10276
10277 * alpha-tdep.c: Use deprecated_update_frame_base_hack.
10278 * avr-tdep.c, cris-tdep.c: Ditto.
10279 * mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
10280 * sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
10281
10282 2003-01-03 Mark Kettenis <kettenis@gnu.org>
10283
10284 * configure.in: Remove --enable-netrom option.
10285 * configure: Regenerated.
10286
10287 2003-01-03 Mark Kettenis <kettenis@gnu.org>
10288
10289 * cli/cli-decode.h: Don't include "gdb_regex.h"; provide a forward
10290 declaration for `struct re_pattern_buffer' instead.
10291 * Makefile.in (cli_decode_h): Remove $(gdb_regex_h).
10292
10293 2003-01-03 J. Brobecker <brobecker@gnat.com>
10294
10295 * mdebugread.c (parse_symbol): Count until the stEnd matching
10296 the structure name.
10297
10298 2003-01-02 Mark Kettenis <kettenis@gnu.org>
10299
10300 * configure.in: Remove --with-cpu option.
10301 subscripts. Remove evil changequotes here.
10302 * acconfig.h (TARGET_CPU_DEFAULT): Remove.
10303 * config.in, configure: Regenerated.
10304
10305 * acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.
10306 * configure.in: Cleanup section that sources GDB and BFD configure
10307 subscripts. Remove evil changequotes here.
10308 * config.in, configure: Regenerated.
10309
10310 2003-01-02 Andrew Cagney <ac131313@redhat.com>
10311
10312 * arm-tdep.c: Use get_frame_pc and deprecated_update_frame_pc_hack
10313 frame accessor methods.
10314 * alpha-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
10315 * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
10316 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c, mips-tdep.c: Ditto.
10317 * mn10200-tdep.c, mn10300-tdep.c, ns32k-tdep.c: Ditto.
10318 * s390-tdep.c, sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
10319 * vax-tdep.c, x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
10320 * z8k-tdep.c: Ditto.
10321
10322 2003-01-02 Mark Kettenis <kettenis@gnu.org>
10323
10324 * configure.in: Remove UI_OUT configuration code.
10325 * ada-lang.c: Update assuming UI_OUT is always true.
10326 * Makefile.in (UIOUT_CFLAGS): Remove.
10327 * configure: Regenerated.
10328 * TODO: Remove blurb about elimination of -DUI_OUT.
10329
10330 * configure.in: Move code that provides the --enable-gdbcli,
10331 --enable-gdbmi options right before the code that handles the
10332 --enable-tui option. Polish a bit.
10333 * configure: Regenerated.
10334
10335 * configure.in: Rewrite check for GNU regex and the
10336 --without-included regex option, and move it into the "Checks for
10337 library functions" section. This makes us use the system regex
10338 again by default on systems with version 2 of the GNU C library.
10339 This was apparently broken.
10340 * gdb_regex.h [!USE_INCLUDED_REGEX] (_REGEX_RE_COMP): Define.
10341 * acconfig.h (USE_INCLUDED_REGEX): Remove.
10342 * config.in, configure: Regenerated.
10343
10344 * configure.in: Move code that provides the --enable-tui option
10345 before the "Checks for libraries" section. Polish the code
10346 somewhat and set need_curses to yes if we build the TUI. Rewrite
10347 code that looks for a library providing termcap functionality to
10348 match more closely what's done in the Readline library, and move
10349 it into to the "Checks for libraries" section.
10350 * configure: Regenerated.
10351 * Makefile.in (TERMCAP): Remove variable.
10352 * config/i386/go32.mh (TERMCAP): Remove variable.
10353
10354 2003-01-02 Andrew Cagney <ac131313@redhat.com>
10355
10356 * MAINTAINERS: Mention gdb_mbuild.sh.
10357 * gdb_mbuild.sh: Rewrite.
10358
10359 2003-01-02 Mark Kettenis <kettenis@gnu.org>
10360
10361 * configure.in: Fix typo in last change.
10362 * config.in, configure: Regenerated.
10363
10364 2003-01-02 Andrew Cagney <ac131313@redhat.com>
10365
10366 * valarith.c (value_binop): Delete obsolete code and comments.
10367 * configure.host: Ditto.
10368 * buildsym.h (make_blockvector): Ditto.
10369 * buildsym.c (make_blockvector): Ditto.
10370 * defs.h (enum language): Ditto.
10371 (chill_demangle): Ditto.
10372 * elfread.c (elf_symtab_read): Ditto.
10373 * dwarfread.c (CHILL_PRODUCER): Ditto.
10374 (set_cu_language): Ditto.
10375 (handle_producer): Ditto.
10376 * expprint.c (print_subexp): Ditto.
10377 * gdbtypes.c (chill_varying_type): Ditto.
10378 * gdbtypes.h (builtin_type_chill_bool): Ditto.
10379 (builtin_type_chill_char, builtin_type_chill_long): Ditto.
10380 (builtin_type_chill_ulong, builtin_type_chill_real): Ditto.
10381 (chill_varying_type): Ditto.
10382 * language.h (_LANG_chill): Ditto.
10383 * language.c (binop_result_type, integral_type): Ditto.
10384 (character_type, string_type, structured_type): Ditto.
10385 (lang_bool_type, binop_type_check): Ditto.
10386 * stabsread.h (os9k_stabs): Ditto.
10387 * stabsread.c (os9k_type_vector, dbx_lookup_type): Ditto.
10388 (define_symbol, read_type, read_struct_fields): Ditto.
10389 (read_array_type, read_enum_type, read_huge_number): Ditto.
10390 (read_range_type, start_stabs): Ditto.
10391 * symfile.c (init_filename_language_table): Ditto.
10392 (add_psymbol_with_dem_name_to_list): Ditto.
10393 * symtab.c (symbol_init_language_specific): Ditto.
10394 (symbol_init_demangled_name, symbol_demangled_name): Ditto.
10395 * symtab.h (struct general_symbol_info): Ditto.
10396 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
10397 * typeprint.c (typedef_print): Ditto.
10398 * utils.c (fprintf_symbol_filtered): Ditto.
10399 * valops.c (value_cast, search_struct_field, value_slice): Delete
10400 obsolete code.
10401 (varying_to_slice): Delete function.
10402 * value.h (COERCE_VARYING_ARRAY): Delete obsolete macro contents.
10403 (varying_to_slice): Delete declaration.
10404 * MAINTAINERS: Update.
10405
10406 2003-01-02 Mark Kettenis <kettenis@gnu.org>
10407
10408 * configure.in: Reorganize "Checks for library functions section"
10409 a bit. Remove check for `btowc' and `isascii' functions.
10410 * configure: Regenerated.
10411
10412 * acconfig.h (_MSE_INT_H): Remove.
10413 * configure.in: Create "Checks for header files" section, and move
10414 appropriate tests there. Don't check for objlist.h, wchar.h,
10415 wctype.h and asm/debugreg.h. Rewrite Solaris 2.[78] <curses.h>
10416 misdetection fix. Also add "Checks for types", "Checks for
10417 compiler characteristics" and "Checks for library functions"
10418 sections.
10419 * config.in, configure: Regenerated.
10420
10421 * configure.in: Create "Checks for programs" section, and move
10422 appropriate tests there.
10423
10424 2003-01-01 Mark Kettenis <kettenis@gnu.org>
10425
10426 * configure.in: Create "Checks for libraries" section, and move
10427 appropriate tests there. Cleanup check for wctype in libw. Use
10428 AC_SEARCH_LIBS to see whether we need libsocket.
10429 * configure: Regenerated.
10430
10431 For older changes see ChangeLog-2002
10432 \f
10433 Local Variables:
10434 mode: change-log
10435 left-margin: 8
10436 fill-column: 74
10437 version-control: never
10438 End:
This page took 0.286309 seconds and 4 git commands to generate.