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