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