* ppc-linux-nat.c (ppc_register_u_addr, fill_gregset): If PT_MQ
[external/binutils.git] / gdb / ChangeLog
1 2003-06-12  Jim Blandy  <jimb@redhat.com>
2
3         * ppc-linux-nat.c (ppc_register_u_addr, fill_gregset): If PT_MQ
4         isn't #defined, assume the register doesn't exist: act as if
5         tdep->ppc_mq_regnum were -1.
6
7         * configure.host, configure.tgt: Add entries for
8         powerpc64-*-linux, selecting powerpc/ppc64-linux.mh and
9         powerpc/linux.mt.
10         * config/powerpc/ppc64-linux.mh, config/powerpc/nm-ppc64-linux.mh:
11         New files.
12
13         * arch-utils.c (always_use_struct_convention): New function.
14         * arch-utils.h (always_use_struct_convention): New prototype.
15         * alpha-tdep.c (alpha_use_struct_convention): Delete.
16         (alpha_gdbarch_init): Register always_use_struct_convention,
17         instead of alpha_use_struct_convention.
18         * cris-tdep.c (cris_use_struct_convention): Delete.
19         (cris_gdbarch_init): Register always_use_struct_convention,
20         instead of cris_use_struct_convention.
21         * frv-tdep.c (frv_use_struct_convention): Delete.
22         (frv_gdbarch_init): Register always_use_struct_convention,
23         instead of frv_use_struct_convention.
24         * h8300-tdep.c (h8300_use_struct_convention): Delete.
25         (h8300_gdbarch_init): Register always_use_struct_convention,
26         instead of h8300_use_struct_convention.
27         * mips_o32-tdep.c (mips_o32_use_struct_convention): Delete.
28         (mips_o32_gdbarch_init): Register always_use_struct_convention,
29         instead of mips_o32_use_struct_convention.
30
31 2003-06-12  Andrew Cagney  <cagney@redhat.com>
32
33         * wince.c: Include "mips-tdep.h".
34         * mips-tdep.h (mips_next_pc): Declare.
35         * mcore-tdep.c: Make more local functions static.
36         * Makefile.in (wince.o): Update dependencies.
37
38 2003-06-12  David Carlton  <carlton@kealia.com>
39
40         * symtab.c (lookup_symbol_aux_minsyms): Replace
41         DEPRECATED_SYMBOL_NAME by SYMBOL_LINKAGE_NAME.
42         (find_pc_sect_line, search_symbols, rbreak_command): Ditto.
43         (COMPLETION_LIST_ADD_SYMBOL): Rewrite in terms of
44         SYMBOL_NATURAL_NAME.
45
46 2003-06-12  Andreas Schwab  <schwab@suse.de>
47
48         * Makefile.in (tuiDisassem.o): Update dependencies.
49
50 2003-06-12  David Carlton  <carlton@bactrian.org>
51
52         * symtab.h: Delete declaration of make_symbol_overload_list.
53         Add declaration of lookup_partial_symbol.
54         * symtab.c (remove_params): Move to cp-support.c.
55         (overload_list_add_symbol, make_symbol_overload_list)
56         (sym_return_val_size, sym_return_val_index): Ditto.
57         (lookup_partial_symbol): Make extern.
58         * cp-support.h: Add declaration of make_symbol_overload_list.
59         * cp-support.c: Include dictionary.h, objfiles.h, frame.h,
60         symtab.h, and block.h.
61         (remove_params): Move here from symtab.c.
62         (overload_list_add_symbol, make_symbol_overload_list)
63         (sym_return_val_size, sym_return_val_index): Ditto.
64         * valops.c: Include cp-support.h.
65         * Makefile.in (cp-support.o): Depend on dictionary_h, objfiles_h,
66         frame_h, and block_h.
67         (valops.o): Depend on cp_support_h.
68
69 2003-06-12  Corinna Vinschen  <vinschen@redhat.com>
70
71         * h8300-tdep.c: Add H8SX registers. Drop E_NUM_REGS entirely,
72         substitute by NUM_REGS throughout.
73         (h8300_register_name): Only care for H8/300 and H8/300H registers.
74         (h8300s_register_name): New function for H8S registers.
75         (h8300sx_register_name): Ditto for H8SX registers.
76         (h8300_print_register): Revise register printing, avoid depending
77         on 32 bit long.
78         (h8300_register_byte); Only care for H8/300 registers.
79         (h8300h_register_byte): New function for any other architecture.
80         (h8300_register_raw_size): Remove.
81         (h8300_register_virtual_type): Revise to return actually useful
82         type.
83         (h8300_extract_struct_value_address): Only care for H8/300 registers.
84         (h8300h_extract_struct_value_address): New function for any other
85         architecture.
86         (h8300_gdbarch_init): Add h8300sxn.  Call set_gdbarch_num_regs,
87         set_gdbarch_register_name, set_gdbarch_register_byte,
88         set_gdbarch_ptr_bit and set_gdbarch_addr_bit architecture dependent.
89         Remove calls to set_gdbarch_deprecated_register_size,
90         set_gdbarch_deprecated_register_bytes, set_gdbarch_register_raw_size,
91         set_gdbarch_deprecated_max_register_raw_size,
92         set_gdbarch_register_virtual_size and
93         set_gdbarch_deprecated_max_register_virtual_size entirely.
94         Call set_gdbarch_long_long_bit, set_gdbarch_double_bit and
95         set_gdbarch_long_double_bit.
96
97 2003-06-11  Jeff Johnston  <jjohnstn@redhat.com>
98
99         * doublest.c (convert_doublest_to_floatformat): When dealing 
100         with the implied integer bit, only alter mant_bits if we are 
101         processing a full 32 bits of mantissa.
102
103 2003-06-11  David Carlton  <carlton@bactrian.org>
104
105         * dictionary.h: New.
106         * dictionary.c: New.
107         * block.h: Add opaque declaration for struct dictionary.
108         (struct block): Add 'dict' member; delete 'hashtable', 'nsyms',
109         'sym' members.
110         (BLOCK_DICT): New macro.
111         Delete macros BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM,
112         BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE,
113         BLOCK_SHOULD_SORT.
114         (ALL_BLOCK_SYMBOLS): Update definition.
115         * Makefile.in (SFILES): Add dictionary.c.
116         (dictionary_h): New.
117         (COMMON_OBS): Add dictionary.o.
118         (dictionary.o): New.
119         (ada-lang.o): Depend on dictionary_h.
120         (buildsym.o, coffread.o, jv-lang.o, mdebugread.o, objfiles.o)
121         (stack.o, symmisc.o, symtab.o, tracepoint.o, valops.o)
122         (mi-cmd-stack.o): Ditto.
123         (gdbtk-cmds.o): Update dependencies.
124         (gdbtk-stack.o): Ditto.
125         * ada-lang.c: Include dictionary.h.
126         (symtab_for_sym): Update uses of ALL_BLOCK_SYMBOLS.
127         (fill_in_ada_prototype, debug_print_block): Ditto.
128         (ada_add_block_symbols): Update uses of ALL_BLOCK_SYMBOLS; replace
129         explicit iteration by use of ALL_BLOCK_SYMBOLS.  Delete variable
130         'is_sorted'.
131         * mdebugread.c: Include dictionary.h.
132         (struct parse_stack): Delete 'maxsyms' member.
133         (parse_symbol): Update calls to new_block.  Delete calls to
134         shrink_block.  Use dictionary methods.
135         (psymtab_to_symtab_1): Delete calls to sort_symtab_syms.
136         Update calls to new_symtab.  Don't maintain maxsyms data.
137         (mylookup_symbol): Update use of ALL_BLOCK_SYMBOLS.
138         (add_symbol): Just call dict_add_symbol.
139         (new_symtab): Delete 'maxsyms' argument.
140         (new_symtab): Update calls to new_block.
141         (new_block): Delete 'maxsyms' argument; add 'function' argument.
142         (shrink_block): Delete function.
143         (fixup_sigtramp): Update call to new_block.  Add symbol via
144         dict_add_symbol.
145         * jv-lang.c: Include dictionary.h.
146         (get_java_class_symtab): Set the BLOCK_DICT of the blocks
147         appropriately.  Set class_symtab->free_func.  Make sure the
148         blockvector is big enough to hold two blocks.
149         (add_class_symtab_symbol): Use dictionary methods.
150         (free_class_block): New function.
151         (type_from_class): Replace explicit iteration by
152         ALL_BLOCK_SYMBOLS.
153         * symtab.h (struct symtab): Replace 'free_ptr' method by
154         'free_func'.
155         * dwarf2read.c (psymtab_to_symtab_1): Delete call to
156         sort_symtab_syms.
157         * dwarfread.c (psymtab_to_symtab_1): Delete call to
158         sort_symtab_syms.
159         * coffread.c (coff_symfile_read): Delete call to sort_symtab_syms.
160         Include dictionary.h.
161         (patch_opaque_types): Update use of ALL_BLOCK_SYMBOLS.
162         * dbxread.c (dbx_psymtab_to_symtab_1): Delete call to
163         sort_symtab_syms.
164         * objfiles.c: Include dictionary.h.
165         (objfile_relocate): Update use of ALL_BLOCK_SYMBOLS.
166         * buildsym.c: Include dictionary.h.
167         (finish_block): Use dictionary methods.
168         (end_symtab): Set free_func to NULL, not free_ptr.
169         * tracepoint.c: Include dictionary.h.
170         (add_local_symbols): Update use of ALL_BLOCK_SYMBOLS.
171         (scope_info): Ditto.
172         * stack.c: Include dictionary.h.
173         (print_block_frame_locals): Update use of ALL_BLOCK_SYMBOLS.
174         (print_block_frame_labels, print_frame_arg_vars)
175         (print_frame_args): Ditto.
176         * symmisc.c (free_symtab_block): Use dictionary methods.
177         (dump_symtab): Ditto.
178         (free_symtab): Replace use of 'free_ptr' by 'free_func'.
179         Include dictionary.h.
180         * symfile.h: Delete declarations of sort_block_syms,
181         sort_symtab_syms.
182         * symfile.c (sort_block_syms): Delete.
183         (sort_symtab_syms): Delete.
184         * symtab.c: Include dictionary.h.
185         (lookup_block_symbol): Use dictionary iterators.
186         (find_pc_sect_symtab): Update use of ALL_BLOCK_SYMBOLS.
187         (search_symbols, make_symbol_completion_list): Ditto.
188         (make_symbol_overload_list): Ditto.
189         * valops.c (value_of_local): Use dict_empty.
190         Include dictionary.h.
191
192 2003-06-11  J. Brobecker  <brobecker@gnat.com>
193
194         * win32-nat.c (solib_symbols_add): Fix a small compilation error.
195
196 2003-06-11  David Carlton  <carlton@bactrian.org>
197
198         * block.h (BLOCK_SHOULD_SORT): Delete.
199         * symtab.c (lookup_block_symbol): Don't worry about sorted linear
200         blocks.
201         * ada-lang.c (ada_add_block_symbols): Ditto.
202         * symfile.c (sort_block_syms): Delete.
203         (sort_symtab_syms): Ditto.
204         * symfile.h: Delete sort_symtabs_syms and sort_block_syms
205         declarations.
206         * coffread.c (coff_symfile_read): Don't call sort_symtab_syms.
207         * dbxread.c (dbx_psymtab_to_symtab_1): Ditto.
208         * dwarf2read.c (psymtab_to_symtab_1): Ditto.
209         * dwarfread.c (psymtab_to_symtab_1): Ditto.
210         * hpread.c (hpread_psymtab_to_symtab_1): Ditto.
211         * mdebugread.c (psymtab_to_symtab_1): Ditto.
212         * xcoffread.c (xcoff_psymtab_to_symtab_1): Ditto.
213
214 2003-06-11  Jeff Johnston  <jjohnstn@redhat.com>
215
216         * ia64-tdep.c (ia64_gdbarch_init): Set number of long double 
217         bits to 128.
218
219 2003-06-11  Andrew Cagney  <cagney@redhat.com>
220
221         * gdbarch.sh (DEPRECATED_REGISTER_CONVERTIBLE): Deprecate
222         REGISTER_CONVERTIBLE.
223         (DEPRECATED_REGISTER_CONVERT_TO_VIRTUAL): Same.
224         (DEPRECATED_REGISTER_CONVERT_TO_RAW): Same, make "from" constant.
225         * gdbarch.h, gdbarch.c: Re-generate.
226         * arch-utils.h (deprecated_register_convertible_not): Rename
227         generic_register_convertible_not.
228         * arch-utils.c (deprecated_register_convertible_not): Rename
229         generic_register_convertible.
230         (legacy_convert_register_p, legacy_register_to_value): Update.
231         * sh-tdep.c (sh64_push_arguments): Update.
232         * m68klinux-tdep.c (m68k_linux_extract_return_value): Update.
233         * config/m68k/tm-delta68.h (DEPRECATED_EXTRACT_RETURN_VALUE): Update.
234         * m68klinux-tdep.c (m68k_linux_store_return_value): Update.
235         * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Update.
236         * arch-utils.c (legacy_value_to_register): Update.
237         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
238         (rs6000_register_convert_to_raw): Make parameter "from" const.
239         * mips-tdep.c (mips_gdbarch_init): Update.
240         (mips_register_convert_to_raw): Make  parameter"virt_buf" const.
241         * infcmd.c (default_print_registers_info): Update.
242         * ia64-tdep.c (ia64_gdbarch_init): Update.
243         (ia64_register_convert_to_raw): Make parameter "from" const.
244         * i386-tdep.c (i386_gdbarch_init): Update.
245         (i386_register_convert_to_raw): Update.
246
247 2003-06-11  Andrew Cagney  <cagney@redhat.com>
248
249         * remote-fileio.c: Include "remote-fileio.h".
250         * Makefile.in (remote-fileio.o): Update dependencies.
251         (remote_fileio_h): Fix typo.
252
253 2003-06-11  Andrew Cagney  <cagney@redhat.com>
254
255         * xstormy16-tdep.c (xstormy16_push_return_address): Make static.
256         (xstormy16_save_dummy_frame_tos): Make static.
257         (_initialize_xstormy16_tdep): Add declaration.
258         * vax-tdep.c (_initialize_vax_tdep): Add declaration.
259         * v850-tdep.c: Make local functions static.
260         (_initialize_v850_tdep): Add declaration.
261         * sparc-tdep.c: Make local functions static.
262         (_initialize_sparc_tdep): Add declaration.
263         * sh-tdep.c: Make local functions static.
264         (_initialize_sh_tdep): Add declaration.
265         * sh3-rom.c (_initialize_sh3_rom): Add declaration.
266         * s390-tdep.c: Make local functions static.
267         (_initialize_s390_tdep): Add declaration.
268         * dbxread.c (find_stab_function_addr): Make static.
269         * ppc-bdm.c (_initialize_bdm_ppc): Add declaration.
270         * ocd.c (_initialize_remote_ocd): Add declaration.
271         * dink32-rom.c (_initialize_dink32_rom): Add declaration.
272         * ppcbug-rom.c (_initialize_ppcbug_rom): Add declaration.
273         * ns32k-tdep.c (_initialize_ns32k_tdep): Add declaration.
274         * ns32knbsd-tdep.c (_initialize_ns32knbsd_tdep): Add declaration.
275         * mips-tdep.c (_initialize_mips_tdep): Add declaration.
276         * remote-array.c (_initialize_array): Add declaration.
277         (_initialize_remote_monitors): Add declaration.
278         * remote-mips.c: Make local functions static.
279         (_initialize_remote_mips): Add declaration.
280         * mcore-tdep.c: Make all local functions static.
281         (_initialize_mcore_tdep): Add declaration.
282         * dbug-rom.c (_initialize_dbug_rom): Add declaration.
283         * abug-rom.c (_initialize_abug_rom): Add declaration.
284         * rom68k-rom.c (_initialize_rom68k): Add declaration.
285         * cpu32bug-rom.c (_initialize_cpu32bug_rom): Add declaration.
286         * m68k-tdep.c (_initialize_m68k_tdep): Add declaration.
287         * remote-est.c (_initialize_est): Add declaration.
288         * m68hc11-tdep.c (_initialize_m68hc11_tdep): Add declaration.
289         (m68hc11_call_dummy_address): Make static.
290         * ia64-tdep.c: Make local functions static.
291         (_initialize_ia64_tdep): Add declaration.
292         * solib-legacy.c (_initialize_svr4_lm): Add declaration.
293         * monitor.c (monitor_wait_filter): Make static.
294         (_initialize_remote_monitors): Add declaration.
295         * remote-hms.c (_initialize_remote_hms): Add declaration.
296         * remote-e7000.c (fetch_regs_from_dump): Make static.
297         (expect_n): Make static.
298         (_initialize_remote_e7000): Add declaration.
299         * ser-e7kpc.c: Always include "defs.h".
300         (_initialize_ser_e7000pc): Add declaration.
301         * h8300-tdep.c (_initialize_h8300_tdep): Add declaration.
302         * cris-tdep.c: Make all but one function static.
303         (_initialize_cris_tdep): Add declaration.
304         * solib-svr4.c (_initialize_svr4_solib): Add declaration.
305         * solib.c (update_solib_list): Make static.
306         (_initialize_solib): Add declaration.
307         * avr-tdep.c (avr_breakpoint_from_pc): Make static.
308         (_initialize_avr_tdep): Add declaration.
309         * remote-rdi.c (voiddummy): Make static.
310         (_initialize_remote_rdi): Add declaration.
311         * arm-tdep.c (_initialize_arm_tdep): Add declaration.
312         * remote-rdp.c (send_rdp): Make static.
313         (_initialize_remote_rdp): Add declaration.
314         * alpha-tdep.c (_initialize_alpha_tdep): Add declaration.
315
316 2003-06-11  Corinna Vinschen  <vinschen@redhat.com>
317
318         * remote-fileio.c: Make ari happy.
319
320 2003-06-10  J. Brobecker  <brobecker@gnat.com>
321
322         * rs6000-nat.c (child_xfer_memory): Compute the right address when
323         fetching the trailing bytes of the buffer we are about to write.
324
325 2003-06-10  Andrew Cagney  <cagney@redhat.com>
326
327         * remote-fileio.h (REMOTE_FILEIO_H): Replace FILEIO_H.
328         * Makefile.in (remote-fileio.o): Update dependencies.
329         * remote-fileio.c: Include "gdb_wait.h" and "gdb_stat.h".  Do not
330         include <setjmp.h>, or <sys/types.h> conditional on USG.
331         (remote_fio_jmp_buf): Delete global variable.
332
333 2003-06-10  Corinna Vinschen  <vinschen@redhat.com>
334             Martin M. Hunt  <hunt@redhat.com>
335
336         * Makefile.in (REMOTE_OBS): Add remote-fileio.o
337         (SFILES): Add remote-fileio.c.
338         Add dependencies for building remote-fileio.o.  Add remote-fileio.h to
339         dependencies for building remote.o.
340         * remote-fileio.c: New file implementing the remote File-I/O protocol.
341         * remote-fileio.h: New header file defining remote File-I/O interface.
342         * remote.c (remote_write_bytes, remote_read_bytes): Remove  
343         static storage class.
344         (remote_wait, remote_async_wait): Call remote_fileio_request() on
345         'F' packet.
346         (_initialize_remote): Call initialize_remote_fileio().
347         * remote.h: Declare remote_write_bytes() and remote_read_bytes().
348         * defs.h: Declare gdb_stdin, gdb_stdtargerr and gdb_stdtargin.
349         * main.c: New ui_file gdb_stdin, gdb_stdtargerr and gdb_stdtargin.
350         (captured_main): Initialize new ui_files.
351         * ui-file.c: Add read and fgets input functions.
352         (ui_file_new): set ui_file_fputs and ui_file_read to null functions.
353         (null_file_read): New function.
354         (ui_file_read): New function.
355         (set_ui_file_read): New function.
356         (stdio_file_read): New function.
357         * ui-file.h: New type ui_file_read_ftype.
358         (set_ui_file_read): Declare.
359         (ui_file_read): Declare.
360
361 2003-06-09  Andrew Cagney  <cagney@redhat.com>
362
363         * frame.h (deprecated_unwind_get_saved_register): Rename
364         generic_unwind_get_saved_register, update comments.
365         * mips-tdep.c (mips_get_saved_register): Update.
366         * frame.c (deprecated_unwind_get_saved_register): Update.
367
368 2003-06-09  Andrew Cagney  <cagney@redhat.com>
369
370         * vax-tdep.c (vax_frame_locals_address): Delete function.
371         (vax_gdbarch_init): Do not set frame_locals_address.
372         * m68hc11-tdep.c (m68hc11_frame_locals_address): Delete function.
373         (m68hc11_gdbarch_init): Do not set frame_locals_address.
374         * s390-tdep.c (s390_frame_args_address): Delete function.
375         (s390_gdbarch_init): Do not set frame_args_address or
376         frame_locals_address.
377         * ns32k-tdep.c (ns32k_frame_locals_address): Delete.
378         (ns32k_gdbarch_init): Do not set frame_locals_address.
379         * hppa-tdep.c (hppa_frame_args_address): Delete function.
380         (hppa_frame_locals_address): Delete function.
381         (hppa_gdbarch_init): Do not set frame_args_address, or
382         frame_locals_address.
383         * arm-tdep.c (arm_frame_args_address): Delete.
384         (arm_frame_locals_address): Delete.
385         (arm_gdbarch_init): Do not set frame_args_address, or
386         frame_locals_address.
387
388 2003-06-09  Andrew Cagney  <cagney@redhat.com>
389
390         * gdbarch.sh (FRAME_NUM_ARGS): Change to function with predicate.
391         * gdbarch.h, gdbarch.c: Re-generate.
392         * arch-utils.h (frame_num_args_unknown): Delete both declarations.
393         * arch-utils.c (frame_num_args_unknown): Delete function.
394         * stack.c (print_args_stub): Use FRAME_NUM_ARGS_P.
395         (frame_info): Use FRAME_NUM_ARGS_P.
396         * arm-tdep.c (arm_frame_num_args): Delete function.
397         (arm_gdbarch_init): Do not set frame_num_args.
398         * config/pa/tm-hppa64.h (FRAME_NUM_ARGS): Delete.
399         * hppa-tdep.c (hppa_frame_num_args): Delete function.
400         (hppa_gdbarch_init): Do not set frame_num_args.
401         * config/sparc/tm-sparc.h (FRAME_NUM_ARGS): Delete.
402         * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
403         frame_num_args to default frame_num_args_unknown.
404         * v850-tdep.c (v850_gdbarch_init): Ditto.
405         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
406         * sh-tdep.c (sh_gdbarch_init): Ditto.
407         * s390-tdep.c (s390_gdbarch_init): Ditto.
408         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
409         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
410         * mips-tdep.c (mips_gdbarch_init): Ditto.
411         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
412         * m68k-tdep.c (m68k_gdbarch_init): Ditto.
413         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
414         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
415         * i386-tdep.c (i386_gdbarch_init): Ditto.
416         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
417         * frv-tdep.c (frv_gdbarch_init): Ditto.
418         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
419         * cris-tdep.c (cris_gdbarch_init): Ditto.
420         * avr-tdep.c (avr_gdbarch_init): Ditto.
421         * alpha-tdep.c (alpha_gdbarch_init): Ditto.
422
423 2003-06-09  Andrew Cagney  <cagney@redhat.com>
424
425         * printcmd.c (print_frame_nameless_args): Moved to "stack.c".
426         (print_frame_args): Moved to "stack.c".
427         * stack.c: Include "gdb_assert.h".
428         (print_frame_nameless_args): Moved from "printcmd.c", made static.
429         (print_frame_args): Moved from "printcmd.c".
430         * frame.h (print_frame_args): Delete declaration.
431         * Makefile.in (stack.o): Update dependencies.
432
433 2003-06-08  Andrew Cagney  <cagney@redhat.com>
434
435         * frame.c (get_prev_frame): Remove reference to
436         frame_args_address_correct in comments.
437         * frame-base.c (default_frame_args_address): Delete code
438         conditional on FRAME_ARGS_ADDRESS_CORRECT.
439         * vax-tdep.c (vax_frame_args_address_correct): Delete.
440         (vax_frame_args_address): Merge in vax_frame_args_address_correct.
441         * config/vax/tm-vax.h (FRAME_ARGS_ADDRESS_CORRECT): Delete
442         (vax_frame_args_address_correct): Delete declaration.
443
444 2003-06-08  Andrew Cagney  <cagney@redhat.com>
445
446         * gdbarch.sh (UNWIND_SP): Add.
447         * gdbarch.h, gdbarch.c: Re-generate.
448         * frame.c (frame_sp_unwind): New function.
449         (get_frame_sp): New function.
450         * frame.h (get_frame_sp, frame_sp_unwind): Declare.
451         * regcache.c (read_sp): Rewrite, try each of TARGET_READ_SP,
452         gdbarch_unwind_sp and SP_REGNUM when looking for the SP register
453         value.
454         * d10v-tdep.c (d10v_unwind_sp): Replace d10v_read_sp.
455         (d10v_gdbarch_init): Set unwind_sp instead of read_sp.
456
457 2003-06-08  Andrew Cagney  <cagney@redhat.com>
458
459         Deprecate BIG_REMOTE_BREAKPOINT, LITTLE_REMOTE_BREAKPOINT and
460         REMOTE_BREAKPOINT.
461         * remote.c: Update.
462         * config/sh/tm-sh.h (DEPRECATED_BIG_REMOTE_BREAKPOINT): Update.
463         (DEPRECATED_LITTLE_REMOTE_BREAKPOINT): Update.
464         * config/m68k/tm-sun3.h: Update.
465         * config/m68k/tm-m68klynx.h: Update.
466         * config/h8300/tm-h8300.h (DEPRECATED_REMOTE_BREAKPOINT): Update.
467
468         * trad-frame.h (struct trad_frame_saved_reg): Rename "struct
469         trad_frame".  Update comments.
470         * d10v-tdep.c (struct d10v_unwind_cache): Update.
471         * trad-frame.c (trad_frame_alloc_saved_regs): Update.
472         (trad_frame_register_value, trad_frame_prev_register): Update.
473
474 2003-06-08  Andrew Cagney  <cagney@redhat.com>
475
476         * acinclude.m4 (gcc_AC_CHECK_DECL, (gcc_AC_CHECK_DECL): Stolen
477         from GCC's acinclude.m4.
478         * configure.in: Check for getopt's delcaration.
479         * aclocal.m4, config.in, configure: Re-generate.        
480         * main.c (error_init): Delete declaration.
481         * defs.h (error_init): Declare.
482         * rs6000-tdep.c (rs6000_fetch_pointer_argument): Make static.
483         (rs6000_convert_from_func_ptr_addr): Make static.
484         (_initialize_rs6000_tdep): Add declaration.
485         * cli/cli-cmds.c (dont_repeat): Delete declaration.
486         (show_commands, set_verbose, show_history): Delete declaration.
487         * top.h (set_verbose): Add declaration.
488         (show_history, set_history, show_commands): Add declaration.
489         (do_restore_instream_cleanup): Add declaration.
490         * objc-lang.c (specialcmp): Make static.
491         (print_object_command): Make static.
492         (find_objc_msgsend): Make static.
493         (find_objc_msgcall_submethod_helper): Make static.
494         (find_objc_msgcall_submethod): Make static.
495         (_initialize_objc_language): Add declaration.
496         (find_implementation_from_class): Make static.
497         (find_implementation): Make static.
498         * objc-exp.y (yylex): Delete lookup_struct_typedef declaration.
499         * objc-lang.h (lookup_struct_typedef): Add declaration.
500         * cli/cli-interp.c (_initialize_cli_interp): Add declaration.
501         * cli/cli-script.c (clear_hook_in_cleanup): Make static.
502         (do_restore_user_call_depth): Make static.
503         (do_restore_instream_cleanup): Delete declaration.
504         (dont_repeat): Delete declaration.
505         * cli/cli-decode.c (add_abbrev_cmd): Delete function.
506         * cli/cli-dump.c (_initialize_cli_dump): Add declaration.
507         * reggroups.c (_initialize_reggroup): Add declaration.
508         * cp-support.c (_initialize_cp_support): Add declaration.
509         * cp-abi.c (_initialize_cp_abi): Add declaration.
510         * hpacc-abi.c (_initialize_hpacc_abi): Add declaration.
511         * gnu-v3-abi.c (gnuv3_baseclass_offset): Make static.
512         (_initialize_gnu_v3_abi): Add declaration.
513         * gnu-v2-abi.c (gnuv2_value_rtti_type): Make static.
514         (_initialize_gnu_v2_abi): Add declaration.
515         * frame-base.c (_initialize_frame_base): Add declaration.
516         * doublest.c (floatformat_from_length): Make static.
517         * frame-unwind.c (_initialize_frame_unwind): Add declaration.
518         * frame.c (create_sentinel_frame): Make static.
519         (_initialize_frame): Add declaration.
520         * top.c (do_catch_errors): Make static.
521         (gdb_rl_operate_and_get_next_completion): Make static.
522         * typeprint.c: Include "typeprint.h".
523         * sentinel-frame.c (sentinel_frame_prev_register): Make static.
524         (sentinel_frame_this_id): Make static.
525         * p-valprint.c (_initialize_pascal_valprint): Add declaration.
526         * ui-out.c (make_cleanup_ui_out_begin_end): Delete function.
527         * dwarf2-frame.c (dwarf2_frame_cache): Make static.
528         * p-exp.y (push_current_type, pop_current_type): ISO C declaration.
529         * dwarf2expr.h (dwarf_expr_context): ISO C declaration.
530         * maint.c (maintenance_print_architecture): Make static.
531         * signals/signals.c (_initialize_signals): Add declaration.
532         * std-regs.c (_initialize_frame_reg): Add declaration.
533         * jv-exp.y (push_variable): ISO C definition.
534         (push_qualified_expression_name): Ditto.
535         * memattr.c (_initialize_mem): Add declaration.
536         * remote.c (remote_check_watch_resources): Make static.
537         (remote_stopped_by_watchpoint): Make static.
538         (remote_stopped_data_address): Make static.
539         * d10v-tdep.c (nr_dmap_regs): Make static.
540         (a0_regnum): Make static.
541         (d10v_frame_unwind_cache): Make static.
542         (d10v_frame_p): Make static.
543         * osabi.c (show_osabi): Make static.
544         (_initialize_gdb_osabi): Add extern declaration.
545         * gdbtypes.c (make_qualified_type): Make static.
546         (safe_parse_type): Make static.
547         * macrocmd.c (_initialize_macrocmd): Add extern declaration.
548         * macrotab.c (macro_bcache_free): Make static.
549         * interps.c (interp_set_quiet): Make static.
550         (interpreter_exec_cmd): Make static.
551         * stack.h (select_frame_command): New file.
552         * stack.c: Include "stack.h".
553         (select_frame_command_wrapper): Delete function.
554         (select_frame_command): Make global.
555         * infcall.c: Include "infcall.h".
556         * linespec.c: Include "linespec.h".
557         * symfile.c (sections_overlap): Make static.
558         * cp-support.h (cp_initialize_namespace): ISO C declaration.
559         * charset.c (_initialize_charset): Add missing prototype.
560         * regcache.c (init_legacy_regcache_descr): Make static.
561         (do_regcache_xfree): Make static.
562         (regcache_xfer_part): Make static.
563         (_initialize_regcache): Add missing prototype.
564         * breakpoint.c (parse_breakpoint_sals): Make static.
565         (breakpoint_sals_to_pc): Make static.
566         * interps.h (clear_interpreter_hooks): ISO C declaration.
567         * Makefile.in (stack_h): Define.
568         (stack.o, typeprint.o, mi-main.o): Update dependencies.
569         (mi-cmd-stack.o, infcall.o, linespec.o): Update dependencies.
570
571 2003-06-08  Andrew Cagney  <cagney@redhat.com>
572
573         * Makefile.in (d10v-tdep.o): Update dependencies.
574         (SFILES): Add trad-frame.c.
575         (trad_frame_h): Define.
576         (COMMON_OBS): Add trad-frame.o.
577         (trad-frame.o): Specify dependencies.
578         * d10v-tdep.c: Include "trad-frame.h".
579         (saved_regs_unwinder): Delete function.
580         (d10v_frame_prev_register): Use trad_frame_prev_register.
581         (struct d10v_unwind_cache): Change type of "saved_regs" to "struct
582         trad_frame", delete "regs" and "prev_sp".
583         (prologue_find_regs): Use trad-frame.
584         * trad-frame.h, trad-frame.c: New files.
585
586 2003-06-08  Mark Kettenis  <kettenis@gnu.org>
587
588         * dwarf2cfi.c, dwarf2cfi.h: Remove.
589
590 2003-06-07  Adam Fedor  <fedor@gnu.org>
591
592         * gdb/objc-lang.c (FETCH_ARGUMENT): Remove macro.
593         (OBJC_FETCH_POINTER_ARGUMENT): Shorthand macro for
594         using FETCH_POINTER_ARGUMENT with Objective-C method arguments.
595         (find_implementation, resolve_msgsend, resolve_msgsend_stret,
596         resolve_msgsend_super, resolve_msgsend_super_stret): 
597         Use it.
598
599 2003-06-07  Andrew Cagney  <cagney@redhat.com>
600
601         * symfile.h: Re-indent, clean up comments.
602
603 2003-06-07  Andrew Cagney  <cagney@redhat.com>
604
605         * inferior.h (deprecated_write_sp): Replace
606         generic_target_write_sp.
607         * regcache.c (deprecated_write_sp): Replace
608         generic_target_write_sp.
609         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
610         * vax-tdep.c (vax_gdbarch_init): Update.
611         * v850-tdep.c (v850_gdbarch_init): Update.
612         * sparc-tdep.c (sparc_gdbarch_init): Update.
613         * sh-tdep.c (sh_gdbarch_init): Update.
614         * s390-tdep.c (s390_gdbarch_init): Update.
615         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
616         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
617         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
618         * mcore-tdep.c (mcore_gdbarch_init): Update.
619         * m68k-tdep.c (m68k_gdbarch_init): Update.
620         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
621         * ia64-tdep.c (ia64_gdbarch_init): Update.
622         * h8300-tdep.c (h8300_gdbarch_init): Update.
623         * frv-tdep.c (frv_gdbarch_init): Update.
624         * cris-tdep.c (cris_gdbarch_init): Update.
625         * config/pa/tm-hppa.h (DEPRECATED_DUMMY_WRITE_SP): Update.
626
627 2003-06-07  Andrew Cagney  <cagney@redhat.com>
628
629         * dwarf2-frame.c (dwarf2_frame_cache): Add comments on PC_REGNUM.
630         Assert that PC_REGNUM is valid.
631         (dwarf2_frame_prev_register): Add comments on SP_REGNUM.
632
633 2003-06-07  Andrew Cagney  <cagney@redhat.com>
634
635         * gdbarch.sh (TARGET_READ_SP): Add predicate, delete default.
636         * gdbarch.h, gdbarch.c: Regenerate.
637         * mn10300-tdep.c: Include "gdb_assert.h".
638         (mn10300_read_fp): New function.
639         (mn10300_gdbarch_init): Set deprecated_target_read_fp to
640         mn10300_read_fp.  Do not set read_sp to generic_target_read_sp.
641         * ia64-tdep.c: Include "gdb_assert.h".
642         (ia64_read_fp): New function.
643         (ia64_gdbarch_init): Set deprecated_target_read_fp to
644         ia64_read_sp.  Do not set read_sp to generic_target_read_sp.
645         * regcache.c (generic_target_read_sp): Delete function.
646         (read_sp): Try TARGET_READ_SP and SP_REGNUM for the SP register.
647         * inferior.h (generic_target_read_sp): Delete declaration.
648         * frv-tdep.c (frv_gdbarch_init): Do not set read_sp to
649         generic_target_read_sp.
650         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
651         * sparc-tdep.c (sparc_gdbarch_init): Ditto
652         * sh-tdep.c (sh_gdbarch_init): Ditto.
653         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
654         * Makefile.in (mn10300-tdep.o, ia64-tdep.o): Update dependencies.
655
656 2003-06-07  Andrew Cagney  <cagney@redhat.com>
657
658         * gdbarch.sh: Comment each field of startup_gdbarch.
659         * gdbarch.h, gdbarch.c: Re-generate.
660
661 2003-06-07  Andrew Cagney  <cagney@redhat.com>
662
663         * gdbarch.sh (TARGET_READ_PC): Add predicate, remove default.
664         * gdbarch.h, gdbarch.c: Re-generate.
665         * regcache.c: Update comments on read_pc et.al.
666         (generic_target_read_pc): Delete function.
667         (read_pc_pid): Try TARGET_READ_PC and PC_REGNUM for a PC register.
668         * inferior.h (generic_target_read_pc): Delete declaration.
669         * frv-tdep.c (frv_gdbarch_init): Do not set read_pc to
670         generic_target_read_pc.
671         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
672         * sh-tdep.c (sh_gdbarch_init): Ditto.
673         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
674         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
675         
676 2003-06-07  Andrew Cagney  <cagney@redhat.com>
677
678         * elfread.c (elf_symtab_read): Replace "special_local_sym_p" and
679         "index" with "special_local_sect".  Use strcmp instead of STREQ.
680         Append period to coments.
681
682 2003-06-06  Mark Mitchell  <mark@codesourcery.com>
683
684         * elfread.c (elf_symtab_read): Avoid use of SECT_OFF_MAX.
685         (elfstab_offset_sections): Likewise.
686         * gdb-stabs.h (stab_section_info): Likewise.
687         * i386-interix-tdep.c (pei_adjust_objfile_offsets): Likewise.
688         * objfiles.c (objfile_relocate): Likewise.
689         * pa64solib.c (pa64_solib_add_solib_objfile): Likewise.
690         * remote.c (get_offsets): Likewise.
691         (remote_cisco_objfile_relocate): Likewise.
692         * somread.c (som_symfile_offsets): Likewise.
693         * symfile.c (alloc_section_addr_info): New function.
694         (build_section_addr_info_from_section_tab): Use it.
695         (free_section_addr_info): Adjust.
696         (default_symfile_offsets): Avoid use of SECT_OFF_MAX.
697         (syms_from_objfile): Allocate local_addr dynamically.
698         (symbol_file_add_with_addrs_or_offsets): Allocate orig_addrs
699         dynamically.
700         (add_symbol_file_command): Allocate sect_opts dynamically.
701         (reread_symbols): Avoid use of SECT_OFF_MAX.
702         * symfile.h (section_addr_info): Do not use MAX_SECTIONS.
703         (alloc_section_addr_info): Declare it.
704         * symtab.h (SIZEOF_SECTION_OFFSETS): Remove.
705         * win32-nat.c (solib_symbols_add): Allocate section_addrs
706         dynamically.
707         * xcoffread.c (xcoff_symfile_offsets): Avoid use of SECT_OFF_MAX.
708         
709 2003-06-06  Andrew Cagney  <cagney@redhat.com>
710
711         * d10v-tdep.c (struct d10v_unwind_cache): Delete "return_pc".
712         (d10v_frame_unwind_cache): Do not set "return_pc".
713
714 2003-06-06  Michael Snyder  <msnyder@redhat.com>
715
716         * h8300-tdep.c: Make tidy (long lines).
717
718 2003-06-06  Michal Ludvig  <mludvig@suse.cz>
719
720         * x86-64-tdep.c (x86_64_fill_fxsave): Pass correct regnums 
721         to regcache_collect().
722
723 2003-06-05  J. Brobecker  <brobecker@gnat.com>
724
725         * hppa-hpux-tdep.c (hppa_hpux_init_abi): New function, setting
726         pc_in_sigtramp multiarch method.
727         (hppa_hpux_som_init_abi): Use it.
728         (hppa_hpux_elf_init_abi): Likewise.
729         * config/pa/tm-hppah.h (PC_IN_SIGTRAMP): Remove, now that this
730         macro has been multiarched.
731         * config/pa/tm-hppa64.h (PC_IN_SIGTRAMP): Temporarily set this
732         macro here, as hppa64 isn't multiarched yet.
733
734 2003-06-05  Andrew Cagney  <cagney@redhat.com>
735
736         * Makefile.in (value_h): Add $(frame_h).
737         * value.h: Include "frame.h".
738         (struct value): Replace "frame_addr" with "frame_id".
739         (VALUE_FRAME_ID): Replace VALUE_FRAME.
740         * values.c (allocate_value): Use VALUE_FRAME_ID.
741         (value_copy): Use VALUE_FRAME_ID.
742         * findvar.c (value_from_register): Use VALUE_FRAME_ID.
743         * valops.c (value_assign): Update.  Use frame_find_by_id.
744
745 2003-06-05  Michal Ludvig  <mludvig@suse.cz>
746
747         * x86-64-tdep.c (x86_64_push_arguments): Don't clear offset
748         in each pass.
749
750 2003-06-05  Jeff Johnston  <jjohnstn@redhat.com>
751
752         * thread-db.c (check_event): For create/death event breakpoints,
753         loop through all messages to ensure that we read the message
754         corresponding to the breakpoint we are at.
755
756 2003-06-04  Michael Snyder  <msnyder@redhat.com>
757
758         * h8300-tdep.c (h8300_gdbarch_init): Add h8300hn, h8300sn.
759
760 2003-06-04  Mark Kettenis  <kettenis@gnu.org>
761
762         * dwarf2-frame.c (struct comp_unit): Add member `dbase'.
763         (read_encoded_value): Handle DW_EH_PE_datarel encoding.
764         (dwarf2_build_frame_info): Set base for DW_EH_PE_datarel encodings
765         when handling .eh_frame sections.
766
767 2003-06-04  J. Brobecker  <brobecker@gnat.com>
768
769         * config/pa/nm-hppah.h (PREPARE_TO_PROCEED): Use the generic
770         prepare_to_proceed procedure instead of the hppa-specific one.
771         * hppa-tdep.c (hppa_prepare_to_proceed): Remove, no longer used.
772
773 2003-06-04  Jeff Johnston  <jjohnstn@redhat.com>
774  
775         * acconfig.h: Add HAVE_TKILL_SYSCALL definition check.
776         * config.in: Regenerated.
777         * configure.in: Add test for syscall function and check for
778         __NR_tkill macro in <syscall.h> to set HAVE_TKILL_SYSCALL.
779         * configure: Regenerated.
780         * lin-lwp.c [HAVE_TKILL_SYSCALL]: Include <unistd.h> and
781         <sys/syscall.h>.
782         (kill_lwp): New function that uses tkill syscall or
783         uses kill, depending on whether threading model is nptl or not.
784         All callers of kill() changed to use kill_lwp().
785         (lin_lwp_wait): Make special check when WIFEXITED occurs to
786         see if all threads have already exited in the nptl model.
787         (stop_and_resume_callback): New callback function used by the
788         lin_lwp_wait thread exit handling code.
789         (stop_wait_callback): Check for threads already having exited and
790         delete such threads fromt the lwp list when discovered.
791         (stop_callback): Don't assert retcode of kill call.
792  
793         Roland McGrath  <roland@redhat.com>
794         * i386-linux-nat.c (ps_get_thread_area): New function needed by
795         nptl libthread_db.
796
797 2003-06-03  Richard Henderson  <rth@redhat.com>
798
799         * alpha-tdep.c (alpha_next_pc): Use alpha_read_insn.
800         (alpha_sigtramp_frame_this_id): Use get_frame_memory.
801         (alpha_sigtramp_frame_prev_register): Likewise.
802         (alpha_heuristic_frame_prev_register): Likewise.
803         * alpha-mdebug-tdep.c (alpha_mdebug_frame_prev_register): Likewise.
804
805         * alpha-mdebug-tdep.c (alpha_mdebug_after_prologue): Use 
806         alpha-specific register id names.
807         (alpha_mdebug_frame_unwind_cache): Likewise.
808         (alpha_mdebug_frame_prev_register): Likewise.
809
810 2003-06-03  Richard Henderson  <rth@redhat.com>
811
812         * alpha-tdep.c (alpha_dwarf2_init_abi): New.
813         * alpha-tdep.h (alpha_dwarf2_init_abi): Declare it.
814         * alpha-linux-tdep.c (alpha_linux_init_abi): Use it.
815         * alphafbsd-tdep.c (alphafbsd_init_abi): Register dwarf2 and mdebug
816         unwind routines.
817         * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
818         * config/alpha/fbsd.mt (TDEPFILES): Add alpha-mdebug-tdep.o.
819         * config/alpha/nbsd.mt (TDEPFILES): Likewise.
820
821         * alpha-linux-tdep.c: Remove unnecessary includes.
822         * Makefile.in (alpha-linux-tdep.o): Update.
823
824 2003-06-03  Richard Henderson  <rth@redhat.com>
825
826         * alphabsd-tdep.c (alphabsd_supply_fpreg): Fix typo last change.
827         (alphabsd_fill_fpreg): Likewise.
828
829 2003-06-03  J. Brobecker  <brobecker@gnat.com>
830
831         * alphanbsd-tdep.c (alphanbsd_sigcontext_addr):  Replace
832         references to struct frame_info fields by calls to the equivalent
833         accessors. Necessary now that frame_info is opaque.
834
835 2003-06-03  J. Brobecker  <brobecker@gnat.com>
836
837         * alphanbsd-tdep.c (alphanbsd_skip_sigtramp_frame): Delete.
838         (alphanbsd_init_abi): Do not set skip_sigtramp_frame in tdep
839         structure, field no longer exists.
840
841 2003-06-03  J. Brobecker  <brobecker@gnat.com>
842
843         * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-mdebug-tdep.o.
844         * alpha-osf1-tdep.c (alpha_osf1_init_abi): Enable the mdebug module.
845
846 2003-06-03  J. Brobecker  <brobecker@gnat.com>
847
848         * alpha-osf1-tdep.c (alpha_osf1_sigcontext_addr): Replace
849         references to struct frame_info fields by calls to the equivalent
850         accessors. Necessary now that frame_info is opaque.
851
852 2003-06-03  J. Brobecker  <brobecker@gnat.com>
853
854         * alpha-osf1-tdep.c (alpha_osf1_skip_sigtramp_frame): Delete.
855         (alpha_osf1_init_abi): Do not set skip_sigtramp_frame in tdep
856         structure, field no longer exists.
857
858 2003-06-03  Theodore A. Roth  <troth@openavr.org>
859
860         * remote.c (init_remote_state): Compute sizeof_g_packet by 
861         accumulation of the size of all registers instead of blindly using
862         DEPRECATED_REGISTER_BYTES.
863
864 2003-06-03  Michael Snyder  <msnyder@redhat.com>
865
866         * config/h8300/tm-h8300.h (h8300sxmode): Declare.
867         * h8300-tdep.c (h8300_gdbarch_init): Set machine mode
868         for h8300sx.
869
870 2003-06-03  J. Brobecker  <brobecker@gnat.com>
871
872         * alpha-osf1-tdep.c (objfiles.h): #include, needed for symfile_objfile.
873         * Makefile.in (alpha-osf1-tdep.o): Update dependencies.
874
875 2003-06-03  Andrew Cagney  <cagney@redhat.com>
876
877         * sparc-tdep.c (sparc_convert_to_virtual): Delete function.
878         (sparc_convert_to_raw): Delete function.
879         (sparc_gdbarch_init): Do not set register_convert_to_raw or
880         register_convert_to_virtual.
881
882 2003-06-03  Jeff Johnston  <jjohnstn@redhat.com>
883
884         * thread-db.c (thread_db_mourn_inferior): Unpush thread target
885         layer if not dealing with a statically-linked threaded program.
886
887 2003-06-03  Kris Warkentin  <kewarken@qnx.com>
888
889         * solib.c (solib_open): Update comment to reflect actual search order.
890
891 2003-06-03  Andrew Cagney  <cagney@redhat.com>
892
893         * frame.c (get_frame_memory_signed): New function.
894         (get_frame_memory, get_frame_memory_unsigned): New function.
895         (get_frame_arch): New function.
896         * frame.h (get_frame_signed_memory, get_frame_arch): Declare.
897         (get_frame_memory, get_frame_unsigned_memory): Declare.
898         * d10v-tdep.c (d10v_frame_unwind_cache): Use
899         get_frame_memory_unsigned and get_frame_arch.
900         (d10v_frame_unwind_cache, saved_regs_unwinder): Ditto.
901
902 2003-06-03  Raoul Gough  <RaoulGough@yahoo.co.uk>
903
904         * MAINTAINERS (write after approval): Add myself.
905
906 2003-06-03  Jim Blandy  <jimb@redhat.com>
907
908         * s390-nat.c (supply_gregset, fill_gregset): On the s390x, the
909         elements of gregset_t are 64 bits each, but access registers
910         are still 32 bits, so they're packed two per gregset_t
911         element.  Unpack/pack them properly.
912
913 2003-06-02  David Carlton  <carlton@bactrian.org>
914
915         * linespec.c (find_methods): Break out code into
916         add_matching_methods and add_constructors.
917         (add_matching_methods): New.
918         (add_constructors): Ditto.
919
920 2003-06-02  Andrew Cagney  <cagney@redhat.com>
921
922         * sparc-tdep.c (sparc_print_registers): Delete call to
923         REGISTER_CONVERTIBLE.
924         (sparc_gdbarch_init): Do not set register_convertible.
925         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
926         * frv-tdep.c (frv_gdbarch_init): Ditto.
927         * cris-tdep.c (cris_gdbarch_init): Ditto.
928
929 2003-06-02  Elena Zannoni  <ezannoni@redhat.com>
930
931         * target.h (TARGET_SYMFILE_POSTREAD): Delete unused macro. 
932         * symfile.c (reread_symbols): Delete call to TARGET_SYMFILE_POSTREAD.
933         (syms_from_objfile): Ditto.
934
935 2003-06-03  Andreas Schwab  <schwab@suse.de>
936
937         * m68k-tdep.c (m68k_gdbarch_init): Use set_gdbarch_print_insn ...
938         (_initialize_m68k_tdep): ... instead of deprecated_tm_print_insn.
939
940 2003-06-02  Richard Henderson  <rth@redhat.com>
941
942         * alpha-tdep.c (alpha_register_reggroup_p): Zero is only
943         a member of all_reggroup.
944
945 2003-06-02  Richard Henderson  <rth@redhat.com>
946
947         * alpha-tdep.c (alpha_register_type): Change from _virtual_type.
948         (alpha_convert_flt_dbl, alpha_convert_dbl_flt): Remove.
949         (alpha_lds, alpha_sts): New.
950         (alpha_convert_register_p): Change from _register_convertible.
951         (alpha_register_to_value): Change from _convert_to_virtual; 
952         restructure and fail for type sizes other than 4 or 8.
953         (alpha_value_to_register): Similarly.
954         (alpha_extract_return_value): Use alpha_sts.
955         (alpha_store_return_value): Use alpha_lds.
956         (alpha_gdbarch_init): Update hooks.
957
958 2003-06-02  Richard Henderson  <rth@redhat.com>
959
960         * alpha-tdep.c (alpha_register_virtual_type): Use alpha-specific
961         regnum identifiers.
962         (alpha_sigtramp_register_address): Likewise.
963
964 2003-06-02  Richard Henderson  <rth@redhat.com>
965
966         * alpha-tdep.c (alpha_supply_int_regs, alpha_fill_int_regs): New.
967         (alpha_supply_fp_regs, alpha_fill_fp_regs): New.
968         * alpha-tdep.h: Declare them.
969
970         * alpha-nat.c (fetch_osf_core_registers): Constify core_reg_mapping.
971         Remove zerobuf.  Don't error on UNIQUE.
972         (fetch_elf_core_registers): Use alpha_supply_{int,fp}_regs.
973         (ALPHA_REGSET_UNIQUE): Provide default.
974         (supply_gregset): Use alpha_supply_int_regs.
975         (fill_gregset): Use alpha_fill_int_regs.
976         (supply_fpregset): Use alpha_supply_fp_regs.
977         (fill_fpregset): Use alpha_fill_fp_regs.
978         * alphabsd-tdep.c (NUM_GREGS, NUM_FPREGS): Remove.
979         (alphabsd_supply_reg): Use alpha_supply_int_regs.
980         (alphabsd_fill_reg): Use alpha_fill_int_regs.
981         (alphabsd_supply_fpreg): Use alpha_supply_fp_regs.
982         (alphabsd_fill_fpreg): Use alpha_fill_fp_regs.
983         * config/alpha/nm-linux.h (ALPHA_REGSET_UNIQUE): New.
984
985 2003-06-02  Richard Henderson  <rth@redhat.com>
986
987         * alpha-tdep.c (alpha_store_return_value): Avoid switch fallthru.
988
989         * alpha-tdep.c (alpha_extract_return_value): Use internal_error.
990         (alpha_store_return_value): Likewise.
991
992 2003-06-02  David Carlton  <carlton@math.stanford.edu>
993
994         * block.c (contained_in): Add 'const' to arguments.
995         (block_function): Ditto.
996         * block.h: Update declarations for block_function and
997         contained_in.
998
999 2003-06-02  David Carlton  <carlton@math.stanford.edu>
1000
1001         * objc-lang.c (find_imps): Delete unneeded variable 'sym_symtab'.
1002         * c-valprint.c (c_val_print): Delete unneeded variable 's'.
1003         * p-valprint.c (pascal_val_print): Ditto.
1004         * ada-lang.c (standard_lookup): Delete unneded variable 'symtab'.
1005
1006 2003-06-02  Richard Henderson  <rth@redhat.com>
1007
1008         * alpha-tdep.c (alpha_push_dummy_call): Use
1009         builtin_type_ieee_double_little instead of builtin_type_double.
1010
1011         * alpha-tdep.c (alpha_push_dummy_call): Handle ABI mandated 
1012         sign-extension of 32-bit values.
1013         (alpha_store_return_value): Similarly.
1014
1015         * alpha-tdep.c (alpha_push_dummy_call): Handle COMPLEX types.
1016         (alpha_extract_return_value): Likewise.
1017         (alpha_store_return_value): Likewise.
1018
1019         * alpha-tdep.c (alpha_extract_return_value): Handle IEEE Quad floats.
1020         (alpha_store_return_value): Error on IEEE Quad floats.
1021
1022         * alpha-tdep.c (alpha_extract_return_value): Convert to regcache.
1023         (alpha_extract_struct_value_address): Likewise.
1024         (alpha_store_return_value): Likewise.
1025         (alpha_store_struct_return): Remove.
1026         (alpha_gdbarch_init): Update hook registration to match.
1027
1028         * alpha-tdep.c (alpha_register_convert_to_virtual): Tidy use of
1029         deprecated interfaces; use ALPHA_REGISTER_SIZE instead of gdbarch
1030         macros where appropriate.
1031         (alpha_register_convert_to_raw): Similarly.  Use unpack_long.
1032         (alpha_convert_flt_dbl, alpha_convert_dbl_flt): New.
1033
1034         * alpha-tdep.c (alpha_register_virtual_type): Use void_data_ptr
1035         for SP, GP; void_func_ptr for PC; non-language-specific types
1036         for all others.
1037         * alpha-tdep.h (ALPHA_GP_REGNUM): New.
1038
1039 2003-06-02  Richard Henderson  <rth@redhat.com>
1040
1041         * top.h (lim_at_start): Declare.
1042         * main.c (captured_main): Set it.
1043         * top.c (lim_at_start): Define.
1044         (command_loop): Use it instead of &environ.
1045         * event-top.c (command_handler): Likewise.
1046
1047 2003-06-01  Jason Thorpe  <thorpej@wasabisystems.com>
1048
1049         * mipsnbsd-tdep.c: Update copyright years.
1050         (fetch_core_registers): Correct arguments to mipsnbsd_supply_fpreg.
1051
1052 2003-06-01  Richard Henderson  <rth@redhat.com>
1053
1054         * Makefile.in (ALLDEPFILES): Add alpha-mdebug-tdep.c.
1055         (alpha-linux-tdep.o): Update dependencies.
1056         (alpha-nat.o, alpha-tdep.o, alpha-mdebug-tdep.o): Likewise.
1057         * alpha-mdebug-tdep.c: Remove unneeded includes.
1058
1059 2003-06-01  Richard Henderson  <rth@redhat.com>
1060
1061         * alpha-tdep.c (alpha_register_reggroup_p): New.
1062         (alpha_gdbarch_init): Register it.
1063
1064 2003-06-02  Andrew Cagney  <cagney@redhat.com>
1065
1066         * dwarfread.c: Eliminate "register"
1067         (decode_die_type): Eliminate assignment within "if".
1068         (struct_type, decode_array_element_type): Ditto.
1069         (dwarf_read_array_type, read_tag_pointer_type): Ditto.
1070         (read_subroutine_type, enum_type, add_enum_psymbol): Ditto.
1071         (decode_modified_type, completedieinfo): Ditto.
1072         * block.c: Eliminate "register".
1073         (blockvector_for_pc_sect): Eliminate assignment within "if".
1074         * cp-support.h (struct symbol): Opaque declaration.
1075         * breakpoint.c (handle_gnu_v3_exceptions): Use xfree, not free.
1076
1077 2003-06-01  Richard Henderson  <rth@redhat.com>
1078
1079         * alpha-tdep.c (alpha_gdbarch_init): Use set_gdbarch_print_insn ...
1080         (_initialize_alpha_tdep): ... not deprecated_tm_print_insn.
1081
1082 2003-06-01  Adam Fedor  <fedor@gnu.org>
1083
1084         * gdbarch.sh (function_list): Add FETCH_POINTER_ARGUMENT.
1085         * gdbarch.[ch]: Regenerate.
1086         * hppa-tdep.c (hppa_fetch_pointer_argument): New function.
1087         (hppa_gdbarch_init): Set it in the gdbarch vector.
1088         * i386-tdep.c (i386_fetch_pointer_argument): New
1089         (i386_gdbarch_init): Set it into gdbarch.
1090         * rs6000-tdep.c (rs6000_fetch_pointer_argument): New.
1091         (rs6000_gdbarch_init): Set it in gdbarch.
1092         * sparc-tdep.c (sparc_fetch_pointer_argument): New
1093         (sparc_gdbarch_init): Set it in gdbarch.
1094
1095 2003-06-01  Andrew Cagney  <cagney@redhat.com>
1096
1097         * defs.h (extract_address): Delete declaration.
1098         * findvar.c (extract_address): Delete function.
1099         * xstormy16-tdep.c (xstormy16_extract_return_value): Replace
1100         extract_address with the inline equivalent,
1101         extract_unsigned_integer.
1102         (xstormy16_extract_struct_value_address): Ditto.
1103         (xstormy16_pointer_to_address): Ditto.
1104         * vax-tdep.c (vax_extract_struct_value_address): Ditto.
1105         * v850-tdep.c (v850_push_arguments): Ditto.
1106         (v850_extract_return_value): Ditto.
1107         (v850_extract_struct_value_address): Ditto.
1108         * sparcnbsd-tdep.c (sparcnbsd_get_longjmp_target_32): Ditto.
1109         (sparcnbsd_get_longjmp_target_64): Ditto.
1110         * sparc-tdep.c (sparc_frame_saved_pc): Ditto.
1111         (get_longjmp_target): Ditto.
1112         * sh-tdep.c (sh_extract_struct_value_address): Ditto.
1113         (sh64_extract_struct_value_address): Ditto.
1114         (sh_push_arguments): Ditto.
1115         (sh64_push_arguments): Ditto.
1116         * remote-vxsparc.c (vx_read_register): Ditto.
1117         * ppc-linux-tdep.c (ppc_linux_skip_trampoline_code): Ditto.
1118         * ns32k-tdep.c (ns32k_extract_struct_value_address): Ditto.
1119         * mn10300-tdep.c (mn10300_extract_struct_value_address): Ditto.
1120         * mipsv4-nat.c (get_longjmp_target): Ditto.
1121         * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Ditto.
1122         * mips-nat.c (get_longjmp_target): Ditto.
1123         * mips-linux-tdep.c (mips_linux_get_longjmp_target): Ditto.
1124         * mcore-tdep.c (mcore_extract_struct_value_address): Ditto.
1125         * m68k-tdep.c (m68k_get_longjmp_target): Ditto.
1126         * m68hc11-tdep.c (m68hc11_extract_struct_value_address): Ditto.
1127         * irix5-nat.c (get_longjmp_target): Ditto.
1128         * irix4-nat.c (get_longjmp_target): Ditto.
1129         * ia64-tdep.c (generic_elf_find_global_pointer): Ditto.
1130         (ia64_push_arguments): Ditto.
1131         * hpux-thread.c (hpux_thread_store_registers): Ditto.
1132         * h8300-tdep.c (h8300_push_arguments): Ditto.
1133         (h8300_store_return_value): Ditto.
1134         (h8300_extract_struct_value_address): Ditto.
1135         * frv-tdep.c (frv_extract_struct_value_address): Ditto.
1136         (frv_push_arguments): Ditto.
1137         * avr-tdep.c (avr_pointer_to_address): Ditto.
1138         (avr_push_arguments): Ditto.
1139         * arm-tdep.c (arm_push_dummy_call): Ditto.
1140         (arm_get_longjmp_target): Ditto.
1141         * arm-linux-tdep.c (arm_linux_push_arguments): Ditto.
1142         * alpha-tdep.c (alpha_extract_struct_value_address): Ditto.
1143         (alpha_get_longjmp_target): Ditto.
1144
1145         * solib-irix.c (extract_mips_address): Inline extract_address,
1146         replacing it with extract_signed_integer.
1147         * solib-svr4.c (SOLIB_EXTRACT_ADDRESS): Ditto.
1148         (LM_NAME, IGNORE_FIRST_LINK_MAP_ENTRY): Ditto.
1149         (first_link_map_member, open_symbol_file_object): Ditto.
1150         (svr4_fetch_objfile_link_map, svr4_fetch_objfile_link_map): Ditto.
1151         * solib-sunos.c (SOLIB_EXTRACT_ADDRESS): Ditto.
1152         (LM_NEXT, LM_NAME): Ditto.
1153
1154 2003-06-01  Richard Henderson  <rth@redhat.com>
1155
1156         * alpha-tdep.h (ALPHA_FP_REGNUM): Remove.
1157         * alpha-tdep.c (alpha_register_name): Remove vfp entry.
1158         (alpha_cannot_fetch_register): Remove ALPHA_FP_REGNUM.
1159         (alpha_cannot_store_register): Likewise.
1160         * alphabsd-nat.c (fetch_inferior_registers): Don't set FP_REGNUM.
1161         * alpha-nat.c (supply_gregset): Likewise.
1162         * alphanbsd-tdep.c (fetch_core_registers): Likewise.
1163
1164 2003-06-01  Andrew Cagney  <cagney@redhat.com>
1165
1166         * infcall.c (call_function_by_hand): Update comment on
1167         DEPRECATED_DUMMY_WRITE_SP.
1168
1169         * mips-tdep.c (mips_gdbarch_init): Do not set
1170         deprecated_dummy_write_sp.
1171         (mips_eabi_push_dummy_call): Set the SP register.
1172         (mips_o64_push_dummy_call): Set the SP register.
1173         (mips_o32_push_dummy_call): Set the SP register.
1174         (mips_n32n64_push_dummy_call): Set the SP register.
1175
1176 2003-06-01  Richard Henderson  <rth@redhat.com>
1177
1178         * alpha-nat.c (fetch_osf_core_registers): Use ALPHA_REGISTER_SIZE
1179         instead of ALPHA_MAX_REGISTER_RAW_SIZE.
1180         (supply_gregset): Likewise.
1181         * alpha-tdep.c (alpha_store_return_value): Likewise.
1182         (alpha_get_longjmp_target): Likewise.
1183         (alpha_register_name): Constify array.
1184         (alpha_gdbarch_init): Remove deprecated_fp_regnum,
1185         deprecated_register_size, deprecated_register_bytes,
1186         deprecated_max_register_raw_size, deprecated_max_register_virtual_size.
1187         * alpha-tdep.h (ALPHA_MAX_REGISTER_RAW_SIZE): Remove.
1188         (ALPHA_MAX_REGISTER_VIRTUAL_SIZE): Remove.
1189
1190 2003-06-01  Richard Henderson  <rth@redhat.com>
1191
1192         * alpha-tdep.c (alpha_push_dummy_call): Store sp.  Tidy copies
1193         from arg_reg_buffer to regcache to avoid double conversion.
1194
1195 2003-06-01  Mark Kettenis  <kettenis@gnu.org>
1196
1197         * i386-linux-nat.c (child_resume): Use I386_ESP_REGNUM instead of
1198         SP_REGNUM.
1199         * i386-linux-tdep.c (i386_linux_sigcontext_addr): Likewise.
1200         * i386bsd-tdep.c (i386bsd_sigcontext_addr): Likewise.
1201
1202 2003-06-01  Richard Henderson  <rth@redhat.com>
1203
1204         * dwarf2-frame.c (struct dwarf2_cie): Add saw_z_augmentation.
1205         (decode_frame_entry): Set it.  Skip FDE augmentation.
1206
1207 2003-06-01  Richard Henderson  <rth@redhat.com>
1208
1209         * dwarf2-frame.c (dwarf2_frame_cache): Handle retaddr_column
1210         not overlapping PC_REGNUM.
1211
1212 2003-06-01  Richard Henderson  <rth@redhat.com>
1213
1214         * alpha-tdep.c (alpha_push_dummy_call): Transmography from
1215         alpha_push_arguments.  Don't dump argument register data to
1216         the target stack.  Fix float and 128-bit long double semantics.
1217         Store $t12 and $ra as specified by the ABI.  Use regcache everywhere.
1218         (alpha_fix_call_dummy): Remove.
1219         (alpha_call_dummy_words): Remove.
1220         (alpha_gdbarch_init): Kill deprecated call hooks; add push_dummy_call.
1221
1222 2003-06-01  Richard Henderson  <rth@redhat.com>
1223
1224         * alpha-linux-tdep.c (alpha_linux_init_abi): Install dwarf2 unwinder.
1225
1226 2003-06-01  Andrew Cagney  <cagney@redhat.com>
1227
1228         * mips-tdep.c (is_mips16_addr): New function.
1229         (make_mips16_addr, unmake_mips16_addr): New functions.
1230         (pc_is_mips16, mips_fetch_instruction): Use.
1231         (gdb_print_insn_mips, mips_breakpoint_from_pc): Use.
1232         (gdb_print_insn_mips): Eliminate TM_PRINT_INSN_MACH.
1233         (mips_dump_tdep): Delete print of TM_PRINT_INSN_MACH,
1234         UNMAKE_MIPS16_ADDR, MAKE_MIPS16_ADDR, IS_MIPS16_ADDR and
1235         TARGET_MIPS.
1236         * config/mips/tm-mips.h: Update copyright.
1237         (TARGET_MIPS, TM_PRINT_INSN_MACH): Delete.
1238         (DEPRECATED_REGISTER_SIZE, DEPRECATED_REGISTER_BYTES): Delete.
1239         (IS_MIPS16_ADDR, MAKE_MIPS16_ADDR, UNMAKE_MIPS16_ADDR): Delete.
1240         * config/mips/tm-irix6.h (DEPRECATED_REGISTER_BYTES): Delete.
1241         (TM_PRINT_INSN_MACH): Delete.
1242         * config/mips/tm-irix5.h (DEPRECATED_REGISTER_BYTES): Delete.
1243
1244         * configure.tgt: Replace mips64*vr4xxx*el-*-elf*,
1245         mips64*vr4xxx*-*-elf*, mips64*vr4300*el-*-elf*,
1246         mips64*vr4300*-*-elf*, mips64*vr4100*el-*-elf*,
1247         mips64*vr4100*-*-elf*, mips64*vr5000*el-*-elf*, and
1248         mips64*vr5000*-*-elf* with mips64 mips64*vr*-*-elf*.  Delete
1249         mips*tx39*el*-elf*.  Map mips*-sony-* and mips64*-big-* onto
1250         mips64.  Map mips*-dec-*, mips*-big-*, mips*-little-*,
1251         mips*-*-riscos* and mips*-*-sysv* onto mips.
1252         * config/mips/mips64.mt: New file.
1253         * config/mips/mips.mt: New file.
1254         * config/mips/littlemips.mt: Delete file.
1255         * config/mips/decstation.mt: Delete file.
1256         * config/mips/vr4300el.mt: Delete file.
1257         * config/mips/vr5000el.mt: Delete file.
1258         * config/mips/vr5000.mt: Delete file.
1259         * config/mips/vr4100.mt: Delete file.
1260         * config/mips/vr4xxxel.mt: Delete file.
1261         * config/mips/vr4300.mt: Delete file.
1262         * config/mips/vr4xxx.mt: Delete file.
1263         * config/mips/bigmips.mt: Delete file.
1264         * config/mips/bigmips64.mt: Delete file.
1265         * config/mips/tx39l.mt (TM_FILE): Set to "tm-tx39.h".
1266         * config/mips/embedl64.mt (TM_FILE): Set to "tm-mips64.h".
1267         * config/mips/embed64.mt (TM_FILE): Set to "tm-mips64.h"
1268         * config/mips/embedl.mt (TM_FILE): Set to "tm-mips.h".
1269         * config/mips/tm-tx39.h: Include "tm-mips.h" instead of
1270         "tm-bigmips.h".
1271         * config/mips/tm-irix3.h: Ditto.
1272         * config/mips/tm-mipsv4.h: Ditto.
1273         * config/mips/tm-embed.h: Ditto.
1274         * config/mips/tm-irix6.h: Include "tm-mips64.h" instead of
1275         "tm-bigmips64.h".
1276         * config/mips/tm-vr5000el.h: Delete file.
1277         * config/mips/tm-tx39l.h: Delete file.
1278         * config/mips/tm-vr4300el.h: Delete file.
1279         * config/mips/tm-vr4xxxel.h: Delete file.
1280         * config/mips/tm-vr4300.h: Delete file.
1281         * config/mips/tm-vr4100.h: Delete file.
1282         * config/mips/tm-vr4xxx.h: Delete file.
1283         * config/mips/tm-vr5000.h: Delete file.
1284         * config/mips/tm-embedl64.h: Delete file.
1285         * config/mips/tm-embedl.h: Delete file.
1286         * config/mips/tm-embed64.h: Delete file.
1287         * config/mips/tm-bigmips64.h: Delete file.
1288         * config/mips/tm-bigmips.h: Delete file.
1289
1290 2003-06-01  Mark Kettenis  <kettenis@gnu.org>
1291
1292         Fix gdb/1216.
1293         * shnbsd-nat.c: Include "sh-tdep.h".
1294
1295         From Richard Henderson  <rth@redhat.com>:
1296         * dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Fix ptr arithmetic.
1297
1298 2003-05-31  Andrew Cagney  <cagney@redhat.com>
1299
1300         * mips-tdep.c (set_reg_offset): Add saved_regs parameter.  Add
1301         forward declaration.
1302         (mips16_heuristic_proc_desc): Pass temp_saved_regs.
1303         (mips16_heuristic_proc_desc): Pass temp_saved_regs.
1304         (mips_find_saved_regs): Use set_reg_offset.
1305         (mips_frame_init_saved_regs): Delete function.
1306         (mips_pop_frame): Call mips_find_saved_regs instead of
1307         DEPRECATED_FRAME_INIT_SAVED_REGS.
1308
1309 2003-05-31  Andrew Cagney  <cagney@redhat.com>
1310
1311         * mips-tdep.c (mips_gdbarch_init): Do not set
1312         deprecated_max_register_raw_size, register_virtual_size, and
1313         deprecated_max_register_virtual_size.
1314
1315 2003-05-31  Mark Kettenis  <kettenis@gnu.org>
1316
1317         * i386-tdep.c: Include "dwarf2-frame.h".
1318         (i386_gdbarch_init): Hook in the DWARF CFI frame unwinder.
1319         * Makefile.in (i386-tdep.o): Update dependencies.
1320
1321         * dwarf2-frame.c, dwarf2-frame.h: New files.
1322         * Makefile.in (SFILES): Add dwarf2-frame.c.
1323         (dwarf2_frame_h): Define.
1324         (COMMON_OBS): Add dwarf2-frame.o.
1325         (dwarf2-frame.o): Add dependencies.
1326
1327 2003-05-31  Andreas Jaeger  <aj@suse.de>
1328
1329         * x86-64-linux-nat.c: Fix comment.
1330
1331 2003-05-31  Mark Kettenis  <kettenis@gnu.org>
1332
1333         * x86-64-tdep.c (x86_64_push_dummy_call): Adjust for changed
1334         function signature.
1335
1336         * i386-tdep.c (i386_sigtramp_frame_p): Only handle frames if we
1337         have a sigcontext_addr handler.
1338         * x86-64-tdep.c (x86_64_sigtramp_frame_p): Assert that we have a
1339         sigcontext_addr handler.
1340
1341 2003-05-31  Andrew Cagney  <cagney@redhat.com>
1342
1343         * mips-tdep.c (print_gp_register_row): Replace do_gp_register_row.
1344         (print_fp_register_row): Replace do_fp_register_row.
1345         (mips_print_fp_register): Add "file" and "frame" parameters.
1346         (mips_print_register): Add "file" and "frame" parameters.
1347         (mips_print_registers_info): Replace mips_do_registers_info.
1348         (mips_gdbarch_init): Set print_registers_info instead of
1349         deprecated_do_registers_info.
1350         (mips_read_fp_register_single): Add "frame" parameter.
1351         (mips_read_fp_register_double): Add "frame" parameter.
1352
1353 2003-05-31  Mark Kettenis  <kettenis@gnu.org>
1354
1355         * i386-tdep.c (i386_register_name): Check for MMX registers first.
1356         Fixes a bug where GDB would print the wrong register names for
1357         targets without SSE.
1358
1359         * x86-64-tdep.c (X86_64_NUM_SAVED_REGS): Set to X86_64_NUM_GREGS.
1360         (x86_64_sigtramp_frame_cache): Use `sc_reg_offset' to find saved
1361         registers.
1362
1363         * x86-64-linux-tdep.c (x86_64_linux_sc_reg_offset): New variable.
1364         (x86_64_linux_init_abi): Initialize TDEP->sc_reg_offset and
1365         TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
1366         TDEP->sc_sp_offset.
1367
1368         From Michal Ludvig  <mludvig@suse.cz>:
1369         * i386-tdep.h (struct gdbarch_tdep): Add members `sc_reg_offset'
1370         and `sc_num_regs'.
1371         (I386_EAX_REGNUM, I386_EDX_REGNUM, I386_ESP_REGNUM,
1372         I386_EBP_REGNUM, I386_EIP_REGNUM, I386_EFLAGS_REGNUM,
1373         I386_ST0_REGNUM): Move here from...
1374         * i386-tdep.c: ... here.
1375         (I386_NUM_SAVED_REGS): Define to I386_NUM_REGS.
1376         (i386_sigtramp_frame_cache): Use `sc_reg_offset' to find saved
1377         registers if possible.
1378         (i386_gdbarch_init): Initialize TDEP->sc_reg_offset.
1379         * i386bsd-tdep.c (i386bsd_sc_pc_offset, i386bsd_sc_sp_offset):
1380         Remove variables.
1381         (i386bsd_sc_reg_offset): New variable.
1382         (i386bsd_init_abi): Initialize TDEP->sc_reg_offset and
1383         TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
1384         TDEP->sc_sp_offset.
1385         (i386fbsd_sc_reg_offset): New variable.
1386         (i386fbsdaout_init_abi): Initialize TDEP->sc_reg_offset and
1387         TDEP->sc_num_regs.
1388         (i386fbsd4_sc_pc_offset, i386fbsd4_sc_sp_offset): Remove
1389         variables.
1390         (i386fbsd4_sc_reg_offset): New variable.
1391         (i3864bsd4_init_abi): Initialize TDEP->sc_reg_offset and
1392         TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
1393         TDEP->sc_sp_offset.
1394         * i386-linux-tdep.c (i386_linux_sc_reg_offset): New variable.
1395         (i386_linux_init_abi): Set TDEP->sc_reg_offset and TDEP->sc_num_regs.
1396         * i386nbsd-tdep.c (i386nbsd_sc_pc_offset, i386nbsd_sc_sp_offset):
1397         Remove variables.
1398         (i386nbsd_sc_reg_offset): New variable.
1399         (i386nbsd_init_abi): Initialize TDEP->sc_reg_offset and
1400         TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
1401         TDEP->sc_sp_offset.
1402         * i386obsd-tdep.c (i386obsd_sc_pc_offset, i386obsd_sc_sp_offset):
1403         Remove variables.
1404         (i386obsd_sc_reg_offset): New variable.
1405         (i386obsd_init_abi): Initialize TDEP->sc_reg_offset and
1406         TDEP->sc_num_regs instead of TDEP->sc_pc_offset and
1407         TDEP->sc_sp_offset.
1408         * i386bsd-nat.c (_initialize_i386bsd_nat): Adjust for changes in
1409         i386bsd-tdep.c, i386nbsd-tdep.c and i386obsd-tdep.c.  Add check
1410         for frame pointer offset in `struct sigcontext'.
1411
1412 2003-05-31  Andrew Cagney  <cagney@redhat.com>
1413
1414         * mips-tdep.c (mips_gdbarch_init): Do not set the deprecated
1415         architecture methods call_dummy_words, sizeof_call_dummy_words,
1416         push_return_address, store_struct_return, and fix_call_dummy.  Set
1417         push_dummy_call instead of deprecated_push_arguments.
1418         (mips_store_struct_return): Delete function.
1419         (mips_fix_call_dummy): Delete function.
1420         (mips_push_return_address): Delete function.
1421         (mips_eabi_push_dummy_call): Replace mips_eabi_push_arguments, set
1422         RA_REGNUM and T9_REGNUM.
1423         (mips_n32n64_push_dummy_call): Ditto for
1424         mips_n32n64_push_arguments.
1425         (mips_o32_push_dummy_call): Ditto for mips_o32_push_arguments.
1426         (mips_o64_push_dummy_call): Ditto for mips_o64_push_arguments.
1427
1428 2003-05-31  Andrew Cagney  <cagney@redhat.com>
1429
1430         * gdbarch.sh (PUSH_DUMMY_CALL): Add "func_addr" parameter.  Rename
1431         "dummy_addr" to "bp_addr".
1432         * infcall.c (call_function_by_hand): Pass "funaddr" to
1433         gdbarch_push_dummy_call.
1434         * gdbarch.h, gdbarch.c: Re-generate.
1435         * i386-tdep.c (i386_push_dummy_call): Update.
1436         * arm-tdep.c (arm_push_dummy_call): Update.
1437         * d10v-tdep.c (d10v_push_dummy_call): Update.
1438
1439 2003-05-31  Mark Kettenis  <kettenis@gnu.org>
1440
1441         * x86-64-tdep.h (x86_64_num_regs, x86_64_num_gregs): Remove
1442         variable declarations.
1443         (x86_64_register_number, x86_64_register_name): Remove prototypes.
1444         (x86_64_linux_frame_saved_pc, x86_64_linux+saved_pc_after_call,
1445         x86_64_linux_in_sigtramp, x86_64_linux_frame_chain,
1446         x86_64_init_frame_pc, x86_64_init_frame_pc,
1447         x86_64_function_has_prologue): Remove prototypes.
1448         (X86_64_NUM_GREGS): New define.
1449         (x86_64_supply_fxsave, x86_64_fill_fxsave): New prototypes.
1450         * x86-64-tdep.c: Don't include "dwarf2cfi.h".  Include
1451         "dummy_frame.h", "frame.h", "frame-base.h", "frame-unwind.h".
1452         (RAX_REGNUM, RDX_REGNUM, RDI_REGNUM, EFLAGS_REGNUM, ST0_REGNUM,
1453         XMM1_REGNUM): Remove defines.
1454         (X86_64_RAX_REGNUM, X86_64_RDX_REGNUM, X86_64_RDI_REGNUM,
1455         X86_64_RBP_REGNUM, X86_64_RSP_REGNUM, X86_64_RIP_REGNUM,
1456         X86_64_EFLAGS_REGNUM, X86_64_ST0_REGNUM, X86_64_XMM0_REGNUM,
1457         X86_64_XMM1_REGNUM): New defines.
1458         (struct x86_64_register_info): Renamed from `struct
1459         register_info'.  Remove `size' member.
1460         (x86_64_register_info_table): Remove variable.
1461         (x86_64_register_info): New variable.
1462         (X86_64_NUM_REGS): New define.
1463         (X86_64_NUM_GREGS): Remove define.
1464         (x86_64_num_regs, x86_64_num_gregs): Remove variables.
1465         (x86_64_dwarf2gdb_regno_map, x86_64_dwarf2gdb_regno_map_length):
1466         Remove variables.
1467         (x86_54_dwarf2_reg_to_regnum): Remove function.
1468         (x86_64_dwarf_regmap, x86_64_dwarf_regmap_len): New variables.
1469         (x86_64_dwarf_reg_to_regnum): New function.
1470         (x86_64_register_name): Rewrite.
1471         (x86_64_register_raw_size): Remove function.
1472         (x86_64_register_byte_table): Remove variable.
1473         (x86_64_register_byte): Remove function.
1474         (x86_64_register_virtual_type): Remove function.
1475         (x86_64_register_type): New function.
1476         (x86_64_register_convertible, x86_64_register_convert_to_virtual,
1477         x86_64_register_convert_to_raw): Remove functions.
1478         (x86_64_push_return_address, x86_64_pop_frame): Remove functon.
1479         (x86_64_use_struct_convention): Make static.  Adjust for renamed
1480         defines.
1481         (x86_64_frame_init_saved_regs): Remove function.
1482         (x86_64_push_arguments): Make static.  Change to accept a regcache
1483         as argument.
1484         (x86_64_store_return_value, x86_64_extract_return_value): Make
1485         static.  Rewrite based on i386 counterparts.
1486         (x86_64_push_dummy_call): New function.
1487         (X86_64_NUM_SAVED_REGS): New define.
1488         (x86_64_register_number): Remove function.
1489         (x86_64_store_struct_return): Remove function.
1490         (x86_64_frameless_function_invocation,
1491         x86_64_function_has_prologue): Remove functions.
1492         (PROLOG_BUFSIZE): Remove define.
1493         (struct x86_64_frame_cache): New structure.
1494         (x86_64_alloc_frame_cache, x86_64_analyze_prologue,
1495         x86_64_frame_cache, x86_64_frame_this_id,
1496         x86_64_frame_prev_register, x86_64_frame_p,
1497         x86_64_sigtramp_frame_cache, x86_64_sigtramp_frame_this_id,
1498         x86_64_sigtramp_frame_prev_register, x86_sigtramp_frame_p): New
1499         functions.
1500         (x86_64_frame_unwind, x86_64_sigtramp_frame_unwind): New
1501         variables.
1502         (x86_64_skip_prologue): Rewrite in terms of
1503         x86_64_analyze_prologue.
1504         (x86_64_frame_base_address): New function.
1505         (x86_64_frame_base): New variable.
1506         (x86_64_save_dummy_frame_tos, x86_64_unwind_dummy_id): Rewrite.
1507         (x86_64_init_abi): Set register_type and push_dummy_call.  Don't
1508         set deprecated_fp_regnum, deprecated_register_size,
1509         deprecated_register_bytes, register_raw_size, register_byte,
1510         register_virtual_type, register_convertiable,
1511         register_convert_to_virtual, convert_to_raw,
1512         deprecated_get_saved_register, deprecated_target_read_fp,
1513         deprecated_push_arguments, deprecated_push_return_address,
1514         deprecated_pop_frame, deprecated_store_struct_return,
1515         deprecated_frame_init_saved_regs, deprecated_frame_chain,
1516         frameless_function_invocation, deprecated_frame_saved_pc,
1517         deprecated_saved_pc_after_call, frame_num_args, pc_in_sigtramp,
1518         dwarf2_build_frame_info, deprecated_init_extra_frame_info,
1519         deprecated_init_frame_pc and virtual_frame_pointer.  Call
1520         frame_unwind_append_predicate to register x86_64_sigtramp_frame_p
1521         and x86_64_frame_p.  Call frame_base_set_default to register
1522         x86_64_frame_base.
1523         (I387_FISEG_REGNUM, I387_FOSEG_REGNUM): New defines.
1524         (x86_64_supply_fxsave, x86_64_fill_fxsave): New functions.
1525         (_initialize_x86_64_tdep): Remove function.
1526         * x86-64-linux-tdep.c: Don't include "dwarf2cfi.h".
1527         (LINUX_SIGINFO_SIZE, LINUX_UCONTEXT_SIGCONTEXT_OFFSET,
1528         LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONTEXT_FP_OFFSET): Don't
1529         define.
1530         (X86_64_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Define.
1531         (x86_64_linux_sigcontext_addr): Rewrite.
1532         (x86_64_linux_sigtramp_saved_pc, x86_64_linux_saved_pc_after_call,
1533         x86_64_linux_frame_saved_pc): Remove functions.
1534         (x86_64_linux_pc_in_sigtramp): Renamed from
1535         x86_64_linux_in_sigtramp.  Try harder to recognize a signal
1536         trampoline.
1537         (x86_64_linux_frame_chain, x86_64_init_frame_pc):
1538         Remove_functions.
1539         (x86_64_linux_init_abi): Set pc_in_sigtramp.  Initialize
1540         TDEP->sigcontext_addr, TDEP->sc_pc_offset and TDEP->sc_sp_offset.
1541         * x86-64-linux-nat.c: Sync with i386-linux-tdep.c.
1542         (x86_64_regmap): Rename to regmap.
1543         (GETREGS_SUPPLIES): Use X86_64_NUM_GREGS instead of
1544         x86_64_num_gregs.
1545         (supply_gregset, fill_gregset): Likewise.  Use regmap instead of
1546         x86_64_regmap.
1547         (x86_64_fxsave_offset): Remove function.
1548         (supply_fpregset): Simply call x86_64_supply_fxsave.
1549         (fill_fpregset): Simply call x86_64_fill_fxsave.
1550         (fetch_inferior_registers, store_inferior_registers): Avoid
1551         asignment in if-statement.
1552         (LINUX_SYSCALL_LEN, LINUX_SYSCALL_REGNUM, SYS_Sigreturn,
1553         SYS_rt_sigreturn, LINUX_SIGCONTEXT_EFLAGS_OFFSET,
1554         LINUX_UCONTEXT_SIGCONTEXT_OFFSET): Remove defines.
1555         (fetch_core_registers): Remove function.
1556         (linux_elf_core_fns): Remove.
1557         (offsetoff): Don't define.
1558         (_initialize_x86_64_linux_nat, kernel_u_size): Remove functions.
1559         * config/i386/x86-64linux.mt (TDEPFILES): Add i386-linux-tdep.o.
1560         * config/i386/x86-64linux.mh (NATDEPFILES): Remove core-aout.o,
1561         add core-regset.o.
1562         * config/i386/nm-x86-64linux.h: Use NM_X86_64_LINUX_H for
1563         protection against multiple includes instead of NM_X86_64_h.  Add
1564         various comments.  Include "config/nm-linux.h".  Don't include
1565         <signal.h>.
1566         (REGISTER_U_ADDR, KERNEL_U_SIZE, U_REGS_OFFSET, KERN_U_ADDR,
1567         GET_THREAD_SIGNALS): Remove defines.
1568         (x86_64_register_u_addr, kernel_u_size,
1569         lin_thread_get_thread_signals): Remove prototypes.
1570         (PTRACE_ARG3_TYPE, PTRACE_XFER_TYPE): Define to `long'.
1571         [HAVE_LINK_H]: Don't include "solib.h".
1572         [HAVE_LINK_H] (SVR4_SHARED_LIBS): Remove define.
1573         * config/i386/tm-x86-64linux.h: Fix comments.
1574         * Makefile.in (x86-64-linux-nat.o, x86_64-linux-tdep.o,
1575         x86-64-tdep.o): Update dependencies.
1576
1577 2003-05-30  Andrew Cagney  <cagney@redhat.com>
1578
1579         * config/sparc/tm-sparc.h (sparc_extract_struct_value_address):
1580         Change parameter type to a "struct regcache *".
1581
1582         * gdbarch.sh: Regardless of the multi-arch level, always define
1583         the macro when not already defined.
1584         * gdbarch.h, gdbarch.c: Re-generate.
1585
1586 2003-05-30  Richard Henderson  <rth@redhat.com>
1587
1588         * alpha-mdebug-tdep.c (alpha_mdebug_frame_p): Reject prologues.
1589         (alpha_mdebug_frame_unwind_cache): Don't call the heuristic unwinder.
1590         (alpha_mdebug_frame_this_id): Likewise.
1591         (alpha_mdebug_frame_prev_register): Likewise.
1592         (alpha_mdebug_frame_base_address): Likewise.
1593         (alpha_mdebug_frame_locals_address): Likewise.
1594         (alpha_mdebug_frame_args_address): Likewise.
1595         (struct alpha_mdebug_unwind_cache): Remove in_prologue_cache.
1596         * alpha-tdep.c (alpha_heuristic_proc_start): Use get_pc_function_start.
1597         (alpha_heuristic_frame_unwind_cache): Make static; add missing
1598         loop increment.
1599         (alpha_heuristic_frame_this_id): Make static.
1600         (alpha_heuristic_frame_prev_register): Likewise.
1601         (alpha_heuristic_frame_base_address): Likewise.
1602         * alpha-tdep.h: Update.
1603
1604 2003-05-30  Mark Kettenis  <kettenis@gnu.org>
1605
1606         * i386-tdep.h (i386bsd_sigcontext_addr): Remove prototype.
1607         (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS): Remove
1608         defenitions.
1609         (IS_FP_REGNUM, IS_SSE_REGNUM): Remove definitions.
1610         * i386-tdep.c: Mark functions that are 64-bit safe as such.
1611         (I386_EAX_REGNUM, I386_EDX_REGNUM, I386_ESP_REGNUM,
1612         I386_EBP_REGNUM, I386_EIP_REGNUM, I386_EFLAGS_REGNUM,
1613         I386_ST0_REGNUM): New defines.
1614         (CODESTREAM_BUFSIZ, codestream_tell, codestream_peek,
1615         codestream_get): Remove define.
1616         (codestream_next_addr, condestream_addr, condestream_buf,
1617         codestream_off, codestream_cnt): Remove variables.
1618         (codestream_fill, codestream_seek, codestream_read): Remove
1619         functions.
1620         (i386_follow_jump): Rewrite to avoid usage of removed codestream
1621         functionality.
1622         (i386_get_frame_setup, i386_frameless_signal_p, i386_frame_chain,
1623         i386_sigtramp_saved_pc, i386_sigtramp_saved_sp,
1624         i386_frame_saved_pc, i386_saved_pc_after_call,
1625         i386_frame_num_args, i386_frame_init_saved_regs,
1626         i386_push_return_address, i386_do_pop_frame, i386_pop_frame,
1627         i386_push_arguments): Remove functions.
1628         (i386_skip_prologue): Rewrite to avoid usage of removed codestream
1629         functionality.  Use i386_analyze_prologue instead of
1630         i386_get_frame_setup.
1631         (I386_NUM_SAVED_REGS): New define.
1632         (struct i386_frame_cache): New structure.
1633         (i386_alloc_frame_cache, i386_analyze_struct_return,
1634         i386_skip_probe, i386_analyze_frame_setup,
1635         i386_analyze_register_saves, i386_analyze_prologue,
1636         i386_unwind_pc, i386_frame_cache, i386_frame_this_id,
1637         i386_frame_prev_register, i386_sigtramp_frame_cache,
1638         i386_sigtramp_frame_this_id, i386_sigtramp_frame_prev_register,
1639         i386_frame_p, i386_sigtramp_frame_p, i386_frame_base_address,
1640         i386_unwind_dummy_id, i386_save_dummy_tos, i386_push_dummy_call):
1641         New functions.
1642         (i386_frame_unwind, i386_sigtramp_frame_unwind, i386_frame_base):
1643         New variables.
1644         (LOW_RETURN_REGNUM, HIGH_RETURN_REGNUM): Define in terms of
1645         I386_EAX_REGNUM and I386_EDX_REGNUM.
1646         (i386_extract_return_value, i386_store_return_value): Use
1647         I386_ST0_REGNUM where appropriate.
1648         (i386_extract_struct_value_address): Rewrite to use extract_address.
1649         (i386_svr4_pc_in_sigtramp): Add comment.
1650         (i386_svr4_sigcontext_addr): Rewrite.
1651         (i386_svr4_init_abi): Adjust TDEP->sc_pc_offset and
1652         TDEP->sc_sp_offset.
1653         (i386_gdbarch_init): Don't set deprecated_init_frame_pc.  Set
1654         sp_regnum, fp_regnum, pc_regnum, ps_regnum and fp0_regnum in terms
1655         of new defines.  Set push_dummy_call, don't set
1656         deprecated_push_arguments, deprecated_push_return_address,
1657         deprecated_pop_frame.  Don't set parm_boundary.  Don't set
1658         deprecated_frame_chain, deprecated_frame_saved_pc,
1659         deprecated_saved_pc_after_call.  Set unwind_dummy_id,
1660         save_dummy_frame_tos, unwind_pc.  Call
1661         frame_unwind_append_predicate and frame_base_set_default.  Don't
1662         set deprecated_dummy_write_pc.  Don't set deprecated_fp_regnum.
1663         Don't set frameless_function_invocation.  Don't set
1664         deprecated_register_bytes, deprecated_register_size,
1665         deprecated_call_dummy_words and deprecated_sizeof_call_dummy.
1666         * i386-linux-tdep.c: Fix formatting in some comments.
1667         (LINUX_SIGTRAMP_INSN0, LINUX_SIGTRAMP_OFFSET0,
1668         LINUX_SIGTRAMP_INSN1, LINUX_SIGTRAMP_OFFSET1,
1669         LINUX_SIGTRAMP_INSN2, LINUX_SIGTRAMP_OFFSET2,
1670         LINUX_RT_SIGTRAMP_INSN0, LINUX_RT_SIGTRAMP_OFFSET0,
1671         LINUX_RT_SIGTRAMP_INSN1, LINUX_RT_SIGTRAMP_OFFSET1): Drop
1672         redundant parentheses.
1673         (I386_LINUX_UCONTEXT_SIGCONTEXT_OFFSET): New define.
1674         (i386_linux_sigcontext_addr): Use it.  Rewrite.
1675         (find_minsym_and_objfile): Change name of second argument.
1676         (skip_gnu_resolver): Renamed from skip_hurd_resolver.  All callers
1677         changed.  Use frame_pc_unwind instead of
1678         DEPRECATED_SAVED_PC_AFTER_CALL.
1679         (i386_linux_init_abi): Don't set deprecated_register_bytes.
1680         * i386bsd-tdep.c (i386bsd_sigcontext_addr): Rewrite.
1681         * i386-nto-tdep.c (i386nto_sigcontext_addr): Adapt for new frame
1682         unwinder.
1683         * i386-cygwin-tdep.c: Don't include "gdbcore.h", "frame.h" and
1684         "dummy-frame.h".
1685         (i386_cygwin_frame_chain_valid, i386_cygwin_frame_chain): Removed.
1686         (_initialize_i386_cygwin_tdep): New prototype.
1687         (i386_cygwin_init_abi): Don't set deprecated_frame_chain and
1688         deprecated_frame_chain_valid.
1689         * i386-sol2-tdep.c (i386_sol2_init_abi): Don't set
1690         TDEP->sigcontext_addr, TDEP->sc_pc_offset and TDEP->sc_sp_offset.
1691         Rely on the SVR4 defaults.
1692         * config/i386/i386sol2.mt (TDEPFILES): Remove i386bsd-tdep.o.
1693         * Makefile.in (i386-tdep.o, i386-cygwin-tdep.o): Update dependencies.
1694
1695 2003-05-30  Andrew Cagney  <cagney@redhat.com>
1696
1697         * infcall.c (call_function_by_hand): Always call
1698         DEPRECATED_FIX_CALL_DUMMY, even for AT_ENTRY_POINT case.
1699
1700 2003-05-30  Richard Henderson  <rth@redhat.com>
1701
1702         * alpha-tdep.c (alpha_heuristic_frame_unwind_cache): Fix loop
1703         increment.
1704
1705 2003-05-29  Jim Blandy  <jimb@redhat.com>
1706
1707         Use gdbarch methods for solib stuff on PowerPC Linux.
1708         * config/powerpc/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE,
1709         SKIP_TRAMPOLINE_CODE): #undef these, so the gdbarch methods will
1710         show through.
1711         * ppc-linux-tdep.c (ppc_linux_init_abi): Register
1712         IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE methods here,
1713         giving the same effect as the #definitions above.
1714
1715 2003-05-29  Adam Fedor  <fedor@gnu.org>
1716
1717         * objc-lang.c (CONVERT_FUNCPTR): Remove macro
1718         (find_implementation_from_class): Replace it with the standard
1719         case i.e. do nothing.
1720
1721 2003-05-29  Richard Henderson  <rth@redhat.com>
1722
1723         * alpha-linux-tdep.c (alpha_linux_sigtramp_offset_1): New.
1724         (alpha_linux_sigtramp_offset): Use it.  Make static.
1725         (alpha_linux_sigcontext_addr): Handle __NR_rt_sigreturn;
1726         update for new frame model.
1727         * alpha-mdebug-tdep.c: New file.
1728         * alpha-osf1-tdep.c (alpha_call_dummy_address): Move from alpha-tdep.c.
1729         (alpha_osf1_init_abi): Install it.
1730         * alpha-tdep.c (PROC_*): Move to alpha-mdebug-tdep.c.
1731         (linked_proc_desc_table): Remove.
1732         (alpha_frame_past_sigtramp_frame): Remove.
1733         (alpha_dynamic_sigtramp_offset): Remove.
1734         (ALPHA_PROC_SIGTRAMP_MAGIC): Remove.
1735         (alpha_proc_desc_is_dyn_sigtramp): Remove.
1736         (alpha_set_proc_desc_is_dyn_sigtramp): Remove.
1737         (push_sigtramp_desc): Remove.
1738         (alpha_cannot_fetch_register): Use ALPHA_FP_REGNUM.
1739         (alpha_cannot_store_register): Likewise.
1740         (alpha_sigcontext_addr): Remove.
1741         (alpha_find_saved_regs): Remove.
1742         (alpha_frame_init_saved_regs): Remove.
1743         (alpha_init_frame_pc_first): Remove.
1744         (read_next_frame_reg): Remove.
1745         (alpha_frame_saved_pc): Remove.
1746         (alpha_saved_pc_after_call): Remove.
1747         (temp_proc_desc, temp_saved_regs): Remove.
1748         (alpha_about_to_return): Remove.
1749         (cached_proc_desc): Remove.
1750         (alpha_frame_chain): Remove.
1751         (alpha_print_extra_frame_info): Remove.
1752         (alpha_init_extra_frame_info): Remove.
1753         (alpha_frame_locals_address): Remove.
1754         (alpha_frame_args_address): Remove.
1755         (alpha_push_arguments): Use ALPHA_REGISTER_BYTES not sizeof CORE_ADDR.
1756         (alpha_push_dummy_frame): Remove.
1757         (alpha_pop_frame): Remove.
1758         (alpha_after_prologue): Rename from after_prologue; remove mdebug bits.
1759         (alpha_read_insn): New.
1760         (alpha_skip_prologue): Merge alpha_skip_prologue_internal; adjust
1761         for different insn encodings.
1762         (alpha_in_lenient_prologue): Remove.
1763         (struct alpha_sigtramp_unwind_cache): New.
1764         (alpha_sigtramp_frame_unwind_cache): New.
1765         (alpha_sigtramp_register_address): New.
1766         (alpha_sigtramp_frame_this_id): New.
1767         (alpha_sigtramp_frame_prev_register): New.
1768         (alpha_sigtramp_frame_unwind): New.
1769         (alpha_sigtramp_frame_p): New.
1770         (struct alpha_heuristic_unwind_cache): New.
1771         (alpha_heuristic_proc_start): Rename from heuristic_proc_start;
1772         don't count nop insns that occur between functions.
1773         (alpha_heuristic_frame_unwind_cache): New; incorporate much of
1774         heuristic_proc_desc, but without the mdebug wrapping.
1775         (alpha_heuristic_frame_this_id): New.
1776         (alpha_heuristic_frame_prev_register): New.
1777         (alpha_heuristic_frame_unwind): New.
1778         (alpha_heuristic_frame_p): New.
1779         (alpha_heuristic_frame_base_address): New.
1780         (alpha_heuristic_frame_base): New.
1781         (alpha_unwind_dummy_id): New.
1782         (alpha_unwind_pc): New.
1783         (alpha_gdbarch_init): Don't set skip_sigtramp_frame.  Kill use of
1784         frame related deprecated initializations; install replacements.
1785         (alpha_dump_tdep): Remove.
1786         * alpha-tdep.h (struct gdbarch_tdep): Remove skip_sigtramp_frame.
1787         (alpha_read_insn, alpha_after_prologue,
1788         alpha_heuristic_frame_unwind_cache, alpha_heuristic_frame_this_id,
1789         alpha_heuristic_frame_prev_register,
1790         alpha_heuristic_frame_base_address, alpha_mdebug_init_abi): Declare.
1791         * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-mdebug-tdep.o.
1792         * config/alpha/tm-alpha.h (PRINT_EXTRA_FRAME_INFO): Remove.
1793         * config/alpha/tm-alphalinux.h (SIGTRAMP_START, SIGTRAMP_END): Remove.
1794
1795 2003-05-29  Andrew Cagney  <cagney@redhat.com>
1796
1797         * gdb_assert.h (gdb_assert_fail): Provide different definitions
1798         dependant on the availability of ASSERT_FUNCTION.
1799         (ASSERT_FUNCTION): Do not define when there is no function name.
1800
1801 2003-05-29  Kevin Buettner  <kevinb@redhat.com>
1802
1803         From Jimi X <jimix@watson.ibm.com>:
1804         * rs6000-tdep.c (skip_prologue): Improve support for 64-bit code.
1805
1806 2003-05-28  Jim Blandy  <jimb@redhat.com>
1807
1808         * ppc-linux-nat.c (store_altivec_registers): Don't cast fourth
1809         argument to ptrace to int; the system headers should give it the
1810         right type, and pointers don't fit in ints on powerpc64-*-*.
1811
1812 2003-05-28  H.J. Lu <hongjiu.lu@intel.com>
1813
1814         * dwarf2read.c (process_die): Handle DW_TAG_try_block and
1815         DW_TAG_catch_block.
1816
1817 2003-05-26  Elena Zannoni  <ezannoni@redhat.com>
1818
1819         * stabsread.c (dbx_lookup_type): Make static.
1820         (read_type): Ditto.
1821         (add_undefined_type): Ditto.
1822         * stabsread.h (dbx_lookup_type, read_type, add_undefined_type): Do
1823         not export.
1824
1825 2003-05-26  Elena Zannoni  <ezannoni@redhat.com>
1826
1827         * hpread.c (hpread_has_name): Make static.
1828         (hpread_psymtab_to_symtab): Ditto.
1829         (file_exists): Ditto.
1830         (hpread_call_pxdb): Ditto.
1831         (hpread_pxdb_needed): Ditto.
1832         (hpread_quick_traverse): Ditto.
1833         (hpread_get_header): Ditto.
1834         (hpread_get_lntt): Ditto.
1835         (hpread_get_slt): Ditto.
1836         (class_of): Ditto.
1837
1838 2003-05-25  Andreas Schwab  <schwab@suse.de>
1839
1840         * m68k-tdep.c (m68k_gdbarch_init): Set parm_boundary instead of
1841         stack_align and deprecated_extra_stack_alignment_needed.
1842         (m68k_stack_align): Delete.
1843
1844         * m68k-tdep.c (m68k_register_raw_size): Remove cast.
1845         (m68k_register_virtual_size): Likewise.
1846         (altos_skip_prologue): Remove obsolete function.
1847         (isi_frame_num_args): Likewise.
1848         (news_frame_num_args): Likewise.
1849         (m68k_fix_call_dummy): Make static.
1850         (m68k_push_dummy_frame): Likewise.
1851         (m68k_pop_frame): Likewise.
1852         (m68k_skip_prologue): Likewise.
1853         (m68k_frame_init_saved_regs): Likewise.
1854         (m68k_saved_pc_after_call): Likewise.
1855         (m68k_get_longjmp_target): Make multi-arch.
1856         (m68k_gdbarch_init): Allocate and initialize gdbarch_tdep
1857         structure.  Register m68k_get_longjmp_target if enabled.
1858         * m68k-tdep.h (struct gdbarch_tdep): Define.
1859         * config/m68k/tm-m68k.h: Don't include "regcache.h".
1860
1861         * Makefile.in (config.status): Also depend on configure.tgt
1862         and configure.host.
1863         (m68klinux-tdep.o): Update dependencies.
1864         * configure.tgt (m68*-*-linux*): Set gdb_multi_arch to 1.
1865         * m68klinux-tdep.c (M68K_LINUX_JB_ELEMENT_SIZE): Define.
1866         (M68K_LINUX_JB_PC): Define.
1867         (m68k_linux_pc_in_sigtramp): Renamed from m68k_linux_in_sigtramp
1868         and take additional parameter.
1869         (m68k_linux_sigtramp_saved_pc): Update.
1870         (m68k_linux_init_abi): Set jb_pc and jb_elt_size.  Register
1871         m68k_linux_pc_in_sigtramp, in_plt_section,
1872         find_solib_trampoline_target.
1873         * config/m68k/tm-linux.h: Don't include any tm headers.
1874         (START_INFERIOR_TRAPS_EXPECTED): Remove definition.
1875         (JB_ELEMENT_SIZE): Likewise.
1876         (JB_PC): Likewise.
1877         (GET_LONGJMP_TARGET): Likewise.
1878         (IN_SIGTRAMP): Likewise.
1879         (SVR4_SHARED_LIBS): Define this and include "solib.h".
1880
1881 2003-05-25  Mark Kettenis  <kettenis@gnu.org>
1882
1883         * sparc-tdep.c (sparc32_do_push_arguments): New function.
1884         (sparc32_push_arguments): Re-implement by calling
1885         sparc32_do_push_arguments.
1886
1887 2003-05-25  Mark Kettenis  <kettenis@gnu.org>
1888
1889         * sparc-tdep.c (SPARC_F0_REGNUM, SPARC_F1_REGNUM, SPARC_O0_REGNUM,
1890         SPARC_O1_REGNUM): New defines.
1891         (sparc32_extract_return_value): Rewrite to operate on a regcache.
1892         (sparc32_store_return_value): New function.
1893         (sparc_extract_struct_value_address): Rewrite to operate on a
1894         regcache.
1895         (sparc_gdbarch_init): Don't set
1896         deprecated_extract_struct_value_address.  Set
1897         extract_struct_value_address instead. Don't set
1898         deprecated_extract_return_value and deprecated_store_return_value
1899         for 32-bit targets.  Set extract_return_value and
1900         store_return_value instead.
1901         * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE,
1902         DEPRECTAED_EXTRACT_RETURN_VALUE,
1903         DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Don't define these.
1904         (STORE_RETURN_VALUE, EXTRACT_RETURN_VALUE,
1905         EXTRACT_STRUCT_VALUE_ADDRESS): Define these instead.
1906         (sparc_store_return_value): Remove prototype.
1907         (sparc32_store_return_value): New prototype.
1908         (sparc32_extract_return_value, sparc_extract_struct_value_address):
1909         Adjust prototypes.
1910
1911 2003-05-24  Mark Kettenis  <kettenis@gnu.org>
1912
1913         * sparcnbsd-tdep.c: Include "gdb_string.h".
1914
1915 2003-05-23  Andrew Cagney  <cagney@redhat.com>
1916
1917         * p-valprint.c (pascal_val_print): Replace extract_address with
1918         the inline equivalent extract_unsigned_integer.
1919         * jv-valprint.c (java_value_print): Ditto.
1920         * ada-valprint.c (ada_val_print_1): Ditto.
1921         * ada-lang.h (EXTRACT_ADDRESS): Ditto.
1922
1923 2003-05-23  Theodore A. Roth  <troth@openavr.org>
1924
1925         * blockframe.c (frameless_look_for_prologue): Remove unused
1926         after_prologue variable.
1927
1928 2003-05-23  Mark Kettenis  <kettenis@gnu.org>
1929
1930         * blockframe.c (get_pc_function_start): Rewrite to avoid
1931         asignments in if-statements.
1932
1933 2003-05-23  Raoul Gough  <RaoulGough@yahoo.co.uk>
1934
1935         Committed by Elena Zannoni  <ezannoni@redhat.com>.
1936         * coffread.c(coff_symtab_read): Do relocate static symbols from PE
1937         files, don't relocate absolute symbols (and do use mst_abs).
1938
1939 2003-05-23  Andrew Cagney  <cagney@redhat.com>
1940
1941         * objc-lang.c: Include "gdb_assert.h".
1942         (objc_op_print_tab): Use OP_NULL and PREC_NULL instead of 0.
1943         (CHECK, CHECK_FATAL, __CHECK_FUNCTION): Delete macros.
1944         (gdb_check, gdb_check_fatal): Delete functions.
1945         (read_objc_methlist_method): Replace CHECK and CHECK_FATAL with
1946         gdb_assert.
1947         (parse_selector, parse_method, find_methods, find_imps): Ditto.
1948         * Makefile.in (objc-lang.o): Update dependencies.
1949
1950 2003-05-22  Ian Lance Taylor  <ian@airs.com>
1951
1952         * disasm.c (gdb_disassemble_info): Initialize disassemble_info
1953         with fprintf_filtered, not fprintf_unfiltered.
1954
1955 2003-05-22  Andrew Cagney  <cagney@redhat.com>
1956
1957         * stack.c (frame_info): Inline extract_address, replacing it with
1958         extract_unsigned_integer.
1959         * findvar.c (unsigned_pointer_to_address): Ditto.
1960         * dwarf2loc.c (dwarf_expr_read_reg): Ditto.
1961         * dwarf2expr.c (dwarf2_read_address): Ditto.
1962         * frame.c (frame_pc_unwind): Update comment.
1963         * dummy-frame.c (deprecated_read_register_dummy): Update comment.
1964
1965 2003-05-22  Jeff Johnston  <jjohnstn@redhat.com>
1966
1967         * infptrace.c (detach): Call print_sys_errmsg rather than
1968         perror_with_name to issue warning message when errno is non-zero
1969         after calling ptrace detach.
1970
1971 2003-05-21  J. Brobecker  <brobecker@gnat.com>
1972
1973         * config/pa/tm-hppa.h: Delete some unused macros. Move some
1974         macro definitions from here...
1975         * hppa-tdep.c: ...to there.
1976
1977 2003-05-20  Kevin Buettner  <kevinb@redhat.com>
1978
1979         * mips-nat.c (REGISTER_PTRACE_ADDR): Convert macro to function
1980         register_ptrace_addr().  Fix all callers.
1981
1982 2003-05-21  Andreas Schwab  <schwab@suse.de>
1983
1984         * Makefile.in (m68k-tdep.o, m68klinux-tdep.o): Update
1985         dependencies.
1986         * m68k-tdep.c (m68k_gdbarch_init): Call gdbarch_init_osabi at the
1987         end.
1988         * m68klinux-tdep.c (m68k_linux_init_abi): New function.
1989         (_initialize_m68k_linux_tdep): New function.
1990         (m68k_linux_frame_saved_pc): Make static.
1991         (m68k_linux_extract_return_value): Likewise.
1992         (m68k_linux_store_return_value): Likewise.
1993         (m68k_linux_extract_struct_value_address): Likewise.
1994         * config/m68k/tm-linux.h (DEPRECATED_EXTRACT_RETURN_VALUE):
1995         Remove.
1996         (DEPRECATED_STORE_RETURN_VALUE): Remove.
1997         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
1998         (DEPRECATED_FRAME_SAVED_PC): Remove.
1999
2000 2003-05-20  Kris Warkentin  <kewarken@qnx.com>
2001
2002         * nto-tdep.c (fetch_core_registers): Match gdb's idea of
2003         regset numbering rather than our own.
2004
2005 2003-05-19  David Carlton  <carlton@bactrian.org>
2006
2007         * config/djgpp/fnchange.lst: Add testsuite/gdb.c++/rtti*.
2008
2009 2003-05-19  David Carlton  <carlton@bactrian.org>
2010
2011         Partial fix for PR c++/827.
2012         * cp-support.h: Include symtab.h.
2013         Declare cp_lookup_symbol_nonlocal, cp_lookup_symbol_namespace.
2014         * cp-namespace.c: Update contributors.
2015         (cp_lookup_symbol_nonlocal): New.
2016         (lookup_namespace_scope, cp_lookup_symbol_namespace)
2017         (lookup_symbol_file): Ditto.
2018         * c-lang.c (cplus_language_defn): Use cp_lookup_symbol_nonlocal.
2019         * block.h: Declare block_scope, block_using, block_global_block.
2020         * block.c (block_scope): New.
2021         (block_using, block_global_block): Ditto.
2022         * Makefile.in (cp_support_h): Depend on symtab_h.
2023         * config/djgpp/fnchange.lst: Add testsuite/gdb.c++/namespace1.cc.
2024
2025 2003-05-19  David Carlton  <carlton@bactrian.org>
2026
2027         * language.h (struct language_defn): Add 'la_value_of_this'
2028         and 'la_lookup_symbol_nonlocal' members.
2029         * symtab.h: Declare basic_lookup_symbol_nonlocal,
2030         lookup_symbol_static, lookup_symbol_global,
2031         lookup_symbol_aux_block.
2032         * symtab.c (lookup_symbol_aux): Call language hooks to determine
2033         if we should search fields of this and how to do static/global
2034         lookup.
2035         (lookup_symbol_aux_block): Make extern.
2036         (basic_lookup_symbol_nonlocal): New.
2037         (lookup_symbol_static, lookup_symbol_global): Ditto.
2038         * ada-lang.c (ada_language_defn): Set 'la_value_of_this' and
2039         'la_lookup_symbol_nonlocal' members.
2040         * c-lang.c (c_language_defn, cplus_language_defn)
2041         (asm_language_defn, minimal_language_defn): Ditto.
2042         * jv-lang.c (java_language_defn): Ditto.
2043         * language.c (unknown_language_defn, auto_language_defn)
2044         (local_language_defn): Ditto.
2045         * m2-lang.c (m2_language_defn): Ditto.
2046         * objc-lang.c (objc_language_defn): Ditto.
2047         * scm-lang.c (scm_language_defn): Ditto.
2048         * f-lang.c (f_language_defn): Ditto, and include value.h as well.
2049         * p-lang.c (pascal_language_defn): Ditto for both.
2050         * Makefile.in (f-lang.o): Depend on value_h.
2051         (p-lang.o): Ditto.
2052
2053 2003-05-19  David Carlton  <carlton@bactrian.org>
2054
2055         * block.h: Declare block_static_block.
2056         * block.c (block_static_block): New.
2057         * symtab.c (lookup_symbol_aux): Remove 'static_block' argument to
2058         lookup_symbol_aux_local, calling block_static_block instead.
2059         (lookup_symbol_aux_local): Delete 'static_block' argument.
2060
2061 2003-05-19  David Carlton  <carlton@bactrian.org>
2062
2063         * symtab.c (lookup_symbol_aux): Delete #if 0 hunk.
2064
2065 2003-05-19  Michal Ludvig  <mludvig@suse.cz>
2066
2067         * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map): Fix
2068         register numbers mapping.
2069
2070 2003-05-18  Adam Fedor  <fedor@gnu.org>
2071
2072         * symtab.c (completion_list_objc_symbol): New function.
2073         (make_symbol_completion_list): Use it to add ObjC symbols
2074         when looking though the list.
2075         (language_search_unquoted_string): New function.
2076         (make_file_symbol_completion_list): Use it.
2077
2078 2003-05-18  Andreas Schwab  <schwab@suse.de>
2079
2080         * Makefile (m68klinux-nat.o, m68klinux-tdep.o): Update
2081         dependencies.
2082         * config/m68k/tm-linux.h (DEPRECATED_EXTRACT_RETURN_VALUE): Define
2083         as m68k_linux_extract_return_value.
2084         (DEPRECATED_STORE_RETURN_VALUE): Define as
2085         m68k_linux_store_return_value.
2086         (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Define as
2087         m68k_linux_extract_struct_value_address.
2088         * m68klinux-tdep.c (m68k_linux_sigtramp_saved_pc): Use
2089         get_next_frame, get_frame_base, get_frame_pc.
2090         (m68k_linux_frame_saved_pc): Use get_frame_base.
2091         (m68k_linux_extract_return_value): New function.
2092         (m68k_linux_store_return_value): New function.
2093         (m68k_linux_extract_struct_value_address): New function.
2094         * config/m68k/tm-m68k.h: Declare m68k_get_longjmp_target.
2095
2096         * c-exp.y (typebase): Remove duplicate occurence of
2097         `SIGNED_KEYWORD LONG LONG'.  Use builtin_type_long_long instead
2098         of lookup_signed_typename. 
2099
2100 2003-05-18  Mark Kettenis  <kettenis@gnu.org>
2101
2102         * dwarf2loc.c (find_location_expression): Change type of second
2103         argument to `size_t *'.
2104         (loclist_read_variable, loclist_tracepoint_var_ref): Use size_t
2105         for size variable.
2106
2107 2003-05-18  David Carlton  <carlton@bactrian.org>
2108
2109         * symtab.c (lookup_symbol_aux): Rename 'mangled_name' argument to
2110         'linkage_name'.  Add comment.
2111         (lookup_symbol_aux_local): Rename 'mangled_name' argument to
2112         'linkage_name'.
2113         (lookup_symbol_aux_block, lookup_symbol_aux_symtabs)
2114         (lookup_symbol_aux_psymtabs, lookup_symbol_aux_minsyms)
2115         (lookup_block_symbol): Ditto.
2116
2117 2003-05-16  Andrew Cagney  <cagney@redhat.com>
2118
2119         * gdbarch.sh (DEPRECATED_REGISTER_BYTES): Rename REGISTER_BYTES.
2120         * gdbarch.h, gdbarch.c: Re-generate.
2121         * arm-linux-tdep.c (arm_linux_extract_return_value): Delete reference.
2122         * TODO (REGISTER_BYTES): Delete reference.
2123         * alpha-tdep.c (alpha_gdbarch_init): Update.
2124         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2125         * x86-64-tdep.c (x86_64_init_abi): Update.
2126         * vax-tdep.c (vax_gdbarch_init): Update.
2127         * v850-tdep.c (v850_gdbarch_init): Update.
2128         * sparc-tdep.c (sparc_gdbarch_init): Update.
2129         * sh-tdep.c (sh_gdbarch_init): Update.
2130         * s390-tdep.c (s390_gdbarch_init): Update.
2131         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2132         * ns32k-tdep.c (ns32k_gdbarch_init_32082): Update.
2133         (ns32k_gdbarch_init_32382): Update.
2134         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2135         * mcore-tdep.c (mcore_gdbarch_init): Update.
2136         * m68k-tdep.c (m68k_gdbarch_init): Update.
2137         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2138         * ia64-tdep.c (ia64_gdbarch_init): Update.
2139         * i386-tdep.c (i386_gdbarch_init): Update.
2140         * i386-linux-tdep.c (i386_linux_init_abi): Update.
2141         * hppa-tdep.c (hppa_gdbarch_init): Update.
2142         * h8300-tdep.c (h8300_gdbarch_init): Update.
2143         * frv-tdep.c (frv_gdbarch_init): Update.
2144         * cris-tdep.c (cris_gdbarch_init): Update.
2145         * avr-tdep.c (avr_gdbarch_init): Update.
2146         * arm-tdep.c (arm_gdbarch_init): Update.
2147         * sparc-tdep.c (sparc_pop_frame): Update.
2148         * rs6000-tdep.c (rs6000_pop_frame): Update.
2149         * remote.c (init_remote_state): Update.
2150         (remote_prepare_to_store): Update.
2151         * remote-vx.c (vx_prepare_to_store): Update.
2152         * remote-sds.c (sds_fetch_registers): Update.
2153         (sds_prepare_to_store): Update.
2154         * remote-array.c: Update.
2155         * regcache.c (init_legacy_regcache_descr): Update.
2156         (init_regcache_descr): Update.
2157         * mips-tdep.c (mips_eabi_extract_return_value): Update.
2158         (mips_o64_extract_return_value): Update.
2159         * irix5-nat.c (fetch_core_registers): Update.
2160         * irix4-nat.c (fetch_core_registers): Update.
2161         * i386-tdep.h: Update.
2162         * hppa-tdep.c (pa_do_registers_info): Update.
2163         (pa_do_strcat_registers_info): Update.
2164         * cris-tdep.c (cris_register_bytes_ok): Update.
2165         * config/nm-gnu.h (CHILD_PREPARE_TO_STORE): Update.
2166         * config/sparc/tm-sparc.h (DEPRECATED_REGISTER_BYTES): Update.
2167         * config/sparc/nm-sun4sol2.h (CHILD_PREPARE_TO_STORE): Update.
2168         * config/sparc/nm-sun4os4.h (CHILD_PREPARE_TO_STORE): Update.
2169         * config/sparc/nm-nbsd.h (CHILD_PREPARE_TO_STORE): Update.
2170         * config/sparc/tm-sp64.h (DEPRECATED_REGISTER_BYTES): Update.
2171         * config/s390/tm-s390.h (DEPRECATED_REGISTER_BYTES): Update.
2172         * config/pa/tm-hppa64.h (DEPRECATED_REGISTER_BYTES): Update.
2173         * config/mips/tm-mips.h (DEPRECATED_REGISTER_BYTES): Update.
2174         * config/mips/tm-irix6.h (DEPRECATED_REGISTER_BYTES): Update.
2175         * config/mips/tm-irix5.h (DEPRECATED_REGISTER_BYTES): Update.
2176         * config/m68k/tm-sun3.h (DEPRECATED_REGISTER_BYTES): Update.
2177         (REGISTER_BYTES_OK): Update.
2178         * config/m68k/nm-sun3.h (CHILD_PREPARE_TO_STORE): Update.
2179         * config/ia64/tm-ia64.h (DEPRECATED_REGISTER_BYTES): Update.
2180
2181 2003-05-16  Ian Lance Taylor  <ian@airs.com>
2182
2183         * vax-tdep.c (INVALID_FLOAT, MAXLEN, NOPCODES): Don't define.
2184         (vax_print_insn, print_insn_arg): Remove static functions.
2185         (vax_gdbarch_init): Call set_gdbarch_print_insn with
2186         print_insn_vax from opcodes library.
2187         (_initialize_vax_tdep): Don't set deprecated_tm_print_insn.
2188
2189 2003-05-15  Andrew Cagney  <cagney@redhat.com>
2190
2191         * arch-utils.h (legacy_breakpoint_from_pc): Delete declaration.
2192         * target.h (memory_breakpoint_from_pc): Delete declaration.
2193         * mem-break.c (memory_breakpoint_from_pc): Delete function.
2194         * arch-utils.c (legacy_breakpoint_from_pc): Delete function.
2195         * monitor.c (monitor_insert_breakpoint): Use
2196         gdbarch_breakpoint_from_pc instead of memory_breakpoint_from_pc.
2197         * gdbarch.sh (BREAKPOINT_FROM_PC): Do not provide a default.
2198         * gdbarch.h, gdbarch.c: Re-generate.
2199         * sparc-tdep.c (sparc_breakpoint_from_pc): New function.
2200         (sparc_gdbarch_init): Set breakpoint_from_pc to
2201         sparc_breakpoint_from_pc.
2202         * config/sparc/tm-sparc.h (BREAKPOINT): Delete macro.
2203         (BREAKPOINT_FROM_PC): Define.
2204         (sparc_breakpoint_from_pc): Declare.
2205         * hppa-tdep.c (hppa_breakpoint_from_pc): New function.
2206         * config/pa/tm-hppa.h (hppa_breakpoint_from_pc): Declare.
2207         (BREAKPOINT_FROM_PC): Define.
2208         (BREAKPOINT): Delete macro.
2209         * target.h: Update comment.
2210         * s390-tdep.c (s390_gdbarch_init): Update comments.
2211         * remote.c: Update comments.
2212         * remote-mips.c: Update comments.
2213         * proc-api.c (write_with_trace): Do not check for a breakpoint.
2214         * mem-break.c: Update comment.
2215         * ia64-tdep.c (IA64_BREAKPOINT): Rename BREAKPOINT.
2216         (ia64_memory_insert_breakpoint): Update.
2217         * config/sparc/tm-sparc.h: Update comment.
2218         * config/pa/tm-hppa64.h: Update comment.
2219         * rs6000-tdep.c (BIG_BREAKPOINT, LITTLE_BREAKPOINT): Delete macro.
2220         (rs6000_breakpoint_from_pc): Update.
2221         * mips-tdep.c (BIG_BREAKPOINT, LITTLE_BREAKPOINT): Delete macro.
2222         (PMON_BIG_BREAKPOINT, PMON_LITTLE_BREAKPOINT): Delete macro.
2223         (IDT_LITTLE_BREAKPOINT, IDT_LITTLE_BREAKPOINT): Delete macro.
2224         (MIPS16_LITTLE_BREAKPOINT, MIPS16_BIG_BREAKPOINT): Delete macro.
2225         (mips_breakpoint_from_pc): Update.
2226         (mips_dump_tdep): Update.
2227
2228         * symtab.h (DEPRECATED_SYMBOL_MATCHES_NAME): Delete macro.
2229         * minsyms.c (lookup_minimal_symbol): Inline
2230         DEPRECATED_SYMBOL_MATCHES_NAME.  Replace STREQ with strcmp.
2231
2232         * c-lang.c (c_printstr): Delete "extern inspect_it" declaration.
2233         * p-valprint.c (pascal_object_print_value_fields): Ditto.
2234         * p-lang.c (pascal_printstr): Ditto.
2235         * objc-lang.c (objc_printstr): Ditto.
2236         * m2-lang.c (m2_printstr): Ditto.
2237         * jv-valprint.c (java_print_value_fields): Ditto.
2238         * f-lang.c (f_printstr): Ditto.
2239         * cp-valprint.c (cp_print_value_fields): Ditto.  Include "valprint.h".
2240         * ada-valprint.c (inspect_it, repeat_count_threshold): Ditto, and
2241         for repeat_count_threshold.
2242         * Makefile.in (cp-valprint.o): Update dependencies.
2243
2244 2003-05-15  Jeff Johnston  <jjohnstn@redhat.com>
2245  
2246         * ia64-tdep.c: Increase max_skip_non_prologue_insns to 40.
2247         (examine_prologue): Support looking through leaf functions, knowing
2248         they start with mov r2,r12.  Support skipping over indirect stores 
2249         of the input registers.  Upon hitting a non-nop branch instruction 
2250         or predicated instruction, bail out by setting lim_pc to the current 
2251         pc value in the loop.  At the end, if the lim_pc value is still 
2252         beyond our calculated value and we have trust_limit set,
2253         use the lim_pc value.
2254
2255 2003-05-15  Andrew Cagney  <cagney@redhat.com>
2256
2257         * dummy-frame.h (deprecated_find_dummy_frame_regcache): Rename
2258         generic_find_dummy_frame.
2259         * dummy-frame.c (deprecated_find_dummy_frame_regcache): Update.
2260         (deprecated_generic_find_dummy_frame): Update.
2261         (deprecated_read_register_dummy): Update.
2262         * frame.c (deprecated_generic_get_saved_register): Update.
2263
2264 2003-05-15  Theodore A. Roth  <troth@openavr.org>
2265
2266         * avr-tdep.c (avr_breakpoint_from_pc): New function.
2267         (avr_gdbarch_init): Set breakpoint_from_pc method.
2268
2269 2003-05-15  Andrew Cagney  <cagney@redhat.com>
2270
2271         * regcache.c (build_regcache): Set deprecated_register_valid
2272         directly.
2273         (deprecated_grub_regcache_for_register_valid): Delete function.
2274         * regcache.h (deprecated_grub_regcache_for_register_valid): Delete
2275         declaration.
2276
2277 2003-05-15  David Carlton  <carlton@bactrian.org>
2278         
2279         Committed by Elena Zannoni <ezannoni@redhat.com>    
2280         * symtab.c (lookup_symbol_aux): Delete calls to
2281         lookup_symbol_aux_minsyms.
2282         (lookup_symbol_aux_minsyms): Comment out function and
2283         prototype. Delete lookup by mangled name.
2284
2285 2003-05-14  Kevin Buettner  <kevinb@redhat.com>
2286
2287         * dwarf2expr.c (new_dwarf_expr_context): Set ``stack_len'' to
2288         correctly indicate an empty stack and ``stack_allocated'' to the
2289         indicate the number of elements initially allocated.
2290         (dwarf_expr_grow_stack): Simplify method for computing new
2291         stack size.  Don't loop infinitely if ``stack_len'' is zero.
2292         (execute_stack_op): Move ``ctx->in_reg'' initialization
2293         out of loop.  Allow DW_OP_reg0 ... DW_OP_reg31 and DW_OP_regx to
2294         be used in conjuction with DW_OP_piece.  Revise error message
2295         accordingly.
2296
2297 2003-05-14  Theodore A. Roth  <troth@openavr.org>
2298
2299         * MAINTAINERS: Update my email address.
2300         * avr-tdep.c: Ditto.
2301
2302 2003-05-14  Elena Zannoni  <ezannoni@redhat.com>
2303
2304         * symtab.h (enum domain_enum): Rename from namespace_enum.
2305         (UNDEF_DOMAIN, VAR_DOMAIN, STRUCT_DOMAIN, LABEL_DOMAIN,
2306         VARIABLES_DOMAIN, FUNCTIONS_DOMAIN, TYPES_DOMAIN, METHODS_DOMAIN):
2307         Rename from UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE,
2308         LABEL_NAMESPACE, VARIABLES_NAMESPACE, FUNCTIONS_NAMESPACE,
2309         TYPES_NAMESPACE, METHODS_NAMESPACE.
2310         (SYMBOL_NAMESPACE): Rename to SYMBOL_DOMAIN.
2311         (struct symbol, struct partial_symbol): Rename field
2312         'namespace_enum namespace' to 'domain_enum domain'.
2313         (PSYMBOL_NAMESPACE): Rename to PSYMBOL_DOMAIN.
2314         Delete old define kludge for namespace.
2315
2316         * ada-exp.y, ada-lang.c, ada-lang.h, alpha-tdep.c, arm-tdep.c,
2317         blockframe.c, c-exp.y, c-valprint.c, coffread.c, dbxread.c,
2318         dwarf2read.c, dwarfread.c, f-exp.y, gdbtypes.c, gdbtypes.h,
2319         gnu-v3-abi.c, hppa-tdep.c, hpread.c, jv-exp.y, jv-lang.c,
2320         language.c, linespec.c, m2-exp.y, m3-nat.c, mdebugread.c,
2321         mips-tdep.c, nlmread.c, objc-exp.y, objc-lang.c, objfiles.c,
2322         p-exp.y, p-valprint.c, parse.c, printcmd.c, scm-lang.c, source.c,
2323         stabsread.c, stack.c, symfile.c, symfile.h, symmisc.c, symtab.c,
2324         valops.c, values.c, xcoffread.c, xstormy16-tdep.c: Replace all
2325         occurrences of the above.
2326
2327 2003-05-14  Ian Lance Taylor  <ian@airs.com>
2328
2329         * Makefile.in (install-only): Use $(SHELL) when running
2330         mkinstalldirs.
2331
2332 2003-05-13  Ian Lance Taylor  <ian@airs.com>
2333
2334         * MAINTAINERS (write after approval): Add myself.
2335
2336         * ser-pipe.c (_initialize_ser_pipe): Correct call to memset--swap
2337         second and third arguments.
2338         * ser-tcp.c (_initialize_ser_tcp): Likewise.
2339         * ser-unix.c (_initialize_ser_hardwire): Likewise.
2340
2341 2003-05-13  Andrew Cagney  <cagney@redhat.com>
2342
2343         * defs.h (store_address): Delete declaration.
2344         findvar.c (store_address): Delete function.
2345         * arm-tdep.c (arm_push_dummy_call): Replace store_address with
2346         store_unsigned_integer.
2347         * xstormy16-tdep.c (xstormy16_address_to_pointer): Ditto.
2348         * v850-tdep.c (v850_push_arguments): Ditto.
2349         * sparc-tdep.c (sparc_get_saved_register): Ditto.
2350         * sh-tdep.c (sh64_get_saved_register): Ditto.
2351         * rs6000-tdep.c (rs6000_push_arguments): Ditto.
2352         * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): Ditto.
2353         * mips-tdep.c (mips_eabi_push_arguments): Ditto.
2354         (mips_get_saved_register): Ditto.
2355         * ia64-tdep.c (ia64_get_saved_register): Ditto.
2356         (find_func_descr, ia64_push_arguments): Ditto.
2357         * i386-tdep.c (i386_push_arguments): Ditto.
2358         * hpux-thread.c (hpux_thread_fetch_registers): Ditto.
2359         * frv-tdep.c (frv_push_arguments): Ditto.
2360         * frame.c (legacy_saved_regs_prev_register): Ditto.
2361         (deprecated_generic_get_saved_register): Ditto.
2362         * findvar.c (unsigned_address_to_pointer): Ditto.
2363         * dwarf2read.c (dwarf2_const_value): Ditto.
2364         * arm-linux-tdep.c (arm_linux_push_arguments): Ditto.
2365         * alpha-tdep.c (alpha_push_arguments): Ditto.
2366
2367 2003-05-12  J. Brobecker  <brobecker@gnat.com>
2368
2369         * NEWS: Mention that the hppa-hpux port has been partially
2370         multiarched (32bit ABIT only, so far).
2371
2372 2003-05-11  Andrew Cagney  <cagney@redhat.com>
2373
2374         * Makefile.in (mi-symbol-cmds.o): Rename mi-cmd-symbol.
2375         * config/djgpp/fnchange.lst: Rename include/xtensa-isa-internal.h,
2376         include/xtensa-isa.h, sim/testsuite/sim/arm/misaligned1.ms,
2377         sim/testsuite/sim/arm/misaligned2.ms, and
2378         sim/testsuite/sim/arm/misaligned3.ms.
2379         * disasm.h (struct ui_file): Add opaque struct declaration.
2380         * config/pa/tm-hppa64.h (struct type, struct frame_info): Ditto.
2381         * frame.h (struct ui_file): Ditto.
2382
2383 2003-05-11  Mark Kettenis  <kettenis@gnu.org>
2384
2385         * value.h: Pretty print.
2386
2387 2003-05-10  Mark Kettenis  <kettenis@gnu.org>
2388
2389         * config/i386/tm-linux.h (I386_GNULINUX_TARGET): Remove define.
2390
2391 2003-05-08  Andrew Cagney  <cagney@redhat.com>
2392
2393         * regcache.h (max_register_size): Delete declaration.
2394         * regcache.c (max_register_size): Delete function.
2395         (struct regcache_descr): Delete field "max_register_size".
2396         (init_regcache_descr, init_legacy_regcache_descr): Assert that all
2397         registers fit in MAX_REGISTER_SIZE.
2398         (regcache_save): Replace max_register_size with MAX_REGISTER_SIZE.
2399         (regcache_restore, regcache_xfer_part, regcache_dump): Ditto.
2400         * thread-db.c: Replace max_register_size with MAX_REGISTER_SIZE.
2401         * sh-tdep.c, rom68k-rom.c, remote-sim.c, remote-mips.c: Ditto.
2402         * remote-e7000.c, monitor.c, mipsv4-nat.c, mips-nat.c: Ditto.
2403         * m68klinux-nat.c, lynx-nat.c, irix4-nat.c: Ditto.
2404         * hpux-thread.c, hppah-nat.c, hppab-nat.c, hppa-tdep.c: Ditto.
2405         * dve3900-rom.c, hppa-tdep.c: Ditto.
2406
2407 2003-05-08  David Carlton  <carlton@math.stanford.edu>
2408
2409         * valops.c (push_word): Fix typo.
2410
2411 2003-05-08  Andrew Cagney  <cagney@redhat.com>
2412
2413         * gdbarch.sh: Delete references to MAX_REGISTER_RAW_SIZE.
2414         * gdbarch.h: Re-generate.
2415         * defs.h (MAX_REGISTER_RAW_SIZE): Delete macro.
2416         (legacy_max_register_raw_size): Delete declaration.
2417         * regcache.c (legacy_max_register_raw_size): Delete function.
2418         * valops.c: Replace MAX_REGISTER_RAW_SIZE with MAX_REGISTER_SIZE.
2419         * target.c, stack.c, sparc-tdep.c, sh-tdep.c: Ditto.
2420         * rs6000-tdep.c, rs6000-nat.c, remote.c, remote-sim.c: Ditto.
2421         * remote-rdp.c, remote-array.c, regcache.c: Ditto.
2422         * ppc-linux-nat.c, monitor.c, mn10300-tdep.c: Ditto.
2423         * mips-tdep.c, mips-linux-tdep.c, m68klinux-nat.c: Ditto.
2424         * infptrace.c, ia64-tdep.c, i386-tdep.c, frame.c: Ditto.
2425         * findvar.c, dwarf2cfi.c: Ditto.
2426
2427 2003-05-08  Andrew Cagney  <cagney@redhat.com>
2428
2429         * mips-tdep.c (read_signed_register): New function, moved to here
2430         from "regcache.c".
2431         (read_signed_register_pid): Ditto.
2432         * regcache.c (read_signed_register_pid): Delete function, moved to
2433         "mips-tdep.c".
2434         (read_signed_register): Ditto.
2435         * regcache.h (read_signed_register): Delete declaration.
2436         (read_signed_register_pid): Delete declaration.
2437
2438 2003-05-08  Andrew Cagney  <cagney@redhat.com>
2439
2440         * gdbarch.sh: Add comments on MAX_REGISTER_SIZE.
2441         * gdbarch.h: Re-generate.
2442         * defs.h (MAX_REGISTER_VIRTUAL_SIZE): Delete macro.
2443         (legacy_max_register_virtual_size): Delete declaration.
2444         * infcmd.c (default_print_registers_info): Use MAX_REGISTER_SIZE.
2445         * d10v-tdep.c (d10v_print_registers_info): Ditto.
2446         * tracepoint.c (memrange_sortmerge): Ditto.
2447         * sparc-tdep.c (sparc_print_registers): Ditto.
2448         * regcache.c (legacy_max_register_virtual_size): Delete function.
2449
2450 2002-05-08  J. Brobecker  <brobecker@gnat.com>
2451
2452         * fork-child.c (escape_bang_in_quoted_argument): New function.
2453         (fork_inferior): Escape '!' characters in quoted arguments
2454         only when needed.
2455
2456 2003-05-08  J. Brobecker  <brobecker@gnat.com>
2457
2458         * dwarf2read.c (set_cu_language): Set the language to "minimal" if
2459         the language of the CU is not currently supported by GDB.
2460
2461 2003-05-08  J. Brobecker  <brobecker@gnat.com>
2462
2463         * defs.h (language): Add language_minimal enum value.
2464         * c-lang.c (minimal_language_defn): New language definition.
2465         (_initialize_c_language): Add the new minimal language to the list
2466         of languages known to GDB.
2467
2468 2003-05-08  Kevin Buettner  <kevinb@redhat.com>
2469
2470         * frame.c (get_frame_type): Don't attempt to lazily initialize
2471         frame's unwinder for legacy frames.
2472
2473 2003-05-07  Andrew Cagney  <cagney@redhat.com>
2474
2475         * ia64-tdep.c (ia64_remote_translate_xfer_address): Add "gdbarch"
2476         and "regcache" parameters.
2477         * avr-tdep.c (avr_remote_translate_xfer_address): Ditto.
2478
2479 2003-05-07  Jeff Johnston  <jjohnstn@redhat.com>
2480  
2481         * dwarf2read.c (dwarf_decode_lines): Only use output of 
2482         check_cu_functions() when calling record_line().  Do not update 
2483         the current address.
2484
2485 2003-05-07  Andrew Cagney  <cagney@redhat.com>
2486
2487         * fork-child.c (startup_inferior): Delete #ifdef STARTUP_INFERIOR
2488         code.
2489
2490 2003-05-07  Jim Blandy  <jimb@redhat.com>
2491
2492         Rename commands 'maint list symtabs' and 'maint list psymtabs' to
2493         'maint info symtabs' and 'maint info psymtabs'.
2494         * symmisc.c (maintenance_info_symtabs, maintenance_info_psymtabs):
2495         Renamed from maintenance_list_symtabs and maintenance_list_psymtabs.
2496         * symtab.h (maintenance_info_symtabs, maintenance_info_psymtabs):
2497         Declarations updated.
2498         * maint.c (maintenance_list_command): Delete.
2499         (_initialize_maint_cmds): Update calls to add_cmd.
2500         * gdbcmd.h (maintenancelistlist): Delete declaration.
2501         * cli/cli-cmds.c (maintenancelistlist): Delete.
2502         (init_cmd_lists): Don't initialize it.
2503         * cli/cli-cmds.h (maintenancelistlist): Delete declaration.
2504
2505 2003-05-07  Andrew Cagney  <cagney@redhat.com>
2506
2507         * d10v-tdep.c (remote_d10v_translate_xfer_address): Add
2508         "regcache".
2509         (d10v_print_registers_info): Update.
2510         (d10v_dmap_register, d10v_imap_register): Delete functions.
2511         (struct gdbarch_tdep): Add "regcache" parameter to "dmap_register"
2512         and "imap_register".
2513         (d10v_ts2_dmap_register, d10v_ts2_imap_register): Add "regcache".
2514         (d10v_ts3_dmap_register, d10v_ts3_imap_register): Add "regcache".
2515         * arch-utils.c (generic_remote_translate_xfer_address): Add
2516         "regcache" and "gdbarch" parameters.
2517         * gdbarch.sh (REMOTE_TRANSLATE_XFER_ADDRESS): Add "regcache"
2518         parameter.  Change class to multi-arch.
2519         * gdbarch.h, gdbarch.c: Re-generate.
2520         * remote.c (remote_xfer_memory): Use
2521         gdbarch_remote_translate_xfer_address.
2522         
2523 2003-05-07  Jeff Johnston  <jjohnstn@redhat.com>
2524
2525         * infrun.c (prev_pc): Move declaration ahead of proceed().
2526         (proceed): Refresh prev_pc value before resuming.
2527         (stop_stepping): Remove code to refresh prev_pc.
2528
2529 2003-05-06  Kris Warkentin <kewarken@qnx.com>
2530
2531         * nto-tdep.c: Removed stray comment.
2532
2533 2003-05-06  Kris Warkentin <kewarken@qnx.com>
2534
2535         * i386-nto-tdep.c: Fix old K&R function definitions.
2536         * nto-tdep.c: Likewise and change stat.h include to gdb_stat.h.
2537         Also change add_show_from_set() call to add_setshow_cmd().
2538         * nto-tdep.h: Remove PARAMS and grep ^func ARI hits.
2539
2540 2003-05-05  Andrew Cagney  <cagney@redhat.com>
2541
2542         * dummy-frame.c: Include "command.h" and "gdbcmd.h".
2543         (fprint_dummy_frames): New function.
2544         (maintenance_print_dummy_frames): New function.
2545         (_initialize_dummy_frame): Add command "maint print dummy-frames".
2546         * frame.c (fprint_frame_id): Make global.
2547         * frame.h (fprint_frame_id): Declare.
2548         * Makefile.in (dummy-frame.o): Update dependencies.
2549
2550 2003-05-05  Andrew Cagney  <cagney@redhat.com>
2551
2552         * gdbarch.sh (DEPRECATED_REGISTER_SIZE): Rename REGISTER_SIZE.
2553         (DEPRECATED_SIZEOF_CALL_DUMMY_WORDS): Rename
2554         SIZEOF_CALL_DUMMY_WORDS.
2555         (DEPRECATED_CALL_DUMMY_WORDS): Rename CALL_DUMMY_WORDS.
2556         (DEPRECATED_FIX_CALL_DUMMY): Rename FIX_CALL_DUMMY.
2557         (DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET): Rename
2558         CALL_DUMMY_BREAKPOINT_OFFSET.
2559         (DEPRECATED_CALL_DUMMY_START_OFFSET): Rename
2560         CALL_DUMMY_START_OFFSET.
2561         (DEPRECATED_CALL_DUMMY_LENGTH): Rename CALL_DUMMY_LENGTH.
2562         * gdbarch.h, gdbarch.c: Re-generate.
2563         * alpha-tdep.c, alphafbsd-tdep.c, arm-linux-tdep.c: Update.
2564         * arm-tdep.c, avr-tdep.c, breakpoint.c, cris-tdep.c: Update.
2565         * dummy-frame.c, dummy-frame.h, frv-tdep.c, gdbarch.c: Update.
2566         * gdbarch.h, gdbarch.sh, h8300-tdep.c, hppa-tdep.c: Update.
2567         * i386-tdep.c, ia64-tdep.c, infcall.c, inferior.h: Update.
2568         * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Update.
2569         * mips-tdep.c, mn10300-tdep.c, ns32k-tdep.c: Update.
2570         * rs6000-tdep.c, s390-tdep.c, sh-tdep.c, sol-thread.c: Update.
2571         * sparc-tdep.c, target.c, v850-tdep.c, valops.c: Update.
2572         * vax-tdep.c, x86-64-tdep.c, xstormy16-tdep.c: Update.
2573         * config/ia64/tm-ia64.h, config/m68k/tm-vx68.h: Update.
2574         * config/mips/tm-mips.h, config/pa/nm-hppah.h: Update.
2575         * config/pa/tm-hppa.h, config/pa/tm-hppa64.h: Update.
2576         * config/s390/tm-s390.h, config/sparc/tm-sp64.h: Update.
2577         * config/sparc/tm-sparc.h: Update.
2578
2579 2003-05-05  Kris Warkentin <kewarken@qnx.com>
2580
2581         * configure.tgt: Add i[3456]86-*-nto*.
2582         * i386-nto-tdep.c: New file.  i386 specific support for QNX Neutrino.
2583         * nto-tdep.c: New file. Neutrino target support routines.
2584         * nto-tdep.h: New file. Neutrino target header.
2585         * config/tm-qnxnto.h: New file.
2586         * config/i386/i386nto.mt: New file.
2587         * config/i386/tm-i386nto.h: New file.
2588         
2589 2003-05-04  Andrew Cagney  <cagney@redhat.com>
2590
2591         * gdbthread.h (save_infrun_state): Drop prev_func_name parameter.
2592         (load_infrun_state): Ditto.
2593         (struct thread_info): Drop "prev_func_name" field.
2594         * thread.c (load_infrun_state): Update.
2595         (save_infrun_state): Update.
2596         * infrun.c (prev_func_name): Delete variable.
2597         (init_wait_for_inferior): Do not clear prev_func_name.
2598         (stop_stepping, keep_going, context_switch): Do not swap
2599         prev_func_name.
2600         (handle_inferior_event, check_sigtramp2): Use pc_in_sigtramp
2601         instead of PC_IN_SIGTRAMP.
2602
2603 2003-05-04  Andrew Cagney  <cagney@redhat.com>
2604
2605         * sentinel-frame.c (sentinel_frame_prev_register): Replace
2606         REGISTER_BYTE with register_offset_hack.
2607         * regcache.c (init_regcache_descr): When REGISTER_BYTE_P, check
2608         that REGISTER_BYTE is consistent with the regcache.
2609         * gdbarch.sh (REGISTER_BYTE): Add a predicate.
2610         * gdbarch.h, gdbarch.c: Regenerate.
2611         
2612 2003-05-04  Mark Kettenis  <kettenis@gnu.org>
2613
2614         * i387-tdep.c (fxsave_offset): Add entries for %xmm8-%xmm15.
2615         (FXSAVE_ADDR, i387_supply_fxsave): Add support for %xmm8-%xmm15.
2616
2617         * i386-linux-nat.c (supply_gregset): Remove unnecessary casts.
2618
2619 2003-05-03  J. Brobecker  <brobecker@gnat.com>
2620
2621         From Thierry Schneider <tpschneider1@yahoo.com>
2622         * Makfile.in (SUBDIR_MI_OBS): Add dependency on mi-cmd-symbol.o.
2623         (SUBDIR_MI_SRCS): Add mi-cmd-symbol.c.
2624         (mi-cmd-symbol.o): Add rule.
2625
2626 2003-05-03  Andrew Cagney  <cagney@redhat.com>
2627
2628         * gdbarch.sh (PUSH_DUMMY_CODE): New architecture method, add
2629         comments noteing that it replaces the old FIX_CALL_DUMMY code.
2630         * gdbarch.h, gdbarch.c: Re-generate.
2631         * d10v-tdep.c (d10v_push_dummy_code): New function.
2632         (d10v_gdbarch_init): Set push_dummy_code.
2633         * infcall.c (legacy_push_dummy_code): New function.
2634         (generic_push_dummy_code): New function.
2635         (push_dummy_code): New function.
2636         (call_function_by_hand): Call push_dummy_code.  Pass bp_addr,
2637         instead of dummy_addr, to push_dummy_call.  Move call to
2638         generic_save_call_dummy_addr to outside of CALL_DUMMY_LOCATION
2639         switch.
2640         * sparc-tdep.c (sparc_gdbarch_init): Mention push_dummy_code.
2641
2642 2003-05-03  Andrew Cagney  <cagney@redhat.com>
2643
2644         * disasm.h (print_insn): Declare.
2645         * disasm.c (init_gdb_disassemble_info): New function.
2646         (gdb_disassembly): Call init_gdb_disassemble_info.
2647         (gdb_print_insn): New function.
2648         * v850-tdep.c (v850_scan_prologue): Call gdb_print_insn, instead
2649         of TARGET_PRINT_INSN.  Send debug info to "gdb_stdlog".
2650         * mcore-tdep.c: Include "disasm.h"
2651         (mcore_dump_insn): Call gdb_print_insn, instead of TARGET_PRINT_INSN.
2652         * d10v-tdep.c: Include "disasm.h".
2653         (display_trace): Call gdb_print_insn, instead of print_insn.
2654         (print_insn): Delete function.
2655         * printcmd.c: Include "disasm.h".
2656         (print_insn): Delete function.
2657         (print_formatted): Call gdb_print_insn, instead of print_insn.
2658         * Makefile.in (printcmd.o): Update dependencies.
2659         (mcore-tdep.o, d10v-tdep.o): Ditto.
2660         
2661 2003-05-02  Andrew Cagney  <cagney@redhat.com>
2662
2663         * std-regs.c (value_of_builtin_frame_pc_reg): Delete #ifdef
2664         PC_REGNUM, re-indent.
2665         * stack.c (frame_info): Use "pc" for the name of get_frame_pc when
2666         PC_REGNUM isn't set.
2667
2668         * gdbarch.sh (REGISTER_SIZE, REGISTER_BYTES): Make optional.
2669         * gdbarch.h, gdbarch.c: Re-generate.
2670         * d10v-tdep.c (d10v_gdbarch_init): Do not set register_size,
2671         register_virtual_size, pc_regnum, or register_bytes.
2672         (D10V_PC_REGNUM): Rename _PC_REGNUM.
2673         (d10v_register_type): Use D10V_PC_REGNUM.
2674         (d10v_print_registers_info, d10v_read_pc): Ditto.
2675         (d10v_write_pc, d10v_eva_prepare_to_trace): Ditto.
2676         (d10v_unwind_pc, d10v_frame_prev_register): Ditto.
2677
2678 2003-05-02  David Carlton  <carlton@bactrian.org>
2679
2680         * objfiles.c (allocate_objfile): For anonymous objfiles, allocate
2681         the name with mstrsave.
2682
2683 2003-05-02  Elena Zannoni  <ezannoni@redhat.com>
2684
2685         * charset.c (GDB_DEFAULT_TARGET_CHARSET,
2686         GDB_DEFAULT_HOST_CHARSET): Move to earlier in the file.
2687         (host_charset_name, target_charset_name): New vars for use by
2688         set/show commands.
2689         (host_charset_enum, target_charset_enum): New enums for set/show
2690         commands.
2691         (set_charset_sfunc, set_host_charset_sfunc,
2692         set_target_charset_sfunc): New functions.
2693         (set_host_charset, set_target_charset): Make static.
2694         (list_charsets, set_host_charset_command,
2695         set_target_charset_command): Delete functions.
2696         (show_charset_command): Rewrite as....
2697         (show_charset): Hook this up with the set/show command mechanism.
2698         (_initialize_charset): Change names of charsets to match the
2699         set/show enums. Use host_charset_name and target_charset_name.
2700         Use set/show mechanism for charset, host-charset, target-charset
2701         commands. Do not make 'show host-charset' and 'show
2702         target-charset' be aliases of 'show charset'.
2703
2704         * charset.h (set_host_charset, set_target_charset): Don't export,
2705         they are not used outside the file.
2706
2707 2003-05-01  Andrew Cagney  <cagney@redhat.com>
2708
2709         * disasm.c (gdb_disassemble_from_exec): Delete global variable.
2710         (gdb_disassembly): Make "di" non static, always initialize and
2711         cleanup.  Always use dis_asm_read_memory.
2712         (gdb_dis_asm_read_memory): Delete function.
2713
2714 2003-05-01  Andrew Cagney  <cagney@redhat.com>
2715
2716         * d10v-tdep.c (d10v_frame_align): Replace d10v_stack_align.
2717         (d10v_gdbarch_init): Set frame_align instead of stack_align.
2718
2719 2003-04-30  Andrew Cagney  <cagney@redhat.com>
2720
2721         * gdbarch.sh (deprecated_tm_print_insn_info): Rename
2722         "tm_print_insn_info".
2723         (TARGET_PRINT_INSN_INFO): Delete macro.
2724         (dis_asm_read_memory): Delete function declaration.
2725         (dis_asm_memory_error, dis_asm_print_address): Ditto.
2726         (tm_print_insn_info): Delete variable definition.
2727         (_initialize_gdbarch): Do not initialize "tm_print_insn_info".
2728         * gdbarch.h, gdbarch.c: Re-generate.
2729         * d10v-tdep.c (display_trace): Replace "tm_print_insn_info" with
2730         "deprecated_tm_print_insn_info".
2731         * mcore-tdep.c (mcore_dump_insn): Ditto.
2732         * mips-tdep.c (mips_gdbarch_init): Ditto.
2733         * sparc-tdep.c (_initialize_sparc_tdep): Ditto.
2734         * v850-tdep.c (v850_scan_prologue, v850_gdbarch_init): Ditto.
2735         * ia64-tdep.c (_initialize_ia64_tdep): Ditto.
2736         * printcmd.c (print_insn): Use "deprecated_tm_print_insn_info"
2737         instead of TARGET_PRINT_INSN_INFO, add comment.
2738         * s390-tdep.c (s390_get_frame_info): Instead of
2739         "dis_asm_read_memory", use "deprecated_tm_print_insn_info".
2740         (s390_check_function_end, s390_is_sigreturn): Ditto.
2741         * corefile.c (dis_asm_read_memory): Move to "disasm.c".
2742         (dis_asm_memory_error, dis_asm_print_address): Ditto.
2743         * disasm.c: Include "gdbcore.h".
2744         (_initialize_disasm): New function, initialize
2745         "deprecated_tm_print_insn_info".
2746         (deprecated_tm_print_insn_info): New variable.
2747         (dis_asm_read_memory): Moved from "corefile.c", made static.
2748         (dis_asm_print_address, dis_asm_memory_error): Ditto.
2749         * Makefile.in (disasm.o): Update dependencies.
2750
2751 2003-04-30  Andrew Cagney  <cagney@redhat.com>
2752
2753         * sparc-tdep.c (SPARC_HAS_FPU): When multi-arch, define as 1.
2754
2755 2003-04-29  Adam Fedor  <fedor@gnu.org>
2756
2757         * eval.c (evaluate_subexp_standard): Handle ObjC ops.
2758         * infcall.c (find_function_addr): Make non-static.
2759         * infcall.h (find_function_addr): Declare.
2760         * Makefile.in (eval.o): Update dependencies.
2761
2762 2003-04-28  Adam Fedor  <fedor@gnu.org>
2763
2764         * symtab.c (symbol_find_demangled_name): Check for and demangle
2765         ObjC symbols.
2766         (symbol_init_demangled_name): Init for language_objc as well.
2767
2768 2003-04-28  Andrew Cagney  <cagney@redhat.com>
2769
2770         * gdbarch.sh (DEPRECATED_TARGET_READ_FP): Replace TARGET_READ_FP.
2771         (DEPRECATED_FP_REGNUM): Replace FP_REGNUM.
2772         * gdbarch.h, gdbarch.c: Re-generate.
2773         * infcall.c (call_function_by_hand): Use DEPRECATED_FP_REGNUM,
2774         DEPRECATED_TARGET_READ_FP, or "sp" to create the dummy frame ID.
2775         * inferior.h (deprecated_read_fp): Rename read_fp.
2776         (generic_target_read_fp): Delete declaration.
2777         * regcache.c (generic_target_read_fp): Delete function.
2778         (deprecated_read_fp): Replace read_fp, use
2779         DEPRECATED_TARGET_READ_FP or DEPRECATED_FP_REGNUM.
2780         * d10v-tdep.c (d10v_read_fp): Delete function.
2781         (d10v_gdbarch_init): Do not set deprecated_read_fp.
2782
2783         * sparc-tdep.c (sparc_gdbarch_init): Do not set
2784         deprecated_target_read_fp to generic_target_read_fp.
2785         * sh-tdep.c (sh_gdbarch_init): Ditto.
2786         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
2787         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2788         * frv-tdep.c (frv_gdbarch_init): Ditto.
2789
2790         * xstormy16-tdep.c (xstormy16_gdbarch_init): Set
2791         deprecated_fp_regnum.
2792         * x86-64-tdep.c (x86_64_init_abi): Ditto.
2793         * vax-tdep.c (vax_gdbarch_init): Ditto.
2794         * v850-tdep.c (v850_gdbarch_init): Ditto.
2795         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
2796         * sh-tdep.c (sh_gdbarch_init): Ditto.
2797         * s390-tdep.c (s390_gdbarch_init): Ditto.
2798         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
2799         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2800         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
2801         * m68k-tdep.c (m68k_gdbarch_init): Ditto.
2802         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2803         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
2804         * i386-tdep.c (i386_gdbarch_init): Ditto.
2805         * hppa-tdep.c (hppa_gdbarch_init): Ditto.
2806         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
2807         * frv-tdep.c (frv_gdbarch_init): Ditto.
2808         * cris-tdep.c (cris_gdbarch_init): Ditto.
2809         * avr-tdep.c (avr_gdbarch_init): Ditto.
2810         * arm-tdep.c (arm_gdbarch_init): Ditto.
2811         * alpha-tdep.c (alpha_gdbarch_init): Ditto.
2812
2813         * x86-64-tdep.c (x86_64_init_abi): Set deprecated_target_read_fp.
2814         * v850-tdep.c (v850_gdbarch_init): Ditto.
2815         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
2816         * sh-tdep.c (sh_gdbarch_init): Ditto.
2817         * s390-tdep.c (s390_gdbarch_init): Ditto.
2818         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
2819         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2820         * mips-tdep.c (mips_gdbarch_init): Ditto.
2821         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2822         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
2823         * hppa-tdep.c (hppa_gdbarch_init): Ditto.
2824         * frv-tdep.c (frv_gdbarch_init): Ditto.
2825         * avr-tdep.c (avr_gdbarch_init): Ditto.
2826         * arm-tdep.c (arm_gdbarch_init): Ditto.
2827
2828         * vax-tdep.c (vax_frame_init_saved_regs): Replace FP_REGNUM with
2829         DEPRECATED_FP_REGNUM.
2830         (vax_push_dummy_frame, vax_pop_frame): Ditto.
2831         * std-regs.c (value_of_builtin_frame_fp_reg): Ditto.
2832         * sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
2833         (sparc_push_dummy_frame, sparc64_read_fp): Ditto.
2834         (sparc32_register_virtual_type): Ditto.
2835         * sh-tdep.c (sh64_frame_chain): Ditto.
2836         (sh64_get_saved_register, sh64_pop_frame): Ditto.
2837         (sh_nofp_frame_init_saved_regs): Ditto.
2838         (sh64_nofp_frame_init_saved_regs): Ditto.
2839         (sh_fp_frame_init_saved_regs): Ditto.
2840         * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
2841         * remote-e7000.c (fetch_regs_from_dump): Ditto.
2842         * procfs.c (procfs_fetch_registers): Ditto.
2843         (procfs_store_registers): Ditto.
2844         * ns32knbsd-nat.c (fetch_inferior_registers): Ditto.
2845         (store_inferior_registers, fetch_core_registers): Ditto.
2846         (fetch_kcore_registers, clear_regs): Ditto.
2847         * ns32k-tdep.c (ns32k_frame_init_saved_regs): Ditto.
2848         (ns32k_push_dummy_frame, ns32k_pop_frame): Ditto.
2849         * nlm/i386.h (DEPRECATED_FP_REGNUM): Ditto.
2850         * nlm/i386.c (do_status): Ditto.
2851         * mipsv4-nat.c (supply_gregset): Ditto.
2852         * mips-tdep.c: Ditto for comments.
2853         * mips-nat.c (fetch_inferior_registers): Ditto.
2854         (store_inferior_registers, fetch_core_registers): Ditto.
2855         * m68k-tdep.c (m68k_push_dummy_frame): Ditto.
2856         (m68k_pop_frame, m68k_frame_init_saved_regs): Ditto.
2857         * i386-tdep.c (i386_frame_init_saved_regs): Ditto.
2858         (i386_do_pop_frame, i386_register_type): Ditto.
2859         * hppa-tdep.c (hppa_frame_chain): Ditto.
2860         (hppa_push_dummy_frame, find_dummy_frame_regs): Ditto.
2861         (hppa_pop_frame, hppa_read_fp): Ditto.
2862         (skip_prologue_hard_way, hppa_frame_find_saved_regs): Ditto.
2863         * cris-tdep.c (cris_examine, cris_pop_frame): Ditto.
2864         * config/vax/nm-vax.h (REGISTER_U_ADDR): Ditto.
2865         * config/sparc/tm-sparc.h (DEPRECATED_FP_REGNUM): Ditto.
2866         * config/sparc/tm-sp64.h (DEPRECATED_FP_REGNUM): Ditto.
2867         * config/s390/tm-s390.h (DEPRECATED_FP_REGNUM): Ditto.
2868         * config/pa/tm-hppa64.h (DEPRECATED_FP_REGNUM): Ditto.
2869         * config/ia64/tm-ia64.h (DEPRECATED_FP_REGNUM): Ditto.
2870         * blockframe.c: Ditto for comments.
2871         * arch-utils.h: Ditto for comments.
2872         * arch-utils.c (legacy_virtual_frame_pointer): Ditto.
2873         * alphanbsd-tdep.c (fetch_core_registers): Ditto.
2874         * alphabsd-nat.c (fetch_inferior_registers): Ditto.
2875         * alpha-tdep.h: Ditto for comments.
2876         * alpha-tdep.c (alpha_cannot_fetch_register): Ditto.
2877         (alpha_cannot_store_register): Ditto.
2878         (alpha_push_dummy_frame): Ditto.
2879         * alpha-nat.c (supply_gregset): Ditto.
2880
2881         * config/sparc/tm-sp64.h (DEPRECATED_TARGET_READ_FP): Update.
2882         * config/pa/tm-hppa64.h (DEPRECATED_TARGET_READ_FP): Update.
2883         * config/sparc/tm-sparc.h: Update comment.
2884
2885         * hppa-tdep.c (hppa_init_extra_frame_info): Use
2886         deprecated_read_fp instead of TARGET_READ_FP.
2887         (hppa_init_extra_frame_info, hppa_frame_chain): Ditto.
2888         (hppa_push_dummy_frame, hppa_read_fp): Ditto.
2889         * sparc-tdep.c (sparc_init_extra_frame_info): Use
2890         deprecated_read_fp instead of read_fp.
2891         * s390-tdep.c (s390_push_arguments): Ditto.
2892         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
2893         * frame.h: Ditto in comments.
2894         * frame.c (legacy_get_prev_frame): Ditto.
2895         * dummy-frame.c (dummy_frame_this_id): Ditto.
2896         * arm-tdep.c (arm_init_extra_frame_info): Ditto.
2897
2898 2003-04-28  Andrew Cagney  <cagney@redhat.com>
2899
2900         * gdbarch.sh (deprecated_tm_print_insn): Rename tm_print_insn.
2901         * gdbarch.h, gdbarch.c: Re-generate.
2902         * xstormy16-tdep.c (_initialize_xstormy16_tdep): Update.
2903         * vax-tdep.c (_initialize_vax_tdep): Update.
2904         * v850-tdep.c (_initialize_v850_tdep): Update.
2905         * sparc-tdep.c (_initialize_sparc_tdep): Update.
2906         * s390-tdep.c (_initialize_s390_tdep): Update.
2907         * ns32k-tdep.c (_initialize_ns32k_tdep): Update.
2908         * mn10300-tdep.c (_initialize_mn10300_tdep): Update.
2909         * mips-tdep.c (_initialize_mips_tdep): Update.
2910         * mcore-tdep.c (_initialize_mcore_tdep): Update.
2911         * m68k-tdep.c (_initialize_m68k_tdep): Update.
2912         * ia64-tdep.c (_initialize_ia64_tdep): Update.
2913         * hppa-tdep.c (_initialize_hppa_tdep): Update.
2914         * h8300-tdep.c (_initialize_h8300_tdep): Update.
2915         * frv-tdep.c (_initialize_frv_tdep): Update.
2916         * cris-tdep.c (cris_delayed_get_disassembler): Update.
2917         (_initialize_cris_tdep): Update.
2918         * arch-utils.c (legacy_print_insn): Update.
2919         * alpha-tdep.c (_initialize_alpha_tdep): Update.
2920
2921 2003-04-26  Adam Fedor  <fedor@gnu.org>
2922
2923         * linespec.c (decode_objc): New function to decode ObjC calls
2924         (decode_line_1): Check for ObjC calls (using decode_objc)
2925         * Makefile (linespec.o): Update dependencies.
2926
2927 2003-04-26  Daniel Jacobowitz  <drow@mvista.com>
2928
2929         * breakpoint.h (struct breakpoint_ops): New.
2930         (struct breakpoint): Add ops member.
2931
2932         * breakpoint.c (print_bp_stop_message, print_one_breakpoint)
2933         (mention): Use new breakpoint ops member.
2934         (set_raw_breakpoint): Initialize ops field to NULL.
2935         (print_exception_catchpoint, print_one_exception_catchpoint)
2936         (print_mention_exception_catchpoint, handle_gnu_v3_exceptions): New.
2937         (gnu_v3_exception_catchpoint_ops): New.
2938         (catch_exception_command_1): Call handle_gnu_v3_exceptions.
2939
2940 2003-04-25  Adam Fedor  <fedor@gnu.org>
2941
2942         * Makefile.in (COMMON_OBS): Add objc-lang.o
2943
2944 2003-04-25  Andrew Cagney  <cagney@redhat.com>
2945
2946         * d10v-tdep.c (print_insn): Delete function.
2947         (display_trace): Use TARGET_PRINT_INSN.
2948         (_initialize_d10v_tdep): Do not set tm_print_insn.
2949         (d10v_gdbarch_init): Set print_insn.
2950
2951 2003-04-25  Andrew Cagney  <cagney@redhat.com>
2952
2953         * d10v-tdep.c (d10v_extract_return_value): Delete call to printf.
2954         (_initialize_d10v_tdep): Use add_setshow_boolean_cmd.
2955         (d10v_frame_unwind_cache): Use FRAME_OBSTACK_CALLOC.
2956         (NR_DMAP_REGS, A0_REGNUM): Delete, replaced by ...
2957         (nr_dmap_regs, a0_regnum): ... new functions.
2958         (d10v_print_registers_info): Use a0_regnum, use register_size.
2959         (d10v_register_byte): Delete function.
2960         (d10v_register_raw_size): Delete function.
2961         (d10v_register_type): Use a0_regnum.
2962         (d10v_print_registers_info): Use a0_regnum.
2963         (D10V_SP_REGNUM): Rename _SP_REGNUM, replace it and SP_REGNUM.
2964         (d10v_gdbarch_init): Do not set register_byte or
2965         register_raw_size, use D10V_SP_REGNUM to set sp_regnum.
2966         (d10v_pointer_to_address): Use extract_unsigned_integer instead of
2967         extract_address.
2968         (trace_command): Use XCALLOC.
2969         (print_insn): Delete reference to tm_print_insn.
2970         (saved_regs_unwinder): Use store_unsigned_integer instead of
2971         store_address.
2972         * frame.h (FRAME_OBSTACK_CALLOC): Define
2973
2974 2003-04-25  David Carlton  <carlton@bactrian.org>
2975
2976         * config/djgpp/fnchange.lst: Add testsuite/gdb.c++/maint.exp.
2977
2978 2003-04-24  Adam Fedor  <fedor@gnu.org>
2979
2980         * objc-lang.c: Include "valprint.h"
2981         * Makefile.in (objc-lang.o): Update dependencies.
2982
2983 2003-04-24  Adam Fedor  <fedor@gnu.org>
2984
2985         * objc-lang.c (FETCH_ARGUMENT, CONVERT_FUNCPTR): Remove 
2986         architecture dependant compilation and mark as unimplemented
2987         (until they get put in the gdbarch vector).
2988
2989 2003-04-23  David Carlton  <carlton@bactrian.org>
2990
2991         * cp-support.c (cp_find_first_component): Accept 'operator' in
2992         more locations.
2993
2994 2003-04-23  Andrew Cagney  <cagney@redhat.com>
2995
2996         * infcall.c (call_function_by_hand): Eliminate redundant
2997         indentation.  Move "saved_async" and "old_cleanups" to where they
2998         are needed.
2999         
3000 2003-04-23  Andrew Cagney  <cagney@redhat.com>
3001
3002         * infcall.c (call_function_by_hand): Eliminate the variables "rc"
3003         and "buffer".  Move the "name" code to where it is needed.
3004
3005 2003-04-23  Andrew Cagney  <cagney@redhat.com>
3006
3007         * infcall.c (call_function_by_hand): Move variables "start_sp",
3008         "dummy", "sizeof_dummy1" and "dummy1" and corresponding dummy call
3009         code to ON_STACK switch branch.
3010         
3011 2003-04-23  Andrew Cagney  <cagney@redhat.com>
3012
3013         * infcall.c (call_function_by_hand): Make declaration of "i",
3014         "sal", "bpt" and "old_sp" more local to their use.  Delete #if
3015         lint.
3016
3017 2003-04-23  Andrew Cagney  <cagney@redhat.com>
3018
3019         * infcall.c (call_function_by_hand): Delete variable
3020         "n_method_args".  Localize "param_type"'s declaration to the loop
3021         that it is used.  Reinstate code assigning to said variable -
3022         deleted on 2002-06-14.  Rationalize calls to value_args_coerce.
3023         Rationalize code using "param_type".
3024
3025 2003-04-22  Andrew Cagney  <cagney@redhat.com>
3026
3027         * infcall.c (call_function_by_hand): Use new variable "bp_addr" to
3028         compute the breakpoint address.  Only call FIX_CALL_DUMMY when
3029         ON_STACK.  Eliminate the variable "addr".  Do not pass "real_pc"
3030         to DEPRECATED_PUSH_RETURN_ADDRESS.
3031
3032 2003-04-22  Kevin Buettner  <kevinb@redhat.com>
3033
3034         * dwarf2loc.c (dwarf2_evaluate_loc_desc): Invoke DWARF2_REG_TO_REGNUM
3035         on the DWARF2 register number prior to fetching a register.
3036
3037 2003-04-22  J. Brobecker  <brobecker@gnat.com>
3038
3039         * config/pa/tm-hppa.h (SOFT_FLOAT): Delete this macro.
3040         Update all the tests using SOFT_FLOAT considering the fact that
3041         this macro was always set to 0. 
3042         * config/pa/tm-hppa64.h: Update all the tests using SOFT_FLOAT
3043         considering the fact that this macro was always set to 0.
3044         * hppa-tdep.h (hppa_store_return_value): Likewise.
3045         (hppa_extract_return_value): Likewise.
3046
3047 2003-04-22  J. Brobecker  <brobecker@gnat.com>
3048
3049         * config/pa/tm-hppa.h: Remove obsolete code, was used by
3050         the hppa-pro target only.
3051
3052 2003-04-21  J. Brobecker  <brobecker@gnat.com>
3053
3054         Ongoing multi-arch conversion effort for HP/UX:
3055         * config/pa/tm-hppa.h: Move all macro that are no longer
3056         defined now that GDB_MULTI_ARCH is now set to 1 from here...
3057         * config/pa/tm-hppa64.h: ... to here (hppa64 is not multiarch'ed yet).
3058
3059 2003-04-21  J. Brobecker  <brobecker@gnat.com>
3060
3061         * config/pa/tm-hppa.h: Obsolete a section that was only used
3062         for hppa-pro.
3063
3064 2003-04-21  J. Brobecker  <brobecker@gnat.com>
3065
3066         Ongoing multi-arch conversion for HP/UX.
3067         * config/pa/tm-hppa.h (GDB_MULTI_ARCH): Set to 1. Do not define
3068         if already defined (allows hppa64 to stay non-multiarched for now).
3069         * config/pa/tm-hppa64.h (GDB_MULTI_ARCH): Define.
3070
3071 2003-04-21  Andrew Cagney  <cagney@redhat.com>
3072
3073         * frame.c (frame_id_eq): Fail when the code_addr's do not match.
3074
3075 2003-04-21  Andrew Cagney  <cagney@redhat.com>
3076
3077         * i386-tdep.c (i386_gdbarch_init): Replace "mmx_num_regs" with
3078         "i386_num_mmx_regs".
3079
3080 2003-04-21  Andrew Cagney  <cagney@redhat.com>
3081
3082         * infcall.c: New file.
3083         * infcall.h: New file.
3084         * valarith.c: Include "infcall.h".
3085         * scm-lang.c, objc-lang.cm, hppa-tdep.c, gcore.c: Ditto.
3086         * eval.c, ada-valprint.c, ada-lang.c: Ditto.
3087         * Makefile.in (valarith.o, scm-lang.o): Update dependencies.
3088         (objc-lang.o, hppa-tdep.o, gcore.o): Update dependencies.
3089         (eval.o, ada-valprint.o, ada-lang.o): Update dependencies.
3090         (SFILES): Add "infcall.c"
3091         (COMMON_OBS): Add "infcall.o".
3092         (infcall.o): Specify dependencies.
3093         * value.h (call_function_by_hand): Delete declaration.
3094         * inferior.h (run_stack_dummy): Delete declaration.
3095         * infcmd.c (breakpoint_auto_delete_contents): Move to "infcall.c".
3096         (run_stack_dummy): Move to "infcall.c", merged into
3097         call_function_by_hand.
3098         * valops.c (call_function_by_hand): Moved to "infcall.c".
3099         (find_function_addr, value_arg_coerce): Ditto.
3100         (unwindonsignal_p, coerce_float_to_double): Ditto.
3101         (_initialize_valops): Move "set/show coerce-float-to-double", and
3102         "set/show unwindonsignal" commands to "infcall.c".
3103         * v850-tdep.c, target.h: Update comments.
3104         * sparc-tdep.c (sparc_fix_call_dummy): Update comments.
3105         * sh-tdep.c (sh_init_extra_frame_info): Update comments.
3106         (sh64_init_extra_frame_info): Update comments.
3107         * mn10300-tdep.c: Update comments.
3108         * mcore-tdep.c (mcore_init_extra_frame_info): Update comments.
3109         * config/sparc/tm-sparc.h: Update comments.
3110         * breakpoint.h: Update comments.
3111         * avr-tdep.c (avr_init_extra_frame_info): Update comments.
3112         * arm-tdep.c: Update comment.
3113
3114 2003-04-19  Mark Kettenis  <kettenis@gnu.org>
3115
3116         * i386-tdep.c (i386_num_register_names): New variable.
3117         (i386_num_mmx_regs): Renamed from mmx_num_regs.
3118         (MM0_REGNUM): Remove redundant parentheses in define.
3119         (i386_mmx_regnum_p): Use i386_mmx_regnum instead of mmx_num_regs.
3120         (i386_fp_regnum_p, i386_fpc_regnum_p, i386_sse_regnum_p,
3121         i386_mxcsr_regnum_p): Remove redundant parentheses.
3122         (i386_register_name): Use i386_num_register_names.
3123         
3124         * i386-tdep.c (i386_extract_return_value,
3125         i386_store_return_value): Correct check for availability of
3126         floating-point registers.
3127
3128         * i386-tdep.c (i386_frame_num_args): Remove function.
3129         (i386_gdbarch_init): Set frame_num_args to frame_num_args_unknown.
3130
3131         * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Renamed from
3132         mmx_regnum_to_fp_regnum.  Adjust all callers.
3133
3134         * i386-tdep.c (i386_get_longjmp_target): Use
3135         TYPE_LENGTH(builtin_type_void_func_ptr) instead of TARGET_PTR_BIT
3136         and TARGET_CHAR_BIT.  Use extract_typed_address instead of
3137         extract_address.
3138
3139 2003-04-19  Mark Kettenis  <kettenis@gnu.org>
3140
3141         * core-regset.c: Update comments to reflect reality.  Re-order
3142         includes.
3143         (fetch_core_registers): Use switch instead of if.  Remove
3144         redundant prototype.
3145
3146 2003-04-18  Jim Blandy  <jimb@redhat.com>
3147
3148         * s390-tdep.c (s390_frame_align): New function.
3149         (s390_gdbarch_init): Register it with the gdbarch object.
3150
3151 2003-04-17  Richard Henderson  <rth@redhat.com>
3152
3153         * remote.c (minitelnet): Don't redeclare escape_count, echo_check.
3154
3155 2003-04-17  Michael Snyder  <msnyder@redhat.com>
3156             Karen Bennet  <bennet@redhat.com>
3157
3158         Committed by Elena Zannoni  <ezannoni@redhat.com>
3159         * gdb_gcore.sh: New script to create a core dump of a process.
3160         
3161 2003-04-17  Elena Zannoni  <ezannoni@redhat.com>
3162
3163         * values.c (value_being_returned): Don't fetch the return
3164         value if the return type is void.
3165
3166 2003-04-17  Jeff Johnston  <jjohnstn@redhat.com>
3167
3168         * thread-db.c: Reindented.
3169  
3170 2003-04-17  Jeff Johnston  <jjohnstn@redhat.com>
3171  
3172         * gdb_indent.sh: Recognize td_thrhandle_t, td_event_msg_t, 
3173         td_thr_events_t, td_notify_t, td_thr_iter_f, and td_thrinfo_t
3174         as types.
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199         
3200 2003-04-16  Kevin Buettner  <kevinb@redhat.com>
3201
3202         * rs6000-tdep.c (rs6000_gdbarch_init): For the SysV ABI, set
3203         the size of ``long double'' to 16, instead of 8.
3204
3205 2003-04-16  Mark Kettenis  <kettenis@gnu.org>
3206
3207         * i386-linux-nat.c: Add some whitespace to make things more
3208         readable.
3209         (fetch_register, store_register, fetch_inferior_registers,
3210         store_inferior_registers): Get rid of assignment in if-statement.
3211         (store_register): Fix typo in error message.
3212
3213 2003-04-16  Andrew Cagney  <cagney@redhat.com>
3214
3215         * utils.c (xmmalloc): Always allocate something, matches
3216         libiberty/xmalloc's semantics.
3217         (xmrealloc, xmcalloc): Ditto.
3218
3219 2003-04-16  Andrew Cagney  <cagney@redhat.com>
3220
3221         * frame.c (get_prev_frame): Do not initialize "unwind" or "type",
3222         update comments.
3223         (get_frame_type): Initialize unwind and type when needed.
3224         (get_frame_id, frame_register_unwind): Ditto.
3225
3226 2003-04-16  Andrew Cagney  <cagney@redhat.com>
3227
3228         * NEWS: Mention that sparclet-*-* and sparclite-*-* have been made
3229         obsolete.
3230         * sparc-tdep.c: Obsolete SPARCLET and SPARCLITE code.
3231         * sparcl-stub.c: Obsolete file.
3232         * config/sparc/tm-sparclet.h: Obsolete file.
3233         * sparclet-stub.c: Obsolete file.
3234         * sparclet-rom.c: Obsolete file.
3235         * sparcl-tdep.c: Obsolete file.
3236         * config/sparc/tm-sparclite.h: Obsolete file.
3237         * config/sparc/sparclite.mt: Obsolete file.
3238         * config/sparc/sparclet.mt: Obsolete file.
3239         * configure.tgt: Make sparclet-*-*, sparclite-*-*, and
3240         sparc86x-*-* obsolete.
3241
3242 2003-04-15  David Carlton  <carlton@math.stanford.edu>
3243
3244         * Makefile.in (SFILES): Add cp-namespace.c.
3245         (COMMON_OBS): Add cp-namespace.o.
3246         (block.o): Depend on gdb_obstack_h and cp_support_h.
3247         (buildsym.o): Depend on cp_support_h.
3248         (cp-namespace.o): New.
3249         (cp-support.o): Depend on gdb_string_h, demangle_h, gdb_assert_h,
3250         gdb_obstack_h, symtab_h, symfile_h, and gdbcmd_h.
3251         (dwarf2read.o): Depend on cp_support_h.
3252         * jv-lang.c (get_java_class_symtab): Set BLOCK_NAMESPACE.
3253         * dwarf2read.c (process_die): Set processing_has_namespace_info,
3254         processing_current_namespace.
3255         (read_namespace): Update processing_current_namespace; check for
3256         anonymous namespaces.
3257         (dwarf2_name): New function.
3258         (dwarf2_extension): Ditto.
3259         * cp-support.h: Update copyright, contributors.
3260         Add inclusion guards.
3261         Add opaque declaration for structs obstack, block, symbol.
3262         (struct using_direct): New struct.
3263         Add declarations for cp_find_first_component,
3264         cp_entire_prefix_len, processing_has_namespace_info,
3265         processing_current_namespace, cp_is_anonymous,
3266         cp_add_using_directive, cp_initialize_namespace,
3267         cp_finalize_namespace, cp_set_block_scope,
3268         cp_scan_for_anonymous_namespaces.
3269         * cp-namespace.c: New file.
3270         * cp-support.c: Update copyright.
3271         Include ctype.h, gdb_assert.h, gdbcmd.h.
3272         New variable maint_cplus_cmd_list.
3273         (cp_find_first_component): New function.
3274         (cp_entire_prefix_len, maint_cplus_command)
3275         (first_component_command, _initialize_cp_support): Ditto.
3276         * buildsym.c: Include cp-support.h.
3277         New variable using_list.
3278         (add_symbol_to_list): Check for anonymous namespaces.
3279         (finish_block): Set block's scope.
3280         (start_symtab): Initialize C++ namespace support.
3281         (end_symtab): Finalize C++ namespace support.
3282         * block.h: Add opaque declarations for structs
3283         block_namespace_info, using_direct, and obstack.
3284         Add declarations for block_set_scope and block_set_using.
3285         (struct block): Add 'language_specific' member.
3286         (BLOCK_NAMESPACE): New macro.
3287         * block.c: Include gdb_obstack.h and cp-support.h.
3288         (struct block_namespace_info): New struct.
3289         (block_set_scope): New function.
3290         (block_set_using, block_initialize_namespace): Ditto.
3291
3292 2003-04-14  Kevin Buettner  <kevinb@redhat.com>
3293
3294         * solib-svr4.c (svr4_have_link_map_offsets): New function.
3295         (locate_base): Return early if there aren't any link map offsets.
3296         (svr4_solib_create_inferior_hook): Warn if shared library support
3297         is unavailable.
3298
3299 2003-04-14  David Carlton  <carlton@math.stanford.edu>
3300
3301         * symtab.c (symbol_set_names): Add prefix when storing Java names
3302         in hash table.  Fix for PR java/1039.
3303
3304 2003-04-14  David Carlton  <carlton@math.stanford.edu>
3305
3306         * symtab.c (symbol_set_names): Rename 'name' arg to
3307         'linkage_name', and 'tmpname' variable to 'linkage_name_copy'.
3308         * symtab.h: Change 'name' argument in declaration of
3309         symbol_set_names to 'linkage_name'.
3310         (SYMBOL_SET_NAMES): Change 'name' argument to 'linkage_name'.
3311
3312 2003-04-14  Andrew Cagney  <cagney@redhat.com>
3313
3314         * mips-tdep.c (mips_read_sp): Do not apply ADDR_BITS_REMOVE,
3315         return the fully sign-extended register value.
3316         (get_frame_pointer): Ditto.
3317         (mips_pop_frame): Initialize "proc_desc" after checking for a
3318         dummy frame.
3319
3320 2003-04-14  Andrew Cagney  <cagney@redhat.com>
3321
3322         * mips-tdep.c (mips_push_dummy_frame): Delete function.
3323         (MASK, PUSH_FP_REGNUM, GEN_REG_SAVE_MASK): Delete macros.
3324         (FLOAT_REG_SAVE_MASK, FLOAT_SINGLE_REG_SAVE_MASK): Delete macro.
3325         (mips_push_register): Delete function.
3326         (mips_dump_tdep): Delete references to GEN_REG_SAVE_MASK and
3327         PUSH_FP_REGNUM.
3328
3329 2003-04-14  Jim Blandy  <jimb@redhat.com>
3330
3331         * symmisc.c: #include "gdb_regex.h".
3332         (maintenance_list_symtabs, maintenance_list_psymtabs): New
3333         functions.
3334         * maint.c (maintenance_list_command): New function.
3335         (_initialize_maint_cmds): Register the above as commands.
3336         * symtab.h (maintenance_list_symtabs,
3337         maintenance_list_psymtabs): New declarations.
3338         * cli/cli-cmds.c (maintenancelistlist): New variable.
3339         (init_cmd_lists): Initialize it.
3340         * cli/cli-cmds.h (maintenancelistlist): New declaration.
3341         * gdbcmd.h (maintenancelistlist): New declaration.
3342         * Makefile.in (symmisc.o): Update dependencies.
3343
3344 2003-04-14  Elena Zannoni  <ezannoni@redhat.com>
3345
3346         * s390-nat.c: Include asm/types.h for addr_t.
3347
3348 2003-04-14  Corinna Vinschen  <vinschen@redhat.com>
3349
3350         * cp-valprint.c (cp_print_class_method): Call unpack_pointer() with
3351         actually incoming type.
3352
3353 2003-04-13  Andrew Cagney  <cagney@redhat.com>
3354
3355         * ppc-linux-tdep.c: Use get_frame_base, get_frame_pc,
3356         get_next_frame and get_frame_saved_regs.
3357
3358 2003-04-13  Andrew Cagney  <cagney@redhat.com>
3359
3360         * reggroups.c (default_register_reggroup_p): Use NUM_REGS instead
3361         of gdbarch_num_regs.
3362
3363 2003-04-13  Andrew Cagney  <cagney@redhat.com>
3364
3365         * frame.h: Mention what replaced what in "struct frame_info".
3366         * hppa-hpux-tdep.c: Use get_frame_base, get_frame_pc and
3367         deprecated_update_frame_base_hack and
3368         deprecated_update_frame_pc_hack.
3369         * hppa-tdep.c: Ditto.
3370
3371 2003-04-13  Daniel Jacobowitz  <drow@mvista.com>
3372
3373         * dwarf2expr.h (struct dwarf_expr_context): Remove extra arguments
3374         to read_reg and update its comment.  Remove regnum member.
3375         * dwarf2expr.c (execute_stack_op): Remove memaddr and expr_lval.
3376         Don't call read_reg when setting in_reg.  Call read_reg to get
3377         the frame base if it's in a register.  Return the register number
3378         on the stack instead of in the context.  Remove extra arguments
3379         to read_reg.
3380         * dwarf2loc.c (dwarf_expr_read_reg): Remove extra arguments.
3381         (dwarf2_evaluate_loc_desc): Call value_from_register.  Expect
3382         the register number on the expression stack.
3383         (needs_frame_read_reg): Remove extra arguments.
3384
3385 2003-04-13  Daniel Jacobowitz  <drow@mvista.com>
3386
3387         * dwarf2expr.c (dwarf2_read_address): Renamed from read_address;
3388         made non-static.
3389         (execute_stack_op): All callers updated.
3390         * dwarf2expr.h: Add prototype for dwarf2_read_address.
3391         * dwarf2loc.c (find_location_expression): New function.
3392         (dwarf_expr_frame_base): Call it.
3393         (dwarf2_evaluate_loc_desc): Handle 0-length location expressions.
3394         (dwarf2_tracepoint_var_ref): New function, broken out from
3395         locexpr_tracepoint_var_ref.
3396         (locexpr_tracepoint_var_ref): Call dwarf2_tracepoint_var_ref.
3397         Make static.
3398         (loclist_read_variable, loclist_read_needs_frame): New functions.
3399         (loclist_describe_location, loclist_tracepoint_var_ref): New
3400         functions.
3401         (dwarf2_loclist_funcs): New struct location_funcs.
3402         * dwarf2loc.h (struct dwarf2_loclist_baton): New type.
3403         (struct dwarf2_locexpr_baton): Add comments.
3404         (dwarf2_loclist_funcs): New extern.
3405         * dwarf2read.c (struct comp_unit_head): Remove DIE member, add
3406         base_address and base_known.
3407         (dwarf_loc_buffer): New variable.
3408         (struct dwarf2_pinfo): Add dwarf_loc_buffer and dwarf_loc_size.
3409         (DWARF_LOC_BUFFER, DWARF_LOC_SIZE): New macros.
3410         (dwarf2_has_info): Initialize dwarf_loc_offset.
3411         (dwarf2_build_psymtabs): Read in .debug_loc.
3412         (dwarf2_build_psymtabs_hard): Use DWARF_LOC_BUFFER and
3413         DWARF_LOC_SIZE.
3414         (psymtab_to_symtab_1): Likewise.  Move base address calculation
3415         here, from...
3416         (dwarf2_get_pc_bounds): ... here.  Use the base address from
3417         cu_header.
3418         (dwarf2_symbol_mark_computed): Handle location lists.
3419
3420 2003-04-13  Daniel Jacobowitz  <drow@mvista.com>
3421
3422         * minsyms.c (install_minimal_symbols): Only switch to gnu-v3 mode
3423         if the linkage name demangled successfully.
3424
3425 2003-04-13  Mark Kettenis  <kettenis@gnu.org>
3426
3427         * x86-64-tdep.c (att_flavour, intel_flavour, valid_flavours,
3428         disassmbly_flavour): Removed.
3429
3430         * x86-64-tdep.c (gdb_print_insn_x86_64): Removed.
3431
3432 2003-04-13  Mark Kettenis  <kettenis@gnu.org>
3433
3434         * x86-64-tdep.c (x86_64_breakpoint_from_pc): Removed.
3435
3436 2003-04-12  Andrew Cagney  <cagney@redhat.com>
3437
3438         * frame.h (struct frame_info): Move definition from here ...
3439         * frame.c (struct frame_info): ... to here.
3440
3441 2003-04-12  Andrew Cagney  <cagney@redhat.com>
3442
3443         * gdbthread.h (save_infrun_state): Delete parameter
3444         "prev_func_start".
3445         (struct thread_info): Delete field "prev_func_start".
3446         (load_infrun_state): Ditto.
3447         * thread.c (load_infrun_state, save_infrun_state): Update.
3448         * infrun.c (prev_func_start): Delete variable.
3449         (context_switch, init_wait_for_inferior): Update.
3450         (stop_stepping, keep_going): Update.
3451
3452 2003-04-12  Andrew Cagney  <cagney@redhat.com>
3453
3454         * gdbarch.sh: Add missing opaque declarations.
3455         * gdbarch.h: Regnerate.
3456         * symtab.h: Add missing opaque declarations.
3457         * value.h, target.h, symfile.h, stabsread.h: Ditto.
3458         * x86-64-tdep.h, xmodem.h, monitor.h, typeprint.h: Ditto.
3459         * srec.h, solib-svr4.h, source.h, inferior.h: Ditto.
3460         * ser-unix.h, serial.h, remote-utils.h, gdbcore.h: Ditto.
3461         * ppc-tdep.h, ocd.h, mips-tdep.h, gdbtypes.h: Ditto.
3462         * buildsym.h, builtin-regs.h, linespec.h, language.h: Ditto.
3463         * i387-tdep.h, gdbthread.h, event-top.h, gdb.h: Ditto.
3464         * dwarf2cfi.h, doublest.h, disasm.h, cp-abi.h: Ditto.
3465         * cli-out.h, c-lang.h, ax-gdb.h, arch-utils.h: Ditto.
3466         * ada-lang.h, config/nm-lynx.h, config/nm-linux.h: Ditto.
3467         * config/sparc/tm-sp64.h, config/rs6000/tm-rs6000.h: Ditto.
3468         * config/pa/tm-hppah.h, config/m68k/tm-delta68.h: Ditto.
3469         * cli/cli-setshow.h, cli/cli-script.h: Ditto.
3470
3471 2003-04-11  Andrew Cagney  <cagney@redhat.com>
3472
3473         * frame.c (get_frame_id): Return this frame's "id".
3474         (legacy_get_prev_frame): Set prev's frame ID code_addr to the
3475         function start.
3476         (legacy_saved_regs_this_id): Replace function body with
3477         internal-error.
3478         (deprecated_frame_xmalloc): Mark the frame ID as valid, use
3479         FRAME_OBSTACK_ZALLOC.
3480         (create_new_frame): Mark the frame ID as valid.
3481
3482 2003-04-11  Alexandre Oliva  <aoliva@redhat.com>
3483
3484         * Makefile.in (libbfd_h): Added missing setting.
3485         * mips-tdep.c (mips_gdbarch_init): Set disassembler_options
3486         according to the selected ABI.
3487
3488 2003-04-11  Jeff Johnston  <jjohnstn@redhat.com>
3489
3490         * gdb_indent.sh: Recognize pid_t and sigset_t as types.
3491
3492 2003-04-11  Andrew Cagney  <cagney@redhat.com>
3493
3494         * gdbarch.sh (DEPRECATED_SAVED_PC_AFTER_CALL): Deprecate
3495         SAVED_PC_AFTER_CALL.
3496         * gdbarch.h, gdbarch.c: Regenerate.
3497         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
3498         * x86-64-tdep.c (x86_64_init_abi): Update.
3499         * vax-tdep.c (vax_gdbarch_init): Update.
3500         * v850-tdep.c (v850_gdbarch_init): Update.
3501         * sparc-tdep.c (sparc_gdbarch_init): Update.
3502         * sh-tdep.c (sh_gdbarch_init): Update.
3503         * s390-tdep.c (s390_gdbarch_init): Update.
3504         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
3505         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
3506         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
3507         * mips-tdep.c (mips_gdbarch_init): Update.
3508         * mcore-tdep.c (mcore_gdbarch_init): Update.
3509         * m68k-tdep.c (m68k_gdbarch_init): Update.
3510         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
3511         * ia64-tdep.c (ia64_gdbarch_init): Update.
3512         (ia64_saved_pc_after_call): Update declaration.
3513         * i386ly-tdep.c (i386lynx_init_abi): Update.
3514         * i386-tdep.c (i386_gdbarch_init): Update.
3515         * hppa-tdep.c (hppa_gdbarch_init): Update.
3516         * h8300-tdep.c (h8300_gdbarch_init): Update.
3517         * frv-tdep.c (frv_gdbarch_init): Update.
3518         * cris-tdep.c (cris_gdbarch_init): Update.
3519         * avr-tdep.c (avr_gdbarch_init): Update.
3520         * arm-tdep.c (arm_gdbarch_init): Update.
3521         * alpha-tdep.c (alpha_gdbarch_init): Update.
3522         * ns32knbsd-nat.c (frame_num_args): Update.
3523         * ns32k-tdep.c (umax_frame_num_args): Update.
3524         * mips-tdep.c (mips_init_frame_pc_first): Update.
3525         * infrun.c (step_over_function): Update.
3526         * i386-linux-tdep.c (skip_hurd_resolver): Update.
3527         * i386-interix-tdep.c (i386_interix_back_one_frame): Update.
3528         * config/sparc/tm-sparc.h (DEPRECATED_SAVED_PC_AFTER_CALL): Update.
3529         (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
3530         * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
3531         * config/pa/tm-hppa.h (DEPRECATED_SAVED_PC_AFTER_CALL): Update.
3532         * arm-linux-tdep.c (skip_hurd_resolver): Update.
3533         * arch-utils.c (init_frame_pc_default): Update.
3534         * alpha-tdep.c (alpha_init_frame_pc_first): Update.
3535         * x86-64-tdep.h (x86_64_linux_saved_pc_after_call): Update
3536         declaration.
3537         
3538 2003-04-11  Andrew Cagney  <cagney@redhat.com>
3539
3540         * i387-tdep.c: Update copyright.
3541         (i387_to_double): Delete function.
3542         (double_to_i387): Delete function.
3543
3544 2003-04-10  Andrew Cagney  <cagney@redhat.com>
3545
3546         * d10v-tdep.c (d10v_frame_this_id): Set the code addr to the
3547         frame's function's address.  Simplify.
3548         (d10v_frame_unwind_cache): Check that the frame's function is
3549         non-zero.
3550
3551 2003-04-10  Jim Blandy  <jimb@redhat.com>
3552
3553         * s390-tdep.c (s390_gdbarch_init): Put back accidentally deleted
3554         call to set_gdbarch_deprecated_push_arguments.
3555
3556 2003-04-10  Andrew Cagney  <cagney@redhat.com>
3557
3558         * frame.c (fprint_frame_id): New function.
3559         (fprint_frame_type, fprint_frame): New function.
3560         (frame_pc_unwind, frame_func_unwind): Add/update trace code.
3561         (create_sentinel_frame, get_frame_id): Ditto.
3562         (frame_id_p, frame_id_eq): Ditto.
3563         (frame_id_inner, create_new_frame): Ditto.
3564         (legacy_get_prev_frame, get_prev_frame): Ditto.
3565         (deprecated_update_frame_pc_hack): Ditto.
3566         (frame_register_unwind): Ditto.
3567         (deprecated_update_frame_base_hack): Ditto.
3568
3569 2003-04-10  Corinna Vinschen  <vinschen@redhat.com>
3570
3571         * i386-cygwin-tdep.c (i386_cygwin_frame_chain): New function.
3572         (i386_cygwin_init_abi): Set i386_cygwin_frame_chain as new
3573         frame_chain function.
3574         * Makefile.in: Add dependencies due to above change.
3575
3576 2003-04-10  Corinna Vinschen  <vinschen@redhat.com>
3577
3578         * blockframe.c (legacy_frame_chain_valid): Move call to
3579         DEPRECATED_FRAME_CHAIN_VALID before calls to inside_entry_func and
3580         inside_entry_file.
3581
3582 2003-04-09  Andrew Cagney  <cagney@redhat.com>
3583
3584         * frame.h (struct frame_id): Replace "pc" and "base" with
3585         "stack_addr" and "code_addr".  Update comments.
3586         (frame_id_build): Update parameter names and comment.
3587         (struct frame_info): Replace "id_p" and "id" with "this_id".
3588         * dummy-frame.c (dummy_frame_this_id): Update.
3589         * breakpoint.c (print_one_breakpoint): Update.
3590         * frame.c (get_frame_id): Update.
3591         (get_frame_base, frame_id_build): Update.
3592         (create_sentinel_frame, legacy_get_prev_frame): Update.
3593         (deprecated_update_frame_base_hack): Update.
3594         (frame_id_p, frame_id_eq): Rework, return 0 when an invalid ID.
3595         (frame_id_inner): Ditto.
3596
3597 2003-04-09  Andrew Cagney  <cagney@redhat.com>
3598
3599         * defs.h (gdb_print_host_address): Make "addr" parameter a
3600         pointer constant.
3601         * utils.c (gdb_print_host_address): Update.
3602
3603 2003-04-09  Kevin Buettner  <kevinb@redhat.com>
3604
3605         * rs6000-tdep.c (frame_get_saved_regs): Don't assume that the
3606         register number for R0 is 0.
3607
3608 2003-04-09  J. Brobecker  <brobecker@gnat.com>
3609
3610         * frame.h (struct gdbarch): Add opaque structure definition
3611         to avoid a compilation warning on LynxOS 4.0.
3612
3613 2003-04-09  Andrew Cagney  <cagney@redhat.com>
3614
3615         * frame.h (struct frame_info): Delete field "pc".  Replace
3616         "pc_unwind_cache" and "pc_unwind_cache_p" with "prev_pc"
3617         structure.
3618         * frame.c (frame_pc_unwind): Update.
3619         (create_sentinel_frame): Do not set "pc".
3620         (get_prev_frame): Do not set "pc".  Use frame_pc_unwind.
3621         (get_frame_pc): Call frame_pc_unwind.
3622         (deprecated_update_frame_pc_hack): Update.
3623         (create_new_frame): Use "pc" not "->pc".
3624
3625 2003-04-09  Andrew Cagney  <cagney@redhat.com>
3626
3627         * frame.c (get_frame_id): Eliminate code updating "frame".
3628         (legacy_get_prev_frame): Ditto.
3629         (get_frame_base): Return id.base directly.
3630         (deprecated_update_frame_base_hack): Update "id.base".
3631         * frame.h (struct frame_info): Delete field "frame".
3632
3633 2003-04-09  Andrew Cagney  <cagney@redhat.com>
3634
3635         * NEWS: Mention that the "Sequent family" is obsolete.
3636         * configure.tgt: Obsolete i[3456]86-sequent-bsd*,
3637         i[3456]86-sequent-sysv4*, and i[3456]86-sequent-sysv*.
3638         * configure.host: Obsolete i[3456]86-sequent-bsd*,
3639         i[3456]86-sequent-sysv4*, and i[3456]86-sequent-sysv*.
3640         * config/i386/tm-ptx4.h: Obsolete file.
3641         * config/i386/tm-ptx.h: Obsolete file.
3642         * symm-tdep.c: Obsolete file.
3643         * config/i386/symmetry.mt: Obsolete file.
3644         * config/i386/tm-symmetry.h: Obsolete file.
3645         * symm-nat.c: Obsolete file.
3646         * config/i386/nm-symmetry.h: Obsolete file.
3647         * config/i386/xm-symmetry.h: Obsolete file.
3648         * config/i386/symmetry.mh: Obsolete file.
3649         * config/i386/nm-ptx4.h: Obsolete file.
3650         * config/i386/ptx4.mh: Obsolete file.
3651         * config/i386/ptx.mt: Obsolete file.
3652         * config/i386/ptx.mh: Obsolete file.
3653         * config/i386/xm-ptx4.h: Obsolete file.
3654         * config/i386/xm-ptx.h: Obsolete file.
3655
3656 2003-04-09  Andrew Cagney  <cagney@redhat.com>
3657
3658         Obsolete mips*-*-mach3*.
3659         * NEWS: Mention that mips*-*-mach3* is obsolete.
3660         * m3-nat.c: Obsolete file.
3661         * config/nm-m3.h: Obsolete file.
3662         * config/mips/tm-mipsm3.h: Obsolete file.
3663         * config/mips/mipsm3.mt: Obsolete file.
3664         * config/mips/mipsm3.mh: Obsolete file.
3665         * config/mips/xm-mipsm3.h: Obsolete file.
3666         * mipsm3-nat.c: Obsolete file.
3667         * configure.host: Obsolete mips-dec-mach3*.
3668         * configure.tgt: Obsolete mips*-*-mach3*.
3669
3670 2003-04-09  Andrew Cagney  <cagney@redhat.com>
3671
3672         * doublest.h: Update copyright.
3673         (deprecated_store_floating, deprecated_extract_floating): Rename
3674         store_floating and extract_floating.  Update comments.
3675         * doublest.c: Update copyright.
3676         (extract_floating_by_length): Replace extract_floating.
3677         (store_floating_by_length): Replace store_floating.
3678         (deprecated_extract_floating): New function.
3679         (deprecated_store_floating): New function.
3680         (extract_typed_floating): Call extract_floating_by_length.
3681         (store_typed_floating): Call store_floating_by_length.
3682         * x86-64-tdep.c (x86_64_store_return_value): Update.
3683         * sh-tdep.c (sh3e_sh4_extract_return_value): Update.
3684         (sh64_extract_return_value): Update.
3685         (sh_sh4_register_convert_to_virtual): Update.
3686         (sh_sh64_register_convert_to_virtual): Update.
3687         (sh_sh4_register_convert_to_raw): Update.
3688         (sh_sh64_register_convert_to_raw): Update.
3689         * rs6000-tdep.c (rs6000_register_convert_to_virtual): Update.
3690         (rs6000_register_convert_to_raw): Update.
3691         * ia64-tdep.c (ia64_register_convert_to_virtual): Update.
3692         (ia64_register_convert_to_raw): Update.
3693         * config/i386/tm-symmetry.h (REGISTER_CONVERT_TO_RAW): Update.
3694         (REGISTER_CONVERT_TO_VIRTUAL): Update.
3695         * arm-linux-tdep.c (arm_linux_push_arguments): Update.
3696         * alpha-tdep.c (alpha_register_convert_to_virtual): Update.
3697         (alpha_register_convert_to_raw): Update.
3698
3699 2003-04-08  Andrew Cagney  <cagney@redhat.com>
3700
3701         * gdbarch.sh (SAVED_PC_AFTER_CALL): Add a predicate.
3702         * gdbarch.h, gdbarch.c: Re-generate.
3703         * d10v-tdep.c (d10v_saved_pc_after_call): Delete function.
3704         (d10v_gdbarch_init): Do not set saved_pc_after_call.
3705         * infrun.c (step_over_function): Call SAVED_PC_AFTER_CALL_P
3706         conditionally, use frame_pc_unwind as an alternative.  Add
3707         comments.
3708         * arch-utils.c (init_frame_pc_default): Only call
3709         SAVED_PC_AFTER_CALL when available.
3710
3711 2003-04-08  Elena Zannoni  <ezannoni@redhat.com>
3712
3713         * infrun.c (stop_soon): Rename from stop_soon_quietly.
3714         (struct inferior_status): Rename stop_soon_quietly field to stop_soon.
3715         (clear_proceed_status): Rename stop_soon_quietly to stop_soon.
3716         (start_remote): Ditto.
3717         (handle_inferior_event): Ditto.
3718         (save_inferior_status): Ditto.
3719         (restore_inferior_status): Ditto.
3720         * infcmd.c (attach_command): Ditto.
3721         * fork-child.c (startup_inferior): Ditto.
3722         * inferior.h (stop_soon): Rename from stop_soon_quietly.
3723         * alpha-tdep.c (heuristic_proc_start): Ditto.
3724         * mips-tdep.c (heuristic_proc_start): Ditto.
3725         * solib-svr4.c (svr4_solib_create_inferior_hook): Ditto.
3726         * solib-sunos.c (sunos_solib_create_inferior_hook): Ditto.
3727         * solib-osf.c (osf_solib_create_inferior_hook): Ditto.
3728         * solib-irix.c (irix_solib_create_inferior_hook): Ditto.
3729         * remote-vx.c (vx_create_inferior): Ditto.
3730
3731 2003-04-08  Elena Zannoni  <ezannoni@redhat.com>
3732
3733         * infrun.c (stop_soon_quietly): Make it an enum, to better
3734         override the default behavior of handle_inferior_event.
3735         (clear_proceed_status): Update uses of stop_soon_quietly to
3736         reflect that it is now an enum.
3737         (start_remote): Ditto.
3738         (handle_inferior_event): Change logic a bit if stop_soon_quietly
3739         is set to handle the new GNU/Linux kernel behavior for
3740         attach/sigstop.  Update uses of stop_soon_quietly.
3741         * inferior.h (enum stop_kind): New enum.
3742         * infcmd.c (attach_command): Use STOP_QUIETLY_NO_SIGSTOP.
3743         Reset normal handle_inferior_event behavior, afterwards.
3744         * fork-child.c (startup_inferior): Update.
3745         * alpha-tdep.c (heuristic_proc_start): Update.
3746         * solib-svr4.c (svr4_solib_create_inferior_hook): Update.
3747         * solib-sunos.c (sunos_solib_create_inferior_hook): Update.
3748         * solib-osf.c (osf_solib_create_inferior_hook): Update.
3749         * solib-irix.c (irix_solib_create_inferior_hook): Update.
3750         * remote-vx.c (vx_create_inferior): Update.
3751         * mips-tdep.c (heuristic_proc_start): Update.
3752
3753 2003-04-07  Elena Zannoni  <ezannoni@redhat.com>
3754
3755         * disasm.c (dump_insns):  Move variables inside loop, or they will
3756         be freed more than once, causing wild memory corruptions.
3757         (gdb_disassembly): Look for the substring "-thread",
3758         instead of "-threads" in the target name, to make sure to find
3759         the 'multi-thread' target.  Also, make sure we do the right thing 
3760         with the "core" target.
3761
3762 2003-04-07  Kevin Buettner  <kevinb@redhat.com>
3763
3764         * mips-tdep.c (mips_print_fp_register): New function, created from
3765         do_fp_register_row().  Registers are now (also) printed as hex.
3766         Only one register is printed per row.
3767         (mips_print_register, do_fp_register_row): Print floating point
3768         registers with mips_print_fp_register().
3769
3770 2003-04-06  Andrew Cagney  <cagney@redhat.com>
3771
3772         * valprint.h (inspect_it): Add extern declaration.
3773         * objc-lang.c (value_nsstring): Avoid assignment inside of "if".
3774         (selectors_info, classes_info): Ditto.
3775         (find_objc_msgcall): Fix indentation.
3776         (objc_printstr): Delete extern declarations.
3777
3778         * arm-tdep.c (arm_frameless_function_invocation): Fix typo.
3779
3780 2003-04-06  Andrew Cagney  <cagney@redhat.com>
3781
3782         * frame.h (legacy_frame_chain_valid): Rename frame_chain_valid.
3783         Update comment.
3784         * frame.c (legacy_saved_regs_this_id): Update.
3785         (legacy_get_prev_frame): Update.
3786         * xstormy16-tdep.c: Update comment.
3787         * sparc-tdep.c (sparc_frame_chain): Update comment.
3788         * blockframe.c (legacy_frame_chain_valid): Update.
3789
3790 2003-04-06  Andrew Cagney  <cagney@redhat.com>
3791
3792         * valprint.c (val_print_type_code_int): Delete #ifdef
3793         PRINT_TYPELESS_INTEGER code.
3794
3795         * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES)
3796         (CALL_DUMMY_LOCATION, DEPRECATED_PC_IN_CALL_DUMMY): Allow partial
3797         multi-arch definition.
3798         * gdbarch.h: Re-generate.
3799
3800 2003-04-05  Andrew Cagney  <cagney@redhat.com>
3801
3802         Eliminate FRAME_FIND_SAVED_REGS.
3803         * config/pa/tm-hppah.h (hppa_hpux_frame_find_saved_regs_in_sigtramp):
3804         Change FSR parameter to a pointer.
3805         * config/pa/tm-hppa64.h (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP):
3806         Assume FSR parameter is a pointer.
3807         * hppa-hpux-tdep.c (hppa_hpux_frame_find_saved_regs_in_sigtramp):
3808         Make fsr a pointer.
3809         * hppa-tdep.c (hppa_frame_find_saved_regs): New function.
3810         (hppa_frame_saved_pc): Call hppa_frame_init_saved_regs.  Make
3811         saved_regs a pointer.
3812         (hppa_frame_saved_pc): Ditto.
3813         (find_dummy_frame_regs): Make frame_saved_regs a pointer
3814         (hppa_pop_frame): Call hppa_frame_init_saved_regs.  Make fsr a
3815         pointer.
3816         (restore_pc_queue): Make fsr a pointer.
3817         (hppa_frame_find_saved_regs): Make frame_saved_regs a pointer.
3818         (hppa_frame_chain): Make saved_regs a pointer, call
3819         hppa_frame_init_saved_regs.
3820         * sparc-tdep.c: Include "gdb_assert.h".
3821         (sparc_frame_find_saved_regs): Replace internal_error with
3822         gdb_assert.
3823         * remote-vxsparc.c (vx_read_register): Delete reference to
3824         FRAME_FIND_SAVED_REGS.
3825         * gdbarch.sh: Delete check for FRAME_FIND_SAVED_REGS.
3826         * gdbarch.h: Regenerate.
3827         * frame.h (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
3828         (deprecated_get_frame_saved_regs): Delete declaration.
3829         (struct frame_saved_regs): Delete definition.
3830         * frame.c (deprecated_get_frame_saved_regs): Delete function.
3831         * config/pa/tm-hppa.h (hppa_frame_init_saved_regs): Declare.
3832         (hppa_frame_find_saved_regs): Delete declaration.
3833         (FRAME_FIND_SAVED_REGS): Delete macro.
3834         (DEPRECATED_FRAME_INIT_SAVED_REGS): Define.
3835         * config/i386/tm-ptx.h (FRAME_FIND_SAVED_REGS): Delete
3836         FRAME_FIND_SAVED_REGS in comment.
3837
3838 2003-04-05  Andrew Cagney  <cagney@redhat.com>
3839
3840         * frame.c (frame_func_unwind, get_frame_func): New functions.
3841         * frame.h (get_frame_func, frame_func_unwind): Declare.
3842         (struct frame_info): Add field "prev_func" for caching the
3843         previous frame's function address.
3844         * arm-tdep.c (arm_frameless_function_invocation): Combine
3845         get_pc_function_start and get_frame_pc into get_frame_func.
3846         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
3847         (sh64_nofp_frame_init_saved_regs): Ditto.
3848         * s390-tdep.c (s390_function_start): Ditto.
3849         * rs6000-tdep.c (rs6000_pop_frame): Ditto.
3850         (rs6000_frameless_function_invocation): Ditto.
3851         (rs6000_frame_saved_pc): Ditto.
3852         * m68k-tdep.c (m68k_frame_init_saved_regs): Ditto.
3853         * ia64-tdep.c (ia64_frame_init_saved_regs): Ditto.
3854         * i386-tdep.c (i386_frameless_signal_p): Ditto.
3855         (i386_frame_init_saved_regs): Ditto.
3856         * hppa-tdep.c (hppa_frame_find_saved_regs): Ditto.
3857         * d10v-tdep.c (d10v_frame_unwind_cache): Combine
3858         get_pc_function_start and frame_pc_unwind into frame_func_unwind.
3859         * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
3860         * blockframe.c (frameless_look_for_prologue): Ditto.
3861
3862 2003-04-05  Andrew Cagney  <cagney@redhat.com>
3863
3864         * frame.c (legacy_get_prev_frame): Link prev to next at the
3865         function start.  Update comments.
3866
3867 2003-04-05  Andrew Cagney  <cagney@redhat.com>
3868
3869         * frame.c (get_frame_id): Update comment.
3870         (legacy_get_prev_frame): Update comment.
3871         * gdbarch.sh: Delete check for EXTRA_FRAME_INFO.
3872         * gdbarch.h: Regenerate.
3873         * config/sparc/tm-sparc.h (EXTRA_FRAME_INFO): Delete.
3874         * frame.h: Delete #ifdef EXTRA_FRAME_INFO code.
3875
3876 2003-04-05  Andrew Cagney  <cagney@redhat.com>
3877
3878         * stack.c (print_frame_info): Use get_frame_pc.
3879
3880 2003-04-04  Andrew Cagney  <cagney@redhat.com>
3881
3882         * frame.c (get_prev_frame): Do not call frame_type_from_pc.  Set
3883         the frame's type from the unwinder.
3884         (get_frame_type): Map UNKNOWN_FRAME onto NORMAL_FRAME.
3885         (create_new_frame, legacy_get_prev_frame): When the unwinder's
3886         type isn't UNKNOWN_FRAME, initalize "type" from the unwinder.
3887         (get_frame_base_address): Use get_frame_type.
3888         (get_frame_locals_address, get_frame_args_address): Ditto.
3889         (legacy_saved_regs_unwinder): Set the type to UNKNOWN_TYPE.
3890         * frame.h (enum frame_type): Add UNKNOWN_FRAME.
3891         (struct frame_info): Add comment explaining why the frame contains
3892         a "type" field.
3893         * dummy-frame.c (dummy_frame_unwind): Set the type to DUMMY_FRAME.
3894         * d10v-tdep.c (d10v_frame_unwind): Set the type to NORMAL_FRAME.
3895         * sentinel-frame.c (sentinel_frame_unwinder): Set the type to
3896         NORMAL_FRAME.
3897         * frame-unwind.h: Include "frame.h".
3898         (struct frame_unwind): Add "type" field.
3899         * Makefile.in (frame_unwind_h): Add $(frame_h).
3900         
3901 2003-04-04  Andrew Cagney  <cagney@redhat.com>
3902
3903         * x86-64-tdep.c (x86_64_unwind_dummy_id): Use frame_id_build.
3904         * dummy-frame.c (dummy_frame_this_id): Use frame_id_build.
3905         * d10v-tdep.c (d10v_frame_this_id): Use get_frame_pc and
3906         get_frame_base.
3907         (d10v_unwind_dummy_id): Use frame_id_build.
3908         * frame.c (find_frame_sal): Use get_frame_pc.
3909         (create_new_frame): Use deprecated_update_frame_pc_hack and
3910         deprecated_update_frame_base_hack.
3911         (create_sentinel_frame): Add comment about ->pc going away.
3912         (get_prev_frame): Add comment about ->pc going away.
3913         (legacy_get_prev_frame): Use get_frame_base, get_frame_pc,
3914         frame_id_build, deprecated_update_frame_pc_hack and
3915         deprecated_update_frame_base_hack.
3916         (select_frame): Use get_frame_pc.
3917         (legacy_saved_regs_this_id): Use frame_id_build.
3918
3919 2003-04-04  Elena Zannoni  <ezannoni@redhat.com>
3920
3921         * x86-64-tdep.c (x86_64_push_arguments): Handle correctly the
3922         signed integer case.
3923         (classify_argument): Handle enumerations and references.
3924
3925 2003-04-04  Andrew Cagney  <cagney@redhat.com>
3926
3927         * frame.c (create_sentinel_frame): Initialize the sentinel frame's
3928         ID to NULL.
3929
3930 2003-04-01  Adam Fedor  <fedor@gnu.org>
3931
3932         * gdb/objc-lang.c (selectors_info): Replace calls to
3933         SYMBOL_DEMANGLED_NAME and DEPRECATED_SYMBOL_NAME with
3934         SYMBOL_NATURAL_NAME.
3935         (classes_info, find_methods): Likewise.
3936
3937 2003-04-03  Kevin Buettner  <kevinb@redhat.com>
3938
3939         * rs6000-tdep.c (rs6000_gdbarch_init): For xcoff executables, set
3940         ``mach'' to the value determined by bfd_default_set_arch_mach().
3941
3942 2003-04-02  Bob Rossi  <bob_rossi@cox.net>
3943
3944         * Makefile.in (SUBDIR_MI_OBS): Add "mi-cmd-file.o".
3945         (SUBDIR_MI_SRCS): Add "mi-cmd-file.c".
3946         (mi-cmd-file.o): Update dependencies.
3947
3948 2003-04-01  Kevin Buettner  <kevinb@redhat.com>
3949
3950         * mips-tdep.c (mips_dwarf_dwarf2_ecoff_reg_to_regnum)
3951         (mips_stab_reg_to_regnum): Add mappings for HI_REGNUM and LO_REGNUM.
3952
3953 2003-04-01  Adam Fedor  <fedor@gnu.org>
3954
3955         * Makefile.in (c_lang.o, jv_lang.o, language.o): Add $(demangle_h).
3956         * language.h (struct language_defn): Add la_demangle.
3957         (language_demangle): Declare.
3958         * language.c (language_demangle): New function.
3959         (unk_lang_demangle): Likewise.
3960         (unknown_language_defn, auto_language_defn, local_language_defn):
3961         Add ukn_lang_demangle.
3962         * ada-lang.c (ada_language_defn): Add NULL for la_demangle element.
3963         * f-lang.c, m2-lang.c, p-lang.c, scm-lang.c: Likewise.
3964         * c-lang.c (c_language_defn, asm_language_defn): Likewise.
3965         (cplus_language_defn): Add cplus_demangle for la_demangle element.
3966         * jv-lang.c (java_demangle): New function
3967         (java_language_defn): Use it for la_demangle element.
3968         * objc-lang.c (objc_demangle): Add options argument
3969         (objc_language_defn): Use objc_demangle for la_demangle element.
3970         * maint.c (maintenance_demangle): Replace switch with
3971         call to language_demangle.
3972         * utils.c (fprintf_symbol_filtered): Likewise.
3973
3974 2003-04-01  Andrew Cagney  <cagney@redhat.com>
3975
3976         * printcmd.c (print_frame_nameless_args): Delete #ifdef
3977         NAMELESS_ARG_VALUE, PRINT_NAMELESS_INTEGER and
3978         PRINT_TYPELESS_INTEGER.
3979         * config/sparc/tm-sp64.h (DEPRECATED_PUSH_RETURN_ADDRESS): Rename
3980         PUSH_RETURN_ADDRESS.
3981
3982 2003-04-01  Andrew Cagney  <cagney@redhat.com>
3983
3984         * Makefile.in (d10v-tdep.o): Update dependencies.
3985         * d10v-tdep.c: Include "frame-base.h".
3986         (d10v_frame_unwind): Make constant.
3987         (d10v_frame_base_address): New function.
3988         (d10v_frame_base): New variable.
3989         (d10v_gdbarch_init): Set frame_base default.
3990         (struct d10v_unwind_cache): Add the field "prev_sp".  Update
3991         comment for base.
3992         (d10v_frame_unwind_cache): Set and use "prev_sp".
3993         (d10v_frame_this_id): Use the previous frame's inner most stack
3994         address and this frame's func address for the frame ID.  Use
3995         frame_id_build.  Don't analyze beyond the current instruction.
3996         
3997 2003-04-01  Andrew Cagney  <cagney@redhat.com>
3998
3999         * frame.h (get_frame_locals_address, get_frame_args_address):
4000         Refer to the base address, instead of the address of the first
4001         local or parameter.
4002         
4003 2003-04-01  Andrew Cagney  <cagney@redhat.com>
4004
4005         Add frame debug info addresses:
4006         * frame-base.c: New file.
4007         * frame-base.h: New file.
4008         * frame.h (struct frame_base): Add opaque declaration.
4009         (get_frame_base): Update comment.
4010         (get_frame_base_address): Declare.
4011         (get_frame_locals_address): Declare.
4012         (get_frame_args_address): Declare.
4013         (struct frame_info): Add "base" and "base_cache".  Update
4014         comments on the unwinder.
4015         * frame.c: Include "frame-base.h".
4016         (get_frame_locals_address): New function.
4017         (get_frame_base_address): New function.
4018         (get_frame_args_address): New function.
4019         * findvar.c (read_var_value): Use get_frame_locals_address and
4020         get_frame_args_address.
4021         * stack.c (frame_info): Use get_frame_locals_address and
4022         get_frame_args_address.
4023         (FRAME_ARGS_ADDRESS_CORRECT): Delete conditionally defined macro,
4024         moved to "frame-base.c".
4025         * printcmd.c (print_frame_nameless_args): Ditto.
4026         * symtab.h (address_class): Update comments.
4027         * dwarf2loc.c (dwarf_expr_frame_base): Add note about
4028         get_frame_base_address.
4029         * dwarf2expr.c (execute_stack_op): Ditto.
4030         * Makefile.in (frame_base_h): Define.
4031         (frame.o): Update dependencies.
4032         (frame-base.o): Add dependencies.
4033         (SFILES): Add frame-base.c.
4034         (COMMON_OBS): Add frame-base.o.
4035
4036 2003-04-01  Andrew Cagney  <cagney@redhat.com>
4037
4038         * gdbarch.sh (CALL_DUMMY_START_OFFSET): Default to zero.
4039         CALL_DUMMY_LENGTH): Ditto.
4040         * gdbarch.c: Re-generate.
4041         * inferior.h (CALL_DUMMY_START_OFFSET): Delete macro.
4042         (CALL_DUMMY_LENGTH): Delete macro.
4043         * alpha-tdep.c (alpha_gdbarch_init): Do not set above when zero.
4044         * arm-tdep.c (arm_gdbarch_init): Ditto.
4045         * avr-tdep.c (avr_gdbarch_init): Ditto.
4046         * cris-tdep.c (cris_gdbarch_init): Ditto.
4047         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4048         * frv-tdep.c (frv_gdbarch_init): Ditto.
4049         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
4050         * hppa-tdep.c (hppa_gdbarch_init): Ditto.
4051         * i386-tdep.c (i386_gdbarch_init): Ditto.
4052         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
4053         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
4054         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4055         * mips-tdep.c (mips_gdbarch_init): Ditto.
4056         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4057         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
4058         * s390-tdep.c (s390_gdbarch_init): Ditto.
4059         * sh-tdep.c (sh_gdbarch_init): Ditto.
4060         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
4061         * v850-tdep.c (v850_gdbarch_init): Ditto.
4062         * vax-tdep.c (vax_gdbarch_init): Ditto.
4063         * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
4064
4065 2003-04-01  Corinna Vinschen  <vinschen@redhat.com>
4066
4067         * frame.c (get_prev_frame): Disable call to inside_entry_file().
4068
4069 2003-04-01  Andrew Cagney  <cagney@redhat.com>
4070
4071         * gdbarch.sh (CALL_DUMMY_BREAKPOINT_OFFSET): Default to zero.
4072         (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
4073         * gdbarch.h, gdbarch.c: Re-generate.
4074         * config/sparc/tm-sp64.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
4075         (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
4076         * config/pa/tm-hppa64.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
4077         * inferior.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
4078         (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
4079         * infcmd.c (run_stack_dummy): Simplify assuming
4080         CALL_DUMMY_BREAKPOINT_OFFSET_P.
4081         * infrun.c (handle_inferior_event): Ditto.
4082         * alpha-tdep.c (alpha_gdbarch_init): Do not set
4083         call_dummy_breakpoint_offset or call_dummy_breakpoint_offset_p.
4084         * arm-tdep.c (arm_gdbarch_init): Ditto.
4085         * avr-tdep.c (avr_gdbarch_init): Ditto.
4086         * cris-tdep.c (cris_gdbarch_init): Ditto.
4087         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4088         * frv-tdep.c (frv_gdbarch_init): Ditto.
4089         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
4090         * i386-tdep.c (i386_gdbarch_init): Ditto.
4091         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
4092         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
4093         * m68k-tdep.c (m68k_gdbarch_init): Ditto.
4094         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4095         * mips-tdep.c (mips_gdbarch_init): Ditto.
4096         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4097         * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
4098         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
4099         * s390-tdep.c (s390_gdbarch_init): Ditto.
4100         * sh-tdep.c (sh_gdbarch_init): Ditto.
4101         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
4102         * v850-tdep.c (v850_gdbarch_init): Ditto.
4103         * vax-tdep.c (vax_gdbarch_init): Ditto.
4104         * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
4105
4106 2003-04-01  Daniel Jacobowitz  <drow@mvista.com>
4107
4108         * symfile.c (symfile_relocate_debug_section): Update call to
4109         bfd_simple_get_relocated_section_contents.
4110
4111 2003-03-31  Andrew Cagney  <cagney@redhat.com>
4112
4113         * gdbarch.sh (FIX_CALL_DUMMY): Change to function with predicate.
4114         * gdbarch.h, gdbarch.c: Regenerate.
4115         * inferior.h (FIX_CALL_DUMMY): Delete macro.
4116         * valops.c (hand_function_call): Only call FIX_CALL_DUMMY when
4117         available.
4118         * frame.h (generic_fix_call_dummy): Delete declaration.
4119         * dummy-frame.h: Update comment.
4120         * dummy-frame.c (generic_fix_call_dummy): Delete function.
4121         * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
4122         fix_call_dummy.
4123         * sh-tdep.c (sh_gdbarch_init): Ditto.
4124         * s390-tdep.c (s390_gdbarch_init): Ditto.
4125         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4126         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4127         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
4128         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
4129         * i386-tdep.c (i386_gdbarch_init): Ditto.
4130         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
4131         * frv-tdep.c (frv_gdbarch_init): Ditto.
4132         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4133         * cris-tdep.c (cris_gdbarch_init): Ditto.
4134         * avr-tdep.c (avr_gdbarch_init): Ditto.
4135         * arm-tdep.c (arm_gdbarch_init): Ditto.
4136
4137 2003-03-31  J. Brobecker  <brobecker@gnat.com>
4138
4139         * config/pa/tm-hppa64.h (FRAME_ARGS_ADDRESS): Delete macro, not useful.
4140         (INIT_FRAME_AP): Likewise.
4141         (EXTRA_FRAME_INFO): Likewise.
4142
4143 2003-03-31  Andrew Cagney  <cagney@redhat.com>
4144
4145         * gdbarch.sh: Include "symfile.h".
4146         (CALL_DUMMY_ADDRESS): Default to entry_point_address.
4147         * gdbarch.h, gdbarch.c: Re-generate.
4148         * inferior.h (CALL_DUMMY_ADDRESS): Delete macro.
4149         * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
4150         call_dummy_address, the default is at entry_point_address.
4151         * v850-tdep.c (v850_gdbarch_init): Ditto.
4152         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
4153         * sh-tdep.c (sh_gdbarch_init): Ditto.
4154         * s390-tdep.c (s390_gdbarch_init): Ditto.
4155         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
4156         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4157         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4158         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
4159         * i386-tdep.c (i386_gdbarch_init): Ditto.
4160         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
4161         * frv-tdep.c (frv_gdbarch_init): Ditto.
4162         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4163         * cris-tdep.c (cris_gdbarch_init): Ditto.
4164         * arm-tdep.c (arm_gdbarch_init): Ditto.
4165
4166 2003-03-31  Andrew Cagney  <cagney@redhat.com>
4167
4168         * gdbarch.sh (CALL_DUMMY_P): Delete.
4169         * gdbarch.h, gdbarch.c: Re-generate.
4170         * inferior.h (CALL_DUMMY_P): Delete macro.
4171         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4172         * vax-tdep.c (vax_gdbarch_init): Update.
4173         * v850-tdep.c (v850_gdbarch_init): Update.
4174         * sparc-tdep.c (sparc_gdbarch_init): Update.
4175         * sh-tdep.c (sh_gdbarch_init): Update.
4176         * s390-tdep.c (s390_gdbarch_init): Update.
4177         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4178         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4179         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
4180         * mips-tdep.c (mips_gdbarch_init): Update.
4181         * mcore-tdep.c (mcore_gdbarch_init): Update.
4182         * m68k-tdep.c (m68k_gdbarch_init): Update.
4183         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4184         * ia64-tdep.c (ia64_gdbarch_init): Update.
4185         * i386-tdep.c (i386_gdbarch_init): Update.
4186         * h8300-tdep.c (h8300_gdbarch_init): Update.
4187         * frv-tdep.c (frv_gdbarch_init): Update.
4188         * d10v-tdep.c (d10v_gdbarch_init): Update.
4189         * cris-tdep.c (cris_gdbarch_init): Update.
4190         * breakpoint.c (deprecated_frame_in_dummy): Update.
4191         * avr-tdep.c (avr_gdbarch_init): Update.
4192         * alpha-tdep.c (alpha_gdbarch_init): Update.
4193         * arm-tdep.c (arm_gdbarch_init): Update.
4194         * dummy-frame.c (dummy_frame_this_id): Update comments.
4195         * rs6000-tdep.c (rs6000_extract_struct_value_address): Ditto.
4196         * frame.c (legacy_get_prev_frame): Ditto.
4197         * valops.c (call_function_by_hand): Delete function.
4198         (hand_function_call): Rename to call_function_by_hand
4199
4200 2003-03-30  Andrew Cagney  <cagney@redhat.com>
4201
4202         2002-11-10 Klee Dienes <kdienes@apple.com>
4203         * value.h (struct value): Update comment.
4204
4205 2003-03-30  Andrew Cagney  <cagney@redhat.com>
4206
4207         * d10v-tdep.c: Replace _FP_REGNUM and FP_REGNUM with
4208         D10V_FP_REGNUM.
4209         (d10v_gdbarch_init): Do not set fp_regnum.
4210
4211         * frame.c (get_frame_base): Force ID initialization.
4212         (get_prev_frame): Move computation of the frame ID from here ...
4213         (get_frame_id): ... to here.
4214         (legacy_get_prev_frame): Mark the frame ID as valid.
4215         * frame.h (struct frame_info): Add field "id_p".
4216
4217 2003-03-30  Mark Kettenis  <kettenis@gnu.org>
4218
4219         * i386-tdep.c (i386_store_struct_return): Removed.
4220         (i386_gdbarch_init): Don't set deprecated_store_struct_return.
4221
4222 2003-03-30  Andrew Cagney  <cagney@redhat.com>
4223
4224         * gdbarch.sh (DEPRECATED_DUMMY_WRITE_SP): Replace TARGET_WRITE_SP.
4225         * gdbarch.h, gdbarch.c: Regenerate.
4226         * v850-tdep.c (v850_gdbarch_init): Set deprecated_dummy_write_sp.
4227         * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
4228         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4229         * m68k-tdep.c (m68k_gdbarch_init): Ditto.
4230         * i386-tdep.c (i386_gdbarch_init): Ditto.
4231         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
4232         * cris-tdep.c (cris_gdbarch_init): Ditto.
4233         * vax-tdep.c (vax_gdbarch_init): Ditto.
4234         * s390-tdep.c (s390_gdbarch_init): Ditto.
4235         * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
4236         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4237         * alpha-tdep.c (alpha_gdbarch_init): Ditto.
4238         * sparc-tdep.c (sparc_push_dummy_frame, sparc_pop_frame): Update.
4239         * config/sparc/tm-sp64.h (DEPRECATED_DUMMY_WRITE_SP): Update.
4240         * config/pa/tm-hppa.h (DEPRECATED_DUMMY_WRITE_SP): Define.
4241         * sparc-tdep.c (sparc_gdbarch_init): Update.
4242         * sh-tdep.c (sh_gdbarch_init): Update.
4243         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4244         * mips-tdep.c (mips_gdbarch_init): Update.
4245         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4246         * ia64-tdep.c (ia64_gdbarch_init): Update.
4247         * frv-tdep.c (frv_gdbarch_init): Update.
4248         * avr-tdep.c (avr_gdbarch_init): Update.
4249         * valops.c (hand_function_call): Replace TARGET_WRITE_SP with
4250         DEPRECATED_DUMMY_WRITE_SP.  Call when the method is available,
4251         instead of when push_dummy_call is not available.
4252         
4253 2003-03-30  Andrew Cagney  <cagney@redhat.com>
4254
4255         * infttrace.c: Include "gdbthread.h".
4256         (parent_attach_all): Fix function signature.
4257         (call_ptrace): Update call.
4258         * Makefile.in (infttrace.o): Update dependencies.
4259
4260 2003-03-30  Andrew Cagney  <cagney@redhat.com>
4261
4262         * gdbarch.sh (DEPRECATED_PUSH_RETURN_ADDRESS): Replace
4263         PUSH_RETURN_ADDRESS.
4264         * gdbarch.h, gdbarch.c: Regenerate.
4265         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4266         * x86-64-tdep.c (x86_64_init_abi): Update.
4267         * v850-tdep.c (v850_gdbarch_init): Update.
4268         * sparc-tdep.c (sparc_gdbarch_init): Update.
4269         * sh-tdep.c (sh_gdbarch_init): Update.
4270         * s390-tdep.c (s390_gdbarch_init): Update.
4271         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4272         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
4273         * mips-tdep.c (mips_gdbarch_init): Update.
4274         * mcore-tdep.c (mcore_gdbarch_init): Update.
4275         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4276         * ia64-tdep.c (ia64_gdbarch_init): Update.
4277         * i386-tdep.c (i386_gdbarch_init): Update.
4278         * h8300-tdep.c (h8300_gdbarch_init): Update.
4279         * frv-tdep.c (frv_gdbarch_init): Update.
4280         * cris-tdep.c (cris_gdbarch_init): Update.
4281         * avr-tdep.c (avr_gdbarch_init): Update.
4282         * arm-tdep.c (arm_gdbarch_init): Update.
4283         * valops.c (hand_function_call): Update.
4284
4285 2003-03-29  Andrew Cagney  <cagney@redhat.com>
4286
4287         * d10v-tdep.c (d10v_gdbarch_init): Do not set call_dummy_words or
4288         sizeof_call_dummy_words.
4289         * gdbarch.sh (CALL_DUMMY_WORDS, SIZEOF_CALL_DUMMY_WORDS): Always
4290         define.
4291         * gdbarch.h: Regenerate.
4292         
4293 2003-03-29  Andrew Cagney  <cagney@redhat.com>
4294
4295         * infttrace.h: New file.
4296         * hpread.c: Include "gdb_assert.h" and "somsolib.h".
4297         (hpread_get_textlow): Detect an uninitialized dn_bufp.
4298         (hpread_read_doc_function_type): Detect an initialized type1.
4299         (hpread_quick_traverse): Initialize mod_name_string.
4300         * somsolib.h: Add #ifdef SOMSOLIB_H wrapper.
4301         (som_solib_get_solib_by_pc): Declare.
4302         (so_lib_thread_start_addr): Declare.
4303         (no_shared_libraries): Declare.
4304         * somread.c (init_import_symbols): Make static.  Add forward
4305         declaration.
4306         * config/pa/nm-hppah.h: Include "infttrace.h" for
4307         parent_attach_all.
4308         (hppa_insert_hw_watchpoint): Declare.
4309         (hppa_can_use_hw_watchpoint, hppa_remove_hw_watchpoint): Declare.
4310         * hppah-nat.c: Include "gdb_string.h".
4311         (parent_attach_all): Delete extern declaration, moved to
4312         "infttrace.h".
4313         (hppa_can_use_hw_watchpoint): Change type of "type" parameter to
4314         int.
4315         (hppa_remove_hw_watchpoint, hppa_insert_hw_watchpoint): Ditto.
4316         * Makefile.in (infttrace_h): Define.
4317         (hpread.o): Update dependencies.
4318         (hppah-nat.o, hppa-hpux-tdep.o, hppa-tdep.o): Ditto.
4319         * hppa-hpux-tdep.c: Include "gdb_string.h".
4320         * hppa-tdep.c (hppa_frame_saved_pc): Initialize "old_pc".
4321         * infrun.c (handle_inferior_event): Always initialize
4322         stepped_after_stopped_by_watchpoint.  Add default and remove
4323         fallthrough in switch statement.
4324         * infttrace.c (hppa_can_use_hw_watchpoint): Change type of "type"
4325         parameter to int.
4326         (hppa_remove_hw_watchpoint): Ditto.
4327
4328 2003-03-29  Andrew Cagney  <cagney@redhat.com>
4329
4330         * ns32k-tdep.c (ns32k_gdbarch_init): Set the call dummy breakpoint
4331         offset.
4332
4333 2003-03-29  Richard Earnshaw  <rearnsha@arm.com>
4334
4335         * arm-tdep.c (arm_push_arguments): Delete.
4336         (struct stack_item): New type.
4337         (push_stack_item, pop_stack_item, arm_push_dummy_call): New functions.
4338         (arm_store_struct_return): Delte.
4339         (arm_gdbarch_init): Register arm_push_dummy_call.  Don't register
4340         arm_push_arguments or arm_store_struct_return.
4341
4342 2003-03-28  Andrew Cagney  <cagney@redhat.com>
4343
4344         * Makefile.in (d10v-tdep.o): Update dependencies.
4345         * remote.h (target_resume_hook, target_wait_loop_hook): Declare.
4346         * d10v-tdep.c: Include "remote.h".
4347         (target_resume_hook): Delete extern declaration.
4348         (target_wait_loop_hook): Ditto.
4349         (tdisassemble_command): Eliminate assignment in "if" conditional.
4350         (d10v_ts2_register_sim_regno): Eliminate call to
4351         legacy_register_sim_regno.
4352         (d10v_ts3_register_sim_regno): Ditto.
4353
4354 2003-03-28  Jeff Johnston  <jjohnstn@redhat.com>
4355
4356         * thread.c: Reindented.
4357         * lin-lwp.c: Ditto.
4358         * linux-proc.c: Ditto.
4359
4360 2003-03-28  Bob Rossi  <bob_rossi@cox.net>
4361
4362         * MAINTAINERS (write after approval): Add myself.
4363
4364 2003-03-27  Theodore A. Roth  <troth@openavr.org>
4365
4366         * objc-exp.y: Add missing semi-colons.
4367
4368 2003-03-27  Andrew Cagney  <cagney@redhat.com>
4369
4370         * regcache.c (write_sp): Delete function and references.
4371         * inferior.h (write_sp): Delete declaration.
4372         * valops.c (hand_function_call): Replace write_sp with
4373         TARGET_WRITE_SP.
4374         * sparc-tdep.c (sparc_push_dummy_frame): Ditto.
4375         (sparc_pop_frame): Ditto.
4376         
4377 2003-03-27  Andrew Cagney  <cagney@redhat.com>
4378
4379         * NEWS: Mention removal of support for hppa*-*-bsd* and
4380         hppa*-*-osf* natives, and hppa*-*-pro* target.
4381         * config/pa/xm-hppah.h: Do not include "pa/xm-pa.h".
4382         * config/pa/xm-pa.h: Obsolete file.
4383         * config/pa/xm-hppab.h: Obsolete file.
4384         * config/pa/nm-hppab.h: Obsolete file.
4385         * config/pa/tm-hppab.h: Obsolete file.
4386         * config/pa/tm-hppao.h: Obsolete file.
4387         * config/pa/nm-hppao.h: Obsolete file.
4388         * config/pa/tm-pro.h: Obsolete file.
4389         * config/pa/hppaosf.mt: Obsolete file.
4390         * config/pa/hppaosf.mh: Obsolete file.
4391         * config/pa/hppapro.mt: Obsolete file.
4392         * config/pa/hppabsd.mt: Obsolete file.
4393         * config/pa/hppabsd.mh: Obsolete file.
4394         * configure.host: Disable hppa*-*-bsd* and hppa*-*-osf*.
4395         * configure.tgt: Disable hppa*-*-bsd*, hppa*-*-pro* and
4396         hppa*-*-osf*.
4397
4398 2003-03-27  Andrew Cagney  <cagney@redhat.com>
4399
4400         * d10v-tdep.c (d10v_gdbarch_init): Set push_dummy_call instead of
4401         push_arguments.  Don't set push_return_address or write_sp.
4402         (d10v_push_dummy_call): Replace d10v_push_arguments.
4403         (d10v_push_return_address, d10v_write_sp): Delete function,
4404         handled by push_dummy_call.
4405
4406 2003-03-26  Andrew Cagney  <cagney@redhat.com>
4407
4408         * gdbarch.sh (DEPRECATED_PUSH_ARGUMENTS): Rename PUSH_ARGUMENTS.
4409         (push_dummy_call): New pure multi-arch replacement with gdbarch,
4410         regcache and dummy_addr parameters.
4411         * gdbarch.h, gdbarch.c: Re-generate.
4412         * valops.c (hand_function_call): Use gdbarch_push_dummy_call when
4413         available; assume it will handle stack alignment and return
4414         address issues.  Fall back to DEPRECATED_PUSH_ARGUMENTS and
4415         legacy_push_arguments.
4416         (legacy_push_arguments): Rename default_push_arguments.
4417         * value.h (legacy_push_arguments): Rename default_push_arguments.
4418         * i386-tdep.c (i386_push_arguments): Call legacy_push_arguments.
4419         * config/sparc/tm-sparc.h (DEPRECATED_PUSH_ARGUMENTS): Update.
4420         * config/sparc/tm-sp64.h (DEPRECATED_PUSH_ARGUMENTS): Update.
4421         * config/pa/tm-hppa.h (DEPRECATED_PUSH_ARGUMENTS): Update.
4422         * config/i386/tm-symmetry.h: Update.
4423         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4424         * x86-64-tdep.c (x86_64_init_abi): Update.
4425         * v850-tdep.c (v850_gdbarch_init): Update.
4426         * sparc-tdep.c (sparc_gdbarch_init): Update.
4427         * sh-tdep.c (sh_gdbarch_init): Update.
4428         * s390-tdep.c (s390_gdbarch_init): Update.
4429         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4430         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
4431         * mips-tdep.c (mips_gdbarch_init): Update.
4432         * mcore-tdep.c (mcore_gdbarch_init): Update.
4433         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4434         * ia64-tdep.c (ia64_gdbarch_init): Update.
4435         * i386-tdep.c (i386_gdbarch_init): Update.
4436         * hppa-tdep.c (hppa_gdbarch_init): Update.
4437         * h8300-tdep.c (h8300_gdbarch_init): Update.
4438         * frv-tdep.c (frv_gdbarch_init): Update.
4439         * d10v-tdep.c (d10v_gdbarch_init): Update.
4440         * cris-tdep.c (cris_gdbarch_init): Update.
4441         * avr-tdep.c (avr_gdbarch_init): Update.
4442         * arm-tdep.c (arm_gdbarch_init): Update.
4443         * arm-linux-tdep.c (arm_linux_init_abi): Update.
4444         * alpha-tdep.c (alpha_gdbarch_init): Update.
4445
4446 2003-03-26  Daniel Jacobowitz  <drow@mvista.com>
4447
4448         * signals/signals.c (do_target_signal_to_host): Correct realtime
4449         signal range test.
4450
4451 2003-03-26  Daniel Jacobowitz  <drow@mvista.com>
4452
4453         * breakpoint.c (handle_gnu_4_16_catch_command, get_catch_sals)
4454         (struct sal_chain, map_catch_names): Remove.
4455         (catch_exception_command_1): Don't call
4456         handle_gnu_4_16_catch_command.
4457
4458 2003-03-26  Daniel Jacobowitz  <drow@mvista.com>
4459
4460         From Mark Dettinger <dettinge@de.ibm.com>:
4461         * dwarf2cfi.c (read_2u): Increment pointer by two.
4462
4463 2003-03-26  Daniel Jacobowitz  <drow@mvista.com>
4464
4465         * signals/signals.c: Fix typos in last change.
4466
4467 2003-03-26  Daniel Jacobowitz  <drow@mvista.com>
4468
4469         * signals/signals.c (REALTIME_LO, REALTIME_HI): Define if
4470         not already defined.  Use __SIGRTMIN if available.
4471         (target_signal_from_host): Remove SIGRTMIN block.
4472         (do_target_signal_to_host): Remove SIGRTMIN block; check that
4473         the signal is within the realtime range.
4474
4475 2003-03-25  Adam Fedor  <fedor@gnu.org>
4476
4477         * Makefile.in (infrun.o): Add $(language_h)
4478         * infrun.c (handle_inferior_event): Use skip_language_trampoline
4479         for language specific trampolines.
4480         * language.h (struct language_defn): Add skip_trampoline.
4481         (skip_language_trampoline): Declare.
4482         * language.c (unk_lang_trampoline, skip_language_trampoline):
4483         New functions.
4484         (unknown_language_defn, auto_language_defn, local_language_defn):
4485         Add ukn_lang_trampoline.
4486         * ada-lang.c (ada_language_defn): Add NULL for language
4487         specific skip_trampoline.
4488         * c-lang.c, f-lang.c, jv-lang.c, m2-lang.c, p-lang.c,
4489         scm-lang.c: Likewise.
4490         * objc-lang.c (objc_skip_trampoline): New function.
4491         (objc_language_defn): Add objc_skip_trampoline.
4492
4493 2003-03-25  Andrew Cagney  <cagney@redhat.com>
4494
4495         * frame.c (get_prev_frame): Delay validating a frame's ID -
4496         non-NULL, didn't go backwards - until an attempt to unwind it to
4497         the previous frame.
4498
4499 2003-03-25  Andrew Cagney  <cagney@redhat.com>
4500
4501         * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Replace
4502         EXTRA_STACK_ALIGNMENT_NEEDED.  Default to 0 not 1.
4503         * gdbarch.h, gdbarch.c: Re-generate.
4504         * config/sparc/tm-sparc.h
4505         (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Define.
4506         * sparc-tdep.c (sparc_gdbarch_init): Set
4507         deprecated_extra_stack_alignment_needed.
4508         * config/pa/tm-hppa.h (EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
4509         * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not clear
4510         extra_stack_alignment_needed.
4511         * v850-tdep.c (v850_gdbarch_init): Ditto.
4512         * hppa-tdep.c (hppa_gdbarch_init): Ditto.
4513         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
4514         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4515         * cris-tdep.c (cris_gdbarch_init): Ditto.
4516         * m68k-tdep.c (m68k_gdbarch_init): Ditto.
4517         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
4518         
4519 2003-03-25  Andrew Cagney  <cagney@redhat.com>
4520
4521         * gdbarch.sh (DEPRECATED_STORE_STRUCT_RETURN): Replace
4522         STORE_STRUCT_RETURN.
4523         * gdbarch.h, gdbarch.c: Regenerate.
4524         * d10v-tdep.c (d10v_store_struct_return): Delete function.
4525         (d10v_push_arguments): Set the struct return register.
4526         (d10v_gdbarch_init): Update.
4527         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4528         * x86-64-tdep.c (x86_64_init_abi): Update.
4529         * vax-tdep.c (vax_gdbarch_init): Update.
4530         * v850-tdep.c (v850_gdbarch_init): Update.
4531         * sparc-tdep.c (sparc_gdbarch_init): Update.
4532         * sh-tdep.c (sh_gdbarch_init): Update.
4533         * s390-tdep.c (s390_gdbarch_init): Update.
4534         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4535         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4536         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
4537         * mips-tdep.c (mips_gdbarch_init): Update.
4538         * mcore-tdep.c (mcore_gdbarch_init): Update.
4539         * m68k-tdep.c (m68k_gdbarch_init): Update.
4540         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4541         * ia64-tdep.c (ia64_gdbarch_init): Update.
4542         * i386-tdep.c (i386_gdbarch_init): Update.
4543         * hppa-tdep.c (hppa_gdbarch_init): Update.
4544         * h8300-tdep.c (h8300_gdbarch_init): Update.
4545         * frv-tdep.c (frv_gdbarch_init): Update.
4546         * cris-tdep.c (cris_gdbarch_init): Update.
4547         * avr-tdep.c (avr_gdbarch_init): Update.
4548         * arm-tdep.c (arm_gdbarch_init): Update.
4549         * alpha-tdep.c (alpha_gdbarch_init): Update.
4550         
4551 2003-03-25  Andrew Cagney  <cagney@redhat.com>
4552
4553         * gdbarch.sh (CALL_DUMMY_STACK_ADJUST_P): Delete.
4554         (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Replace
4555         CALL_DUMMY_STACK_ADJUST with a predicate variable.
4556         * gdbarch.h, gdbarch.c: Regenerate.
4557         * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
4558         call_dummy_stack_adjust_p.
4559         * vax-tdep.c (vax_gdbarch_init): Ditto.
4560         * v850-tdep.c (v850_gdbarch_init): Ditto.
4561         * sh-tdep.c (sh_gdbarch_init): Ditto.
4562         * s390-tdep.c (s390_gdbarch_init): Ditto.
4563         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
4564         * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
4565         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
4566         * mips-tdep.c (mips_gdbarch_init): Ditto.
4567         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
4568         * m68k-tdep.c (m68k_gdbarch_init): Ditto.
4569         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
4570         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
4571         * i386-tdep.c (i386_gdbarch_init): Ditto.
4572         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
4573         * frv-tdep.c (frv_gdbarch_init): Ditto.
4574         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
4575         * cris-tdep.c (cris_gdbarch_init): Ditto.
4576         * avr-tdep.c (avr_gdbarch_init): Ditto.
4577         * arm-tdep.c (arm_gdbarch_init): Ditto.
4578         * alpha-tdep.c (alpha_gdbarch_init): Ditto.
4579         * config/sparc/tm-sp64.h (CALL_DUMMY_STACK_ADJUST): Update.
4580         * config/sparc/tm-sparc.h (CALL_DUMMY_STACK_ADJUST): Update.
4581         * config/sparc/tm-sp64.h (CALL_DUMMY_STACK_ADJUST): Update.
4582         * sparc-tdep.c (sparc_gdbarch_init): Update.  Do not set
4583         call_dummy_stack_adjust_p.
4584         * inferior.h (CALL_DUMMY_STACK_ADJUST_P): Delete macro.
4585         (CALL_DUMMY_STACK_ADJUST): Delete macro.
4586         * sparc-tdep.c (sparc32_push_arguments): Update.
4587         * valops.c (hand_function_call): Update.
4588
4589 2003-03-25  Corinna Vinschen  <vinschen@redhat.com>
4590
4591         * xstormy16-tdep.c (xstormy16_gdbarch_init): Add call to
4592         set_gdbarch_char_signed.
4593
4594 2003-03-25  Richard Earnshaw  <rearnsha@arm.com>
4595
4596         PR cli/548
4597         * arm-tdep.c (_initialize_arm_tdep): Command is "set arm disassembler".
4598
4599 2003-03-25  Richard Earnshaw  <rearnsha@arm.com>
4600
4601         * arm-tdep.c (arm_gdbarch_init): Register the disassembler function.
4602         (_initialize_arm_tdep): Don't set tm_print_insn.
4603
4604 2003-03-24  Adam Fedor  <fedor@gnu.org>
4605
4606         * Makefile.in (YYOBJ): Add objc-exp.tab.o
4607         * objc-lang.h: Add multiple inclusion protection.
4608         (start_msglist, add_msglist, end_msglist): Additional declarations.
4609
4610 2003-03-24  Richard Earnshaw  <rearnsha@arm.com>
4611
4612         * armnbsd-tdep.c (arm_netbsd_aout_init_abi): ARM_FLOAT_SOFT enum
4613         value was renamed to ARM_FLOAT_SOFT_FPA.
4614
4615 2003-03-23  Andrew Cagney  <cagney@redhat.com>
4616
4617         * gdbarch.sh (DEPRECATED_FRAME_CHAIN): Replace FRAME_CHAIN.
4618         (DEPRECATED_FRAME_CHAIN_VALID): Replace FRAME_CHAIN_VALID.
4619         * gdbarch.h, gdbarch.c: Regenerate.
4620         * valops.c (hand_function_call): Update.
4621         * objfiles.h (DEPRECATED_FRAME_CHAIN_VALID): Update.
4622         * frame.c (legacy_saved_regs_this_id): Update.
4623         (legacy_get_prev_frame, get_prev_frame, legacy_frame_p): Update.
4624         * dummy-frame.h: Update.
4625         * config/sparc/tm-sparc.h (DEPRECATED_FRAME_CHAIN): Update.
4626         * config/pa/tm-hppa.h (DEPRECATED_FRAME_CHAIN_VALID): Update.
4627         * config/m68k/tm-vx68.h (DEPRECATED_FRAME_CHAIN): Update.
4628         * config/m68k/tm-os68k.h (DEPRECATED_FRAME_CHAIN): Update.
4629         * config/m68k/tm-sun3.h: Update.
4630         * blockframe.c (inside_main_func, frame_chain_valid): Update.
4631         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4632         * x86-64-tdep.c (x86_64_init_abi): Update.
4633         * vax-tdep.c (vax_gdbarch_init): Update.
4634         * v850-tdep.c (v850_gdbarch_init): Update.
4635         * sparc-tdep.c (sparc_frame_chain, sparc_gdbarch_init): Update.
4636         * sh-tdep.c (sh_gdbarch_init): Update.
4637         * s390-tdep.c (s390_gdbarch_init): Update.
4638         * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
4639         (rs6000_gdbarch_init, rs6000_frame_saved_pc): Update.
4640         (frame_get_saved_regs): Update.
4641         * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
4642         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4643         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
4644         * mips-tdep.c (mips_gdbarch_init): Update.
4645         * mcore-tdep.c (mcore_gdbarch_init): Update.
4646         * m68k-tdep.c (m68k_gdbarch_init): Update.
4647         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4648         * ia64-tdep.c (ia64_gdbarch_init): Update.
4649         * i386-tdep.c (i386_frame_num_args, i386_gdbarch_init): Update.
4650         * i386-interix-tdep.c (i386_interix_init_abi): Update.
4651         (i386_interix_back_one_frame): Update.
4652         * hppa-tdep.c (hppa_gdbarch_init): Update.
4653         (hppa_init_extra_frame_info): Update.
4654         * h8300-tdep.c (h8300_gdbarch_init): Update.
4655         * frv-tdep.c (frv_gdbarch_init): Update.
4656         * cris-tdep.c (cris_gdbarch_init): Update.
4657         * avr-tdep.c (avr_gdbarch_init): Update.
4658         * arm-tdep.c (arm_gdbarch_init): Update.
4659         * alpha-tdep.c (alpha_gdbarch_init): Update.
4660
4661 2003-03-22  Richard Earnshaw  <rearnsha@arm.com>
4662
4663         * arm-tdep.h (arm_float_model): Add AUTO and LAST values.
4664         (arm_get_fp_model): Declare.
4665         * arm-tdep.c (fp_model_strings): New string array.
4666         (arm_fp_model, current_fp_model): New variables.
4667         (arm_get_fp_model): New function.
4668         (arm_set_fp): New function.
4669         (set_fp_model_sfunc): New function.
4670         (show_fp_model): New function.
4671         (_initialize_arm_tdep): Add new command to set/show the FPU.
4672         (arm_extract_return_value): Use arm_get_fp_model.
4673         (arm_store_return_value): Likewise.
4674         (arm_gdbarch_init): Default fpa model is softfpa.  Call arm_set_fp
4675         to initialize the floating-point data types.
4676         * arm-linux-tdep.c (arm_linux_init_abi): The default floating point
4677         model is FPA.
4678
4679 2003-03-22  Richard Earnshaw  <rearnsha@arm.com>
4680
4681         * arm-tdep.c (show_arm_command): Don't print out help.  Instead, show
4682         the current setting of each value.
4683         (_initialize_arm_tdep): Delete variable new_cmd and add new vars
4684         new_set and new_show.  Use add_setshow_cmd_full and 
4685         add_setshow_boolean_cmd as appropriate.  Deprecate "set/show apcs32"
4686         commands and add new version as subcommands of "set/show arm".
4687
4688 2003-03-22  Richard Earnshaw  <rearnsha@arm.com>
4689
4690         * arm-tdep.c (setarmcmdlist, showarmcmdlist): New command lists.
4691         (set_arm_command, show_arm_command): New functions.
4692         (_initialize_arm_tdep): Add them.
4693         (num_disassembly_options): Renamed from num_flavor_options.
4694         (valid_disassembly_styles): Renamed from valid_flavors.
4695         (disassembly_style): Renamed from disassembly_flavor.
4696         (set_disassembly_style_sfunc): Renamed from 
4697         set_disassembly_flavor_sfunc.
4698         (set_disassembly_style): Renamed from set_disassembly_flavor.
4699         (arm_othernames): Updated.
4700         (_initialize_arm_tdep): Deprecate "set/show disassembly-flavor"
4701         command.  Add "set/show arm disassembly" commands.  Deprecate
4702         "othernames" command.
4703
4704 2003-03-22  Richard Earnshaw  <rearnsha@arm.com>
4705
4706         * Makefile.in (elf_reloc_macros_h, elf_arm_h): Define.
4707         (arm-tdep.o): Depend on elf_arm_h.
4708
4709 2003-03-22  Richard Earnshaw  <rearnsha@arm.com>
4710
4711         * Makefile.in (coff_internal_h): Define.
4712         (arm-tdep.o): Update dependencies.
4713
4714 2003-03-22  Richard Earnshaw  <rearnsha@arm.com>
4715
4716         * arm-tdep.c (prologue_cache): Delete.
4717         (check_prologue_cache, save_prologue_cache): Delete.
4718         (arm_scan_prologue): Don't check or update the prologue_cache.
4719         (arm_gdb_arch_init): Don't initialize it.
4720         (_initialize_arm_tdep): Likewise.
4721
4722 2003-03-21  Stephane Carrez  <stcarrez@nerim.fr>
4723
4724         * MAINTAINERS (tui): Maintainer of tui code.
4725
4726 2003-03-21  Corinna Vinschen  <vinschen@redhat.com>
4727
4728         * Makefile.in (ALLDEPFILES): Add i386-cygwin-tdep.c.
4729         (i386-cygwin-tdep.o): Add dependencies.
4730         * defs.h (enum gdb_osabi): Add GDB_OSABI_CYGWIN.
4731         * i386-cygwin-tdep.c: New file.
4732         * osabi.c (gdb_osabi_name): Add string for GDB_OSABI_CYGWIN.
4733         * config/i386/cygwin.mt (TDEPFILES): Add i386-cygwin-tdep.o.
4734
4735 2003-03-20  Andrew Cagney  <cagney@redhat.com>
4736
4737         * infrun.c (DYNAMIC_TRAMPOLINE_NEXTPC): Delete macro.
4738         (handle_inferior_event): Remove code calling
4739         DYNAMIC_TRAMPOLINE_NEXTPC.
4740
4741         * Makefile.in (init.c): Don't add $(srcdir) prefix when a file
4742         already has a full path.
4743
4744         * main.c (gdb_main): Return 1.
4745         (captured_main): Call error to report an invalid interpreter.
4746
4747         * Makefile.in (alpha-osf1-tdep.o): Update dependencies.
4748         * alpha-osf1-tdep.c: Include "gdb_string.h".
4749
4750 2003-03-19  J. Brobecker  <brobecker@gnat.com>
4751
4752         Continuing work to convert the hppa targets to multiarch partial.
4753
4754         * hppa-tdep.c (hppa_gdbarch_init): Set the push_dummy_frame gdbarch
4755         method, now that hppa_push_dummy_frame has a conformant prototype.
4756         * config/pa/tm-hppa.h (DEPRECATED_PUSH_DUMMY_FRAME): Wrap macro
4757         inside "#if !GDB_MULTI_ARCH ... #endif" conditional, in preparation
4758         for the switch to multiarch partial.
4759
4760 2003-03-19  Kevin Buettner  <kevinb@redhat.com>
4761
4762         * mdebugread.c (parse_symbol): For stEnd, we're done counting
4763         when iss is issNull.
4764
4765 2003-03-18  Kevin Buettner  <kevinb@redhat.com>
4766
4767         * mips-tdep.c (mips_register_name): Fix fencepost error involving
4768         NUM_REGS bounds check.
4769
4770 2003-03-18  Kevin Buettner  <kevinb@redhat.com>
4771
4772         * Makefile.in (mips-tdep.o): Add dependency on $(gdb_assert_h).
4773         * mips-tdep.c (gdb_assert.h): Include.
4774         (mips_generic_reg_names, mips_processor_reg_names): Make static.
4775         (mips_register_name): Handle integer registers explicitly.  Add
4776         bounds checking.
4777         (mips_r3041_reg_names, mips_r3051_reg_names, mips_r3081_reg_names)
4778         (mips_lsi33k_reg_names): Don't list integer registers; they're
4779         handled by mips_register_name() now.
4780         * config/mips/tm-irix3.h (MIPS_REGISTER_NAMES): Likewise.
4781         * config/mips/tm-irix6.h (MIPS_REGISTER_NAMES): Likewise.
4782         * config/mips/tm-mips.h (MIPS_REGISTER_NAMES): Likewise.
4783         * config/mips/tm-tx39.h (MIPS_REGISTER_NAMES): Likewise.
4784         * config/mips/tm-tx39l.h (MIPS_REGISTER_NAMES): Likewise.
4785
4786 2003-03-18  Andrew Cagney  <cagney@redhat.com>
4787
4788         * printcmd.c (print_scalar_formatted): Change VALADDR parameter to
4789         a void pointer.
4790         * gdbtypes.h (print_scalar_formatted): Update declaration.
4791         * expression.h (enum exp_opcode): Remove non-ISO C trailing comma.
4792
4793 2003-03-18  J. Brobecker  <brobecker@gnat.com>
4794
4795         * infrun.c (observer.h): Add #include.
4796         (normal_stop): Add call to observer_notify_normal_stop.
4797         * Makefile.in (infrun.o): Add dependency on observer.h.
4798
4799 2003-03-18  J. Brobecker  <brobecker@gnat.com>
4800
4801         Continuing work to convert the hppa targets to multiarch partial.
4802         * hppa-tdep.c (hppa_push_dummy_frame): Remove unused function
4803         parameter. Reformat comment.
4804         * config/pa/tm-hppa.h (hppa_push_dummy_frame): Update profile.
4805         (DEPRECATED_PUSH_DUMMY_FRAME): Update call to hppa_push_dummy_frame()
4806         to match new profile.
4807
4808 2003-03-18  J. Brobecker  <brobecker@gnat.com>
4809
4810         * hppa-tdep.c (hppa_push_dummy_frame): Remove hack which does not
4811         appear to be working in any case.
4812
4813 2003-03-18  J. Brobecker  <brobecker@gnat.com>
4814
4815         * observer.c (observer_test_first_observer): New static variable.
4816         (observer_test_second_observer): Likewise.
4817         (observer_test_third_observer): Likewise.
4818         (observer_test_first_notification_function): New static function.
4819         (observer_test_second_notification_function): Likewise.
4820         (observer_test_third_notification_function): Likewise.
4821
4822 2003-03-17  J. Brobecker  <brobecker@gnat.com>
4823
4824         * hppa-tdep.c (gdb_assert.h): Add missing #include.
4825         * somsolib.c (gdb_assert.h): Likewise.
4826         * Makefile.in (hppa-tdep.o): Add dependency on gdb_assert.h.
4827         (somsolib.o): Likewise.
4828
4829 2003-03-17  Andrew Cagney  <cagney@redhat.com>
4830
4831         * disasm.c (gdb_disassembly): Set di.mach using the architecture's
4832         BFD.  Simplify setting of di.endian.
4833
4834 2003-03-17  Andrew Cagney  <cagney@redhat.com>
4835
4836         * rs6000-tdep.c (ppc_floating_point_unit_p): New function.
4837         * ppc-tdep.h (ppc_floating_point_unit_p): Declare.
4838
4839         From Elena Zannoni  <ezannoni@redhat.com>
4840         * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): Handle e500
4841         vector and floating-point parameters.
4842         (ppc_sysv_abi_use_struct_convention): Handle e500 struct return
4843         convention.
4844         (ppc_sysv_abi_broken_use_struct_convention): Ditto.
4845
4846 2003-03-17  Fernando Nasser  <fnasser@redhat.com>
4847
4848         * MAINTAINERS: Remove my name from several maintainership roles.
4849
4850 2003-03-17  Andrew Cagney  <cagney@redhat.com>
4851
4852         Fix frame off-by-one bug.
4853         * frame-unwind.h (frame_this_id_ftype): Replace
4854         frame_unwind_id_ftype.
4855         (frame_prev_register_ftype): Replace frame_unwind_reg_ftype.
4856         (struct frame_unwind): Replace "id" with "this_id".  Replace "reg"
4857         with "prev_register".
4858         * frame-unwind.c (frame_unwind_find_by_pc): Return
4859         legacy_saved_regs_unwind instead of trad_frame_unwind.  Update
4860         comment.
4861         * dummy-frame.c (cached_find_dummy_frame): Delete function.
4862         (dummy_frame_this_id): Replace dummy_frame_id_unwind.
4863         (dummy_frame_prev_register): Replace dummy_frame_register_unwind.
4864         (dummy_frame_unwind): Update.
4865         * sentinel-frame.c (sentinel_frame_prev_register): Replace
4866         sentinel_frame_register_unwind.
4867         (sentinel_frame_this_id): Replace sentinel_frame_id_unwind.
4868         (sentinel_frame_unwinder): Update.
4869         * frame.h (legacy_saved_regs_unwind): Replace trad_frame_unwind.
4870         (struct frame_info): Rename "unwind_cache" to "prologue_cache".
4871         * frame.c (create_sentinel_frame): Update. Initialize
4872         "prologue_cache" instead of "unwind_cache".
4873         (frame_register_unwind): Call this frame's prev_register with the
4874         next frame and this frame's prologue cache.
4875         (get_prev_frame): Simplify.  Always call prev frame's this_id with
4876         this frame and prev frame's prologue cache.  Document that this
4877         call is shifted one to the left when compared to the
4878         frame_register_unwind call.
4879         (legacy_saved_regs_prev_register): Replace
4880         frame_saved_regs_register_unwind.
4881         (legacy_saved_regs_this_id): Replace frame_saved_regs_id_unwind.
4882         (legacy_saved_regs_unwinder): Replace trad_frame_unwinder.
4883         (legacy_saved_regs_unwind): Replace trad_frame_unwind.
4884         * d10v-tdep.c (d10v_frame_this_id): Replace d10v_frame_id_unwind.
4885         (d10v_frame_unwind): Update.
4886         (d10v_frame_prev_register): Replace d10v_frame_register_unwind.
4887         (d10v_frame_unwind_cache): Replace this "fi" with "next_frame".
4888         (saved_regs_unwinder): Replace this "frame" with "next_frame", and
4889         "saved_regs" with "this_saved_regs".
4890
4891 2003-03-16  Andrew Cagney  <cagney@redhat.com>
4892
4893         * frame.c (frame_pop): Don't call target_store_registers.  Fix
4894         problem reported by Mark Kettenis.
4895
4896 2003-03-16  Mark Kettenis  <kettenis@gnu.org>
4897
4898         * i386-tdep.c (i386_register_type): Renamed from
4899         i386_register_virtual_type.  Adjust function signature.
4900         (i386_gdbarch_init): Set register_type instead of
4901         deprecated_max_register_raw_size,
4902         deprecated_max_register_virtual_size and register_virtual_type.
4903
4904 2003-03-14  Andrew Cagney  <cagney@redhat.com>
4905
4906         * frame.c (get_prev_frame): When a legacy frame, always call
4907         legacy_get_prev_frame.  Simplify unwind code using assumption that
4908         the unwinder is new.
4909         (legacy_get_prev_frame): Handle legacy sentinel frame unwind here.
4910         (legacy_frame_p): When no gdbarch_unwind_dummy_id, or
4911         SAVED_DUMMY_FRAME_TOS, assume a legacy frame.
4912
4913 2003-03-14  Andrew Cagney  <cagney@redhat.com>
4914
4915         * frame.c (get_saved_register): Delete function.
4916         * frame.h (get_saved_register): Delete declaration.
4917         * xstormy16-tdep.c: Update comment.
4918         * regcache.h: Update comments.
4919         * sparc-tdep.c (sparc_init_extra_frame_info): Instead of
4920         get_saved_register and extract_address, use
4921         frame_read_unsigned_register.
4922         (sparc_frame_saved_pc): Ditto.
4923         (sparc_get_saved_register): Instead of get_saved_register, use
4924         frame_register.
4925         (sparc_pop_frame): Ditto.
4926         * findvar.c: Update comments.
4927         (value_of_register): Call frame_register instead of
4928         get_saved_register.
4929         (value_from_register): Ditto.
4930         * config/sparc/tm-sparc.h: Update comment.
4931         * breakpoint.c: Update comment.
4932
4933 2003-03-14  Andrew Cagney  <cagney@redhat.com>
4934
4935         * gdbarch.sh (DEPRECATED_GET_SAVED_REGISTER): Replace
4936         GET_SAVED_REGISTER.
4937         * gdbarch.h, gdbarch.c: Re-generate.
4938         * frame.h: Update comments.
4939         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4940         * x86-64-tdep.c (x86_64_init_abi): Update.
4941         * sparc-tdep.c (sparc_gdbarch_init): Update.
4942         * sh-tdep.c (sh_gdbarch_init): Update.
4943         * mips-tdep.c (mips_gdbarch_init): Update.
4944         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4945         * cris-tdep.c (cris_gdbarch_init): Update.
4946         * ia64-tdep.c (ia64_gdbarch_init): Update.
4947         * frame.c (frame_register): Update.
4948         (get_saved_register): Update.
4949         * config/sparc/tm-sparc.h (DEPRECATED_GET_SAVED_REGISTER): Update.
4950         
4951 2003-03-13  Andrew Cagney  <cagney@redhat.com>
4952
4953         * gdbarch.sh (DEPRECATED_POP_FRAME): Replace POP_FRAME.
4954         * gdbarch.h, gdbarch.c: Regenerate.
4955         * valops.c (hand_function_call): Update comment.
4956         * stack.c (return_command): Update comment.
4957         * config/sparc/tm-sparc.h (DEPRECATED_POP_FRAME): Update.
4958         * config/pa/tm-hppa.h (DEPRECATED_POP_FRAME): Update.
4959         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
4960         * x86-64-tdep.c (x86_64_init_abi): Update.
4961         * vax-tdep.c (vax_gdbarch_init): Update.
4962         * v850-tdep.c (v850_gdbarch_init): Update.
4963         * sparc-tdep.c (sparc_gdbarch_init): Update.
4964         * sh-tdep.c (sh_gdbarch_init): Update.
4965         * s390-tdep.c (s390_gdbarch_init): Update.
4966         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
4967         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
4968         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
4969         * mips-tdep.c (mips_gdbarch_init): Update.
4970         * mcore-tdep.c (mcore_gdbarch_init): Update.
4971         * m68k-tdep.c (m68k_gdbarch_init): Update.
4972         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
4973         * ia64-tdep.c (ia64_gdbarch_init): Update.
4974         * i386-tdep.c (i386_gdbarch_init): Update.
4975         * hppa-tdep.c (hppa_gdbarch_init): Update.
4976         * h8300-tdep.c (h8300_gdbarch_init): Update.
4977         * frv-tdep.c (frv_gdbarch_init): Update.
4978         * cris-tdep.c (cris_gdbarch_init): Update.
4979         * avr-tdep.c (avr_gdbarch_init): Update.
4980         * arm-tdep.c (arm_gdbarch_init): Update.
4981         * alpha-tdep.c (alpha_gdbarch_init): Update.
4982
4983 2003-03-13  Andrew Cagney  <cagney@redhat.com>
4984
4985         * frame.c (legacy_frame_p): New function.
4986         (get_prev_frame): Use legacy_frame_p.
4987         * frame.h (legacy_frame_p): Declare.
4988
4989 2003-03-13  D. Venkatasubramanian <dvenkat@noida.hcltech.com>
4990
4991         * MAINTAINERS (write after approval): Alphabetically
4992         listing corrected.
4993
4994 2003-03-13  D. Venkatasubramanian <dvenkat@noida.hcltech.com>
4995
4996         * MAINTAINERS (write after approval): Add myself.
4997
4998 2003-03-12  Andrew Cagney  <cagney@redhat.com>
4999
5000         * frame.c (get_prev_frame): Rename the frame parameter to
5001         "this_frame".
5002         (get_next_frame, legacy_get_prev_frame): Ditto.
5003
5004 2003-03-12  Andrew Cagney  <cagney@redhat.com>
5005
5006         * frame.c (get_current_frame): Check target_has_registers before
5007         checking target_has_stack.
5008         * eval.c (evaluate_subexp_standard): Use get_selected_frame,
5009         instead of deprecated_selected_frame.
5010         * findvar.c (value_of_register): Pass "frame", not
5011         deprecated_selected_frame, to value_of_builtin_reg.
5012
5013 2003-03-12  Andrew Cagney  <cagney@redhat.com>
5014
5015         * regcache.c (regcache_cooked_write_signed): New function.
5016         (regcache_cooked_write_unsigned): New function.
5017         (regcache_cooked_read_unsigned): Fix regnum in range assertion.
5018         (regcache_cooked_read_signed): Fix regnum in range assertion.
5019         * regcache.h (regcache_cooked_write_signed): Declare.
5020         (regcache_cooked_write_unsigned): Declare.
5021
5022 2003-03-12  Andrew Cagney  <cagney@redhat.com>
5023
5024         * gdbarch.sh (DEPRECATED_FRAME_SAVED_PC): Replace FRAME_SAVED_PC.
5025         * gdbarch.h, gdbarch.c: Re-generate.
5026         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5027         * x86-64-tdep.h: Update.
5028         * x86-64-tdep.c (x86_64_init_abi): Update.
5029         * v850-tdep.c (v850_gdbarch_init): Update.
5030         * sparc-tdep.c (sparc_gdbarch_init): Update.
5031         * sh-tdep.c (sh_gdbarch_init): Update.
5032         * s390-tdep.c (s390_gdbarch_init): Update.
5033         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5034         * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
5035         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5036         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
5037         * mips-tdep.c (mips_gdbarch_init): Update.
5038         * mcore-tdep.c (mcore_gdbarch_init): Update.
5039         * m68k-tdep.c (m68k_gdbarch_init): Update.
5040         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5041         * ia64-tdep.c (ia64_gdbarch_init): Update.
5042         * i386-tdep.c (i386_gdbarch_init): Update.
5043         * i386-interix-tdep.c (i386_interix_init_abi): Update.
5044         * hppa-tdep.c (hppa_gdbarch_init): Update.
5045         * h8300-tdep.c (h8300_gdbarch_init): Update.
5046         * frv-tdep.c (frv_gdbarch_init): Update.
5047         * cris-tdep.c (cris_gdbarch_init): Update.
5048         * avr-tdep.c (avr_gdbarch_init): Update.
5049         * arm-tdep.c (arm_gdbarch_init): Update.
5050         * alpha-tdep.c (alpha_gdbarch_init): Update.
5051         * sh-tdep.c (sh_init_extra_frame_info): Update.
5052         (sh64_init_extra_frame_info): Update.
5053         * ns32knbsd-nat.c (frame_num_args): Update.
5054         * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Update.
5055         * xstormy16-tdep.c (xstormy16_pop_frame): Update.
5056         (xstormy16_frame_chain_valid): Update.
5057         * vax-tdep.c (vax_saved_pc_after_call): Update.
5058         * v850-tdep.c (v850_frame_chain): Update.
5059         (v850_pop_frame): Update.
5060         (v850_init_extra_frame_info): Update.
5061         * sparc-tdep.c (setup_arbitrary_frame): Update.
5062         * ns32k-tdep.c (umax_frame_num_args): Update.
5063         * s390-tdep.c (s390_pop_frame_regular): Update.
5064         * mn10300-tdep.c (mn10300_frame_chain): Update.
5065         (mn10300_pop_frame_regular): Update.
5066         (mn10300_init_extra_frame_info): Update.
5067         * mips-tdep.c (mips_init_frame_pc_first): Update.
5068         (mips_frame_chain): Update.
5069         (mips_pop_frame): Update.
5070         * mcore-tdep.c (mcore_frame_chain): Update.
5071         (mcore_pop_frame): Update.
5072         (mcore_init_extra_frame_info): Update.
5073         * arch-utils.c (init_frame_pc_default): Update.
5074         * m68k-tdep.c (isi_frame_num_args): Update.
5075         (delta68_frame_num_args): Update.
5076         (news_frame_num_args): Update.
5077         * ia64-tdep.c (ia64_pop_frame_regular): Update.
5078         * alpha-tdep.c (alpha_init_frame_pc_first): Update.
5079         (alpha_frame_chain): Update.
5080         (alpha_pop_frame): Update.
5081         * hppa-tdep.c (hppa_saved_pc_after_call): Update.
5082         (hppa_init_extra_frame_info): Update.
5083         (hppa_frame_chain): Update.
5084         (hppa_frame_chain_valid): Update.
5085         * cris-tdep.c (cris_init_extra_frame_info): Update.
5086         * avr-tdep.c (avr_init_extra_frame_info): Update.
5087         * arm-tdep.c (arm_frame_chain_valid): Update.
5088         (arm_init_extra_frame_info): Update.
5089         (arm_pop_frame): Update.
5090         * frame.c (frame_pc_unwind): Update.
5091         * config/sparc/tm-sparc.h (DEPRECATED_FRAME_SAVED_PC): Update.
5092         (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
5093         * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
5094         * config/pa/tm-hppa.h (DEPRECATED_FRAME_SAVED_PC): Update.
5095         * config/m68k/tm-delta68.h (DEPRECATED_FRAME_SAVED_PC): Update.
5096         * config/m68k/tm-linux.h (DEPRECATED_FRAME_SAVED_PC): Update.
5097         
5098 2003-03-12  Andrew Cagney  <cagney@redhat.com>
5099
5100         Eliminate the need for POP_FRAME.
5101         * frame.c (do_frame_unwind_register): New function.
5102         (frame_pop): When no POP_FRAME, pop the frame using register
5103         unwind and a scratch regcache.
5104         (frame_saved_regs_pop): Delete function.
5105         (trad_frame_unwinder): Update.
5106         * d10v-tdep.c (d10v_frame_pop): Delete function.
5107         (d10v_frame_unwind): Update.
5108         * sentinel-frame.c (sentinel_frame_pop): Delete function.
5109         (sentinel_frame_unwinder): Update.
5110         * dummy-frame.c (dummy_frame_pop): Delete function.
5111         (dummy_frame_unwind): Update.
5112         * frame-unwind.h (frame_unwind_pop_ftype): Delete definition.
5113         (struct frame_unwind): Update.
5114
5115 2003-03-11  Kevin Buettner  <kevinb@redhat.com>
5116
5117         * mips-tdep.c (mips_ecoff_reg_to_regnum): Rename to
5118         mips_dwarf_dwarf2_ecoff_reg_to_regnum().
5119         (mips_dwarf_dwarf2_ecoff_reg_to_regnum, mips_stab_reg_to_regnum):
5120         Do range checks on register number obtained from debugging info.
5121         (mips_gdbarch_init): Call set_gdbarch_dwarf_reg_to_regnum() and
5122         set_gdbarch_dwarf2_reg_to_regnum().  Adjust call of
5123         set_gdbarch_ecoff_reg_to_regnum() to account for new name of
5124         mapping function.
5125         (do_fp_register_row): Fix typo which caused double type to be
5126         used when attempting to unpack a float.
5127
5128 2003-03-11  J. Brobecker  <brobecker@gnat.com>
5129
5130         * breakpoint.c (bpstat_stop_status): Fix a small memory leak.
5131
5132 2003-03-11  Andrew Cagney  <cagney@redhat.com>
5133
5134         * frame.c (deprecated_update_frame_pc_hack): Don't assume a next
5135         frame.  Problem found by Corinna Vinschen.
5136
5137 2003-03-11  Pierre Muller  <muller@ics.u-strasbg.fr>
5138
5139         * doublest.c (floatformat_from_length): Accept also
5140         the real size of 'long double' type.
5141
5142 2003-03-10  Daniel Jacobowitz  <drow@mvista.com>
5143
5144         From Klee Dienes <kdienes@apple.com>:
5145         * breakpoint.c (bpstat_copy): Copy the command lines as well
5146         as the old value, to match what is freed in bpstat_clear.
5147
5148 2003-03-10  David Carlton  <carlton@math.stanford.edu>
5149
5150         * minsyms.c (add_minsym_to_hash_table): Replace
5151         DEPRECATED_SYMBOL_NAME by SYMBOL_LINKAGE_NAME.
5152         (compare_minimal_symbols, compact_minimal_symbols)
5153         (install_minimal_symbols, find_solib_trampoline_target): Ditto.
5154         (lookup_minimal_symbol_text): Use strcmp on linkage names instead
5155         of DEPRECATED_SYMBOL_MATCHES_NAME.
5156         (lookup_minimal_symbol_solib_trampoline): Ditto.
5157
5158 2003-03-10  Andrew Cagney  <cagney@redhat.com>
5159
5160         * regcache.h (regcache_cooked_read_ftype): Define.
5161         (regcache_save, regcache_restore): Add a cooked_read parameter.
5162         * regcache.c (regcache_save, regcache_restore): Update.
5163         (do_cooked_read): New function.
5164         (regcache_cpy): Pass do_cooked_read to regcache_save and
5165         regcache_restore.
5166
5167 2003-03-10  Andrew Cagney  <cagney@redhat.com>
5168
5169         * gdbarch.sh (DEPRECATED_FRAME_SAVED_PC): Replace FRAME_SAVED_PC.
5170         * gdbarch.h, gdbarch.c: Re-generate.
5171         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5172         * x86-64-tdep.h: Update.
5173         * x86-64-tdep.c (x86_64_init_abi): Update.
5174         * v850-tdep.c (v850_gdbarch_init): Update.
5175         * sparc-tdep.c (sparc_gdbarch_init): Update.
5176         * sh-tdep.c (sh_gdbarch_init): Update.
5177         * s390-tdep.c (s390_gdbarch_init): Update.
5178         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5179         * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
5180         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5181         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
5182         * mips-tdep.c (mips_gdbarch_init): Update.
5183         * mcore-tdep.c (mcore_gdbarch_init): Update.
5184         * m68k-tdep.c (m68k_gdbarch_init): Update.
5185         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5186         * ia64-tdep.c (ia64_gdbarch_init): Update.
5187         * i386-tdep.c (i386_gdbarch_init): Update.
5188         * i386-interix-tdep.c (i386_interix_init_abi): Update.
5189         * hppa-tdep.c (hppa_gdbarch_init): Update.
5190         * h8300-tdep.c (h8300_gdbarch_init): Update.
5191         * frv-tdep.c (frv_gdbarch_init): Update.
5192         * cris-tdep.c (cris_gdbarch_init): Update.
5193         * avr-tdep.c (avr_gdbarch_init): Update.
5194         * arm-tdep.c (arm_gdbarch_init): Update.
5195         * alpha-tdep.c (alpha_gdbarch_init): Update.
5196         * sh-tdep.c (sh_init_extra_frame_info): Update.
5197         (sh64_init_extra_frame_info): Update.
5198         * ns32knbsd-nat.c (frame_num_args): Update.
5199         * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Update.
5200         * xstormy16-tdep.c (xstormy16_pop_frame): Update.
5201         (xstormy16_frame_chain_valid): Update.
5202         * vax-tdep.c (vax_saved_pc_after_call): Update.
5203         * v850-tdep.c (v850_frame_chain): Update.
5204         (v850_pop_frame): Update.
5205         (v850_init_extra_frame_info): Update.
5206         * sparc-tdep.c (setup_arbitrary_frame): Update.
5207         * ns32k-tdep.c (umax_frame_num_args): Update.
5208         * s390-tdep.c (s390_pop_frame_regular): Update.
5209         * mn10300-tdep.c (mn10300_frame_chain): Update.
5210         (mn10300_pop_frame_regular): Update.
5211         (mn10300_init_extra_frame_info): Update.
5212         * mips-tdep.c (mips_init_frame_pc_first): Update.
5213         (mips_frame_chain): Update.
5214         (mips_pop_frame): Update.
5215         * mcore-tdep.c (mcore_frame_chain): Update.
5216         (mcore_pop_frame): Update.
5217         (mcore_init_extra_frame_info): Update.
5218         * arch-utils.c (init_frame_pc_default): Update.
5219         * m68k-tdep.c (isi_frame_num_args): Update.
5220         (delta68_frame_num_args): Update.
5221         (news_frame_num_args): Update.
5222         * ia64-tdep.c (ia64_pop_frame_regular): Update.
5223         * alpha-tdep.c (alpha_init_frame_pc_first): Update.
5224         (alpha_frame_chain): Update.
5225         (alpha_pop_frame): Update.
5226         * hppa-tdep.c (hppa_saved_pc_after_call): Update.
5227         (hppa_init_extra_frame_info): Update.
5228         (hppa_frame_chain): Update.
5229         (hppa_frame_chain_valid): Update.
5230         * cris-tdep.c (cris_init_extra_frame_info): Update.
5231         * avr-tdep.c (avr_init_extra_frame_info): Update.
5232         * arm-tdep.c (arm_frame_chain_valid): Update.
5233         (arm_init_extra_frame_info): Update.
5234         (arm_pop_frame): Update.
5235         * frame.c (frame_pc_unwind): Update.
5236         * config/sparc/tm-sparc.h (DEPRECATED_FRAME_SAVED_PC): Update.
5237         (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
5238         * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
5239         * config/pa/tm-hppa.h (DEPRECATED_FRAME_SAVED_PC): Update.
5240         * config/m68k/tm-delta68.h (DEPRECATED_FRAME_SAVED_PC): Update.
5241         * config/m68k/tm-linux.h (DEPRECATED_FRAME_SAVED_PC): Update.
5242         
5243 2003-03-10  Andrew Cagney  <cagney@redhat.com>
5244
5245         * gdbarch.sh (gdbarch_unwind_pc): New method.
5246         * gdbarch.h, gdbarch.c: Regenerate.
5247         * frame.c (frame_pc_unwind): Rewrite.  Prefer gdbarch_unwind_pc,
5248         but use read_pc and FRAME_SAVED_PC as fall backs.
5249         (frame_saved_regs_pc_unwind): Delete function.
5250         (trad_frame_unwinder): Update.
5251         * frame-unwind.h (frame_unwind_pc_ftype): Delete declaration.
5252         (struct frame_unwind): Update.
5253         * dummy-frame.c (dummy_frame_pc_unwind): Delete function.
5254         (dummy_frame_unwind): Update.
5255         * sentinel-frame.c (sentinel_frame_pc_unwind): Delete function.
5256         (sentinel_frame_unwinder): Update.
5257         * d10v-tdep.c (d10v_frame_pc_unwind): Delete function.
5258         (d10v_frame_unwind): Update.
5259         (d10v_unwind_pc): New function.
5260         (d10v_gdbarch_init): Set unwind_pc.
5261
5262 2003-03-10  Andrew Cagney  <cagney@redhat.com>
5263
5264         * gdbarch.h: Re-generate.
5265
5266         * d10v-tdep.c (d10v_frame_register_unwind): Correctly unwind the
5267         PC.
5268         (d10v_frame_pop): Unwind the PC, and not the LR, when restoring
5269         the PC register.
5270
5271 2003-03-08  Mark Kettenis  <kettenis@gnu.org>
5272
5273         * gdbarch.sh (save_dummy_frame_tos): Add comment.
5274
5275 2003-03-08  Andrew Cagney  <cagney@redhat.com>
5276
5277         * cli-out.c: Update copyright.
5278         (cli_out_data): Define typedef.  Use instead of ui_out_data.
5279
5280 2003-03-08  Andrew Cagney  <cagney@redhat.com>
5281
5282         * valarith.c (value_subscripted_rvalue): Copy the array's REGNO to
5283         the result.
5284
5285 2003-03-07  Andrew Cagney  <cagney@redhat.com>
5286
5287         * gdbarch.sh: Don't generate two macro definitions when an
5288         undefined macro taking no arguments.
5289         * gdbarch.h: Regenerate.
5290         
5291 2002-03-07  Michal Ludvig  <mludvig@suse.cz>
5292
5293         * x86-64-tdep.c (x86_64_save_dummy_frame_tos)
5294         (x86_64_unwind_dummy_id): New functions.
5295         (x86_64_init_abi): Register these two new functions.
5296
5297 2003-03-07  Michal Ludvig  <mludvig@suse.cz>
5298
5299         * x86-64-tdep.c (x86_64_function_has_prologue): New function.
5300         (x86_64_skip_prologue): Move prologue detection to 
5301         separate function.
5302         * x86-64-tdep.h (x86_64_function_has_prologue): New prototype.
5303
5304 2003-03-05  Andrew Cagney  <cagney@redhat.com>
5305
5306         * d10v-tdep.c (d10v_unwind_dummy_id): New function.
5307         (d10v_gdbarch_init): Set unwind_dummy_id and save_dummy_frame_tos.
5308         * frame.c (get_prev_frame): Restructure the frame ID unwind code
5309         to use unwind_dummy_id when a dummy frame.
5310         * gdbarch.sh (unwind_dummy_id): New multi-arch method with
5311         predicate.
5312         * gdbarch.h, gdbarch.c: Regneerate.
5313         
5314 2003-03-05  Andrew Cagney  <cagney@redhat.com>
5315
5316         * d10v-tdep.c (struct d10v_unwind_cache): Add field "base".
5317         (d10v_frame_unwind_cache): Rewrite code computing the base and SP.
5318         Do not use d10v_read_sp or d10v_read_fp when obtaining register
5319         values.
5320
5321 2003-03-05  Andrew Cagney  <cagney@redhat.com>
5322
5323         * d10v-tdep.c (struct frame_extra_info): Delete unused structure.
5324         (struct d10v_unwind_cache): Delete field "frameless".  Replace
5325         "next_addr" with "sp_offset".  Add "r11_offset".
5326         (d10v_frame_unwind_cache): Update.
5327         (prologue_find_regs): Update.  When "mv r11, sp", save the
5328         "sp_offset" in "r11_offset".  Recognize "st rn, @r11", note that
5329         RN was saved in r11_offset.
5330
5331 2003-03-05  Andrew Cagney  <cagney@redhat.com>
5332
5333         * frame.c (deprecated_update_frame_pc_hack): Also update the the
5334         cached PC value in the next frame.
5335
5336 2003-03-05  Andrew Cagney  <cagney@redhat.com>
5337
5338         * frame.h (struct frame_info): Replace "id_unwind_cache_p" and
5339         "id_unwind_cache" with "id".
5340         (frame_id_unwind): Delete declaration.
5341         * frame.c (frame_id_unwind): Delete function.
5342         (get_prev_frame): Call the frame id unwind method directly.  Store
5343         the returned next frame's ID value in NEXT_FRAME.  Note that there
5344         is a problem with the wrong unwind ID being called with the wrong
5345         unwind cache.
5346
5347 2003-03-05  Daniel Jacobowitz  <drow@mvista.com>
5348
5349         * Makefile.in (FLAGS_TO_PASS): Add LDFLAGS.
5350
5351 2003-03-05  James Ingham <jingham@apple.com>
5352             Daniel Jacobowitz  <drow@mvista.com>
5353
5354         * cp-abi.c: Include "command.h", "gdbcmd.h", and "ui-out.h".
5355         (auto_cp_abi): New variable.
5356         (current_cp_abi, num_cp_abis): Make static.
5357         (CP_ABI_MAX): Define.
5358         (cp_abis): Turn into an array.
5359         (value_virtual_fn_field): Fix formatting.
5360         (switch_to_cp_abi, register_cp_abi): Update.  register_cp_abi now
5361         takes a pointer.
5362         (set_cp_abi_as_auto_default, set_cp_abi_cmd, show_cp_abi_cmd)
5363         (list_cp_abis, _initialize_cp_abi): New functions.
5364         * cp-abi.h: Add prototype for set_cp_abi_as_auto_default.  Remove
5365         declarations for cp_abis, num_cp_abis, current_cp_abi, and
5366         switch_to_cp_abi.  Update prototype for register_cp_abi.
5367         * Makefile.in (cp-abi.o): Update dependencies.
5368         * minsyms.c (install_minimal_symbols): Call set_cp_abi_as_auto_default
5369         instead of switch_to_cp_abi.
5370         * gnu-v2-abi.c (_initialize_gnu_v2_abi): Likewise.  Update call to
5371         register_cp_abi.
5372         * gnu-v3-abi.c (_initialize_gnu_v3_abi): Update call to
5373         register_cp_abi.
5374         * hpacc-abi.c (_initialize_hpacc_abi): Likewise.
5375
5376 2003-03-05  Daniel Jacobowitz  <drow@mvista.com>
5377
5378         * dwarf2expr.c (new_dwarf_expr_context): Add (void) to definition.
5379         * dwarf2loc.c: Include "regcache.h".
5380         (dwarf_expr_read_reg): Rename regnum argument to dwarf_regnum.  Use
5381         register_size.
5382         * Makefile.in (dwarf2loc.o): Update dependencies.
5383
5384 2003-03-04  Theodore A. Roth  <troth@openavr.org>
5385
5386         * avr-tdep.c (avr_io_reg_read_command): Fix to handle case when the
5387         number of io registers reported by remote target is not a multiple of
5388         step.
5389
5390 2003-03-04  David Carlton  <carlton@math.stanford.edu>
5391
5392         * symtab.c (lookup_partial_symbol): Add linkage_name argument.
5393         (lookup_symbol_aux_psymtabs): Update call to
5394         lookup_partial_symbol.
5395         (lookup_transparent_type, find_main_psymtab)
5396         (make_symbol_overload_list): Ditto.
5397
5398 2003-03-04  Kazu Hirata  <kazu@cs.umass.edu>
5399
5400         * MAINTAINERS (Write after approval): Update my email address.
5401
5402 2003-03-03  Andrew Cagney  <cagney@redhat.com>
5403
5404         Make MAX_REGISTER_RAW_SIZE and MAX_REGISTER_VIRTUAL_SIZE optional.
5405         * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE): Variable with
5406         predicate.  Replace MAX_REGISTER_RAW_SIZE.
5407         (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto for
5408         MAX_REGISTER_VIRTUAL_SIZE.
5409         * regcache.c (legacy_max_register_raw_size): New function.
5410         (legacy_max_register_virtual_size): New function.
5411         * defs.h (MAX_REGISTER_VIRTUAL_SIZE): Define.
5412         (MAX_REGISTER_RAW_SIZE): Define.
5413         (legacy_max_register_raw_size): Declare.
5414         (legacy_max_register_virtual_size): Declare.
5415         * config/sparc/tm-sparc.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
5416         (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Update.
5417         * config/sparc/tm-sp64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
5418         (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto.
5419         * config/pa/tm-hppa.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
5420         (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto.
5421         * config/pa/tm-hppa64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
5422         * config/ia64/tm-ia64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
5423         * config/i386/tm-ptx.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
5424         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5425         * vax-tdep.c (vax_gdbarch_init): Update.
5426         * v850-tdep.c (v850_gdbarch_init): Update.
5427         * sparc-tdep.c (sparc_gdbarch_init): Update.
5428         * sh-tdep.c (sh_gdbarch_init): Update.
5429         * s390-tdep.c (s390_gdbarch_init): Update.
5430         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5431         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5432         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
5433         * mips-tdep.c (mips_gdbarch_init): Update.
5434         * mcore-tdep.c (mcore_gdbarch_init): Update.
5435         * m68k-tdep.c (m68k_gdbarch_init): Update.
5436         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5437         * ia64-tdep.c (ia64_gdbarch_init): Update.
5438         * i386-tdep.c (i386_gdbarch_init): Update.
5439         * hppa-tdep.c (hppa_gdbarch_init): Update.
5440         * h8300-tdep.c (h8300_gdbarch_init): Update.
5441         * frv-tdep.c (frv_gdbarch_init): Update.
5442         * cris-tdep.c (cris_gdbarch_init): Update.
5443         * avr-tdep.c (avr_gdbarch_init): Update.
5444         * arm-tdep.c (arm_gdbarch_init): Update.
5445         * alpha-tdep.c (alpha_gdbarch_init): Update.
5446         * d10v-tdep.c (d10v_gdbarch_init): Do not set
5447         max_register_raw_size or max_register_virtual_size.
5448
5449 2003-03-03  David Carlton  <carlton@math.stanford.edu>
5450
5451         * symtab.h (DEPRECATED_SYMBOL_MATCHES_NAME): Rename from
5452         SYMBOL_MATCHES_NAME, add comment.
5453         (SYMBOL_MATCHES_NATURAL_NAME): New.
5454         * minsyms.c (lookup_minimal_symbol_solib_trampoline): Replace
5455         SYMBOL_MATCHES_NAME with DEPRECATED_SYMBOL_MATCHES_NAME.
5456         (lookup_minimal_symbol, lookup_minimal_symbol_text): Ditto.
5457         * symtab.c (lookup_partial_symbol): Use
5458         SYMBOL_MATCHES_NATURAL_NAME, not SYMBOL_MATCHES_NAME.  Delete
5459         unhelpful comment.
5460         (lookup_block_symbol): Use SYMBOL_MATCHES_NATURAL_NAME, not
5461         SYMBOL_MATCHES_NAME.
5462         Fix for PR c++/33.
5463
5464 2003-03-03  David Carlton  <carlton@math.stanford.edu>
5465
5466         * symtab.h (SYMBOL_MATCHES_REGEXP): Delete.
5467         * symtab.c (search_symbols): Replace uses of SYMBOL_MATCHES_REGEXP
5468         by regexp matching against SYMBOL_NATURAL_NAME.
5469
5470 2003-03-03  David Carlton  <carlton@math.stanford.edu>
5471
5472         * linespec.c (find_method): Extract code into collect_methods.
5473         (collect_methods): New.
5474
5475 2003-03-02  Mark Kettenis  <kettenis@gnu.org>
5476
5477         * i386bsd-tdep.c (i386bsd_sigcontext_addr): Use get_next_frame and
5478         get_frame_base.
5479
5480         * i386-tdep.c (i386_pe_skip_trampoline_code): Replace usage of
5481         DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
5482
5483 2003-03-02  Stephane Carrez  <stcarrez@nerim.fr>
5484
5485         * arch-utils.c (generic_register_byte): Fix to use the loop index 
5486         and not regnum when summing the size of all registers up to regnum.
5487
5488 2003-03-01  Andrew Cagney  <cagney@redhat.com>
5489
5490         * gdbarch.sh (DEPRECATED_FRAME_INIT_SAVED_REGS): Rename
5491         FRAME_INIT_SAVED_REGS.
5492         * gdbarch.h, gdbarch.c: Regenerate.
5493         * stack.c (frame_info): Update.
5494         * sh-tdep.c (sh_find_callers_reg, sh64_get_saved_pr): Update.
5495         (sh_init_extra_frame_info, sh64_init_extra_frame_info): Update.
5496         (sh64_get_saved_register, sh_pop_frame, sh64_pop_frame): Update.
5497         * ns32k-tdep.c (ns32k_pop_frame): Update.
5498         * mips-tdep.c (mips_pop_frame): Update.
5499         * m68hc11-tdep.c (m68hc11_pop_frame): Update.
5500         * ia64-tdep.c (ia64_frame_chain): Update.
5501         (ia64_frame_saved_pc, ia64_get_saved_register): Update.
5502         (ia64_frameless_function_invocation): Update.
5503         (ia64_init_extra_frame_info): Update.
5504         (ia64_pop_frame_regular): Update.
5505         * frame.h (struct frame_info): Update comment.
5506         (DEPRECATED_FRAME_INIT_SAVED_REGS): Rename macro.
5507         * frame.c (frame_saved_regs_register_unwind): Update.
5508         (frame_saved_regs_register_unwind): Update.
5509         (deprecated_generic_get_saved_register): Update.
5510         * cris-tdep.c: Update comment.
5511         * config/sparc/tm-sparc.h (DEPRECATED_FRAME_INIT_SAVED_REGS):
5512         Rename macro.
5513         * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
5514         * x86-64-tdep.c (x86_64_init_abi): Update.
5515         * vax-tdep.c (vax_gdbarch_init): Update.
5516         * v850-tdep.c (v850_gdbarch_init): Update.
5517         * sparc-tdep.c (sparc_gdbarch_init): Update.
5518         * sh-tdep.c (sh_gdbarch_init): Update.
5519         * s390-tdep.c (s390_gdbarch_init): Update.
5520         * rs6000-tdep.c (rs6000_gdbarch_init): Update.
5521         * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
5522         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5523         * mn10300-tdep.c (mn10300_gdbarch_init): Update.
5524         * mips-tdep.c (mips_gdbarch_init): Update.
5525         * mcore-tdep.c (mcore_gdbarch_init): Update.
5526         * m68k-tdep.c (m68k_gdbarch_init): Update.
5527         * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
5528         * ia64-tdep.c (ia64_gdbarch_init): Update.
5529         * i386-tdep.c (i386_gdbarch_init): Update.
5530         * frv-tdep.c (frv_gdbarch_init): Update.
5531         * avr-tdep.c (avr_gdbarch_init): Update.
5532         * arm-tdep.c (arm_gdbarch_init): Update.
5533         * alpha-tdep.c (alpha_gdbarch_init): Update.
5534         
5535 2003-03-01  Andrew Cagney  <cagney@redhat.com>
5536
5537         * main.c (captured_main): Add OPT_WINDOWS and OPT_NOWINDOWS to
5538         option enum and switch.  When no windows, set the interpreter to
5539         INTERP_CONSOLE.
5540         
5541 2003-03-01  Andrew Cagney  <cagney@redhat.com>
5542
5543         * main.c (captured_main): Replace magic option characters with an
5544         enum.
5545
5546 2003-03-01  Andrew Cagney  <cagney@redhat.com>
5547
5548         * gdbarch.sh (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename
5549         INIT_EXTRA_FRAME_INFO.
5550         * gdbarch.h, gdbarch.c: Regenerate.
5551         * arm-tdep.c: Update comments.
5552         * sh-tdep.c, mcore-tdep.c, m68hc11-tdep.c: Ditto.
5553         * i386-interix-tdep.c, hppa-tdep.c, h8300-tdep.c: Ditto.
5554         * frame.h, avr-tdep.c: Ditto.
5555         * frame.c (get_prev_frame): DEPRECATED_INIT_EXTRA_FRAME_INFO.
5556         (create_new_frame, legacy_get_prev_frame): Ditto.
5557         * config/sparc/tm-sparc.h (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename.
5558         * config/pa/tm-hppa.h (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename.
5559         * xstormy16-tdep.c (xstormy16_gdbarch_init): Initialize
5560         deprecated_init_extra_frame_info instead of init_extra_frame_info.
5561         * x86-64-tdep.c (x86_64_init_abi): Ditto.
5562         * v850-tdep.c (v850_gdbarch_init): Ditto.
5563         * sparc-tdep.c (sparc_gdbarch_init): Ditto.
5564         * sh-tdep.c (sh_gdbarch_init): Ditto.
5565         * s390-tdep.c (s390_gdbarch_init): Ditto.
5566         * ppc-linux-tdep.c (ppc_linux_init_abi): Ditto.
5567         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
5568         * mips-tdep.c (mips_gdbarch_init): Ditto.
5569         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
5570         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
5571         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
5572         * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
5573         * hppa-tdep.c (hppa_gdbarch_init): Ditto.
5574         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
5575         * frv-tdep.c (frv_gdbarch_init): Ditto.
5576         * cris-tdep.c (cris_gdbarch_init): Ditto.
5577         * avr-tdep.c (avr_gdbarch_init): Ditto.
5578         * arm-tdep.c (arm_gdbarch_init): Ditto.
5579         * alpha-tdep.c (alpha_gdbarch_init): Ditto.
5580         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5581
5582 2003-03-01  Andrew Cagney  <cagney@redhat.com>
5583
5584         * gdbarch.sh (register_type): New function with predicate.
5585         (REGISTER_VIRTUAL_TYPE): Change to function with predicate.
5586         * gdbarch.h, gdbarch.c: Re-generate.
5587         * arch-utils.c (generic_register_byte): Use generic_register_size.
5588         (generic_register_size): When available, use
5589         gdbarch_register_type.
5590         * regcache.c (init_regcache_descr): When available, initialize the
5591         register type array using gdbarch_register_type.  If the
5592         architecture supplies gdbarch_register_type, do not use the legacy
5593         regcache layout.
5594         * d10v-tdep.c (d10v_register_type): Replace
5595         d10v_register_virtual_type.
5596         (d10v_gdbarch_init): Set register_type instead of
5597         register_virtual_type.
5598
5599 2003-03-01  Andrew Cagney  <cagney@redhat.com>
5600
5601         * Makefile.in (ax-gdb.o): Update dependencies.
5602         * ax-gdb.c: Include "regcache.h".
5603         (gen_expr): Use register_type instead of REGISTER_VIRTUAL_TYPE.
5604         * findvar.c (value_of_register): Ditto.
5605         * infcmd.c (default_print_registers_info): Ditto.
5606
5607 2003-03-01  Mark Kettenis  <kettenis@gnu.org>
5608
5609         * i386-linux-tdep.c (find_minsym_and_objfile): Replace usage of
5610         DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
5611
5612 2003-03-01  Mark Kettenis  <kettenis@gnu.org>
5613
5614         * i386-linux-tdep.c (find_minsym_and_objfile): Use strcmp instead
5615         of STREQ.
5616
5617 2003-02-28  Daniel Jacobowitz  <drow@mvista.com>
5618
5619         * Makefile.in (dwarf2loc.o): Update dependencies.
5620         * ax-gdb.c (gen_var_ref): Handle LOC_COMPUTED and LOC_COMPUTED_ARG.
5621         * dwarf2expr.c (read_uleb128, read_sleb128): Make non-static.
5622         * dwarf2expr.h (read_uleb128, read_sleb128): Add prototypes.
5623         * dwarf2loc.c: Include "ax.h" and "ax-gdb.h".
5624         (locexpr_tracepoint_var_ref): New function.
5625         (dwarf2_locexpr_funcs): Add locexpr_tracepoint_var_ref.
5626
5627 2003-02-28  Andrew Cagney  <cagney@redhat.com>
5628
5629         * regcache.c (register_size): New function.
5630         * regcache.h (register_size): Declare
5631         * d10v-tdep.c: Use register_size instead of REGISTER_RAW_SIZE, use
5632         max_register_size instead of MAX_REGISTER_RAW_SIZE.
5633
5634 2003-02-28  David Carlton  <carlton@math.stanford.edu>
5635
5636         * linespec.c (decode_compound): Extract code into find_method.
5637         (find_method): New.
5638
5639 2003-02-28  J. Brobecker  <brobecker@gnat.com>
5640
5641         * Makefile.in: Add rules to build and link in observer.o.
5642
5643 2003-02-27  J. Brobecker  <brobecker@gnat.com>
5644
5645         * observer.c: Minor comments edits.
5646
5647 2003-02-27  J. Brobecker  <brobecker@gnat.com>
5648
5649         * observer.h, observer.c: New file.
5650
5651 2003-02-27  Andrew Cagney  <cagney@redhat.com>
5652
5653         * arm-tdep.c (gdb_print_insn_arm): Rename _bfd to just bfd.
5654
5655 2003-02-27  Stephane Carrez  <stcarrez@nerim.fr>
5656
5657         * m68hc11-tdep.c (M6811_OP_LDX_EXT, M6811_OP_STS_EXT): New defines.
5658         (M6812_OP_STS_EXT): Likewise.
5659         (m6811_prologue): Use the above to recognize prologue.
5660         (m6812_prologue): Likewise.
5661
5662 2003-02-27  David Carlton  <carlton@math.stanford.edu>
5663
5664         * symfile.c (compare_symbols): Use SYMBOL_NATURAL_NAME, not
5665         SYMBOL_PRINT_NAME.
5666         (compare_psymbols): Ditto.
5667         * symtab.c (lookup_partial_symbol, lookup_block_symbol): Ditto.
5668
5669 2003-02-27  Michael Snyder  <msnyder@redhat.com>
5670
5671         * f-lang.c (build_fortran_types): New function.
5672         (_initialize_f_language): Gdbarch-register built-in fortran types.
5673         * doublest.c (extract_floating): Fix warning text.
5674
5675 2003-02-27  Andrew Cagney  <cagney@redhat.com>
5676
5677         * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Procedure with
5678         predicate.  Replaces PUSH_DUMMY_FRAME.
5679         * gdbarch.h, gdbarch.c: Regnerate.
5680         * valops.c (hand_function_call): Update.  Call
5681         generic_push_dummy_frame directly.
5682         * vax-tdep.c (vax_gdbarch_init): Update.
5683         * sparc-tdep.c (sparc_gdbarch_init): Update.
5684         * ns32k-tdep.c (ns32k_gdbarch_init): Update.
5685         * m68k-tdep.c (m68k_gdbarch_init): Update.
5686         * hppa-tdep.c (hppa_gdbarch_init): Update.
5687         * alpha-tdep.c (alpha_gdbarch_init): Update.
5688         * config/sparc/tm-sparc.h (DEPRECATED_PUSH_DUMMY_FRAME): Update.
5689         * config/pa/tm-hppa.h (DEPRECATED_PUSH_DUMMY_FRAME): Update.
5690         * inferior.h (PUSH_DUMMY_FRAME): Delete definition.
5691         * xstormy16-tdep.c (xstormy16_gdbarch_init): Don't set
5692         push_dummy_frame to generic_push_dummy_frame.
5693         * v850-tdep.c (v850_gdbarch_init): Ditto.
5694         * sh-tdep.c (sh_gdbarch_init): Ditto.
5695         * s390-tdep.c (s390_gdbarch_init): Ditto.
5696         * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5697         * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
5698         * mips-tdep.c (mips_gdbarch_init): Ditto.
5699         * mcore-tdep.c (mcore_gdbarch_init): Ditto.
5700         * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
5701         * ia64-tdep.c (ia64_gdbarch_init): Ditto.
5702         * i386-tdep.c (i386_gdbarch_init): Ditto.
5703         * h8300-tdep.c (h8300_gdbarch_init): Ditto.
5704         * frv-tdep.c (frv_gdbarch_init): Ditto.
5705         * d10v-tdep.c (d10v_gdbarch_init): Ditto.
5706         * cris-tdep.c (cris_gdbarch_init): Ditto.
5707         * avr-tdep.c (avr_gdbarch_init): Ditto.
5708         * arm-tdep.c (arm_gdbarch_init): Ditto.
5709         
5710 2003-02-26  Kevin Buettner  <kevinb@redhat.com>
5711
5712         * mips-tdep.c (show_mips_abi): New function.
5713         (_initialize_mips_tdep): Use show_mips_abi() to implement the
5714         command ``show mips abi''.
5715
5716 2003-02-26  Jeff Johnston  <jjohnstn@redhat.com>
5717  
5718         From Elena Zannoni  <ezannoni@redhat.com>
5719         * dbxread.c (process_one_symbol): Only record line 0 if one or 
5720         more sline entries have been seen for the function.
5721
5722 2003-02-26  Michael Chastain  <mec@shout.net>
5723
5724         * configure: Regenerate with autoconf 000227.
5725
5726 2003-02-26  Michael Chastain  <mec@shout.net>
5727
5728         Close PR build/660.
5729         * PROBLEMS (i[3456]86-*-linux*): Note explicit error message
5730         for old libc5/glibc.
5731         * gdb_thread_db.h: Die if not HAVE_UINTPTR_T.
5732
5733 2003-02-26  Kris Warkentin  <kewarken@qnx.com>
5734
5735         * defs.h (gdb_osabi): Add GDB_OSABI_QNXNTO.
5736         * osabi.c (gdb_osabi_names): Add "QNX Neutrino".
5737
5738 2003-02-26  Michael Chastain  <mec@shout.net>
5739
5740         * configure.in: New variable HAVE_UINTPTR_T.
5741         * configure, config.in: Regenerated.
5742
5743 2003-02-26  Daniel Jacobowitz  <drow@mvista.com>
5744
5745         Fix PR build/1097.
5746         * utils.c (gdb_realpath): Move closing brace outwards one #endif.
5747
5748 2003-02-25  Andrew Cagney  <cagney@redhat.com>
5749
5750         * frame.c (get_prev_frame): Add comment on check for
5751         inside_entry_func. Only check for inside_entry_file when not a
5752         dummy and not a sentinel.  Check that the new frame is not inner
5753         to the old frame.
5754
5755 2003-02-25  Andrew Cagney  <cagney@redhat.com>
5756
5757         * frame.c (frame_debug): New variable.
5758         (_initialize_frame): Add "set/show debug frame" command.
5759         (get_prev_frame): When frame_debug, print reason why unwind
5760         failed.
5761
5762 2003-02-25  Michael Chastain  <mec@shout.net>
5763
5764         * PROBLEMS (i[3456]86-*-linux*): Require glibc 2.1.3 or later
5765         to avoid uintptr_t definition problems.
5766
5767 2003-02-25  David Carlton  <carlton@math.stanford.edu>
5768
5769         * symtab.h (SYMBOL_NATURAL_NAME): New macro.
5770         (SYMBOL_LINKAGE_NAME): Ditto.
5771         (SYMBOL_PRINT_NAME): Use SYMBOL_NATURAL_NAME and
5772         SYMBOL_LINKAGE_NAME.
5773         (struct general_symbol_info): Expand comment.
5774         (DEPRECATED_SYMBOL_NAME): Rename from SYMBOL_NAME.
5775         (SYMBOL_MATCHES_NAME): Use DEPRECATED_SYMBOL_NAME.
5776         (SYMBOL_MATCHES_REGEXP): Ditto.
5777         * symtab.c (symbol_natural_name): New function.
5778         * objfiles.h: Replace all uses of SYMBOL_NAME by
5779         DEPRECATED_SYMBOL_NAME.
5780         * xcoffread.c, valops.c, typeprint.c, tracepoint.c: Ditto.
5781         * symtab.c, symmisc.c, symfile.c, stack.c, stabsread.c: Ditto.
5782         * somsolib.c, sol-thread.c, rs6000-tdep.c, p-valprint.c: Ditto.
5783         * printcmd.c, objfiles.c, objc-lang.c, mipsread.c: Ditto.
5784         * minsyms.c, mdebugread.c, linespec.c, jv-lang.c: Ditto.
5785         * i386-tdep.c, i386-linux-tdep.c, hpread.c, hppa-tdep.c: Ditto.
5786         * gnu-v2-abi.c, f-valprint.c, findvar.c, expprint.c: Ditto.
5787         * dwarfread.c, dwarf2read.c, dbxread.c, c-valprint.c: Ditto.
5788         * cp-valprint.c, coffread.c, buildsym.c, breakpoint.c: Ditto.
5789         * blockframe.c, ax-gdb.c, arm-linux-tdep.c, ada-lang.c: Ditto.
5790         * ada-exp.y: Ditto.
5791         * ada-exp.y: Update copyright.
5792         * sol-thread.c, mipsread.c, jv-lang.c, f-valprint.c: Ditto.
5793         * cp-valprint.c: Ditto.
5794
5795 2003-02-25  Jeff Johnston  <jjohnstn@redhat.com>
5796
5797         * infptrace.c (detach): Do not flag error if ptrace detach fails
5798         and errno is set to ESRCH.
5799
5800 2003-02-24  Andrew Cagney  <cagney@redhat.com>
5801
5802         * infptrace.c (udot_info): Change type of udot_off to long.  Use
5803         paddr when printing udot_off's value.
5804
5805 2003-02-24  David Carlton  <carlton@math.stanford.edu>
5806
5807         * symtab.c (make_symbol_overload_list): Only read in partial
5808         symtabs containing a matching partial symbol.
5809
5810 2003-02-24  David Carlton  <carlton@math.stanford.edu>
5811
5812         * symtab.c (lookup_partial_symbol): Use strcmp_iw_ordered to
5813         do the comparison, not strcmp.
5814         * symfile.c (compare_psymbols): Ditto.
5815         * defs.h: Declare strcmp_iw_ordered.
5816         * utils.c (strcmp_iw_ordered): New function.
5817
5818 2003-02-24  Jim Blandy  <jimb@redhat.com>
5819
5820         * MAINTAINERS (GNU/Linux/x86, linespec, breakpoints, Scheme
5821         support, shared libs): Remove my name from here, to better reflect
5822         reality.
5823
5824 2003-02-24  Kris Warkentin  <kewarken@qnx.com>
5825
5826         * target.h: (HAVE_CONTINUABLE_WATCHPOINT): Define.
5827         (target_ops): Add to_have_continuable_watchpoint.
5828         * target.c (update_current_target): Add INHERIT line for
5829         to_have_continuable_watchpoint.
5830         * infrun.c: Remove HAVE_CONTINUABLE_WATCHPOINT defines.
5831         * config/i386/nm-i386.h, config/i386/nm-i386sco5.h,
5832         config/i386/nm-i386sol2.h, config/s390/nm-linux.h,
5833         config/sparc/nm-sun4sol2.h: HAVE_CONTINUABLE_WATCHPOINT defined as 1.
5834
5835 2003-02-24  Elena Zannoni  <ezannoni@redhat.com>
5836
5837         * MAINTAINERS (Core): Drop main.c and top.c. Clarify event loop
5838         maintainership.
5839
5840 2003-02-24  Kris Warkentin  <kewarken@qnx.com>
5841
5842         * solib.c (solib_open): Call target defined search function after
5843         failing with solib-search-path.
5844         * solist.h (target_so_ops): Add find_and_open_solib function hook and
5845         create define TARGET_SO_FIND_AND_OPEN_SOLIB.
5846
5847 2003-02-24  Kris Warkentin  <kewarken@qnx.com>
5848
5849         * MAINTAINERS: Add myself to Write After section.
5850
5851 2003-02-23  Stephane Carrez  <stcarrez@nerim.fr>
5852
5853         * m68hc11-tdep.c (m68hc11_gdbarch_init): long double is 64-bit wide.
5854
5855 2003-02-22  Stephane Carrez  <stcarrez@nerim.fr>
5856
5857         * m68hc11-tdep.c (m68hc11_init_reggroups): New function.
5858         (m68hc11_add_reggroups): New function.
5859         (m68hc11_register_reggroup_p): New to register hard/soft reggroups.
5860         (m68hc11_gdbarch_init): Install the reggroups.
5861         (_initialize_m68hc11_tdep): Initialize them.
5862
5863 2003-02-21  James E Wilson  <wilson@tuliptree.org>
5864
5865         * MAINTAINERS: Update my email address.
5866
5867 2003-02-21  David Carlton  <carlton@math.stanford.edu>
5868
5869         * arm-tdep.c (arm_gdbarch_init): Add break after default label.
5870
5871 2003-02-21  Daniel Jacobowitz  <drow@mvista.com>
5872
5873         Based on a patch from Daniel Berlin (dberlin@dberlin.org).
5874         * symtab.h: Add opaque declarations of struct axs_value and
5875         struct agent_expr.
5876         (enum address_class): Add LOC_COMPUTED and LOC_COMPUTED_ARG.
5877         (struct location_funcs): New type.
5878         (struct symbol): Add "loc" to aux_value.
5879         (SYMBOL_LOCATION_BATON, SYMBOL_LOCATION_FUNCS): New macros.
5880         * dwarf2read.c: Include "dwarf2expr.h".
5881         (dwarf2_symbol_mark_computed): New function.
5882         (read_func_scope): Use it.
5883         (var_decode_location): New function.
5884         (new_symbol): Use it.
5885         * dwarf2expr.c, dwarf2expr.h, dwarf2loc.c, dwarf2loc.h: New files.
5886
5887         * Makefile.in (SFILES): Add dwarf2loc.c and dwarf2expr.c.
5888         (dwarf2expr_h, dwarf2loc_h): New variables.
5889         (COMMON_OBS): Add dwarf2expr.o and dwarf2loc.o.
5890         (dwarf2expr.o, dwarf2loc.o): New rules.
5891         (dwarf2read.o): Add $(dwarf2expr_h) and $(dwarf2loc_h).
5892         * buildsym.c (finish_block): Handle LOC_COMPUTED and
5893         LOC_COMPUTED_ARG.
5894         * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
5895         * m2-exp.y (yylex): Likewise.
5896         * printcmd.c (address_info, print_frame_args): Likewise.
5897         * stack.c (print_block_frame_locals, print_frame_arg_vars): Likewise.
5898         * symmisc.c (print_symbol, print_partial_symbols): Likewise.
5899         * ada-lang.c (ada_resolve_subexp, symtab_for_sym)
5900         (ada_add_block_symbols, fill_in_ada_prototype): Likewise.
5901         * symtab.c (lookup_block_symbol): Likewise.
5902
5903 2003-02-20  Adam Fedor  <fedor@gnu.org>
5904
5905         * symtab.h: Remove objc_specific struct
5906         (SYMBOL_OBJC_DEMANGLED_NAME): Remove.
5907         * symtab.c (symbol_init_language_specific, symbol_demangled_name):
5908         Have language_objc use cplus_specific struct.
5909
5910 2003-02-20  Tom Tromey  <tromey@redhat.com>
5911
5912         * jv-valprint.c (java_value_print): Look at TYPE_TAG_NAME, not
5913         TYPE_NAME, when printing a String value.  PR java/1075.
5914
5915 2003-02-20  Adam Fedor  <fedor@gnu.org>
5916
5917         * objc-lang.h (find_methods): Remove declaration.
5918         * objc-lang.c (find_methods): Make static.
5919
5920 2003-02-20  Christopher Faylor  <cgf@redhat.com>
5921
5922         * win32-nat.c (get_image_name): Check return value from
5923         ReadProcessMemory.
5924         (child_xfer_memory): Ditto.
5925
5926 2003-02-20  Alexandre Oliva  <aoliva@redhat.com>
5927
5928         * configure.in (TARGET_SYSTEM_ROOT): Set default to
5929         ${exec_prefix}/${target_alias}/sys-root.  Match explicit
5930         '${exec_prefix}' (in addition to the expansion thereof) as
5931         relocatable.
5932         * configure: Rebuilt.
5933
5934 2003-02-20  David Carlton  <carlton@math.stanford.edu>
5935
5936         * symtab.c (search_symbols): Revert the search_symbols part of my
5937         2002-12-23 patch.  Add comment.
5938
5939 2002-02-20  Daniel Jacobowitz  <drow@mvista.com>
5940
5941         * coffread.c (coff_symfile_read): Clean up minimal symbols earlier.
5942         * dbxread.c (elfstab_build_psymtabs): Don't call
5943         install_minimal_symbols.
5944         (stabsect_build_psymtabs): Likewise.
5945         * elfread.c (elf_symfile_read): Call install_minimal_symbols
5946         earlier.
5947         * somread.c (som_symfile_read): Call install_minimal_symbols
5948         and do_cleanups earlier.
5949         * nlmread.c (nlm_symfile_read): Likewise.
5950         * mdebugread.c (elfmdebug_build_psymtabs): Call
5951         install_minimal_symbols and make appropriate cleanups.
5952
5953 2003-02-20  Kevin Buettner  <kevinb@redhat.com>
5954
5955         * solib.c (reload_shared_libraries): New function.
5956         (_initialize_solib): Add callbacks for ``set solib-search-path''
5957         and ``set solib-absolute-prefix''.
5958
5959 2003-02-20  David Carlton  <carlton@math.stanford.edu>
5960
5961         * symtab.h (SYMBOL_PRINT_NAME): Rename from SYMBOL_SOURCE_NAME;
5962         expand comment.
5963         * ada-lang.c (user_select_syms, ada_finish_decode_line_1): Replace
5964         SYMBOL_PRINT_NAME with SYMBOL_SOURCE_NAME.
5965         * ada-typeprint.c (ada_typedef_print): Ditto.
5966         * ax-gdb.c (gen_var_ref): Ditto.
5967         * breakpoint.c (print_one_breakpoint): Ditto.
5968         * buildsym.c (finish_block): Ditto.
5969         * c-valprint.c (c_val_print): Ditto.
5970         * expprint.c (print_subexp): Ditto.
5971         * findvar.c (locate_var_value): Ditto.
5972         * infcmd.c (jump_command): Ditto. 
5973         * linespec.c (decode_line_2, decode_compound): Ditto. 
5974         * maint.c (maintenance_translate_address): Ditto. 
5975         * objc-lang.c (compare_selectors, compare_classes): Ditto. 
5976         * printcmd.c (build_address_symbolic, sym_info, print_frame_args):
5977         Ditto.
5978         * p-valprint.c (pascal_val_print): Ditto. 
5979         * stabsread.c (define_symbol): Ditto. 
5980         * stack.c (print_frame, frame_info, print_block_frame_locals)
5981         (print_frame_arg_vars, return_command): Ditto. 
5982         * symfile.c (compare_symbols, compare_psymbols): Ditto. 
5983         * symmisc.c (print_symbol): Ditto. 
5984         * symtab.c (lookup_partial_symbol, lookup_block_symbol)
5985         (compare_search_syms, print_symbol_info, print_msymbol_info)
5986         (rbreak_command): Ditto. 
5987         * tracepoint.c (tracepoints_info): Ditto. 
5988         * typeprint.c (typedef_print): Ditto. 
5989         * valops.c (value_of_variable, hand_function_call): Ditto. 
5990         * cli/cli-cmds.c (edit_command, list_command): Ditto.
5991         * ada-typeprint.c: Update Copyright.
5992         * infcmd.c, objc-lang.c, p-valprint.c, symmisc.c: Ditto.
5993         * tracepoint.c, cli/cli-cmds.c: Ditto.
5994
5995 2003-02-20  Kevin Buettner  <kevinb@redhat.com>
5996
5997         * frame.c (generic_unwind_get_saved_register): Make non-static.
5998         * frame.h (generic_unwind_get_saved_register): Declare.
5999         * mips-tdep.c (read_next_frame_reg): Fetch register from
6000         current regcache when frame is NULL.
6001         (mips_init_extra_frame_info): Pass NULL explicitly for parameter
6002         that must be NULL.
6003         (mips_get_saved_register): Call generic_unwind_get_saved_register()
6004         instead of frame_register_unwind().
6005
6006 2003-02-20  Andrew Cagney  <ac131313@redhat.com>
6007
6008         * remote-sim.c (gdbsim_insert_breakpoint)
6009         (gdbsim_remove_breakpoint): Delete #ifdef SIM_HAS_BREAKPOINTS
6010         code.
6011
6012 2003-02-20  Andrew Cagney  <ac131313@redhat.com>
6013
6014         * remote.c (_initialize_remote): Add commands "set/show remote
6015         hardware-watchpoint-limit" and "set/show remote
6016         hardware-breakpoint-limit".
6017         (remote_hw_watchpoint_limit): Initialize to -1.
6018         (remote_hw_breakpoint_limit): Ditto.
6019         (remote_check_watch_resources): Treat a limit of -1 as unlimited.
6020
6021 2003-02-19  Raoul Gough  <RaoulGough@yahoo.co.uk>
6022
6023         * coff-pe-read.c: New file - support reading of minimal symbols from a
6024         portable executable using the export table.
6025         * coff-pe-read.h: New file.
6026         * coffread.c: Include coff-pe-read.h.
6027         (coff_symtab_read): Call read_pe_exported_syms iff no recognized
6028         debugging symbols found.
6029         * Makefile.in (SFILES): Add coff-pe-read.o.
6030         (coff_pe_read_h): Define.
6031         (COMMON_OBS): Add coff-pe-read.o.
6032         (coffread.o): Add coff_pe_read_h dependency.
6033         (coff-pe-read.o): New target.
6034
6035 2003-02-19  David Carlton  <carlton@math.stanford.edu>
6036
6037         * Makefile.in (SFILES): Add block.c.
6038         (block_h): New.
6039         (COMMON_OBS): Add block.o.
6040         (block.o): New.
6041         (x86-64-tdep.o): Add $(block_h).
6042         (values.o, valops.o, tracepoint.o, symtab.o, symmisc.o, symfile.o)
6043         (stack.o, printcmd.o, p-exp.tab.o, parse.o, objfiles.o)
6044         (objc-exp.tab.o, objc-lang.o, nlmread.o, mips-tdep.o, mdebugread.o)
6045         (m2-exp.tab.o, linespec.o, jv-lang.o, jv-exp.tab.o, infcmd.o)
6046         (f-valprint.o, findvar.o, f-exp.tab.o, expprint.o, coffread.o)
6047         (c-exp.tab.o, buildsym.o, breakpoint.o, blockframe.o, ax-gdb.o)
6048         (alpha-tdep.o, ada-lang.o, ada-exp.tab.o, mi-cmd-stack.o): Ditto.
6049         * value.h: Add opaque declaration for struct block.
6050         * parser-defs.h, objc-lang.h, buildsym.h, breakpoint.h: Ditto.
6051         * ada-lang.h: Ditto.
6052         * x86-64-tdep.c: #include "block.h"
6053         * values.c, valops.c, tracepoint.c, symtab.c, symmisc.c: Ditto.
6054         * symfile.c, stack.c, printcmd.c, p-exp.y, parse.c: Ditto.
6055         * objfiles.c, objc-exp.y, objc-lang.c, nlmread.c: Ditto.
6056         * mips-tdep.c, mdebugread.c, m2-exp.y, linespec.c: Ditto.
6057         * jv-lang.c, jv-exp.y, infcmd.c, f-valprint.c: Ditto.
6058         * findvar.c, f-exp.y, expprint.c, coffread.c, c-exp.y: Ditto.
6059         * buildsym.c, breakpoint.c, blockframe.c, ax-gdb.c: Ditto.
6060         * alpha-tdep.c, ada-lang.c, ada-exp.y: Ditto.
6061         * blockframe.c (blockvector_for_pc_sect): Move to "block.c".
6062         (blockvector_for_pc, block_for_pc_sect, block_for_pc): Ditto.
6063         * symtab.c (block_function): Ditto.
6064         (contained_in): Ditto.
6065         * frame.h: Move block_for_pc and block_for_pc_sect declarations to
6066         block.h.  Add opaque declaration for struct block.
6067         * symtab.h: Move block_function and contained_in declarations to
6068         block.h.  Add opaque declarations for struct block, struct
6069         blockvector.
6070         (struct block): Move to block.h.
6071         (struct blockvector): Ditto.
6072         (BLOCK_START, BLOCK_END, BLOCK_FUNCTION, BLOCK_SUPERBLOCK)
6073         (BLOCK_GCC_COMPILED, BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM)
6074         (BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE)
6075         (ALL_BLOCK_SYMBOLS, BLOCK_SHOULD_SORT, BLOCKVECTOR_NBLOCKS)
6076         (BLOCKVECTOR_BLOCK, GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOCK):
6077         Ditto.
6078         * block.c: New file.
6079         * block.h: New file.
6080
6081 2003-02-19  Theodore A. Roth  <troth@openavr.org>
6082
6083         * avr-tdep.c (avr_extract_return_value): Remove function.
6084         (avr_store_return_value): Remove function.
6085         (avr_extract_struct_value_address): Remove function.
6086         (avr_gdbarch_init): Remove set_gdbarch_deprecated_*() calls.
6087
6088 2003-02-19  Andrew Cagney  <ac131313@redhat.com>
6089
6090         * rs6000-tdep.c: Include "gdb_assert.h".
6091         (registers_e500): Add "acc" and "spefscr".
6092         (PPC_GPRS_PSEUDO_REGS): Remove trailing comma.
6093         (rs6000_gdbarch_init): Update initialization of ppc_gp0_regnum,
6094         ppc_gplast_regnum, sp_regnum and fp_regnum.  Check that gp0_regnum
6095         really is "r0".
6096         (registers_e500): Mark the "acc" as a 64 bit (from Jim Willson).
6097
6098 2003-02-18  Keith Seitz  <keiths@redhat.com>
6099
6100         * Makefile.in: Add gdbtk-interps.c.
6101
6102 2003-02-18  Kevin Buettner  <kevinb@redhat.com>
6103
6104         * sparc-tdep.c (sparc_frame_chain): Adjust return value.
6105         * config/sparc/tm-sparc.h (init_frame_pc_noop): Declare.
6106
6107 2003-02-18  Andrew Cagney  <cagney@redhat.com>
6108
6109         * symtab.h (struct objfile): Add opaque declaration.
6110
6111 2003-02-18  Elena Zannoni  <ezannoni@redhat.com>
6112
6113         From Jim Ingham   <jingham@apple.com>:
6114         * dbxread.c (process_one_symbol): Use last_function_start rather
6115         than function_start_offset to find the real beginning of the
6116         current function.  The latter is just the text section offset on
6117         some systems, the former is always the real function start.
6118
6119 2003-02-17  Andrew Cagney  <cagney@redhat.com>
6120
6121         * configure.in: Revert ${target} != ${host}.
6122
6123 2003-02-17  Andrew Cagney  <ac131313@redhat.com>
6124
6125         * configure.in (Makefile): Use the test ${target} != ${host},
6126         instead of the absence of the "nm.h" file, to determine of the
6127         configuration non-native.
6128         * configure: Regenerate.
6129         
6130 2003-02-14  Elena Zannoni  <ezannoni@redhat.com>
6131
6132         From Brian Ford  <ford@vss.fsi.com>
6133
6134         * cli/cli-decode.c (lookup_cmd_composition) [TUI]: Properly
6135         conditionalize tui_active test.
6136         (lookup_cmd_1): Ditto.
6137
6138 2003-02-14  Mark Kettenis  <kettenis@gnu.org>
6139
6140         * configure.in: Add check for _etext.
6141         * maint.c (maintenance_set_profile_cmd): Use etext if _etext isn't
6142         available.
6143         * config.in, configure: regenerated.
6144
6145 2003-02-14  Daniel Jacobowitz  <drow@mvista.com>
6146
6147         * dwarf2read.c (dwarf2_get_pc_bounds): Offset addresses by base.
6148
6149 2003-02-14  Andrew Cagney  <ac131313@redhat.com>
6150
6151         * main.c (tui_version): Delete variable.
6152         (captured_main): When --tui, set interpreter_p to "tui" instead of
6153         enabling tui_version.
6154         * printcmd.c (display_command) [TUI]: Test tui_active instead of
6155         tui_version.
6156         * cli/cli-decode.c (lookup_cmd_composition): Ditto.
6157         * cli/cli-cmds.c (disassemble_command): Ditto.
6158         * defs.h (tui_version): Delete declaration.
6159         * Makefile.in (SUBDIR_TUI_SRCS): Add "tui/tui-interp.c".
6160         (tui-interp.o): Add rules.
6161         (SUBDIR_TUI_OBS): Add "tui-interp.o".
6162
6163 2003-02-14  Christopher Faylor  <cgf@redhat.com>
6164
6165         * win32-nat.c (register_loaded_dll): Correctly set address range for
6166         just-loaded dll.
6167
6168 2003-02-12  Jason Molenda  (jmolenda@apple.com)
6169
6170         * symmisc.c (print_objfile_statistics): Include information about
6171         the number of psymtabs and symtabs in each object file.
6172
6173 2003-02-13  Keith R Seitz  <keiths@redhat.com>
6174
6175         * main.h (struct captured_main_args): Add interpreter_p.
6176         * main.c (captured_main): Initialize interpreter_p from context.
6177         * gdb.c (main): Set interpreter_p argument.
6178         * Makefile.in (gdb.o): Add dependency for interps.h.
6179
6180 2003-02-12  Andrew Cagney  <ac131313@redhat.com>
6181
6182         * event-top.c (cli_command_loop): Delete declaration.
6183         (_initialize_event_loop): Delete function setting event_loop_hook.
6184         * event-top.h (cli_command_loop): Declare.  Update copyright.
6185         (EVENT_TOP_H): Define.  Wrap header in #ifdef EVENT_TOP_H.
6186         * interps.c (current_interp_command_loop): When event_loop_p, call
6187         cli_command_loop.
6188
6189 2003-02-12  Andrew Cagney  <ac131313@redhat.com>
6190
6191         * interps.h (interp_command_loop_ftype): Change return type to
6192         void.
6193
6194 2003-02-12  Michal Ludvig  <mludvig@suse.cz>
6195
6196         * x86-64-tdep.c (x86_64_extract_return_value)
6197         (x86_64_store_return_value): Use regcache instead of regbuf.
6198         (x86_64_gdbarch_init): Change related set_gdbarch_* functions.
6199         * x86-64-linux-nat.c (fill_gregset): Use regcache.
6200
6201 2003-02-11  Andrew Cagney  <ac131313@redhat.com>
6202
6203         * acinclude.m4 (no_tcl): SUBST TCL_CC_SEARCH_FLAGS.
6204         * aclocal.m4: Regenerate.
6205         * configure: Regenerate.
6206
6207         * Makefile.in (TCL): Use TCL_CC_SEARCH_FLAGS instead of
6208         TCL_LD_SEARCH_FLAGS.
6209
6210 2003-02-10  Michal Ludvig  <mludvig@suse.cz>
6211
6212         * dwarf2cfi.c: Reindented.
6213
6214 2003-02-09  Andrew Cagney  <ac131313@redhat.com>
6215
6216         * interps.c (clear_interpreter_hooks): Convert function definition
6217         to ISO C.
6218
6219 2003-02-07  David Carlton  <carlton@math.stanford.edu>
6220
6221         * gdb_mbuild.sh: Delete extra shift after parsing '-f'.
6222
6223 2003-02-07  Kevin Buettner  <kevinb@redhat.com>
6224
6225         * gdbtypes.h (struct main_type): Move ``length'' field from here...
6226         (struct type): ...to here.
6227         (TYPE_LENGTH): Adjust to reflect different location of ``length''
6228         field.
6229         * gdbtypes.c (make_qualified_type): Set length on newly created type.
6230         (replace_type): Set length on all type variants for a given type.
6231
6232 2003-02-07  Andrew Cagney  <ac131313@redhat.com>
6233
6234         * sol-thread.c, hpux-thread.c: Include "gdb_stat.h" instead of
6235         <sys/stat.h>.
6236         * Makefile.in (sol-thread.o, hpux-thread.o): Update dependencies.
6237         
6238 2003-02-06  Andrew Cagney  <ac131313@redhat.com>
6239
6240         * Makefile.in (symm-nat.o): Update dependencies.
6241         (sparc-nat.o, procfs.o, proc-api.o, ppc-linux-nat.o): Ditto.
6242         (lynx-nat.o, ia64-linux-nat.): Ditto.
6243         * symm-nat.c, sparc-nat.c, procfs.c, proc-api.c: Include
6244         "gdb_wait.h" instead of <wait.h> or <sys/wait.h>.
6245         * ppc-linux-nat.c, lynx-nat.c, ia64-linux-nat.c: Ditto.
6246
6247         * Makefile.in (inflow_h): Define.
6248         (procfs.o, inflow.o, procfs.o): Update dependencies.
6249         * inftarg.c (child_stop): Delete extern declaration of
6250         inferior_process_group.  Include "inflow.h".
6251         * procfs.c (procfs_stop): Ditto.  Include "inflow.h".
6252         * inflow.c (PROCESS_GROUP_TYPE): Move definitions from here ...
6253         * inflow.h (PROCESS_GROUP_TYPE): ... to here.  New file.
6254         (our_process_group, inferior_process_group): Extern declarations.
6255
6256         * procfs.c: Include "gdb_assert.h".
6257
6258         * linux-proc.c: Include "gdb_stat.h" instead of <sys/stat.h>.
6259         * cp-valprint.c (cp_print_value_fields): Eliminate STREQN.
6260         * jv-typeprint.c (java_type_print_base): Ditto.
6261         * typeprint.c (typedef_print): Eliminate STREQ.
6262         * cli/cli-script.c (define_command, define_command): Ditto.
6263         * main.c (captured_main): Ditto.
6264         * values.c (lookup_internalvar): Ditto.
6265         * utils.c (safe_strerror, parse_escape): Eliminate assignment
6266         within `if' conditional.
6267         * linespec.c (decode_line_2): Ditto.
6268         * cli/cli-dump.c (bfd_openr_with_cleanup): Ditto.
6269         (bfd_openw_with_cleanup): Ditto.
6270
6271 2003-02-07  Mark Kettenis  <kettenis@gnu.org>
6272
6273         * x86-64-tdep.c (x86_64_init_abi): Set extract_return_value to
6274         legacy_extract_return_value and store_return_value to
6275         legacy_return_value.
6276
6277 2003-02-06  Raoul Gough  <RaoulGough@yahoo.co.uk>
6278
6279         * win32-nat.c (get_relocated_section_addrs): New function.  Find
6280         section load addresses for symbol handling in relocated DLLs.
6281         (solib_symbols_add): Open a bfd and call get_relocated_section_addrs.
6282
6283 2003-02-05  Fred Fish  <fnf@intrinsity.com>
6284
6285         * remote-e7000.c (e7000_drain_command): Fix precedence problem with
6286         '=' and '!='.
6287         * rdi-share/ardi.c (wait_for_debug_message): Fix precedence problem
6288         with '&' and '=='.
6289         (angel_RDI_info): Ditto.
6290         * infttrace.c (threads_continue_all_but_one): Fix precedence problem
6291         with '&' and '!='.
6292         (threads_continue_all_with_signals): Ditto.
6293   
6294 2003-02-05  Jim Ingham <jingham@apple.com>
6295             Keith Seitz  <keiths@redhat.com>
6296             Elena Zannoni  <ezannoni@redhat.com>
6297             Andrew Cagney  <ac131313@redhat.com>
6298
6299         * Makefile.in (SUBDIR_CLI_OBS): Add "cli-interp.o".
6300         (SUBDIR_CLI_SRCS): Add "cli/cli-interp.c".
6301         (SUBDIR_MI_OBS): Add "mi-interp.o".
6302         (SUBDIR_MI_SRCS): Add "mi/mi-interp.c".
6303         (SFILES): Add "interps.c".
6304         (COMMON_OBS): Add "interps.o".
6305         (interps_h, mi_main_h): Define.
6306         (interps.o, cli-interp.o, mi-interp.o): Add dependencies.
6307         (mi-main.o, main.o, event-top.o): Update dependencies.
6308         * cli/cli-interp.c: New file.
6309         * interps.h, interps.c: New files.
6310         * top.c: (gdb_init): Don't install the default interpreter, handed
6311         by captured_main.
6312         * main.c: Include "interps.h".
6313         (interpreter_p): Note that it should malloc'ed.
6314         (captured_command_loop): Call current_interp_command_loop.
6315         (captured_main): Initialize interpreter_p to INTERP_CONSOLE.  Use
6316         xfree and xstrdup when updating interpreter_p.  Install the
6317         default interpreter.  Add hack to stop mi1's copyright notice
6318         being encoded.
6319         * event-top.h (gdb_setup_readline): Declare.
6320         (gdb_disable_readline): Declare.
6321         * event-top.c: Include "interps.h".
6322         (display_gdb_prompt): Call current_interp_display_prompt_p.
6323         (gdb_setup_readline): Initialize gdb_stdout, gdb_stderr,
6324         gdb_stdlog, and gdb_stdtarg.
6325         (_initialize_event_loop): Don't call gdb_setup_readline.
6326         * cli-out.c (cli_out_set_stream): New function.
6327         * cli-out.h (cli_out_set_stream): Declare.
6328
6329 2003-02-06  Mark Kettenis  <kettenis@gnu.org>
6330
6331         * configure.tgt (i[3456]86-*-sysv4.2*, i[3456]86-*-sysv4*,
6332         i[3456]86-*-sysv5*, i[3456]86-*-sco3.2v5*): Remove.  These are all
6333         handled fine by i[3456]86-*sco* and i[3456]86-sysv*.
6334         * config/i386/i386sco5.mt, config/i386/i386v4.mt,
6335         config/i386/i386v42mp.mt: Removed.
6336
6337 2003-02-05  Mark Kettenis  <kettenis@gnu.org>
6338
6339         * configure.tgt (*-*-solaris*): Set gdb_osabi to
6340         GDB_OSABI_SOLARIS.
6341
6342 2003-02-05  Michael Chastain  <mec@shout.net>
6343
6344         * PROBLEMS (i[3456]86-*-linux*): Warn about binutils
6345         2.12.1 and earlier versions.
6346
6347 2003-02-05  Andrew Cagney  <ac131313@redhat.com>
6348
6349         Remove orphaned hosts, targets and files.
6350         * config/i386/gdbserve.mt, config/m68k/nm-apollo68b.h: Delete.
6351         * config/m68k/nm-hp300bsd.h, config/m68k/tm-apollo68b.h: Delete.
6352         * config/m68k/tm-es1800.h, config/m68k/tm-hp300bsd.h: Delete.
6353         * config/m68k/tm-mac.h, config/m68k/xm-apollo68b.h: Delete.
6354         * config/pa/hpux1020.mt, config/pa/hpux11.mt: Delete.
6355         * config/pa/hpux11w.mt, config/powerpc/gdbserve.mt: Delete.
6356         * config/powerpc/ppcle-eabi.mt, config/powerpc/ppcle-sim.mt: Delete.
6357         * config/powerpc/tm-ppc-sim.h, config/sparc/sp64sim.mt: Delete.
6358         * config/sparc/tm-sp64sim.h: Delete.
6359         * configure.host: Delete strongarm-*-*, xscale-*-*, and arm*-*-*
6360         hosts.
6361         * configure.tgt: Delete i[3456]86-*-sco3.2v4*, and
6362         mips*-dec-mach3* targets.
6363
6364 2003-02-04  Michael Chastain  <mec@shout.net>
6365
6366         * NEWS: Fix typo: sepcifying -> specifying.
6367
6368 2003-02-04  Michael Chastain  <mec@shout.net>
6369
6370         * dwarfread.c: Add documentation on the state of dwarf-1,
6371         looking towards obsoletion.
6372
6373 2003-02-03  Michael Chastain  <mec@shout.net>
6374
6375         * config/djgpp/fnchange.lst: Add gdb/testsuite/gdb.c++/pr-1023.cc,
6376         gdb/testsuite/gdb.c++/pr-1023.exp.
6377
6378 2003-02-04  Andrew Cagney  <ac131313@redhat.com>
6379
6380         * values.c: Delete code conditional on IS_TRAPPED_INTERNALVAR.
6381         * TODO: Delete reference to IS_TRAPPED_INTERNALVAR.
6382
6383         * utils.c (init_page_info): Delete reference to MPW in comments.
6384         * main.c (captured_main): Delete #ifdef MPW.
6385
6386 2003-02-04  Andrew Cagney  <ac131313@redhat.com>
6387
6388         * NEWS: Note that the m32r-*-elf* is obsolete. 
6389         * monitor.c (monitor_expect): Obsolete reference to m32r.
6390         * configure.tgt: Mark m32r-*-elf* as obsolete.
6391         * MAINTAINERS: Mark m32k as obsolete.
6392         * m32r-rom.c: Obsolete file.
6393         * config/m32r/m32r.mt: Obsolete file.
6394         * config/m32r/tm-m32r.h: Obsolete file.
6395         * m32r-stub.c: Obsolete file.
6396         * m32r-tdep.c: Obsolete file.
6397
6398 2003-02-04  Andrew Cagney  <ac131313@redhat.com>
6399
6400         * NEWS: Mention that the z8k-zilog-none is obsolete.
6401         * MAINTAINERS: Mark z8k as obsolete.
6402         * configure.tgt: Obsolete the z8k-*-coff* target.
6403         * config/z8k/z8k.mt: Obsolete file.
6404         * config/z8k/tm-z8k.h: Obsolete file.
6405         * z8k-tdep.c: Obsolete file.
6406
6407 2003-02-04  Andrew Cagney  <ac131313@redhat.com>
6408
6409         * NEWS: Mention that the mn10200-elf is obsolete.
6410         * configure.tgt: Obsolete mn10200-*-* target.
6411         * breakpoint.c (update_breakpoints_after_exec): Update comment to
6412         mention that the mn10200 is obsolete.
6413         * breakpoint.h: Ditto.
6414         * MAINTAINERS: Mark the mn10200-elf as obsolete.
6415         * config/mn10200/mn10200.mt: Obsolete file.
6416         * config/mn10200/tm-mn10200.h: Obsolete file.
6417         * mn10200-tdep.c: Obsolete file.
6418
6419 2003-02-04  Andrew Cagney  <ac131313@redhat.com>
6420
6421         * MAINTAINERS: Mark h8500 as obsolete.
6422         * configure.tgt (h8500-*-*): Mark h8500 code as obsolete.
6423         * findvar.c (value_from_register): Ditto.
6424         * h8500-tdep.c: Mark file as obsolete.
6425         * config/h8500/h8500.mt: Ditto.
6426         * config/h8500/tm-h8500.h: Ditto.
6427         * NEWS: Mention that h8500 is obsolete.
6428
6429 2003-02-04  David Carlton  <carlton@math.stanford.edu>
6430
6431         * objfiles.c (allocate_objfile): Always set name.  Add comment at
6432         start of function.
6433         * jv-lang.c (get_dynamics_objfile): Add comment.
6434
6435 2003-02-04  David Carlton  <carlton@math.stanford.edu>
6436
6437         * symtab.h (SYMBOL_LINKAGE_NAME): Delete.
6438         * printcmd.c (build_address_symbolic): Replace uses of
6439         SYMBOL_LINKAGE_NAME by equivalent uses of SYMBOL_SOURCE_NAME,
6440         SYMBOL_NAME, and asm_demangle.
6441         Update copyright.
6442
6443 2003-02-04  David Carlton  <carlton@math.stanford.edu>
6444
6445         * linespec.c (decode_compound): Extract code into
6446         lookup_prefix_sym.
6447         (lookup_prefix_sym): New function.
6448
6449 2003-02-04  David Carlton  <carlton@math.stanford.edu>
6450
6451         * gdbtypes.h: Delete INTEGER_COERCION_BADNESS,
6452         FLOAT_COERCION_BADNESS.
6453         * gdbtypes.c (rank_one_type): Replace all uses of
6454         INTEGER_COERCION_BADNESS by INTEGER_CONVERSION_BADNESS.
6455
6456 2003-02-04  Jim Blandy  <jimb@redhat.com>
6457
6458         * dwarf2read.c (dwarf2_locate_sections): When we find a macro info
6459         section, let dwarf_macinfo_section point to it, not
6460         dwarf_loc_section.
6461
6462 2003-02-04  Daniel Jacobowitz  <drow@mvista.com>
6463
6464         Pointed out by Anton Blanchard <anton@samba.org>.
6465         * ppc-linux-tdep.c (insn_is_sigreturn): New function.
6466         (ppc_linux_at_sigtramp_return_path): Use it.
6467
6468 2003-02-04  Daniel Jacobowitz  <drow@mvista.com>
6469
6470         * defs.h (streq): Add prototype.
6471         * utils.c (streq): New function.
6472
6473         * dwarf2read.c (new_symbol): Use SYMBOL_SET_NAMES instead of
6474         SYMBOL_NAME and SYMBOL_INIT_DEMANGLED_NAME.
6475         * mdebugread.c (new_symbol): Likewise.
6476         * stabsread.c (define_symbol): Likewise.
6477         * coffread.c (process_coff_symbol): Likewise.
6478         * dwarfread.c (new_symbol): Likewise.
6479
6480         * minsyms.c (prim_record_minimal_symbol_and_info): Use
6481         SYMBOL_SET_NAMES instead of setting SYMBOL_NAME.  Set the language
6482         here.
6483         (install_minimal_symbols): Don't set SYMBOL_LANGUAGE or call
6484         SYMBOL_INIT_DEMANGLED_NAME.
6485         * objfiles.c: Include "hashtab.h".
6486         (allocate_objfile): Call htab_set_functions_ex for the
6487         demangled_names_hash.
6488         (free_objfile): Call htab_delete for the demangled_names_hash.
6489         * objfiles.h (struct htab): Add declaration.
6490         (struct objfile): Add demangled_names_hash.
6491         * symfile.c: Include "hashtab.h".
6492         (reread_symbols): Call htab_delete for the demangled_names_hash.
6493         (add_psymbol_to_list): Use SYMBOL_SET_NAMES instead of putting
6494         SYMBOL_NAME in the bcache.
6495         * symtab.c: Include "hashtab.h".  Update comments.
6496         (create_demangled_names_hash, symbol_set_names): New functions.
6497         (symbol_find_demangled_name): New function, broken out from
6498         symbol_init_demangled_names.
6499         (symbol_init_demangled_names): Use it.
6500         * symtab.h (SYMBOL_INIT_DEMANGLED_NAME): Add missing parentheses.
6501         (SYMBOL_SET_NAMES): New macro.
6502         (symbol_set_names): Add prototype.
6503
6504 2003-02-03  Jim Blandy  <jimb@redhat.com>
6505
6506         Use a single, consistent representation for an empty minimal
6507         symbol table in an objfile.
6508         * objfiles.c (terminate_minimal_symbol_table): New function.
6509         (allocate_objfile): Call it.
6510         * objfiles.h (terminate_minimal_symbol_table): New declaration.
6511         (ALL_MSYMBOLS): No need to test whether (objfile)->msymbols is
6512         non-NULL. 
6513         * minsyms.c (lookup_minimal_symbol_by_pc_section): To see whether
6514         objfile has minimal symbols, compare minimal_symbol_count to zero,
6515         instead of comparing msymbols with NULL.
6516         * objfiles.c (have_minimal_symbols): Same.
6517         * solib-sunos.c (solib_add_common_symbols): Call
6518         terminate_minimal_symbol_table.
6519         * symfile.c (reread_symbols): Same.
6520         
6521 2003-02-03  Kevin Buettner  <kevinb@redhat.com>
6522
6523         * s390-tdep.c (s390_address_class_type_flags)
6524         (s390_address_class_type_flags_to_name)
6525         (s390_address_class_name_to_type_flags): New functions.
6526         (s390_gdbarch_init): Define ADDRESS_CLASS_TYPE_FLAGS_TO_NAME,
6527         ADDRESS_CLASS_NAME_TO_TYPE_FLAGS, and ADDRESS_CLASS_TYPE_FLAGS.
6528
6529 2003-02-03  Michael Snyder  <msnyder@redhat.com>
6530
6531         * arm-tdep.c: Fix spell-o in comment.
6532
6533 2003-02-03  Michal Ludvig  <mludvig@suse.cz>
6534
6535         * dwarf2cfi.c (pointer_encoding): Added new parameter.
6536         * dwarf2cfi.c, dwarf2read.c: Changed all warnings and
6537         error messages to contain BFD filename. 
6538
6539 2003-02-02  Elena Zannoni  <ezannoni@redhat.com>
6540
6541         Fix PR gdb/742 gdb/743 gdb/877
6542         * disasm.c (dump_insns): Use make_cleanup_ui_out_tuple_begin_end.
6543         (do_mixed_source_and_assembly): Use
6544         make_cleanup_ui_out_tuple_begin_end and
6545         make_cleanup_ui_out_tuple_begin_end.
6546         (do_mixed_source_and_assembly): Ditto.
6547         * thread.c (do_captured_list_thread_ids): Ditto.
6548         * ui-out.h (ui_out_table_begin, ui_out_list_begin,
6549         ui_out_tuple_begin, ui_out_table_end, ui_out_list_end,
6550         ui_out_tuple_end): Delete prototypes.
6551         * ui-out.c (ui_out_list_begin, ui_out_tuple_begin,
6552         ui_out_list_end, ui_out_tuple_end): Delete.
6553
6554         From Kevin Buettner  <kevinb@redhat.com>:
6555         * ui-out.h (make_cleanup_ui_out_table_begin_end): New function.
6556         * ui-out.c (make_cleanup_ui_out_table_begin_end)
6557         (do_cleanup_table_end):  New functions.
6558         * breakpoint.c (print_it_typical, print_one_breakpoint, mention):
6559         Use cleanups to invoke_ui_out_tuple_end().
6560         (breakpoint_1): Use cleanup to invoke ui_out_table_end().
6561         * cli/cli-setshow.c (cmd_show_list): Use
6562         make_cleanup_ui_out_tuple_begin_end.
6563         
6564 2003-02-02  Andrew Cagney  <ac131313@redhat.com>
6565
6566         * frame.c (frame_unwind_register): New function.
6567         (frame_unwind_unsigned_register): Use.
6568         (frame_unwind_signed_register): Use.
6569         (frame_read_register): New function.
6570         * frame.h (frame_unwind_register): Declare.
6571         (frame_read_register): Declare.
6572
6573         * d10v-tdep.c (d10v_frame_pop): Rewrite. Use regcache_cooked_write
6574         and frame_unwind_register instead of read_memory, write_register
6575         and deprecated_write_register_bytes.
6576
6577 2003-02-02  Andrew Cagney  <ac131313@redhat.com>
6578
6579         * frame.h: Note that namelen can be negative.
6580         * frame.c (frame_map_name_to_regnum): When LEN is negative, use
6581         NAME's length.
6582
6583         * NEWS: Mention that the d10v's `regs' command is deprecated.
6584         * d10v-tdep.c (d10v_gdbarch_init): Set print_registers_info.
6585         (d10v_print_registers_info): New function.
6586         (show_regs): Call d10v_print_registers_info.
6587         (_initialize_d10v_tdep): Mark "show regs" command as deprecated.
6588
6589 2003-02-02  Mark Kettenis  <kettenis@gnu.org>
6590
6591         * stack.c (print_frame_info): Restore call to annotate_frame_begin
6592         lost in the previous patch.
6593
6594 2003-02-01  Andrew Cagney  <ac131313@redhat.com>
6595
6596         From 2002-11-09 Jason Molenda (jason-cl@molenda.com)
6597         * stack.c (print_frame_info_base): Output complete FRAME tuple
6598         for synthesized frames.
6599
6600 2003-02-02  Andrew Cagney  <ac131313@redhat.com>
6601
6602         * mips-nat.c (zerobuf): Delete.
6603         (fetch_inferior_registers): Alloc local zerobuf.
6604         (fetch_core_registers): Alloc local zerobuf.
6605         * d10v-tdep.c (show_regs): Don't allocate a dynamic array using
6606         MAX_REGISTER_RAW_SIZE or MAX_REGISTER_VIRTUAL_SIZE.
6607         * thread-db.c (thread_db_store_registers): Ditto.
6608         * sh-tdep.c (sh_do_register): Ditto.
6609         * rom68k-rom.c (rom68k_supply_one_register): Ditto.
6610         * remote-sim.c (gdbsim_store_register): Ditto.
6611         * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
6612         * remote-e7000.c (fetch_regs_from_dump): Ditto.
6613         * monitor.c (monitor_supply_register): Ditto.
6614         * mipsv4-nat.c (supply_gregset, supply_fpregset): Ditto.
6615         * mips-nat.c (fetch_inferior_registers): Ditto.
6616         * m68klinux-nat.c (fetch_register): Ditto.
6617         * lynx-nat.c (fetch_inferior_registers): Ditto.
6618         (fetch_inferior_registers): Ditto.
6619         * irix4-nat.c (supply_gregset, supply_fpregset): Ditto.
6620         * hpux-thread.c (hpux_thread_fetch_registers): Ditto.
6621         (hpux_thread_store_registers): Ditto.
6622         * hppah-nat.c (fetch_register): Ditto.
6623         * hppab-nat.c (fetch_register): Ditto.
6624         * hppa-tdep.c (pa_register_look_aside): Ditto.
6625         (pa_print_fp_reg, pa_strcat_fp_reg): Ditto.
6626         * dve3900-rom.c (fetch_bitmapped_register): Ditto.
6627
6628 2003-02-01  Andrew Cagney  <ac131313@redhat.com>
6629
6630         * gdbarch.sh: Explictly specify all method levels.  When a
6631         variable with an empty level, provide a non-multi-arch default.
6632         (BELIEVE_PCC_PROMOTION_TYPE): Set level to empty.
6633         * gdbarch.h: Re-generate.
6634         * stabsread.c (BELIEVE_PCC_PROMOTION_TYPE): Delete.  Always defined.
6635         * config/m68k/tm-sun3.h (BELIEVE_PCC_PROMOTION_TYPE): Define as 1
6636
6637 2003-02-01  Andrew Cagney  <ac131313@redhat.com>
6638
6639         * defs.h (host_pointer_to_address): Delete declaration.
6640         (address_to_host_pointer): Delete declaration.
6641         * utils.c (host_pointer_to_address): Delete function.
6642         (address_to_host_pointer): Delete function.
6643         * procfs.c (procfs_address_to_host_pointer): New function.
6644         * procfs.c (proc_set_watchpoint): Use.
6645         (procfs_can_use_hw_breakpoint): Update comments.
6646         * somsolib.c (hpux_address_to_host_pointer_hack): New function.
6647         (som_solib_add): Use.
6648         * hppa-tdep.c (hppa_pointer_to_address_hack): New function.
6649         * hppa-tdep.c (unwind_command): Use.
6650         
6651 2003-02-01  Andrew Cagney  <ac131313@redhat.com>
6652
6653         * gdb_dirent.h: Mark up valid uses of <dirent.h>, d_namelen and
6654         strlen d_name.
6655
6656         * main.c (captured_main): Delete #ifdef ADDITIONAL_OPTIONS,
6657         ADDITIONAL_OPTION_CASES, and ADDITIONAL_OPTION_HANDLER code.
6658         (print_gdb_help): Delete #ifdef ADDITIONAL_OPTION_HELP code.
6659         * stabsread.c (DBX_PARM_SYMBOL_CLASS): Delete macro.
6660         (define_symbol): Update.
6661         * symfile.c (generic_load): Remove references to nindy.
6662         * symtab.c: Remove references to nindy.
6663
6664 2003-02-01  Andrew Cagney  <ac131313@redhat.com>
6665
6666         * infcmd.c (print_float_info): Delete code conditional on
6667         FLOAT_INFO.
6668         * config/nm-lynx.h: Delete #undef FLOAT_INFO.  Update copyright.
6669         * config/m68k/nm-apollo68b.h: Ditto.
6670         * config/i386/tm-ptx.h (FLOAT_INFO): Delete.  Update copyright.
6671         * config/ns32k/nm-nbsd.h (FLOAT_INFO): Ditto.
6672         * config/i386/tm-symmetry.h (FLOAT_INFO): Ditto.
6673
6674 2003-02-01  Mark Kettenis  <kettenis@gnu.org>
6675
6676         * config/i386/tm-i386os9k.h: Removed.
6677
6678         * configure.host (i[3456]86-*-isc*): Set gdb_host to i386v.
6679         Remove i[3456]86-*-sysv3.2* and i[3456]86-*-sysv32* entries since
6680         they're identical to i[3456]86-*-sysv* now.
6681         * config/i386/i386v32.mh: Removed.
6682         * config/i386/xm-i386v32.h: Removed.
6683         * config/i386/xm-i386sco.h (U_FPSTATE): Remove macro.
6684
6685         * config/i386/i386mk.mt, config/i386/i386mk.mh: Removed.
6686
6687         * config/i386/i386dgux.mh: Removed.
6688         * configure.host (i[3456]86-*-dgux): Set gdb_host to i386v4.
6689
6690         * configure.in: Fix typo.
6691         * configure: Regenerated.
6692
6693 2003-01-31  David Carlton  <carlton@math.stanford.edu>
6694
6695         * dwarf2read.c (dwarf2_locate_sections): Set
6696         dwarf_ranges_section.
6697
6698 2003-01-31  Andrew Cagney  <ac131313@redhat.com>
6699
6700         * objc-exp.y, c-exp.y, f-exp.y: Remove PTR casts.
6701         * utils.c: Update comments documenting legitimate uses of PTR.
6702         
6703         * utils.c: Re-indent.
6704
6705         * config/djgpp/fnchange.lst: Delete nindy files.
6706         * nindy-share/ttyflush.c, nindy-share/stop.h: Delete files.
6707         * nindy-share/nindy.c, nindy-share/env.h: Delete files.
6708         * nindy-share/coff.h, nindy-share/block_io.h: Delete files.
6709         * nindy-share/b.out.h, nindy-share/VERSION: Delete files.
6710         * nindy-share/README, nindy-share/Onindy.c: Delete files.
6711         * nindy-tdep.c, nindy-share/Makefile: Delete files.
6712         * Makefile.in (init.c): Remove nindy references.
6713         (saber_gdb): Delete rule.
6714         (ALLDEPFILES): Delete hp300ux-nat.c, nindy-tdep.c,
6715         nindy-share/Onindy.c, nindy-share/nindy.c, nindy-share/ttyflush.c,
6716         and a68v-nat.c.
6717         (hp300ux-nat.o, a68v-nat.o, ptx4-nat.o): Delete rules.
6718         (Onindy.o, nindy.o, ttyflush.o, nindy-tdep.o): Delete rules.
6719         (HFILES_NO_SRCDIR): Delete nindy-share/b.out.h,
6720         nindy-share/block_io.h, nindy-share/coff.h, nindy-share/env.h, and
6721         nindy-share/stop.h.
6722         * hp300ux-nat.c, a68v-nat.c, ptx4-nat.c: Delete files.
6723         * saber.suppress: Delete file.
6724
6725 2003-01-31  Daniel Jacobowitz  <drow@mvista.com>
6726
6727         * dbxread.c (stabs_data): New static variable.
6728         (fill_symbuf): Support an in-memory buffer for stabs data.
6729         (stabs_seek): New function.
6730         (dbx_psymtab_to_symtab): Relocate the stabs data if necessary.
6731         (read_ofile_symtab): Use stabs_seek.
6732         (elfstab_build_psymtabs): Take an asection* instead of
6733         an offset and size.  Relocate the stabs data if necessary.
6734         Save the section* for dbx_psymtab_to_symtab.
6735         * dwarf2read.c: Add section variables for each debug section.
6736         (dwarf2_locate_sections): Fill them in.
6737         (dwarf2_read_section): Take an asection* argument.
6738         Relocate the section contents if necessary.
6739         (dwarf2_build_psymtabs, dwarf2_build_psymtabs_easy): Update callers.
6740         * dwarf2cfi.c (parse_frame_info): Take a section argument and pass
6741         it to dwarf2_read_section.
6742         (dwarf2_build_frame_info): Update callers.
6743         * elfread.c (elf_symfile_read): Update call to
6744         elfstab_build_psymtabs.
6745         * gdb-stabs.h (struct dbx_symfile_info): Add stab_section.
6746         (DBX_STAB_SECTION): New macro.
6747         * stabsread.h (elfstab_build_psymtabs): Update prototype. 
6748         * symfile.c (symfile_dummy_outputs): New function.
6749         (symfile_relocate_debug_section): New function.
6750         * symfile.h (symfile_relocate_debug_section): Add prototype.
6751
6752 2003-01-31  Richard Henderson  <rth@redhat.com>
6753
6754         * alpha-nat.c (REGISTER_PTRACE_ADDR): Merge into ...
6755         (register_addr): ... here.  Support ALPHA_UNIQUE_REGNUM.
6756         (fetch_elf_core_registers): Support ALPHA_UNIQUE_REGNUM.
6757         * alpha-tdep.c (alpha_register_name): Add "unique".
6758         * alpha-tdep.h (ALPHA_NUM_REGS): Increment.
6759         (ALPHA_UNIQUE_REGNUM): New.
6760         * config/alpha/nm-linux.h (ALPHA_UNIQUE_PTRACE_ADDR): New.
6761
6762 2003-01-31  Andrew Cagney  <ac131313@redhat.com>
6763
6764         * README: Remove reference to Ericsson 1800 monitor.
6765         * Makefile.in (remote-es.o): Delete rule.
6766         (ALLDEPFILES): Delete remote-es.c.
6767         * remote-es.c: Delete file.
6768         * config/m68k/es1800.mt: Delete file.
6769         * config/djgpp/fnchange.lst: Update.
6770         * configure.tgt: Delete m68*-ericsson-* target.
6771
6772 2003-01-31  Adam Fedor  <fedor@gnu.org>
6773
6774         * infrun.c (handle_inferior_event): Rename 'tmp' to real_stop_pc.
6775         Remove duplicate/shadowing variable of same name.
6776
6777 2003-01-30  Jim Blandy  <jimb@redhat.com>
6778
6779         * symfile.c (find_separate_debug_file): Assert that the objfile's
6780         directory name we compute ends with a slash, and then assume that
6781         that's so everywhere we use it.
6782
6783 2003-01-30  Daniel Jacobowitz  <drow@mvista.com>
6784
6785         * valops.c (value_assign): Flush frame cache after stores to memory
6786         also.
6787
6788 2003-01-30  Andrew Cagney  <ac131313@redhat.com>
6789
6790         * Makefile.in (mon960-rom.o): Delete rule.
6791         * mon960-rom.c: Delete file.
6792
6793 2003-01-30  Andrew Cagney  <ac131313@redhat.com>
6794
6795         * d10v-tdep.c: Include "frame-unwind.h".
6796         (d10v_gdbarch_init): Append d10v_frame_p to the unwind predicate
6797         list.
6798         (next_addr, uses_frame): Delete.
6799         (struct d10v_unwind_cache): Define.
6800         (prologue_find_regs): Add struct d10v_unwind_cache info parameter.
6801         Use info instead of next_addr and uses_frame globals.
6802         (d10v_frame_init_saved_regs): Delete function.
6803         (d10v_init_extra_frame_info): Delete function.
6804         (d10v_gdbarch_init): Do not initialize init_extra_frame_info,
6805         frame_init_saved_regs or pop_frame, frame_chain, frame_chain_valid,
6806         init_frame_pc or frame_saved_pc.
6807         (d10v_pop_frame): Delete function.
6808         (do_d10v_pop_frame): Delete function.
6809         (d10v_frame_chain): Delete function.
6810         (d10v_frame_chain_valid): Delete function.
6811         (d10v_frame_pc_unwind): New function.
6812         (d10v_frame_id_unwind): New function.
6813         (saved_regs_unwinder): New function.
6814         (d10v_frame_register_unwind): New function.
6815         (d10v_frame_pop): New function.
6816         (d10v_frame_unwind): New variable.
6817         (d10v_frame_p): New function.
6818         (d10v_frame_saved_pc): Delete function.
6819         * Makefile.in (d10v-tdep.o): Update dependencies.
6820
6821 2003-01-30  J. Brobecker  <brobecker@gnat.com>
6822
6823         * config/pa/tm-hppa64.h (CALL_DUMMY_LOCATION): Remove #undef
6824         causing some regressions due to a change in the default value
6825         for this macro.
6826
6827 2003-01-29  Richard Henderson  <rth@redhat.com>
6828             Elena Zannoni  <ezannoni@redhat.com>
6829             Daniel Jacobowitz  <drow@mvista.com>
6830
6831         Fix PR gdb/961.
6832         * dwarf2read.c  (dwarf_ranges_offset, dwarf_ranges_size): New
6833         variables.
6834         (RANGES_SECTION): New.
6835         (dwarf_ranges_buffer): New variable.
6836         (struct comp_unit_head): Add member "die".
6837         (struct dwarf2_pinfo): Add dwarf_ranges_buffer, dwarf_ranges_size.
6838         (DWARF_RANGES_BUFFER, DWARF_RANGES_SIZE): New.
6839         (dwarf2_has_info): Init dwarf_ranges_offset and dwarf_ranges_size.
6840         (dwarf2_locate_sections): Likewise.
6841         (dwarf2_build_psymtabs): Read .debug_ranges.
6842         (dwarf2_build_psymtabs_hard): Swap dwarf_ranges out.
6843         (psymtab_to_symtab_1): Swap dwarf_ranges in.  Set cu_header.die.
6844         (dwarf2_get_pc_bounds): New cu_header argument; adjust all callers.
6845         Look for DW_AT_ranges and return the bounding box.
6846
6847 2003-01-29  Brian Ford <ford@vss.fsi.com>
6848
6849         * win32-nat.c (cygwin_pid): Removed as unused.
6850         (child_attach): Try fall back to Cygwin pid.
6851
6852 2003-01-29  Jim Blandy  <jimb@redhat.com>
6853
6854         * objfiles.h (struct objfile): Doc fix.
6855
6856 2003-01-29  Andrew Cagney  <ac131313@redhat.com>
6857
6858         * frame.c (frame_saved_regs_id_unwind): Assert FRAME_CHAIN_P.
6859         (legacy_get_prev_frame): Assert FRAME_CHAIN_P.
6860         (get_prev_frame): When FRAME_CHAIN_P, call legacy_get_prev_frame.
6861         (frame_saved_regs_pc_unwind): Assert FRAME_SAVED_PC_P.
6862         * gdbarch.sh (FRAME_CHAIN): Change to a function with predicate.
6863         (FRAME_SAVED_PC): Change to a function with predicate.
6864         * gdbarch.h, gdbarch.c: Re-generate.
6865
6866 2003-01-28  Andrew Cagney  <ac131313@redhat.com>
6867
6868         * hppah-nat.c (child_pid_to_exec_file): Don't use boolean.
6869
6870         * complaints.c (complain): Delete function.
6871         * complaints.h (struct deprecated_complaint): Delete definition.
6872         (complain): Delete declaration.
6873
6874 2003-01-28  Kevin Buettner  <kevinb@redhat.com>
6875
6876         * mips-tdep.c (mips_init_extra_frame_info): Return early for
6877         dummy frames.
6878
6879 2003-01-27  Andrew Cagney  <ac131313@redhat.com>
6880
6881         * sentinel-frame.h, sentinel-frame.c: New files.
6882         * Makefile.in (frame.o): Update dependencies.
6883         (SFILES): Add sentinel-frame.c.
6884         (sentinel_frame_h): Define.
6885         (COMMON_OBS): Add sentinel-frame.o.
6886         (sentinel-frame.o): Specify dependencies.
6887         * frame.c: Include "sentinel-frame.h".
6888         (frame_register_unwind): Rewrite assuming that there is always a a
6889         ->next frame.
6890         (frame_register, generic_unwind_get_saved_register): Ditto.
6891         (frame_read_unsigned_register, frame_read_signed_register): Ditto.
6892         (create_sentinel_frame, unwind_to_current_frame): New functions.
6893         (get_current_frame): Rewrite using create_sentinel_frame and
6894         unwind_to_current_frame.  When possible, always create a frame.
6895         (create_new_frame): Set next to the sentinel frame.
6896         (get_next_frame): Rewrite.  Don't go below the level 0 frame.
6897         (deprecated_update_frame_pc_hack): Update the next frame's PC and
6898         ID cache when necessary.
6899         (frame_saved_regs_id_unwind): Use frame_relative_level.
6900         (deprecated_generic_get_saved_register): Use frame_relative_level,
6901         get_frame_saved_regs, get_frame_pc, get_frame_base and
6902         get_next_frame.
6903         (frame_saved_regs_register_unwind): Use get_frame_saved_regs and
6904         frame_register.
6905
6906 2003-01-27  Daniel Jacobowitz  <drow@mvista.com>
6907
6908         * gdb_indent.sh: Add -T bfd and -T asection to the indent arguments.
6909
6910 2003-01-27  Daniel Jacobowitz  <drow@mvista.com>
6911
6912         * maint.c [! (HAVE_MONSTARTUP && HAVE__MCLEANUP)]
6913         (maintenance_set_profile_cmd): Use error () instead of warning ().
6914
6915 2003-01-27  Daniel Jacobowitz  <drow@mvista.com>
6916
6917         * configure.in: Check that -pg works if using --enable-profiling.
6918         Check for monstartup and _mcleanup regardless of --enable-profiling.
6919         * maint.c: Check for monstartup and _mcleanup before using them.
6920         * config.in: Regenerated.
6921         * configure: Regenerated.
6922
6923 2003-01-24  Nick Clifton  <nickc@redhat.com>
6924
6925         * Add sh2e support:
6926
6927         2002-04-02  Elena Zannoni  <ezannoni@redhat.com>
6928
6929                 * gdb/sh-tdep.c (sh_sh2e_register_name): New.
6930                 (sh2e_show_regs): New.
6931                 (sh_gdbarch_init): Handle bfd_mach_sh2e.
6932                 * config/sh/tm-sh.h: Added sh2e to comments.
6933
6934 2003-01-23  Jim Blandy  <jimb@redhat.com>
6935
6936         * symfile.c (syms_from_objfile): Don't print the "(no debugging
6937         symbols found)" message here; we haven't checked for a separate
6938         debug info file yet, so we don't know yet.
6939         (symbol_file_add_with_addrs_or_offsets): Print it here, after
6940         we've looked everywhere.  Also, there's no need to print a special
6941         message when we're loading the separate debug info file: the one
6942         symbol_file_add prints is fine.
6943
6944 2003-01-23  Alexander Larsson <alexl@redhat.com>
6945             Jim Blandy  <jimb@redhat.com>
6946
6947         Add support for executables whose debug info has been separated
6948         out into a separate file, leaving only a link behind.
6949         * objfiles.h (struct objfile): New fields: separate_debug_objfile
6950         and separate_debug_objfile_backlink.
6951         (put_objfile_before): New declaration.
6952         * symfile.c: #include "filenames.h".
6953         (symbol_file_add_with_addrs_or_offsets): If this objfile has its
6954         debug info in a separate file, read that, too. Save the addrs
6955         argument, so we can use it again to read the separated debug info;
6956         syms_from_objfile modifies the table we pass it.
6957         (reread_symbols): After re-reading an objfile, call
6958         reread_separate_symbols to refresh its separate debug info
6959         objfile, if it has one.
6960         (reread_separate_symbols, find_separate_debug_file,
6961         get_debug_link_info, separate_debug_file_exists): New functions.
6962         (debug_file_directory): New global var.
6963         (_initialize_symfile): Initialize debug_file_directory, and
6964         provide the new `set debug-file-directory' command to let the user
6965         change it.
6966         * objfiles.c (free_objfile): If this objfile has its debug info in
6967         a separate objfile, free that one too.  If this is itself a
6968         separate debug info objfile, clear our parent's backlink.
6969         (put_objfile_before): New function.
6970         * utils.c (gnu_debuglink_crc32): New function.
6971         * defs.h (gnu_debuglink_crc32): New declaration.
6972         * Makefile.in (symfile.o): Note dependency on "filenames.h".
6973         * configure.in: Handle --with-separate-debug-dir config option.
6974         * acinclude.m4 (AC_DEFINE_DIR): New macro.
6975         * acconfig.h (DEBUGDIR): New macro.
6976         * configure, aclocal.m4, config.in: Regenerated.
6977
6978 2003-01-22  Jim Blandy  <jimb@redhat.com>
6979
6980         * symfile.c (symbol_file_add_with_addrs_or_offsets): New function,
6981         like the old symbol_file_add, but taking new arguments: you can
6982         now pass in either a `struct section_addr_info' list to say where
6983         each section is loaded, or a `struct section_offsets' table.  Pass
6984         these new arguments through to syms_from_objfile as appropriate.
6985         (symbol_file_add): Just call symbol_file_add_with_addrs_or_offsets, 
6986         with the appropriate quiescent values for the new arguments.
6987
6988         * symfile.c: #include "gdb_assert.h".
6989         (syms_from_objfile): Add the ability to pass in a section offset
6990         table directly, as an alternative to the section_addr_info table.
6991         Document arguments better.
6992         (symbol_file_add): Pass extra arguments to syms_from_objfile.
6993         * symfile.h (syms_from_objfile): Update declaration.
6994         * rs6000-nat.c (objfile_symbol_add): Pass new arguments to
6995         syms_from_objfile.
6996         * Makefile.in (symfile.o): List dependency on $(gdb_assert_h).
6997
6998 2003-01-22  Daniel Jacobowitz  <drow@mvista.com>
6999
7000         Original patch by Tom Tromey <tromey@cygnus.com> and
7001         Jason Molenda <jmolenda@apple.com>.
7002         * Makefile.in (PROFILE_CFLAGS): Substitute from configure.
7003         (INTERNAL_LDFLAGS): Don't include PROFILE_CFLAGS.
7004         * NEWS: Mention profiling.
7005         * configure.in (--enable-gdbtk): Fix typo.
7006         (--enable-profiling): New.  Set PROFILE_CFLAGS.
7007         * maint.c (maintenance_set_profile_cmd): Remove NOTYET.
7008         Fill in function.
7009         (profiling_state): New variable.
7010         (mcleanup_wrapper): New function.
7011         (_initialize_maint): Remove NOTYET, fix call to
7012         add_setshow_boolean_cmd for "maint set profile".
7013         * configure: Regenerated.
7014
7015 2003-01-21  Martin M. Hunt  <hunt@redhat.com>
7016
7017         * Makefile.in (install-gdbtk): Install PNG images too.
7018
7019 2003-01-21  Andrew Cagney  <ac131313@redhat.com>
7020
7021         * exec.c (text_start): Delete global variable.
7022         (exec_file_attach): Make text_start local to the function.
7023         * inferior.h (BEFORE_TEXT_END, AFTER_TEXT_END): Delete macros.
7024         * valops.c (hand_function_call): Delete code that handles
7025         BEFORE_TEXT_END and AFTER_TEXT_END.
7026         * gdbarch.sh (CALL_DUMMY_LENGTH): Test call_dummy_length instead
7027         of CALL_DUMMY_LOCATION.
7028         * gdbarch.c: Regenerate.
7029         * inferior.h (deprecated_pc_in_call_dummy_before_text_end)
7030         (deprecated_pc_in_call_dummy_after_text_end): Delete declaration.
7031         * blockframe.c (deprecated_pc_in_call_dummy_before_text_end)
7032         (deprecated_pc_in_call_dummy_after_text_end): Delete functions.
7033         (text_end): Delete extern declaration.
7034
7035 2003-01-21  Andrew Cagney  <ac131313@redhat.com>
7036
7037         * frame.h (FRAME_OBSTACK_ZALLOC): Define.
7038         * blockframe.c (backtrace_below_main): Move to "frame.c".
7039         (frame_chain_valid): Delete check for backtrace_below_main.
7040         (_initialize_blockframe): Delete initialization, move ``set
7041         backtrace-below-main'' command to "frame.c".
7042         (do_flush_frames_sfunc): Delete function.
7043         * frame.c: Include "command.h" and "gdbcmd.h".
7044         (frame_type_from_pc): New function.
7045         (create_new_frame): Use frame_type_from_pc.
7046         (legacy_get_prev_frame): New function.
7047         (get_prev_frame): Rewrite.  When an old style frame, call
7048         legacy_get_prev_frame.  Otherwize, unwind the PC first.
7049         (_initialize_frame): Add ``set backtrace-below-main'' command.
7050         * Makefile.in (frame.o): Update dependencies.
7051
7052 2003-01-19  Andrew Cagney  <ac131313@redhat.com>
7053
7054         * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO): Rename
7055         DEPRECATED_REGISTERS_INFO.
7056
7057 2003-01-19  Andrew Cagney  <ac131313@redhat.com>
7058
7059         * MAINTAINERS: Replace `Blanket Write Privs' with `Global
7060         Maintainers'.  Update `Various Maintainers'.
7061
7062 2003-01-19  Andrew Cagney  <ac131313@redhat.com>
7063
7064         * frame.c (frame_saved_regs_pop): Assert POP_FRAME_P.
7065         * gdbarch.sh (POP_FRAME): Change to function with predicate.
7066         Suppress actual parameters when `-'.
7067         * gdbarch.h, gdbarch.c: Regenerate.
7068
7069 2003-01-19  Andrew Cagney  <ac131313@redhat.com>
7070
7071         * d10v-tdep.c (d10v_frame_saved_pc, d10v_frame_chain): Restore
7072         code handling dummy frames.
7073
7074 2003-01-19  Andrew Cagney  <ac131313@redhat.com>
7075
7076         * frame-unwind.h (frame_unwind_pop_ftype): Declare.
7077         (struct frame_unwind): Add field pop.
7078         * frame.h (frame_pop): Declare.
7079         * frame.c (frame_saved_regs_pop): New function.
7080         (trad_frame_unwinder): Add frame_saved_regs_pop.
7081         (frame_pop): New function.
7082         * dummy-frame.c (dummy_frame_pop): New function.
7083         (discard_innermost_dummy): New function.
7084         (generic_pop_dummy_frame): Use discard_innermost_dummy.
7085         (dummy_frame_unwind): Add dummy_frame_pop.
7086         * infrun.c (normal_stop): Call frame_pop instead of POP_FRAME.
7087         * valops.c (hand_function_call): Ditto.
7088         * stack.c (return_command): Ditto.
7089
7090 2003-01-18  Andrew Cagney  <ac131313@redhat.com>
7091
7092         * cris-tdep.c: Fix function declaration indentation.
7093         * dwarfread.c, gdbcore.h, gdbtypes.h, i386v-nat.c: Ditto.
7094         * mips-tdep.c, monitor.h, parse.c, proc-utils.h: Ditto.
7095         * rs6000-nat.c, ser-go32.c, somread.c, stabsread.c: Ditto.
7096         * symfile.h, symtab.h, target.c, target.h, value.h: Ditto.
7097         * xcoffread.c, config/pa/tm-hppa.h: Ditto.
7098         * config/sparc/tm-sp64.h, config/sparc/tm-sparc.h: Ditto.
7099
7100 2003-01-18  Michael Chastain  <mec@shout.net>
7101
7102         * README (Unpacking and Installation -- quick overview):
7103         Warn against ".../gdb-5.3/gdb/configure".
7104
7105 2003-01-18  Andrew Cagney  <ac131313@redhat.com>
7106
7107         * dummy-frame.h (dummy_frame_id_unwind): Delete declaration.
7108         (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
7109         (struct frame_unwind): Declare opaque.
7110         (dummy_frame_p): Declare function.
7111         * dummy-frame.c (dummy_frame_id_unwind): Make static.
7112         (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
7113         * dummy-frame.c: Include "frame-unwind.h".
7114         (dummy_frame_p): New function.
7115         (dummy_frame_unwind): New variable.
7116         * frame.c: Include "frame-unwind.h".
7117         (frame_pc_unwind, frame_id_unwind, frame_register_unwind): Update
7118         to use the new unwind field.
7119         (set_unwind_by_pc): Delete function.
7120         (create_new_frame, get_prev_frame): Set unwind field using
7121         frame_unwind_find_by_pc.
7122         (trad_frame_unwind, trad_frame_unwinder): New variables.
7123         * frame.h (trad_frame_unwind): Declare variable.
7124         (frame_id_unwind_ftype): Delete declaration.
7125         (frame_pc_unwind_ftype, frame_register_unwind_ftype): Ditto.
7126         (struct frame_unwind): Declare opaque.
7127         (struct frame_info): Replace the fields id_unwind, pc_unwind and
7128         register_unwind with a single unwind pointer.
7129         * frame-unwind.h, frame-unwind.c: New files.
7130         * Makefile.in (SFILES): Add frame-unwind.c.
7131         (frame_unwind_h): Define.
7132         (COMMON_OBS): Add frame-unwind.o.
7133         (frame-unwind.o): Specify dependencies.
7134         (frame.o, dummy-frame.o): Update dependencies.
7135         
7136 2003-01-18  Andrew Cagney  <ac131313@redhat.com>
7137
7138         * ada-valprint.c: Eliminate PTR.
7139         * breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
7140         * defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
7141         * exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
7142         * objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
7143         * remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
7144         * solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
7145         * symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
7146         
7147 2003-01-17  Andrew Cagney  <ac131313@redhat.com>
7148
7149         * main.c (captured_main): Don't use PTR.
7150         * cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
7151         * gdbtypes.c (lookup_primitive_typename): Ditto.
7152         (lookup_struct_elt_type): Ditto.
7153         * f-valprint.c (info_common_command): Ditto.
7154         (list_all_visible_commons): Ditto.
7155         * jv-typeprint.c (java_type_print_base): Ditto.
7156
7157         * config/djgpp/fnchange.lst: Rename mi1-var-block.exp,
7158         mi1-var-child.exp, mi1-var-cmd.exp and mi1-var-display.exp.
7159         Rename opcodes/iq2000-desc.c and opcodes/iq2000-dis.c.  Rename
7160         i386-interix-nat.c and i386-interix-tdep.c.  Rename
7161         m68klinux-nat.c and m68klinux-tdep.c.  Rename
7162         config/mips/tm-linux.h and config/mips/tm-linux64.h.  Rename
7163         bfd/po/.cvsignore and opcodes/po/.cvsignore.  Rename
7164         gdb/objc-exp.tab.c and gdb/ada-exp.tab.c
7165         * main.c (captured_main): Use xfree, not free.
7166
7167 2003-01-16  Andrew Cagney  <ac131313@redhat.com>
7168
7169         * frame.h (frame_id_unwind_ftype): Change type so that the frame's
7170         ID back using a parameter.
7171         * frame.c (frame_id_unwind): Update call.
7172         (frame_saved_regs_id_unwind): Update.
7173         * dummy-frame.c (dummy_frame_id_unwind): Update function.
7174         * dummy-frame.h (struct frame_id): Add opaque declaration.
7175         (dummy_frame_id_unwind): Update declaration.
7176
7177 2003-01-15  Andrew Cagney  <ac131313@redhat.com>
7178
7179         * sparc-tdep.c: Delete reference to PRINT_REGISTER_HOOK.
7180
7181 2003-01-15  Stephen P. Smith <ischis2@cox.net>
7182
7183         * MAINTAINERS (Stephen P. Smith): Updated email address.
7184
7185 2003-01-14  Elena Zannoni  <ezannoni@redhat.com>
7186
7187         Fix PR gdb/898
7188         * breakpoint.c (until_break_command): Add new argument.  Use it to
7189         decide whether to stop only at the current frame or not.
7190         * breakpoint.h (until_break_command): Update prototype.
7191         * infcmd.c (until_command): Add new argument to until_break_command
7192         call.
7193         (advance_command): New function.
7194         (_initialize_infcmd): Update help string for 'until' command.
7195         Add new 'advance' command.
7196
7197 2003-01-14  David Carlton  <carlton@math.stanford.edu>
7198
7199         * linespec.c (decode_line_1): Normalize comments.
7200         (set_flags): Ditto.
7201         (locate_first_half): Ditto.
7202         (decode_compound): Ditto.
7203         (symtab_from_filename): Ditto.
7204         (decode_all_digits): Ditto.
7205         (decode_dollar): Ditto.
7206         (find_methods): Ditto.
7207         (find_toplevel_char): Ditto.
7208
7209 2003-01-13  Andrew Cagney  <ac131313@redhat.com>
7210
7211         * ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
7212         * demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
7213         * elfread.c, eval.c, expprint.c, expression.h: Update copyright.
7214         * f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
7215         * gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
7216         * language.c, language.h, m32r-tdep.c: Update copyright.
7217         * mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
7218         * somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
7219         * thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
7220         * values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
7221         * x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
7222         * cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
7223
7224 2003-01-13  Elena Zannoni  <ezannoni@redhat.com>
7225
7226         * stabsread.h (process_later, resolve_cfront_continuation):
7227         Obsolete.
7228         Update copyright years.
7229         * buildsym.c (start_subfile): Obsolete comment pertinent to Cfront.
7230         Update copyright year.
7231         * dbxread.c(struct cont_elem): Obsolete.
7232         (process_later, process_now): Obsolete functions. 
7233         (read_dbx_symtab, read_ofile_symtab): Obsolete cfront support.
7234         Update copyright year.
7235         * gdbtypes.c (INIT_EXTRA, ADD_EXTRA): Obsolete macros.
7236         (add_name, add_mangled_type, cfront_mangle_name): Obsolete functions.
7237         * mdebugread.c (parse_type): Obsolete comment pertinent to Cfront.
7238         (parse_partial_symbols): Obsolete cfront support.
7239         * stabsread.c
7240         (CFRONT_VISIBILITY_PRIVATE,CFRONT_VISIBILITY_PUBLIC): Obsolete
7241         macros.
7242         (get_substring, get_cfront_method_physname, msg_unknown_complaint,
7243         read_cfront_baseclasses, read_cfront_member_functions,
7244         resolve_cfront_continuation,read_cfront_static_fields,
7245         copy_cfront_struct_fields): Obsolete functions.
7246         (define_symbol, read_one_struct_field): Obsolete cfront support.
7247         * xcoffread.c (scan_xcoff_symtab): Obsolete CFront support.
7248         Update Copyright year.
7249
7250 2003-01-13  Elena Zannoni  <ezannoni@redhat.com>
7251
7252         * stack.c (print_frame_info, print_stack_frame_base_stub,
7253         print_stack_frame_base, show_and_print_stack_frame_stub,
7254         show_and_print_stack_frame, print_only_stack_frame_stub,
7255         print_only_stack_frame): Delete functions.
7256         (print_stack_frame_stub): Call print_frame_info instead of
7257         print_frame_info_base.
7258         (print_frame_info_base): Rename to print_frame_info.
7259         (backtrace_command_1): Call print_frame_info, instead of
7260         print_frame_info_base.
7261         (current_frame_command): Call print_stack_frame, instead of
7262         print_only_stack_frame.
7263         (frame_command): Call print_stack_frame, instead of
7264         show_and_print_stack_frame.
7265         (up_command): Ditto.
7266         (down_command): Ditto.
7267         * frame.h (print_only_stack_frame): Delete prototype.
7268         * infrun.c (normal_stop): Call print_stack_frame, instead of
7269         show_and_print_stack_frame.
7270         * thread.c (info_threads_command): Call print_stack_frame, instead
7271         of print_only_stack_frame.
7272
7273 2003-01-13  Andrew Cagney  <ac131313@redhat.com>
7274
7275         * README (Graphical interface to GDB): Update URL.  Point at
7276         gdb/links/.
7277
7278         * gdb_indent.sh: Update to version 2.2.9.  Warn when not exact
7279         version match.
7280
7281 2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
7282
7283         * symtab.c (find_pc_sect_line): Don't consider end-of-function
7284         lines.
7285
7286 2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
7287
7288         * thread-db.c (attach_thread): Prototype.
7289         (struct private_thread_info): Remove lwpid.  Add thread handle (th),
7290         thread information (ti), and valid flags (th_valid, ti_valid).
7291         (attach_thread): Move target_pid_to_str call to after the thread
7292         is added to GDB's list.  Initialize the cache.
7293         (thread_get_info_callback, thread_db_map_id2thr)
7294         (thread_db_get_info): New functions.
7295         (thread_from_lwp, lwp_from_thread, thread_db_fetch_registers)
7296         (thread_db_store_registers, thread_db_thread_alive)
7297         (thread_db_get_thread_local_address): Use them.
7298         (thread_db_pid_to_str): Likewise.  Return "Missing" instead
7299         of calling error() for threads in unknown state.
7300
7301         (clear_lwpid_callback): New function.
7302         (thread_db_resume): Use it to clear the cache.
7303
7304 2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
7305
7306         * lin-lwp.c (struct private_thread_info, find_lwp_callback): Remove.
7307         (resume_callback): Remove dead code.
7308
7309 2003-01-13  Andrew Cagney  <ac131313@redhat.com>
7310
7311         * gdbarch.sh (FRAME_INIT_SAVED_REGS): Change to function with
7312         predicate.
7313         * gdbarch.h, gdbarch.c: Regenerate.
7314         * stack.c (frame_info): Only initialize the saved registers when
7315         FRAME_INIT_SAVED_REGS_P.
7316         * frame.c (frame_saved_regs_register_unwind): Assert
7317         FRAME_INIT_SAVED_REGS_P.
7318         (deprecated_generic_get_saved_register): Ditto.
7319
7320 2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
7321
7322         * source.c (openp): Squelch warning about "filename".
7323
7324 2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
7325
7326         * source.c (openp): If the file does not exist don't necessarily
7327         search the path.
7328
7329 2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
7330
7331         Fix PR gdb/872.
7332         * gdbtypes.c (init_type): Mark "char" as TYPE_FLAG_NOSIGN.
7333         (integer_types_same_name_p): New function.
7334         (rank_one_type): Use it.
7335         * stabsread.c (read_range_type): Mark "char" as TYPE_FLAG_NOSIGN.
7336
7337 2003-01-13  Daniel Jacobowitz  <drow@mvista.com>
7338
7339         * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): New
7340         variables.
7341         (main.o): Custom rule which uses $(TARGET_SYSTEM_ROOT_DEFINE).
7342         * configure.in: Add --with-sysroot.
7343         * configure: Regenerated.
7344         * main.c (gdb_sysroot): New variable.
7345         (captured_main): Initialize gdb_sysroot.
7346         * defs.h (gdb_sysroot): New extern declaration.
7347         * solib.c (_initialize_solib): Initialize solib_absolute_prefix.
7348
7349 2003-01-12  Michael Chastain  <mec@shout.net>
7350
7351         * config/djgpp/fnchange.lst: add gdb/ChangeLog-2002.
7352
7353 2003-01-12  Michael Chastain  <mec@shout.net>
7354
7355         * top.c (print_gdb_version): Bump copyright year to 2003.
7356
7357 2003-01-12  David Carlton  <carlton@bactrian.org>
7358
7359         * linespec.c (symtab_from_filename): Rename variable 's' to
7360         'file_symtab'.
7361
7362 2003-01-12  Andrew Cagney  <ac131313@redhat.com>
7363
7364         * d10v-tdep.c (d10v_init_extra_frame_info): Remove checks for a
7365         dummy frame.
7366         (d10v_frame_saved_pc, d10v_frame_chain): Ditto.
7367
7368 2003-01-12  Andrew Cagney  <ac131313@redhat.com>
7369
7370         * d10v-tdep.c: Include "gdb_assert.h".
7371         (d10v_store_return_value): Rewrite to match current interface.
7372         (d10v_extract_struct_value_address): Ditto.
7373         (d10v_extract_return_value): Ditto.
7374         (d10v_gdbarch_init): Set store_restore_value,
7375         extract_struct_value_address and extract_return_value.
7376
7377 2003-01-12  J. Brobecker  <brobecker@gnat.com>
7378
7379         * hpread.c (set_namestring): New procedure replacing the
7380         SET_NAMESTRING macro.
7381         (hpread_build_psymtabs): Replace calls to SET_NAMESTRING
7382         by calls to set_namestring.
7383
7384 2003-01-11  J. Brobecker  <brobecker@gnat.com>
7385
7386         * hpread.c (SET_NAMESTRING): Remove an incorrect cast to fix
7387         a compilation warning.
7388         (hpread_process_one_debug_symbol): Likewise.
7389
7390 2003-01-10  David Carlton  <carlton@math.stanford.edu>
7391
7392         * linespec.c (decode_line_1): Rename variable 's' to
7393         'file_symtab'.
7394         (decode_all_digits): Rename argument 's' to 'file_symtab'.
7395         (decode_dollar): Ditto.
7396         (decode_variable): Ditto.
7397         (symbol_found): Ditto.
7398
7399 2003-01-09  Michael Chastain  <mec@shout.net>
7400
7401         * config/djgpp/fnchange.lst: update file list for testsuite/gdb.c++.
7402
7403 2003-01-07  Corinna Vinschen  <vinschen@redhat.com>
7404
7405         * win32-nat.c (set_process_privilege): New function.
7406         (child_attach): Call set_process_privilege() to enable the
7407         SE_DEBUG_NAME user privilege if available in process token.
7408
7409 2003-01-10  J. Brobecker  <brobecker@gnat.com>
7410
7411         * hpread.c (hpread_process_one_debug_symbol): Fix a small
7412         compilation error in the previous revision.
7413
7414 2003-01-09  David Carlton  <carlton@math.stanford.edu>
7415
7416         * linespec.c: Update copyright.
7417
7418 2003-01-09  Daniel Jacobowitz  <drow@mvista.com>
7419
7420         * lin-lwp.c (child_wait): Ignore exit statuses for processes other
7421         than inferior_ptid.
7422         (lin_lwp_wait): Ignore exit statuses for unknown LWPs.
7423
7424 2003-01-09  Andrew Cagney  <ac131313@redhat.com>
7425
7426         * frame.h (frame_obstack_zalloc): Replace frame_obstack_alloc.
7427         Update comments.
7428         * frame.c (frame_obstack_zalloc): Replace frame_obstack_alloc.
7429         (frame_saved_regs_zalloc): Update.
7430         (frame_saved_regs_register_unwind): Update.
7431         (create_new_frame): Update.
7432         (get_prev_frame): Update.
7433         (frame_extra_info_zalloc): Update.
7434         (deprecated_get_frame_saved_regs): Update.
7435         * dwarf2cfi.c (cfi_init_extra_frame_info): Update.
7436         * cris-tdep.c: Update comment.
7437
7438         * somsolib.h: Fix function indentation.
7439         * disasm.c, buildsym.c, buildsym.h: Eliminate PTR.
7440         * gnu-v2-abi.c, f-typeprint.c, x86-64-linux-tdep.c: Eliminate STREQ.
7441         * demangle.c, ax-gdb.c, c-valprint.c: Eliminate STREQ.
7442         * alpha-osf1-tdep.c, corefile.c: Eliminate STREQ.
7443         * somsolib.c, inftarg.c: Remove assignment in if conditional.
7444
7445         * infrun.c (follow_fork): Use ISO C definition.
7446         * expprint.c (print_subexp): Use xfree instead of free.
7447         * charset.c: Include "gdb_string.h" instead of <string.h>.
7448         (register_iconv_charsets): Use ISO C definition.
7449         (host_charset, target_charset): Ditto.
7450         * Makefile.in (charset.o): Update dependencies.
7451         (mi-cmd-env.o): Update dependencies.
7452
7453 2003-01-08  Andrew Cagney  <cagney@redhat.com>
7454
7455         * alpha-linux-tdep.c (alpha_linux_sigcontext_addr): Use
7456         get_frame_base.
7457
7458 2003-01-08  Andrew Cagney  <ac131313@redhat.com>
7459
7460         * gdb_mbuild.sh: Add --keep option.  When specified, keep the
7461         build directories.  Save edited gdb output in Mbuild.log.  If a
7462         build fails, remove any final GDB executable.
7463
7464 2003-01-08  Andrew Cagney  <ac131313@redhat.com>
7465
7466         * gdb_mbuild.sh: Edit the output of `maint print architecture'
7467         replacing hex constants with function names and stripping leading
7468         file name directory prefixes.
7469
7470 2003-01-08  Andrew Cagney  <cagney@redhat.com>
7471
7472         * gcore.c, i386-linux-tdep.c: Use get_frame_pc, get_next_frame and
7473         get_frame_base.
7474
7475 2003-01-08  David Carlton  <carlton@math.stanford.edu>
7476
7477         * linespec.c (decode_line_1): Move code into decode_variable.
7478         (decode_variable): New function.
7479
7480 2003-01-08  Andrew Cagney  <ac131313@redhat.com>
7481
7482         * mn10300-tdep.c (analyze_dummy_frame): Fix typo.
7483
7484 2003-01-08  Andrew Cagney  <cagney@redhat.com>
7485
7486         * cris-tdep.c (cris_frame_init_saved_regs): Use
7487         get_frame_saved_regs and SIZEOF_FRAME_SAVED_REGS when copying a
7488         saved_regs buffer.
7489         * sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
7490         (sh64_nofp_frame_init_saved_regs): Ditto.
7491         (sh_fp_frame_init_saved_regs): Ditto.
7492         * arm-tdep.c: Use deprecated_set_frame_saved_regs_hack.
7493         * mips-tdep.c (mips_init_extra_frame_info): Ditto.
7494         * mcore-tdep.c (analyze_dummy_frame): Ditto.
7495         * mn10300-tdep.c (analyze_dummy_frame): Ditto.
7496
7497 2003-01-08  Daniel Jacobowitz  <drow@mvista.com>
7498
7499         * minsyms.c (lookup_minimal_symbol): Update comment.
7500         (lookup_minimal_symbol_text): Update comment.  Use the hash table.
7501         (lookup_minimal_symbol_solib_trampoline): Likewise.
7502
7503 2003-01-08  Andrew Cagney  <cagney@redhat.com>
7504
7505         * d10v-tdep.c (d10v_init_extra_frame_info): Use
7506         frame_relative_level.
7507
7508         * alpha-tdep.c: Use get_frame_extra_info.
7509         * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
7510         * h8300-tdep.c, ia64-tdep.c, m68hc11-tdep.c, mcore-tdep.c: Ditto.
7511         * mips-tdep.c, mn10300-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
7512         * sparc-tdep.c, xstormy16-tdep.c: Ditto.
7513
7514         * alpha-tdep.c: Use get_next_frame.
7515         * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
7516         * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
7517         * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Ditto.
7518         * mips-tdep.c, mn10200-tdep.c, mn10300-tdep.c: Ditto.
7519         * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, sparc-tdep.c: Ditto.
7520         * v850-tdep.c, vax-tdep.c, x86-64-linux-tdep.c: Ditto.
7521         * xstormy16-tdep.c: Ditto.
7522         
7523 2003-01-07  Andrew Cagney  <cagney@redhat.com>
7524
7525         * alpha-tdep.c: Use get_frame_base.
7526         * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
7527         * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
7528         * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
7529         * mn10300-tdep.c, ns32k-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
7530         * sparc-tdep.c, v850-tdep.c, vax-tdep.c: Ditto.
7531         * x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
7532         * config/h8500/tm-h8500.h, config/mn10200/tm-mn10200.h: Ditto.
7533         * config/sparc/tm-sparc.h: Ditto.
7534         
7535 2003-01-07  Andrew Cagney  <cagney@redhat.com>
7536
7537         * frame.c (deprecated_get_frame_context): New function.
7538         (deprecated_set_frame_context): New function.
7539         * frame.h (deprecated_get_frame_context): Declare.
7540         (deprecated_set_frame_context): Declare.
7541         * dwarf2cfi.c (UNWIND_CONTEXT): Use deprecated_get_frame_context.
7542         (cfi_init_extra_frame_info): Use deprecated_set_frame_context.
7543         
7544 2003-01-07  Andrew Cagney  <cagney@redhat.com>
7545
7546         * frame.c (deprecated_set_frame_next_hack): New function.
7547         (deprecated_set_frame_prev_hack): New function.
7548         * frame.h (deprecated_set_frame_next_hack): Declare.
7549         (deprecated_set_frame_prev_hack): Declare.
7550         * mcore-tdep.c (analyze_dummy_frame): Use
7551         deprecated_set_frame_next_hack and deprecated_set_frame_prev_hack.
7552         * mn10300-tdep.c (analyze_dummy_frame): Ditto.
7553
7554 2003-01-07  David Carlton  <carlton@math.stanford.edu>
7555
7556         * linespec.c (decode_line_1): Move code into decode_dollar.
7557         (decode_dollar): New function.
7558
7559 2003-01-07  Andrew Cagney  <cagney@redhat.com>
7560
7561         * arm-tdep.c (arm_init_extra_frame_info): Use
7562         deprecated_update_frame_base_hack.
7563         * xstormy16-tdep.c (xstormy16_scan_prologue): Ditto.
7564         * mn10300-tdep.c (analyze_dummy_frame): Ditto.
7565         (fix_frame_pointer): Ditto.
7566         (mn10300_analyze_prologue): Ditto.
7567
7568 2003-01-07  Andrew Cagney  <cagney@redhat.com>
7569
7570         * xstormy16-tdep.c (xstormy16_init_extra_frame_info): Allocate
7571         extra_info using frame_extra_info_zalloc.
7572         * sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
7573         * sh-tdep.c (sh_init_extra_frame_info): Ditto.
7574         (sh64_init_extra_frame_info): Ditto.
7575         * mn10300-tdep.c (mn10300_init_extra_frame_info): Ditto.
7576         * s390-tdep.c (s390_init_extra_frame_info): Ditto.
7577         * mips-tdep.c (mips_init_extra_frame_info): Ditto.
7578         * mcore-tdep.c (mcore_init_extra_frame_info): Ditto.
7579         * frv-tdep.c (frv_init_extra_frame_info): Ditto.
7580         * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Ditto.
7581         * ia64-tdep.c (ia64_init_extra_frame_info): Ditto.
7582         * h8300-tdep.c (h8300_init_extra_frame_info): Ditto.
7583         * d10v-tdep.c (d10v_init_extra_frame_info): Ditto.
7584         * cris-tdep.c (cris_init_extra_frame_info): Ditto.
7585         * arm-tdep.c (arm_init_extra_frame_info): Ditto.
7586         * alpha-tdep.c (alpha_init_extra_frame_info): Ditto.
7587
7588         * mn10300-tdep.c (analyze_dummy_frame): Use
7589         deprecated_set_frame_extra_info_hack.
7590         * mcore-tdep.c (analyze_dummy_frame): Ditto.
7591
7592 2003-01-07  J. Brobecker  <brobecker@gnat.com>
7593
7594         * mdebugread.c (parse_symbol): Skip stProc entries which storage
7595         class is not scText. These do not define "real" procedures.
7596         (parse_partial_symbols): Likewise.
7597
7598 2003-01-06  Michael Snyder  <msnyder@redhat.com>
7599
7600         * lin-lwp.c: Added or elaborated on "debug lin-lwp" info.
7601
7602 2003-01-06  Andrew Cagney  <ac131313@redhat.com>
7603
7604         * frame.h (deprecated_frame_xmalloc_with_cleanup): Declare.
7605         * frame.c (deprecated_frame_xmalloc_with_cleanup): New function.
7606         * arm-tdep.c (arm_frame_chain): Allocate caller_fi using
7607         deprecated_frame_xmalloc_with_cleanup.
7608         * m32r-tdep.c (m32r_virtual_frame_pointer): Allocate `fi' using
7609         deprecated_frame_xmalloc.
7610         * mcore-tdep.c (analyze_dummy_frame): Ditto for dummy.
7611         * mn10200-tdep.c (mn10200_frame_chain): Ditto for dummy_frame.
7612
7613 2003-01-06  Andrew Cagney  <cagney@redhat.com>
7614
7615         * x86-64-linux-tdep.c: Include "osabi.h".
7616         * Makefile.in (x86-64-linux-tdep.o): Update dependencies.
7617
7618         * sparc-tdep.c (sparc_dump_tdep): Fix typo, match -> mach.
7619
7620 2003-01-06  Andrew Cagney  <cagney@redhat.com>
7621
7622         * MAINTAINERS (Target Instruction Set Architectures): Update
7623         arm-elf.  Can be built with -Werror, has been multiarched.
7624
7625         * value.h (unpack_long): Make buffer parameter constant.
7626         (unpack_double, unpack_pointer, unpack_field_as_long): Ditto.
7627         * scm-lang.h (scm_parse): Ditto.
7628         * defs.h (extract_typed_address, extract_address): Ditto.
7629         (extract_long_unsigned_integer): Ditto.
7630         * inferior.h (unsigned_pointer_to_address): Ditto.
7631         (signed_pointer_to_address): Ditto.
7632         * gdbarch.sh (POINTER_TO_ADDRESS): Ditto.
7633         * gdbarch.h, gdbarch.c: Regenerate.
7634         * findvar.c (extract_long_unsigned_integer): Update.
7635         (extract_address): Update.
7636         (extract_typed_address): Update.
7637         (unsigned_pointer_to_address): Update.
7638         * values.c (unpack_long): Update.
7639         (unpack_double): Update.
7640         (unpack_pointer): Update.
7641         (unpack_field_as_long): Update.
7642         * d10v-tdep.c (d10v_pointer_to_address): Update.
7643         * avr-tdep.c (avr_pointer_to_address): Update.
7644         * scm-lang.c (scm_unpack): Update.
7645         * findvar.c (signed_pointer_to_address): Update.
7646
7647 2003-01-06  Michal Ludvig  <mludvig@suse.cz>
7648
7649         * x86-64-linux-nat.c (i386_sse_regnum_p): Deleted. Not needed anymore 
7650         since it is in i386-tdep.c.
7651
7652 2003-01-06  J. Brobecker  <brobecker@gnat.com>
7653
7654         * alpha-tdep.c (alpha_gdbarch_init): Fix a small compilation
7655         failure introduced in the previous change.
7656
7657 2003-01-05  Michael Chastain  <mec@shout.net>
7658
7659         * README: Remove references to deleted remote-*.c files:
7660         remote-adapt.c, remote-eb.c, remote-mm.c, remote-nindy.c,
7661         remote-nrom.c, remote-os9k.c, remote-udi.c.
7662
7663 2003-01-05  Mark Kettenis  <kettenis@gnu.org>
7664
7665         * i386-tdep.c (i386_get_longjmp_target): Make usable on x86-64.
7666         * x86-64-tdep.c (x86_64_init_abi): Remove FIXME about
7667         i386_get_longjmp_target.
7668
7669 2003-01-05  Andrew Cagney  <ac131313@redhat.com>
7670
7671         * arm-tdep.c (prologue_cache): Change to a pointer.
7672         (_initialize_arm_tdep): Allocate prologue_cache.
7673         (check_prologue_cache): Update.
7674         (save_prologue_cache): Update.
7675         (arm_gdbarch_init): Update.
7676
7677 2003-01-04  Daniel Jacobowitz  <drow@mvista.com>
7678
7679         * stabsread.c (update_method_name_from_physname): Call complaint()
7680         instead of error.
7681
7682 2003-01-04  Daniel Jacobowitz  <drow@mvista.com>
7683
7684         * arm-tdep.c (arm_frame_chain_valid):  Remove unnecessary test.
7685         * d10v-tdep.c (d10v_frame_chain_valid): Remove unnecessary tests.
7686         * hppa-tdep.c (hppa_frame_chain_valid): Remove unnecessary test.
7687
7688         * blockframe.c: Include "gdbcmd.h" and "command.h".
7689         (backtrace_below_main): New variable.
7690         (file_frame_chain_valid, func_frame_chain_valid)
7691         (nonnull_frame_chain_valid, generic_file_frame_chain_valid)
7692         (generic_func_frame_chain_valid): Remove functions.
7693         (frame_chain_valid, do_flush_frames_sfunc): New functions.
7694         (_initialize_blockframe): New function.
7695         * Makefile.in (blockframe.o): Update dependencies.
7696         * frame.c (frame_saved_regs_id_unwind, get_prev_frame): Remove FIXME
7697         comment.  Call frame_chain_valid ().
7698         * frame.h: Remove old prototypes.  Add prototype for
7699         frame_chain_valid and update comments to match.
7700         * gdbarch.sh: Change FRAME_CHAIN_VALID into a predicated function.
7701         Remove old comment.
7702         * gdbarch.h: Regenerated.
7703         * gdbarch.c: Regenerated.
7704
7705         * alpha-tdep.c (alpha_gdbarch_init): Don't call
7706         set_gdbarch_frame_chain_valid.
7707         * avr-tdep.c (avr_gdbarch_init): Likewise.
7708         * cris-tdep.c (cris_gdbarch_init): Likewise.
7709         * frv-tdep.c (frv_gdbarch_init): Likewise.
7710         * h8300-tdep.c (h8300_gdbarch_init): Likewise.
7711         * i386-tdep.c (i386_svr4_init_abi): Likewise.
7712         (i386_nw_init_abi): Likewise.
7713         (i386_gdbarch_init): Likewise.
7714         * ia64-tdep.c (ia64_gdbarch_init): Likewise.
7715         * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
7716         * m68k-tdep.c (m68k_gdbarch_init): Likewise.
7717         * mcore-tdep.c (mcore_gdbarch_init): Likewise.
7718         * mips-tdep.c (mips_gdbarch_init): Likewise.
7719         * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
7720         * ns32k-tdep.c (ns32k_gdbarch_init): Likewise.
7721         * ppcnbsd-tdep.c (ppcnbsd_init_abi): Likewise.
7722         * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
7723         * s390-tdep.c (s390_gdbarch_init): Likewise.
7724         * sh-tdep.c (sh_gdbarch_init): Likewise.
7725         * sparc-tdep.c (sparc_gdbarch_init): Likewise.
7726         * v850-tdep.c (v850_gdbarch_init): Likewise.
7727         * vax-tdep.c (vax_gdbarch_init): Likewise.
7728         * x86-64-tdep.c (x86_64_init_abi): Likewise.
7729
7730         * config/m32r/tm-m32r.h (FRAME_CHAIN_VALID): Don't define.
7731         * config/m68k/tm-apollo68b.h (FRAME_CHAIN_VALID): Likewise.
7732         * config/m68k/tm-m68kv4.h (FRAME_CHAIN_VALID): Likewise.
7733         * config/m68k/tm-monitor.h (FRAME_CHAIN_VALID): Likewise.
7734         * config/m68k/tm-os68k.h (FRAME_CHAIN_VALID): Likewise.
7735         * config/m68k/tm-vx68.h (FRAME_CHAIN_VALID): Likewise.
7736         * config/mn10200/tm-mn10200.h (FRAME_CHAIN_VALID): Likewise.
7737         * config/sparc/tm-sparclite.h (FRAME_CHAIN_VALID): Likewise.
7738
7739 2002-01-04  Daniel Jacobowitz  <drow@mvista.com>
7740
7741         * Makefile.in (acconfig_h): Remove incorrect macro.
7742         (config_h): Define.
7743         (osabi.o): Update dependencies.
7744         * configure.tgt: Set gdb_osabi based on target triplet.
7745         * configure.in: Define GDB_OSABI_DEFAULT based on gdb_osabi.
7746         * configure: Regenerated.
7747         * config.in: Regenerated.
7748         * osabi.c: Include "arch-utils.h", "gdbcmd.h", and "command.h".
7749         (GDB_OSABI_DEFAULT): Define if not already defined.
7750         (user_osabi_state, user_selected_osabi, gdb_osabi_available_names)
7751         (set_osabi_string): New variables.
7752         (gdbarch_register_osabi): Add new OS ABI to
7753         gdb_osabi_available_names.
7754         (gdbarch_lookup_osabi): Honor specified and default OS ABIs.
7755         (set_osabi, show_osabi): New functions.
7756         (_initialize_gdb_osabi): Add "set osabi" and "show osabi" commands.
7757
7758 2003-01-04  Daniel Jacobowitz  <drow@mvista.com>
7759
7760         * arch-utils.c (gdbarch_info_init): Set osabi to
7761         GDB_OSABI_UNINITIALIZED.
7762         * gdbarch.sh: Add osabi to struct gdbarch and to struct
7763         gdbarch_info.  Include "osabi.h" in gdbarch.c.  Check osabi
7764         in gdbarch_list_lookup_by_info and in gdbarch_update_p.
7765         * gdbarch.c: Regenerated.
7766         * gdbarch.h: Regenerated.
7767         * osabi.c (gdbarch_lookup_osabi): Return GDB_OSABI_UNINITIALIZED if
7768         there's no BFD.
7769         (gdbarch_init_osabi): Remove osabi argument; use info.osabi.
7770         * osabi.h (enum gdb_osabi): Move to defs.h.
7771         (gdbarch_init_osabi): Update prototype.
7772         * defs.h (enum gdb_osabi): Moved here.
7773         * Makefile.in: Update dependencies.
7774
7775         * alpha-tdep.h: Don't include "osabi.h".
7776         (struct gdbarch_tdep): Remove osabi member.
7777         * alpha-tdep.c: Include "osabi.h".
7778         (alpha_gdbarch_init): Don't call gdbarch_lookup_osabi.  Don't
7779         iterate over arches.  Update call to gdbarch_init_osabi.
7780         (alpha_dump_tdep): Don't dump osabi.
7781         * alpha-linux-tdep.c: Include "osabi.h".
7782         * alpha-osf1-tdep.c: Include "osabi.h".
7783         * alphafbsd-tdep.c: Include "osabi.h".
7784         * alphanbsd-tdep.c: Include "osabi.h".
7785
7786         * arm-tdep.h: Don't include "osabi.h".
7787         (struct gdbarch_tdep): Remove osabi member.
7788         * arm-tdep.c: Include "osabi.h".
7789         (arm_gdbarch_init): Don't call gdbarch_lookup_osabi.  Don't
7790         iterate over arches.  Update call to gdbarch_init_osabi.
7791         (arm_dump_tdep): Don't dump osabi.
7792         * arm-linux-tdep.c: Include "osabi.h".
7793         * armnbsd-tdep.c: Include "osabi.h".
7794
7795         * hppa-tdep.c (hppa_gdbarch_init): Don't call gdbarch_lookup_osabi.
7796         Update call to gdbarch_init_osabi.
7797
7798         * i386-tdep.h: Don't include "osabi.h".
7799         (struct gdbarch_tdep): Remove osabi member.
7800         * i386-tdep.c: Include "osabi.h".
7801         (i386_gdbarch_init): Don't call gdbarch_lookup_osabi.  Don't
7802         iterate over arches.  Update call to gdbarch_init_osabi.
7803         (i386_dump_tdep): Don't dump osabi.
7804         * i386-linux-tdep.c: Include "osabi.h".
7805         * i386-sol2-tdep.c: Include "osabi.h".
7806         * i386bsd-tdep.c: Include "osabi.h".
7807         * i386gnu-tdep.c: Include "osabi.h".
7808         * i386ly-tdep.c: Include "osabi.h".
7809         * i386nbsd-tdep.c: Include "osabi.h".
7810         * i386obsd-tdep.c: Include "osabi.h".
7811
7812         * mips-tdep.c (struct gdbarch_tdep): Remove osabi member.
7813         (mips_gdbarch_init): Don't call gdbarch_lookup_osabi.  Don't
7814         check osabi when iterating over arches.  Update call to
7815         gdbarch_init_osabi.
7816         (mips_dump_tdep): Don't dump osabi.
7817
7818         * ns32k-tdep.h: Don't include "osabi.h".
7819         (struct gdbarch_tdep): Remove.
7820         * ns32k-tdep.c (ns32k_gdbarch_init): Don't call
7821         gdbarch_lookup_osabi.  Don't iterate over arches.  Don't
7822         allocate tdep.  Update call to gdbarch_init_osabi.
7823         (ns32k_dump_tdep): Remove.
7824         (_initialize_ns32k_tdep): Update call to gdbarch_register.
7825         * ns32knbsd-tdep.c: Include "osabi.h".
7826
7827         * ppc-tdep.h: Don't include "osabi.h".
7828         (struct gdbarch_tdep): Remove osabi member.
7829         * rs6000-tdep.c: Include "osabi.h".
7830         (rs6000_gdbarch_init): Don't call gdbarch_lookup_osabi.  Don't check
7831         osabi when iterating over arches.  Update call to
7832         gdbarch_init_osabi.
7833         (rs6000_dump_tdep): Don't dump osabi.
7834         * ppc-linux-tdep.c: Include "osabi.h".
7835         * ppcnbsd-tdep.c: Include "osabi.h".
7836
7837         * sh-tdep.h: Don't include "osabi.h".
7838         (struct gdbarch_tdep): Remove osabi member.
7839         * sh-tdep.c: Include "osabi.h".
7840         (sh_gdbarch_init): Don't call gdbarch_lookup_osabi.  Don't
7841         iterate over arches.  Update call to gdbarch_init_osabi.
7842         (sh_dump_tdep): Don't dump osabi.
7843         * shnbsd-tdep.c: Include "osabi.h".
7844
7845         * sparc-tdep.c: Include "osabi.h".
7846         (sparc_gdbarch_init): Don't call gdbarch_lookup_osabi.  Don't
7847         iterate over arches.  Update call to gdbarch_init_osabi.
7848         (sparc_dump_tdep): Don't dump osabi.  Do dump the rest of the
7849         tdep structure.
7850
7851         * vax-tdep.h: Don't include "osabi.h".
7852         (struct gdbarch_tdep): Remove.
7853         * vax-tdep.c: Include "osabi.h".
7854         (vax_gdbarch_init): Don't call gdbarch_lookup_osabi.  Don't
7855         iterate over arches.  Don't allocate tdep.  Update call
7856         to gdbarch_init_osabi.
7857         (vax_dump_tdep): Remove.
7858         (_initialize_vax_tdep): Update call to gdbarch_register.
7859
7860 2003-01-04  Daniel Jacobowitz  <drow@mvista.com>
7861
7862         * breakpoint.c (insert_breakpoints): Skip disabled breakpoints
7863         entirely.
7864         (breakpoint_re_set_one): Don't fetch the value for a disabled
7865         watchpoint.
7866
7867 2003-01-04  Daniel Jacobowitz  <drow@mvista.com>
7868
7869         * buildsym.h (processing_hp_compilation): Remove obsolete variable.
7870         * gdbarch.sh Remove include of "value.h" in gdbarch.h.
7871         (COERCE_FLOAT_TO_DOUBLE): Remove.
7872         * gdbarch.c: Regenerate.
7873         * gdbarch.h: Regenerate.
7874         * Makefile.in: Remove value_h from gdbarch_h.
7875         * valops.c (coerce_float_to_double): New variable.
7876         (default_coerce_float_to_double): Remove.
7877         (standard_coerce_float_to_double): Remove.
7878         (value_arg_coerce): Use coerce_float_to_double.
7879         (_initialize_valops): Add "set coerce-float-to-double".
7880         * value.h (default_coerce_float_to_double): Remove prototype.
7881         (standard_coerce_float_to_double): Remove prototype.
7882
7883         * hpread.c (hpread_process_one_debug_symbol): Mark C++ functions as
7884         prototyped.
7885         * mdebugread.c (parse_symbol): Likewise.
7886         * stabsread.c (define_symbol): Mark all functions as prototyped.
7887
7888         * hppa-tdep.c (hppa_coerce_float_to_double): Remove.
7889         * alpha-tdep.c (alpha_gdbarch_init): Remove call to
7890         set_gdbarch_coerce_float_to_double.
7891         * arm-tdep.c (arm_gdbarch_init): Likewise.
7892         * frv-tdep.c (frv_gdbarch_init): Likewise.
7893         * h8300-tdep.c (h8300_gdbarch_init): Likewise (commented out).
7894         * i386-sol2-tdep.c (i386_sol2_init_abi): Likewise.
7895         * mips-tdep.c (mips_gdbarch_init): Likewise.
7896         (mips_coerce_float_to_double): Remove.
7897         * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
7898         (rs6000_coerce_float_to_double): Remove.
7899         * s390-tdep.c (s390_gdbarch_init): Likewise.
7900         * sh-tdep.c (sh_gdbarch_init): Likewise.
7901         (sh_coerce_float_to_double): Remove.
7902         * sparc-tdep.c (sparc_gdbarch_init): Likewise.
7903         (sparc_coerce_float_to_double): Remove.
7904         * v850-tdep.c (v850_gdbarch_init): Likewise.
7905         * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
7906         * config/m32r/tm-m32r.h (COERCE_FLOAT_TO_DOUBLE): Remove.
7907         * config/pa/tm-hppa.h: (COERCE_FLOAT_TO_DOUBLE): Remove.
7908         (hppa_coerce_float_to_double): Remove prototype.
7909         * config/sparc/tm-sparc.h (COERCE_FLOAT_TO_DOUBLE): Remove.
7910
7911 2003-01-04  Daniel Jacobowitz  <drow@mvista.com>
7912
7913         * regformats/reg-m68k.dat: Remove fpcode and fpflags.
7914
7915 2003-01-04  Daniel Jacobowitz  <drow@mvista.com>
7916
7917         Suggested by Stewart Brown <sb24@avaya.com>:
7918         * c-typeprint.c (c_type_print_varspec_prefix): Pass value of show
7919         in recursive calls.  Handle TYPE_CODE_TYPEDEF.
7920         (c_type_print_varspec_suffix): Likewise.
7921
7922 2003-01-04  Mark Kettenis  <kettenis@gnu.org>
7923
7924         * configure.in: Don't set and AC_SUBST SUBDIRS.
7925         * configure: Regenerated.
7926
7927         * configure.in: Remove code dealing with shared libraries.
7928         * Makefile.in: Remove HLDFLAGS and HLDENV.
7929         * configure: Regenerated.
7930
7931 2003-01-04  Andrew Cagney  <ac131313@redhat.com>
7932
7933         * frame.c (deprecated_frame_xmalloc): New function.
7934         (deprecated_set_frame_saved_regs_hack): New function.
7935         (deprecated_set_frame_extra_info_hack): New function.
7936         * frame.h (deprecated_frame_xmalloc): Declare.
7937         (deprecated_set_frame_saved_regs_hack): Declare.
7938         (deprecated_set_frame_extra_info_hack): Declare.
7939
7940 2003-01-04  Mark Kettenis  <kettenis@gnu.org>
7941
7942         * configure.in: Move code that provides the --enable-gdbtk option
7943         right after the code that handles the --enable-tui option, and
7944         polish it somewhat.
7945         * configure: Regenerated.
7946
7947         * configure.in: Call AC_GNU_SOURCE.  Check for pread64 using
7948         AC_CHECK_FUNCS and remove the old check for pread64.
7949         * acinclude.m4 (AC_GNU_SOURCE): New macro.
7950         * acconfig.h (_GNU_SOURCE): Add.
7951         (HAVE_PREAD64): Remove.
7952         * configure, aclocal.m4, config.in: Regenerated.
7953
7954 2003-01-03  Andrew Cagney  <ac131313@redhat.com>
7955
7956         * alpha-tdep.c: Use get_frame_saved_regs.
7957         * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
7958         * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
7959         * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Ditto.
7960         * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, v850-tdep.c: Ditto.
7961         * vax-tdep.c, xstormy16-tdep.c: Ditto.
7962
7963 2003-01-03  Mark Kettenis  <kettenis@gnu.org>
7964
7965         * configure.in: Remove all use of the SUBDIRS variable; add
7966         directories using the AC_CONFIG_SUBDIRS macro instead.  Polish
7967         code providing the --enable-multi-ice option, and move it right in
7968         front of the code that checks whether gdbserver is supported.
7969         Polish that too.
7970         * configure: Regenerated.
7971         * Makefile.in (SUBDIRS): Substitute @subdirs@ instead of
7972         @SUBDIRS@.
7973
7974 2003-01-03  Andrew Cagney  <cagney@redhat.com>
7975
7976         * alpha-tdep.c: Use deprecated_update_frame_base_hack.
7977         * avr-tdep.c, cris-tdep.c: Ditto.
7978         * mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
7979         * sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
7980         
7981 2003-01-03  Mark Kettenis  <kettenis@gnu.org>
7982
7983         * configure.in: Remove --enable-netrom option.
7984         * configure: Regenerated.
7985
7986 2003-01-03  Mark Kettenis  <kettenis@gnu.org>
7987
7988         * cli/cli-decode.h: Don't include "gdb_regex.h"; provide a forward
7989         declaration for `struct re_pattern_buffer' instead.
7990         * Makefile.in (cli_decode_h): Remove $(gdb_regex_h).
7991
7992 2003-01-03  J. Brobecker  <brobecker@gnat.com>
7993
7994         * mdebugread.c (parse_symbol): Count until the stEnd matching
7995         the structure name.
7996
7997 2003-01-02  Mark Kettenis  <kettenis@gnu.org>
7998
7999         * configure.in: Remove --with-cpu option.
8000         subscripts.  Remove evil changequotes here.
8001         * acconfig.h (TARGET_CPU_DEFAULT): Remove.
8002         * config.in, configure: Regenerated.
8003         
8004         * acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.
8005         * configure.in: Cleanup section that sources GDB and BFD configure
8006         subscripts.  Remove evil changequotes here.
8007         * config.in, configure: Regenerated.
8008
8009 2003-01-02  Andrew Cagney  <ac131313@redhat.com>
8010
8011         * arm-tdep.c: Use get_frame_pc and deprecated_update_frame_pc_hack
8012         frame accessor methods.
8013         * alpha-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
8014         * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
8015         * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c, mips-tdep.c: Ditto.
8016         * mn10200-tdep.c, mn10300-tdep.c, ns32k-tdep.c: Ditto.
8017         * s390-tdep.c, sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
8018         * vax-tdep.c, x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
8019         * z8k-tdep.c: Ditto.
8020         
8021 2003-01-02  Mark Kettenis  <kettenis@gnu.org>
8022
8023         * configure.in: Remove UI_OUT configuration code.
8024         * ada-lang.c: Update assuming UI_OUT is always true.
8025         * Makefile.in (UIOUT_CFLAGS): Remove.
8026         * configure: Regenerated.
8027         * TODO: Remove blurb about elimination of -DUI_OUT.
8028
8029         * configure.in: Move code that provides the --enable-gdbcli,
8030         --enable-gdbmi options right before the code that handles the
8031         --enable-tui option.  Polish a bit.
8032         * configure: Regenerated.
8033
8034         * configure.in: Rewrite check for GNU regex and the
8035         --without-included regex option, and move it into the "Checks for
8036         library functions" section.  This makes us use the system regex
8037         again by default on systems with version 2 of the GNU C library.
8038         This was apparently broken.
8039         * gdb_regex.h [!USE_INCLUDED_REGEX] (_REGEX_RE_COMP): Define.
8040         * acconfig.h (USE_INCLUDED_REGEX): Remove.
8041         * config.in, configure: Regenerated.
8042
8043         * configure.in: Move code that provides the --enable-tui option
8044         before the "Checks for libraries" section.  Polish the code
8045         somewhat and set need_curses to yes if we build the TUI.  Rewrite
8046         code that looks for a library providing termcap functionality to
8047         match more closely what's done in the Readline library, and move
8048         it into to the "Checks for libraries" section.
8049         * configure: Regenerated.
8050         * Makefile.in (TERMCAP): Remove variable.
8051         * config/i386/go32.mh (TERMCAP): Remove variable.
8052
8053 2003-01-02  Andrew Cagney  <ac131313@redhat.com>
8054
8055         * MAINTAINERS: Mention gdb_mbuild.sh.
8056         * gdb_mbuild.sh: Rewrite.
8057
8058 2003-01-02  Mark Kettenis  <kettenis@gnu.org>
8059
8060         * configure.in: Fix typo in last change.
8061         * config.in, configure: Regenerated.
8062
8063 2003-01-02  Andrew Cagney  <ac131313@redhat.com>
8064
8065         * valarith.c (value_binop): Delete obsolete code and comments.
8066         * configure.host: Ditto.
8067         * buildsym.h (make_blockvector): Ditto.
8068         * buildsym.c (make_blockvector): Ditto.
8069         * defs.h (enum language): Ditto.
8070         (chill_demangle): Ditto.
8071         * elfread.c (elf_symtab_read): Ditto.
8072         * dwarfread.c (CHILL_PRODUCER): Ditto.
8073         (set_cu_language): Ditto.
8074         (handle_producer): Ditto.
8075         * expprint.c (print_subexp): Ditto.
8076         * gdbtypes.c (chill_varying_type): Ditto.
8077         * gdbtypes.h (builtin_type_chill_bool): Ditto.
8078         (builtin_type_chill_char, builtin_type_chill_long): Ditto.
8079         (builtin_type_chill_ulong, builtin_type_chill_real): Ditto.
8080         (chill_varying_type): Ditto.
8081         * language.h (_LANG_chill): Ditto.
8082         * language.c (binop_result_type, integral_type): Ditto.
8083         (character_type, string_type, structured_type): Ditto.
8084         (lang_bool_type, binop_type_check): Ditto.
8085         * stabsread.h (os9k_stabs): Ditto.
8086         * stabsread.c (os9k_type_vector, dbx_lookup_type): Ditto.
8087         (define_symbol, read_type, read_struct_fields): Ditto.
8088         (read_array_type, read_enum_type, read_huge_number): Ditto.
8089         (read_range_type, start_stabs): Ditto.
8090         * symfile.c (init_filename_language_table): Ditto.
8091         (add_psymbol_with_dem_name_to_list): Ditto.
8092         * symtab.c (symbol_init_language_specific): Ditto.
8093         (symbol_init_demangled_name, symbol_demangled_name): Ditto.
8094         * symtab.h (struct general_symbol_info): Ditto.
8095         (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
8096         * typeprint.c (typedef_print): Ditto.
8097         * utils.c (fprintf_symbol_filtered): Ditto.
8098         * valops.c (value_cast, search_struct_field, value_slice): Delete
8099         obsolete code.
8100         (varying_to_slice): Delete function.
8101         * value.h (COERCE_VARYING_ARRAY): Delete obsolete macro contents.
8102         (varying_to_slice): Delete declaration.
8103         * MAINTAINERS: Update.
8104
8105 2003-01-02  Mark Kettenis  <kettenis@gnu.org>
8106
8107         * configure.in: Reorganize "Checks for library functions section"
8108         a bit.  Remove check for `btowc' and `isascii' functions.
8109         * configure: Regenerated.
8110
8111         * acconfig.h (_MSE_INT_H): Remove.
8112         * configure.in: Create "Checks for header files" section, and move
8113         appropriate tests there.  Don't check for objlist.h, wchar.h,
8114         wctype.h and asm/debugreg.h.  Rewrite Solaris 2.[78] <curses.h>
8115         misdetection fix.  Also add "Checks for types", "Checks for
8116         compiler characteristics" and "Checks for library functions"
8117         sections.
8118         * config.in, configure: Regenerated.
8119
8120         * configure.in: Create "Checks for programs" section, and move
8121         appropriate tests there.
8122
8123 2003-01-01  Mark Kettenis  <kettenis@gnu.org>
8124
8125         * configure.in: Create "Checks for libraries" section, and move
8126         appropriate tests there.  Cleanup check for wctype in libw.  Use
8127         AC_SEARCH_LIBS to see whether we need libsocket.
8128         * configure: Regenerated.
8129
8130 For older changes see ChangeLog-2002
8131 \f
8132 Local Variables:
8133 mode: change-log
8134 left-margin: 8
8135 fill-column: 74
8136 version-control: never
8137 End: