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