2003-05-03 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2003-05-03 Andrew Cagney <cagney@redhat.com>
2
3 * disasm.h (print_insn): Declare.
4 * disasm.c (init_gdb_disassemble_info): New function.
5 (gdb_disassembly): Call init_gdb_disassemble_info.
6 (gdb_print_insn): New function.
7 * v850-tdep.c (v850_scan_prologue): Call gdb_print_insn, instead
8 of TARGET_PRINT_INSN. Send debug info to "gdb_stdlog".
9 * mcore-tdep.c: Include "disasm.h"
10 (mcore_dump_insn): Call gdb_print_insn, instead of TARGET_PRINT_INSN.
11 * d10v-tdep.c: Include "disasm.h".
12 (display_trace): Call gdb_print_insn, instead of print_insn.
13 (print_insn): Delete function.
14 * printcmd.c: Include "disasm.h".
15 (print_insn): Delete function.
16 (print_formatted): Call gdb_print_insn, instead of print_insn.
17 * Makefile.in (printcmd.o): Update dependencies.
18 (mcore-tdep.o, d10v-tdep.o): Ditto.
19
20 2003-05-02 Andrew Cagney <cagney@redhat.com>
21
22 * std-regs.c (value_of_builtin_frame_pc_reg): Delete #ifdef
23 PC_REGNUM, re-indent.
24 * stack.c (frame_info): Use "pc" for the name of get_frame_pc when
25 PC_REGNUM isn't set.
26
27 * gdbarch.sh (REGISTER_SIZE, REGISTER_BYTES): Make optional.
28 * gdbarch.h, gdbarch.c: Re-generate.
29 * d10v-tdep.c (d10v_gdbarch_init): Do not set register_size,
30 register_virtual_size, pc_regnum, or register_bytes.
31 (D10V_PC_REGNUM): Rename _PC_REGNUM.
32 (d10v_register_type): Use D10V_PC_REGNUM.
33 (d10v_print_registers_info, d10v_read_pc): Ditto.
34 (d10v_write_pc, d10v_eva_prepare_to_trace): Ditto.
35 (d10v_unwind_pc, d10v_frame_prev_register): Ditto.
36
37 2003-05-02 David Carlton <carlton@bactrian.org>
38
39 * objfiles.c (allocate_objfile): For anonymous objfiles, allocate
40 the name with mstrsave.
41
42 2003-05-02 Elena Zannoni <ezannoni@redhat.com>
43
44 * charset.c (GDB_DEFAULT_TARGET_CHARSET,
45 GDB_DEFAULT_HOST_CHARSET): Move to earlier in the file.
46 (host_charset_name, target_charset_name): New vars for use by
47 set/show commands.
48 (host_charset_enum, target_charset_enum): New enums for set/show
49 commands.
50 (set_charset_sfunc, set_host_charset_sfunc,
51 set_target_charset_sfunc): New functions.
52 (set_host_charset, set_target_charset): Make static.
53 (list_charsets, set_host_charset_command,
54 set_target_charset_command): Delete functions.
55 (show_charset_command): Rewrite as....
56 (show_charset): Hook this up with the set/show command mechanism.
57 (_initialize_charset): Change names of charsets to match the
58 set/show enums. Use host_charset_name and target_charset_name.
59 Use set/show mechanism for charset, host-charset, target-charset
60 commands. Do not make 'show host-charset' and 'show
61 target-charset' be aliases of 'show charset'.
62
63 * charset.h (set_host_charset, set_target_charset): Don't export,
64 they are not used outside the file.
65
66 2003-05-01 Andrew Cagney <cagney@redhat.com>
67
68 * disasm.c (gdb_disassemble_from_exec): Delete global variable.
69 (gdb_disassembly): Make "di" non static, always initialize and
70 cleanup. Always use dis_asm_read_memory.
71 (gdb_dis_asm_read_memory): Delete function.
72
73 2003-05-01 Andrew Cagney <cagney@redhat.com>
74
75 * d10v-tdep.c (d10v_frame_align): Replace d10v_stack_align.
76 (d10v_gdbarch_init): Set frame_align instead of stack_align.
77
78 2003-04-30 Andrew Cagney <cagney@redhat.com>
79
80 * gdbarch.sh (deprecated_tm_print_insn_info): Rename
81 "tm_print_insn_info".
82 (TARGET_PRINT_INSN_INFO): Delete macro.
83 (dis_asm_read_memory): Delete function declaration.
84 (dis_asm_memory_error, dis_asm_print_address): Ditto.
85 (tm_print_insn_info): Delete variable definition.
86 (_initialize_gdbarch): Do not initialize "tm_print_insn_info".
87 * gdbarch.h, gdbarch.c: Re-generate.
88 * d10v-tdep.c (display_trace): Replace "tm_print_insn_info" with
89 "deprecated_tm_print_insn_info".
90 * mcore-tdep.c (mcore_dump_insn): Ditto.
91 * mips-tdep.c (mips_gdbarch_init): Ditto.
92 * sparc-tdep.c (_initialize_sparc_tdep): Ditto.
93 * v850-tdep.c (v850_scan_prologue, v850_gdbarch_init): Ditto.
94 * ia64-tdep.c (_initialize_ia64_tdep): Ditto.
95 * printcmd.c (print_insn): Use "deprecated_tm_print_insn_info"
96 instead of TARGET_PRINT_INSN_INFO, add comment.
97 * s390-tdep.c (s390_get_frame_info): Instead of
98 "dis_asm_read_memory", use "deprecated_tm_print_insn_info".
99 (s390_check_function_end, s390_is_sigreturn): Ditto.
100 * corefile.c (dis_asm_read_memory): Move to "disasm.c".
101 (dis_asm_memory_error, dis_asm_print_address): Ditto.
102 * disasm.c: Include "gdbcore.h".
103 (_initialize_disasm): New function, initialize
104 "deprecated_tm_print_insn_info".
105 (deprecated_tm_print_insn_info): New variable.
106 (dis_asm_read_memory): Moved from "corefile.c", made static.
107 (dis_asm_print_address, dis_asm_memory_error): Ditto.
108 * Makefile.in (disasm.o): Update dependencies.
109
110 2003-04-30 Andrew Cagney <cagney@redhat.com>
111
112 * sparc-tdep.c (SPARC_HAS_FPU): When multi-arch, define as 1.
113
114 2003-04-29 Adam Fedor <fedor@gnu.org>
115
116 * eval.c (evaluate_subexp_standard): Handle ObjC ops.
117 * infcall.c (find_function_addr): Make non-static.
118 * infcall.h (find_function_addr): Declare.
119 * Makefile.in (eval.o): Update dependencies.
120
121 2003-04-28 Adam Fedor <fedor@gnu.org>
122
123 * symtab.c (symbol_find_demangled_name): Check for and demangle
124 ObjC symbols.
125 (symbol_init_demangled_name): Init for language_objc as well.
126
127 2003-04-28 Andrew Cagney <cagney@redhat.com>
128
129 * gdbarch.sh (DEPRECATED_TARGET_READ_FP): Replace TARGET_READ_FP.
130 (DEPRECATED_FP_REGNUM): Replace FP_REGNUM.
131 * gdbarch.h, gdbarch.c: Re-generate.
132 * infcall.c (call_function_by_hand): Use DEPRECATED_FP_REGNUM,
133 DEPRECATED_TARGET_READ_FP, or "sp" to create the dummy frame ID.
134 * inferior.h (deprecated_read_fp): Rename read_fp.
135 (generic_target_read_fp): Delete declaration.
136 * regcache.c (generic_target_read_fp): Delete function.
137 (deprecated_read_fp): Replace read_fp, use
138 DEPRECATED_TARGET_READ_FP or DEPRECATED_FP_REGNUM.
139 * d10v-tdep.c (d10v_read_fp): Delete function.
140 (d10v_gdbarch_init): Do not set deprecated_read_fp.
141
142 * sparc-tdep.c (sparc_gdbarch_init): Do not set
143 deprecated_target_read_fp to generic_target_read_fp.
144 * sh-tdep.c (sh_gdbarch_init): Ditto.
145 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
146 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
147 * frv-tdep.c (frv_gdbarch_init): Ditto.
148
149 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set
150 deprecated_fp_regnum.
151 * x86-64-tdep.c (x86_64_init_abi): Ditto.
152 * vax-tdep.c (vax_gdbarch_init): Ditto.
153 * v850-tdep.c (v850_gdbarch_init): Ditto.
154 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
155 * sh-tdep.c (sh_gdbarch_init): Ditto.
156 * s390-tdep.c (s390_gdbarch_init): Ditto.
157 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
158 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
159 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
160 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
161 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
162 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
163 * i386-tdep.c (i386_gdbarch_init): Ditto.
164 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
165 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
166 * frv-tdep.c (frv_gdbarch_init): Ditto.
167 * cris-tdep.c (cris_gdbarch_init): Ditto.
168 * avr-tdep.c (avr_gdbarch_init): Ditto.
169 * arm-tdep.c (arm_gdbarch_init): Ditto.
170 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
171
172 * x86-64-tdep.c (x86_64_init_abi): Set deprecated_target_read_fp.
173 * v850-tdep.c (v850_gdbarch_init): Ditto.
174 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
175 * sh-tdep.c (sh_gdbarch_init): Ditto.
176 * s390-tdep.c (s390_gdbarch_init): Ditto.
177 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
178 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
179 * mips-tdep.c (mips_gdbarch_init): Ditto.
180 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
181 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
182 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
183 * frv-tdep.c (frv_gdbarch_init): Ditto.
184 * avr-tdep.c (avr_gdbarch_init): Ditto.
185 * arm-tdep.c (arm_gdbarch_init): Ditto.
186
187 * vax-tdep.c (vax_frame_init_saved_regs): Replace FP_REGNUM with
188 DEPRECATED_FP_REGNUM.
189 (vax_push_dummy_frame, vax_pop_frame): Ditto.
190 * std-regs.c (value_of_builtin_frame_fp_reg): Ditto.
191 * sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
192 (sparc_push_dummy_frame, sparc64_read_fp): Ditto.
193 (sparc32_register_virtual_type): Ditto.
194 * sh-tdep.c (sh64_frame_chain): Ditto.
195 (sh64_get_saved_register, sh64_pop_frame): Ditto.
196 (sh_nofp_frame_init_saved_regs): Ditto.
197 (sh64_nofp_frame_init_saved_regs): Ditto.
198 (sh_fp_frame_init_saved_regs): Ditto.
199 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
200 * remote-e7000.c (fetch_regs_from_dump): Ditto.
201 * procfs.c (procfs_fetch_registers): Ditto.
202 (procfs_store_registers): Ditto.
203 * ns32knbsd-nat.c (fetch_inferior_registers): Ditto.
204 (store_inferior_registers, fetch_core_registers): Ditto.
205 (fetch_kcore_registers, clear_regs): Ditto.
206 * ns32k-tdep.c (ns32k_frame_init_saved_regs): Ditto.
207 (ns32k_push_dummy_frame, ns32k_pop_frame): Ditto.
208 * nlm/i386.h (DEPRECATED_FP_REGNUM): Ditto.
209 * nlm/i386.c (do_status): Ditto.
210 * mipsv4-nat.c (supply_gregset): Ditto.
211 * mips-tdep.c: Ditto for comments.
212 * mips-nat.c (fetch_inferior_registers): Ditto.
213 (store_inferior_registers, fetch_core_registers): Ditto.
214 * m68k-tdep.c (m68k_push_dummy_frame): Ditto.
215 (m68k_pop_frame, m68k_frame_init_saved_regs): Ditto.
216 * i386-tdep.c (i386_frame_init_saved_regs): Ditto.
217 (i386_do_pop_frame, i386_register_type): Ditto.
218 * hppa-tdep.c (hppa_frame_chain): Ditto.
219 (hppa_push_dummy_frame, find_dummy_frame_regs): Ditto.
220 (hppa_pop_frame, hppa_read_fp): Ditto.
221 (skip_prologue_hard_way, hppa_frame_find_saved_regs): Ditto.
222 * cris-tdep.c (cris_examine, cris_pop_frame): Ditto.
223 * config/vax/nm-vax.h (REGISTER_U_ADDR): Ditto.
224 * config/sparc/tm-sparc.h (DEPRECATED_FP_REGNUM): Ditto.
225 * config/sparc/tm-sp64.h (DEPRECATED_FP_REGNUM): Ditto.
226 * config/s390/tm-s390.h (DEPRECATED_FP_REGNUM): Ditto.
227 * config/pa/tm-hppa64.h (DEPRECATED_FP_REGNUM): Ditto.
228 * config/ia64/tm-ia64.h (DEPRECATED_FP_REGNUM): Ditto.
229 * blockframe.c: Ditto for comments.
230 * arch-utils.h: Ditto for comments.
231 * arch-utils.c (legacy_virtual_frame_pointer): Ditto.
232 * alphanbsd-tdep.c (fetch_core_registers): Ditto.
233 * alphabsd-nat.c (fetch_inferior_registers): Ditto.
234 * alpha-tdep.h: Ditto for comments.
235 * alpha-tdep.c (alpha_cannot_fetch_register): Ditto.
236 (alpha_cannot_store_register): Ditto.
237 (alpha_push_dummy_frame): Ditto.
238 * alpha-nat.c (supply_gregset): Ditto.
239
240 * config/sparc/tm-sp64.h (DEPRECATED_TARGET_READ_FP): Update.
241 * config/pa/tm-hppa64.h (DEPRECATED_TARGET_READ_FP): Update.
242 * config/sparc/tm-sparc.h: Update comment.
243
244 * hppa-tdep.c (hppa_init_extra_frame_info): Use
245 deprecated_read_fp instead of TARGET_READ_FP.
246 (hppa_init_extra_frame_info, hppa_frame_chain): Ditto.
247 (hppa_push_dummy_frame, hppa_read_fp): Ditto.
248 * sparc-tdep.c (sparc_init_extra_frame_info): Use
249 deprecated_read_fp instead of read_fp.
250 * s390-tdep.c (s390_push_arguments): Ditto.
251 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
252 * frame.h: Ditto in comments.
253 * frame.c (legacy_get_prev_frame): Ditto.
254 * dummy-frame.c (dummy_frame_this_id): Ditto.
255 * arm-tdep.c (arm_init_extra_frame_info): Ditto.
256
257 2003-04-28 Andrew Cagney <cagney@redhat.com>
258
259 * gdbarch.sh (deprecated_tm_print_insn): Rename tm_print_insn.
260 * gdbarch.h, gdbarch.c: Re-generate.
261 * xstormy16-tdep.c (_initialize_xstormy16_tdep): Update.
262 * vax-tdep.c (_initialize_vax_tdep): Update.
263 * v850-tdep.c (_initialize_v850_tdep): Update.
264 * sparc-tdep.c (_initialize_sparc_tdep): Update.
265 * s390-tdep.c (_initialize_s390_tdep): Update.
266 * ns32k-tdep.c (_initialize_ns32k_tdep): Update.
267 * mn10300-tdep.c (_initialize_mn10300_tdep): Update.
268 * mips-tdep.c (_initialize_mips_tdep): Update.
269 * mcore-tdep.c (_initialize_mcore_tdep): Update.
270 * m68k-tdep.c (_initialize_m68k_tdep): Update.
271 * ia64-tdep.c (_initialize_ia64_tdep): Update.
272 * hppa-tdep.c (_initialize_hppa_tdep): Update.
273 * h8300-tdep.c (_initialize_h8300_tdep): Update.
274 * frv-tdep.c (_initialize_frv_tdep): Update.
275 * cris-tdep.c (cris_delayed_get_disassembler): Update.
276 (_initialize_cris_tdep): Update.
277 * arch-utils.c (legacy_print_insn): Update.
278 * alpha-tdep.c (_initialize_alpha_tdep): Update.
279
280 2003-04-26 Adam Fedor <fedor@gnu.org>
281
282 * linespec.c (decode_objc): New function to decode ObjC calls
283 (decode_line_1): Check for ObjC calls (using decode_objc)
284 * Makefile (linespec.o): Update dependencies.
285
286 2003-04-26 Daniel Jacobowitz <drow@mvista.com>
287
288 * breakpoint.h (struct breakpoint_ops): New.
289 (struct breakpoint): Add ops member.
290
291 * breakpoint.c (print_bp_stop_message, print_one_breakpoint)
292 (mention): Use new breakpoint ops member.
293 (set_raw_breakpoint): Initialize ops field to NULL.
294 (print_exception_catchpoint, print_one_exception_catchpoint)
295 (print_mention_exception_catchpoint, handle_gnu_v3_exceptions): New.
296 (gnu_v3_exception_catchpoint_ops): New.
297 (catch_exception_command_1): Call handle_gnu_v3_exceptions.
298
299 2003-04-25 Adam Fedor <fedor@gnu.org>
300
301 * Makefile.in (COMMON_OBS): Add objc-lang.o
302
303 2003-04-25 Andrew Cagney <cagney@redhat.com>
304
305 * d10v-tdep.c (print_insn): Delete function.
306 (display_trace): Use TARGET_PRINT_INSN.
307 (_initialize_d10v_tdep): Do not set tm_print_insn.
308 (d10v_gdbarch_init): Set print_insn.
309
310 2003-04-25 Andrew Cagney <cagney@redhat.com>
311
312 * d10v-tdep.c (d10v_extract_return_value): Delete call to printf.
313 (_initialize_d10v_tdep): Use add_setshow_boolean_cmd.
314 (d10v_frame_unwind_cache): Use FRAME_OBSTACK_CALLOC.
315 (NR_DMAP_REGS, A0_REGNUM): Delete, replaced by ...
316 (nr_dmap_regs, a0_regnum): ... new functions.
317 (d10v_print_registers_info): Use a0_regnum, use register_size.
318 (d10v_register_byte): Delete function.
319 (d10v_register_raw_size): Delete function.
320 (d10v_register_type): Use a0_regnum.
321 (d10v_print_registers_info): Use a0_regnum.
322 (D10V_SP_REGNUM): Rename _SP_REGNUM, replace it and SP_REGNUM.
323 (d10v_gdbarch_init): Do not set register_byte or
324 register_raw_size, use D10V_SP_REGNUM to set sp_regnum.
325 (d10v_pointer_to_address): Use extract_unsigned_integer instead of
326 extract_address.
327 (trace_command): Use XCALLOC.
328 (print_insn): Delete reference to tm_print_insn.
329 (saved_regs_unwinder): Use store_unsigned_integer instead of
330 store_address.
331 * frame.h (FRAME_OBSTACK_CALLOC): Define
332
333 2003-04-25 David Carlton <carlton@bactrian.org>
334
335 * config/djgpp/fnchange.lst: Add testsuite/gdb.c++/maint.exp.
336
337 2003-04-24 Adam Fedor <fedor@gnu.org>
338
339 * objc-lang.c: Include "valprint.h"
340 * Makefile.in (objc-lang.o): Update dependencies.
341
342 2003-04-24 Adam Fedor <fedor@gnu.org>
343
344 * objc-lang.c (FETCH_ARGUMENT, CONVERT_FUNCPTR): Remove
345 architecture dependant compilation and mark as unimplemented
346 (until they get put in the gdbarch vector).
347
348 2003-04-23 David Carlton <carlton@bactrian.org>
349
350 * cp-support.c (cp_find_first_component): Accept 'operator' in
351 more locations.
352
353 2003-04-23 Andrew Cagney <cagney@redhat.com>
354
355 * infcall.c (call_function_by_hand): Eliminate redundant
356 indentation. Move "saved_async" and "old_cleanups" to where they
357 are needed.
358
359 2003-04-23 Andrew Cagney <cagney@redhat.com>
360
361 * infcall.c (call_function_by_hand): Eliminate the variables "rc"
362 and "buffer". Move the "name" code to where it is needed.
363
364 2003-04-23 Andrew Cagney <cagney@redhat.com>
365
366 * infcall.c (call_function_by_hand): Move variables "start_sp",
367 "dummy", "sizeof_dummy1" and "dummy1" and corresponding dummy call
368 code to ON_STACK switch branch.
369
370 2003-04-23 Andrew Cagney <cagney@redhat.com>
371
372 * infcall.c (call_function_by_hand): Make declaration of "i",
373 "sal", "bpt" and "old_sp" more local to their use. Delete #if
374 lint.
375
376 2003-04-23 Andrew Cagney <cagney@redhat.com>
377
378 * infcall.c (call_function_by_hand): Delete variable
379 "n_method_args". Localize "param_type"'s declaration to the loop
380 that it is used. Reinstate code assigning to said variable -
381 deleted on 2002-06-14. Rationalize calls to value_args_coerce.
382 Rationalize code using "param_type".
383
384 2003-04-22 Andrew Cagney <cagney@redhat.com>
385
386 * infcall.c (call_function_by_hand): Use new variable "bp_addr" to
387 compute the breakpoint address. Only call FIX_CALL_DUMMY when
388 ON_STACK. Eliminate the variable "addr". Do not pass "real_pc"
389 to DEPRECATED_PUSH_RETURN_ADDRESS.
390
391 2003-04-22 Kevin Buettner <kevinb@redhat.com>
392
393 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Invoke DWARF2_REG_TO_REGNUM
394 on the DWARF2 register number prior to fetching a register.
395
396 2003-04-22 J. Brobecker <brobecker@gnat.com>
397
398 * config/pa/tm-hppa.h (SOFT_FLOAT): Delete this macro.
399 Update all the tests using SOFT_FLOAT considering the fact that
400 this macro was always set to 0.
401 * config/pa/tm-hppa64.h: Update all the tests using SOFT_FLOAT
402 considering the fact that this macro was always set to 0.
403 * hppa-tdep.h (hppa_store_return_value): Likewise.
404 (hppa_extract_return_value): Likewise.
405
406 2003-04-22 J. Brobecker <brobecker@gnat.com>
407
408 * config/pa/tm-hppa.h: Remove obsolete code, was used by
409 the hppa-pro target only.
410
411 2003-04-21 J. Brobecker <brobecker@gnat.com>
412
413 Ongoing multi-arch conversion effort for HP/UX:
414 * config/pa/tm-hppa.h: Move all macro that are no longer
415 defined now that GDB_MULTI_ARCH is now set to 1 from here...
416 * config/pa/tm-hppa64.h: ... to here (hppa64 is not multiarch'ed yet).
417
418 2003-04-21 J. Brobecker <brobecker@gnat.com>
419
420 * config/pa/tm-hppa.h: Obsolete a section that was only used
421 for hppa-pro.
422
423 2003-04-21 J. Brobecker <brobecker@gnat.com>
424
425 Ongoing multi-arch conversion for HP/UX.
426 * config/pa/tm-hppa.h (GDB_MULTI_ARCH): Set to 1. Do not define
427 if already defined (allows hppa64 to stay non-multiarched for now).
428 * config/pa/tm-hppa64.h (GDB_MULTI_ARCH): Define.
429
430 2003-04-21 Andrew Cagney <cagney@redhat.com>
431
432 * frame.c (frame_id_eq): Fail when the code_addr's do not match.
433
434 2003-04-21 Andrew Cagney <cagney@redhat.com>
435
436 * i386-tdep.c (i386_gdbarch_init): Replace "mmx_num_regs" with
437 "i386_num_mmx_regs".
438
439 2003-04-21 Andrew Cagney <cagney@redhat.com>
440
441 * infcall.c: New file.
442 * infcall.h: New file.
443 * valarith.c: Include "infcall.h".
444 * scm-lang.c, objc-lang.cm, hppa-tdep.c, gcore.c: Ditto.
445 * eval.c, ada-valprint.c, ada-lang.c: Ditto.
446 * Makefile.in (valarith.o, scm-lang.o): Update dependencies.
447 (objc-lang.o, hppa-tdep.o, gcore.o): Update dependencies.
448 (eval.o, ada-valprint.o, ada-lang.o): Update dependencies.
449 (SFILES): Add "infcall.c"
450 (COMMON_OBS): Add "infcall.o".
451 (infcall.o): Specify dependencies.
452 * value.h (call_function_by_hand): Delete declaration.
453 * inferior.h (run_stack_dummy): Delete declaration.
454 * infcmd.c (breakpoint_auto_delete_contents): Move to "infcall.c".
455 (run_stack_dummy): Move to "infcall.c", merged into
456 call_function_by_hand.
457 * valops.c (call_function_by_hand): Moved to "infcall.c".
458 (find_function_addr, value_arg_coerce): Ditto.
459 (unwindonsignal_p, coerce_float_to_double): Ditto.
460 (_initialize_valops): Move "set/show coerce-float-to-double", and
461 "set/show unwindonsignal" commands to "infcall.c".
462 * v850-tdep.c, target.h: Update comments.
463 * sparc-tdep.c (sparc_fix_call_dummy): Update comments.
464 * sh-tdep.c (sh_init_extra_frame_info): Update comments.
465 (sh64_init_extra_frame_info): Update comments.
466 * mn10300-tdep.c: Update comments.
467 * mcore-tdep.c (mcore_init_extra_frame_info): Update comments.
468 * config/sparc/tm-sparc.h: Update comments.
469 * breakpoint.h: Update comments.
470 * avr-tdep.c (avr_init_extra_frame_info): Update comments.
471 * arm-tdep.c: Update comment.
472
473 2003-04-19 Mark Kettenis <kettenis@gnu.org>
474
475 * i386-tdep.c (i386_num_register_names): New variable.
476 (i386_num_mmx_regs): Renamed from mmx_num_regs.
477 (MM0_REGNUM): Remove redundant parentheses in define.
478 (i386_mmx_regnum_p): Use i386_mmx_regnum instead of mmx_num_regs.
479 (i386_fp_regnum_p, i386_fpc_regnum_p, i386_sse_regnum_p,
480 i386_mxcsr_regnum_p): Remove redundant parentheses.
481 (i386_register_name): Use i386_num_register_names.
482
483 * i386-tdep.c (i386_extract_return_value,
484 i386_store_return_value): Correct check for availability of
485 floating-point registers.
486
487 * i386-tdep.c (i386_frame_num_args): Remove function.
488 (i386_gdbarch_init): Set frame_num_args to frame_num_args_unknown.
489
490 * i386-tdep.c (i386_mmx_regnum_to_fp_regnum): Renamed from
491 mmx_regnum_to_fp_regnum. Adjust all callers.
492
493 * i386-tdep.c (i386_get_longjmp_target): Use
494 TYPE_LENGTH(builtin_type_void_func_ptr) instead of TARGET_PTR_BIT
495 and TARGET_CHAR_BIT. Use extract_typed_address instead of
496 extract_address.
497
498 2003-04-19 Mark Kettenis <kettenis@gnu.org>
499
500 * core-regset.c: Update comments to reflect reality. Re-order
501 includes.
502 (fetch_core_registers): Use switch instead of if. Remove
503 redundant prototype.
504
505 2003-04-18 Jim Blandy <jimb@redhat.com>
506
507 * s390-tdep.c (s390_frame_align): New function.
508 (s390_gdbarch_init): Register it with the gdbarch object.
509
510 2003-04-17 Richard Henderson <rth@redhat.com>
511
512 * remote.c (minitelnet): Don't redeclare escape_count, echo_check.
513
514 2003-04-17 Michael Snyder <msnyder@redhat.com>
515 Karen Bennet <bennet@redhat.com>
516
517 Committed by Elena Zannoni <ezannoni@redhat.com>
518 * gdb_gcore.sh: New script to create a core dump of a process.
519
520 2003-04-17 Elena Zannoni <ezannoni@redhat.com>
521
522 * values.c (value_being_returned): Don't fetch the return
523 value if the return type is void.
524
525 2003-04-17 Jeff Johnston <jjohnstn@redhat.com>
526
527 * thread-db.c: Reindented.
528
529 2003-04-17 Jeff Johnston <jjohnstn@redhat.com>
530
531 * gdb_indent.sh: Recognize td_thrhandle_t, td_event_msg_t,
532 td_thr_events_t, td_notify_t, td_thr_iter_f, and td_thrinfo_t
533 as types.
534
535 2003-04-16 Kevin Buettner <kevinb@redhat.com>
536
537 * rs6000-tdep.c (rs6000_gdbarch_init): For the SysV ABI, set
538 the size of ``long double'' to 16, instead of 8.
539
540 2003-04-16 Mark Kettenis <kettenis@gnu.org>
541
542 * i386-linux-nat.c: Add some whitespace to make things more
543 readable.
544 (fetch_register, store_register, fetch_inferior_registers,
545 store_inferior_registers): Get rid of assignment in if-statement.
546 (store_register): Fix typo in error message.
547
548 2003-04-16 Andrew Cagney <cagney@redhat.com>
549
550 * utils.c (xmmalloc): Always allocate something, matches
551 libiberty/xmalloc's semantics.
552 (xmrealloc, xmcalloc): Ditto.
553
554 2003-04-16 Andrew Cagney <cagney@redhat.com>
555
556 * frame.c (get_prev_frame): Do not initialize "unwind" or "type",
557 update comments.
558 (get_frame_type): Initialize unwind and type when needed.
559 (get_frame_id, frame_register_unwind): Ditto.
560
561 2003-04-16 Andrew Cagney <cagney@redhat.com>
562
563 * NEWS: Mention that sparclet-*-* and sparclite-*-* have been made
564 obsolete.
565 * sparc-tdep.c: Obsolete SPARCLET and SPARCLITE code.
566 * sparcl-stub.c: Obsolete file.
567 * config/sparc/tm-sparclet.h: Obsolete file.
568 * sparclet-stub.c: Obsolete file.
569 * sparclet-rom.c: Obsolete file.
570 * sparcl-tdep.c: Obsolete file.
571 * config/sparc/tm-sparclite.h: Obsolete file.
572 * config/sparc/sparclite.mt: Obsolete file.
573 * config/sparc/sparclet.mt: Obsolete file.
574 * configure.tgt: Make sparclet-*-*, sparclite-*-*, and
575 sparc86x-*-* obsolete.
576
577 2003-04-15 David Carlton <carlton@math.stanford.edu>
578
579 * Makefile.in (SFILES): Add cp-namespace.c.
580 (COMMON_OBS): Add cp-namespace.o.
581 (block.o): Depend on gdb_obstack_h and cp_support_h.
582 (buildsym.o): Depend on cp_support_h.
583 (cp-namespace.o): New.
584 (cp-support.o): Depend on gdb_string_h, demangle_h, gdb_assert_h,
585 gdb_obstack_h, symtab_h, symfile_h, and gdbcmd_h.
586 (dwarf2read.o): Depend on cp_support_h.
587 * jv-lang.c (get_java_class_symtab): Set BLOCK_NAMESPACE.
588 * dwarf2read.c (process_die): Set processing_has_namespace_info,
589 processing_current_namespace.
590 (read_namespace): Update processing_current_namespace; check for
591 anonymous namespaces.
592 (dwarf2_name): New function.
593 (dwarf2_extension): Ditto.
594 * cp-support.h: Update copyright, contributors.
595 Add inclusion guards.
596 Add opaque declaration for structs obstack, block, symbol.
597 (struct using_direct): New struct.
598 Add declarations for cp_find_first_component,
599 cp_entire_prefix_len, processing_has_namespace_info,
600 processing_current_namespace, cp_is_anonymous,
601 cp_add_using_directive, cp_initialize_namespace,
602 cp_finalize_namespace, cp_set_block_scope,
603 cp_scan_for_anonymous_namespaces.
604 * cp-namespace.c: New file.
605 * cp-support.c: Update copyright.
606 Include ctype.h, gdb_assert.h, gdbcmd.h.
607 New variable maint_cplus_cmd_list.
608 (cp_find_first_component): New function.
609 (cp_entire_prefix_len, maint_cplus_command)
610 (first_component_command, _initialize_cp_support): Ditto.
611 * buildsym.c: Include cp-support.h.
612 New variable using_list.
613 (add_symbol_to_list): Check for anonymous namespaces.
614 (finish_block): Set block's scope.
615 (start_symtab): Initialize C++ namespace support.
616 (end_symtab): Finalize C++ namespace support.
617 * block.h: Add opaque declarations for structs
618 block_namespace_info, using_direct, and obstack.
619 Add declarations for block_set_scope and block_set_using.
620 (struct block): Add 'language_specific' member.
621 (BLOCK_NAMESPACE): New macro.
622 * block.c: Include gdb_obstack.h and cp-support.h.
623 (struct block_namespace_info): New struct.
624 (block_set_scope): New function.
625 (block_set_using, block_initialize_namespace): Ditto.
626
627 2003-04-14 Kevin Buettner <kevinb@redhat.com>
628
629 * solib-svr4.c (svr4_have_link_map_offsets): New function.
630 (locate_base): Return early if there aren't any link map offsets.
631 (svr4_solib_create_inferior_hook): Warn if shared library support
632 is unavailable.
633
634 2003-04-14 David Carlton <carlton@math.stanford.edu>
635
636 * symtab.c (symbol_set_names): Add prefix when storing Java names
637 in hash table. Fix for PR java/1039.
638
639 2003-04-14 David Carlton <carlton@math.stanford.edu>
640
641 * symtab.c (symbol_set_names): Rename 'name' arg to
642 'linkage_name', and 'tmpname' variable to 'linkage_name_copy'.
643 * symtab.h: Change 'name' argument in declaration of
644 symbol_set_names to 'linkage_name'.
645 (SYMBOL_SET_NAMES): Change 'name' argument to 'linkage_name'.
646
647 2003-04-14 Andrew Cagney <cagney@redhat.com>
648
649 * mips-tdep.c (mips_read_sp): Do not apply ADDR_BITS_REMOVE,
650 return the fully sign-extended register value.
651 (get_frame_pointer): Ditto.
652 (mips_pop_frame): Initialize "proc_desc" after checking for a
653 dummy frame.
654
655 2003-04-14 Andrew Cagney <cagney@redhat.com>
656
657 * mips-tdep.c (mips_push_dummy_frame): Delete function.
658 (MASK, PUSH_FP_REGNUM, GEN_REG_SAVE_MASK): Delete macros.
659 (FLOAT_REG_SAVE_MASK, FLOAT_SINGLE_REG_SAVE_MASK): Delete macro.
660 (mips_push_register): Delete function.
661 (mips_dump_tdep): Delete references to GEN_REG_SAVE_MASK and
662 PUSH_FP_REGNUM.
663
664 2003-04-14 Jim Blandy <jimb@redhat.com>
665
666 * symmisc.c: #include "gdb_regex.h".
667 (maintenance_list_symtabs, maintenance_list_psymtabs): New
668 functions.
669 * maint.c (maintenance_list_command): New function.
670 (_initialize_maint_cmds): Register the above as commands.
671 * symtab.h (maintenance_list_symtabs,
672 maintenance_list_psymtabs): New declarations.
673 * cli/cli-cmds.c (maintenancelistlist): New variable.
674 (init_cmd_lists): Initialize it.
675 * cli/cli-cmds.h (maintenancelistlist): New declaration.
676 * gdbcmd.h (maintenancelistlist): New declaration.
677 * Makefile.in (symmisc.o): Update dependencies.
678
679 2003-04-14 Elena Zannoni <ezannoni@redhat.com>
680
681 * s390-nat.c: Include asm/types.h for addr_t.
682
683 2003-04-14 Corinna Vinschen <vinschen@redhat.com>
684
685 * cp-valprint.c (cp_print_class_method): Call unpack_pointer() with
686 actually incoming type.
687
688 2003-04-13 Andrew Cagney <cagney@redhat.com>
689
690 * ppc-linux-tdep.c: Use get_frame_base, get_frame_pc,
691 get_next_frame and get_frame_saved_regs.
692
693 2003-04-13 Andrew Cagney <cagney@redhat.com>
694
695 * reggroups.c (default_register_reggroup_p): Use NUM_REGS instead
696 of gdbarch_num_regs.
697
698 2003-04-13 Andrew Cagney <cagney@redhat.com>
699
700 * frame.h: Mention what replaced what in "struct frame_info".
701 * hppa-hpux-tdep.c: Use get_frame_base, get_frame_pc and
702 deprecated_update_frame_base_hack and
703 deprecated_update_frame_pc_hack.
704 * hppa-tdep.c: Ditto.
705
706 2003-04-13 Daniel Jacobowitz <drow@mvista.com>
707
708 * dwarf2expr.h (struct dwarf_expr_context): Remove extra arguments
709 to read_reg and update its comment. Remove regnum member.
710 * dwarf2expr.c (execute_stack_op): Remove memaddr and expr_lval.
711 Don't call read_reg when setting in_reg. Call read_reg to get
712 the frame base if it's in a register. Return the register number
713 on the stack instead of in the context. Remove extra arguments
714 to read_reg.
715 * dwarf2loc.c (dwarf_expr_read_reg): Remove extra arguments.
716 (dwarf2_evaluate_loc_desc): Call value_from_register. Expect
717 the register number on the expression stack.
718 (needs_frame_read_reg): Remove extra arguments.
719
720 2003-04-13 Daniel Jacobowitz <drow@mvista.com>
721
722 * dwarf2expr.c (dwarf2_read_address): Renamed from read_address;
723 made non-static.
724 (execute_stack_op): All callers updated.
725 * dwarf2expr.h: Add prototype for dwarf2_read_address.
726 * dwarf2loc.c (find_location_expression): New function.
727 (dwarf_expr_frame_base): Call it.
728 (dwarf2_evaluate_loc_desc): Handle 0-length location expressions.
729 (dwarf2_tracepoint_var_ref): New function, broken out from
730 locexpr_tracepoint_var_ref.
731 (locexpr_tracepoint_var_ref): Call dwarf2_tracepoint_var_ref.
732 Make static.
733 (loclist_read_variable, loclist_read_needs_frame): New functions.
734 (loclist_describe_location, loclist_tracepoint_var_ref): New
735 functions.
736 (dwarf2_loclist_funcs): New struct location_funcs.
737 * dwarf2loc.h (struct dwarf2_loclist_baton): New type.
738 (struct dwarf2_locexpr_baton): Add comments.
739 (dwarf2_loclist_funcs): New extern.
740 * dwarf2read.c (struct comp_unit_head): Remove DIE member, add
741 base_address and base_known.
742 (dwarf_loc_buffer): New variable.
743 (struct dwarf2_pinfo): Add dwarf_loc_buffer and dwarf_loc_size.
744 (DWARF_LOC_BUFFER, DWARF_LOC_SIZE): New macros.
745 (dwarf2_has_info): Initialize dwarf_loc_offset.
746 (dwarf2_build_psymtabs): Read in .debug_loc.
747 (dwarf2_build_psymtabs_hard): Use DWARF_LOC_BUFFER and
748 DWARF_LOC_SIZE.
749 (psymtab_to_symtab_1): Likewise. Move base address calculation
750 here, from...
751 (dwarf2_get_pc_bounds): ... here. Use the base address from
752 cu_header.
753 (dwarf2_symbol_mark_computed): Handle location lists.
754
755 2003-04-13 Daniel Jacobowitz <drow@mvista.com>
756
757 * minsyms.c (install_minimal_symbols): Only switch to gnu-v3 mode
758 if the linkage name demangled successfully.
759
760 2003-04-13 Mark Kettenis <kettenis@gnu.org>
761
762 * x86-64-tdep.c (att_flavour, intel_flavour, valid_flavours,
763 disassmbly_flavour): Removed.
764
765 * x86-64-tdep.c (gdb_print_insn_x86_64): Removed.
766
767 2003-04-13 Mark Kettenis <kettenis@gnu.org>
768
769 * x86-64-tdep.c (x86_64_breakpoint_from_pc): Removed.
770
771 2003-04-12 Andrew Cagney <cagney@redhat.com>
772
773 * frame.h (struct frame_info): Move definition from here ...
774 * frame.c (struct frame_info): ... to here.
775
776 2003-04-12 Andrew Cagney <cagney@redhat.com>
777
778 * gdbthread.h (save_infrun_state): Delete parameter
779 "prev_func_start".
780 (struct thread_info): Delete field "prev_func_start".
781 (load_infrun_state): Ditto.
782 * thread.c (load_infrun_state, save_infrun_state): Update.
783 * infrun.c (prev_func_start): Delete variable.
784 (context_switch, init_wait_for_inferior): Update.
785 (stop_stepping, keep_going): Update.
786
787 2003-04-12 Andrew Cagney <cagney@redhat.com>
788
789 * gdbarch.sh: Add missing opaque declarations.
790 * gdbarch.h: Regnerate.
791 * symtab.h: Add missing opaque declarations.
792 * value.h, target.h, symfile.h, stabsread.h: Ditto.
793 * x86-64-tdep.h, xmodem.h, monitor.h, typeprint.h: Ditto.
794 * srec.h, solib-svr4.h, source.h, inferior.h: Ditto.
795 * ser-unix.h, serial.h, remote-utils.h, gdbcore.h: Ditto.
796 * ppc-tdep.h, ocd.h, mips-tdep.h, gdbtypes.h: Ditto.
797 * buildsym.h, builtin-regs.h, linespec.h, language.h: Ditto.
798 * i387-tdep.h, gdbthread.h, event-top.h, gdb.h: Ditto.
799 * dwarf2cfi.h, doublest.h, disasm.h, cp-abi.h: Ditto.
800 * cli-out.h, c-lang.h, ax-gdb.h, arch-utils.h: Ditto.
801 * ada-lang.h, config/nm-lynx.h, config/nm-linux.h: Ditto.
802 * config/sparc/tm-sp64.h, config/rs6000/tm-rs6000.h: Ditto.
803 * config/pa/tm-hppah.h, config/m68k/tm-delta68.h: Ditto.
804 * cli/cli-setshow.h, cli/cli-script.h: Ditto.
805
806 2003-04-11 Andrew Cagney <cagney@redhat.com>
807
808 * frame.c (get_frame_id): Return this frame's "id".
809 (legacy_get_prev_frame): Set prev's frame ID code_addr to the
810 function start.
811 (legacy_saved_regs_this_id): Replace function body with
812 internal-error.
813 (deprecated_frame_xmalloc): Mark the frame ID as valid, use
814 FRAME_OBSTACK_ZALLOC.
815 (create_new_frame): Mark the frame ID as valid.
816
817 2003-04-11 Alexandre Oliva <aoliva@redhat.com>
818
819 * Makefile.in (libbfd_h): Added missing setting.
820 * mips-tdep.c (mips_gdbarch_init): Set disassembler_options
821 according to the selected ABI.
822
823 2003-04-11 Jeff Johnston <jjohnstn@redhat.com>
824
825 * gdb_indent.sh: Recognize pid_t and sigset_t as types.
826
827 2003-04-11 Andrew Cagney <cagney@redhat.com>
828
829 * gdbarch.sh (DEPRECATED_SAVED_PC_AFTER_CALL): Deprecate
830 SAVED_PC_AFTER_CALL.
831 * gdbarch.h, gdbarch.c: Regenerate.
832 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
833 * x86-64-tdep.c (x86_64_init_abi): Update.
834 * vax-tdep.c (vax_gdbarch_init): Update.
835 * v850-tdep.c (v850_gdbarch_init): Update.
836 * sparc-tdep.c (sparc_gdbarch_init): Update.
837 * sh-tdep.c (sh_gdbarch_init): Update.
838 * s390-tdep.c (s390_gdbarch_init): Update.
839 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
840 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
841 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
842 * mips-tdep.c (mips_gdbarch_init): Update.
843 * mcore-tdep.c (mcore_gdbarch_init): Update.
844 * m68k-tdep.c (m68k_gdbarch_init): Update.
845 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
846 * ia64-tdep.c (ia64_gdbarch_init): Update.
847 (ia64_saved_pc_after_call): Update declaration.
848 * i386ly-tdep.c (i386lynx_init_abi): Update.
849 * i386-tdep.c (i386_gdbarch_init): Update.
850 * hppa-tdep.c (hppa_gdbarch_init): Update.
851 * h8300-tdep.c (h8300_gdbarch_init): Update.
852 * frv-tdep.c (frv_gdbarch_init): Update.
853 * cris-tdep.c (cris_gdbarch_init): Update.
854 * avr-tdep.c (avr_gdbarch_init): Update.
855 * arm-tdep.c (arm_gdbarch_init): Update.
856 * alpha-tdep.c (alpha_gdbarch_init): Update.
857 * ns32knbsd-nat.c (frame_num_args): Update.
858 * ns32k-tdep.c (umax_frame_num_args): Update.
859 * mips-tdep.c (mips_init_frame_pc_first): Update.
860 * infrun.c (step_over_function): Update.
861 * i386-linux-tdep.c (skip_hurd_resolver): Update.
862 * i386-interix-tdep.c (i386_interix_back_one_frame): Update.
863 * config/sparc/tm-sparc.h (DEPRECATED_SAVED_PC_AFTER_CALL): Update.
864 (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
865 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
866 * config/pa/tm-hppa.h (DEPRECATED_SAVED_PC_AFTER_CALL): Update.
867 * arm-linux-tdep.c (skip_hurd_resolver): Update.
868 * arch-utils.c (init_frame_pc_default): Update.
869 * alpha-tdep.c (alpha_init_frame_pc_first): Update.
870 * x86-64-tdep.h (x86_64_linux_saved_pc_after_call): Update
871 declaration.
872
873 2003-04-11 Andrew Cagney <cagney@redhat.com>
874
875 * i387-tdep.c: Update copyright.
876 (i387_to_double): Delete function.
877 (double_to_i387): Delete function.
878
879 2003-04-10 Andrew Cagney <cagney@redhat.com>
880
881 * d10v-tdep.c (d10v_frame_this_id): Set the code addr to the
882 frame's function's address. Simplify.
883 (d10v_frame_unwind_cache): Check that the frame's function is
884 non-zero.
885
886 2003-04-10 Jim Blandy <jimb@redhat.com>
887
888 * s390-tdep.c (s390_gdbarch_init): Put back accidentally deleted
889 call to set_gdbarch_deprecated_push_arguments.
890
891 2003-04-10 Andrew Cagney <cagney@redhat.com>
892
893 * frame.c (fprint_frame_id): New function.
894 (fprint_frame_type, fprint_frame): New function.
895 (frame_pc_unwind, frame_func_unwind): Add/update trace code.
896 (create_sentinel_frame, get_frame_id): Ditto.
897 (frame_id_p, frame_id_eq): Ditto.
898 (frame_id_inner, create_new_frame): Ditto.
899 (legacy_get_prev_frame, get_prev_frame): Ditto.
900 (deprecated_update_frame_pc_hack): Ditto.
901 (frame_register_unwind): Ditto.
902 (deprecated_update_frame_base_hack): Ditto.
903
904 2003-04-10 Corinna Vinschen <vinschen@redhat.com>
905
906 * i386-cygwin-tdep.c (i386_cygwin_frame_chain): New function.
907 (i386_cygwin_init_abi): Set i386_cygwin_frame_chain as new
908 frame_chain function.
909 * Makefile.in: Add dependencies due to above change.
910
911 2003-04-10 Corinna Vinschen <vinschen@redhat.com>
912
913 * blockframe.c (legacy_frame_chain_valid): Move call to
914 DEPRECATED_FRAME_CHAIN_VALID before calls to inside_entry_func and
915 inside_entry_file.
916
917 2003-04-09 Andrew Cagney <cagney@redhat.com>
918
919 * frame.h (struct frame_id): Replace "pc" and "base" with
920 "stack_addr" and "code_addr". Update comments.
921 (frame_id_build): Update parameter names and comment.
922 (struct frame_info): Replace "id_p" and "id" with "this_id".
923 * dummy-frame.c (dummy_frame_this_id): Update.
924 * breakpoint.c (print_one_breakpoint): Update.
925 * frame.c (get_frame_id): Update.
926 (get_frame_base, frame_id_build): Update.
927 (create_sentinel_frame, legacy_get_prev_frame): Update.
928 (deprecated_update_frame_base_hack): Update.
929 (frame_id_p, frame_id_eq): Rework, return 0 when an invalid ID.
930 (frame_id_inner): Ditto.
931
932 2003-04-09 Andrew Cagney <cagney@redhat.com>
933
934 * defs.h (gdb_print_host_address): Make "addr" parameter a
935 pointer constant.
936 * utils.c (gdb_print_host_address): Update.
937
938 2003-04-09 Kevin Buettner <kevinb@redhat.com>
939
940 * rs6000-tdep.c (frame_get_saved_regs): Don't assume that the
941 register number for R0 is 0.
942
943 2003-04-09 J. Brobecker <brobecker@gnat.com>
944
945 * frame.h (struct gdbarch): Add opaque structure definition
946 to avoid a compilation warning on LynxOS 4.0.
947
948 2003-04-09 Andrew Cagney <cagney@redhat.com>
949
950 * frame.h (struct frame_info): Delete field "pc". Replace
951 "pc_unwind_cache" and "pc_unwind_cache_p" with "prev_pc"
952 structure.
953 * frame.c (frame_pc_unwind): Update.
954 (create_sentinel_frame): Do not set "pc".
955 (get_prev_frame): Do not set "pc". Use frame_pc_unwind.
956 (get_frame_pc): Call frame_pc_unwind.
957 (deprecated_update_frame_pc_hack): Update.
958 (create_new_frame): Use "pc" not "->pc".
959
960 2003-04-09 Andrew Cagney <cagney@redhat.com>
961
962 * frame.c (get_frame_id): Eliminate code updating "frame".
963 (legacy_get_prev_frame): Ditto.
964 (get_frame_base): Return id.base directly.
965 (deprecated_update_frame_base_hack): Update "id.base".
966 * frame.h (struct frame_info): Delete field "frame".
967
968 2003-04-09 Andrew Cagney <cagney@redhat.com>
969
970 * NEWS: Mention that the "Sequent family" is obsolete.
971 * configure.tgt: Obsolete i[3456]86-sequent-bsd*,
972 i[3456]86-sequent-sysv4*, and i[3456]86-sequent-sysv*.
973 * configure.host: Obsolete i[3456]86-sequent-bsd*,
974 i[3456]86-sequent-sysv4*, and i[3456]86-sequent-sysv*.
975 * config/i386/tm-ptx4.h: Obsolete file.
976 * config/i386/tm-ptx.h: Obsolete file.
977 * symm-tdep.c: Obsolete file.
978 * config/i386/symmetry.mt: Obsolete file.
979 * config/i386/tm-symmetry.h: Obsolete file.
980 * symm-nat.c: Obsolete file.
981 * config/i386/nm-symmetry.h: Obsolete file.
982 * config/i386/xm-symmetry.h: Obsolete file.
983 * config/i386/symmetry.mh: Obsolete file.
984 * config/i386/nm-ptx4.h: Obsolete file.
985 * config/i386/ptx4.mh: Obsolete file.
986 * config/i386/ptx.mt: Obsolete file.
987 * config/i386/ptx.mh: Obsolete file.
988 * config/i386/xm-ptx4.h: Obsolete file.
989 * config/i386/xm-ptx.h: Obsolete file.
990
991 2003-04-09 Andrew Cagney <cagney@redhat.com>
992
993 Obsolete mips*-*-mach3*.
994 * NEWS: Mention that mips*-*-mach3* is obsolete.
995 * m3-nat.c: Obsolete file.
996 * config/nm-m3.h: Obsolete file.
997 * config/mips/tm-mipsm3.h: Obsolete file.
998 * config/mips/mipsm3.mt: Obsolete file.
999 * config/mips/mipsm3.mh: Obsolete file.
1000 * config/mips/xm-mipsm3.h: Obsolete file.
1001 * mipsm3-nat.c: Obsolete file.
1002 * configure.host: Obsolete mips-dec-mach3*.
1003 * configure.tgt: Obsolete mips*-*-mach3*.
1004
1005 2003-04-09 Andrew Cagney <cagney@redhat.com>
1006
1007 * doublest.h: Update copyright.
1008 (deprecated_store_floating, deprecated_extract_floating): Rename
1009 store_floating and extract_floating. Update comments.
1010 * doublest.c: Update copyright.
1011 (extract_floating_by_length): Replace extract_floating.
1012 (store_floating_by_length): Replace store_floating.
1013 (deprecated_extract_floating): New function.
1014 (deprecated_store_floating): New function.
1015 (extract_typed_floating): Call extract_floating_by_length.
1016 (store_typed_floating): Call store_floating_by_length.
1017 * x86-64-tdep.c (x86_64_store_return_value): Update.
1018 * sh-tdep.c (sh3e_sh4_extract_return_value): Update.
1019 (sh64_extract_return_value): Update.
1020 (sh_sh4_register_convert_to_virtual): Update.
1021 (sh_sh64_register_convert_to_virtual): Update.
1022 (sh_sh4_register_convert_to_raw): Update.
1023 (sh_sh64_register_convert_to_raw): Update.
1024 * rs6000-tdep.c (rs6000_register_convert_to_virtual): Update.
1025 (rs6000_register_convert_to_raw): Update.
1026 * ia64-tdep.c (ia64_register_convert_to_virtual): Update.
1027 (ia64_register_convert_to_raw): Update.
1028 * config/i386/tm-symmetry.h (REGISTER_CONVERT_TO_RAW): Update.
1029 (REGISTER_CONVERT_TO_VIRTUAL): Update.
1030 * arm-linux-tdep.c (arm_linux_push_arguments): Update.
1031 * alpha-tdep.c (alpha_register_convert_to_virtual): Update.
1032 (alpha_register_convert_to_raw): Update.
1033
1034 2003-04-08 Andrew Cagney <cagney@redhat.com>
1035
1036 * gdbarch.sh (SAVED_PC_AFTER_CALL): Add a predicate.
1037 * gdbarch.h, gdbarch.c: Re-generate.
1038 * d10v-tdep.c (d10v_saved_pc_after_call): Delete function.
1039 (d10v_gdbarch_init): Do not set saved_pc_after_call.
1040 * infrun.c (step_over_function): Call SAVED_PC_AFTER_CALL_P
1041 conditionally, use frame_pc_unwind as an alternative. Add
1042 comments.
1043 * arch-utils.c (init_frame_pc_default): Only call
1044 SAVED_PC_AFTER_CALL when available.
1045
1046 2003-04-08 Elena Zannoni <ezannoni@redhat.com>
1047
1048 * infrun.c (stop_soon): Rename from stop_soon_quietly.
1049 (struct inferior_status): Rename stop_soon_quietly field to stop_soon.
1050 (clear_proceed_status): Rename stop_soon_quietly to stop_soon.
1051 (start_remote): Ditto.
1052 (handle_inferior_event): Ditto.
1053 (save_inferior_status): Ditto.
1054 (restore_inferior_status): Ditto.
1055 * infcmd.c (attach_command): Ditto.
1056 * fork-child.c (startup_inferior): Ditto.
1057 * inferior.h (stop_soon): Rename from stop_soon_quietly.
1058 * alpha-tdep.c (heuristic_proc_start): Ditto.
1059 * mips-tdep.c (heuristic_proc_start): Ditto.
1060 * solib-svr4.c (svr4_solib_create_inferior_hook): Ditto.
1061 * solib-sunos.c (sunos_solib_create_inferior_hook): Ditto.
1062 * solib-osf.c (osf_solib_create_inferior_hook): Ditto.
1063 * solib-irix.c (irix_solib_create_inferior_hook): Ditto.
1064 * remote-vx.c (vx_create_inferior): Ditto.
1065
1066 2003-04-08 Elena Zannoni <ezannoni@redhat.com>
1067
1068 * infrun.c (stop_soon_quietly): Make it an enum, to better
1069 override the default behavior of handle_inferior_event.
1070 (clear_proceed_status): Update uses of stop_soon_quietly to
1071 reflect that it is now an enum.
1072 (start_remote): Ditto.
1073 (handle_inferior_event): Change logic a bit if stop_soon_quietly
1074 is set to handle the new GNU/Linux kernel behavior for
1075 attach/sigstop. Update uses of stop_soon_quietly.
1076 * inferior.h (enum stop_kind): New enum.
1077 * infcmd.c (attach_command): Use STOP_QUIETLY_NO_SIGSTOP.
1078 Reset normal handle_inferior_event behavior, afterwards.
1079 * fork-child.c (startup_inferior): Update.
1080 * alpha-tdep.c (heuristic_proc_start): Update.
1081 * solib-svr4.c (svr4_solib_create_inferior_hook): Update.
1082 * solib-sunos.c (sunos_solib_create_inferior_hook): Update.
1083 * solib-osf.c (osf_solib_create_inferior_hook): Update.
1084 * solib-irix.c (irix_solib_create_inferior_hook): Update.
1085 * remote-vx.c (vx_create_inferior): Update.
1086 * mips-tdep.c (heuristic_proc_start): Update.
1087
1088 2003-04-07 Elena Zannoni <ezannoni@redhat.com>
1089
1090 * disasm.c (dump_insns): Move variables inside loop, or they will
1091 be freed more than once, causing wild memory corruptions.
1092 (gdb_disassembly): Look for the substring "-thread",
1093 instead of "-threads" in the target name, to make sure to find
1094 the 'multi-thread' target. Also, make sure we do the right thing
1095 with the "core" target.
1096
1097 2003-04-07 Kevin Buettner <kevinb@redhat.com>
1098
1099 * mips-tdep.c (mips_print_fp_register): New function, created from
1100 do_fp_register_row(). Registers are now (also) printed as hex.
1101 Only one register is printed per row.
1102 (mips_print_register, do_fp_register_row): Print floating point
1103 registers with mips_print_fp_register().
1104
1105 2003-04-06 Andrew Cagney <cagney@redhat.com>
1106
1107 * valprint.h (inspect_it): Add extern declaration.
1108 * objc-lang.c (value_nsstring): Avoid assignment inside of "if".
1109 (selectors_info, classes_info): Ditto.
1110 (find_objc_msgcall): Fix indentation.
1111 (objc_printstr): Delete extern declarations.
1112
1113 * arm-tdep.c (arm_frameless_function_invocation): Fix typo.
1114
1115 2003-04-06 Andrew Cagney <cagney@redhat.com>
1116
1117 * frame.h (legacy_frame_chain_valid): Rename frame_chain_valid.
1118 Update comment.
1119 * frame.c (legacy_saved_regs_this_id): Update.
1120 (legacy_get_prev_frame): Update.
1121 * xstormy16-tdep.c: Update comment.
1122 * sparc-tdep.c (sparc_frame_chain): Update comment.
1123 * blockframe.c (legacy_frame_chain_valid): Update.
1124
1125 2003-04-06 Andrew Cagney <cagney@redhat.com>
1126
1127 * valprint.c (val_print_type_code_int): Delete #ifdef
1128 PRINT_TYPELESS_INTEGER code.
1129
1130 * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES)
1131 (CALL_DUMMY_LOCATION, DEPRECATED_PC_IN_CALL_DUMMY): Allow partial
1132 multi-arch definition.
1133 * gdbarch.h: Re-generate.
1134
1135 2003-04-05 Andrew Cagney <cagney@redhat.com>
1136
1137 Eliminate FRAME_FIND_SAVED_REGS.
1138 * config/pa/tm-hppah.h (hppa_hpux_frame_find_saved_regs_in_sigtramp):
1139 Change FSR parameter to a pointer.
1140 * config/pa/tm-hppa64.h (FRAME_FIND_SAVED_REGS_IN_SIGTRAMP):
1141 Assume FSR parameter is a pointer.
1142 * hppa-hpux-tdep.c (hppa_hpux_frame_find_saved_regs_in_sigtramp):
1143 Make fsr a pointer.
1144 * hppa-tdep.c (hppa_frame_find_saved_regs): New function.
1145 (hppa_frame_saved_pc): Call hppa_frame_init_saved_regs. Make
1146 saved_regs a pointer.
1147 (hppa_frame_saved_pc): Ditto.
1148 (find_dummy_frame_regs): Make frame_saved_regs a pointer
1149 (hppa_pop_frame): Call hppa_frame_init_saved_regs. Make fsr a
1150 pointer.
1151 (restore_pc_queue): Make fsr a pointer.
1152 (hppa_frame_find_saved_regs): Make frame_saved_regs a pointer.
1153 (hppa_frame_chain): Make saved_regs a pointer, call
1154 hppa_frame_init_saved_regs.
1155 * sparc-tdep.c: Include "gdb_assert.h".
1156 (sparc_frame_find_saved_regs): Replace internal_error with
1157 gdb_assert.
1158 * remote-vxsparc.c (vx_read_register): Delete reference to
1159 FRAME_FIND_SAVED_REGS.
1160 * gdbarch.sh: Delete check for FRAME_FIND_SAVED_REGS.
1161 * gdbarch.h: Regenerate.
1162 * frame.h (DEPRECATED_FRAME_INIT_SAVED_REGS): Delete macro.
1163 (deprecated_get_frame_saved_regs): Delete declaration.
1164 (struct frame_saved_regs): Delete definition.
1165 * frame.c (deprecated_get_frame_saved_regs): Delete function.
1166 * config/pa/tm-hppa.h (hppa_frame_init_saved_regs): Declare.
1167 (hppa_frame_find_saved_regs): Delete declaration.
1168 (FRAME_FIND_SAVED_REGS): Delete macro.
1169 (DEPRECATED_FRAME_INIT_SAVED_REGS): Define.
1170 * config/i386/tm-ptx.h (FRAME_FIND_SAVED_REGS): Delete
1171 FRAME_FIND_SAVED_REGS in comment.
1172
1173 2003-04-05 Andrew Cagney <cagney@redhat.com>
1174
1175 * frame.c (frame_func_unwind, get_frame_func): New functions.
1176 * frame.h (get_frame_func, frame_func_unwind): Declare.
1177 (struct frame_info): Add field "prev_func" for caching the
1178 previous frame's function address.
1179 * arm-tdep.c (arm_frameless_function_invocation): Combine
1180 get_pc_function_start and get_frame_pc into get_frame_func.
1181 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
1182 (sh64_nofp_frame_init_saved_regs): Ditto.
1183 * s390-tdep.c (s390_function_start): Ditto.
1184 * rs6000-tdep.c (rs6000_pop_frame): Ditto.
1185 (rs6000_frameless_function_invocation): Ditto.
1186 (rs6000_frame_saved_pc): Ditto.
1187 * m68k-tdep.c (m68k_frame_init_saved_regs): Ditto.
1188 * ia64-tdep.c (ia64_frame_init_saved_regs): Ditto.
1189 * i386-tdep.c (i386_frameless_signal_p): Ditto.
1190 (i386_frame_init_saved_regs): Ditto.
1191 * hppa-tdep.c (hppa_frame_find_saved_regs): Ditto.
1192 * d10v-tdep.c (d10v_frame_unwind_cache): Combine
1193 get_pc_function_start and frame_pc_unwind into frame_func_unwind.
1194 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
1195 * blockframe.c (frameless_look_for_prologue): Ditto.
1196
1197 2003-04-05 Andrew Cagney <cagney@redhat.com>
1198
1199 * frame.c (legacy_get_prev_frame): Link prev to next at the
1200 function start. Update comments.
1201
1202 2003-04-05 Andrew Cagney <cagney@redhat.com>
1203
1204 * frame.c (get_frame_id): Update comment.
1205 (legacy_get_prev_frame): Update comment.
1206 * gdbarch.sh: Delete check for EXTRA_FRAME_INFO.
1207 * gdbarch.h: Regenerate.
1208 * config/sparc/tm-sparc.h (EXTRA_FRAME_INFO): Delete.
1209 * frame.h: Delete #ifdef EXTRA_FRAME_INFO code.
1210
1211 2003-04-05 Andrew Cagney <cagney@redhat.com>
1212
1213 * stack.c (print_frame_info): Use get_frame_pc.
1214
1215 2003-04-04 Andrew Cagney <cagney@redhat.com>
1216
1217 * frame.c (get_prev_frame): Do not call frame_type_from_pc. Set
1218 the frame's type from the unwinder.
1219 (get_frame_type): Map UNKNOWN_FRAME onto NORMAL_FRAME.
1220 (create_new_frame, legacy_get_prev_frame): When the unwinder's
1221 type isn't UNKNOWN_FRAME, initalize "type" from the unwinder.
1222 (get_frame_base_address): Use get_frame_type.
1223 (get_frame_locals_address, get_frame_args_address): Ditto.
1224 (legacy_saved_regs_unwinder): Set the type to UNKNOWN_TYPE.
1225 * frame.h (enum frame_type): Add UNKNOWN_FRAME.
1226 (struct frame_info): Add comment explaining why the frame contains
1227 a "type" field.
1228 * dummy-frame.c (dummy_frame_unwind): Set the type to DUMMY_FRAME.
1229 * d10v-tdep.c (d10v_frame_unwind): Set the type to NORMAL_FRAME.
1230 * sentinel-frame.c (sentinel_frame_unwinder): Set the type to
1231 NORMAL_FRAME.
1232 * frame-unwind.h: Include "frame.h".
1233 (struct frame_unwind): Add "type" field.
1234 * Makefile.in (frame_unwind_h): Add $(frame_h).
1235
1236 2003-04-04 Andrew Cagney <cagney@redhat.com>
1237
1238 * x86-64-tdep.c (x86_64_unwind_dummy_id): Use frame_id_build.
1239 * dummy-frame.c (dummy_frame_this_id): Use frame_id_build.
1240 * d10v-tdep.c (d10v_frame_this_id): Use get_frame_pc and
1241 get_frame_base.
1242 (d10v_unwind_dummy_id): Use frame_id_build.
1243 * frame.c (find_frame_sal): Use get_frame_pc.
1244 (create_new_frame): Use deprecated_update_frame_pc_hack and
1245 deprecated_update_frame_base_hack.
1246 (create_sentinel_frame): Add comment about ->pc going away.
1247 (get_prev_frame): Add comment about ->pc going away.
1248 (legacy_get_prev_frame): Use get_frame_base, get_frame_pc,
1249 frame_id_build, deprecated_update_frame_pc_hack and
1250 deprecated_update_frame_base_hack.
1251 (select_frame): Use get_frame_pc.
1252 (legacy_saved_regs_this_id): Use frame_id_build.
1253
1254 2003-04-04 Elena Zannoni <ezannoni@redhat.com>
1255
1256 * x86-64-tdep.c (x86_64_push_arguments): Handle correctly the
1257 signed integer case.
1258 (classify_argument): Handle enumerations and references.
1259
1260 2003-04-04 Andrew Cagney <cagney@redhat.com>
1261
1262 * frame.c (create_sentinel_frame): Initialize the sentinel frame's
1263 ID to NULL.
1264
1265 2003-04-01 Adam Fedor <fedor@gnu.org>
1266
1267 * gdb/objc-lang.c (selectors_info): Replace calls to
1268 SYMBOL_DEMANGLED_NAME and DEPRECATED_SYMBOL_NAME with
1269 SYMBOL_NATURAL_NAME.
1270 (classes_info, find_methods): Likewise.
1271
1272 2003-04-03 Kevin Buettner <kevinb@redhat.com>
1273
1274 * rs6000-tdep.c (rs6000_gdbarch_init): For xcoff executables, set
1275 ``mach'' to the value determined by bfd_default_set_arch_mach().
1276
1277 2003-04-02 Bob Rossi <bob_rossi@cox.net>
1278
1279 * Makefile.in (SUBDIR_MI_OBS): Add "mi-cmd-file.o".
1280 (SUBDIR_MI_SRCS): Add "mi-cmd-file.c".
1281 (mi-cmd-file.o): Update dependencies.
1282
1283 2003-04-01 Kevin Buettner <kevinb@redhat.com>
1284
1285 * mips-tdep.c (mips_dwarf_dwarf2_ecoff_reg_to_regnum)
1286 (mips_stab_reg_to_regnum): Add mappings for HI_REGNUM and LO_REGNUM.
1287
1288 2003-04-01 Adam Fedor <fedor@gnu.org>
1289
1290 * Makefile.in (c_lang.o, jv_lang.o, language.o): Add $(demangle_h).
1291 * language.h (struct language_defn): Add la_demangle.
1292 (language_demangle): Declare.
1293 * language.c (language_demangle): New function.
1294 (unk_lang_demangle): Likewise.
1295 (unknown_language_defn, auto_language_defn, local_language_defn):
1296 Add ukn_lang_demangle.
1297 * ada-lang.c (ada_language_defn): Add NULL for la_demangle element.
1298 * f-lang.c, m2-lang.c, p-lang.c, scm-lang.c: Likewise.
1299 * c-lang.c (c_language_defn, asm_language_defn): Likewise.
1300 (cplus_language_defn): Add cplus_demangle for la_demangle element.
1301 * jv-lang.c (java_demangle): New function
1302 (java_language_defn): Use it for la_demangle element.
1303 * objc-lang.c (objc_demangle): Add options argument
1304 (objc_language_defn): Use objc_demangle for la_demangle element.
1305 * maint.c (maintenance_demangle): Replace switch with
1306 call to language_demangle.
1307 * utils.c (fprintf_symbol_filtered): Likewise.
1308
1309 2003-04-01 Andrew Cagney <cagney@redhat.com>
1310
1311 * printcmd.c (print_frame_nameless_args): Delete #ifdef
1312 NAMELESS_ARG_VALUE, PRINT_NAMELESS_INTEGER and
1313 PRINT_TYPELESS_INTEGER.
1314 * config/sparc/tm-sp64.h (DEPRECATED_PUSH_RETURN_ADDRESS): Rename
1315 PUSH_RETURN_ADDRESS.
1316
1317 2003-04-01 Andrew Cagney <cagney@redhat.com>
1318
1319 * Makefile.in (d10v-tdep.o): Update dependencies.
1320 * d10v-tdep.c: Include "frame-base.h".
1321 (d10v_frame_unwind): Make constant.
1322 (d10v_frame_base_address): New function.
1323 (d10v_frame_base): New variable.
1324 (d10v_gdbarch_init): Set frame_base default.
1325 (struct d10v_unwind_cache): Add the field "prev_sp". Update
1326 comment for base.
1327 (d10v_frame_unwind_cache): Set and use "prev_sp".
1328 (d10v_frame_this_id): Use the previous frame's inner most stack
1329 address and this frame's func address for the frame ID. Use
1330 frame_id_build. Don't analyze beyond the current instruction.
1331
1332 2003-04-01 Andrew Cagney <cagney@redhat.com>
1333
1334 * frame.h (get_frame_locals_address, get_frame_args_address):
1335 Refer to the base address, instead of the address of the first
1336 local or parameter.
1337
1338 2003-04-01 Andrew Cagney <cagney@redhat.com>
1339
1340 Add frame debug info addresses:
1341 * frame-base.c: New file.
1342 * frame-base.h: New file.
1343 * frame.h (struct frame_base): Add opaque declaration.
1344 (get_frame_base): Update comment.
1345 (get_frame_base_address): Declare.
1346 (get_frame_locals_address): Declare.
1347 (get_frame_args_address): Declare.
1348 (struct frame_info): Add "base" and "base_cache". Update
1349 comments on the unwinder.
1350 * frame.c: Include "frame-base.h".
1351 (get_frame_locals_address): New function.
1352 (get_frame_base_address): New function.
1353 (get_frame_args_address): New function.
1354 * findvar.c (read_var_value): Use get_frame_locals_address and
1355 get_frame_args_address.
1356 * stack.c (frame_info): Use get_frame_locals_address and
1357 get_frame_args_address.
1358 (FRAME_ARGS_ADDRESS_CORRECT): Delete conditionally defined macro,
1359 moved to "frame-base.c".
1360 * printcmd.c (print_frame_nameless_args): Ditto.
1361 * symtab.h (address_class): Update comments.
1362 * dwarf2loc.c (dwarf_expr_frame_base): Add note about
1363 get_frame_base_address.
1364 * dwarf2expr.c (execute_stack_op): Ditto.
1365 * Makefile.in (frame_base_h): Define.
1366 (frame.o): Update dependencies.
1367 (frame-base.o): Add dependencies.
1368 (SFILES): Add frame-base.c.
1369 (COMMON_OBS): Add frame-base.o.
1370
1371 2003-04-01 Andrew Cagney <cagney@redhat.com>
1372
1373 * gdbarch.sh (CALL_DUMMY_START_OFFSET): Default to zero.
1374 CALL_DUMMY_LENGTH): Ditto.
1375 * gdbarch.c: Re-generate.
1376 * inferior.h (CALL_DUMMY_START_OFFSET): Delete macro.
1377 (CALL_DUMMY_LENGTH): Delete macro.
1378 * alpha-tdep.c (alpha_gdbarch_init): Do not set above when zero.
1379 * arm-tdep.c (arm_gdbarch_init): Ditto.
1380 * avr-tdep.c (avr_gdbarch_init): Ditto.
1381 * cris-tdep.c (cris_gdbarch_init): Ditto.
1382 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
1383 * frv-tdep.c (frv_gdbarch_init): Ditto.
1384 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1385 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
1386 * i386-tdep.c (i386_gdbarch_init): Ditto.
1387 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
1388 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
1389 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
1390 * mips-tdep.c (mips_gdbarch_init): Ditto.
1391 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1392 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
1393 * s390-tdep.c (s390_gdbarch_init): Ditto.
1394 * sh-tdep.c (sh_gdbarch_init): Ditto.
1395 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
1396 * v850-tdep.c (v850_gdbarch_init): Ditto.
1397 * vax-tdep.c (vax_gdbarch_init): Ditto.
1398 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
1399
1400 2003-04-01 Corinna Vinschen <vinschen@redhat.com>
1401
1402 * frame.c (get_prev_frame): Disable call to inside_entry_file().
1403
1404 2003-04-01 Andrew Cagney <cagney@redhat.com>
1405
1406 * gdbarch.sh (CALL_DUMMY_BREAKPOINT_OFFSET): Default to zero.
1407 (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
1408 * gdbarch.h, gdbarch.c: Re-generate.
1409 * config/sparc/tm-sp64.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
1410 (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
1411 * config/pa/tm-hppa64.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
1412 * inferior.h (CALL_DUMMY_BREAKPOINT_OFFSET_P): Delete.
1413 (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
1414 * infcmd.c (run_stack_dummy): Simplify assuming
1415 CALL_DUMMY_BREAKPOINT_OFFSET_P.
1416 * infrun.c (handle_inferior_event): Ditto.
1417 * alpha-tdep.c (alpha_gdbarch_init): Do not set
1418 call_dummy_breakpoint_offset or call_dummy_breakpoint_offset_p.
1419 * arm-tdep.c (arm_gdbarch_init): Ditto.
1420 * avr-tdep.c (avr_gdbarch_init): Ditto.
1421 * cris-tdep.c (cris_gdbarch_init): Ditto.
1422 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
1423 * frv-tdep.c (frv_gdbarch_init): Ditto.
1424 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1425 * i386-tdep.c (i386_gdbarch_init): Ditto.
1426 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
1427 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
1428 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
1429 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
1430 * mips-tdep.c (mips_gdbarch_init): Ditto.
1431 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1432 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
1433 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
1434 * s390-tdep.c (s390_gdbarch_init): Ditto.
1435 * sh-tdep.c (sh_gdbarch_init): Ditto.
1436 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
1437 * v850-tdep.c (v850_gdbarch_init): Ditto.
1438 * vax-tdep.c (vax_gdbarch_init): Ditto.
1439 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
1440
1441 2003-04-01 Daniel Jacobowitz <drow@mvista.com>
1442
1443 * symfile.c (symfile_relocate_debug_section): Update call to
1444 bfd_simple_get_relocated_section_contents.
1445
1446 2003-03-31 Andrew Cagney <cagney@redhat.com>
1447
1448 * gdbarch.sh (FIX_CALL_DUMMY): Change to function with predicate.
1449 * gdbarch.h, gdbarch.c: Regenerate.
1450 * inferior.h (FIX_CALL_DUMMY): Delete macro.
1451 * valops.c (hand_function_call): Only call FIX_CALL_DUMMY when
1452 available.
1453 * frame.h (generic_fix_call_dummy): Delete declaration.
1454 * dummy-frame.h: Update comment.
1455 * dummy-frame.c (generic_fix_call_dummy): Delete function.
1456 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
1457 fix_call_dummy.
1458 * sh-tdep.c (sh_gdbarch_init): Ditto.
1459 * s390-tdep.c (s390_gdbarch_init): Ditto.
1460 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1461 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
1462 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
1463 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
1464 * i386-tdep.c (i386_gdbarch_init): Ditto.
1465 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1466 * frv-tdep.c (frv_gdbarch_init): Ditto.
1467 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
1468 * cris-tdep.c (cris_gdbarch_init): Ditto.
1469 * avr-tdep.c (avr_gdbarch_init): Ditto.
1470 * arm-tdep.c (arm_gdbarch_init): Ditto.
1471
1472 2003-03-31 J. Brobecker <brobecker@gnat.com>
1473
1474 * config/pa/tm-hppa64.h (FRAME_ARGS_ADDRESS): Delete macro, not useful.
1475 (INIT_FRAME_AP): Likewise.
1476 (EXTRA_FRAME_INFO): Likewise.
1477
1478 2003-03-31 Andrew Cagney <cagney@redhat.com>
1479
1480 * gdbarch.sh: Include "symfile.h".
1481 (CALL_DUMMY_ADDRESS): Default to entry_point_address.
1482 * gdbarch.h, gdbarch.c: Re-generate.
1483 * inferior.h (CALL_DUMMY_ADDRESS): Delete macro.
1484 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
1485 call_dummy_address, the default is at entry_point_address.
1486 * v850-tdep.c (v850_gdbarch_init): Ditto.
1487 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
1488 * sh-tdep.c (sh_gdbarch_init): Ditto.
1489 * s390-tdep.c (s390_gdbarch_init): Ditto.
1490 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
1491 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1492 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
1493 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
1494 * i386-tdep.c (i386_gdbarch_init): Ditto.
1495 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1496 * frv-tdep.c (frv_gdbarch_init): Ditto.
1497 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
1498 * cris-tdep.c (cris_gdbarch_init): Ditto.
1499 * arm-tdep.c (arm_gdbarch_init): Ditto.
1500
1501 2003-03-31 Andrew Cagney <cagney@redhat.com>
1502
1503 * gdbarch.sh (CALL_DUMMY_P): Delete.
1504 * gdbarch.h, gdbarch.c: Re-generate.
1505 * inferior.h (CALL_DUMMY_P): Delete macro.
1506 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
1507 * vax-tdep.c (vax_gdbarch_init): Update.
1508 * v850-tdep.c (v850_gdbarch_init): Update.
1509 * sparc-tdep.c (sparc_gdbarch_init): Update.
1510 * sh-tdep.c (sh_gdbarch_init): Update.
1511 * s390-tdep.c (s390_gdbarch_init): Update.
1512 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1513 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1514 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1515 * mips-tdep.c (mips_gdbarch_init): Update.
1516 * mcore-tdep.c (mcore_gdbarch_init): Update.
1517 * m68k-tdep.c (m68k_gdbarch_init): Update.
1518 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1519 * ia64-tdep.c (ia64_gdbarch_init): Update.
1520 * i386-tdep.c (i386_gdbarch_init): Update.
1521 * h8300-tdep.c (h8300_gdbarch_init): Update.
1522 * frv-tdep.c (frv_gdbarch_init): Update.
1523 * d10v-tdep.c (d10v_gdbarch_init): Update.
1524 * cris-tdep.c (cris_gdbarch_init): Update.
1525 * breakpoint.c (deprecated_frame_in_dummy): Update.
1526 * avr-tdep.c (avr_gdbarch_init): Update.
1527 * alpha-tdep.c (alpha_gdbarch_init): Update.
1528 * arm-tdep.c (arm_gdbarch_init): Update.
1529 * dummy-frame.c (dummy_frame_this_id): Update comments.
1530 * rs6000-tdep.c (rs6000_extract_struct_value_address): Ditto.
1531 * frame.c (legacy_get_prev_frame): Ditto.
1532 * valops.c (call_function_by_hand): Delete function.
1533 (hand_function_call): Rename to call_function_by_hand
1534
1535 2003-03-30 Andrew Cagney <cagney@redhat.com>
1536
1537 2002-11-10 Klee Dienes <kdienes@apple.com>
1538 * value.h (struct value): Update comment.
1539
1540 2003-03-30 Andrew Cagney <cagney@redhat.com>
1541
1542 * d10v-tdep.c: Replace _FP_REGNUM and FP_REGNUM with
1543 D10V_FP_REGNUM.
1544 (d10v_gdbarch_init): Do not set fp_regnum.
1545
1546 * frame.c (get_frame_base): Force ID initialization.
1547 (get_prev_frame): Move computation of the frame ID from here ...
1548 (get_frame_id): ... to here.
1549 (legacy_get_prev_frame): Mark the frame ID as valid.
1550 * frame.h (struct frame_info): Add field "id_p".
1551
1552 2003-03-30 Mark Kettenis <kettenis@gnu.org>
1553
1554 * i386-tdep.c (i386_store_struct_return): Removed.
1555 (i386_gdbarch_init): Don't set deprecated_store_struct_return.
1556
1557 2003-03-30 Andrew Cagney <cagney@redhat.com>
1558
1559 * gdbarch.sh (DEPRECATED_DUMMY_WRITE_SP): Replace TARGET_WRITE_SP.
1560 * gdbarch.h, gdbarch.c: Regenerate.
1561 * v850-tdep.c (v850_gdbarch_init): Set deprecated_dummy_write_sp.
1562 * xstormy16-tdep.c (xstormy16_gdbarch_init): Ditto.
1563 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
1564 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
1565 * i386-tdep.c (i386_gdbarch_init): Ditto.
1566 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1567 * cris-tdep.c (cris_gdbarch_init): Ditto.
1568 * vax-tdep.c (vax_gdbarch_init): Ditto.
1569 * s390-tdep.c (s390_gdbarch_init): Ditto.
1570 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
1571 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1572 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
1573 * sparc-tdep.c (sparc_push_dummy_frame, sparc_pop_frame): Update.
1574 * config/sparc/tm-sp64.h (DEPRECATED_DUMMY_WRITE_SP): Update.
1575 * config/pa/tm-hppa.h (DEPRECATED_DUMMY_WRITE_SP): Define.
1576 * sparc-tdep.c (sparc_gdbarch_init): Update.
1577 * sh-tdep.c (sh_gdbarch_init): Update.
1578 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1579 * mips-tdep.c (mips_gdbarch_init): Update.
1580 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1581 * ia64-tdep.c (ia64_gdbarch_init): Update.
1582 * frv-tdep.c (frv_gdbarch_init): Update.
1583 * avr-tdep.c (avr_gdbarch_init): Update.
1584 * valops.c (hand_function_call): Replace TARGET_WRITE_SP with
1585 DEPRECATED_DUMMY_WRITE_SP. Call when the method is available,
1586 instead of when push_dummy_call is not available.
1587
1588 2003-03-30 Andrew Cagney <cagney@redhat.com>
1589
1590 * infttrace.c: Include "gdbthread.h".
1591 (parent_attach_all): Fix function signature.
1592 (call_ptrace): Update call.
1593 * Makefile.in (infttrace.o): Update dependencies.
1594
1595 2003-03-30 Andrew Cagney <cagney@redhat.com>
1596
1597 * gdbarch.sh (DEPRECATED_PUSH_RETURN_ADDRESS): Replace
1598 PUSH_RETURN_ADDRESS.
1599 * gdbarch.h, gdbarch.c: Regenerate.
1600 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
1601 * x86-64-tdep.c (x86_64_init_abi): Update.
1602 * v850-tdep.c (v850_gdbarch_init): Update.
1603 * sparc-tdep.c (sparc_gdbarch_init): Update.
1604 * sh-tdep.c (sh_gdbarch_init): Update.
1605 * s390-tdep.c (s390_gdbarch_init): Update.
1606 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1607 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1608 * mips-tdep.c (mips_gdbarch_init): Update.
1609 * mcore-tdep.c (mcore_gdbarch_init): Update.
1610 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1611 * ia64-tdep.c (ia64_gdbarch_init): Update.
1612 * i386-tdep.c (i386_gdbarch_init): Update.
1613 * h8300-tdep.c (h8300_gdbarch_init): Update.
1614 * frv-tdep.c (frv_gdbarch_init): Update.
1615 * cris-tdep.c (cris_gdbarch_init): Update.
1616 * avr-tdep.c (avr_gdbarch_init): Update.
1617 * arm-tdep.c (arm_gdbarch_init): Update.
1618 * valops.c (hand_function_call): Update.
1619
1620 2003-03-29 Andrew Cagney <cagney@redhat.com>
1621
1622 * d10v-tdep.c (d10v_gdbarch_init): Do not set call_dummy_words or
1623 sizeof_call_dummy_words.
1624 * gdbarch.sh (CALL_DUMMY_WORDS, SIZEOF_CALL_DUMMY_WORDS): Always
1625 define.
1626 * gdbarch.h: Regenerate.
1627
1628 2003-03-29 Andrew Cagney <cagney@redhat.com>
1629
1630 * infttrace.h: New file.
1631 * hpread.c: Include "gdb_assert.h" and "somsolib.h".
1632 (hpread_get_textlow): Detect an uninitialized dn_bufp.
1633 (hpread_read_doc_function_type): Detect an initialized type1.
1634 (hpread_quick_traverse): Initialize mod_name_string.
1635 * somsolib.h: Add #ifdef SOMSOLIB_H wrapper.
1636 (som_solib_get_solib_by_pc): Declare.
1637 (so_lib_thread_start_addr): Declare.
1638 (no_shared_libraries): Declare.
1639 * somread.c (init_import_symbols): Make static. Add forward
1640 declaration.
1641 * config/pa/nm-hppah.h: Include "infttrace.h" for
1642 parent_attach_all.
1643 (hppa_insert_hw_watchpoint): Declare.
1644 (hppa_can_use_hw_watchpoint, hppa_remove_hw_watchpoint): Declare.
1645 * hppah-nat.c: Include "gdb_string.h".
1646 (parent_attach_all): Delete extern declaration, moved to
1647 "infttrace.h".
1648 (hppa_can_use_hw_watchpoint): Change type of "type" parameter to
1649 int.
1650 (hppa_remove_hw_watchpoint, hppa_insert_hw_watchpoint): Ditto.
1651 * Makefile.in (infttrace_h): Define.
1652 (hpread.o): Update dependencies.
1653 (hppah-nat.o, hppa-hpux-tdep.o, hppa-tdep.o): Ditto.
1654 * hppa-hpux-tdep.c: Include "gdb_string.h".
1655 * hppa-tdep.c (hppa_frame_saved_pc): Initialize "old_pc".
1656 * infrun.c (handle_inferior_event): Always initialize
1657 stepped_after_stopped_by_watchpoint. Add default and remove
1658 fallthrough in switch statement.
1659 * infttrace.c (hppa_can_use_hw_watchpoint): Change type of "type"
1660 parameter to int.
1661 (hppa_remove_hw_watchpoint): Ditto.
1662
1663 2003-03-29 Andrew Cagney <cagney@redhat.com>
1664
1665 * ns32k-tdep.c (ns32k_gdbarch_init): Set the call dummy breakpoint
1666 offset.
1667
1668 2003-03-29 Richard Earnshaw <rearnsha@arm.com>
1669
1670 * arm-tdep.c (arm_push_arguments): Delete.
1671 (struct stack_item): New type.
1672 (push_stack_item, pop_stack_item, arm_push_dummy_call): New functions.
1673 (arm_store_struct_return): Delte.
1674 (arm_gdbarch_init): Register arm_push_dummy_call. Don't register
1675 arm_push_arguments or arm_store_struct_return.
1676
1677 2003-03-28 Andrew Cagney <cagney@redhat.com>
1678
1679 * Makefile.in (d10v-tdep.o): Update dependencies.
1680 * remote.h (target_resume_hook, target_wait_loop_hook): Declare.
1681 * d10v-tdep.c: Include "remote.h".
1682 (target_resume_hook): Delete extern declaration.
1683 (target_wait_loop_hook): Ditto.
1684 (tdisassemble_command): Eliminate assignment in "if" conditional.
1685 (d10v_ts2_register_sim_regno): Eliminate call to
1686 legacy_register_sim_regno.
1687 (d10v_ts3_register_sim_regno): Ditto.
1688
1689 2003-03-28 Jeff Johnston <jjohnstn@redhat.com>
1690
1691 * thread.c: Reindented.
1692 * lin-lwp.c: Ditto.
1693 * linux-proc.c: Ditto.
1694
1695 2003-03-28 Bob Rossi <bob_rossi@cox.net>
1696
1697 * MAINTAINERS (write after approval): Add myself.
1698
1699 2003-03-27 Theodore A. Roth <troth@openavr.org>
1700
1701 * objc-exp.y: Add missing semi-colons.
1702
1703 2003-03-27 Andrew Cagney <cagney@redhat.com>
1704
1705 * regcache.c (write_sp): Delete function and references.
1706 * inferior.h (write_sp): Delete declaration.
1707 * valops.c (hand_function_call): Replace write_sp with
1708 TARGET_WRITE_SP.
1709 * sparc-tdep.c (sparc_push_dummy_frame): Ditto.
1710 (sparc_pop_frame): Ditto.
1711
1712 2003-03-27 Andrew Cagney <cagney@redhat.com>
1713
1714 * NEWS: Mention removal of support for hppa*-*-bsd* and
1715 hppa*-*-osf* natives, and hppa*-*-pro* target.
1716 * config/pa/xm-hppah.h: Do not include "pa/xm-pa.h".
1717 * config/pa/xm-pa.h: Obsolete file.
1718 * config/pa/xm-hppab.h: Obsolete file.
1719 * config/pa/nm-hppab.h: Obsolete file.
1720 * config/pa/tm-hppab.h: Obsolete file.
1721 * config/pa/tm-hppao.h: Obsolete file.
1722 * config/pa/nm-hppao.h: Obsolete file.
1723 * config/pa/tm-pro.h: Obsolete file.
1724 * config/pa/hppaosf.mt: Obsolete file.
1725 * config/pa/hppaosf.mh: Obsolete file.
1726 * config/pa/hppapro.mt: Obsolete file.
1727 * config/pa/hppabsd.mt: Obsolete file.
1728 * config/pa/hppabsd.mh: Obsolete file.
1729 * configure.host: Disable hppa*-*-bsd* and hppa*-*-osf*.
1730 * configure.tgt: Disable hppa*-*-bsd*, hppa*-*-pro* and
1731 hppa*-*-osf*.
1732
1733 2003-03-27 Andrew Cagney <cagney@redhat.com>
1734
1735 * d10v-tdep.c (d10v_gdbarch_init): Set push_dummy_call instead of
1736 push_arguments. Don't set push_return_address or write_sp.
1737 (d10v_push_dummy_call): Replace d10v_push_arguments.
1738 (d10v_push_return_address, d10v_write_sp): Delete function,
1739 handled by push_dummy_call.
1740
1741 2003-03-26 Andrew Cagney <cagney@redhat.com>
1742
1743 * gdbarch.sh (DEPRECATED_PUSH_ARGUMENTS): Rename PUSH_ARGUMENTS.
1744 (push_dummy_call): New pure multi-arch replacement with gdbarch,
1745 regcache and dummy_addr parameters.
1746 * gdbarch.h, gdbarch.c: Re-generate.
1747 * valops.c (hand_function_call): Use gdbarch_push_dummy_call when
1748 available; assume it will handle stack alignment and return
1749 address issues. Fall back to DEPRECATED_PUSH_ARGUMENTS and
1750 legacy_push_arguments.
1751 (legacy_push_arguments): Rename default_push_arguments.
1752 * value.h (legacy_push_arguments): Rename default_push_arguments.
1753 * i386-tdep.c (i386_push_arguments): Call legacy_push_arguments.
1754 * config/sparc/tm-sparc.h (DEPRECATED_PUSH_ARGUMENTS): Update.
1755 * config/sparc/tm-sp64.h (DEPRECATED_PUSH_ARGUMENTS): Update.
1756 * config/pa/tm-hppa.h (DEPRECATED_PUSH_ARGUMENTS): Update.
1757 * config/i386/tm-symmetry.h: Update.
1758 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
1759 * x86-64-tdep.c (x86_64_init_abi): Update.
1760 * v850-tdep.c (v850_gdbarch_init): Update.
1761 * sparc-tdep.c (sparc_gdbarch_init): Update.
1762 * sh-tdep.c (sh_gdbarch_init): Update.
1763 * s390-tdep.c (s390_gdbarch_init): Update.
1764 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1765 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1766 * mips-tdep.c (mips_gdbarch_init): Update.
1767 * mcore-tdep.c (mcore_gdbarch_init): Update.
1768 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1769 * ia64-tdep.c (ia64_gdbarch_init): Update.
1770 * i386-tdep.c (i386_gdbarch_init): Update.
1771 * hppa-tdep.c (hppa_gdbarch_init): Update.
1772 * h8300-tdep.c (h8300_gdbarch_init): Update.
1773 * frv-tdep.c (frv_gdbarch_init): Update.
1774 * d10v-tdep.c (d10v_gdbarch_init): Update.
1775 * cris-tdep.c (cris_gdbarch_init): Update.
1776 * avr-tdep.c (avr_gdbarch_init): Update.
1777 * arm-tdep.c (arm_gdbarch_init): Update.
1778 * arm-linux-tdep.c (arm_linux_init_abi): Update.
1779 * alpha-tdep.c (alpha_gdbarch_init): Update.
1780
1781 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
1782
1783 * signals/signals.c (do_target_signal_to_host): Correct realtime
1784 signal range test.
1785
1786 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
1787
1788 * breakpoint.c (handle_gnu_4_16_catch_command, get_catch_sals)
1789 (struct sal_chain, map_catch_names): Remove.
1790 (catch_exception_command_1): Don't call
1791 handle_gnu_4_16_catch_command.
1792
1793 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
1794
1795 From Mark Dettinger <dettinge@de.ibm.com>:
1796 * dwarf2cfi.c (read_2u): Increment pointer by two.
1797
1798 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
1799
1800 * signals/signals.c: Fix typos in last change.
1801
1802 2003-03-26 Daniel Jacobowitz <drow@mvista.com>
1803
1804 * signals/signals.c (REALTIME_LO, REALTIME_HI): Define if
1805 not already defined. Use __SIGRTMIN if available.
1806 (target_signal_from_host): Remove SIGRTMIN block.
1807 (do_target_signal_to_host): Remove SIGRTMIN block; check that
1808 the signal is within the realtime range.
1809
1810 2003-03-25 Adam Fedor <fedor@gnu.org>
1811
1812 * Makefile.in (infrun.o): Add $(language_h)
1813 * infrun.c (handle_inferior_event): Use skip_language_trampoline
1814 for language specific trampolines.
1815 * language.h (struct language_defn): Add skip_trampoline.
1816 (skip_language_trampoline): Declare.
1817 * language.c (unk_lang_trampoline, skip_language_trampoline):
1818 New functions.
1819 (unknown_language_defn, auto_language_defn, local_language_defn):
1820 Add ukn_lang_trampoline.
1821 * ada-lang.c (ada_language_defn): Add NULL for language
1822 specific skip_trampoline.
1823 * c-lang.c, f-lang.c, jv-lang.c, m2-lang.c, p-lang.c,
1824 scm-lang.c: Likewise.
1825 * objc-lang.c (objc_skip_trampoline): New function.
1826 (objc_language_defn): Add objc_skip_trampoline.
1827
1828 2003-03-25 Andrew Cagney <cagney@redhat.com>
1829
1830 * frame.c (get_prev_frame): Delay validating a frame's ID -
1831 non-NULL, didn't go backwards - until an attempt to unwind it to
1832 the previous frame.
1833
1834 2003-03-25 Andrew Cagney <cagney@redhat.com>
1835
1836 * gdbarch.sh (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Replace
1837 EXTRA_STACK_ALIGNMENT_NEEDED. Default to 0 not 1.
1838 * gdbarch.h, gdbarch.c: Re-generate.
1839 * config/sparc/tm-sparc.h
1840 (DEPRECATED_EXTRA_STACK_ALIGNMENT_NEEDED): Define.
1841 * sparc-tdep.c (sparc_gdbarch_init): Set
1842 deprecated_extra_stack_alignment_needed.
1843 * config/pa/tm-hppa.h (EXTRA_STACK_ALIGNMENT_NEEDED): Delete.
1844 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not clear
1845 extra_stack_alignment_needed.
1846 * v850-tdep.c (v850_gdbarch_init): Ditto.
1847 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
1848 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1849 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
1850 * cris-tdep.c (cris_gdbarch_init): Ditto.
1851 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
1852 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
1853
1854 2003-03-25 Andrew Cagney <cagney@redhat.com>
1855
1856 * gdbarch.sh (DEPRECATED_STORE_STRUCT_RETURN): Replace
1857 STORE_STRUCT_RETURN.
1858 * gdbarch.h, gdbarch.c: Regenerate.
1859 * d10v-tdep.c (d10v_store_struct_return): Delete function.
1860 (d10v_push_arguments): Set the struct return register.
1861 (d10v_gdbarch_init): Update.
1862 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
1863 * x86-64-tdep.c (x86_64_init_abi): Update.
1864 * vax-tdep.c (vax_gdbarch_init): Update.
1865 * v850-tdep.c (v850_gdbarch_init): Update.
1866 * sparc-tdep.c (sparc_gdbarch_init): Update.
1867 * sh-tdep.c (sh_gdbarch_init): Update.
1868 * s390-tdep.c (s390_gdbarch_init): Update.
1869 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
1870 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1871 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1872 * mips-tdep.c (mips_gdbarch_init): Update.
1873 * mcore-tdep.c (mcore_gdbarch_init): Update.
1874 * m68k-tdep.c (m68k_gdbarch_init): Update.
1875 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1876 * ia64-tdep.c (ia64_gdbarch_init): Update.
1877 * i386-tdep.c (i386_gdbarch_init): Update.
1878 * hppa-tdep.c (hppa_gdbarch_init): Update.
1879 * h8300-tdep.c (h8300_gdbarch_init): Update.
1880 * frv-tdep.c (frv_gdbarch_init): Update.
1881 * cris-tdep.c (cris_gdbarch_init): Update.
1882 * avr-tdep.c (avr_gdbarch_init): Update.
1883 * arm-tdep.c (arm_gdbarch_init): Update.
1884 * alpha-tdep.c (alpha_gdbarch_init): Update.
1885
1886 2003-03-25 Andrew Cagney <cagney@redhat.com>
1887
1888 * gdbarch.sh (CALL_DUMMY_STACK_ADJUST_P): Delete.
1889 (DEPRECATED_CALL_DUMMY_STACK_ADJUST): Replace
1890 CALL_DUMMY_STACK_ADJUST with a predicate variable.
1891 * gdbarch.h, gdbarch.c: Regenerate.
1892 * xstormy16-tdep.c (xstormy16_gdbarch_init): Do not set
1893 call_dummy_stack_adjust_p.
1894 * vax-tdep.c (vax_gdbarch_init): Ditto.
1895 * v850-tdep.c (v850_gdbarch_init): Ditto.
1896 * sh-tdep.c (sh_gdbarch_init): Ditto.
1897 * s390-tdep.c (s390_gdbarch_init): Ditto.
1898 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
1899 * ns32k-tdep.c (ns32k_gdbarch_init): Ditto.
1900 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1901 * mips-tdep.c (mips_gdbarch_init): Ditto.
1902 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
1903 * m68k-tdep.c (m68k_gdbarch_init): Ditto.
1904 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
1905 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
1906 * i386-tdep.c (i386_gdbarch_init): Ditto.
1907 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
1908 * frv-tdep.c (frv_gdbarch_init): Ditto.
1909 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
1910 * cris-tdep.c (cris_gdbarch_init): Ditto.
1911 * avr-tdep.c (avr_gdbarch_init): Ditto.
1912 * arm-tdep.c (arm_gdbarch_init): Ditto.
1913 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
1914 * config/sparc/tm-sp64.h (CALL_DUMMY_STACK_ADJUST): Update.
1915 * config/sparc/tm-sparc.h (CALL_DUMMY_STACK_ADJUST): Update.
1916 * config/sparc/tm-sp64.h (CALL_DUMMY_STACK_ADJUST): Update.
1917 * sparc-tdep.c (sparc_gdbarch_init): Update. Do not set
1918 call_dummy_stack_adjust_p.
1919 * inferior.h (CALL_DUMMY_STACK_ADJUST_P): Delete macro.
1920 (CALL_DUMMY_STACK_ADJUST): Delete macro.
1921 * sparc-tdep.c (sparc32_push_arguments): Update.
1922 * valops.c (hand_function_call): Update.
1923
1924 2003-03-25 Corinna Vinschen <vinschen@redhat.com>
1925
1926 * xstormy16-tdep.c (xstormy16_gdbarch_init): Add call to
1927 set_gdbarch_char_signed.
1928
1929 2003-03-25 Richard Earnshaw <rearnsha@arm.com>
1930
1931 PR cli/548
1932 * arm-tdep.c (_initialize_arm_tdep): Command is "set arm disassembler".
1933
1934 2003-03-25 Richard Earnshaw <rearnsha@arm.com>
1935
1936 * arm-tdep.c (arm_gdbarch_init): Register the disassembler function.
1937 (_initialize_arm_tdep): Don't set tm_print_insn.
1938
1939 2003-03-24 Adam Fedor <fedor@gnu.org>
1940
1941 * Makefile.in (YYOBJ): Add objc-exp.tab.o
1942 * objc-lang.h: Add multiple inclusion protection.
1943 (start_msglist, add_msglist, end_msglist): Additional declarations.
1944
1945 2003-03-24 Richard Earnshaw <rearnsha@arm.com>
1946
1947 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): ARM_FLOAT_SOFT enum
1948 value was renamed to ARM_FLOAT_SOFT_FPA.
1949
1950 2003-03-23 Andrew Cagney <cagney@redhat.com>
1951
1952 * gdbarch.sh (DEPRECATED_FRAME_CHAIN): Replace FRAME_CHAIN.
1953 (DEPRECATED_FRAME_CHAIN_VALID): Replace FRAME_CHAIN_VALID.
1954 * gdbarch.h, gdbarch.c: Regenerate.
1955 * valops.c (hand_function_call): Update.
1956 * objfiles.h (DEPRECATED_FRAME_CHAIN_VALID): Update.
1957 * frame.c (legacy_saved_regs_this_id): Update.
1958 (legacy_get_prev_frame, get_prev_frame, legacy_frame_p): Update.
1959 * dummy-frame.h: Update.
1960 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_CHAIN): Update.
1961 * config/pa/tm-hppa.h (DEPRECATED_FRAME_CHAIN_VALID): Update.
1962 * config/m68k/tm-vx68.h (DEPRECATED_FRAME_CHAIN): Update.
1963 * config/m68k/tm-os68k.h (DEPRECATED_FRAME_CHAIN): Update.
1964 * config/m68k/tm-sun3.h: Update.
1965 * blockframe.c (inside_main_func, frame_chain_valid): Update.
1966 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
1967 * x86-64-tdep.c (x86_64_init_abi): Update.
1968 * vax-tdep.c (vax_gdbarch_init): Update.
1969 * v850-tdep.c (v850_gdbarch_init): Update.
1970 * sparc-tdep.c (sparc_frame_chain, sparc_gdbarch_init): Update.
1971 * sh-tdep.c (sh_gdbarch_init): Update.
1972 * s390-tdep.c (s390_gdbarch_init): Update.
1973 * rs6000-tdep.c (rs6000_frame_saved_pc): Update.
1974 (rs6000_gdbarch_init, rs6000_frame_saved_pc): Update.
1975 (frame_get_saved_regs): Update.
1976 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
1977 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
1978 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
1979 * mips-tdep.c (mips_gdbarch_init): Update.
1980 * mcore-tdep.c (mcore_gdbarch_init): Update.
1981 * m68k-tdep.c (m68k_gdbarch_init): Update.
1982 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
1983 * ia64-tdep.c (ia64_gdbarch_init): Update.
1984 * i386-tdep.c (i386_frame_num_args, i386_gdbarch_init): Update.
1985 * i386-interix-tdep.c (i386_interix_init_abi): Update.
1986 (i386_interix_back_one_frame): Update.
1987 * hppa-tdep.c (hppa_gdbarch_init): Update.
1988 (hppa_init_extra_frame_info): Update.
1989 * h8300-tdep.c (h8300_gdbarch_init): Update.
1990 * frv-tdep.c (frv_gdbarch_init): Update.
1991 * cris-tdep.c (cris_gdbarch_init): Update.
1992 * avr-tdep.c (avr_gdbarch_init): Update.
1993 * arm-tdep.c (arm_gdbarch_init): Update.
1994 * alpha-tdep.c (alpha_gdbarch_init): Update.
1995
1996 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
1997
1998 * arm-tdep.h (arm_float_model): Add AUTO and LAST values.
1999 (arm_get_fp_model): Declare.
2000 * arm-tdep.c (fp_model_strings): New string array.
2001 (arm_fp_model, current_fp_model): New variables.
2002 (arm_get_fp_model): New function.
2003 (arm_set_fp): New function.
2004 (set_fp_model_sfunc): New function.
2005 (show_fp_model): New function.
2006 (_initialize_arm_tdep): Add new command to set/show the FPU.
2007 (arm_extract_return_value): Use arm_get_fp_model.
2008 (arm_store_return_value): Likewise.
2009 (arm_gdbarch_init): Default fpa model is softfpa. Call arm_set_fp
2010 to initialize the floating-point data types.
2011 * arm-linux-tdep.c (arm_linux_init_abi): The default floating point
2012 model is FPA.
2013
2014 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
2015
2016 * arm-tdep.c (show_arm_command): Don't print out help. Instead, show
2017 the current setting of each value.
2018 (_initialize_arm_tdep): Delete variable new_cmd and add new vars
2019 new_set and new_show. Use add_setshow_cmd_full and
2020 add_setshow_boolean_cmd as appropriate. Deprecate "set/show apcs32"
2021 commands and add new version as subcommands of "set/show arm".
2022
2023 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
2024
2025 * arm-tdep.c (setarmcmdlist, showarmcmdlist): New command lists.
2026 (set_arm_command, show_arm_command): New functions.
2027 (_initialize_arm_tdep): Add them.
2028 (num_disassembly_options): Renamed from num_flavor_options.
2029 (valid_disassembly_styles): Renamed from valid_flavors.
2030 (disassembly_style): Renamed from disassembly_flavor.
2031 (set_disassembly_style_sfunc): Renamed from
2032 set_disassembly_flavor_sfunc.
2033 (set_disassembly_style): Renamed from set_disassembly_flavor.
2034 (arm_othernames): Updated.
2035 (_initialize_arm_tdep): Deprecate "set/show disassembly-flavor"
2036 command. Add "set/show arm disassembly" commands. Deprecate
2037 "othernames" command.
2038
2039 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
2040
2041 * Makefile.in (elf_reloc_macros_h, elf_arm_h): Define.
2042 (arm-tdep.o): Depend on elf_arm_h.
2043
2044 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
2045
2046 * Makefile.in (coff_internal_h): Define.
2047 (arm-tdep.o): Update dependencies.
2048
2049 2003-03-22 Richard Earnshaw <rearnsha@arm.com>
2050
2051 * arm-tdep.c (prologue_cache): Delete.
2052 (check_prologue_cache, save_prologue_cache): Delete.
2053 (arm_scan_prologue): Don't check or update the prologue_cache.
2054 (arm_gdb_arch_init): Don't initialize it.
2055 (_initialize_arm_tdep): Likewise.
2056
2057 2003-03-21 Stephane Carrez <stcarrez@nerim.fr>
2058
2059 * MAINTAINERS (tui): Maintainer of tui code.
2060
2061 2003-03-21 Corinna Vinschen <vinschen@redhat.com>
2062
2063 * Makefile.in (ALLDEPFILES): Add i386-cygwin-tdep.c.
2064 (i386-cygwin-tdep.o): Add dependencies.
2065 * defs.h (enum gdb_osabi): Add GDB_OSABI_CYGWIN.
2066 * i386-cygwin-tdep.c: New file.
2067 * osabi.c (gdb_osabi_name): Add string for GDB_OSABI_CYGWIN.
2068 * config/i386/cygwin.mt (TDEPFILES): Add i386-cygwin-tdep.o.
2069
2070 2003-03-20 Andrew Cagney <cagney@redhat.com>
2071
2072 * infrun.c (DYNAMIC_TRAMPOLINE_NEXTPC): Delete macro.
2073 (handle_inferior_event): Remove code calling
2074 DYNAMIC_TRAMPOLINE_NEXTPC.
2075
2076 * Makefile.in (init.c): Don't add $(srcdir) prefix when a file
2077 already has a full path.
2078
2079 * main.c (gdb_main): Return 1.
2080 (captured_main): Call error to report an invalid interpreter.
2081
2082 * Makefile.in (alpha-osf1-tdep.o): Update dependencies.
2083 * alpha-osf1-tdep.c: Include "gdb_string.h".
2084
2085 2003-03-19 J. Brobecker <brobecker@gnat.com>
2086
2087 Continuing work to convert the hppa targets to multiarch partial.
2088
2089 * hppa-tdep.c (hppa_gdbarch_init): Set the push_dummy_frame gdbarch
2090 method, now that hppa_push_dummy_frame has a conformant prototype.
2091 * config/pa/tm-hppa.h (DEPRECATED_PUSH_DUMMY_FRAME): Wrap macro
2092 inside "#if !GDB_MULTI_ARCH ... #endif" conditional, in preparation
2093 for the switch to multiarch partial.
2094
2095 2003-03-19 Kevin Buettner <kevinb@redhat.com>
2096
2097 * mdebugread.c (parse_symbol): For stEnd, we're done counting
2098 when iss is issNull.
2099
2100 2003-03-18 Kevin Buettner <kevinb@redhat.com>
2101
2102 * mips-tdep.c (mips_register_name): Fix fencepost error involving
2103 NUM_REGS bounds check.
2104
2105 2003-03-18 Kevin Buettner <kevinb@redhat.com>
2106
2107 * Makefile.in (mips-tdep.o): Add dependency on $(gdb_assert_h).
2108 * mips-tdep.c (gdb_assert.h): Include.
2109 (mips_generic_reg_names, mips_processor_reg_names): Make static.
2110 (mips_register_name): Handle integer registers explicitly. Add
2111 bounds checking.
2112 (mips_r3041_reg_names, mips_r3051_reg_names, mips_r3081_reg_names)
2113 (mips_lsi33k_reg_names): Don't list integer registers; they're
2114 handled by mips_register_name() now.
2115 * config/mips/tm-irix3.h (MIPS_REGISTER_NAMES): Likewise.
2116 * config/mips/tm-irix6.h (MIPS_REGISTER_NAMES): Likewise.
2117 * config/mips/tm-mips.h (MIPS_REGISTER_NAMES): Likewise.
2118 * config/mips/tm-tx39.h (MIPS_REGISTER_NAMES): Likewise.
2119 * config/mips/tm-tx39l.h (MIPS_REGISTER_NAMES): Likewise.
2120
2121 2003-03-18 Andrew Cagney <cagney@redhat.com>
2122
2123 * printcmd.c (print_scalar_formatted): Change VALADDR parameter to
2124 a void pointer.
2125 * gdbtypes.h (print_scalar_formatted): Update declaration.
2126 * expression.h (enum exp_opcode): Remove non-ISO C trailing comma.
2127
2128 2003-03-18 J. Brobecker <brobecker@gnat.com>
2129
2130 * infrun.c (observer.h): Add #include.
2131 (normal_stop): Add call to observer_notify_normal_stop.
2132 * Makefile.in (infrun.o): Add dependency on observer.h.
2133
2134 2003-03-18 J. Brobecker <brobecker@gnat.com>
2135
2136 Continuing work to convert the hppa targets to multiarch partial.
2137 * hppa-tdep.c (hppa_push_dummy_frame): Remove unused function
2138 parameter. Reformat comment.
2139 * config/pa/tm-hppa.h (hppa_push_dummy_frame): Update profile.
2140 (DEPRECATED_PUSH_DUMMY_FRAME): Update call to hppa_push_dummy_frame()
2141 to match new profile.
2142
2143 2003-03-18 J. Brobecker <brobecker@gnat.com>
2144
2145 * hppa-tdep.c (hppa_push_dummy_frame): Remove hack which does not
2146 appear to be working in any case.
2147
2148 2003-03-18 J. Brobecker <brobecker@gnat.com>
2149
2150 * observer.c (observer_test_first_observer): New static variable.
2151 (observer_test_second_observer): Likewise.
2152 (observer_test_third_observer): Likewise.
2153 (observer_test_first_notification_function): New static function.
2154 (observer_test_second_notification_function): Likewise.
2155 (observer_test_third_notification_function): Likewise.
2156
2157 2003-03-17 J. Brobecker <brobecker@gnat.com>
2158
2159 * hppa-tdep.c (gdb_assert.h): Add missing #include.
2160 * somsolib.c (gdb_assert.h): Likewise.
2161 * Makefile.in (hppa-tdep.o): Add dependency on gdb_assert.h.
2162 (somsolib.o): Likewise.
2163
2164 2003-03-17 Andrew Cagney <cagney@redhat.com>
2165
2166 * disasm.c (gdb_disassembly): Set di.mach using the architecture's
2167 BFD. Simplify setting of di.endian.
2168
2169 2003-03-17 Andrew Cagney <cagney@redhat.com>
2170
2171 * rs6000-tdep.c (ppc_floating_point_unit_p): New function.
2172 * ppc-tdep.h (ppc_floating_point_unit_p): Declare.
2173
2174 From Elena Zannoni <ezannoni@redhat.com>
2175 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): Handle e500
2176 vector and floating-point parameters.
2177 (ppc_sysv_abi_use_struct_convention): Handle e500 struct return
2178 convention.
2179 (ppc_sysv_abi_broken_use_struct_convention): Ditto.
2180
2181 2003-03-17 Fernando Nasser <fnasser@redhat.com>
2182
2183 * MAINTAINERS: Remove my name from several maintainership roles.
2184
2185 2003-03-17 Andrew Cagney <cagney@redhat.com>
2186
2187 Fix frame off-by-one bug.
2188 * frame-unwind.h (frame_this_id_ftype): Replace
2189 frame_unwind_id_ftype.
2190 (frame_prev_register_ftype): Replace frame_unwind_reg_ftype.
2191 (struct frame_unwind): Replace "id" with "this_id". Replace "reg"
2192 with "prev_register".
2193 * frame-unwind.c (frame_unwind_find_by_pc): Return
2194 legacy_saved_regs_unwind instead of trad_frame_unwind. Update
2195 comment.
2196 * dummy-frame.c (cached_find_dummy_frame): Delete function.
2197 (dummy_frame_this_id): Replace dummy_frame_id_unwind.
2198 (dummy_frame_prev_register): Replace dummy_frame_register_unwind.
2199 (dummy_frame_unwind): Update.
2200 * sentinel-frame.c (sentinel_frame_prev_register): Replace
2201 sentinel_frame_register_unwind.
2202 (sentinel_frame_this_id): Replace sentinel_frame_id_unwind.
2203 (sentinel_frame_unwinder): Update.
2204 * frame.h (legacy_saved_regs_unwind): Replace trad_frame_unwind.
2205 (struct frame_info): Rename "unwind_cache" to "prologue_cache".
2206 * frame.c (create_sentinel_frame): Update. Initialize
2207 "prologue_cache" instead of "unwind_cache".
2208 (frame_register_unwind): Call this frame's prev_register with the
2209 next frame and this frame's prologue cache.
2210 (get_prev_frame): Simplify. Always call prev frame's this_id with
2211 this frame and prev frame's prologue cache. Document that this
2212 call is shifted one to the left when compared to the
2213 frame_register_unwind call.
2214 (legacy_saved_regs_prev_register): Replace
2215 frame_saved_regs_register_unwind.
2216 (legacy_saved_regs_this_id): Replace frame_saved_regs_id_unwind.
2217 (legacy_saved_regs_unwinder): Replace trad_frame_unwinder.
2218 (legacy_saved_regs_unwind): Replace trad_frame_unwind.
2219 * d10v-tdep.c (d10v_frame_this_id): Replace d10v_frame_id_unwind.
2220 (d10v_frame_unwind): Update.
2221 (d10v_frame_prev_register): Replace d10v_frame_register_unwind.
2222 (d10v_frame_unwind_cache): Replace this "fi" with "next_frame".
2223 (saved_regs_unwinder): Replace this "frame" with "next_frame", and
2224 "saved_regs" with "this_saved_regs".
2225
2226 2003-03-16 Andrew Cagney <cagney@redhat.com>
2227
2228 * frame.c (frame_pop): Don't call target_store_registers. Fix
2229 problem reported by Mark Kettenis.
2230
2231 2003-03-16 Mark Kettenis <kettenis@gnu.org>
2232
2233 * i386-tdep.c (i386_register_type): Renamed from
2234 i386_register_virtual_type. Adjust function signature.
2235 (i386_gdbarch_init): Set register_type instead of
2236 deprecated_max_register_raw_size,
2237 deprecated_max_register_virtual_size and register_virtual_type.
2238
2239 2003-03-14 Andrew Cagney <cagney@redhat.com>
2240
2241 * frame.c (get_prev_frame): When a legacy frame, always call
2242 legacy_get_prev_frame. Simplify unwind code using assumption that
2243 the unwinder is new.
2244 (legacy_get_prev_frame): Handle legacy sentinel frame unwind here.
2245 (legacy_frame_p): When no gdbarch_unwind_dummy_id, or
2246 SAVED_DUMMY_FRAME_TOS, assume a legacy frame.
2247
2248 2003-03-14 Andrew Cagney <cagney@redhat.com>
2249
2250 * frame.c (get_saved_register): Delete function.
2251 * frame.h (get_saved_register): Delete declaration.
2252 * xstormy16-tdep.c: Update comment.
2253 * regcache.h: Update comments.
2254 * sparc-tdep.c (sparc_init_extra_frame_info): Instead of
2255 get_saved_register and extract_address, use
2256 frame_read_unsigned_register.
2257 (sparc_frame_saved_pc): Ditto.
2258 (sparc_get_saved_register): Instead of get_saved_register, use
2259 frame_register.
2260 (sparc_pop_frame): Ditto.
2261 * findvar.c: Update comments.
2262 (value_of_register): Call frame_register instead of
2263 get_saved_register.
2264 (value_from_register): Ditto.
2265 * config/sparc/tm-sparc.h: Update comment.
2266 * breakpoint.c: Update comment.
2267
2268 2003-03-14 Andrew Cagney <cagney@redhat.com>
2269
2270 * gdbarch.sh (DEPRECATED_GET_SAVED_REGISTER): Replace
2271 GET_SAVED_REGISTER.
2272 * gdbarch.h, gdbarch.c: Re-generate.
2273 * frame.h: Update comments.
2274 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2275 * x86-64-tdep.c (x86_64_init_abi): Update.
2276 * sparc-tdep.c (sparc_gdbarch_init): Update.
2277 * sh-tdep.c (sh_gdbarch_init): Update.
2278 * mips-tdep.c (mips_gdbarch_init): Update.
2279 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2280 * cris-tdep.c (cris_gdbarch_init): Update.
2281 * ia64-tdep.c (ia64_gdbarch_init): Update.
2282 * frame.c (frame_register): Update.
2283 (get_saved_register): Update.
2284 * config/sparc/tm-sparc.h (DEPRECATED_GET_SAVED_REGISTER): Update.
2285
2286 2003-03-13 Andrew Cagney <cagney@redhat.com>
2287
2288 * gdbarch.sh (DEPRECATED_POP_FRAME): Replace POP_FRAME.
2289 * gdbarch.h, gdbarch.c: Regenerate.
2290 * valops.c (hand_function_call): Update comment.
2291 * stack.c (return_command): Update comment.
2292 * config/sparc/tm-sparc.h (DEPRECATED_POP_FRAME): Update.
2293 * config/pa/tm-hppa.h (DEPRECATED_POP_FRAME): Update.
2294 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2295 * x86-64-tdep.c (x86_64_init_abi): Update.
2296 * vax-tdep.c (vax_gdbarch_init): Update.
2297 * v850-tdep.c (v850_gdbarch_init): Update.
2298 * sparc-tdep.c (sparc_gdbarch_init): Update.
2299 * sh-tdep.c (sh_gdbarch_init): Update.
2300 * s390-tdep.c (s390_gdbarch_init): Update.
2301 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2302 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2303 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2304 * mips-tdep.c (mips_gdbarch_init): Update.
2305 * mcore-tdep.c (mcore_gdbarch_init): Update.
2306 * m68k-tdep.c (m68k_gdbarch_init): Update.
2307 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2308 * ia64-tdep.c (ia64_gdbarch_init): Update.
2309 * i386-tdep.c (i386_gdbarch_init): Update.
2310 * hppa-tdep.c (hppa_gdbarch_init): Update.
2311 * h8300-tdep.c (h8300_gdbarch_init): Update.
2312 * frv-tdep.c (frv_gdbarch_init): Update.
2313 * cris-tdep.c (cris_gdbarch_init): Update.
2314 * avr-tdep.c (avr_gdbarch_init): Update.
2315 * arm-tdep.c (arm_gdbarch_init): Update.
2316 * alpha-tdep.c (alpha_gdbarch_init): Update.
2317
2318 2003-03-13 Andrew Cagney <cagney@redhat.com>
2319
2320 * frame.c (legacy_frame_p): New function.
2321 (get_prev_frame): Use legacy_frame_p.
2322 * frame.h (legacy_frame_p): Declare.
2323
2324 2003-03-13 D. Venkatasubramanian <dvenkat@noida.hcltech.com>
2325
2326 * MAINTAINERS (write after approval): Alphabetically
2327 listing corrected.
2328
2329 2003-03-13 D. Venkatasubramanian <dvenkat@noida.hcltech.com>
2330
2331 * MAINTAINERS (write after approval): Add myself.
2332
2333 2003-03-12 Andrew Cagney <cagney@redhat.com>
2334
2335 * frame.c (get_prev_frame): Rename the frame parameter to
2336 "this_frame".
2337 (get_next_frame, legacy_get_prev_frame): Ditto.
2338
2339 2003-03-12 Andrew Cagney <cagney@redhat.com>
2340
2341 * frame.c (get_current_frame): Check target_has_registers before
2342 checking target_has_stack.
2343 * eval.c (evaluate_subexp_standard): Use get_selected_frame,
2344 instead of deprecated_selected_frame.
2345 * findvar.c (value_of_register): Pass "frame", not
2346 deprecated_selected_frame, to value_of_builtin_reg.
2347
2348 2003-03-12 Andrew Cagney <cagney@redhat.com>
2349
2350 * regcache.c (regcache_cooked_write_signed): New function.
2351 (regcache_cooked_write_unsigned): New function.
2352 (regcache_cooked_read_unsigned): Fix regnum in range assertion.
2353 (regcache_cooked_read_signed): Fix regnum in range assertion.
2354 * regcache.h (regcache_cooked_write_signed): Declare.
2355 (regcache_cooked_write_unsigned): Declare.
2356
2357 2003-03-12 Andrew Cagney <cagney@redhat.com>
2358
2359 * gdbarch.sh (DEPRECATED_FRAME_SAVED_PC): Replace FRAME_SAVED_PC.
2360 * gdbarch.h, gdbarch.c: Re-generate.
2361 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2362 * x86-64-tdep.h: Update.
2363 * x86-64-tdep.c (x86_64_init_abi): Update.
2364 * v850-tdep.c (v850_gdbarch_init): Update.
2365 * sparc-tdep.c (sparc_gdbarch_init): Update.
2366 * sh-tdep.c (sh_gdbarch_init): Update.
2367 * s390-tdep.c (s390_gdbarch_init): Update.
2368 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2369 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
2370 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2371 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2372 * mips-tdep.c (mips_gdbarch_init): Update.
2373 * mcore-tdep.c (mcore_gdbarch_init): Update.
2374 * m68k-tdep.c (m68k_gdbarch_init): Update.
2375 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2376 * ia64-tdep.c (ia64_gdbarch_init): Update.
2377 * i386-tdep.c (i386_gdbarch_init): Update.
2378 * i386-interix-tdep.c (i386_interix_init_abi): Update.
2379 * hppa-tdep.c (hppa_gdbarch_init): Update.
2380 * h8300-tdep.c (h8300_gdbarch_init): Update.
2381 * frv-tdep.c (frv_gdbarch_init): Update.
2382 * cris-tdep.c (cris_gdbarch_init): Update.
2383 * avr-tdep.c (avr_gdbarch_init): Update.
2384 * arm-tdep.c (arm_gdbarch_init): Update.
2385 * alpha-tdep.c (alpha_gdbarch_init): Update.
2386 * sh-tdep.c (sh_init_extra_frame_info): Update.
2387 (sh64_init_extra_frame_info): Update.
2388 * ns32knbsd-nat.c (frame_num_args): Update.
2389 * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Update.
2390 * xstormy16-tdep.c (xstormy16_pop_frame): Update.
2391 (xstormy16_frame_chain_valid): Update.
2392 * vax-tdep.c (vax_saved_pc_after_call): Update.
2393 * v850-tdep.c (v850_frame_chain): Update.
2394 (v850_pop_frame): Update.
2395 (v850_init_extra_frame_info): Update.
2396 * sparc-tdep.c (setup_arbitrary_frame): Update.
2397 * ns32k-tdep.c (umax_frame_num_args): Update.
2398 * s390-tdep.c (s390_pop_frame_regular): Update.
2399 * mn10300-tdep.c (mn10300_frame_chain): Update.
2400 (mn10300_pop_frame_regular): Update.
2401 (mn10300_init_extra_frame_info): Update.
2402 * mips-tdep.c (mips_init_frame_pc_first): Update.
2403 (mips_frame_chain): Update.
2404 (mips_pop_frame): Update.
2405 * mcore-tdep.c (mcore_frame_chain): Update.
2406 (mcore_pop_frame): Update.
2407 (mcore_init_extra_frame_info): Update.
2408 * arch-utils.c (init_frame_pc_default): Update.
2409 * m68k-tdep.c (isi_frame_num_args): Update.
2410 (delta68_frame_num_args): Update.
2411 (news_frame_num_args): Update.
2412 * ia64-tdep.c (ia64_pop_frame_regular): Update.
2413 * alpha-tdep.c (alpha_init_frame_pc_first): Update.
2414 (alpha_frame_chain): Update.
2415 (alpha_pop_frame): Update.
2416 * hppa-tdep.c (hppa_saved_pc_after_call): Update.
2417 (hppa_init_extra_frame_info): Update.
2418 (hppa_frame_chain): Update.
2419 (hppa_frame_chain_valid): Update.
2420 * cris-tdep.c (cris_init_extra_frame_info): Update.
2421 * avr-tdep.c (avr_init_extra_frame_info): Update.
2422 * arm-tdep.c (arm_frame_chain_valid): Update.
2423 (arm_init_extra_frame_info): Update.
2424 (arm_pop_frame): Update.
2425 * frame.c (frame_pc_unwind): Update.
2426 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_SAVED_PC): Update.
2427 (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
2428 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
2429 * config/pa/tm-hppa.h (DEPRECATED_FRAME_SAVED_PC): Update.
2430 * config/m68k/tm-delta68.h (DEPRECATED_FRAME_SAVED_PC): Update.
2431 * config/m68k/tm-linux.h (DEPRECATED_FRAME_SAVED_PC): Update.
2432
2433 2003-03-12 Andrew Cagney <cagney@redhat.com>
2434
2435 Eliminate the need for POP_FRAME.
2436 * frame.c (do_frame_unwind_register): New function.
2437 (frame_pop): When no POP_FRAME, pop the frame using register
2438 unwind and a scratch regcache.
2439 (frame_saved_regs_pop): Delete function.
2440 (trad_frame_unwinder): Update.
2441 * d10v-tdep.c (d10v_frame_pop): Delete function.
2442 (d10v_frame_unwind): Update.
2443 * sentinel-frame.c (sentinel_frame_pop): Delete function.
2444 (sentinel_frame_unwinder): Update.
2445 * dummy-frame.c (dummy_frame_pop): Delete function.
2446 (dummy_frame_unwind): Update.
2447 * frame-unwind.h (frame_unwind_pop_ftype): Delete definition.
2448 (struct frame_unwind): Update.
2449
2450 2003-03-11 Kevin Buettner <kevinb@redhat.com>
2451
2452 * mips-tdep.c (mips_ecoff_reg_to_regnum): Rename to
2453 mips_dwarf_dwarf2_ecoff_reg_to_regnum().
2454 (mips_dwarf_dwarf2_ecoff_reg_to_regnum, mips_stab_reg_to_regnum):
2455 Do range checks on register number obtained from debugging info.
2456 (mips_gdbarch_init): Call set_gdbarch_dwarf_reg_to_regnum() and
2457 set_gdbarch_dwarf2_reg_to_regnum(). Adjust call of
2458 set_gdbarch_ecoff_reg_to_regnum() to account for new name of
2459 mapping function.
2460 (do_fp_register_row): Fix typo which caused double type to be
2461 used when attempting to unpack a float.
2462
2463 2003-03-11 J. Brobecker <brobecker@gnat.com>
2464
2465 * breakpoint.c (bpstat_stop_status): Fix a small memory leak.
2466
2467 2003-03-11 Andrew Cagney <cagney@redhat.com>
2468
2469 * frame.c (deprecated_update_frame_pc_hack): Don't assume a next
2470 frame. Problem found by Corinna Vinschen.
2471
2472 2003-03-11 Pierre Muller <muller@ics.u-strasbg.fr>
2473
2474 * doublest.c (floatformat_from_length): Accept also
2475 the real size of 'long double' type.
2476
2477 2003-03-10 Daniel Jacobowitz <drow@mvista.com>
2478
2479 From Klee Dienes <kdienes@apple.com>:
2480 * breakpoint.c (bpstat_copy): Copy the command lines as well
2481 as the old value, to match what is freed in bpstat_clear.
2482
2483 2003-03-10 David Carlton <carlton@math.stanford.edu>
2484
2485 * minsyms.c (add_minsym_to_hash_table): Replace
2486 DEPRECATED_SYMBOL_NAME by SYMBOL_LINKAGE_NAME.
2487 (compare_minimal_symbols, compact_minimal_symbols)
2488 (install_minimal_symbols, find_solib_trampoline_target): Ditto.
2489 (lookup_minimal_symbol_text): Use strcmp on linkage names instead
2490 of DEPRECATED_SYMBOL_MATCHES_NAME.
2491 (lookup_minimal_symbol_solib_trampoline): Ditto.
2492
2493 2003-03-10 Andrew Cagney <cagney@redhat.com>
2494
2495 * regcache.h (regcache_cooked_read_ftype): Define.
2496 (regcache_save, regcache_restore): Add a cooked_read parameter.
2497 * regcache.c (regcache_save, regcache_restore): Update.
2498 (do_cooked_read): New function.
2499 (regcache_cpy): Pass do_cooked_read to regcache_save and
2500 regcache_restore.
2501
2502 2003-03-10 Andrew Cagney <cagney@redhat.com>
2503
2504 * gdbarch.sh (DEPRECATED_FRAME_SAVED_PC): Replace FRAME_SAVED_PC.
2505 * gdbarch.h, gdbarch.c: Re-generate.
2506 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2507 * x86-64-tdep.h: Update.
2508 * x86-64-tdep.c (x86_64_init_abi): Update.
2509 * v850-tdep.c (v850_gdbarch_init): Update.
2510 * sparc-tdep.c (sparc_gdbarch_init): Update.
2511 * sh-tdep.c (sh_gdbarch_init): Update.
2512 * s390-tdep.c (s390_gdbarch_init): Update.
2513 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2514 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
2515 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2516 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2517 * mips-tdep.c (mips_gdbarch_init): Update.
2518 * mcore-tdep.c (mcore_gdbarch_init): Update.
2519 * m68k-tdep.c (m68k_gdbarch_init): Update.
2520 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2521 * ia64-tdep.c (ia64_gdbarch_init): Update.
2522 * i386-tdep.c (i386_gdbarch_init): Update.
2523 * i386-interix-tdep.c (i386_interix_init_abi): Update.
2524 * hppa-tdep.c (hppa_gdbarch_init): Update.
2525 * h8300-tdep.c (h8300_gdbarch_init): Update.
2526 * frv-tdep.c (frv_gdbarch_init): Update.
2527 * cris-tdep.c (cris_gdbarch_init): Update.
2528 * avr-tdep.c (avr_gdbarch_init): Update.
2529 * arm-tdep.c (arm_gdbarch_init): Update.
2530 * alpha-tdep.c (alpha_gdbarch_init): Update.
2531 * sh-tdep.c (sh_init_extra_frame_info): Update.
2532 (sh64_init_extra_frame_info): Update.
2533 * ns32knbsd-nat.c (frame_num_args): Update.
2534 * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Update.
2535 * xstormy16-tdep.c (xstormy16_pop_frame): Update.
2536 (xstormy16_frame_chain_valid): Update.
2537 * vax-tdep.c (vax_saved_pc_after_call): Update.
2538 * v850-tdep.c (v850_frame_chain): Update.
2539 (v850_pop_frame): Update.
2540 (v850_init_extra_frame_info): Update.
2541 * sparc-tdep.c (setup_arbitrary_frame): Update.
2542 * ns32k-tdep.c (umax_frame_num_args): Update.
2543 * s390-tdep.c (s390_pop_frame_regular): Update.
2544 * mn10300-tdep.c (mn10300_frame_chain): Update.
2545 (mn10300_pop_frame_regular): Update.
2546 (mn10300_init_extra_frame_info): Update.
2547 * mips-tdep.c (mips_init_frame_pc_first): Update.
2548 (mips_frame_chain): Update.
2549 (mips_pop_frame): Update.
2550 * mcore-tdep.c (mcore_frame_chain): Update.
2551 (mcore_pop_frame): Update.
2552 (mcore_init_extra_frame_info): Update.
2553 * arch-utils.c (init_frame_pc_default): Update.
2554 * m68k-tdep.c (isi_frame_num_args): Update.
2555 (delta68_frame_num_args): Update.
2556 (news_frame_num_args): Update.
2557 * ia64-tdep.c (ia64_pop_frame_regular): Update.
2558 * alpha-tdep.c (alpha_init_frame_pc_first): Update.
2559 (alpha_frame_chain): Update.
2560 (alpha_pop_frame): Update.
2561 * hppa-tdep.c (hppa_saved_pc_after_call): Update.
2562 (hppa_init_extra_frame_info): Update.
2563 (hppa_frame_chain): Update.
2564 (hppa_frame_chain_valid): Update.
2565 * cris-tdep.c (cris_init_extra_frame_info): Update.
2566 * avr-tdep.c (avr_init_extra_frame_info): Update.
2567 * arm-tdep.c (arm_frame_chain_valid): Update.
2568 (arm_init_extra_frame_info): Update.
2569 (arm_pop_frame): Update.
2570 * frame.c (frame_pc_unwind): Update.
2571 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_SAVED_PC): Update.
2572 (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
2573 * config/rs6000/tm-rs6000.h (DEPRECATED_INIT_FRAME_PC_FIRST): Update.
2574 * config/pa/tm-hppa.h (DEPRECATED_FRAME_SAVED_PC): Update.
2575 * config/m68k/tm-delta68.h (DEPRECATED_FRAME_SAVED_PC): Update.
2576 * config/m68k/tm-linux.h (DEPRECATED_FRAME_SAVED_PC): Update.
2577
2578 2003-03-10 Andrew Cagney <cagney@redhat.com>
2579
2580 * gdbarch.sh (gdbarch_unwind_pc): New method.
2581 * gdbarch.h, gdbarch.c: Regenerate.
2582 * frame.c (frame_pc_unwind): Rewrite. Prefer gdbarch_unwind_pc,
2583 but use read_pc and FRAME_SAVED_PC as fall backs.
2584 (frame_saved_regs_pc_unwind): Delete function.
2585 (trad_frame_unwinder): Update.
2586 * frame-unwind.h (frame_unwind_pc_ftype): Delete declaration.
2587 (struct frame_unwind): Update.
2588 * dummy-frame.c (dummy_frame_pc_unwind): Delete function.
2589 (dummy_frame_unwind): Update.
2590 * sentinel-frame.c (sentinel_frame_pc_unwind): Delete function.
2591 (sentinel_frame_unwinder): Update.
2592 * d10v-tdep.c (d10v_frame_pc_unwind): Delete function.
2593 (d10v_frame_unwind): Update.
2594 (d10v_unwind_pc): New function.
2595 (d10v_gdbarch_init): Set unwind_pc.
2596
2597 2003-03-10 Andrew Cagney <cagney@redhat.com>
2598
2599 * gdbarch.h: Re-generate.
2600
2601 * d10v-tdep.c (d10v_frame_register_unwind): Correctly unwind the
2602 PC.
2603 (d10v_frame_pop): Unwind the PC, and not the LR, when restoring
2604 the PC register.
2605
2606 2003-03-08 Mark Kettenis <kettenis@gnu.org>
2607
2608 * gdbarch.sh (save_dummy_frame_tos): Add comment.
2609
2610 2003-03-08 Andrew Cagney <cagney@redhat.com>
2611
2612 * cli-out.c: Update copyright.
2613 (cli_out_data): Define typedef. Use instead of ui_out_data.
2614
2615 2003-03-08 Andrew Cagney <cagney@redhat.com>
2616
2617 * valarith.c (value_subscripted_rvalue): Copy the array's REGNO to
2618 the result.
2619
2620 2003-03-07 Andrew Cagney <cagney@redhat.com>
2621
2622 * gdbarch.sh: Don't generate two macro definitions when an
2623 undefined macro taking no arguments.
2624 * gdbarch.h: Regenerate.
2625
2626 2002-03-07 Michal Ludvig <mludvig@suse.cz>
2627
2628 * x86-64-tdep.c (x86_64_save_dummy_frame_tos)
2629 (x86_64_unwind_dummy_id): New functions.
2630 (x86_64_init_abi): Register these two new functions.
2631
2632 2003-03-07 Michal Ludvig <mludvig@suse.cz>
2633
2634 * x86-64-tdep.c (x86_64_function_has_prologue): New function.
2635 (x86_64_skip_prologue): Move prologue detection to
2636 separate function.
2637 * x86-64-tdep.h (x86_64_function_has_prologue): New prototype.
2638
2639 2003-03-05 Andrew Cagney <cagney@redhat.com>
2640
2641 * d10v-tdep.c (d10v_unwind_dummy_id): New function.
2642 (d10v_gdbarch_init): Set unwind_dummy_id and save_dummy_frame_tos.
2643 * frame.c (get_prev_frame): Restructure the frame ID unwind code
2644 to use unwind_dummy_id when a dummy frame.
2645 * gdbarch.sh (unwind_dummy_id): New multi-arch method with
2646 predicate.
2647 * gdbarch.h, gdbarch.c: Regneerate.
2648
2649 2003-03-05 Andrew Cagney <cagney@redhat.com>
2650
2651 * d10v-tdep.c (struct d10v_unwind_cache): Add field "base".
2652 (d10v_frame_unwind_cache): Rewrite code computing the base and SP.
2653 Do not use d10v_read_sp or d10v_read_fp when obtaining register
2654 values.
2655
2656 2003-03-05 Andrew Cagney <cagney@redhat.com>
2657
2658 * d10v-tdep.c (struct frame_extra_info): Delete unused structure.
2659 (struct d10v_unwind_cache): Delete field "frameless". Replace
2660 "next_addr" with "sp_offset". Add "r11_offset".
2661 (d10v_frame_unwind_cache): Update.
2662 (prologue_find_regs): Update. When "mv r11, sp", save the
2663 "sp_offset" in "r11_offset". Recognize "st rn, @r11", note that
2664 RN was saved in r11_offset.
2665
2666 2003-03-05 Andrew Cagney <cagney@redhat.com>
2667
2668 * frame.c (deprecated_update_frame_pc_hack): Also update the the
2669 cached PC value in the next frame.
2670
2671 2003-03-05 Andrew Cagney <cagney@redhat.com>
2672
2673 * frame.h (struct frame_info): Replace "id_unwind_cache_p" and
2674 "id_unwind_cache" with "id".
2675 (frame_id_unwind): Delete declaration.
2676 * frame.c (frame_id_unwind): Delete function.
2677 (get_prev_frame): Call the frame id unwind method directly. Store
2678 the returned next frame's ID value in NEXT_FRAME. Note that there
2679 is a problem with the wrong unwind ID being called with the wrong
2680 unwind cache.
2681
2682 2003-03-05 Daniel Jacobowitz <drow@mvista.com>
2683
2684 * Makefile.in (FLAGS_TO_PASS): Add LDFLAGS.
2685
2686 2003-03-05 James Ingham <jingham@apple.com>
2687 Daniel Jacobowitz <drow@mvista.com>
2688
2689 * cp-abi.c: Include "command.h", "gdbcmd.h", and "ui-out.h".
2690 (auto_cp_abi): New variable.
2691 (current_cp_abi, num_cp_abis): Make static.
2692 (CP_ABI_MAX): Define.
2693 (cp_abis): Turn into an array.
2694 (value_virtual_fn_field): Fix formatting.
2695 (switch_to_cp_abi, register_cp_abi): Update. register_cp_abi now
2696 takes a pointer.
2697 (set_cp_abi_as_auto_default, set_cp_abi_cmd, show_cp_abi_cmd)
2698 (list_cp_abis, _initialize_cp_abi): New functions.
2699 * cp-abi.h: Add prototype for set_cp_abi_as_auto_default. Remove
2700 declarations for cp_abis, num_cp_abis, current_cp_abi, and
2701 switch_to_cp_abi. Update prototype for register_cp_abi.
2702 * Makefile.in (cp-abi.o): Update dependencies.
2703 * minsyms.c (install_minimal_symbols): Call set_cp_abi_as_auto_default
2704 instead of switch_to_cp_abi.
2705 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Likewise. Update call to
2706 register_cp_abi.
2707 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Update call to
2708 register_cp_abi.
2709 * hpacc-abi.c (_initialize_hpacc_abi): Likewise.
2710
2711 2003-03-05 Daniel Jacobowitz <drow@mvista.com>
2712
2713 * dwarf2expr.c (new_dwarf_expr_context): Add (void) to definition.
2714 * dwarf2loc.c: Include "regcache.h".
2715 (dwarf_expr_read_reg): Rename regnum argument to dwarf_regnum. Use
2716 register_size.
2717 * Makefile.in (dwarf2loc.o): Update dependencies.
2718
2719 2003-03-04 Theodore A. Roth <troth@openavr.org>
2720
2721 * avr-tdep.c (avr_io_reg_read_command): Fix to handle case when the
2722 number of io registers reported by remote target is not a multiple of
2723 step.
2724
2725 2003-03-04 David Carlton <carlton@math.stanford.edu>
2726
2727 * symtab.c (lookup_partial_symbol): Add linkage_name argument.
2728 (lookup_symbol_aux_psymtabs): Update call to
2729 lookup_partial_symbol.
2730 (lookup_transparent_type, find_main_psymtab)
2731 (make_symbol_overload_list): Ditto.
2732
2733 2003-03-04 Kazu Hirata <kazu@cs.umass.edu>
2734
2735 * MAINTAINERS (Write after approval): Update my email address.
2736
2737 2003-03-03 Andrew Cagney <cagney@redhat.com>
2738
2739 Make MAX_REGISTER_RAW_SIZE and MAX_REGISTER_VIRTUAL_SIZE optional.
2740 * gdbarch.sh (DEPRECATED_MAX_REGISTER_RAW_SIZE): Variable with
2741 predicate. Replace MAX_REGISTER_RAW_SIZE.
2742 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto for
2743 MAX_REGISTER_VIRTUAL_SIZE.
2744 * regcache.c (legacy_max_register_raw_size): New function.
2745 (legacy_max_register_virtual_size): New function.
2746 * defs.h (MAX_REGISTER_VIRTUAL_SIZE): Define.
2747 (MAX_REGISTER_RAW_SIZE): Define.
2748 (legacy_max_register_raw_size): Declare.
2749 (legacy_max_register_virtual_size): Declare.
2750 * config/sparc/tm-sparc.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
2751 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Update.
2752 * config/sparc/tm-sp64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
2753 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto.
2754 * config/pa/tm-hppa.h (DEPRECATED_MAX_REGISTER_RAW_SIZE)
2755 (DEPRECATED_MAX_REGISTER_VIRTUAL_SIZE): Ditto.
2756 * config/pa/tm-hppa64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
2757 * config/ia64/tm-ia64.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
2758 * config/i386/tm-ptx.h (DEPRECATED_MAX_REGISTER_RAW_SIZE): Ditto.
2759 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2760 * vax-tdep.c (vax_gdbarch_init): Update.
2761 * v850-tdep.c (v850_gdbarch_init): Update.
2762 * sparc-tdep.c (sparc_gdbarch_init): Update.
2763 * sh-tdep.c (sh_gdbarch_init): Update.
2764 * s390-tdep.c (s390_gdbarch_init): Update.
2765 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2766 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2767 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2768 * mips-tdep.c (mips_gdbarch_init): Update.
2769 * mcore-tdep.c (mcore_gdbarch_init): Update.
2770 * m68k-tdep.c (m68k_gdbarch_init): Update.
2771 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2772 * ia64-tdep.c (ia64_gdbarch_init): Update.
2773 * i386-tdep.c (i386_gdbarch_init): Update.
2774 * hppa-tdep.c (hppa_gdbarch_init): Update.
2775 * h8300-tdep.c (h8300_gdbarch_init): Update.
2776 * frv-tdep.c (frv_gdbarch_init): Update.
2777 * cris-tdep.c (cris_gdbarch_init): Update.
2778 * avr-tdep.c (avr_gdbarch_init): Update.
2779 * arm-tdep.c (arm_gdbarch_init): Update.
2780 * alpha-tdep.c (alpha_gdbarch_init): Update.
2781 * d10v-tdep.c (d10v_gdbarch_init): Do not set
2782 max_register_raw_size or max_register_virtual_size.
2783
2784 2003-03-03 David Carlton <carlton@math.stanford.edu>
2785
2786 * symtab.h (DEPRECATED_SYMBOL_MATCHES_NAME): Rename from
2787 SYMBOL_MATCHES_NAME, add comment.
2788 (SYMBOL_MATCHES_NATURAL_NAME): New.
2789 * minsyms.c (lookup_minimal_symbol_solib_trampoline): Replace
2790 SYMBOL_MATCHES_NAME with DEPRECATED_SYMBOL_MATCHES_NAME.
2791 (lookup_minimal_symbol, lookup_minimal_symbol_text): Ditto.
2792 * symtab.c (lookup_partial_symbol): Use
2793 SYMBOL_MATCHES_NATURAL_NAME, not SYMBOL_MATCHES_NAME. Delete
2794 unhelpful comment.
2795 (lookup_block_symbol): Use SYMBOL_MATCHES_NATURAL_NAME, not
2796 SYMBOL_MATCHES_NAME.
2797 Fix for PR c++/33.
2798
2799 2003-03-03 David Carlton <carlton@math.stanford.edu>
2800
2801 * symtab.h (SYMBOL_MATCHES_REGEXP): Delete.
2802 * symtab.c (search_symbols): Replace uses of SYMBOL_MATCHES_REGEXP
2803 by regexp matching against SYMBOL_NATURAL_NAME.
2804
2805 2003-03-03 David Carlton <carlton@math.stanford.edu>
2806
2807 * linespec.c (find_method): Extract code into collect_methods.
2808 (collect_methods): New.
2809
2810 2003-03-02 Mark Kettenis <kettenis@gnu.org>
2811
2812 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Use get_next_frame and
2813 get_frame_base.
2814
2815 * i386-tdep.c (i386_pe_skip_trampoline_code): Replace usage of
2816 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
2817
2818 2003-03-02 Stephane Carrez <stcarrez@nerim.fr>
2819
2820 * arch-utils.c (generic_register_byte): Fix to use the loop index
2821 and not regnum when summing the size of all registers up to regnum.
2822
2823 2003-03-01 Andrew Cagney <cagney@redhat.com>
2824
2825 * gdbarch.sh (DEPRECATED_FRAME_INIT_SAVED_REGS): Rename
2826 FRAME_INIT_SAVED_REGS.
2827 * gdbarch.h, gdbarch.c: Regenerate.
2828 * stack.c (frame_info): Update.
2829 * sh-tdep.c (sh_find_callers_reg, sh64_get_saved_pr): Update.
2830 (sh_init_extra_frame_info, sh64_init_extra_frame_info): Update.
2831 (sh64_get_saved_register, sh_pop_frame, sh64_pop_frame): Update.
2832 * ns32k-tdep.c (ns32k_pop_frame): Update.
2833 * mips-tdep.c (mips_pop_frame): Update.
2834 * m68hc11-tdep.c (m68hc11_pop_frame): Update.
2835 * ia64-tdep.c (ia64_frame_chain): Update.
2836 (ia64_frame_saved_pc, ia64_get_saved_register): Update.
2837 (ia64_frameless_function_invocation): Update.
2838 (ia64_init_extra_frame_info): Update.
2839 (ia64_pop_frame_regular): Update.
2840 * frame.h (struct frame_info): Update comment.
2841 (DEPRECATED_FRAME_INIT_SAVED_REGS): Rename macro.
2842 * frame.c (frame_saved_regs_register_unwind): Update.
2843 (frame_saved_regs_register_unwind): Update.
2844 (deprecated_generic_get_saved_register): Update.
2845 * cris-tdep.c: Update comment.
2846 * config/sparc/tm-sparc.h (DEPRECATED_FRAME_INIT_SAVED_REGS):
2847 Rename macro.
2848 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
2849 * x86-64-tdep.c (x86_64_init_abi): Update.
2850 * vax-tdep.c (vax_gdbarch_init): Update.
2851 * v850-tdep.c (v850_gdbarch_init): Update.
2852 * sparc-tdep.c (sparc_gdbarch_init): Update.
2853 * sh-tdep.c (sh_gdbarch_init): Update.
2854 * s390-tdep.c (s390_gdbarch_init): Update.
2855 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
2856 * ppc-linux-tdep.c (ppc_linux_init_abi): Update.
2857 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
2858 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
2859 * mips-tdep.c (mips_gdbarch_init): Update.
2860 * mcore-tdep.c (mcore_gdbarch_init): Update.
2861 * m68k-tdep.c (m68k_gdbarch_init): Update.
2862 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
2863 * ia64-tdep.c (ia64_gdbarch_init): Update.
2864 * i386-tdep.c (i386_gdbarch_init): Update.
2865 * frv-tdep.c (frv_gdbarch_init): Update.
2866 * avr-tdep.c (avr_gdbarch_init): Update.
2867 * arm-tdep.c (arm_gdbarch_init): Update.
2868 * alpha-tdep.c (alpha_gdbarch_init): Update.
2869
2870 2003-03-01 Andrew Cagney <cagney@redhat.com>
2871
2872 * main.c (captured_main): Add OPT_WINDOWS and OPT_NOWINDOWS to
2873 option enum and switch. When no windows, set the interpreter to
2874 INTERP_CONSOLE.
2875
2876 2003-03-01 Andrew Cagney <cagney@redhat.com>
2877
2878 * main.c (captured_main): Replace magic option characters with an
2879 enum.
2880
2881 2003-03-01 Andrew Cagney <cagney@redhat.com>
2882
2883 * gdbarch.sh (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename
2884 INIT_EXTRA_FRAME_INFO.
2885 * gdbarch.h, gdbarch.c: Regenerate.
2886 * arm-tdep.c: Update comments.
2887 * sh-tdep.c, mcore-tdep.c, m68hc11-tdep.c: Ditto.
2888 * i386-interix-tdep.c, hppa-tdep.c, h8300-tdep.c: Ditto.
2889 * frame.h, avr-tdep.c: Ditto.
2890 * frame.c (get_prev_frame): DEPRECATED_INIT_EXTRA_FRAME_INFO.
2891 (create_new_frame, legacy_get_prev_frame): Ditto.
2892 * config/sparc/tm-sparc.h (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename.
2893 * config/pa/tm-hppa.h (DEPRECATED_INIT_EXTRA_FRAME_INFO): Rename.
2894 * xstormy16-tdep.c (xstormy16_gdbarch_init): Initialize
2895 deprecated_init_extra_frame_info instead of init_extra_frame_info.
2896 * x86-64-tdep.c (x86_64_init_abi): Ditto.
2897 * v850-tdep.c (v850_gdbarch_init): Ditto.
2898 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
2899 * sh-tdep.c (sh_gdbarch_init): Ditto.
2900 * s390-tdep.c (s390_gdbarch_init): Ditto.
2901 * ppc-linux-tdep.c (ppc_linux_init_abi): Ditto.
2902 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
2903 * mips-tdep.c (mips_gdbarch_init): Ditto.
2904 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
2905 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
2906 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
2907 * i386-interix-tdep.c (i386_interix_init_abi): Ditto.
2908 * hppa-tdep.c (hppa_gdbarch_init): Ditto.
2909 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
2910 * frv-tdep.c (frv_gdbarch_init): Ditto.
2911 * cris-tdep.c (cris_gdbarch_init): Ditto.
2912 * avr-tdep.c (avr_gdbarch_init): Ditto.
2913 * arm-tdep.c (arm_gdbarch_init): Ditto.
2914 * alpha-tdep.c (alpha_gdbarch_init): Ditto.
2915 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
2916
2917 2003-03-01 Andrew Cagney <cagney@redhat.com>
2918
2919 * gdbarch.sh (register_type): New function with predicate.
2920 (REGISTER_VIRTUAL_TYPE): Change to function with predicate.
2921 * gdbarch.h, gdbarch.c: Re-generate.
2922 * arch-utils.c (generic_register_byte): Use generic_register_size.
2923 (generic_register_size): When available, use
2924 gdbarch_register_type.
2925 * regcache.c (init_regcache_descr): When available, initialize the
2926 register type array using gdbarch_register_type. If the
2927 architecture supplies gdbarch_register_type, do not use the legacy
2928 regcache layout.
2929 * d10v-tdep.c (d10v_register_type): Replace
2930 d10v_register_virtual_type.
2931 (d10v_gdbarch_init): Set register_type instead of
2932 register_virtual_type.
2933
2934 2003-03-01 Andrew Cagney <cagney@redhat.com>
2935
2936 * Makefile.in (ax-gdb.o): Update dependencies.
2937 * ax-gdb.c: Include "regcache.h".
2938 (gen_expr): Use register_type instead of REGISTER_VIRTUAL_TYPE.
2939 * findvar.c (value_of_register): Ditto.
2940 * infcmd.c (default_print_registers_info): Ditto.
2941
2942 2003-03-01 Mark Kettenis <kettenis@gnu.org>
2943
2944 * i386-linux-tdep.c (find_minsym_and_objfile): Replace usage of
2945 DEPRECATED_SYMBOL_NAME with SYMBOL_LINKAGE_NAME.
2946
2947 2003-03-01 Mark Kettenis <kettenis@gnu.org>
2948
2949 * i386-linux-tdep.c (find_minsym_and_objfile): Use strcmp instead
2950 of STREQ.
2951
2952 2003-02-28 Daniel Jacobowitz <drow@mvista.com>
2953
2954 * Makefile.in (dwarf2loc.o): Update dependencies.
2955 * ax-gdb.c (gen_var_ref): Handle LOC_COMPUTED and LOC_COMPUTED_ARG.
2956 * dwarf2expr.c (read_uleb128, read_sleb128): Make non-static.
2957 * dwarf2expr.h (read_uleb128, read_sleb128): Add prototypes.
2958 * dwarf2loc.c: Include "ax.h" and "ax-gdb.h".
2959 (locexpr_tracepoint_var_ref): New function.
2960 (dwarf2_locexpr_funcs): Add locexpr_tracepoint_var_ref.
2961
2962 2003-02-28 Andrew Cagney <cagney@redhat.com>
2963
2964 * regcache.c (register_size): New function.
2965 * regcache.h (register_size): Declare
2966 * d10v-tdep.c: Use register_size instead of REGISTER_RAW_SIZE, use
2967 max_register_size instead of MAX_REGISTER_RAW_SIZE.
2968
2969 2003-02-28 David Carlton <carlton@math.stanford.edu>
2970
2971 * linespec.c (decode_compound): Extract code into find_method.
2972 (find_method): New.
2973
2974 2003-02-28 J. Brobecker <brobecker@gnat.com>
2975
2976 * Makefile.in: Add rules to build and link in observer.o.
2977
2978 2003-02-27 J. Brobecker <brobecker@gnat.com>
2979
2980 * observer.c: Minor comments edits.
2981
2982 2003-02-27 J. Brobecker <brobecker@gnat.com>
2983
2984 * observer.h, observer.c: New file.
2985
2986 2003-02-27 Andrew Cagney <cagney@redhat.com>
2987
2988 * arm-tdep.c (gdb_print_insn_arm): Rename _bfd to just bfd.
2989
2990 2003-02-27 Stephane Carrez <stcarrez@nerim.fr>
2991
2992 * m68hc11-tdep.c (M6811_OP_LDX_EXT, M6811_OP_STS_EXT): New defines.
2993 (M6812_OP_STS_EXT): Likewise.
2994 (m6811_prologue): Use the above to recognize prologue.
2995 (m6812_prologue): Likewise.
2996
2997 2003-02-27 David Carlton <carlton@math.stanford.edu>
2998
2999 * symfile.c (compare_symbols): Use SYMBOL_NATURAL_NAME, not
3000 SYMBOL_PRINT_NAME.
3001 (compare_psymbols): Ditto.
3002 * symtab.c (lookup_partial_symbol, lookup_block_symbol): Ditto.
3003
3004 2003-02-27 Michael Snyder <msnyder@redhat.com>
3005
3006 * f-lang.c (build_fortran_types): New function.
3007 (_initialize_f_language): Gdbarch-register built-in fortran types.
3008 * doublest.c (extract_floating): Fix warning text.
3009
3010 2003-02-27 Andrew Cagney <cagney@redhat.com>
3011
3012 * gdbarch.sh (DEPRECATED_PUSH_DUMMY_FRAME): Procedure with
3013 predicate. Replaces PUSH_DUMMY_FRAME.
3014 * gdbarch.h, gdbarch.c: Regnerate.
3015 * valops.c (hand_function_call): Update. Call
3016 generic_push_dummy_frame directly.
3017 * vax-tdep.c (vax_gdbarch_init): Update.
3018 * sparc-tdep.c (sparc_gdbarch_init): Update.
3019 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
3020 * m68k-tdep.c (m68k_gdbarch_init): Update.
3021 * hppa-tdep.c (hppa_gdbarch_init): Update.
3022 * alpha-tdep.c (alpha_gdbarch_init): Update.
3023 * config/sparc/tm-sparc.h (DEPRECATED_PUSH_DUMMY_FRAME): Update.
3024 * config/pa/tm-hppa.h (DEPRECATED_PUSH_DUMMY_FRAME): Update.
3025 * inferior.h (PUSH_DUMMY_FRAME): Delete definition.
3026 * xstormy16-tdep.c (xstormy16_gdbarch_init): Don't set
3027 push_dummy_frame to generic_push_dummy_frame.
3028 * v850-tdep.c (v850_gdbarch_init): Ditto.
3029 * sh-tdep.c (sh_gdbarch_init): Ditto.
3030 * s390-tdep.c (s390_gdbarch_init): Ditto.
3031 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
3032 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
3033 * mips-tdep.c (mips_gdbarch_init): Ditto.
3034 * mcore-tdep.c (mcore_gdbarch_init): Ditto.
3035 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
3036 * ia64-tdep.c (ia64_gdbarch_init): Ditto.
3037 * i386-tdep.c (i386_gdbarch_init): Ditto.
3038 * h8300-tdep.c (h8300_gdbarch_init): Ditto.
3039 * frv-tdep.c (frv_gdbarch_init): Ditto.
3040 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
3041 * cris-tdep.c (cris_gdbarch_init): Ditto.
3042 * avr-tdep.c (avr_gdbarch_init): Ditto.
3043 * arm-tdep.c (arm_gdbarch_init): Ditto.
3044
3045 2003-02-26 Kevin Buettner <kevinb@redhat.com>
3046
3047 * mips-tdep.c (show_mips_abi): New function.
3048 (_initialize_mips_tdep): Use show_mips_abi() to implement the
3049 command ``show mips abi''.
3050
3051 2003-02-26 Jeff Johnston <jjohnstn@redhat.com>
3052
3053 From Elena Zannoni <ezannoni@redhat.com>
3054 * dbxread.c (process_one_symbol): Only record line 0 if one or
3055 more sline entries have been seen for the function.
3056
3057 2003-02-26 Michael Chastain <mec@shout.net>
3058
3059 * configure: Regenerate with autoconf 000227.
3060
3061 2003-02-26 Michael Chastain <mec@shout.net>
3062
3063 Close PR build/660.
3064 * PROBLEMS (i[3456]86-*-linux*): Note explicit error message
3065 for old libc5/glibc.
3066 * gdb_thread_db.h: Die if not HAVE_UINTPTR_T.
3067
3068 2003-02-26 Kris Warkentin <kewarken@qnx.com>
3069
3070 * defs.h (gdb_osabi): Add GDB_OSABI_QNXNTO.
3071 * osabi.c (gdb_osabi_names): Add "QNX Neutrino".
3072
3073 2003-02-26 Michael Chastain <mec@shout.net>
3074
3075 * configure.in: New variable HAVE_UINTPTR_T.
3076 * configure, config.in: Regenerated.
3077
3078 2003-02-26 Daniel Jacobowitz <drow@mvista.com>
3079
3080 Fix PR build/1097.
3081 * utils.c (gdb_realpath): Move closing brace outwards one #endif.
3082
3083 2003-02-25 Andrew Cagney <cagney@redhat.com>
3084
3085 * frame.c (get_prev_frame): Add comment on check for
3086 inside_entry_func. Only check for inside_entry_file when not a
3087 dummy and not a sentinel. Check that the new frame is not inner
3088 to the old frame.
3089
3090 2003-02-25 Andrew Cagney <cagney@redhat.com>
3091
3092 * frame.c (frame_debug): New variable.
3093 (_initialize_frame): Add "set/show debug frame" command.
3094 (get_prev_frame): When frame_debug, print reason why unwind
3095 failed.
3096
3097 2003-02-25 Michael Chastain <mec@shout.net>
3098
3099 * PROBLEMS (i[3456]86-*-linux*): Require glibc 2.1.3 or later
3100 to avoid uintptr_t definition problems.
3101
3102 2003-02-25 David Carlton <carlton@math.stanford.edu>
3103
3104 * symtab.h (SYMBOL_NATURAL_NAME): New macro.
3105 (SYMBOL_LINKAGE_NAME): Ditto.
3106 (SYMBOL_PRINT_NAME): Use SYMBOL_NATURAL_NAME and
3107 SYMBOL_LINKAGE_NAME.
3108 (struct general_symbol_info): Expand comment.
3109 (DEPRECATED_SYMBOL_NAME): Rename from SYMBOL_NAME.
3110 (SYMBOL_MATCHES_NAME): Use DEPRECATED_SYMBOL_NAME.
3111 (SYMBOL_MATCHES_REGEXP): Ditto.
3112 * symtab.c (symbol_natural_name): New function.
3113 * objfiles.h: Replace all uses of SYMBOL_NAME by
3114 DEPRECATED_SYMBOL_NAME.
3115 * xcoffread.c, valops.c, typeprint.c, tracepoint.c: Ditto.
3116 * symtab.c, symmisc.c, symfile.c, stack.c, stabsread.c: Ditto.
3117 * somsolib.c, sol-thread.c, rs6000-tdep.c, p-valprint.c: Ditto.
3118 * printcmd.c, objfiles.c, objc-lang.c, mipsread.c: Ditto.
3119 * minsyms.c, mdebugread.c, linespec.c, jv-lang.c: Ditto.
3120 * i386-tdep.c, i386-linux-tdep.c, hpread.c, hppa-tdep.c: Ditto.
3121 * gnu-v2-abi.c, f-valprint.c, findvar.c, expprint.c: Ditto.
3122 * dwarfread.c, dwarf2read.c, dbxread.c, c-valprint.c: Ditto.
3123 * cp-valprint.c, coffread.c, buildsym.c, breakpoint.c: Ditto.
3124 * blockframe.c, ax-gdb.c, arm-linux-tdep.c, ada-lang.c: Ditto.
3125 * ada-exp.y: Ditto.
3126 * ada-exp.y: Update copyright.
3127 * sol-thread.c, mipsread.c, jv-lang.c, f-valprint.c: Ditto.
3128 * cp-valprint.c: Ditto.
3129
3130 2003-02-25 Jeff Johnston <jjohnstn@redhat.com>
3131
3132 * infptrace.c (detach): Do not flag error if ptrace detach fails
3133 and errno is set to ESRCH.
3134
3135 2003-02-24 Andrew Cagney <cagney@redhat.com>
3136
3137 * infptrace.c (udot_info): Change type of udot_off to long. Use
3138 paddr when printing udot_off's value.
3139
3140 2003-02-24 David Carlton <carlton@math.stanford.edu>
3141
3142 * symtab.c (make_symbol_overload_list): Only read in partial
3143 symtabs containing a matching partial symbol.
3144
3145 2003-02-24 David Carlton <carlton@math.stanford.edu>
3146
3147 * symtab.c (lookup_partial_symbol): Use strcmp_iw_ordered to
3148 do the comparison, not strcmp.
3149 * symfile.c (compare_psymbols): Ditto.
3150 * defs.h: Declare strcmp_iw_ordered.
3151 * utils.c (strcmp_iw_ordered): New function.
3152
3153 2003-02-24 Jim Blandy <jimb@redhat.com>
3154
3155 * MAINTAINERS (GNU/Linux/x86, linespec, breakpoints, Scheme
3156 support, shared libs): Remove my name from here, to better reflect
3157 reality.
3158
3159 2003-02-24 Kris Warkentin <kewarken@qnx.com>
3160
3161 * target.h: (HAVE_CONTINUABLE_WATCHPOINT): Define.
3162 (target_ops): Add to_have_continuable_watchpoint.
3163 * target.c (update_current_target): Add INHERIT line for
3164 to_have_continuable_watchpoint.
3165 * infrun.c: Remove HAVE_CONTINUABLE_WATCHPOINT defines.
3166 * config/i386/nm-i386.h, config/i386/nm-i386sco5.h,
3167 config/i386/nm-i386sol2.h, config/s390/nm-linux.h,
3168 config/sparc/nm-sun4sol2.h: HAVE_CONTINUABLE_WATCHPOINT defined as 1.
3169
3170 2003-02-24 Elena Zannoni <ezannoni@redhat.com>
3171
3172 * MAINTAINERS (Core): Drop main.c and top.c. Clarify event loop
3173 maintainership.
3174
3175 2003-02-24 Kris Warkentin <kewarken@qnx.com>
3176
3177 * solib.c (solib_open): Call target defined search function after
3178 failing with solib-search-path.
3179 * solist.h (target_so_ops): Add find_and_open_solib function hook and
3180 create define TARGET_SO_FIND_AND_OPEN_SOLIB.
3181
3182 2003-02-24 Kris Warkentin <kewarken@qnx.com>
3183
3184 * MAINTAINERS: Add myself to Write After section.
3185
3186 2003-02-23 Stephane Carrez <stcarrez@nerim.fr>
3187
3188 * m68hc11-tdep.c (m68hc11_gdbarch_init): long double is 64-bit wide.
3189
3190 2003-02-22 Stephane Carrez <stcarrez@nerim.fr>
3191
3192 * m68hc11-tdep.c (m68hc11_init_reggroups): New function.
3193 (m68hc11_add_reggroups): New function.
3194 (m68hc11_register_reggroup_p): New to register hard/soft reggroups.
3195 (m68hc11_gdbarch_init): Install the reggroups.
3196 (_initialize_m68hc11_tdep): Initialize them.
3197
3198 2003-02-21 James E Wilson <wilson@tuliptree.org>
3199
3200 * MAINTAINERS: Update my email address.
3201
3202 2003-02-21 David Carlton <carlton@math.stanford.edu>
3203
3204 * arm-tdep.c (arm_gdbarch_init): Add break after default label.
3205
3206 2003-02-21 Daniel Jacobowitz <drow@mvista.com>
3207
3208 Based on a patch from Daniel Berlin (dberlin@dberlin.org).
3209 * symtab.h: Add opaque declarations of struct axs_value and
3210 struct agent_expr.
3211 (enum address_class): Add LOC_COMPUTED and LOC_COMPUTED_ARG.
3212 (struct location_funcs): New type.
3213 (struct symbol): Add "loc" to aux_value.
3214 (SYMBOL_LOCATION_BATON, SYMBOL_LOCATION_FUNCS): New macros.
3215 * dwarf2read.c: Include "dwarf2expr.h".
3216 (dwarf2_symbol_mark_computed): New function.
3217 (read_func_scope): Use it.
3218 (var_decode_location): New function.
3219 (new_symbol): Use it.
3220 * dwarf2expr.c, dwarf2expr.h, dwarf2loc.c, dwarf2loc.h: New files.
3221
3222 * Makefile.in (SFILES): Add dwarf2loc.c and dwarf2expr.c.
3223 (dwarf2expr_h, dwarf2loc_h): New variables.
3224 (COMMON_OBS): Add dwarf2expr.o and dwarf2loc.o.
3225 (dwarf2expr.o, dwarf2loc.o): New rules.
3226 (dwarf2read.o): Add $(dwarf2expr_h) and $(dwarf2loc_h).
3227 * buildsym.c (finish_block): Handle LOC_COMPUTED and
3228 LOC_COMPUTED_ARG.
3229 * findvar.c (symbol_read_needs_frame, read_var_value): Likewise.
3230 * m2-exp.y (yylex): Likewise.
3231 * printcmd.c (address_info, print_frame_args): Likewise.
3232 * stack.c (print_block_frame_locals, print_frame_arg_vars): Likewise.
3233 * symmisc.c (print_symbol, print_partial_symbols): Likewise.
3234 * ada-lang.c (ada_resolve_subexp, symtab_for_sym)
3235 (ada_add_block_symbols, fill_in_ada_prototype): Likewise.
3236 * symtab.c (lookup_block_symbol): Likewise.
3237
3238 2003-02-20 Adam Fedor <fedor@gnu.org>
3239
3240 * symtab.h: Remove objc_specific struct
3241 (SYMBOL_OBJC_DEMANGLED_NAME): Remove.
3242 * symtab.c (symbol_init_language_specific, symbol_demangled_name):
3243 Have language_objc use cplus_specific struct.
3244
3245 2003-02-20 Tom Tromey <tromey@redhat.com>
3246
3247 * jv-valprint.c (java_value_print): Look at TYPE_TAG_NAME, not
3248 TYPE_NAME, when printing a String value. PR java/1075.
3249
3250 2003-02-20 Adam Fedor <fedor@gnu.org>
3251
3252 * objc-lang.h (find_methods): Remove declaration.
3253 * objc-lang.c (find_methods): Make static.
3254
3255 2003-02-20 Christopher Faylor <cgf@redhat.com>
3256
3257 * win32-nat.c (get_image_name): Check return value from
3258 ReadProcessMemory.
3259 (child_xfer_memory): Ditto.
3260
3261 2003-02-20 Alexandre Oliva <aoliva@redhat.com>
3262
3263 * configure.in (TARGET_SYSTEM_ROOT): Set default to
3264 ${exec_prefix}/${target_alias}/sys-root. Match explicit
3265 '${exec_prefix}' (in addition to the expansion thereof) as
3266 relocatable.
3267 * configure: Rebuilt.
3268
3269 2003-02-20 David Carlton <carlton@math.stanford.edu>
3270
3271 * symtab.c (search_symbols): Revert the search_symbols part of my
3272 2002-12-23 patch. Add comment.
3273
3274 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
3275
3276 * coffread.c (coff_symfile_read): Clean up minimal symbols earlier.
3277 * dbxread.c (elfstab_build_psymtabs): Don't call
3278 install_minimal_symbols.
3279 (stabsect_build_psymtabs): Likewise.
3280 * elfread.c (elf_symfile_read): Call install_minimal_symbols
3281 earlier.
3282 * somread.c (som_symfile_read): Call install_minimal_symbols
3283 and do_cleanups earlier.
3284 * nlmread.c (nlm_symfile_read): Likewise.
3285 * mdebugread.c (elfmdebug_build_psymtabs): Call
3286 install_minimal_symbols and make appropriate cleanups.
3287
3288 2003-02-20 Kevin Buettner <kevinb@redhat.com>
3289
3290 * solib.c (reload_shared_libraries): New function.
3291 (_initialize_solib): Add callbacks for ``set solib-search-path''
3292 and ``set solib-absolute-prefix''.
3293
3294 2003-02-20 David Carlton <carlton@math.stanford.edu>
3295
3296 * symtab.h (SYMBOL_PRINT_NAME): Rename from SYMBOL_SOURCE_NAME;
3297 expand comment.
3298 * ada-lang.c (user_select_syms, ada_finish_decode_line_1): Replace
3299 SYMBOL_PRINT_NAME with SYMBOL_SOURCE_NAME.
3300 * ada-typeprint.c (ada_typedef_print): Ditto.
3301 * ax-gdb.c (gen_var_ref): Ditto.
3302 * breakpoint.c (print_one_breakpoint): Ditto.
3303 * buildsym.c (finish_block): Ditto.
3304 * c-valprint.c (c_val_print): Ditto.
3305 * expprint.c (print_subexp): Ditto.
3306 * findvar.c (locate_var_value): Ditto.
3307 * infcmd.c (jump_command): Ditto.
3308 * linespec.c (decode_line_2, decode_compound): Ditto.
3309 * maint.c (maintenance_translate_address): Ditto.
3310 * objc-lang.c (compare_selectors, compare_classes): Ditto.
3311 * printcmd.c (build_address_symbolic, sym_info, print_frame_args):
3312 Ditto.
3313 * p-valprint.c (pascal_val_print): Ditto.
3314 * stabsread.c (define_symbol): Ditto.
3315 * stack.c (print_frame, frame_info, print_block_frame_locals)
3316 (print_frame_arg_vars, return_command): Ditto.
3317 * symfile.c (compare_symbols, compare_psymbols): Ditto.
3318 * symmisc.c (print_symbol): Ditto.
3319 * symtab.c (lookup_partial_symbol, lookup_block_symbol)
3320 (compare_search_syms, print_symbol_info, print_msymbol_info)
3321 (rbreak_command): Ditto.
3322 * tracepoint.c (tracepoints_info): Ditto.
3323 * typeprint.c (typedef_print): Ditto.
3324 * valops.c (value_of_variable, hand_function_call): Ditto.
3325 * cli/cli-cmds.c (edit_command, list_command): Ditto.
3326 * ada-typeprint.c: Update Copyright.
3327 * infcmd.c, objc-lang.c, p-valprint.c, symmisc.c: Ditto.
3328 * tracepoint.c, cli/cli-cmds.c: Ditto.
3329
3330 2003-02-20 Kevin Buettner <kevinb@redhat.com>
3331
3332 * frame.c (generic_unwind_get_saved_register): Make non-static.
3333 * frame.h (generic_unwind_get_saved_register): Declare.
3334 * mips-tdep.c (read_next_frame_reg): Fetch register from
3335 current regcache when frame is NULL.
3336 (mips_init_extra_frame_info): Pass NULL explicitly for parameter
3337 that must be NULL.
3338 (mips_get_saved_register): Call generic_unwind_get_saved_register()
3339 instead of frame_register_unwind().
3340
3341 2003-02-20 Andrew Cagney <ac131313@redhat.com>
3342
3343 * remote-sim.c (gdbsim_insert_breakpoint)
3344 (gdbsim_remove_breakpoint): Delete #ifdef SIM_HAS_BREAKPOINTS
3345 code.
3346
3347 2003-02-20 Andrew Cagney <ac131313@redhat.com>
3348
3349 * remote.c (_initialize_remote): Add commands "set/show remote
3350 hardware-watchpoint-limit" and "set/show remote
3351 hardware-breakpoint-limit".
3352 (remote_hw_watchpoint_limit): Initialize to -1.
3353 (remote_hw_breakpoint_limit): Ditto.
3354 (remote_check_watch_resources): Treat a limit of -1 as unlimited.
3355
3356 2003-02-19 Raoul Gough <RaoulGough@yahoo.co.uk>
3357
3358 * coff-pe-read.c: New file - support reading of minimal symbols from a
3359 portable executable using the export table.
3360 * coff-pe-read.h: New file.
3361 * coffread.c: Include coff-pe-read.h.
3362 (coff_symtab_read): Call read_pe_exported_syms iff no recognized
3363 debugging symbols found.
3364 * Makefile.in (SFILES): Add coff-pe-read.o.
3365 (coff_pe_read_h): Define.
3366 (COMMON_OBS): Add coff-pe-read.o.
3367 (coffread.o): Add coff_pe_read_h dependency.
3368 (coff-pe-read.o): New target.
3369
3370 2003-02-19 David Carlton <carlton@math.stanford.edu>
3371
3372 * Makefile.in (SFILES): Add block.c.
3373 (block_h): New.
3374 (COMMON_OBS): Add block.o.
3375 (block.o): New.
3376 (x86-64-tdep.o): Add $(block_h).
3377 (values.o, valops.o, tracepoint.o, symtab.o, symmisc.o, symfile.o)
3378 (stack.o, printcmd.o, p-exp.tab.o, parse.o, objfiles.o)
3379 (objc-exp.tab.o, objc-lang.o, nlmread.o, mips-tdep.o, mdebugread.o)
3380 (m2-exp.tab.o, linespec.o, jv-lang.o, jv-exp.tab.o, infcmd.o)
3381 (f-valprint.o, findvar.o, f-exp.tab.o, expprint.o, coffread.o)
3382 (c-exp.tab.o, buildsym.o, breakpoint.o, blockframe.o, ax-gdb.o)
3383 (alpha-tdep.o, ada-lang.o, ada-exp.tab.o, mi-cmd-stack.o): Ditto.
3384 * value.h: Add opaque declaration for struct block.
3385 * parser-defs.h, objc-lang.h, buildsym.h, breakpoint.h: Ditto.
3386 * ada-lang.h: Ditto.
3387 * x86-64-tdep.c: #include "block.h"
3388 * values.c, valops.c, tracepoint.c, symtab.c, symmisc.c: Ditto.
3389 * symfile.c, stack.c, printcmd.c, p-exp.y, parse.c: Ditto.
3390 * objfiles.c, objc-exp.y, objc-lang.c, nlmread.c: Ditto.
3391 * mips-tdep.c, mdebugread.c, m2-exp.y, linespec.c: Ditto.
3392 * jv-lang.c, jv-exp.y, infcmd.c, f-valprint.c: Ditto.
3393 * findvar.c, f-exp.y, expprint.c, coffread.c, c-exp.y: Ditto.
3394 * buildsym.c, breakpoint.c, blockframe.c, ax-gdb.c: Ditto.
3395 * alpha-tdep.c, ada-lang.c, ada-exp.y: Ditto.
3396 * blockframe.c (blockvector_for_pc_sect): Move to "block.c".
3397 (blockvector_for_pc, block_for_pc_sect, block_for_pc): Ditto.
3398 * symtab.c (block_function): Ditto.
3399 (contained_in): Ditto.
3400 * frame.h: Move block_for_pc and block_for_pc_sect declarations to
3401 block.h. Add opaque declaration for struct block.
3402 * symtab.h: Move block_function and contained_in declarations to
3403 block.h. Add opaque declarations for struct block, struct
3404 blockvector.
3405 (struct block): Move to block.h.
3406 (struct blockvector): Ditto.
3407 (BLOCK_START, BLOCK_END, BLOCK_FUNCTION, BLOCK_SUPERBLOCK)
3408 (BLOCK_GCC_COMPILED, BLOCK_HASHTABLE, BLOCK_NSYMS, BLOCK_SYM)
3409 (BLOCK_BUCKETS, BLOCK_BUCKET, BLOCK_HASHTABLE_SIZE)
3410 (ALL_BLOCK_SYMBOLS, BLOCK_SHOULD_SORT, BLOCKVECTOR_NBLOCKS)
3411 (BLOCKVECTOR_BLOCK, GLOBAL_BLOCK, STATIC_BLOCK, FIRST_LOCAL_BLOCK):
3412 Ditto.
3413 * block.c: New file.
3414 * block.h: New file.
3415
3416 2003-02-19 Theodore A. Roth <troth@openavr.org>
3417
3418 * avr-tdep.c (avr_extract_return_value): Remove function.
3419 (avr_store_return_value): Remove function.
3420 (avr_extract_struct_value_address): Remove function.
3421 (avr_gdbarch_init): Remove set_gdbarch_deprecated_*() calls.
3422
3423 2003-02-19 Andrew Cagney <ac131313@redhat.com>
3424
3425 * rs6000-tdep.c: Include "gdb_assert.h".
3426 (registers_e500): Add "acc" and "spefscr".
3427 (PPC_GPRS_PSEUDO_REGS): Remove trailing comma.
3428 (rs6000_gdbarch_init): Update initialization of ppc_gp0_regnum,
3429 ppc_gplast_regnum, sp_regnum and fp_regnum. Check that gp0_regnum
3430 really is "r0".
3431 (registers_e500): Mark the "acc" as a 64 bit (from Jim Willson).
3432
3433 2003-02-18 Keith Seitz <keiths@redhat.com>
3434
3435 * Makefile.in: Add gdbtk-interps.c.
3436
3437 2003-02-18 Kevin Buettner <kevinb@redhat.com>
3438
3439 * sparc-tdep.c (sparc_frame_chain): Adjust return value.
3440 * config/sparc/tm-sparc.h (init_frame_pc_noop): Declare.
3441
3442 2003-02-18 Andrew Cagney <cagney@redhat.com>
3443
3444 * symtab.h (struct objfile): Add opaque declaration.
3445
3446 2003-02-18 Elena Zannoni <ezannoni@redhat.com>
3447
3448 From Jim Ingham <jingham@apple.com>:
3449 * dbxread.c (process_one_symbol): Use last_function_start rather
3450 than function_start_offset to find the real beginning of the
3451 current function. The latter is just the text section offset on
3452 some systems, the former is always the real function start.
3453
3454 2003-02-17 Andrew Cagney <cagney@redhat.com>
3455
3456 * configure.in: Revert ${target} != ${host}.
3457
3458 2003-02-17 Andrew Cagney <ac131313@redhat.com>
3459
3460 * configure.in (Makefile): Use the test ${target} != ${host},
3461 instead of the absence of the "nm.h" file, to determine of the
3462 configuration non-native.
3463 * configure: Regenerate.
3464
3465 2003-02-14 Elena Zannoni <ezannoni@redhat.com>
3466
3467 From Brian Ford <ford@vss.fsi.com>
3468
3469 * cli/cli-decode.c (lookup_cmd_composition) [TUI]: Properly
3470 conditionalize tui_active test.
3471 (lookup_cmd_1): Ditto.
3472
3473 2003-02-14 Mark Kettenis <kettenis@gnu.org>
3474
3475 * configure.in: Add check for _etext.
3476 * maint.c (maintenance_set_profile_cmd): Use etext if _etext isn't
3477 available.
3478 * config.in, configure: regenerated.
3479
3480 2003-02-14 Daniel Jacobowitz <drow@mvista.com>
3481
3482 * dwarf2read.c (dwarf2_get_pc_bounds): Offset addresses by base.
3483
3484 2003-02-14 Andrew Cagney <ac131313@redhat.com>
3485
3486 * main.c (tui_version): Delete variable.
3487 (captured_main): When --tui, set interpreter_p to "tui" instead of
3488 enabling tui_version.
3489 * printcmd.c (display_command) [TUI]: Test tui_active instead of
3490 tui_version.
3491 * cli/cli-decode.c (lookup_cmd_composition): Ditto.
3492 * cli/cli-cmds.c (disassemble_command): Ditto.
3493 * defs.h (tui_version): Delete declaration.
3494 * Makefile.in (SUBDIR_TUI_SRCS): Add "tui/tui-interp.c".
3495 (tui-interp.o): Add rules.
3496 (SUBDIR_TUI_OBS): Add "tui-interp.o".
3497
3498 2003-02-14 Christopher Faylor <cgf@redhat.com>
3499
3500 * win32-nat.c (register_loaded_dll): Correctly set address range for
3501 just-loaded dll.
3502
3503 2003-02-12 Jason Molenda (jmolenda@apple.com)
3504
3505 * symmisc.c (print_objfile_statistics): Include information about
3506 the number of psymtabs and symtabs in each object file.
3507
3508 2003-02-13 Keith R Seitz <keiths@redhat.com>
3509
3510 * main.h (struct captured_main_args): Add interpreter_p.
3511 * main.c (captured_main): Initialize interpreter_p from context.
3512 * gdb.c (main): Set interpreter_p argument.
3513 * Makefile.in (gdb.o): Add dependency for interps.h.
3514
3515 2003-02-12 Andrew Cagney <ac131313@redhat.com>
3516
3517 * event-top.c (cli_command_loop): Delete declaration.
3518 (_initialize_event_loop): Delete function setting event_loop_hook.
3519 * event-top.h (cli_command_loop): Declare. Update copyright.
3520 (EVENT_TOP_H): Define. Wrap header in #ifdef EVENT_TOP_H.
3521 * interps.c (current_interp_command_loop): When event_loop_p, call
3522 cli_command_loop.
3523
3524 2003-02-12 Andrew Cagney <ac131313@redhat.com>
3525
3526 * interps.h (interp_command_loop_ftype): Change return type to
3527 void.
3528
3529 2003-02-12 Michal Ludvig <mludvig@suse.cz>
3530
3531 * x86-64-tdep.c (x86_64_extract_return_value)
3532 (x86_64_store_return_value): Use regcache instead of regbuf.
3533 (x86_64_gdbarch_init): Change related set_gdbarch_* functions.
3534 * x86-64-linux-nat.c (fill_gregset): Use regcache.
3535
3536 2003-02-11 Andrew Cagney <ac131313@redhat.com>
3537
3538 * acinclude.m4 (no_tcl): SUBST TCL_CC_SEARCH_FLAGS.
3539 * aclocal.m4: Regenerate.
3540 * configure: Regenerate.
3541
3542 * Makefile.in (TCL): Use TCL_CC_SEARCH_FLAGS instead of
3543 TCL_LD_SEARCH_FLAGS.
3544
3545 2003-02-10 Michal Ludvig <mludvig@suse.cz>
3546
3547 * dwarf2cfi.c: Reindented.
3548
3549 2003-02-09 Andrew Cagney <ac131313@redhat.com>
3550
3551 * interps.c (clear_interpreter_hooks): Convert function definition
3552 to ISO C.
3553
3554 2003-02-07 David Carlton <carlton@math.stanford.edu>
3555
3556 * gdb_mbuild.sh: Delete extra shift after parsing '-f'.
3557
3558 2003-02-07 Kevin Buettner <kevinb@redhat.com>
3559
3560 * gdbtypes.h (struct main_type): Move ``length'' field from here...
3561 (struct type): ...to here.
3562 (TYPE_LENGTH): Adjust to reflect different location of ``length''
3563 field.
3564 * gdbtypes.c (make_qualified_type): Set length on newly created type.
3565 (replace_type): Set length on all type variants for a given type.
3566
3567 2003-02-07 Andrew Cagney <ac131313@redhat.com>
3568
3569 * sol-thread.c, hpux-thread.c: Include "gdb_stat.h" instead of
3570 <sys/stat.h>.
3571 * Makefile.in (sol-thread.o, hpux-thread.o): Update dependencies.
3572
3573 2003-02-06 Andrew Cagney <ac131313@redhat.com>
3574
3575 * Makefile.in (symm-nat.o): Update dependencies.
3576 (sparc-nat.o, procfs.o, proc-api.o, ppc-linux-nat.o): Ditto.
3577 (lynx-nat.o, ia64-linux-nat.): Ditto.
3578 * symm-nat.c, sparc-nat.c, procfs.c, proc-api.c: Include
3579 "gdb_wait.h" instead of <wait.h> or <sys/wait.h>.
3580 * ppc-linux-nat.c, lynx-nat.c, ia64-linux-nat.c: Ditto.
3581
3582 * Makefile.in (inflow_h): Define.
3583 (procfs.o, inflow.o, procfs.o): Update dependencies.
3584 * inftarg.c (child_stop): Delete extern declaration of
3585 inferior_process_group. Include "inflow.h".
3586 * procfs.c (procfs_stop): Ditto. Include "inflow.h".
3587 * inflow.c (PROCESS_GROUP_TYPE): Move definitions from here ...
3588 * inflow.h (PROCESS_GROUP_TYPE): ... to here. New file.
3589 (our_process_group, inferior_process_group): Extern declarations.
3590
3591 * procfs.c: Include "gdb_assert.h".
3592
3593 * linux-proc.c: Include "gdb_stat.h" instead of <sys/stat.h>.
3594 * cp-valprint.c (cp_print_value_fields): Eliminate STREQN.
3595 * jv-typeprint.c (java_type_print_base): Ditto.
3596 * typeprint.c (typedef_print): Eliminate STREQ.
3597 * cli/cli-script.c (define_command, define_command): Ditto.
3598 * main.c (captured_main): Ditto.
3599 * values.c (lookup_internalvar): Ditto.
3600 * utils.c (safe_strerror, parse_escape): Eliminate assignment
3601 within `if' conditional.
3602 * linespec.c (decode_line_2): Ditto.
3603 * cli/cli-dump.c (bfd_openr_with_cleanup): Ditto.
3604 (bfd_openw_with_cleanup): Ditto.
3605
3606 2003-02-07 Mark Kettenis <kettenis@gnu.org>
3607
3608 * x86-64-tdep.c (x86_64_init_abi): Set extract_return_value to
3609 legacy_extract_return_value and store_return_value to
3610 legacy_return_value.
3611
3612 2003-02-06 Raoul Gough <RaoulGough@yahoo.co.uk>
3613
3614 * win32-nat.c (get_relocated_section_addrs): New function. Find
3615 section load addresses for symbol handling in relocated DLLs.
3616 (solib_symbols_add): Open a bfd and call get_relocated_section_addrs.
3617
3618 2003-02-05 Fred Fish <fnf@intrinsity.com>
3619
3620 * remote-e7000.c (e7000_drain_command): Fix precedence problem with
3621 '=' and '!='.
3622 * rdi-share/ardi.c (wait_for_debug_message): Fix precedence problem
3623 with '&' and '=='.
3624 (angel_RDI_info): Ditto.
3625 * infttrace.c (threads_continue_all_but_one): Fix precedence problem
3626 with '&' and '!='.
3627 (threads_continue_all_with_signals): Ditto.
3628
3629 2003-02-05 Jim Ingham <jingham@apple.com>
3630 Keith Seitz <keiths@redhat.com>
3631 Elena Zannoni <ezannoni@redhat.com>
3632 Andrew Cagney <ac131313@redhat.com>
3633
3634 * Makefile.in (SUBDIR_CLI_OBS): Add "cli-interp.o".
3635 (SUBDIR_CLI_SRCS): Add "cli/cli-interp.c".
3636 (SUBDIR_MI_OBS): Add "mi-interp.o".
3637 (SUBDIR_MI_SRCS): Add "mi/mi-interp.c".
3638 (SFILES): Add "interps.c".
3639 (COMMON_OBS): Add "interps.o".
3640 (interps_h, mi_main_h): Define.
3641 (interps.o, cli-interp.o, mi-interp.o): Add dependencies.
3642 (mi-main.o, main.o, event-top.o): Update dependencies.
3643 * cli/cli-interp.c: New file.
3644 * interps.h, interps.c: New files.
3645 * top.c: (gdb_init): Don't install the default interpreter, handed
3646 by captured_main.
3647 * main.c: Include "interps.h".
3648 (interpreter_p): Note that it should malloc'ed.
3649 (captured_command_loop): Call current_interp_command_loop.
3650 (captured_main): Initialize interpreter_p to INTERP_CONSOLE. Use
3651 xfree and xstrdup when updating interpreter_p. Install the
3652 default interpreter. Add hack to stop mi1's copyright notice
3653 being encoded.
3654 * event-top.h (gdb_setup_readline): Declare.
3655 (gdb_disable_readline): Declare.
3656 * event-top.c: Include "interps.h".
3657 (display_gdb_prompt): Call current_interp_display_prompt_p.
3658 (gdb_setup_readline): Initialize gdb_stdout, gdb_stderr,
3659 gdb_stdlog, and gdb_stdtarg.
3660 (_initialize_event_loop): Don't call gdb_setup_readline.
3661 * cli-out.c (cli_out_set_stream): New function.
3662 * cli-out.h (cli_out_set_stream): Declare.
3663
3664 2003-02-06 Mark Kettenis <kettenis@gnu.org>
3665
3666 * configure.tgt (i[3456]86-*-sysv4.2*, i[3456]86-*-sysv4*,
3667 i[3456]86-*-sysv5*, i[3456]86-*-sco3.2v5*): Remove. These are all
3668 handled fine by i[3456]86-*sco* and i[3456]86-sysv*.
3669 * config/i386/i386sco5.mt, config/i386/i386v4.mt,
3670 config/i386/i386v42mp.mt: Removed.
3671
3672 2003-02-05 Mark Kettenis <kettenis@gnu.org>
3673
3674 * configure.tgt (*-*-solaris*): Set gdb_osabi to
3675 GDB_OSABI_SOLARIS.
3676
3677 2003-02-05 Michael Chastain <mec@shout.net>
3678
3679 * PROBLEMS (i[3456]86-*-linux*): Warn about binutils
3680 2.12.1 and earlier versions.
3681
3682 2003-02-05 Andrew Cagney <ac131313@redhat.com>
3683
3684 Remove orphaned hosts, targets and files.
3685 * config/i386/gdbserve.mt, config/m68k/nm-apollo68b.h: Delete.
3686 * config/m68k/nm-hp300bsd.h, config/m68k/tm-apollo68b.h: Delete.
3687 * config/m68k/tm-es1800.h, config/m68k/tm-hp300bsd.h: Delete.
3688 * config/m68k/tm-mac.h, config/m68k/xm-apollo68b.h: Delete.
3689 * config/pa/hpux1020.mt, config/pa/hpux11.mt: Delete.
3690 * config/pa/hpux11w.mt, config/powerpc/gdbserve.mt: Delete.
3691 * config/powerpc/ppcle-eabi.mt, config/powerpc/ppcle-sim.mt: Delete.
3692 * config/powerpc/tm-ppc-sim.h, config/sparc/sp64sim.mt: Delete.
3693 * config/sparc/tm-sp64sim.h: Delete.
3694 * configure.host: Delete strongarm-*-*, xscale-*-*, and arm*-*-*
3695 hosts.
3696 * configure.tgt: Delete i[3456]86-*-sco3.2v4*, and
3697 mips*-dec-mach3* targets.
3698
3699 2003-02-04 Michael Chastain <mec@shout.net>
3700
3701 * NEWS: Fix typo: sepcifying -> specifying.
3702
3703 2003-02-04 Michael Chastain <mec@shout.net>
3704
3705 * dwarfread.c: Add documentation on the state of dwarf-1,
3706 looking towards obsoletion.
3707
3708 2003-02-03 Michael Chastain <mec@shout.net>
3709
3710 * config/djgpp/fnchange.lst: Add gdb/testsuite/gdb.c++/pr-1023.cc,
3711 gdb/testsuite/gdb.c++/pr-1023.exp.
3712
3713 2003-02-04 Andrew Cagney <ac131313@redhat.com>
3714
3715 * values.c: Delete code conditional on IS_TRAPPED_INTERNALVAR.
3716 * TODO: Delete reference to IS_TRAPPED_INTERNALVAR.
3717
3718 * utils.c (init_page_info): Delete reference to MPW in comments.
3719 * main.c (captured_main): Delete #ifdef MPW.
3720
3721 2003-02-04 Andrew Cagney <ac131313@redhat.com>
3722
3723 * NEWS: Note that the m32r-*-elf* is obsolete.
3724 * monitor.c (monitor_expect): Obsolete reference to m32r.
3725 * configure.tgt: Mark m32r-*-elf* as obsolete.
3726 * MAINTAINERS: Mark m32k as obsolete.
3727 * m32r-rom.c: Obsolete file.
3728 * config/m32r/m32r.mt: Obsolete file.
3729 * config/m32r/tm-m32r.h: Obsolete file.
3730 * m32r-stub.c: Obsolete file.
3731 * m32r-tdep.c: Obsolete file.
3732
3733 2003-02-04 Andrew Cagney <ac131313@redhat.com>
3734
3735 * NEWS: Mention that the z8k-zilog-none is obsolete.
3736 * MAINTAINERS: Mark z8k as obsolete.
3737 * configure.tgt: Obsolete the z8k-*-coff* target.
3738 * config/z8k/z8k.mt: Obsolete file.
3739 * config/z8k/tm-z8k.h: Obsolete file.
3740 * z8k-tdep.c: Obsolete file.
3741
3742 2003-02-04 Andrew Cagney <ac131313@redhat.com>
3743
3744 * NEWS: Mention that the mn10200-elf is obsolete.
3745 * configure.tgt: Obsolete mn10200-*-* target.
3746 * breakpoint.c (update_breakpoints_after_exec): Update comment to
3747 mention that the mn10200 is obsolete.
3748 * breakpoint.h: Ditto.
3749 * MAINTAINERS: Mark the mn10200-elf as obsolete.
3750 * config/mn10200/mn10200.mt: Obsolete file.
3751 * config/mn10200/tm-mn10200.h: Obsolete file.
3752 * mn10200-tdep.c: Obsolete file.
3753
3754 2003-02-04 Andrew Cagney <ac131313@redhat.com>
3755
3756 * MAINTAINERS: Mark h8500 as obsolete.
3757 * configure.tgt (h8500-*-*): Mark h8500 code as obsolete.
3758 * findvar.c (value_from_register): Ditto.
3759 * h8500-tdep.c: Mark file as obsolete.
3760 * config/h8500/h8500.mt: Ditto.
3761 * config/h8500/tm-h8500.h: Ditto.
3762 * NEWS: Mention that h8500 is obsolete.
3763
3764 2003-02-04 David Carlton <carlton@math.stanford.edu>
3765
3766 * objfiles.c (allocate_objfile): Always set name. Add comment at
3767 start of function.
3768 * jv-lang.c (get_dynamics_objfile): Add comment.
3769
3770 2003-02-04 David Carlton <carlton@math.stanford.edu>
3771
3772 * symtab.h (SYMBOL_LINKAGE_NAME): Delete.
3773 * printcmd.c (build_address_symbolic): Replace uses of
3774 SYMBOL_LINKAGE_NAME by equivalent uses of SYMBOL_SOURCE_NAME,
3775 SYMBOL_NAME, and asm_demangle.
3776 Update copyright.
3777
3778 2003-02-04 David Carlton <carlton@math.stanford.edu>
3779
3780 * linespec.c (decode_compound): Extract code into
3781 lookup_prefix_sym.
3782 (lookup_prefix_sym): New function.
3783
3784 2003-02-04 David Carlton <carlton@math.stanford.edu>
3785
3786 * gdbtypes.h: Delete INTEGER_COERCION_BADNESS,
3787 FLOAT_COERCION_BADNESS.
3788 * gdbtypes.c (rank_one_type): Replace all uses of
3789 INTEGER_COERCION_BADNESS by INTEGER_CONVERSION_BADNESS.
3790
3791 2003-02-04 Jim Blandy <jimb@redhat.com>
3792
3793 * dwarf2read.c (dwarf2_locate_sections): When we find a macro info
3794 section, let dwarf_macinfo_section point to it, not
3795 dwarf_loc_section.
3796
3797 2003-02-04 Daniel Jacobowitz <drow@mvista.com>
3798
3799 Pointed out by Anton Blanchard <anton@samba.org>.
3800 * ppc-linux-tdep.c (insn_is_sigreturn): New function.
3801 (ppc_linux_at_sigtramp_return_path): Use it.
3802
3803 2003-02-04 Daniel Jacobowitz <drow@mvista.com>
3804
3805 * defs.h (streq): Add prototype.
3806 * utils.c (streq): New function.
3807
3808 * dwarf2read.c (new_symbol): Use SYMBOL_SET_NAMES instead of
3809 SYMBOL_NAME and SYMBOL_INIT_DEMANGLED_NAME.
3810 * mdebugread.c (new_symbol): Likewise.
3811 * stabsread.c (define_symbol): Likewise.
3812 * coffread.c (process_coff_symbol): Likewise.
3813 * dwarfread.c (new_symbol): Likewise.
3814
3815 * minsyms.c (prim_record_minimal_symbol_and_info): Use
3816 SYMBOL_SET_NAMES instead of setting SYMBOL_NAME. Set the language
3817 here.
3818 (install_minimal_symbols): Don't set SYMBOL_LANGUAGE or call
3819 SYMBOL_INIT_DEMANGLED_NAME.
3820 * objfiles.c: Include "hashtab.h".
3821 (allocate_objfile): Call htab_set_functions_ex for the
3822 demangled_names_hash.
3823 (free_objfile): Call htab_delete for the demangled_names_hash.
3824 * objfiles.h (struct htab): Add declaration.
3825 (struct objfile): Add demangled_names_hash.
3826 * symfile.c: Include "hashtab.h".
3827 (reread_symbols): Call htab_delete for the demangled_names_hash.
3828 (add_psymbol_to_list): Use SYMBOL_SET_NAMES instead of putting
3829 SYMBOL_NAME in the bcache.
3830 * symtab.c: Include "hashtab.h". Update comments.
3831 (create_demangled_names_hash, symbol_set_names): New functions.
3832 (symbol_find_demangled_name): New function, broken out from
3833 symbol_init_demangled_names.
3834 (symbol_init_demangled_names): Use it.
3835 * symtab.h (SYMBOL_INIT_DEMANGLED_NAME): Add missing parentheses.
3836 (SYMBOL_SET_NAMES): New macro.
3837 (symbol_set_names): Add prototype.
3838
3839 2003-02-03 Jim Blandy <jimb@redhat.com>
3840
3841 Use a single, consistent representation for an empty minimal
3842 symbol table in an objfile.
3843 * objfiles.c (terminate_minimal_symbol_table): New function.
3844 (allocate_objfile): Call it.
3845 * objfiles.h (terminate_minimal_symbol_table): New declaration.
3846 (ALL_MSYMBOLS): No need to test whether (objfile)->msymbols is
3847 non-NULL.
3848 * minsyms.c (lookup_minimal_symbol_by_pc_section): To see whether
3849 objfile has minimal symbols, compare minimal_symbol_count to zero,
3850 instead of comparing msymbols with NULL.
3851 * objfiles.c (have_minimal_symbols): Same.
3852 * solib-sunos.c (solib_add_common_symbols): Call
3853 terminate_minimal_symbol_table.
3854 * symfile.c (reread_symbols): Same.
3855
3856 2003-02-03 Kevin Buettner <kevinb@redhat.com>
3857
3858 * s390-tdep.c (s390_address_class_type_flags)
3859 (s390_address_class_type_flags_to_name)
3860 (s390_address_class_name_to_type_flags): New functions.
3861 (s390_gdbarch_init): Define ADDRESS_CLASS_TYPE_FLAGS_TO_NAME,
3862 ADDRESS_CLASS_NAME_TO_TYPE_FLAGS, and ADDRESS_CLASS_TYPE_FLAGS.
3863
3864 2003-02-03 Michael Snyder <msnyder@redhat.com>
3865
3866 * arm-tdep.c: Fix spell-o in comment.
3867
3868 2003-02-03 Michal Ludvig <mludvig@suse.cz>
3869
3870 * dwarf2cfi.c (pointer_encoding): Added new parameter.
3871 * dwarf2cfi.c, dwarf2read.c: Changed all warnings and
3872 error messages to contain BFD filename.
3873
3874 2003-02-02 Elena Zannoni <ezannoni@redhat.com>
3875
3876 Fix PR gdb/742 gdb/743 gdb/877
3877 * disasm.c (dump_insns): Use make_cleanup_ui_out_tuple_begin_end.
3878 (do_mixed_source_and_assembly): Use
3879 make_cleanup_ui_out_tuple_begin_end and
3880 make_cleanup_ui_out_tuple_begin_end.
3881 (do_mixed_source_and_assembly): Ditto.
3882 * thread.c (do_captured_list_thread_ids): Ditto.
3883 * ui-out.h (ui_out_table_begin, ui_out_list_begin,
3884 ui_out_tuple_begin, ui_out_table_end, ui_out_list_end,
3885 ui_out_tuple_end): Delete prototypes.
3886 * ui-out.c (ui_out_list_begin, ui_out_tuple_begin,
3887 ui_out_list_end, ui_out_tuple_end): Delete.
3888
3889 From Kevin Buettner <kevinb@redhat.com>:
3890 * ui-out.h (make_cleanup_ui_out_table_begin_end): New function.
3891 * ui-out.c (make_cleanup_ui_out_table_begin_end)
3892 (do_cleanup_table_end): New functions.
3893 * breakpoint.c (print_it_typical, print_one_breakpoint, mention):
3894 Use cleanups to invoke_ui_out_tuple_end().
3895 (breakpoint_1): Use cleanup to invoke ui_out_table_end().
3896 * cli/cli-setshow.c (cmd_show_list): Use
3897 make_cleanup_ui_out_tuple_begin_end.
3898
3899 2003-02-02 Andrew Cagney <ac131313@redhat.com>
3900
3901 * frame.c (frame_unwind_register): New function.
3902 (frame_unwind_unsigned_register): Use.
3903 (frame_unwind_signed_register): Use.
3904 (frame_read_register): New function.
3905 * frame.h (frame_unwind_register): Declare.
3906 (frame_read_register): Declare.
3907
3908 * d10v-tdep.c (d10v_frame_pop): Rewrite. Use regcache_cooked_write
3909 and frame_unwind_register instead of read_memory, write_register
3910 and deprecated_write_register_bytes.
3911
3912 2003-02-02 Andrew Cagney <ac131313@redhat.com>
3913
3914 * frame.h: Note that namelen can be negative.
3915 * frame.c (frame_map_name_to_regnum): When LEN is negative, use
3916 NAME's length.
3917
3918 * NEWS: Mention that the d10v's `regs' command is deprecated.
3919 * d10v-tdep.c (d10v_gdbarch_init): Set print_registers_info.
3920 (d10v_print_registers_info): New function.
3921 (show_regs): Call d10v_print_registers_info.
3922 (_initialize_d10v_tdep): Mark "show regs" command as deprecated.
3923
3924 2003-02-02 Mark Kettenis <kettenis@gnu.org>
3925
3926 * stack.c (print_frame_info): Restore call to annotate_frame_begin
3927 lost in the previous patch.
3928
3929 2003-02-01 Andrew Cagney <ac131313@redhat.com>
3930
3931 From 2002-11-09 Jason Molenda (jason-cl@molenda.com)
3932 * stack.c (print_frame_info_base): Output complete FRAME tuple
3933 for synthesized frames.
3934
3935 2003-02-02 Andrew Cagney <ac131313@redhat.com>
3936
3937 * mips-nat.c (zerobuf): Delete.
3938 (fetch_inferior_registers): Alloc local zerobuf.
3939 (fetch_core_registers): Alloc local zerobuf.
3940 * d10v-tdep.c (show_regs): Don't allocate a dynamic array using
3941 MAX_REGISTER_RAW_SIZE or MAX_REGISTER_VIRTUAL_SIZE.
3942 * thread-db.c (thread_db_store_registers): Ditto.
3943 * sh-tdep.c (sh_do_register): Ditto.
3944 * rom68k-rom.c (rom68k_supply_one_register): Ditto.
3945 * remote-sim.c (gdbsim_store_register): Ditto.
3946 * remote-mips.c (mips_wait, mips_fetch_registers): Ditto.
3947 * remote-e7000.c (fetch_regs_from_dump): Ditto.
3948 * monitor.c (monitor_supply_register): Ditto.
3949 * mipsv4-nat.c (supply_gregset, supply_fpregset): Ditto.
3950 * mips-nat.c (fetch_inferior_registers): Ditto.
3951 * m68klinux-nat.c (fetch_register): Ditto.
3952 * lynx-nat.c (fetch_inferior_registers): Ditto.
3953 (fetch_inferior_registers): Ditto.
3954 * irix4-nat.c (supply_gregset, supply_fpregset): Ditto.
3955 * hpux-thread.c (hpux_thread_fetch_registers): Ditto.
3956 (hpux_thread_store_registers): Ditto.
3957 * hppah-nat.c (fetch_register): Ditto.
3958 * hppab-nat.c (fetch_register): Ditto.
3959 * hppa-tdep.c (pa_register_look_aside): Ditto.
3960 (pa_print_fp_reg, pa_strcat_fp_reg): Ditto.
3961 * dve3900-rom.c (fetch_bitmapped_register): Ditto.
3962
3963 2003-02-01 Andrew Cagney <ac131313@redhat.com>
3964
3965 * gdbarch.sh: Explictly specify all method levels. When a
3966 variable with an empty level, provide a non-multi-arch default.
3967 (BELIEVE_PCC_PROMOTION_TYPE): Set level to empty.
3968 * gdbarch.h: Re-generate.
3969 * stabsread.c (BELIEVE_PCC_PROMOTION_TYPE): Delete. Always defined.
3970 * config/m68k/tm-sun3.h (BELIEVE_PCC_PROMOTION_TYPE): Define as 1
3971
3972 2003-02-01 Andrew Cagney <ac131313@redhat.com>
3973
3974 * defs.h (host_pointer_to_address): Delete declaration.
3975 (address_to_host_pointer): Delete declaration.
3976 * utils.c (host_pointer_to_address): Delete function.
3977 (address_to_host_pointer): Delete function.
3978 * procfs.c (procfs_address_to_host_pointer): New function.
3979 * procfs.c (proc_set_watchpoint): Use.
3980 (procfs_can_use_hw_breakpoint): Update comments.
3981 * somsolib.c (hpux_address_to_host_pointer_hack): New function.
3982 (som_solib_add): Use.
3983 * hppa-tdep.c (hppa_pointer_to_address_hack): New function.
3984 * hppa-tdep.c (unwind_command): Use.
3985
3986 2003-02-01 Andrew Cagney <ac131313@redhat.com>
3987
3988 * gdb_dirent.h: Mark up valid uses of <dirent.h>, d_namelen and
3989 strlen d_name.
3990
3991 * main.c (captured_main): Delete #ifdef ADDITIONAL_OPTIONS,
3992 ADDITIONAL_OPTION_CASES, and ADDITIONAL_OPTION_HANDLER code.
3993 (print_gdb_help): Delete #ifdef ADDITIONAL_OPTION_HELP code.
3994 * stabsread.c (DBX_PARM_SYMBOL_CLASS): Delete macro.
3995 (define_symbol): Update.
3996 * symfile.c (generic_load): Remove references to nindy.
3997 * symtab.c: Remove references to nindy.
3998
3999 2003-02-01 Andrew Cagney <ac131313@redhat.com>
4000
4001 * infcmd.c (print_float_info): Delete code conditional on
4002 FLOAT_INFO.
4003 * config/nm-lynx.h: Delete #undef FLOAT_INFO. Update copyright.
4004 * config/m68k/nm-apollo68b.h: Ditto.
4005 * config/i386/tm-ptx.h (FLOAT_INFO): Delete. Update copyright.
4006 * config/ns32k/nm-nbsd.h (FLOAT_INFO): Ditto.
4007 * config/i386/tm-symmetry.h (FLOAT_INFO): Ditto.
4008
4009 2003-02-01 Mark Kettenis <kettenis@gnu.org>
4010
4011 * config/i386/tm-i386os9k.h: Removed.
4012
4013 * configure.host (i[3456]86-*-isc*): Set gdb_host to i386v.
4014 Remove i[3456]86-*-sysv3.2* and i[3456]86-*-sysv32* entries since
4015 they're identical to i[3456]86-*-sysv* now.
4016 * config/i386/i386v32.mh: Removed.
4017 * config/i386/xm-i386v32.h: Removed.
4018 * config/i386/xm-i386sco.h (U_FPSTATE): Remove macro.
4019
4020 * config/i386/i386mk.mt, config/i386/i386mk.mh: Removed.
4021
4022 * config/i386/i386dgux.mh: Removed.
4023 * configure.host (i[3456]86-*-dgux): Set gdb_host to i386v4.
4024
4025 * configure.in: Fix typo.
4026 * configure: Regenerated.
4027
4028 2003-01-31 David Carlton <carlton@math.stanford.edu>
4029
4030 * dwarf2read.c (dwarf2_locate_sections): Set
4031 dwarf_ranges_section.
4032
4033 2003-01-31 Andrew Cagney <ac131313@redhat.com>
4034
4035 * objc-exp.y, c-exp.y, f-exp.y: Remove PTR casts.
4036 * utils.c: Update comments documenting legitimate uses of PTR.
4037
4038 * utils.c: Re-indent.
4039
4040 * config/djgpp/fnchange.lst: Delete nindy files.
4041 * nindy-share/ttyflush.c, nindy-share/stop.h: Delete files.
4042 * nindy-share/nindy.c, nindy-share/env.h: Delete files.
4043 * nindy-share/coff.h, nindy-share/block_io.h: Delete files.
4044 * nindy-share/b.out.h, nindy-share/VERSION: Delete files.
4045 * nindy-share/README, nindy-share/Onindy.c: Delete files.
4046 * nindy-tdep.c, nindy-share/Makefile: Delete files.
4047 * Makefile.in (init.c): Remove nindy references.
4048 (saber_gdb): Delete rule.
4049 (ALLDEPFILES): Delete hp300ux-nat.c, nindy-tdep.c,
4050 nindy-share/Onindy.c, nindy-share/nindy.c, nindy-share/ttyflush.c,
4051 and a68v-nat.c.
4052 (hp300ux-nat.o, a68v-nat.o, ptx4-nat.o): Delete rules.
4053 (Onindy.o, nindy.o, ttyflush.o, nindy-tdep.o): Delete rules.
4054 (HFILES_NO_SRCDIR): Delete nindy-share/b.out.h,
4055 nindy-share/block_io.h, nindy-share/coff.h, nindy-share/env.h, and
4056 nindy-share/stop.h.
4057 * hp300ux-nat.c, a68v-nat.c, ptx4-nat.c: Delete files.
4058 * saber.suppress: Delete file.
4059
4060 2003-01-31 Daniel Jacobowitz <drow@mvista.com>
4061
4062 * dbxread.c (stabs_data): New static variable.
4063 (fill_symbuf): Support an in-memory buffer for stabs data.
4064 (stabs_seek): New function.
4065 (dbx_psymtab_to_symtab): Relocate the stabs data if necessary.
4066 (read_ofile_symtab): Use stabs_seek.
4067 (elfstab_build_psymtabs): Take an asection* instead of
4068 an offset and size. Relocate the stabs data if necessary.
4069 Save the section* for dbx_psymtab_to_symtab.
4070 * dwarf2read.c: Add section variables for each debug section.
4071 (dwarf2_locate_sections): Fill them in.
4072 (dwarf2_read_section): Take an asection* argument.
4073 Relocate the section contents if necessary.
4074 (dwarf2_build_psymtabs, dwarf2_build_psymtabs_easy): Update callers.
4075 * dwarf2cfi.c (parse_frame_info): Take a section argument and pass
4076 it to dwarf2_read_section.
4077 (dwarf2_build_frame_info): Update callers.
4078 * elfread.c (elf_symfile_read): Update call to
4079 elfstab_build_psymtabs.
4080 * gdb-stabs.h (struct dbx_symfile_info): Add stab_section.
4081 (DBX_STAB_SECTION): New macro.
4082 * stabsread.h (elfstab_build_psymtabs): Update prototype.
4083 * symfile.c (symfile_dummy_outputs): New function.
4084 (symfile_relocate_debug_section): New function.
4085 * symfile.h (symfile_relocate_debug_section): Add prototype.
4086
4087 2003-01-31 Richard Henderson <rth@redhat.com>
4088
4089 * alpha-nat.c (REGISTER_PTRACE_ADDR): Merge into ...
4090 (register_addr): ... here. Support ALPHA_UNIQUE_REGNUM.
4091 (fetch_elf_core_registers): Support ALPHA_UNIQUE_REGNUM.
4092 * alpha-tdep.c (alpha_register_name): Add "unique".
4093 * alpha-tdep.h (ALPHA_NUM_REGS): Increment.
4094 (ALPHA_UNIQUE_REGNUM): New.
4095 * config/alpha/nm-linux.h (ALPHA_UNIQUE_PTRACE_ADDR): New.
4096
4097 2003-01-31 Andrew Cagney <ac131313@redhat.com>
4098
4099 * README: Remove reference to Ericsson 1800 monitor.
4100 * Makefile.in (remote-es.o): Delete rule.
4101 (ALLDEPFILES): Delete remote-es.c.
4102 * remote-es.c: Delete file.
4103 * config/m68k/es1800.mt: Delete file.
4104 * config/djgpp/fnchange.lst: Update.
4105 * configure.tgt: Delete m68*-ericsson-* target.
4106
4107 2003-01-31 Adam Fedor <fedor@gnu.org>
4108
4109 * infrun.c (handle_inferior_event): Rename 'tmp' to real_stop_pc.
4110 Remove duplicate/shadowing variable of same name.
4111
4112 2003-01-30 Jim Blandy <jimb@redhat.com>
4113
4114 * symfile.c (find_separate_debug_file): Assert that the objfile's
4115 directory name we compute ends with a slash, and then assume that
4116 that's so everywhere we use it.
4117
4118 2003-01-30 Daniel Jacobowitz <drow@mvista.com>
4119
4120 * valops.c (value_assign): Flush frame cache after stores to memory
4121 also.
4122
4123 2003-01-30 Andrew Cagney <ac131313@redhat.com>
4124
4125 * Makefile.in (mon960-rom.o): Delete rule.
4126 * mon960-rom.c: Delete file.
4127
4128 2003-01-30 Andrew Cagney <ac131313@redhat.com>
4129
4130 * d10v-tdep.c: Include "frame-unwind.h".
4131 (d10v_gdbarch_init): Append d10v_frame_p to the unwind predicate
4132 list.
4133 (next_addr, uses_frame): Delete.
4134 (struct d10v_unwind_cache): Define.
4135 (prologue_find_regs): Add struct d10v_unwind_cache info parameter.
4136 Use info instead of next_addr and uses_frame globals.
4137 (d10v_frame_init_saved_regs): Delete function.
4138 (d10v_init_extra_frame_info): Delete function.
4139 (d10v_gdbarch_init): Do not initialize init_extra_frame_info,
4140 frame_init_saved_regs or pop_frame, frame_chain, frame_chain_valid,
4141 init_frame_pc or frame_saved_pc.
4142 (d10v_pop_frame): Delete function.
4143 (do_d10v_pop_frame): Delete function.
4144 (d10v_frame_chain): Delete function.
4145 (d10v_frame_chain_valid): Delete function.
4146 (d10v_frame_pc_unwind): New function.
4147 (d10v_frame_id_unwind): New function.
4148 (saved_regs_unwinder): New function.
4149 (d10v_frame_register_unwind): New function.
4150 (d10v_frame_pop): New function.
4151 (d10v_frame_unwind): New variable.
4152 (d10v_frame_p): New function.
4153 (d10v_frame_saved_pc): Delete function.
4154 * Makefile.in (d10v-tdep.o): Update dependencies.
4155
4156 2003-01-30 J. Brobecker <brobecker@gnat.com>
4157
4158 * config/pa/tm-hppa64.h (CALL_DUMMY_LOCATION): Remove #undef
4159 causing some regressions due to a change in the default value
4160 for this macro.
4161
4162 2003-01-29 Richard Henderson <rth@redhat.com>
4163 Elena Zannoni <ezannoni@redhat.com>
4164 Daniel Jacobowitz <drow@mvista.com>
4165
4166 Fix PR gdb/961.
4167 * dwarf2read.c (dwarf_ranges_offset, dwarf_ranges_size): New
4168 variables.
4169 (RANGES_SECTION): New.
4170 (dwarf_ranges_buffer): New variable.
4171 (struct comp_unit_head): Add member "die".
4172 (struct dwarf2_pinfo): Add dwarf_ranges_buffer, dwarf_ranges_size.
4173 (DWARF_RANGES_BUFFER, DWARF_RANGES_SIZE): New.
4174 (dwarf2_has_info): Init dwarf_ranges_offset and dwarf_ranges_size.
4175 (dwarf2_locate_sections): Likewise.
4176 (dwarf2_build_psymtabs): Read .debug_ranges.
4177 (dwarf2_build_psymtabs_hard): Swap dwarf_ranges out.
4178 (psymtab_to_symtab_1): Swap dwarf_ranges in. Set cu_header.die.
4179 (dwarf2_get_pc_bounds): New cu_header argument; adjust all callers.
4180 Look for DW_AT_ranges and return the bounding box.
4181
4182 2003-01-29 Brian Ford <ford@vss.fsi.com>
4183
4184 * win32-nat.c (cygwin_pid): Removed as unused.
4185 (child_attach): Try fall back to Cygwin pid.
4186
4187 2003-01-29 Jim Blandy <jimb@redhat.com>
4188
4189 * objfiles.h (struct objfile): Doc fix.
4190
4191 2003-01-29 Andrew Cagney <ac131313@redhat.com>
4192
4193 * frame.c (frame_saved_regs_id_unwind): Assert FRAME_CHAIN_P.
4194 (legacy_get_prev_frame): Assert FRAME_CHAIN_P.
4195 (get_prev_frame): When FRAME_CHAIN_P, call legacy_get_prev_frame.
4196 (frame_saved_regs_pc_unwind): Assert FRAME_SAVED_PC_P.
4197 * gdbarch.sh (FRAME_CHAIN): Change to a function with predicate.
4198 (FRAME_SAVED_PC): Change to a function with predicate.
4199 * gdbarch.h, gdbarch.c: Re-generate.
4200
4201 2003-01-28 Andrew Cagney <ac131313@redhat.com>
4202
4203 * hppah-nat.c (child_pid_to_exec_file): Don't use boolean.
4204
4205 * complaints.c (complain): Delete function.
4206 * complaints.h (struct deprecated_complaint): Delete definition.
4207 (complain): Delete declaration.
4208
4209 2003-01-28 Kevin Buettner <kevinb@redhat.com>
4210
4211 * mips-tdep.c (mips_init_extra_frame_info): Return early for
4212 dummy frames.
4213
4214 2003-01-27 Andrew Cagney <ac131313@redhat.com>
4215
4216 * sentinel-frame.h, sentinel-frame.c: New files.
4217 * Makefile.in (frame.o): Update dependencies.
4218 (SFILES): Add sentinel-frame.c.
4219 (sentinel_frame_h): Define.
4220 (COMMON_OBS): Add sentinel-frame.o.
4221 (sentinel-frame.o): Specify dependencies.
4222 * frame.c: Include "sentinel-frame.h".
4223 (frame_register_unwind): Rewrite assuming that there is always a a
4224 ->next frame.
4225 (frame_register, generic_unwind_get_saved_register): Ditto.
4226 (frame_read_unsigned_register, frame_read_signed_register): Ditto.
4227 (create_sentinel_frame, unwind_to_current_frame): New functions.
4228 (get_current_frame): Rewrite using create_sentinel_frame and
4229 unwind_to_current_frame. When possible, always create a frame.
4230 (create_new_frame): Set next to the sentinel frame.
4231 (get_next_frame): Rewrite. Don't go below the level 0 frame.
4232 (deprecated_update_frame_pc_hack): Update the next frame's PC and
4233 ID cache when necessary.
4234 (frame_saved_regs_id_unwind): Use frame_relative_level.
4235 (deprecated_generic_get_saved_register): Use frame_relative_level,
4236 get_frame_saved_regs, get_frame_pc, get_frame_base and
4237 get_next_frame.
4238 (frame_saved_regs_register_unwind): Use get_frame_saved_regs and
4239 frame_register.
4240
4241 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
4242
4243 * gdb_indent.sh: Add -T bfd and -T asection to the indent arguments.
4244
4245 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
4246
4247 * maint.c [! (HAVE_MONSTARTUP && HAVE__MCLEANUP)]
4248 (maintenance_set_profile_cmd): Use error () instead of warning ().
4249
4250 2003-01-27 Daniel Jacobowitz <drow@mvista.com>
4251
4252 * configure.in: Check that -pg works if using --enable-profiling.
4253 Check for monstartup and _mcleanup regardless of --enable-profiling.
4254 * maint.c: Check for monstartup and _mcleanup before using them.
4255 * config.in: Regenerated.
4256 * configure: Regenerated.
4257
4258 2003-01-24 Nick Clifton <nickc@redhat.com>
4259
4260 * Add sh2e support:
4261
4262 2002-04-02 Elena Zannoni <ezannoni@redhat.com>
4263
4264 * gdb/sh-tdep.c (sh_sh2e_register_name): New.
4265 (sh2e_show_regs): New.
4266 (sh_gdbarch_init): Handle bfd_mach_sh2e.
4267 * config/sh/tm-sh.h: Added sh2e to comments.
4268
4269 2003-01-23 Jim Blandy <jimb@redhat.com>
4270
4271 * symfile.c (syms_from_objfile): Don't print the "(no debugging
4272 symbols found)" message here; we haven't checked for a separate
4273 debug info file yet, so we don't know yet.
4274 (symbol_file_add_with_addrs_or_offsets): Print it here, after
4275 we've looked everywhere. Also, there's no need to print a special
4276 message when we're loading the separate debug info file: the one
4277 symbol_file_add prints is fine.
4278
4279 2003-01-23 Alexander Larsson <alexl@redhat.com>
4280 Jim Blandy <jimb@redhat.com>
4281
4282 Add support for executables whose debug info has been separated
4283 out into a separate file, leaving only a link behind.
4284 * objfiles.h (struct objfile): New fields: separate_debug_objfile
4285 and separate_debug_objfile_backlink.
4286 (put_objfile_before): New declaration.
4287 * symfile.c: #include "filenames.h".
4288 (symbol_file_add_with_addrs_or_offsets): If this objfile has its
4289 debug info in a separate file, read that, too. Save the addrs
4290 argument, so we can use it again to read the separated debug info;
4291 syms_from_objfile modifies the table we pass it.
4292 (reread_symbols): After re-reading an objfile, call
4293 reread_separate_symbols to refresh its separate debug info
4294 objfile, if it has one.
4295 (reread_separate_symbols, find_separate_debug_file,
4296 get_debug_link_info, separate_debug_file_exists): New functions.
4297 (debug_file_directory): New global var.
4298 (_initialize_symfile): Initialize debug_file_directory, and
4299 provide the new `set debug-file-directory' command to let the user
4300 change it.
4301 * objfiles.c (free_objfile): If this objfile has its debug info in
4302 a separate objfile, free that one too. If this is itself a
4303 separate debug info objfile, clear our parent's backlink.
4304 (put_objfile_before): New function.
4305 * utils.c (gnu_debuglink_crc32): New function.
4306 * defs.h (gnu_debuglink_crc32): New declaration.
4307 * Makefile.in (symfile.o): Note dependency on "filenames.h".
4308 * configure.in: Handle --with-separate-debug-dir config option.
4309 * acinclude.m4 (AC_DEFINE_DIR): New macro.
4310 * acconfig.h (DEBUGDIR): New macro.
4311 * configure, aclocal.m4, config.in: Regenerated.
4312
4313 2003-01-22 Jim Blandy <jimb@redhat.com>
4314
4315 * symfile.c (symbol_file_add_with_addrs_or_offsets): New function,
4316 like the old symbol_file_add, but taking new arguments: you can
4317 now pass in either a `struct section_addr_info' list to say where
4318 each section is loaded, or a `struct section_offsets' table. Pass
4319 these new arguments through to syms_from_objfile as appropriate.
4320 (symbol_file_add): Just call symbol_file_add_with_addrs_or_offsets,
4321 with the appropriate quiescent values for the new arguments.
4322
4323 * symfile.c: #include "gdb_assert.h".
4324 (syms_from_objfile): Add the ability to pass in a section offset
4325 table directly, as an alternative to the section_addr_info table.
4326 Document arguments better.
4327 (symbol_file_add): Pass extra arguments to syms_from_objfile.
4328 * symfile.h (syms_from_objfile): Update declaration.
4329 * rs6000-nat.c (objfile_symbol_add): Pass new arguments to
4330 syms_from_objfile.
4331 * Makefile.in (symfile.o): List dependency on $(gdb_assert_h).
4332
4333 2003-01-22 Daniel Jacobowitz <drow@mvista.com>
4334
4335 Original patch by Tom Tromey <tromey@cygnus.com> and
4336 Jason Molenda <jmolenda@apple.com>.
4337 * Makefile.in (PROFILE_CFLAGS): Substitute from configure.
4338 (INTERNAL_LDFLAGS): Don't include PROFILE_CFLAGS.
4339 * NEWS: Mention profiling.
4340 * configure.in (--enable-gdbtk): Fix typo.
4341 (--enable-profiling): New. Set PROFILE_CFLAGS.
4342 * maint.c (maintenance_set_profile_cmd): Remove NOTYET.
4343 Fill in function.
4344 (profiling_state): New variable.
4345 (mcleanup_wrapper): New function.
4346 (_initialize_maint): Remove NOTYET, fix call to
4347 add_setshow_boolean_cmd for "maint set profile".
4348 * configure: Regenerated.
4349
4350 2003-01-21 Martin M. Hunt <hunt@redhat.com>
4351
4352 * Makefile.in (install-gdbtk): Install PNG images too.
4353
4354 2003-01-21 Andrew Cagney <ac131313@redhat.com>
4355
4356 * exec.c (text_start): Delete global variable.
4357 (exec_file_attach): Make text_start local to the function.
4358 * inferior.h (BEFORE_TEXT_END, AFTER_TEXT_END): Delete macros.
4359 * valops.c (hand_function_call): Delete code that handles
4360 BEFORE_TEXT_END and AFTER_TEXT_END.
4361 * gdbarch.sh (CALL_DUMMY_LENGTH): Test call_dummy_length instead
4362 of CALL_DUMMY_LOCATION.
4363 * gdbarch.c: Regenerate.
4364 * inferior.h (deprecated_pc_in_call_dummy_before_text_end)
4365 (deprecated_pc_in_call_dummy_after_text_end): Delete declaration.
4366 * blockframe.c (deprecated_pc_in_call_dummy_before_text_end)
4367 (deprecated_pc_in_call_dummy_after_text_end): Delete functions.
4368 (text_end): Delete extern declaration.
4369
4370 2003-01-21 Andrew Cagney <ac131313@redhat.com>
4371
4372 * frame.h (FRAME_OBSTACK_ZALLOC): Define.
4373 * blockframe.c (backtrace_below_main): Move to "frame.c".
4374 (frame_chain_valid): Delete check for backtrace_below_main.
4375 (_initialize_blockframe): Delete initialization, move ``set
4376 backtrace-below-main'' command to "frame.c".
4377 (do_flush_frames_sfunc): Delete function.
4378 * frame.c: Include "command.h" and "gdbcmd.h".
4379 (frame_type_from_pc): New function.
4380 (create_new_frame): Use frame_type_from_pc.
4381 (legacy_get_prev_frame): New function.
4382 (get_prev_frame): Rewrite. When an old style frame, call
4383 legacy_get_prev_frame. Otherwize, unwind the PC first.
4384 (_initialize_frame): Add ``set backtrace-below-main'' command.
4385 * Makefile.in (frame.o): Update dependencies.
4386
4387 2003-01-19 Andrew Cagney <ac131313@redhat.com>
4388
4389 * config/pa/tm-hppa.h (DEPRECATED_DO_REGISTERS_INFO): Rename
4390 DEPRECATED_REGISTERS_INFO.
4391
4392 2003-01-19 Andrew Cagney <ac131313@redhat.com>
4393
4394 * MAINTAINERS: Replace `Blanket Write Privs' with `Global
4395 Maintainers'. Update `Various Maintainers'.
4396
4397 2003-01-19 Andrew Cagney <ac131313@redhat.com>
4398
4399 * frame.c (frame_saved_regs_pop): Assert POP_FRAME_P.
4400 * gdbarch.sh (POP_FRAME): Change to function with predicate.
4401 Suppress actual parameters when `-'.
4402 * gdbarch.h, gdbarch.c: Regenerate.
4403
4404 2003-01-19 Andrew Cagney <ac131313@redhat.com>
4405
4406 * d10v-tdep.c (d10v_frame_saved_pc, d10v_frame_chain): Restore
4407 code handling dummy frames.
4408
4409 2003-01-19 Andrew Cagney <ac131313@redhat.com>
4410
4411 * frame-unwind.h (frame_unwind_pop_ftype): Declare.
4412 (struct frame_unwind): Add field pop.
4413 * frame.h (frame_pop): Declare.
4414 * frame.c (frame_saved_regs_pop): New function.
4415 (trad_frame_unwinder): Add frame_saved_regs_pop.
4416 (frame_pop): New function.
4417 * dummy-frame.c (dummy_frame_pop): New function.
4418 (discard_innermost_dummy): New function.
4419 (generic_pop_dummy_frame): Use discard_innermost_dummy.
4420 (dummy_frame_unwind): Add dummy_frame_pop.
4421 * infrun.c (normal_stop): Call frame_pop instead of POP_FRAME.
4422 * valops.c (hand_function_call): Ditto.
4423 * stack.c (return_command): Ditto.
4424
4425 2003-01-18 Andrew Cagney <ac131313@redhat.com>
4426
4427 * cris-tdep.c: Fix function declaration indentation.
4428 * dwarfread.c, gdbcore.h, gdbtypes.h, i386v-nat.c: Ditto.
4429 * mips-tdep.c, monitor.h, parse.c, proc-utils.h: Ditto.
4430 * rs6000-nat.c, ser-go32.c, somread.c, stabsread.c: Ditto.
4431 * symfile.h, symtab.h, target.c, target.h, value.h: Ditto.
4432 * xcoffread.c, config/pa/tm-hppa.h: Ditto.
4433 * config/sparc/tm-sp64.h, config/sparc/tm-sparc.h: Ditto.
4434
4435 2003-01-18 Michael Chastain <mec@shout.net>
4436
4437 * README (Unpacking and Installation -- quick overview):
4438 Warn against ".../gdb-5.3/gdb/configure".
4439
4440 2003-01-18 Andrew Cagney <ac131313@redhat.com>
4441
4442 * dummy-frame.h (dummy_frame_id_unwind): Delete declaration.
4443 (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
4444 (struct frame_unwind): Declare opaque.
4445 (dummy_frame_p): Declare function.
4446 * dummy-frame.c (dummy_frame_id_unwind): Make static.
4447 (dummy_frame_pc_unwind, dummy_frame_register_unwind): Ditto.
4448 * dummy-frame.c: Include "frame-unwind.h".
4449 (dummy_frame_p): New function.
4450 (dummy_frame_unwind): New variable.
4451 * frame.c: Include "frame-unwind.h".
4452 (frame_pc_unwind, frame_id_unwind, frame_register_unwind): Update
4453 to use the new unwind field.
4454 (set_unwind_by_pc): Delete function.
4455 (create_new_frame, get_prev_frame): Set unwind field using
4456 frame_unwind_find_by_pc.
4457 (trad_frame_unwind, trad_frame_unwinder): New variables.
4458 * frame.h (trad_frame_unwind): Declare variable.
4459 (frame_id_unwind_ftype): Delete declaration.
4460 (frame_pc_unwind_ftype, frame_register_unwind_ftype): Ditto.
4461 (struct frame_unwind): Declare opaque.
4462 (struct frame_info): Replace the fields id_unwind, pc_unwind and
4463 register_unwind with a single unwind pointer.
4464 * frame-unwind.h, frame-unwind.c: New files.
4465 * Makefile.in (SFILES): Add frame-unwind.c.
4466 (frame_unwind_h): Define.
4467 (COMMON_OBS): Add frame-unwind.o.
4468 (frame-unwind.o): Specify dependencies.
4469 (frame.o, dummy-frame.o): Update dependencies.
4470
4471 2003-01-18 Andrew Cagney <ac131313@redhat.com>
4472
4473 * ada-valprint.c: Eliminate PTR.
4474 * breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
4475 * defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
4476 * exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
4477 * objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
4478 * remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
4479 * solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
4480 * symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
4481
4482 2003-01-17 Andrew Cagney <ac131313@redhat.com>
4483
4484 * main.c (captured_main): Don't use PTR.
4485 * cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
4486 * gdbtypes.c (lookup_primitive_typename): Ditto.
4487 (lookup_struct_elt_type): Ditto.
4488 * f-valprint.c (info_common_command): Ditto.
4489 (list_all_visible_commons): Ditto.
4490 * jv-typeprint.c (java_type_print_base): Ditto.
4491
4492 * config/djgpp/fnchange.lst: Rename mi1-var-block.exp,
4493 mi1-var-child.exp, mi1-var-cmd.exp and mi1-var-display.exp.
4494 Rename opcodes/iq2000-desc.c and opcodes/iq2000-dis.c. Rename
4495 i386-interix-nat.c and i386-interix-tdep.c. Rename
4496 m68klinux-nat.c and m68klinux-tdep.c. Rename
4497 config/mips/tm-linux.h and config/mips/tm-linux64.h. Rename
4498 bfd/po/.cvsignore and opcodes/po/.cvsignore. Rename
4499 gdb/objc-exp.tab.c and gdb/ada-exp.tab.c
4500 * main.c (captured_main): Use xfree, not free.
4501
4502 2003-01-16 Andrew Cagney <ac131313@redhat.com>
4503
4504 * frame.h (frame_id_unwind_ftype): Change type so that the frame's
4505 ID back using a parameter.
4506 * frame.c (frame_id_unwind): Update call.
4507 (frame_saved_regs_id_unwind): Update.
4508 * dummy-frame.c (dummy_frame_id_unwind): Update function.
4509 * dummy-frame.h (struct frame_id): Add opaque declaration.
4510 (dummy_frame_id_unwind): Update declaration.
4511
4512 2003-01-15 Andrew Cagney <ac131313@redhat.com>
4513
4514 * sparc-tdep.c: Delete reference to PRINT_REGISTER_HOOK.
4515
4516 2003-01-15 Stephen P. Smith <ischis2@cox.net>
4517
4518 * MAINTAINERS (Stephen P. Smith): Updated email address.
4519
4520 2003-01-14 Elena Zannoni <ezannoni@redhat.com>
4521
4522 Fix PR gdb/898
4523 * breakpoint.c (until_break_command): Add new argument. Use it to
4524 decide whether to stop only at the current frame or not.
4525 * breakpoint.h (until_break_command): Update prototype.
4526 * infcmd.c (until_command): Add new argument to until_break_command
4527 call.
4528 (advance_command): New function.
4529 (_initialize_infcmd): Update help string for 'until' command.
4530 Add new 'advance' command.
4531
4532 2003-01-14 David Carlton <carlton@math.stanford.edu>
4533
4534 * linespec.c (decode_line_1): Normalize comments.
4535 (set_flags): Ditto.
4536 (locate_first_half): Ditto.
4537 (decode_compound): Ditto.
4538 (symtab_from_filename): Ditto.
4539 (decode_all_digits): Ditto.
4540 (decode_dollar): Ditto.
4541 (find_methods): Ditto.
4542 (find_toplevel_char): Ditto.
4543
4544 2003-01-13 Andrew Cagney <ac131313@redhat.com>
4545
4546 * ax-gdb.c, c-valprint.c, charset.c, corefile.c: Update copyright.
4547 * demangle.c, disasm.c, dwarf2cfi.c, dwarfread.c: Update copyright.
4548 * elfread.c, eval.c, expprint.c, expression.h: Update copyright.
4549 * f-typeprint.c, findvar.c, gcore.c, gdb_mbuild.sh: Update copyright.
4550 * gdbtypes.h, gnu-v2-abi.c, inferior.h, inftarg.c: Update copyright.
4551 * language.c, language.h, m32r-tdep.c: Update copyright.
4552 * mn10200-tdep.c, scm-lang.c, scm-lang.h: Update copyright.
4553 * somsolib.c, somsolib.h, symfile.c, symtab.h: Update copyright.
4554 * thread-db.c, typeprint.c, utils.c, valarith.c: Update copyright.
4555 * values.c, win32-nat.c, x86-64-linux-nat.c: Update copyright.
4556 * x86-64-linux-tdep.c, z8k-tdep.c: Update copyright.
4557 * cli/cli-decode.h, config/h8500/tm-h8500.h: Update copyright.
4558
4559 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
4560
4561 * stabsread.h (process_later, resolve_cfront_continuation):
4562 Obsolete.
4563 Update copyright years.
4564 * buildsym.c (start_subfile): Obsolete comment pertinent to Cfront.
4565 Update copyright year.
4566 * dbxread.c(struct cont_elem): Obsolete.
4567 (process_later, process_now): Obsolete functions.
4568 (read_dbx_symtab, read_ofile_symtab): Obsolete cfront support.
4569 Update copyright year.
4570 * gdbtypes.c (INIT_EXTRA, ADD_EXTRA): Obsolete macros.
4571 (add_name, add_mangled_type, cfront_mangle_name): Obsolete functions.
4572 * mdebugread.c (parse_type): Obsolete comment pertinent to Cfront.
4573 (parse_partial_symbols): Obsolete cfront support.
4574 * stabsread.c
4575 (CFRONT_VISIBILITY_PRIVATE,CFRONT_VISIBILITY_PUBLIC): Obsolete
4576 macros.
4577 (get_substring, get_cfront_method_physname, msg_unknown_complaint,
4578 read_cfront_baseclasses, read_cfront_member_functions,
4579 resolve_cfront_continuation,read_cfront_static_fields,
4580 copy_cfront_struct_fields): Obsolete functions.
4581 (define_symbol, read_one_struct_field): Obsolete cfront support.
4582 * xcoffread.c (scan_xcoff_symtab): Obsolete CFront support.
4583 Update Copyright year.
4584
4585 2003-01-13 Elena Zannoni <ezannoni@redhat.com>
4586
4587 * stack.c (print_frame_info, print_stack_frame_base_stub,
4588 print_stack_frame_base, show_and_print_stack_frame_stub,
4589 show_and_print_stack_frame, print_only_stack_frame_stub,
4590 print_only_stack_frame): Delete functions.
4591 (print_stack_frame_stub): Call print_frame_info instead of
4592 print_frame_info_base.
4593 (print_frame_info_base): Rename to print_frame_info.
4594 (backtrace_command_1): Call print_frame_info, instead of
4595 print_frame_info_base.
4596 (current_frame_command): Call print_stack_frame, instead of
4597 print_only_stack_frame.
4598 (frame_command): Call print_stack_frame, instead of
4599 show_and_print_stack_frame.
4600 (up_command): Ditto.
4601 (down_command): Ditto.
4602 * frame.h (print_only_stack_frame): Delete prototype.
4603 * infrun.c (normal_stop): Call print_stack_frame, instead of
4604 show_and_print_stack_frame.
4605 * thread.c (info_threads_command): Call print_stack_frame, instead
4606 of print_only_stack_frame.
4607
4608 2003-01-13 Andrew Cagney <ac131313@redhat.com>
4609
4610 * README (Graphical interface to GDB): Update URL. Point at
4611 gdb/links/.
4612
4613 * gdb_indent.sh: Update to version 2.2.9. Warn when not exact
4614 version match.
4615
4616 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
4617
4618 * symtab.c (find_pc_sect_line): Don't consider end-of-function
4619 lines.
4620
4621 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
4622
4623 * thread-db.c (attach_thread): Prototype.
4624 (struct private_thread_info): Remove lwpid. Add thread handle (th),
4625 thread information (ti), and valid flags (th_valid, ti_valid).
4626 (attach_thread): Move target_pid_to_str call to after the thread
4627 is added to GDB's list. Initialize the cache.
4628 (thread_get_info_callback, thread_db_map_id2thr)
4629 (thread_db_get_info): New functions.
4630 (thread_from_lwp, lwp_from_thread, thread_db_fetch_registers)
4631 (thread_db_store_registers, thread_db_thread_alive)
4632 (thread_db_get_thread_local_address): Use them.
4633 (thread_db_pid_to_str): Likewise. Return "Missing" instead
4634 of calling error() for threads in unknown state.
4635
4636 (clear_lwpid_callback): New function.
4637 (thread_db_resume): Use it to clear the cache.
4638
4639 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
4640
4641 * lin-lwp.c (struct private_thread_info, find_lwp_callback): Remove.
4642 (resume_callback): Remove dead code.
4643
4644 2003-01-13 Andrew Cagney <ac131313@redhat.com>
4645
4646 * gdbarch.sh (FRAME_INIT_SAVED_REGS): Change to function with
4647 predicate.
4648 * gdbarch.h, gdbarch.c: Regenerate.
4649 * stack.c (frame_info): Only initialize the saved registers when
4650 FRAME_INIT_SAVED_REGS_P.
4651 * frame.c (frame_saved_regs_register_unwind): Assert
4652 FRAME_INIT_SAVED_REGS_P.
4653 (deprecated_generic_get_saved_register): Ditto.
4654
4655 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
4656
4657 * source.c (openp): Squelch warning about "filename".
4658
4659 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
4660
4661 * source.c (openp): If the file does not exist don't necessarily
4662 search the path.
4663
4664 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
4665
4666 Fix PR gdb/872.
4667 * gdbtypes.c (init_type): Mark "char" as TYPE_FLAG_NOSIGN.
4668 (integer_types_same_name_p): New function.
4669 (rank_one_type): Use it.
4670 * stabsread.c (read_range_type): Mark "char" as TYPE_FLAG_NOSIGN.
4671
4672 2003-01-13 Daniel Jacobowitz <drow@mvista.com>
4673
4674 * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): New
4675 variables.
4676 (main.o): Custom rule which uses $(TARGET_SYSTEM_ROOT_DEFINE).
4677 * configure.in: Add --with-sysroot.
4678 * configure: Regenerated.
4679 * main.c (gdb_sysroot): New variable.
4680 (captured_main): Initialize gdb_sysroot.
4681 * defs.h (gdb_sysroot): New extern declaration.
4682 * solib.c (_initialize_solib): Initialize solib_absolute_prefix.
4683
4684 2003-01-12 Michael Chastain <mec@shout.net>
4685
4686 * config/djgpp/fnchange.lst: add gdb/ChangeLog-2002.
4687
4688 2003-01-12 Michael Chastain <mec@shout.net>
4689
4690 * top.c (print_gdb_version): Bump copyright year to 2003.
4691
4692 2003-01-12 David Carlton <carlton@bactrian.org>
4693
4694 * linespec.c (symtab_from_filename): Rename variable 's' to
4695 'file_symtab'.
4696
4697 2003-01-12 Andrew Cagney <ac131313@redhat.com>
4698
4699 * d10v-tdep.c (d10v_init_extra_frame_info): Remove checks for a
4700 dummy frame.
4701 (d10v_frame_saved_pc, d10v_frame_chain): Ditto.
4702
4703 2003-01-12 Andrew Cagney <ac131313@redhat.com>
4704
4705 * d10v-tdep.c: Include "gdb_assert.h".
4706 (d10v_store_return_value): Rewrite to match current interface.
4707 (d10v_extract_struct_value_address): Ditto.
4708 (d10v_extract_return_value): Ditto.
4709 (d10v_gdbarch_init): Set store_restore_value,
4710 extract_struct_value_address and extract_return_value.
4711
4712 2003-01-12 J. Brobecker <brobecker@gnat.com>
4713
4714 * hpread.c (set_namestring): New procedure replacing the
4715 SET_NAMESTRING macro.
4716 (hpread_build_psymtabs): Replace calls to SET_NAMESTRING
4717 by calls to set_namestring.
4718
4719 2003-01-11 J. Brobecker <brobecker@gnat.com>
4720
4721 * hpread.c (SET_NAMESTRING): Remove an incorrect cast to fix
4722 a compilation warning.
4723 (hpread_process_one_debug_symbol): Likewise.
4724
4725 2003-01-10 David Carlton <carlton@math.stanford.edu>
4726
4727 * linespec.c (decode_line_1): Rename variable 's' to
4728 'file_symtab'.
4729 (decode_all_digits): Rename argument 's' to 'file_symtab'.
4730 (decode_dollar): Ditto.
4731 (decode_variable): Ditto.
4732 (symbol_found): Ditto.
4733
4734 2003-01-09 Michael Chastain <mec@shout.net>
4735
4736 * config/djgpp/fnchange.lst: update file list for testsuite/gdb.c++.
4737
4738 2003-01-07 Corinna Vinschen <vinschen@redhat.com>
4739
4740 * win32-nat.c (set_process_privilege): New function.
4741 (child_attach): Call set_process_privilege() to enable the
4742 SE_DEBUG_NAME user privilege if available in process token.
4743
4744 2003-01-10 J. Brobecker <brobecker@gnat.com>
4745
4746 * hpread.c (hpread_process_one_debug_symbol): Fix a small
4747 compilation error in the previous revision.
4748
4749 2003-01-09 David Carlton <carlton@math.stanford.edu>
4750
4751 * linespec.c: Update copyright.
4752
4753 2003-01-09 Daniel Jacobowitz <drow@mvista.com>
4754
4755 * lin-lwp.c (child_wait): Ignore exit statuses for processes other
4756 than inferior_ptid.
4757 (lin_lwp_wait): Ignore exit statuses for unknown LWPs.
4758
4759 2003-01-09 Andrew Cagney <ac131313@redhat.com>
4760
4761 * frame.h (frame_obstack_zalloc): Replace frame_obstack_alloc.
4762 Update comments.
4763 * frame.c (frame_obstack_zalloc): Replace frame_obstack_alloc.
4764 (frame_saved_regs_zalloc): Update.
4765 (frame_saved_regs_register_unwind): Update.
4766 (create_new_frame): Update.
4767 (get_prev_frame): Update.
4768 (frame_extra_info_zalloc): Update.
4769 (deprecated_get_frame_saved_regs): Update.
4770 * dwarf2cfi.c (cfi_init_extra_frame_info): Update.
4771 * cris-tdep.c: Update comment.
4772
4773 * somsolib.h: Fix function indentation.
4774 * disasm.c, buildsym.c, buildsym.h: Eliminate PTR.
4775 * gnu-v2-abi.c, f-typeprint.c, x86-64-linux-tdep.c: Eliminate STREQ.
4776 * demangle.c, ax-gdb.c, c-valprint.c: Eliminate STREQ.
4777 * alpha-osf1-tdep.c, corefile.c: Eliminate STREQ.
4778 * somsolib.c, inftarg.c: Remove assignment in if conditional.
4779
4780 * infrun.c (follow_fork): Use ISO C definition.
4781 * expprint.c (print_subexp): Use xfree instead of free.
4782 * charset.c: Include "gdb_string.h" instead of <string.h>.
4783 (register_iconv_charsets): Use ISO C definition.
4784 (host_charset, target_charset): Ditto.
4785 * Makefile.in (charset.o): Update dependencies.
4786 (mi-cmd-env.o): Update dependencies.
4787
4788 2003-01-08 Andrew Cagney <cagney@redhat.com>
4789
4790 * alpha-linux-tdep.c (alpha_linux_sigcontext_addr): Use
4791 get_frame_base.
4792
4793 2003-01-08 Andrew Cagney <ac131313@redhat.com>
4794
4795 * gdb_mbuild.sh: Add --keep option. When specified, keep the
4796 build directories. Save edited gdb output in Mbuild.log. If a
4797 build fails, remove any final GDB executable.
4798
4799 2003-01-08 Andrew Cagney <ac131313@redhat.com>
4800
4801 * gdb_mbuild.sh: Edit the output of `maint print architecture'
4802 replacing hex constants with function names and stripping leading
4803 file name directory prefixes.
4804
4805 2003-01-08 Andrew Cagney <cagney@redhat.com>
4806
4807 * gcore.c, i386-linux-tdep.c: Use get_frame_pc, get_next_frame and
4808 get_frame_base.
4809
4810 2003-01-08 David Carlton <carlton@math.stanford.edu>
4811
4812 * linespec.c (decode_line_1): Move code into decode_variable.
4813 (decode_variable): New function.
4814
4815 2003-01-08 Andrew Cagney <ac131313@redhat.com>
4816
4817 * mn10300-tdep.c (analyze_dummy_frame): Fix typo.
4818
4819 2003-01-08 Andrew Cagney <cagney@redhat.com>
4820
4821 * cris-tdep.c (cris_frame_init_saved_regs): Use
4822 get_frame_saved_regs and SIZEOF_FRAME_SAVED_REGS when copying a
4823 saved_regs buffer.
4824 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Ditto.
4825 (sh64_nofp_frame_init_saved_regs): Ditto.
4826 (sh_fp_frame_init_saved_regs): Ditto.
4827 * arm-tdep.c: Use deprecated_set_frame_saved_regs_hack.
4828 * mips-tdep.c (mips_init_extra_frame_info): Ditto.
4829 * mcore-tdep.c (analyze_dummy_frame): Ditto.
4830 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
4831
4832 2003-01-08 Daniel Jacobowitz <drow@mvista.com>
4833
4834 * minsyms.c (lookup_minimal_symbol): Update comment.
4835 (lookup_minimal_symbol_text): Update comment. Use the hash table.
4836 (lookup_minimal_symbol_solib_trampoline): Likewise.
4837
4838 2003-01-08 Andrew Cagney <cagney@redhat.com>
4839
4840 * d10v-tdep.c (d10v_init_extra_frame_info): Use
4841 frame_relative_level.
4842
4843 * alpha-tdep.c: Use get_frame_extra_info.
4844 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
4845 * h8300-tdep.c, ia64-tdep.c, m68hc11-tdep.c, mcore-tdep.c: Ditto.
4846 * mips-tdep.c, mn10300-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
4847 * sparc-tdep.c, xstormy16-tdep.c: Ditto.
4848
4849 * alpha-tdep.c: Use get_next_frame.
4850 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
4851 * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
4852 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c: Ditto.
4853 * mips-tdep.c, mn10200-tdep.c, mn10300-tdep.c: Ditto.
4854 * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, sparc-tdep.c: Ditto.
4855 * v850-tdep.c, vax-tdep.c, x86-64-linux-tdep.c: Ditto.
4856 * xstormy16-tdep.c: Ditto.
4857
4858 2003-01-07 Andrew Cagney <cagney@redhat.com>
4859
4860 * alpha-tdep.c: Use get_frame_base.
4861 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
4862 * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
4863 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
4864 * mn10300-tdep.c, ns32k-tdep.c, s390-tdep.c, sh-tdep.c: Ditto.
4865 * sparc-tdep.c, v850-tdep.c, vax-tdep.c: Ditto.
4866 * x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
4867 * config/h8500/tm-h8500.h, config/mn10200/tm-mn10200.h: Ditto.
4868 * config/sparc/tm-sparc.h: Ditto.
4869
4870 2003-01-07 Andrew Cagney <cagney@redhat.com>
4871
4872 * frame.c (deprecated_get_frame_context): New function.
4873 (deprecated_set_frame_context): New function.
4874 * frame.h (deprecated_get_frame_context): Declare.
4875 (deprecated_set_frame_context): Declare.
4876 * dwarf2cfi.c (UNWIND_CONTEXT): Use deprecated_get_frame_context.
4877 (cfi_init_extra_frame_info): Use deprecated_set_frame_context.
4878
4879 2003-01-07 Andrew Cagney <cagney@redhat.com>
4880
4881 * frame.c (deprecated_set_frame_next_hack): New function.
4882 (deprecated_set_frame_prev_hack): New function.
4883 * frame.h (deprecated_set_frame_next_hack): Declare.
4884 (deprecated_set_frame_prev_hack): Declare.
4885 * mcore-tdep.c (analyze_dummy_frame): Use
4886 deprecated_set_frame_next_hack and deprecated_set_frame_prev_hack.
4887 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
4888
4889 2003-01-07 David Carlton <carlton@math.stanford.edu>
4890
4891 * linespec.c (decode_line_1): Move code into decode_dollar.
4892 (decode_dollar): New function.
4893
4894 2003-01-07 Andrew Cagney <cagney@redhat.com>
4895
4896 * arm-tdep.c (arm_init_extra_frame_info): Use
4897 deprecated_update_frame_base_hack.
4898 * xstormy16-tdep.c (xstormy16_scan_prologue): Ditto.
4899 * mn10300-tdep.c (analyze_dummy_frame): Ditto.
4900 (fix_frame_pointer): Ditto.
4901 (mn10300_analyze_prologue): Ditto.
4902
4903 2003-01-07 Andrew Cagney <cagney@redhat.com>
4904
4905 * xstormy16-tdep.c (xstormy16_init_extra_frame_info): Allocate
4906 extra_info using frame_extra_info_zalloc.
4907 * sparc-tdep.c (sparc_init_extra_frame_info): Ditto.
4908 * sh-tdep.c (sh_init_extra_frame_info): Ditto.
4909 (sh64_init_extra_frame_info): Ditto.
4910 * mn10300-tdep.c (mn10300_init_extra_frame_info): Ditto.
4911 * s390-tdep.c (s390_init_extra_frame_info): Ditto.
4912 * mips-tdep.c (mips_init_extra_frame_info): Ditto.
4913 * mcore-tdep.c (mcore_init_extra_frame_info): Ditto.
4914 * frv-tdep.c (frv_init_extra_frame_info): Ditto.
4915 * m68hc11-tdep.c (m68hc11_init_extra_frame_info): Ditto.
4916 * ia64-tdep.c (ia64_init_extra_frame_info): Ditto.
4917 * h8300-tdep.c (h8300_init_extra_frame_info): Ditto.
4918 * d10v-tdep.c (d10v_init_extra_frame_info): Ditto.
4919 * cris-tdep.c (cris_init_extra_frame_info): Ditto.
4920 * arm-tdep.c (arm_init_extra_frame_info): Ditto.
4921 * alpha-tdep.c (alpha_init_extra_frame_info): Ditto.
4922
4923 * mn10300-tdep.c (analyze_dummy_frame): Use
4924 deprecated_set_frame_extra_info_hack.
4925 * mcore-tdep.c (analyze_dummy_frame): Ditto.
4926
4927 2003-01-07 J. Brobecker <brobecker@gnat.com>
4928
4929 * mdebugread.c (parse_symbol): Skip stProc entries which storage
4930 class is not scText. These do not define "real" procedures.
4931 (parse_partial_symbols): Likewise.
4932
4933 2003-01-06 Michael Snyder <msnyder@redhat.com>
4934
4935 * lin-lwp.c: Added or elaborated on "debug lin-lwp" info.
4936
4937 2003-01-06 Andrew Cagney <ac131313@redhat.com>
4938
4939 * frame.h (deprecated_frame_xmalloc_with_cleanup): Declare.
4940 * frame.c (deprecated_frame_xmalloc_with_cleanup): New function.
4941 * arm-tdep.c (arm_frame_chain): Allocate caller_fi using
4942 deprecated_frame_xmalloc_with_cleanup.
4943 * m32r-tdep.c (m32r_virtual_frame_pointer): Allocate `fi' using
4944 deprecated_frame_xmalloc.
4945 * mcore-tdep.c (analyze_dummy_frame): Ditto for dummy.
4946 * mn10200-tdep.c (mn10200_frame_chain): Ditto for dummy_frame.
4947
4948 2003-01-06 Andrew Cagney <cagney@redhat.com>
4949
4950 * x86-64-linux-tdep.c: Include "osabi.h".
4951 * Makefile.in (x86-64-linux-tdep.o): Update dependencies.
4952
4953 * sparc-tdep.c (sparc_dump_tdep): Fix typo, match -> mach.
4954
4955 2003-01-06 Andrew Cagney <cagney@redhat.com>
4956
4957 * MAINTAINERS (Target Instruction Set Architectures): Update
4958 arm-elf. Can be built with -Werror, has been multiarched.
4959
4960 * value.h (unpack_long): Make buffer parameter constant.
4961 (unpack_double, unpack_pointer, unpack_field_as_long): Ditto.
4962 * scm-lang.h (scm_parse): Ditto.
4963 * defs.h (extract_typed_address, extract_address): Ditto.
4964 (extract_long_unsigned_integer): Ditto.
4965 * inferior.h (unsigned_pointer_to_address): Ditto.
4966 (signed_pointer_to_address): Ditto.
4967 * gdbarch.sh (POINTER_TO_ADDRESS): Ditto.
4968 * gdbarch.h, gdbarch.c: Regenerate.
4969 * findvar.c (extract_long_unsigned_integer): Update.
4970 (extract_address): Update.
4971 (extract_typed_address): Update.
4972 (unsigned_pointer_to_address): Update.
4973 * values.c (unpack_long): Update.
4974 (unpack_double): Update.
4975 (unpack_pointer): Update.
4976 (unpack_field_as_long): Update.
4977 * d10v-tdep.c (d10v_pointer_to_address): Update.
4978 * avr-tdep.c (avr_pointer_to_address): Update.
4979 * scm-lang.c (scm_unpack): Update.
4980 * findvar.c (signed_pointer_to_address): Update.
4981
4982 2003-01-06 Michal Ludvig <mludvig@suse.cz>
4983
4984 * x86-64-linux-nat.c (i386_sse_regnum_p): Deleted. Not needed anymore
4985 since it is in i386-tdep.c.
4986
4987 2003-01-06 J. Brobecker <brobecker@gnat.com>
4988
4989 * alpha-tdep.c (alpha_gdbarch_init): Fix a small compilation
4990 failure introduced in the previous change.
4991
4992 2003-01-05 Michael Chastain <mec@shout.net>
4993
4994 * README: Remove references to deleted remote-*.c files:
4995 remote-adapt.c, remote-eb.c, remote-mm.c, remote-nindy.c,
4996 remote-nrom.c, remote-os9k.c, remote-udi.c.
4997
4998 2003-01-05 Mark Kettenis <kettenis@gnu.org>
4999
5000 * i386-tdep.c (i386_get_longjmp_target): Make usable on x86-64.
5001 * x86-64-tdep.c (x86_64_init_abi): Remove FIXME about
5002 i386_get_longjmp_target.
5003
5004 2003-01-05 Andrew Cagney <ac131313@redhat.com>
5005
5006 * arm-tdep.c (prologue_cache): Change to a pointer.
5007 (_initialize_arm_tdep): Allocate prologue_cache.
5008 (check_prologue_cache): Update.
5009 (save_prologue_cache): Update.
5010 (arm_gdbarch_init): Update.
5011
5012 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
5013
5014 * stabsread.c (update_method_name_from_physname): Call complaint()
5015 instead of error.
5016
5017 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
5018
5019 * arm-tdep.c (arm_frame_chain_valid): Remove unnecessary test.
5020 * d10v-tdep.c (d10v_frame_chain_valid): Remove unnecessary tests.
5021 * hppa-tdep.c (hppa_frame_chain_valid): Remove unnecessary test.
5022
5023 * blockframe.c: Include "gdbcmd.h" and "command.h".
5024 (backtrace_below_main): New variable.
5025 (file_frame_chain_valid, func_frame_chain_valid)
5026 (nonnull_frame_chain_valid, generic_file_frame_chain_valid)
5027 (generic_func_frame_chain_valid): Remove functions.
5028 (frame_chain_valid, do_flush_frames_sfunc): New functions.
5029 (_initialize_blockframe): New function.
5030 * Makefile.in (blockframe.o): Update dependencies.
5031 * frame.c (frame_saved_regs_id_unwind, get_prev_frame): Remove FIXME
5032 comment. Call frame_chain_valid ().
5033 * frame.h: Remove old prototypes. Add prototype for
5034 frame_chain_valid and update comments to match.
5035 * gdbarch.sh: Change FRAME_CHAIN_VALID into a predicated function.
5036 Remove old comment.
5037 * gdbarch.h: Regenerated.
5038 * gdbarch.c: Regenerated.
5039
5040 * alpha-tdep.c (alpha_gdbarch_init): Don't call
5041 set_gdbarch_frame_chain_valid.
5042 * avr-tdep.c (avr_gdbarch_init): Likewise.
5043 * cris-tdep.c (cris_gdbarch_init): Likewise.
5044 * frv-tdep.c (frv_gdbarch_init): Likewise.
5045 * h8300-tdep.c (h8300_gdbarch_init): Likewise.
5046 * i386-tdep.c (i386_svr4_init_abi): Likewise.
5047 (i386_nw_init_abi): Likewise.
5048 (i386_gdbarch_init): Likewise.
5049 * ia64-tdep.c (ia64_gdbarch_init): Likewise.
5050 * m68hc11-tdep.c (m68hc11_gdbarch_init): Likewise.
5051 * m68k-tdep.c (m68k_gdbarch_init): Likewise.
5052 * mcore-tdep.c (mcore_gdbarch_init): Likewise.
5053 * mips-tdep.c (mips_gdbarch_init): Likewise.
5054 * mn10300-tdep.c (mn10300_gdbarch_init): Likewise.
5055 * ns32k-tdep.c (ns32k_gdbarch_init): Likewise.
5056 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Likewise.
5057 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
5058 * s390-tdep.c (s390_gdbarch_init): Likewise.
5059 * sh-tdep.c (sh_gdbarch_init): Likewise.
5060 * sparc-tdep.c (sparc_gdbarch_init): Likewise.
5061 * v850-tdep.c (v850_gdbarch_init): Likewise.
5062 * vax-tdep.c (vax_gdbarch_init): Likewise.
5063 * x86-64-tdep.c (x86_64_init_abi): Likewise.
5064
5065 * config/m32r/tm-m32r.h (FRAME_CHAIN_VALID): Don't define.
5066 * config/m68k/tm-apollo68b.h (FRAME_CHAIN_VALID): Likewise.
5067 * config/m68k/tm-m68kv4.h (FRAME_CHAIN_VALID): Likewise.
5068 * config/m68k/tm-monitor.h (FRAME_CHAIN_VALID): Likewise.
5069 * config/m68k/tm-os68k.h (FRAME_CHAIN_VALID): Likewise.
5070 * config/m68k/tm-vx68.h (FRAME_CHAIN_VALID): Likewise.
5071 * config/mn10200/tm-mn10200.h (FRAME_CHAIN_VALID): Likewise.
5072 * config/sparc/tm-sparclite.h (FRAME_CHAIN_VALID): Likewise.
5073
5074 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
5075
5076 * Makefile.in (acconfig_h): Remove incorrect macro.
5077 (config_h): Define.
5078 (osabi.o): Update dependencies.
5079 * configure.tgt: Set gdb_osabi based on target triplet.
5080 * configure.in: Define GDB_OSABI_DEFAULT based on gdb_osabi.
5081 * configure: Regenerated.
5082 * config.in: Regenerated.
5083 * osabi.c: Include "arch-utils.h", "gdbcmd.h", and "command.h".
5084 (GDB_OSABI_DEFAULT): Define if not already defined.
5085 (user_osabi_state, user_selected_osabi, gdb_osabi_available_names)
5086 (set_osabi_string): New variables.
5087 (gdbarch_register_osabi): Add new OS ABI to
5088 gdb_osabi_available_names.
5089 (gdbarch_lookup_osabi): Honor specified and default OS ABIs.
5090 (set_osabi, show_osabi): New functions.
5091 (_initialize_gdb_osabi): Add "set osabi" and "show osabi" commands.
5092
5093 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
5094
5095 * arch-utils.c (gdbarch_info_init): Set osabi to
5096 GDB_OSABI_UNINITIALIZED.
5097 * gdbarch.sh: Add osabi to struct gdbarch and to struct
5098 gdbarch_info. Include "osabi.h" in gdbarch.c. Check osabi
5099 in gdbarch_list_lookup_by_info and in gdbarch_update_p.
5100 * gdbarch.c: Regenerated.
5101 * gdbarch.h: Regenerated.
5102 * osabi.c (gdbarch_lookup_osabi): Return GDB_OSABI_UNINITIALIZED if
5103 there's no BFD.
5104 (gdbarch_init_osabi): Remove osabi argument; use info.osabi.
5105 * osabi.h (enum gdb_osabi): Move to defs.h.
5106 (gdbarch_init_osabi): Update prototype.
5107 * defs.h (enum gdb_osabi): Moved here.
5108 * Makefile.in: Update dependencies.
5109
5110 * alpha-tdep.h: Don't include "osabi.h".
5111 (struct gdbarch_tdep): Remove osabi member.
5112 * alpha-tdep.c: Include "osabi.h".
5113 (alpha_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
5114 iterate over arches. Update call to gdbarch_init_osabi.
5115 (alpha_dump_tdep): Don't dump osabi.
5116 * alpha-linux-tdep.c: Include "osabi.h".
5117 * alpha-osf1-tdep.c: Include "osabi.h".
5118 * alphafbsd-tdep.c: Include "osabi.h".
5119 * alphanbsd-tdep.c: Include "osabi.h".
5120
5121 * arm-tdep.h: Don't include "osabi.h".
5122 (struct gdbarch_tdep): Remove osabi member.
5123 * arm-tdep.c: Include "osabi.h".
5124 (arm_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
5125 iterate over arches. Update call to gdbarch_init_osabi.
5126 (arm_dump_tdep): Don't dump osabi.
5127 * arm-linux-tdep.c: Include "osabi.h".
5128 * armnbsd-tdep.c: Include "osabi.h".
5129
5130 * hppa-tdep.c (hppa_gdbarch_init): Don't call gdbarch_lookup_osabi.
5131 Update call to gdbarch_init_osabi.
5132
5133 * i386-tdep.h: Don't include "osabi.h".
5134 (struct gdbarch_tdep): Remove osabi member.
5135 * i386-tdep.c: Include "osabi.h".
5136 (i386_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
5137 iterate over arches. Update call to gdbarch_init_osabi.
5138 (i386_dump_tdep): Don't dump osabi.
5139 * i386-linux-tdep.c: Include "osabi.h".
5140 * i386-sol2-tdep.c: Include "osabi.h".
5141 * i386bsd-tdep.c: Include "osabi.h".
5142 * i386gnu-tdep.c: Include "osabi.h".
5143 * i386ly-tdep.c: Include "osabi.h".
5144 * i386nbsd-tdep.c: Include "osabi.h".
5145 * i386obsd-tdep.c: Include "osabi.h".
5146
5147 * mips-tdep.c (struct gdbarch_tdep): Remove osabi member.
5148 (mips_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
5149 check osabi when iterating over arches. Update call to
5150 gdbarch_init_osabi.
5151 (mips_dump_tdep): Don't dump osabi.
5152
5153 * ns32k-tdep.h: Don't include "osabi.h".
5154 (struct gdbarch_tdep): Remove.
5155 * ns32k-tdep.c (ns32k_gdbarch_init): Don't call
5156 gdbarch_lookup_osabi. Don't iterate over arches. Don't
5157 allocate tdep. Update call to gdbarch_init_osabi.
5158 (ns32k_dump_tdep): Remove.
5159 (_initialize_ns32k_tdep): Update call to gdbarch_register.
5160 * ns32knbsd-tdep.c: Include "osabi.h".
5161
5162 * ppc-tdep.h: Don't include "osabi.h".
5163 (struct gdbarch_tdep): Remove osabi member.
5164 * rs6000-tdep.c: Include "osabi.h".
5165 (rs6000_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't check
5166 osabi when iterating over arches. Update call to
5167 gdbarch_init_osabi.
5168 (rs6000_dump_tdep): Don't dump osabi.
5169 * ppc-linux-tdep.c: Include "osabi.h".
5170 * ppcnbsd-tdep.c: Include "osabi.h".
5171
5172 * sh-tdep.h: Don't include "osabi.h".
5173 (struct gdbarch_tdep): Remove osabi member.
5174 * sh-tdep.c: Include "osabi.h".
5175 (sh_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
5176 iterate over arches. Update call to gdbarch_init_osabi.
5177 (sh_dump_tdep): Don't dump osabi.
5178 * shnbsd-tdep.c: Include "osabi.h".
5179
5180 * sparc-tdep.c: Include "osabi.h".
5181 (sparc_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
5182 iterate over arches. Update call to gdbarch_init_osabi.
5183 (sparc_dump_tdep): Don't dump osabi. Do dump the rest of the
5184 tdep structure.
5185
5186 * vax-tdep.h: Don't include "osabi.h".
5187 (struct gdbarch_tdep): Remove.
5188 * vax-tdep.c: Include "osabi.h".
5189 (vax_gdbarch_init): Don't call gdbarch_lookup_osabi. Don't
5190 iterate over arches. Don't allocate tdep. Update call
5191 to gdbarch_init_osabi.
5192 (vax_dump_tdep): Remove.
5193 (_initialize_vax_tdep): Update call to gdbarch_register.
5194
5195 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
5196
5197 * breakpoint.c (insert_breakpoints): Skip disabled breakpoints
5198 entirely.
5199 (breakpoint_re_set_one): Don't fetch the value for a disabled
5200 watchpoint.
5201
5202 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
5203
5204 * buildsym.h (processing_hp_compilation): Remove obsolete variable.
5205 * gdbarch.sh Remove include of "value.h" in gdbarch.h.
5206 (COERCE_FLOAT_TO_DOUBLE): Remove.
5207 * gdbarch.c: Regenerate.
5208 * gdbarch.h: Regenerate.
5209 * Makefile.in: Remove value_h from gdbarch_h.
5210 * valops.c (coerce_float_to_double): New variable.
5211 (default_coerce_float_to_double): Remove.
5212 (standard_coerce_float_to_double): Remove.
5213 (value_arg_coerce): Use coerce_float_to_double.
5214 (_initialize_valops): Add "set coerce-float-to-double".
5215 * value.h (default_coerce_float_to_double): Remove prototype.
5216 (standard_coerce_float_to_double): Remove prototype.
5217
5218 * hpread.c (hpread_process_one_debug_symbol): Mark C++ functions as
5219 prototyped.
5220 * mdebugread.c (parse_symbol): Likewise.
5221 * stabsread.c (define_symbol): Mark all functions as prototyped.
5222
5223 * hppa-tdep.c (hppa_coerce_float_to_double): Remove.
5224 * alpha-tdep.c (alpha_gdbarch_init): Remove call to
5225 set_gdbarch_coerce_float_to_double.
5226 * arm-tdep.c (arm_gdbarch_init): Likewise.
5227 * frv-tdep.c (frv_gdbarch_init): Likewise.
5228 * h8300-tdep.c (h8300_gdbarch_init): Likewise (commented out).
5229 * i386-sol2-tdep.c (i386_sol2_init_abi): Likewise.
5230 * mips-tdep.c (mips_gdbarch_init): Likewise.
5231 (mips_coerce_float_to_double): Remove.
5232 * rs6000-tdep.c (rs6000_gdbarch_init): Likewise.
5233 (rs6000_coerce_float_to_double): Remove.
5234 * s390-tdep.c (s390_gdbarch_init): Likewise.
5235 * sh-tdep.c (sh_gdbarch_init): Likewise.
5236 (sh_coerce_float_to_double): Remove.
5237 * sparc-tdep.c (sparc_gdbarch_init): Likewise.
5238 (sparc_coerce_float_to_double): Remove.
5239 * v850-tdep.c (v850_gdbarch_init): Likewise.
5240 * xstormy16-tdep.c (xstormy16_gdbarch_init): Likewise.
5241 * config/m32r/tm-m32r.h (COERCE_FLOAT_TO_DOUBLE): Remove.
5242 * config/pa/tm-hppa.h: (COERCE_FLOAT_TO_DOUBLE): Remove.
5243 (hppa_coerce_float_to_double): Remove prototype.
5244 * config/sparc/tm-sparc.h (COERCE_FLOAT_TO_DOUBLE): Remove.
5245
5246 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
5247
5248 * regformats/reg-m68k.dat: Remove fpcode and fpflags.
5249
5250 2003-01-04 Daniel Jacobowitz <drow@mvista.com>
5251
5252 Suggested by Stewart Brown <sb24@avaya.com>:
5253 * c-typeprint.c (c_type_print_varspec_prefix): Pass value of show
5254 in recursive calls. Handle TYPE_CODE_TYPEDEF.
5255 (c_type_print_varspec_suffix): Likewise.
5256
5257 2003-01-04 Mark Kettenis <kettenis@gnu.org>
5258
5259 * configure.in: Don't set and AC_SUBST SUBDIRS.
5260 * configure: Regenerated.
5261
5262 * configure.in: Remove code dealing with shared libraries.
5263 * Makefile.in: Remove HLDFLAGS and HLDENV.
5264 * configure: Regenerated.
5265
5266 2003-01-04 Andrew Cagney <ac131313@redhat.com>
5267
5268 * frame.c (deprecated_frame_xmalloc): New function.
5269 (deprecated_set_frame_saved_regs_hack): New function.
5270 (deprecated_set_frame_extra_info_hack): New function.
5271 * frame.h (deprecated_frame_xmalloc): Declare.
5272 (deprecated_set_frame_saved_regs_hack): Declare.
5273 (deprecated_set_frame_extra_info_hack): Declare.
5274
5275 2003-01-04 Mark Kettenis <kettenis@gnu.org>
5276
5277 * configure.in: Move code that provides the --enable-gdbtk option
5278 right after the code that handles the --enable-tui option, and
5279 polish it somewhat.
5280 * configure: Regenerated.
5281
5282 * configure.in: Call AC_GNU_SOURCE. Check for pread64 using
5283 AC_CHECK_FUNCS and remove the old check for pread64.
5284 * acinclude.m4 (AC_GNU_SOURCE): New macro.
5285 * acconfig.h (_GNU_SOURCE): Add.
5286 (HAVE_PREAD64): Remove.
5287 * configure, aclocal.m4, config.in: Regenerated.
5288
5289 2003-01-03 Andrew Cagney <ac131313@redhat.com>
5290
5291 * alpha-tdep.c: Use get_frame_saved_regs.
5292 * arm-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
5293 * h8300-tdep.c, i386-tdep.c, ia64-tdep.c, m68hc11-tdep.c: Ditto.
5294 * m68k-tdep.c, mcore-tdep.c, mips-tdep.c, mn10300-tdep.c: Ditto.
5295 * ns32k-tdep.c, s390-tdep.c, sh-tdep.c, v850-tdep.c: Ditto.
5296 * vax-tdep.c, xstormy16-tdep.c: Ditto.
5297
5298 2003-01-03 Mark Kettenis <kettenis@gnu.org>
5299
5300 * configure.in: Remove all use of the SUBDIRS variable; add
5301 directories using the AC_CONFIG_SUBDIRS macro instead. Polish
5302 code providing the --enable-multi-ice option, and move it right in
5303 front of the code that checks whether gdbserver is supported.
5304 Polish that too.
5305 * configure: Regenerated.
5306 * Makefile.in (SUBDIRS): Substitute @subdirs@ instead of
5307 @SUBDIRS@.
5308
5309 2003-01-03 Andrew Cagney <cagney@redhat.com>
5310
5311 * alpha-tdep.c: Use deprecated_update_frame_base_hack.
5312 * avr-tdep.c, cris-tdep.c: Ditto.
5313 * mcore-tdep.c, mips-tdep.c, mn10200-tdep.c: Ditto.
5314 * sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
5315
5316 2003-01-03 Mark Kettenis <kettenis@gnu.org>
5317
5318 * configure.in: Remove --enable-netrom option.
5319 * configure: Regenerated.
5320
5321 2003-01-03 Mark Kettenis <kettenis@gnu.org>
5322
5323 * cli/cli-decode.h: Don't include "gdb_regex.h"; provide a forward
5324 declaration for `struct re_pattern_buffer' instead.
5325 * Makefile.in (cli_decode_h): Remove $(gdb_regex_h).
5326
5327 2003-01-03 J. Brobecker <brobecker@gnat.com>
5328
5329 * mdebugread.c (parse_symbol): Count until the stEnd matching
5330 the structure name.
5331
5332 2003-01-02 Mark Kettenis <kettenis@gnu.org>
5333
5334 * configure.in: Remove --with-cpu option.
5335 subscripts. Remove evil changequotes here.
5336 * acconfig.h (TARGET_CPU_DEFAULT): Remove.
5337 * config.in, configure: Regenerated.
5338
5339 * acconfig.h (DEFAULT_BFD_ARCH, DEFAULT_BFD_VEC): Remove.
5340 * configure.in: Cleanup section that sources GDB and BFD configure
5341 subscripts. Remove evil changequotes here.
5342 * config.in, configure: Regenerated.
5343
5344 2003-01-02 Andrew Cagney <ac131313@redhat.com>
5345
5346 * arm-tdep.c: Use get_frame_pc and deprecated_update_frame_pc_hack
5347 frame accessor methods.
5348 * alpha-tdep.c, avr-tdep.c, cris-tdep.c, d10v-tdep.c: Ditto.
5349 * dwarf2cfi.c, h8300-tdep.c, i386-tdep.c, ia64-tdep.c: Ditto.
5350 * m68hc11-tdep.c, m68k-tdep.c, mcore-tdep.c, mips-tdep.c: Ditto.
5351 * mn10200-tdep.c, mn10300-tdep.c, ns32k-tdep.c: Ditto.
5352 * s390-tdep.c, sh-tdep.c, sparc-tdep.c, v850-tdep.c: Ditto.
5353 * vax-tdep.c, x86-64-linux-tdep.c, xstormy16-tdep.c: Ditto.
5354 * z8k-tdep.c: Ditto.
5355
5356 2003-01-02 Mark Kettenis <kettenis@gnu.org>
5357
5358 * configure.in: Remove UI_OUT configuration code.
5359 * ada-lang.c: Update assuming UI_OUT is always true.
5360 * Makefile.in (UIOUT_CFLAGS): Remove.
5361 * configure: Regenerated.
5362 * TODO: Remove blurb about elimination of -DUI_OUT.
5363
5364 * configure.in: Move code that provides the --enable-gdbcli,
5365 --enable-gdbmi options right before the code that handles the
5366 --enable-tui option. Polish a bit.
5367 * configure: Regenerated.
5368
5369 * configure.in: Rewrite check for GNU regex and the
5370 --without-included regex option, and move it into the "Checks for
5371 library functions" section. This makes us use the system regex
5372 again by default on systems with version 2 of the GNU C library.
5373 This was apparently broken.
5374 * gdb_regex.h [!USE_INCLUDED_REGEX] (_REGEX_RE_COMP): Define.
5375 * acconfig.h (USE_INCLUDED_REGEX): Remove.
5376 * config.in, configure: Regenerated.
5377
5378 * configure.in: Move code that provides the --enable-tui option
5379 before the "Checks for libraries" section. Polish the code
5380 somewhat and set need_curses to yes if we build the TUI. Rewrite
5381 code that looks for a library providing termcap functionality to
5382 match more closely what's done in the Readline library, and move
5383 it into to the "Checks for libraries" section.
5384 * configure: Regenerated.
5385 * Makefile.in (TERMCAP): Remove variable.
5386 * config/i386/go32.mh (TERMCAP): Remove variable.
5387
5388 2003-01-02 Andrew Cagney <ac131313@redhat.com>
5389
5390 * MAINTAINERS: Mention gdb_mbuild.sh.
5391 * gdb_mbuild.sh: Rewrite.
5392
5393 2003-01-02 Mark Kettenis <kettenis@gnu.org>
5394
5395 * configure.in: Fix typo in last change.
5396 * config.in, configure: Regenerated.
5397
5398 2003-01-02 Andrew Cagney <ac131313@redhat.com>
5399
5400 * valarith.c (value_binop): Delete obsolete code and comments.
5401 * configure.host: Ditto.
5402 * buildsym.h (make_blockvector): Ditto.
5403 * buildsym.c (make_blockvector): Ditto.
5404 * defs.h (enum language): Ditto.
5405 (chill_demangle): Ditto.
5406 * elfread.c (elf_symtab_read): Ditto.
5407 * dwarfread.c (CHILL_PRODUCER): Ditto.
5408 (set_cu_language): Ditto.
5409 (handle_producer): Ditto.
5410 * expprint.c (print_subexp): Ditto.
5411 * gdbtypes.c (chill_varying_type): Ditto.
5412 * gdbtypes.h (builtin_type_chill_bool): Ditto.
5413 (builtin_type_chill_char, builtin_type_chill_long): Ditto.
5414 (builtin_type_chill_ulong, builtin_type_chill_real): Ditto.
5415 (chill_varying_type): Ditto.
5416 * language.h (_LANG_chill): Ditto.
5417 * language.c (binop_result_type, integral_type): Ditto.
5418 (character_type, string_type, structured_type): Ditto.
5419 (lang_bool_type, binop_type_check): Ditto.
5420 * stabsread.h (os9k_stabs): Ditto.
5421 * stabsread.c (os9k_type_vector, dbx_lookup_type): Ditto.
5422 (define_symbol, read_type, read_struct_fields): Ditto.
5423 (read_array_type, read_enum_type, read_huge_number): Ditto.
5424 (read_range_type, start_stabs): Ditto.
5425 * symfile.c (init_filename_language_table): Ditto.
5426 (add_psymbol_with_dem_name_to_list): Ditto.
5427 * symtab.c (symbol_init_language_specific): Ditto.
5428 (symbol_init_demangled_name, symbol_demangled_name): Ditto.
5429 * symtab.h (struct general_symbol_info): Ditto.
5430 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
5431 * typeprint.c (typedef_print): Ditto.
5432 * utils.c (fprintf_symbol_filtered): Ditto.
5433 * valops.c (value_cast, search_struct_field, value_slice): Delete
5434 obsolete code.
5435 (varying_to_slice): Delete function.
5436 * value.h (COERCE_VARYING_ARRAY): Delete obsolete macro contents.
5437 (varying_to_slice): Delete declaration.
5438 * MAINTAINERS: Update.
5439
5440 2003-01-02 Mark Kettenis <kettenis@gnu.org>
5441
5442 * configure.in: Reorganize "Checks for library functions section"
5443 a bit. Remove check for `btowc' and `isascii' functions.
5444 * configure: Regenerated.
5445
5446 * acconfig.h (_MSE_INT_H): Remove.
5447 * configure.in: Create "Checks for header files" section, and move
5448 appropriate tests there. Don't check for objlist.h, wchar.h,
5449 wctype.h and asm/debugreg.h. Rewrite Solaris 2.[78] <curses.h>
5450 misdetection fix. Also add "Checks for types", "Checks for
5451 compiler characteristics" and "Checks for library functions"
5452 sections.
5453 * config.in, configure: Regenerated.
5454
5455 * configure.in: Create "Checks for programs" section, and move
5456 appropriate tests there.
5457
5458 2003-01-01 Mark Kettenis <kettenis@gnu.org>
5459
5460 * configure.in: Create "Checks for libraries" section, and move
5461 appropriate tests there. Cleanup check for wctype in libw. Use
5462 AC_SEARCH_LIBS to see whether we need libsocket.
5463 * configure: Regenerated.
5464
5465 For older changes see ChangeLog-2002
5466 \f
5467 Local Variables:
5468 mode: change-log
5469 left-margin: 8
5470 fill-column: 74
5471 version-control: never
5472 End:
This page took 0.210483 seconds and 5 git commands to generate.