* Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2002-08-27 Tom Tromey <tromey@redhat.com>
2
3 * Makefile.in (osabi.o, i387-tdep.o, i386-linux-nat.o, lin-lwp.o,
4 ax-gdb.o, signals.o, jv-valprint.o, c-valprint.o, cp-abi.o):
5 Update dependencies.
6 * i387-tdep.c: Include gdb_string.h.
7 * osabi.c: Likewise.
8 * i386-linux-nat.c: Likewise.
9 * lin-lwp.c: Likewise.
10 * ax-gdb.c: Likewise.
11 * signals/signals.c: Likewise.
12 * jv-valprint.c: Likewise.
13 * p-lang.c: Likewise.
14 * c-valprint.c: Likewise.
15 * cp-abi.c: Likewise.
16
17 2002-08-27 Elena Zannoni <ezannoni@redhat.com>
18
19 * cli/cli-script.h (copy_command_lines): Export.
20 * breakpoint.c: Include cli/cli-script.h.
21 * Makefile.in (breakpoint.o): Update dependencies.
22
23 2002-08-26 Joel Brobecker <brobecker@gnat.com>
24
25 * cli/cli-script.c (copy_command_lines): New function.
26 * defs.h (copy_command_lines): Export.
27 * testsuite/gdb.base/commands.exp: New tests for commands
28 attached to a temporary breakpoint, and for commands that
29 delete the breakpoint they are attached to.
30
31 2002-08-26 Michael Snyder <msnyder@redhat.com>
32
33 * breakpoint.c (bpstat_stop_status): Instead of copying the
34 pointer to the breakpoint commands struct, make a new copy
35 of the struct and point to that.
36 (bpstat_clear): Free the commands struct.
37 (bpstat_clear_actions): Free the commands struct.
38 (bpstat_do_actions): Free the command actions. Also execute
39 the local cleanups, instead of deleting them.
40 (delete_breakpoint): Leave the commands field of the bpstat
41 chain alone -- it will be freed later.
42
43 2002-08-26 Kevin Buettner <kevinb@redhat.com>
44
45 * rs6000-tdep.c (altivec_register_p): Restore function inadvertently
46 deleted in 2002-08-20 commit. This function is still used by
47 ppc-linux-nat.c.
48
49 2002-08-26 Keith Seitz <keiths@redhat.com>
50
51 * gdb-events.sh: Add selected-frame-level-changed event.
52 * gdb-events.c: Regenerated.
53 * gdb-events.h: Regenerated.
54
55 2002-08-26 Stephane Carrez <stcarrez@nerim.fr>
56
57 Fix PR gdb/393:
58 * inflow.c (terminal_save_ours): New function to save terminal
59 settings.
60 * inferior.h (terminal_save_ours): Declare.
61 * target.c (debug_to_terminal_save_ours): New function.
62 (cleanup_target): Defaults to_terminal_save_ours.
63 (update_current_target): Inherit to_terminal_save_ours.
64 (setup_target_debug): Set to_terminal_save_ours.
65 * target.h (target_terminal_save_ours): New to save terminal settings.
66 (target_ops): New member to_terminal_save_ours.
67 * gnu-nat.c (init_gnu_ops): Set to_terminal_save_ours.
68 * hpux-thread.c (init_hpux_thread_ops): Likewise.
69 * inftarg.c (init_child_ops): Likewise.
70 * m3-nat.c (init_m3_ops): Likewise.
71 * procfs.c (init_procfs_ops): Likewise.
72 * wince.c (init_child_ops): Likewise.
73 * win32-nat.c (init_child_ops): Likewise.
74 * sol-thread.c (init_sol_thread_ops): Likewise.
75
76 2002-08-26 Mark Kettenis <kettenis@gnu.org>
77
78 * i386-tdep.c (i386_store_return_value): Undeprecate. Convert to
79 use regcache_* functions.
80 (i386_gdbarch_init): Set store_return_value instead of
81 deprecated_store_return_value.
82
83 * regcache.c (regcache_raw_write_signed,
84 regcache_raw_write_unsigned): New functions.
85 * regcache.h (regcache_raw_write_signed,
86 regcache_raw_write_unsigned): New prototypes.
87
88 2002-08-25 Andrew Cagney <ac131313@redhat.com>
89
90 * Makefile.in (c-exp.tab.o, jv-exp.tab.o, f-exp.tab.o)
91 (m2-exp.tab.o, p-exp.tab.o, ada-exp.tab.o): Move to before the
92 source file dependencies. Cleanup corresponding generator rules.
93
94 2002-08-25 Andrew Cagney <ac131313@redhat.com>
95
96 * regcache.h (register_offset_hack): Declare.
97 (regcache_cooked_read_using_offset_hack): Declare.
98 (regcache_cooked_write_using_offset_hack): Declare.
99
100 * regcache.c (register_offset_hack): New function.
101 (regcache_cooked_read_using_offset_hack): New function.
102 (regcache_cooked_write_using_offset_hack): New function.
103 (regcache_dump): Check that the registers, according to their
104 offset, are packed hard against each other.
105 (cooked_xfer_using_offset_hack): New function.
106
107 2002-08-25 Andrew Cagney <ac131313@redhat.com>
108
109 * regcache.c (struct regcache_descr): Add field register_type.
110 (init_legacy_regcache_descr): Pass a pre-allocated regcache_descr
111 in as a parameter
112 (init_regcache_descr): Initialize register_type. Pass the descr
113 to init_legacy_regcache_descr. Use register_type instead of
114 REGISTER_VIRTUAL_TYPE.
115 (register_type): New function.
116 (regcache_dump): Replace REGISTER_VIRTUAL_TYPE with register_type.
117 * regcache.h (register_type): Declare.
118
119 2002-08-25 Andrew Cagney <ac131313@redhat.com>
120
121 * rs6000-tdep.c (rs6000_gdbarch_init): Set store_struct_return
122 instead of deprecated_store_return_value. Fix fallout from
123 2002-08-23 Andrew Cagney <cagney@redhat.com>.
124
125 2002-08-25 Andrew Cagney <ac131313@redhat.com>
126
127 * regcache.c (max_register_size): New function.
128 (init_legacy_regcache_descr): Ensure that max_register_size is
129 large enough for REGISTER_VIRTUAL_SIZE.
130 * regcache.h (max_register_size): Declare.
131
132 2002-08-24 Andrew Cagney <ac131313@redhat.com>
133
134 * rs6000-tdep.c (rs6000_gdbarch_init): Use deprecated version of
135 store_return_value.
136 (e500_extract_return_value): Change type of valbuf pointer to
137 void.
138
139 2002-08-24 Mark Kettenis <kettenis@gnu.org>
140
141 * PROBLEMS: Clarify problems with FreeBSD's compiler and suggest
142 workaround.
143
144 * valprint.c (print_longest) [CC_HAS_LONG_LONG &&
145 PRINTF_HAS_LONG_LONG]: Cast val_long to (long long) or (unsigned
146 long long) to prevent compiler warning on 64-bit systems.
147
148 2002-08-23 Andrew Cagney <cagney@redhat.com>
149
150 * gdbarch.sh (STORE_RETURN_VALUE): Add regcache parameter.
151 (DEPRECATED_STORE_RETURN_VALUE): New method.
152 (EXTRACT_RETURN_VALUE): Make buffer parameter a void pointer.
153 * gdbarch.h, gdbarch.c: Re-generate.
154
155 * values.c (set_return_value): Pass current_regcache to
156 STORE_RETURN_VALUE.
157 * arch-utils.h (legacy_store_return_value): Declare.
158 * arch-utils.c (legacy_store_return_value): New function.
159 (legacy_extract_return_value): Update parameters.
160
161 * config/pa/tm-hppa.h (DEPRECATED_STORE_RETURN_VALUE): Rename
162 STORE_RETURN_VALUE.
163 * config/pa/tm-hppa64.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
164 * config/sparc/tm-sparc.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
165 * config/z8k/tm-z8k.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
166 * config/sparc/tm-sparclet.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
167 * config/mn10200/tm-mn10200.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
168 * config/m68k/tm-linux.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
169 * config/m68k/tm-delta68.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
170 * config/m32r/tm-m32r.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
171 * config/h8500/tm-h8500.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
172 * config/h8300/tm-h8300.h (DEPRECATED_STORE_RETURN_VALUE): Ditto.
173
174 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
175 * i386-tdep.c (i386_extract_return_value): Update.
176 * arch-utils.c (legacy_extract_return_value): Update.
177 * frv-tdep.c (frv_gdbarch_init): Update.
178 * cris-tdep.c (cris_gdbarch_init): Update.
179 * d10v-tdep.c (d10v_gdbarch_init): Update.
180 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
181 * m68k-tdep.c (m68k_gdbarch_init): Update.
182 * mcore-tdep.c (mcore_gdbarch_init): Update.
183 * mn10300-tdep.c (mn10300_gdbarch_init): Update.
184 * s390-tdep.c (s390_gdbarch_init): Update.
185 * sparc-tdep.c (sparc_gdbarch_init): Update.
186 * sh-tdep.c (sh_gdbarch_init): Update.
187 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
188 * v850-tdep.c (v850_gdbarch_init): Update.
189 * avr-tdep.c (avr_gdbarch_init): Update.
190 * ia64-tdep.c (ia64_gdbarch_init): Update.
191 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
192 * vax-tdep.c (vax_gdbarch_init): Update.
193 * alpha-tdep.c (alpha_gdbarch_init): Update.
194 * arm-tdep.c (arm_gdbarch_init): Update.
195 * mips-tdep.c (mips_gdbarch_init): Update.
196 * i386-tdep.c (i386_gdbarch_init): Update.
197
198 2002-08-23 Andrew Cagney <ac131313@redhat.com>
199
200 * config/djgpp/fnchange.lst: Add entries for bfd/elf32-ppcqnx.c,
201 bfd/elf32-ppc.c, bfd/elf32-sh.c and bfd/elf32-shqnx.c.
202
203 2002-08-24 Mark Kettenis <kettenis@gnu.org>
204
205 * PROBLEMS: Refer to GDB 5.3 instead of 5.2. Mention FreeBSD
206 problems.
207
208 2002-08-23 Joel Brobecker <brobecker@gnat.com>
209
210 * infrun.c (handle_inferior_event): Move a comment outside of a
211 function call, in order to avoid indent reformatting this part
212 of the code in an unreadable way.
213
214 2002-08-23 Grace Sainsbury <graces@redhat.com>
215
216 * infrun.c (normal_stop, proceed): Remove call to print_sys_errmsg
217 when breakpoints fail. Move general breakpoint error messages to
218 insert_breakpoints.
219 * breakpoint.c (insert_breakpoints): Change warnings when
220 breakpoints are nto inserted to specify the type. Remove call to
221 memory_error when hardware breakpoints can't be inserted. Remove
222 multiple calls to warning so all messages are sent to the user at
223 once.
224 (delete_breakpoints): Make insert error messsages more explicit.
225
226 2002-08-23 Daniel Jacobowitz <drow@mvista.com>
227
228 * ChangeLog: Move gdbserver entries after GDB 5.2 to
229 gdbserver/ChangeLog.
230
231 2002-08-23 Mark Kettenis <kettenis@gnu.org>
232
233 * i386-tdep.c: Include "objfiles.h".
234 (i386_svr4_init_abi): Set in_solib_call_trampoline and
235 skip_trampoline_code.
236 * config/i386/tm-i386v4.h: Don't include "config/tm-sysv4.h".
237 (CPLUS_MARKER): Define to '.'.
238
239 * linux-proc.c (struct linux_corefile_thread_data): Add num_notes
240 member.
241 (linux_corefile_thread_callback): Increase args->num_notes.
242 (linux_make_note_section): Initialize thread_args.num_notes, and
243 use it to determine whether notes for any threads were created.
244
245 2002-08-23 Donn Terry <dterry@microsoft.com>
246
247 * proc-api.c (rw_table): Do not include a row for PCDSTOP if the
248 corresponding macro is not defined. Likewise for PCNICE, PCSHOLD
249 and PCUNKILL.
250 (write_with_trace): Conditionalize out the switch branch handling
251 PCSHOLD if the corresponding macro is not defined. Likewise for
252 PRSABORT and PRSTOP.
253 This change will be needed by the Interix port.
254
255 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
256
257 * ppc-sysv-tdep.c (ppc_sysv_abi_push_arguments): use
258 write_register wherever possible instead of manipulating the
259 register bytes directly.
260 Assign VALUE_CONTENTS to a variable and use that.
261 The GPR numbers are now dependent on the architecture.
262
263 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
264
265 * rs6000-tdep.c (struct rs6000_framedata): Add saved_ev and
266 ev_offset fields.
267 (skip_prologue): Add support for BookE/e500 instructions.
268 (e500_extract_return_value): New function.
269 (frame_get_saved_regs): Add support for saving ev registers and
270 pseudo gpr's.
271 (e500_store_return_value): New function.
272 (rs6000_gdbarch_init): Move up default intializations of
273 deprecated_extract_return_value and store_return_value. Overwrite
274 init of store_return_value with e500 specific version.
275 Set extract_return_value for e500.
276
277 2002-08-22 Elena Zannoni <ezannoni@redhat.com>
278
279 * blockframe.c (generic_call_dummy_register_unwind): Use
280 regcache_cooked_read to catch cases in which the variable is
281 stored in a pseudo register.
282
283 2002-08-22 Andrew Cagney <cagney@redhat.com>
284
285 * NEWS: Mention that the i960 has been made obsolete.
286 * Makefile.in (SFILES): Delete remote-nrom.c, remote-nindy.c and
287 i960-tdep.c
288 (remote-nrom.o): Obsolete target.
289 (remote-nindy.o, i960-tdep.o): Ditto.
290 * remote-nrom.c: Make file obsolete.
291 * remote-nindy.c, remote-vx960.c: Ditto.
292 * config/i960/vxworks960.mt, config/i960/nindy960.mt: Ditto.
293 * config/i960/mon960.mt, config/i960/tm-i960.h: Ditto.
294 * config/i960/tm-vx960.h, config/i960/tm-nindy960.h: Ditto.
295 * config/i960/tm-mon960.h, i960-tdep.c: Ditto.
296 * configure.tgt: Make i960-*-bout*, i960-nindy-coff*,
297 i960-*-coff*, i960-nindy-elf*, i960-*-elf*, i960-*-nindy* and
298 i960-*-vxworks* obsolete.
299 * MAINTAINERS: Note that the i960 is obsolete.
300
301 2002-08-21 Corinna Vinschen <vinschen@redhat.com
302
303 * aix-thread.c (aix_thread_detach): Disable thread debugging on
304 detach to allow reinitialization.
305
306 2002-08-22 Andrew Cagney <ac131313@redhat.com>
307
308 * MAINTAINERS: Change the s390 target to s390-linux-gnu (second
309 attempt).
310
311 2002-08-22 Jim Blandy <jimb@redhat.com>
312
313 * coffread.c (coff_symfile_read): Don't try to read the line
314 number table from disk if the image file doesn't have a symbol
315 table; we'll never actually look at the info anyway, and Windows
316 ships DLL's with bogus file offsets for the line number data.
317
318 2002-08-21 Elena Zannoni <ezannoni@redhat.com>
319
320 * rs6000-tdep.c (rs6000_gdbarch_init): Figure out whether we have
321 an e500 executable.
322
323 2002-08-21 Michael Snyder <msnyder@redhat.com>
324
325 * mips-tdep.c (MSYMBOL_IS_SPECIAL): Replace macro with function.
326 (MSYMBOL_SIZE): Replace macro with function.
327 (DEFAULT_MIPS_TYPE): Delete unused macro.
328 * config/mips/tm-mips.h (DEFAULT_MIPS_TYPE): Delete unused macro.
329 * config/mips/tm-embed.h (DEFAULT_MIPS_TYPE): Delete unused macro.
330
331 2002-08-21 Jim Blandy <jimb@redhat.com>
332
333 * valops.c (value_cast): Simplify and correct logic for doing a
334 static cast from a pointer to a base class to a pointer to a
335 derived class.
336
337 2002-08-21 Andrew Cagney <ac131313@redhat.com>
338
339 * infcmd.c (default_print_registers_info): Replace
340 do_registers_info.
341 (registers_info): Use gdbarch_print_registers_info instead of
342 DO_REGISTERS_INFO.
343 * inferior.h (default_print_registers_info): Replace
344 do_registers_info.
345 * gdbarch.sh (PRINT_REGISTERS_INFO): New method.
346 (DO_REGISTERS_INFO): Change to a predicate function.
347 * gdbarch.h, gdbarch.c: Regenerate.
348
349 2002-08-21 Keith Seitz <keiths@redhat.com>
350
351 * gdb-events.sh: Add target-changed event.
352 * gdb-events.c: Regenerated.
353 * gdb-events.c: Regenerated.
354 * valops.c (value_assign): Add target-changed event notification
355 to inlval_register, lval_memory, and lval_reg_frame_relative.
356
357 2002-08-21 Joel Brobecker <brobecker@gnat.com>
358
359 * NEWS: Add an entry regarding the improvement of the next/step
360 operation on Alpha Tru64 multi-processor machines.
361
362 2002-08-21 Andrew Cagney <ac131313@redhat.com>
363
364 * Makefile.in: Update dependencies for mi/ cli/ and tui/
365 directores.
366 * Makefile.in: Update all _h macro definitions.
367 * Makefile.in (install-gdbtk): Move to install section.
368 (rdi-share/libangsd.a): Move to end of file.
369
370 2002-08-19 Andrew Cagney <ac131313@redhat.com>
371
372 * frame.c (frame_register_unwind): When a register, set addrp to
373 the register's byte.
374
375 2002-08-20 Michael Snyder <msnyder@redhat.com>
376
377 * mips-tdep.c (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): These are only
378 used locally, so move them from the target machine header to here.
379 (mips_set_processor_type, mips_register_name, mips32_next_pc,
380 mips16_next_pc, cached_proc_desc, mips_set_processor_type):
381 Make static.
382 * config/mips/tm-mips.h (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Delete.
383
384 2002-08-20 Andrew Cagney <cagney@redhat.com>
385
386 * NEWS: Mention that the Apollo line was made obsolete.
387 * configure.tgt: Make m68*-apollo*-bsd*, m68*-hp-bsd*, and
388 m68*-hp-hpux* obsolete.
389 * configure.host: Make m68*-apollo*-sysv*, m68*-apollo*-bsd*,
390 m68*-hp-bsd* and m68*-hp-hpux* obsolete.
391 * buildsym.c (make_blockvector): Make static.
392 * buildsym.h (make_blockvector): Make extern declaration obsolete.
393 * Makefile.in (HFILES_NO_SRCDIR): Remove dst.h
394 (ALLDEPFILES): Remove dstread.c.
395 (dstread.o): Obsolete make rule.
396 * dstread.c: Makefile obsolete.
397 * dst.h: Ditto.
398 * config/m68k/hp300hpux.mt: Ditto.
399 * config/m68k/hp300hpux.mh: Ditto.
400 * config/m68k/hp300bsd.mt: Ditto.
401 * config/m68k/hp300bsd.mh: Ditto.
402 * config/m68k/apollo68b.mt: Ditto.
403 * config/m68k/apollo68v.mh: Ditto.
404 * config/m68k/apollo68b.mh: Ditto.
405
406 2002-08-20 Michael Snyder <msnyder@redhat.com>
407
408 * mips-tdep.c (mips_in_return_stub): Make static.
409 (mips_gdbarch_init): Set in_solib_return_trampoline.
410 * config/mips/tm-mips.h (IN_SOLIB_RETURN_TRAMPOLINE): Delete.
411
412 2002-08-20 Michael Snyder <msnyder@redhat.com>
413
414 * gdbarch.sh (IN_SOLIB_RETURN_TRAMPOLINE): Add.
415 * gdbarch.c, gdbarch.h: Regenerate.
416 * arch-utils.c, arch-utils.h (generic_in_solib_return_trampoline):
417 Add.
418 * infrun.c (IN_SOLIB_RETURN_TRAMPOLINE): Delete default definition.
419
420 2002-08-20 Michael Snyder <msnyder@redhat.com>
421
422 * mips-tdep.c (mips_skip_stub, mips_in_call_stub): Make static.
423 (mips_gdbarch_init): Set skip_trampoline_code,
424 in_solib_call_trampoline.
425 * config/mips/tm-mips.h (REGISTER_NAME): Delete.
426 (IN_SOLIB_CALL_TRAMPOLINE, SKIP_TRAMPOLINE_CODE): Delete.
427
428 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
429
430 * ppc-tdep.h (struct gdbarch_tdep): Add ev registers.
431
432 * rs6000-tdep.c (rs6000_register_virtual_type): Return 64 bit
433 vector type for ev registers.
434 (e500_pseudo_register_read): New function.
435 (e500_pseudo_register_write): New function.
436 (e500_dwarf2_reg_to_regnum): New function.
437 (PPC_UISA_NOFP_SPRS): New macro.
438 (PPC_EV_REGS): New macro.
439 (PPC_GPRS_PSEUDO_REGS): New macro.
440 (registers_e500): New register set for e500.
441 (variants): Add e500 variant.
442 (rs6000_gdbarch_init): Move setting of pc, sp, fp regnums to
443 before setting architectural dependent variations. Initialize ev
444 registers numbers. Add case for e500 architecture. Set the
445 number of pseudo registers.
446
447 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
448
449 * rs6000-tdep.c: Clean up comments.
450
451 2002-08-20 Andrew Cagney <cagney@redhat.com>
452
453 * h8300-tdep.c: Re-indent file.
454
455 2002-08-20 Jim Blandy <jimb@redhat.com>
456
457 * Makefile.in (LDFLAGS): Allow the configure script to establish a
458 default for this.
459
460 2002-08-20 Keith Seitz <keiths@redhat.com>
461
462 * breakpoints.c (watch_command_1): Use internal breakpoint
463 when setting a watchpoint_scope breakpoint.
464
465 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
466
467 * gdbtypes.c (build_builtin_type_vec64): Add name to type.
468 (build_builtin_type_vec64i): Ditto.
469 (build_builtin_type_vec128): Ditto.
470 (build_builtin_type_vec128i): Ditto.
471
472 2002-08-19 Michael Snyder <msnyder@redhat.com>
473
474 * config/mips/tm-mips.h (ELF_MAKE_MSYMBOL_SPECIAL): Delete.
475 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Change into functions.
476 (FIX_CALL_DUMMY, PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME,
477 POP_FRAME, INIT_EXTRA_FRAME_INFO): Delete.
478 (CALL_DUMMY_START_OFFSET, CALL_DUMMY_BREAKPOINT_OFFSET,
479 CALL_DUMMY_ADDRESS): Delete.
480 * mips-tdep.c (mips_elf_make_msymbol_special, mips_msymbol_size,
481 mips_msymbol_is_special, mips_fix_call_dummy): New functions.
482 (mips_gdbarch_init): Set elf_make_msymbol_special, pop_frame,
483 push_dummy_frame, fix_call_dummy, init_extra_frame_info,
484 push_return_address.
485 (mips_register_raw_size, mips_eabi_use_struct_convention,
486 mips_n32n64_use_struct_convention, mips_o32_use_struct_convention,
487 mips_o32_reg_struct_has_addr, mips_frame_saved_pc, mips_frame_chain,
488 mips_init_extra_frame_info, mips_eabi_push_arguments,
489 mips_n32n64_push_arguments, mips_push_return_address,
490 mips_push_dummy_frame, mips_pop_frame, mips_skip_prologue,
491 mips_breakpoint_from_pc, mips_call_dummy_address): Make static.
492
493 2002-08-19 Michael Snyder <msnyder@redhat.com>
494
495 * mips-tdep.c (mips_frame_num_args): New function.
496 (mips_gdbarch_init): Set frame_chain, frameless_function_invocation,
497 frame_saved_pc, frame_args_address, frame_locals_address,
498 frame_num_args, and frame_args_skip.
499 * config/mips/tm-mips.h (FRAME_CHAIN, FRAMELESS_FUNCTION_INVOCATION,
500 FRAME_SAVED_PC, FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS,
501 FRAME_NUM_ARGS, FRAME_ARGS_SKIP): Delete.
502 * config/mips/tm-mipsv4.h (FRAME_CHAIN_VALID): Delete.
503
504 2002-08-20 Michael Snyder <msnyder@redhat.com>
505
506 * config/mips/tm-mips.h (STORE_STRUCT_RETURN): Delete.
507 (EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
508 * mips-tdep.c (mips_store_struct_return): New function.
509 (mips_extract_struct_value_address): New function.
510 (mips_gdbarch_init): Set store_struct_return and
511 extract_struct_value_address.
512
513 2002-08-20 David Carlton <carlton@math.stanford.edu>
514
515 * dwarf2read.c (dwarf2_build_psymtabs): Check that
516 dwarf_line_offset is nonzero before creating dwarf_line_buffer.
517 (read_file_scope): Check that line_header is nonzero before
518 decoding macro information.
519
520 2002-08-20 Mark Kettenis <kettenis@gnu.org>
521
522 * i386-tdep.h (FP_REGNUM_P): Change such that we don't incorrectly
523 flag the general-purpose registers as floating-point on targets
524 that don't support the floating-point registers.
525
526 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
527
528 * rs6000-tdep.c (altivec_register_p): Delete.
529 (rs6000_do_altivec_registers): Delete.
530 (rs6000_altivec_registers_info): Delete.
531 (rs6000_do_registers_info): Delete.
532 (_initialize_rs6000_tdep): Remove command 'info powerpc altivec'.
533 (rs6000_gdbarch_init): Remove setting of do_registers_info.
534
535 2002-08-20 Elena Zannoni <ezannoni@redhat.com>
536
537 * infcmd.c (do_registers_info): Print vector registers in hex
538 format only.
539 (print_vector_info): Check that printing registers
540 makes sense.
541 (print_float_info): Ditto.
542
543 2002-08-20 Andrew Cagney <ac131313@redhat.com>
544
545 * mips-tdep.c (mips_gdbarch_init): Update.
546 (mips_o32_extract_return_value): Rewrite.
547 (mips_o32_store_return_value): Rewrite.
548 (mips_o32_xfer_return_value): New function.
549 (mips_xfer_register): Tweak debug print message. Allow for
550 buf_offset when dumping the value transfered.
551
552 2002-08-20 Andrew Cagney <ac131313@redhat.com>
553
554 * config/mips/tm-nbsd.h (MIPS_DEFAULT_ABI): Delete.
555 * config/mips/tm-linux.h (MIPS_DEFAULT_ABI): Delete.
556 * config/mips/tm-irix5.h (MIPS_DEFAULT_ABI): Delete.
557 * config/mips/tm-irix6.h (MIPS_DEFAULT_ABI): Delete.
558 * mips-tdep.c (mips_gdbarch_init) [MIPS_DEFAULT_ABI]: Delete code.
559
560 2002-08-14 Michael Snyder <msnyder@redhat.com>
561
562 * mips-tdep.c (mips_frame_chain): Check for call-dummy frames.
563
564 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
565
566 * rs6000-tdep.c (struct reg): Add field to indicate a pseudo
567 register.
568 (P): New macro to define a register as a pseudo register.
569 (R, R4, R8, R16, FR32, R64, R0): Updated.
570 (struct variant): Add new fields for number of pseudo registers
571 and number of total registers.
572 (tot_num_registers): New macro replacing....
573 (num_registers): ...deleted macro.
574 (num_registers): New function.
575 (num_pseudo_registers): New function.
576 (variants): Update all variants to intialize new fields correctly.
577 Postpone initialization of number of pseudo regs and real regs.
578 (init_variants): New function.
579 (rs6000_gdbarch_init): Initialize variants. Update calculation of
580 registers offsets.
581
582 2002-08-19 David Carlton <carlton@math.stanford.edu>
583
584 * valops.c (search_struct_field): Change error message to treat
585 return value of 0 from value_static_field as meaning that field is
586 optimized out.
587 (value_struct_elt_for_reference): Ditto.
588 * values.c (value_static_field): Treat an unresolved location the
589 same as a nonexistent symbol. Fix PR gdb/635.
590 * gnu-v2-abi.c (gnuv2_value_rtti_type): Eliminate test for being
591 enclosed. Fix PR gdb/574.
592 * MAINTAINERS: Add self to Write After Approval list.
593
594 2002-08-19 Andrew Cagney <ac131313@redhat.com>
595
596 * mips-tdep.c (mips_xfer_register): New function.
597 (mips_n32n64_extract_return_value): Rewrite.
598 (mips_gdbarch_init): For N32 and N64, set extract_return_value
599 instead of deprecated_extract_return_value.
600
601 2002-08-19 Elena Zannoni <ezannoni@redhat.com>
602
603 * rs6000-tdep.c (TDEP): Delete macro.
604 (branch_dest): Replace use of TDEP macro with its body.
605 (rs6000_pop_frame): Ditto.
606 (rs6000_push_arguments): Ditto.
607 (rs6000_skip_trampoline_code): Ditto.
608 (rs6000_frame_saved_pc): Ditto.
609 (rs6000_frame_chain): Ditto.
610 (rs6000_register_name): Ditto.
611 (rs6000_register_byte): Ditto.
612 (rs6000_register_raw_size): Ditto.
613 (rs6000_register_virtual_type): Ditto.
614 (rs6000_register_convertible): Ditto.
615 (rs6000_convert_from_func_ptr_addr): Ditto.
616
617 2002-08-19 Daniel Jacobowitz <drow@mvista.com>
618
619 * config/mips/tm-linux.h (REALTIME_LO, REALTIME_HI): Define
620 conditionally.
621 (JB_PC, JB_ELEMENT_SIZE): Rename to MIPS_LINUX_JB_PC and
622 MIPS_LINUX_JB_ELEMENT_SIZE.
623 * mips-linux-tdep.c (supply_gregset, fill_gregset): Use alloca
624 for MAX_REGISTER_RAW_SIZE arrays.
625 (mips_linux_get_longjmp_target): Use MIPS_LINUX_JB_PC and
626 MIPS_LINUX_JB_ELEMENT_SIZE.
627
628 2002-08-19 Pierre Muller <muller@ics.u-strasbg.fr>
629
630 * i387-tdep.c (i387_print_float_info): Fix typo in comment.
631
632 2002-08-19 Aidan Skinner <aidan@velvet.net>
633
634 * Makefile.in (SFILES): Add ada-exp.y ada-lang.c ada-typeprint.c
635 ada-valprint.c ada-tasks.c.
636 (YYFILES): Add ada-exp.y.
637 (ada-exp.tab.c ada-lex.c ada-lang.o): New target.
638 (ada-tasks.o ada-typeprint.o ada-valprint.o): New target.
639 (ada-exp.tab.o): New target.
640
641 2002-08-18 Andrew Cagney <ac131313@redhat.com>
642
643 * regcache.c (regcache_xfer_part): New function.
644 (regcache_raw_read_part): New function.
645 (regcache_raw_write_part): New function.
646 (regcache_cooked_read_part): New function.
647 (regcache_cooked_write_part): New function.
648 * regcache.h (regcache_raw_read_part): Declare.
649 (regcache_raw_write_part): Declare.
650 (regcache_cooked_read_part): Declare.
651 (regcache_cooked_write_part): Declare.
652
653 2002-08-18 Daniel Jacobowitz <drow@mvista.com>
654
655 * remote.c (remote_open_1): Add async_p.
656 (remote_async_open_1): Delete.
657 (open_remote_target): Delete.
658 (remote_open, extended_remote_open): Update calls to remote_open_1.
659 (remote_async_open, extended_remote_async_open): Call
660 remote_open_1 instead of remote_async_open_1.
661
662 2002-08-19 Mark Kettenis <kettenis@gnu.org>
663
664 * blockframe.c: Fix a few coding standard violations.
665
666 2002-08-19 Mark Kettenis <kettenis@gnu.org>
667
668 * config/i386/nm-i386sco5.h (START_INFERIOR_TRAPS_EXPECTED): Moved
669 here from ...
670 * config/i386/tm-i386sco5.h: ... here. File removed.
671 * config/i386/i386sco5.mt (TM_FILE): Set to tm-i386v4.h.
672
673 * config/i386/nm-i386v.h (START_INFERIOR_TRAPS_EXPECTED): New define.
674 * config/i386/i386aout.mt (TDEPFILES): Add i387-tdep.o
675 (TM_FILE): Set to tm-i386.h.
676 * config/i386/i386v.mt (TM_FILE): Set to tm-i386.h.
677 * config/i386/tm-i386v.h: Remove file.
678 * config/i386/tm-ptx.h [!SEQUENT_PTX4]: Include "i386/tm-i386.h"
679 instead of "i386/tm-i386v.h".
680 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
681 * config/i386/tm-symmetry: Include "i386/tm-i386.h" instead of
682 "i386/tm-i386v.h".
683 (START_INFERIOR_TRAPS_EXPECTED): Remove define.
684 * config/i386/tm-vxworks.h: Include "i386/tm-i386.h" instead of
685 "i386/tm-i386.h".
686
687 2002-08-18 Mark Kettenis <kettenis@gnu.org>
688
689 * config/i386/nm-i386v.h: Add protection against
690 multiple-inclusion.
691 (i386_register_u_addr): Remove prototype.
692 (register_u_addr): New prototype.
693 (REGISTER_U_ADDR): Redefine accordingly.
694 * i386v-nat.c: Improve several comments.
695 (i386_register_u_addr): Change signature and rename to
696 register_u_addr. Use FP_REGNUM_P. Rewrite slightly to get rid of
697 ubase variable.
698
699 2002-08-18 Andrew Cagney <ac131313@redhat.com>
700
701 * config/mips/tm-mips.h (STORE_RETURN_VALUE): Delete macro.
702 (DEPRECATED_EXTRACT_RETURN_VALUE): Delete macro.
703 * mips-tdep.c (mips_gdbarch_init): Set store_return_value and
704 deprecated_extract_return_value.
705 (mips_o32_push_arguments, mips_o64_push_arguments): Clone and
706 rename mips_o32o64_push_arguments.
707 (mips_gdbarch_init): Update.
708 (mips_extract_return_value): Delete.
709 (mips_o32_extract_return_value): Clone mips_extract_return_value.
710 (mips_o64_extract_return_value): Clone mips_extract_return_value.
711 (mips_eabi_extract_return_value): Clone mips_extract_return_value.
712 (mips_n32n64_extract_return_value): Clone
713 mips_extract_return_value.
714 (mips_store_return_value): Delete.
715 (mips_o32_store_return_value): Clone mips_store_return_value.
716 (mips_o64_store_return_value): Clone mips_store_return_value.
717 (mips_eabi_store_return_value): Clone mips_store_return_value.
718 (mips_n32n64_store_return_value): Clone mips_store_return_value.
719
720 2002-08-18 Aidan Skinner <aidan@velvet.net>
721
722 * ada-lang.c: Use gdb_string.h instead of <string.h>.
723 * ada-typeprint.c: Use gdb_string.h instead of <string.h>.
724
725 2002-08-18 Aidan Skinner <aidan@velvet.net>
726
727 * ada-lang.c: Run through gdb_indent.sh.
728 * ada-lang.h: Run through gdb_indent.sh.
729 * ada-tasks.c: Run through gdb_indent.sh.
730 * ada-typeprint.c: Run through gdb_indent.sh.
731 * ada-valprint.c: Run through gdb_indent.sh.
732
733 2002-08-18 Andrew Cagney <ac131313@redhat.com>
734
735 * osabi.c (gdbarch_init_osabi): Don't complain about an unknown
736 ABI.
737
738 2002-08-18 Mark Kettenis <kettenis@gnu.org>
739
740 * i386b-nat.c [FETCH_INFERIOR_REGISTERS]: Remove dead code.
741
742 * config/i386/nm-i386bsd.h (FLOAT_INFO): Remove redundant #undef.
743 * i386b-nat.c [FLOAT_INFO]: Remove dead code.
744
745 * i386-tdep.c (i386_do_pop_frame, i386_store_return_value): Call
746 write_register_gen instead of write_register_bytes.
747
748 * NEWS: Mention that the i[3456]-*mach3*, i[3456]-*-mach* and
749 i[3456]-*-osf1mk* configurations have been made obsolete.
750 * configure.host: Make i[3456]86-*-mach3*, i[3456]86-*mach* and
751 i[3456]86-*-osf1mk* hosts obsolete.
752 * confighure.tgt: Make i[3456]86-*-mach3*, i[3456]86-*-osf1mk*
753 targets obsolete.
754 * config/i386/i386mach.mh, config/i386/nm-i386mach.h,
755 config/i386/xm-i386mach.h, config/i386/i386m3.mh,
756 config/i386/i386m3.mt, config/i386/nm-m3.h,
757 config/i386/tm-i386m3.h, config/i386/xm-i386m3.h,
758 config/i386/i386mk.mh, config/i386/i386mk.mt,
759 config/i386/tm-i386mk.h, config/i386/xm-i386mk.h: Make files
760 obsolete.
761 * i386mach-nat.c, i386m3-nat.c: Make files obsolete.
762 * Makefile.in (ALLDEPFILES): Remove i386mach.c i386m3-nat.c
763 (i386mach-nat.o, i386m3-nat.o):Make targets obsolete.
764
765 2002-08-18 Andrew Cagney <ac131313@redhat.com>
766
767 * config/pa/tm-hppa.h (hppa_store_return_value): Declare.
768 (hppa_value_returned_from_stack): Declare.
769 (hppa_extract_return_value): Declare.
770 * config/pa/hppa.mt: New file.
771 * configure.tgt: Recognize hppa*-*-*.
772 * MAINTAINERS: Change HPPA target to hppa-elf. Still broken.
773
774 2002-08-18 Mark Kettenis <kettenis@gnu.org>
775
776 * i386-sol2-tdep.c (_initialize_i386_sol2_tdep): Fix typo in
777 comment.
778
779 2002-08-17 Mark Kettenis <kettenis@gnu.org>
780
781 * top.c (gdb_rl_operate_and_get_next): Make sure
782 operate-and-get-next functions correctly even when the history
783 list is completely filled.
784
785 2002-08-18 Andrew Cagney <ac131313@redhat.com>
786
787 * MAINTAINERS (Target Instruction Set Architectures): Rename
788 Target/Architectures. Replace vax-dec-vms5.5 with vax-netbsd.
789 Replace s390-linux with s390-linux-gnu. Remove i386-aout,
790 mcore-pe, mips64-elf, sparc64-elf. Remove i586-pc-msdosdjgpp,
791 already listed under Host/Native.
792
793 * configure.tgt: Combine i[3456]86-*-coff*, i[3456]86-*-elf*,
794 i[3456]86-*-pe*, and i[3456]86-*-aout* into i[3456]86-*-*. Add
795 mips*-*-*.
796
797 2002-08-17 Andrew Cagney <ac131313@redhat.com>
798
799 * config/ia64/ia64.mt: New file.
800 * config/alpha/alpha.mt: New file.
801 * MAINTAINERS: Change the alpha target to alpha-elf and IA-64 to
802 ia64-linux-gnu. Mention that ia64-elf is broken.
803 * configure.tgt: Add alpha*-*-* and ia64*-*-* patterns.
804
805 2002-08-17 Mark Kettenis <kettenis@elgar.kettenis.dyndns.org>
806
807 * i386-tdep.c (i386_svr4_init_abi, i386_nw_init_abi): Use
808 generic_func_frame_valid instead of func_frame_valid.
809
810 2002-08-16 Joel Brobecker <brobecker@gnat.com>
811
812 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Unfortunately,
813 procfs appears to be broken when debugging on multi-processor
814 machines. So enable software single stepping in order to avoid
815 using the procfs interface to do next/step operations, using
816 internal breakpoints instead.
817
818 * infrun.c (handle_inferior_event): Readjust the stop_pc by
819 DECR_PC_AFTER_BREAK when hitting a single step breakpoint, to
820 make this pc address equal to the value it would have if the
821 system stepping capability was used. Also set a new flag used
822 to ensure that we don't readjust the PC one more time later.
823
824 * breakpoint.c (bpstat_stop_status): Do not adjust the PC
825 address by DECR_PC_AFTER_BREAK when software single step is
826 in use for this architecture, as this has already been taken
827 care of in handle_inferior_event().
828
829 2002-08-16 Joel Brobecker <brobecker@gnat.com>
830
831 * infrun.c (handle_inferior_event): Minor reformatting, to make
832 a rather long condition expression easier to read.
833
834 2002-08-16 Andrew Cagney <ac131313@redhat.com>
835
836 * Makefile.in (gdbtk.o): Move to end of file.
837 (gdbtk-bp.o, gdbtk-cmds.o): Ditto.
838 (gdbtk-hooks.o, gdbtk-register.o): Ditto.
839 (gdbtk-stack.o, gdbtk-varobj.o): Ditto.
840 (gdbtk-wrapper.o, gdbres.o): Ditto.
841
842 2002-08-16 Andrew Cagney <ac131313@redhat.com>
843
844 * Makefile.in (copying.o): Separate out compile rule.
845 (hpux-thread.o, procfs.o, signals.o): Ditto.
846 (v850ice.o, z8k-tdep.o): Ditto.
847 (tui-file.o): Move to TUI section.
848 (xdr_ptrace.o, xdr_rdb.o, xdr_ld.o): Move to separate section.
849 (nindy.o, Onindy.o, ttyflush.o): Move to separate section.
850
851 2002-08-16 Joel Brobecker <brobecker@gnat.com>
852
853 * i386-tdep.c (i386_pe_skip_trampoline_code): renamed from
854 skip_trampoline_code, for better namespace-proofing.
855
856 * i386-tdep.h (i386_pe_skip_trampoline_code): Add declaration.
857
858 2002-08-16 Joel Brobecker <brobecker@gnat.com>
859
860 * config/i386/tm-cygwin.h: Remove some "#if 0"'ed macros.
861
862 2002-08-16 Joel Brobecker <brobecker@gnat.com>
863
864 * infrun.c (handle_inferior_event): When receiving a SIGTRAP
865 signal, check whether we hit a breakpoint before checking for a
866 single step breakpoint. Otherwise, GDB fails to notice that a
867 breakpoint has been hit when stepping onto a breakpoint.
868
869 2002-08-16 Keith Seitz <keiths@redhat.com>
870
871 * gdb-events.sh (clear_gdb_event_hooks): New function.
872 * gdb-events.c: Regenerate.
873 * gdb-events.h: Regenerate.
874
875 2002-08-16 Andrew Cagney <ac131313@redhat.com>
876
877 * breakpoint.c (bpstat_stop_status): Rename not_a_breakpoint to
878 not_a_sw_breakpoint.
879 * breakpoint.h (bpstat_stop_status): Add parameter names.
880
881 2002-08-16 Grace Sainsbury <graces@redhat.com>
882
883 * remote.c (remote_insert_hw_breakpoint)
884 (remote_remove_hw_breakpoint): Fix calculation of length field
885 for Z-packet.
886
887 2002-08-15 Michael Snyder <msnyder@redhat.com>
888
889 * irix5-nat.c (supply_gregset): Allocate plenty-big buffer
890 (32 bytes) instead of using MAX_REGISTER_RAW_SIZE.
891 (supply_fpregset): Ditto.
892
893 * config/mips/tm-mips.h (REGISTER_CONVERT_TO_VIRTUAL,
894 REGISTER_CONVERT_TO_RAW, REGISTER_CONVERTIBLE,
895 MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE): Delete.
896 (TARGET_READ_SP): Delete.
897 (DO_REGISTERS_INFO): Delete.
898 (FUNCTION_START_OFFSET, IN_SIGTRAMP, REGISTER_VIRTUAL_SIZE):
899 Delete.
900 (REGISTER_CONVERT_FROM_TYPE, REGISTER_CONVERT_TO_TYPE): Convert
901 from macros to functions.
902
903 * mips-tdep.c (mips_gdbarch_init): Set the above in the gdbarch.
904 (mips_register_convertible, mips_register_convert_to_virtual,
905 mips_register_convert_to_raw): Make static.
906 (mips_read_sp): New function.
907 (mips_gdbarch_init): Set gdbarch read_sp to mips_read_sp.
908 (mips_do_registers_info): Make static.
909 (mips_gdbarch_init): Insert mips_do_registers_info into gdbarch.
910 (in_sigtramp): Make static, rename to mips_pc_in_sigtramp.
911 (mips_register_convert_from_type, mips_register_convert_to_type):
912 New functions.
913 (mips_gdbarch_init): Set up function_start_offset,
914 register_virtual_size, pc_in_sigtramp.
915
916 2002-08-15 Andrew Cagney <ac131313@redhat.com>
917
918 * infcmd.c (vector_info): New function.
919 (_initialize_infcmd): Add command "info vector".
920 (print_vector_info): New function.
921
922 * gdbarch.sh (PRINT_VECTOR_INFO): New method
923 * gdbarch.h, gdbarch.c: Regenerate.
924
925 2002-08-15 Andrew Cagney <ac131313@redhat.com>
926
927 * infcmd.c (do_registers_info): Rename parameter ``fpregs'' to
928 ``print_all''. Only print vector registers when ``print_all''.
929
930 2002-08-15 Andrew Cagney <ac131313@redhat.com>
931
932 * i387-tdep.h (i387_print_float_info): Add `args' parameter.
933 * i387-tdep.c (i387_print_float_info): Add `args' parameter.
934
935 * gdbarch.sh (PRINT_FLOAT_INFO): Change to a predicate method.
936 Add `args' parameter.
937 * gdbarch.h, gdbarch.c: Regenerate.
938
939 * arm-tdep.c (arm_print_float_info): Add the parameter `args'.
940
941 * infcmd.c (float_info): Call print_float_info.
942 (print_float_info): New function. By default, print the
943 floating-point registers.
944
945 * arch-utils.h (default_print_float_info): Delete declaration.
946 * arch-utils.c (default_print_float_info): Delete function.
947
948 2002-08-16 Mark Kettenis <kettenis@gnu.org>
949
950 * config/i386/nm-i386v.h (FLOAT_INFO): Remove already commented
951 out define.
952
953 * i387-tdep.c (i387_print_float_info): Add comment about ignoring
954 FRAME.
955
956 * NEWS: Mention that the i[3456]-*-aix target has been made obsolete.
957 * configure.host: Make i[3456]86-*-aix host obsolete.
958 * configure.tgt: Make i[3456]86-*-aix target obsolete.
959 * config/i386/i386aix.mh, config/i386/i386aix.mt,
960 config/i386/nm-i386aix.h, condig/i386/tm-i386aix.h,
961 config/i386/xm-i386aix.h: Make files obsolete.
962 * i386aix-nat.c: Make file obsolete.
963 * Makefile.in (ALLDEPFILES): Remove i386aix-nat.c.
964 (i386aix-nat.o): Make target obsolete.
965
966 * config/i386/nm-gnu.h: Removed.
967 * config/i386/nm-i386gnu.h: New file.
968 (THREAD_STATE_FLAVOR, THREAD_STATE_SIZE,
969 THREAD_STATE_SET_TRACED, THREAD_STATE_CLEAR_STATE, ATTACH_DETACH):
970 Moved here from ...
971 * config/i386/tm-i386gnu.h: ... here. Removed.
972 * config/i386/xm-i386gnu.h: Removed.
973 * config/i386/i386gnu.mh (XM_FILE): Set to xm-i386.h.
974 (NAT_FILE): Set to nm-i386gnu.h.
975 * config/i386/i386gnu.mt (TDEPFILES): Add i386gnu-tdep.o.
976 * i386-tdep.c: New file.
977 * Makefile.in (ALLDEPFILES): Add i386gnu-nat.c and i386gnu-tdep.c.
978 (i386gnu-tdep.o): Specify dependencies.
979
980 2002-08-15 Mark Kettenis <kettenis@gnu.org>
981
982 * config/i386/tm-i386sco5.h: Include "i386/tm-i386v4.h" instead of
983 "i386/tm-i386.h", "i386/tm-i386v.h" and "config/tm-sysv.h".
984 Adjust a few comments to reflect reality a bit closer.
985 (KERNEL_U_SIZE, TARGET_HAS_HARDWARE_WATCHPOINTS,
986 TARGET_CAN_USE_HARDWARE_WATCHPOINT, HAVE_CONTINUEABLE_WATCHPOINT,
987 HAVE_STEPPABLE_WATCHPOINT, STOPPED_BY_WATCHPOINT,
988 target_insert_watchpoint, target_remove_watchpoint):
989 Move defines to ...
990 * config/i386/nm-i386sco5.h: ... here.
991 (kernel_u_size): Add prototype. Improve a few comments and add
992 protection against multiple inclusion.
993
994 * config/i386/nm-i386sco.h (FLOAT_INFO): Remove already commented
995 out define.
996
997 * uw-thread.c (SP_ARG0): Define if not already defined.
998 * config/i386/tm-i386.h (SO_ARG0): Remove define.
999
1000 * config/i386/tm-i386v4.h (HAVE_I387_REGS): Remove define.
1001
1002 * config/i386/tm-i386.h: Don't include "regcache.h".
1003
1004 * i387-tdep.h (i387_print_float_info): New prototype.
1005 * i387-tdep.c (print_i387_value, print_i387_ext,
1006 print_i387_status_word, print_i387_control_word): Add `struct
1007 ui_file *' argument and use it for output.
1008 (i387_print_float_info): Renamed from i387_float_info. Add
1009 `struct gdbarch *' and `struct ui_file *' arguments and use the
1010 latter for output.
1011 * i386-tdep.c: Include "i387-tdep.h".
1012 (i386_gdbarch_init): Set print_float_info.
1013 * config/i386/tm-i386.h (i387_float_info): Remove prototype.
1014 (FLOAT_INFO): Remove define.
1015
1016 2002-08-13 Michael Snyder <msnyder@redhat.com>
1017
1018 * mips-tdep.c (mips_push_arguments): Rename to
1019 mips_eabi_push_arguments, and tune for EABI.
1020 (MIPS_REGS_HAVE_HOME_P): Delete.
1021 (struct gdbarch_tdep): Remove mips_regs_have_home_p field.
1022 (mips_gdbarch_init): Set gdbarch push_arguments for eabi.
1023 Delete references to mips_regs_have_home_p.
1024
1025 2002-08-14 Keith Seitz <keiths@redhat.com>
1026
1027 * Makefile.in (install-gdbtk): Create insight plugin directory.
1028 Install plugins.tcl file.
1029
1030 2002-08-14 Keith Seitz <keiths@redhat.com>
1031
1032 * configure.in: Move SUBDIRS to near top of the file so that
1033 --enable options may add things to it.
1034 If gdbtk is enabled, add gdbtk directory to SUBDIRS and configdirs.
1035 * configure: Regenerate.
1036
1037 2002-08-13 Michael Snyder <msnyder@redhat.com>
1038
1039 * mips-tdep.c (mips_o32o64_push_arguments): New function,
1040 cloned from mips_push_arguments, tuned for o32/o64 ABI.
1041 (mips_gdbarch_init): Set gdbarch_push_arguments to new func.
1042
1043 2002-08-13 Andrew Cagney <ac131313@redhat.com>
1044
1045 * vax-tdep.c (vax_get_saved_register): Delete function.
1046 (vax_gdbarch_init): Update.
1047 * ns32k-tdep.c (ns32k_get_saved_register): Delete function.
1048 (ns32k_gdbarch_init): Update.
1049 * alpha-tdep.c (alpha_get_saved_register): Delete function.
1050 (alpha_gdbarch_init): Update.
1051
1052 2002-08-13 Andrew Cagney <cagney@redhat.com>
1053
1054 * regcache.c (init_regcache_descr): Overallocate the
1055 raw_register_valid_p array including space for NUM_PSEUDO_REGS.
1056 (registers_changed): Replace NUM_REGS+NUM_PSEUDO_REGS with
1057 nr_raw_registers.
1058 (set_register_cached): Add range checking assertions. Use
1059 current_regcache.
1060
1061 2002-08-13 Mark Kettenis <kettenis@gnu.org>
1062
1063 * i386-tdep.c (i386_stab_reg_to_regnum): Return correct register
1064 numbers for MMX registers.
1065
1066 2002-08-13 Andrew Cagney <cagney@redhat.com>
1067
1068 * i386-tdep.c (i386_gdbarch_init): Use
1069 generic_unwind_get_saved_register.
1070
1071 2002-08-13 Kevin Buettner <kevinb@redhat.com>
1072
1073 * procfs.c (procfs_can_use_hw_breakpoint): New function.
1074 (init_procfs_ops): Define ``to_can_use_hw_breakpoint'' for procfs
1075 target vector.
1076 * config/mips/nm-irix5.h (TARGET_CAN_USE_HARDWARE_WATCHPOINT):
1077 Delete. Add comment regarding this now-deleted target method.
1078
1079 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1080
1081 * m68hc11-tdep.c (M68HC12_NUM_PSEUDO_REGS): New define.
1082 (M68HC12_HARD_PC_REGNUM): Define specific PC for 68HC12 (pseudo reg).
1083 (m68hc11_pseudo_register_read): Compute the 68HC12 PC using the
1084 real PC and the page number (if it's within the memory bank window).
1085 (m68hc11_pseudo_register_write): Likewise when saving.
1086 (m68hc11_register_name): Name the virtual pc 'pc' and the real one ppc.
1087 (m68hc11_register_virtual_type): Return uint32 for virtual pc.
1088 (m68hc11_register_raw_size): And use 32-bit for it.
1089 (m68hc11_gdbarch_init): Use 32-bit address for 68HC12 if the
1090 16K memory bank is used by the prog; also use the virtual pc.
1091
1092 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1093
1094 * m68hc11-tdep.c (m68hc11_elf_make_msymbol_special): New function.
1095 (m68hc11_gdbarch_init): Install it in gdbarch.
1096 (MSYMBOL_SET_RTC, MSYMBOL_SET_RTI): New to set symbol specific flags.
1097 (MSYMBOL_IS_RTC, MSYMBOL_IS_RTI): New to test these flags.
1098 (MSYMBOL_SIZE): New for documentation.
1099 (insn_return_kind): Enum to specify how a function returns.
1100 (frame_extra_info): Cleanup and record the return mode.
1101 (gdbarch_tdep, USE_PAGE_REGISTER): New to control the use of page
1102 register in address computation.
1103 (m68hc11_get_return_insn): New to obtain the return instruction used
1104 by the function.
1105 (m68hc11_frame_init_saved_regs): Take into account the return
1106 instruction used by the function for far and interrupt functions.
1107 (m68hc11_init_extra_frame_info): Take into account page register.
1108 (m68hc11_frame_args_address): Adjust according to the return mode.
1109 (show_regs): Print page register only when it's used.
1110
1111 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1112
1113 * m68hc11-tdep.c (HARD_PAGE_REGNUM): Define for 68HC12 page register.
1114 (M68HC11_LAST_HARD_REG, m68hc11_register_names): Update.
1115 (m68hc11_register_virtual_type): Return a 8-bit type for 8-bit
1116 registers.
1117 (m68hc11_register_raw_size): Likewise.
1118
1119 2002-08-13 Andrew Cagney <cagney@redhat.com>
1120
1121 * i386-tdep.c (i386_register_name): Handle mmx registers.
1122 (mmx_regnum_p): New function.
1123 (i386_mmx_names): New array.
1124 (mmx_num_regs): New variable.
1125 (i386_pseudo_register_read): New function.
1126 (i386_pseudo_register_write): New function.
1127 (mmx_regnum_to_fp_regnum): New function. Code from Fernando Nasser.
1128
1129 * regcache.c (regcache_raw_read_unsigned): New function.
1130 (regcache_raw_read_signed): New function.
1131 * regcache.h (regcache_raw_read_unsigned): Declare.
1132 (regcache_raw_read_signed): Declare.
1133
1134 2002-08-13 Andrew Cagney <cagney@redhat.com>
1135
1136 * regcache.c (regcache_raw_read_as_address): Delete function.
1137 (regcache_cooked_read_signed): New function.
1138 (regcache_cooked_read_unsigned): New function.
1139 * regcache.h (regcache_cooked_read_signed): Declare.
1140 (regcache_cooked_read_unsigned): Declare.
1141 (regcache_raw_read_as_address): Delete declaration.
1142
1143 * blockframe.c (generic_read_register_dummy): Use
1144 regcache_cooked_read_unsigned.
1145 * i386-tdep.c (i386_extract_struct_value_address): Use
1146 regcache_cooked_read_unsigned.
1147
1148 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1149
1150 * m68hc11-tdep.c (m68hc11_gdbarch_init): Set int, double and long
1151 double sizes according to ELF ABI flags.
1152 (gdbarch_tdep): Record elf_flags.
1153
1154 2002-08-13 Stephane Carrez <stcarrez@nerim.fr>
1155
1156 * m68hc11-tdep.c (M6812_OP_PSHX, M6812_OP_PSHY): New defines.
1157 (m6812_prolog): They can appear in 68HC12 function prologue.
1158 (m68hc11_frame_chain): Cleanup.
1159
1160 2002-08-12 Andrew Cagney <cagney@redhat.com>
1161
1162 * i386-tdep.h (i386_register_byte, i386_register_raw_size): Delete
1163 declarations.
1164 * i386-linux-tdep.c (i386_linux_register_byte): Delete function.
1165 (i386_linux_register_raw_size): Delete function.
1166 (i386_linux_init_abi): Update.
1167 * i386-tdep.c (i386_register_raw_size): Delete function.
1168 (i386_register_byte): Delete function.
1169 (i386_gdbarch_init): Update.
1170 (i386_register_size): Delete array.
1171 (i386_register_offset): Delete array.
1172
1173 * config/i386/tm-symmetry.h (REGISTER_BYTE): Delete macro.
1174 (REGISTER_RAW_SIZE): Delete macro.
1175 * config/i386/tm-ptx.h (REGISTER_RAW_SIZE): Delete macro.
1176 (REGISTER_BYTE): Delete macro.
1177
1178 2002-08-11 Aidan Skinner <aidan@velvet.net>
1179
1180 * ada-lang.c (ada_lookup_partial_symbol)
1181 (to_fixed_variant_branch_type) (find_line_in_linetable): Fix
1182 prototype names so that grep ^func works properly.
1183
1184 * ada-lang.c (ada_array_element_type)
1185 (ada_lookup_partial_symbol): Fix typos in parameter list.
1186
1187 * ada-valprint.c (val_print_packed_array_elements) (ada_val_print_1):
1188 Fix prototype names so that grep ^func works properly.
1189
1190 2002-08-10 Andrew Cagney <cagney@redhat.com>
1191 Elena Zannoni <ezannoni@redhat.com>
1192 Martin M. Hunt <hunt@redhat.com>
1193
1194 * gdbtypes.c (build_builtin_type_vec128): Set the vector bit.
1195 (build_builtin_type_vec128i): Set the vector bit.
1196 * gdbtypes.h (builtin_type_vec64, builtin_type_vec64i): Declare.
1197 * gdbtypes.c (builtin_type_vec64, builtin_type_vec64i): Define.
1198 (build_builtin_type_vec64): New function.
1199 (build_builtin_type_vec64i): New function.
1200 (build_gdbtypes): Initialize builtin_type_vec64 and
1201 builtin_type_vec64i.
1202
1203 2002-08-09 Andrew Cagney <cagney@redhat.com>
1204
1205 * regcache.c (regcache_dump): Compare the register offset
1206 with REGISTER_BYTE.
1207 * arch-utils.c (generic_register_byte): New function.
1208 * arch-utils.h (generic_register_byte): Declare.
1209 * gdbarch.sh (REGISTER_BYTE): Default to generic_register_byte.
1210 * gdbarch.h, gdbarch.c: Regenerate.
1211
1212 2002-08-09 Andrew Cagney <cagney@redhat.com>
1213
1214 * regcache.c: Include "gdbcmd.h"
1215 (_initialize_regcache): Add commands "maintenance print
1216 registers", "maintenance print raw-registers" and "maintenance
1217 print cooked-registers".
1218 (enum regcache_dump_what): Define.
1219 (dump_endian_bytes): New function.
1220 (regcache_dump): New function.
1221 (regcache_print): New function.
1222 (maintenance_print_registers): New function.
1223 (maintenance_print_raw_registers): New function.
1224 (maintenance_print_cooked_registers): New function.
1225 * Makefile.in (regcache.o): Update dependencies.
1226
1227 2002-08-09 Michael Snyder <msnyder@redhat.com>
1228
1229 * mips-tdep.c (ROUND_DOWN, ROUND_UP): Move to global scope.
1230 (mips_push_arguments): Correct some comments. Use paddr_nz
1231 for printing addresses in debug output. Replace static
1232 allocation using MAX_REGISTER_RAW_SIZE with alloca.
1233 (mips_n32n64_push_arguments): New function, cloned from
1234 mips_push_arguments and tuned for the n32/n64 ABI.
1235 (mips_push_register): Buffer needs dynamic allocation.
1236 (mips_print_register): Ditto.
1237 (do_gp_register_row): Ditto.
1238 (mips_store_return_value): Ditto.
1239 (mips_gdbarch_init): Set gdbarch_push_arguments per ABI.
1240
1241 2002-08-09 Don Howard <dhoward@redhat.com>
1242
1243 * memattr.c (mem_info_command): Print special case of upper bound
1244 as max CORE_ADDR + 1.
1245
1246 2002-08-08 Michael Snyder <msnyder@redhat.com>
1247
1248 * mips-tdep.c (mips_n32n64_use_struct_convention): N32 only
1249 returns structs by ref if they're too big to fit in two registers.
1250
1251 2002-08-09 Kevin Buettner <kevinb@redhat.com>
1252
1253 * mips-tdep.c (mips_init_extra_frame_info): Initialize SP_REGNUM's
1254 saved regs value.
1255 (read_next_frame_reg): Call FRAME_INIT_SAVED_REGS instead of
1256 mips_find_saved_regs().
1257 (mips_pop_frame): Likewise.
1258
1259 2002-08-09 Kevin Buettner <kevinb@redhat.com>
1260
1261 * blockframe.c (frame_saved_regs_register_unwind): Revise
1262 PC_IN_CALL_DUMMY assertion to only apply when generic dummy
1263 frames are in use.
1264
1265 2002-08-09 Grace Sainsbury <graces@redhat.com>
1266
1267 * remote.c: (remote_wait, remote_async_wait): Add check for awatch
1268 T-packets; the 'a' is not taken as a register number.
1269 (remote_check_watch_resources, remote_stopped_by_watchpoint)
1270 (remote_stopped_data_address): New functions; add to target
1271 vector.
1272 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint): Change
1273 prototypes to match other implementations of this
1274 function. replace integer argument with pointer -- the length
1275 field in the Z-packet is the length of what is pointed to or 1 if
1276 pointer is null. Add to target vector.
1277 (remote_insert_watchpoint, remote_remove_watchpoint): Add to
1278 target vector.
1279
1280 From Mark Salter:
1281 * remote.c (remote_wait): Add support to extract optional
1282 watchpoint information from T-packet. Ignore unrecognized
1283 optional info in T-packet.
1284 (remote_async_wait): Ditto.
1285
1286 2002-08-09 Corinna Vinschen <vinschen@redhat.com>
1287
1288 * cli/cli-dump.c: Change fopen modes to use binary open modes
1289 as defined in include/fopen-bin.h throughout.
1290
1291 2002-08-08 Michael Snyder <msnyder@redhat.com>
1292
1293 * mips-tdep.c: Minor whitespace and indentation clean-ups.
1294
1295 2002-08-08 Kevin Buettner <kevinb@redhat.com>
1296
1297 * doublest.c (store_floating): Avoid floatformat_from_doublest()
1298 assertion failure by returning early after a warning.
1299
1300 2002-08-08 Kevin Buettner <kevinb@redhat.com>
1301
1302 * mips-tdep.c (mips_find_saved_regs): Make static.
1303 (mips_frame_init_saved_regs): New function.
1304 (mips_gdbarch_init): Setup FRAME_INIT_SAVED_REGS method.
1305 * config/mips/tm-mips.h (FRAME_INIT_SAVED_REGS): Delete macro.
1306 (mips_find_saved_regs): Delete declaration.
1307
1308 2002-08-08 Grace Sainsbury <graces@redhat.com>
1309
1310 * remote.c (remote_wait, remote_async_wait): Change
1311 thread_num from int to ULONGEST.
1312 (unpack_varlen_hex): Change result parameter from
1313 int * to ULONGEST *.
1314
1315 2002-08-08 Andrew Cagney <ac131313@redhat.com>
1316
1317 * configure.tgt: Replace powerpc-*-sysv*, powerpc-*-elf*,
1318 powerpcle-*-eabi*, powerpcle-*-sysv* and powerpcle-*-elf* with
1319 powerpc*-*-*.
1320 * MAINTAINERS: Remove redundant rs6000-ibm-aix4.1 target.
1321
1322 2002-08-08 Andrew Cagney <cagney@redhat.com>
1323
1324 * gcore.c (override_derive_stack_segment): Delete variable.
1325 (preempt_derive_stack_segment): Delete function.
1326 (derive_stack_segment): Delete function.
1327 (default_derive_stack_segment): Renamed to derive_stack_segment.
1328 (override_derive_heap_segment): Delete variable.
1329 (preempt_derive_heap_segment): Delete function.
1330 (derive_heap_segment): Delete function.
1331 (default_derive_heap_segment): Rename to derive_heap_segment.
1332
1333 2002-08-06 Michael Snyder <msnyder@redhat.com>
1334
1335 * config/mips/tm-mips.h: Remove #define USE_STRUCT_CONVENTION.
1336 * mips-tdep.c (mips_EABI_use_struct_convention,
1337 mips_OABI_use_struct_convention, mips_NABI_use_struct_convention):
1338 New functions. (mips_use_struct_convention): Delete.
1339 (mips_gdbarch_init): set use_gdbarch_convention.
1340
1341 2002-08-06 Michael Snyder <msnyder@redhat.com>
1342
1343 * mips-tdep.c: gdbarch-ify reg_struct_has_addr.
1344 (mips_eabi_reg_struct_has_addr, mips_n32n64_reg_struct_has_addr,
1345 mips_o32_reg_struct_has_addr): New functions.
1346 (mips_gdbarch_init): Set gdbarch reg_struct_has_addr.
1347
1348 2002-08-07 Andrew Cagney <ac131313@redhat.com>
1349
1350 * regcache.c (pseudo_register): Delete function.
1351 (fetch_register): Delete function.
1352 (store_register): Delete function.
1353 (regcache_raw_read, legacy_read_register_gen): Use
1354 target_fetch_registers instead of fetch_register.
1355 (legacy_write_register_gen, regcache_raw_write): Use
1356 target_store_register instead of store_register.
1357 (write_register_bytes): Ditto.
1358
1359 * gdbarch.sh (FETCH_PSEUDO_REGISTER): Delete.
1360 (STORE_PSEUDO_REGISTER): Delete.
1361 * gdbarch.h, gdbarch.c: Regenerate.
1362
1363 2002-08-06 Corinna Vinschen <vinschen@redhat.com>
1364
1365 * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
1366 write dump file binary.
1367
1368 2002-08-05 Michael Snyder <msnyder@redhat.com>
1369
1370 * mips-tdep.c (mips_find_saved_regs): Adjust stack according
1371 to MIPS_SAVED_REGSIZE, not GDB_TARGET_IS_MIPS64. Enhance comment.
1372 (mips_gdbarch_init): Set N32 target to be mips64.
1373
1374 2002-08-06 Kevin Buettner <kevinb@redhat.com>
1375
1376 * frame.c (find_saved_register): Break out of loop once saved
1377 register address is found. Don't mention sparc in loop comment
1378 anymore.
1379
1380 2002-08-06 Kevin Buettner <kevinb@redhat.com>
1381
1382 * mips-tdep.c (mips_gdbarch_init): For the N32 ABI, set
1383 mips_default_saved_regsize to 8.
1384
1385 2002-08-06 Andrew Cagney <ac131313@redhat.com>
1386
1387 * gcore.c: Do not include <sys/procfs.h>.
1388 * Makefile.in (gcore.o): Update dependencies.
1389
1390 2002-08-06 Andrew Cagney <cagney@redhat.com>
1391
1392 * configure.tgt: Make arc-*-* obsolete.
1393 * NEWS: Mention that arc-*-* has been identifed as obsolete.
1394 * MAINTAINERS: Make arc-elf obsolete.
1395 * arc-tdep.c: Make file obsolete.
1396 * config/arc/arc.mt: Ditto.
1397 * config/arc/tm-arc.h: Ditto.
1398
1399 2002-08-05 Theodore A. Roth <troth@verinet.com>
1400
1401 * avr-tdep.c (avr_skip_prologue): Fix to return the correct pc.
1402
1403 2002-08-05 Andrew Cagney <ac131313@redhat.com>
1404
1405 * mcore-tdep.c (mcore_gdbarch_init): Use
1406 generic_unwind_get_saved_register instead of
1407 generic_get_saved_register.
1408 * v850-tdep.c (v850_gdbarch_init): Ditto.
1409 * frv-tdep.c (frv_gdbarch_init): Ditto.
1410 * mn10300-tdep.c (mn10300_gdbarch_init): Ditto.
1411 * s390-tdep.c (s390_gdbarch_init): Ditto.
1412 * d10v-tdep.c (d10v_gdbarch_init): Ditto.
1413 * config/mn10200/tm-mn10200.h (GET_SAVED_REGISTER): Ditto.
1414 * config/h8300/tm-h8300.h (GET_SAVED_REGISTER): Ditto.
1415
1416 2002-08-05 Joel Brobecker <brobecker@gnat.com>
1417
1418 * objfiles.h: Add missing #include "symfile.h"
1419
1420 * Makefile.in (objfiles_h): Add dependency on symfile.h and dependents.
1421
1422 2002-08-04 Andrew Cagney <ac131313@redhat.com>
1423
1424 From 2002-08-01 david carlton <carlton@math.stanford.edu>:
1425 * hpread.c (hpread_read_struct_type): Deleted superfluous setting
1426 of FIELD_BITSIZE.
1427
1428 2002-08-04 Daniel Jacobowitz <drow@mvista.com>
1429
1430 * NEWS: Cleanup and nitpick.
1431
1432 2002-08-03 Andrew Cagney <ac131313@redhat.com>
1433
1434 * NEWS: Cleanup. Use *-linux*-gnu*. Only use `*' for headings.
1435
1436 2002-08-03 Andrew Cagney <ac131313@redhat.com>
1437
1438 * Makefile.in (gdbtk-bp.o): Update dependencies.
1439 (gdbtk-register.o): Ditto.
1440 (gdbtk-varobj.o): Ditto.
1441
1442 2002-08-03 Andrew Cagney <cagney@redhat.com>
1443
1444 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Replace
1445 m68hc11_fetch_pseudo_register.
1446 (m68hc11_pseudo_register_write): Replace
1447 m68hc11_store_pseudo_register.
1448 (m68hc11_gdbarch_init): Update.
1449
1450 Fri Aug 2 15:53:50 2002 Andrew Cagney <cagney@redhat.com>
1451
1452 * gdbarch.sh: Include "gdb_string.h".
1453 * gdbarch.c: Regenerate.
1454
1455 * regcache.c: Include "gdb_string.h".
1456 * ax-general.c: Ditto.
1457 * varobj.c: Ditto.
1458 * std-regs.c: Ditto.
1459 * fbsd-proc.c: Ditto.
1460 * thread.c: Ditto.
1461
1462 * Makefile.in (regcache.o): Update dependencies.
1463 (thread.o, gdbarch.o): Ditto.
1464 (ax-general.o, gdbarch.o): Ditto.
1465 (varobj.o, std-regs.o): Ditto.
1466 (fbsd-proc.o): Specify dependencies.
1467
1468 2002-08-02 Andrew Cagney <cagney@redhat.com>
1469
1470 * regcache.c (regcache_cooked_read): Rename rawnum parameter to
1471 regnum.
1472 (regcache_cooked_write): Ditto.
1473
1474 2002-08-02 Andrew Cagney <ac131313@redhat.com>
1475
1476 * regcache.c (regcache_cooked_read): New function.
1477 (regcache_cooked_write): New function.
1478 (read_register_gen): Rewrite using regcache_cooked_read.
1479 (write_register_gen): Rewrite using regcache_cooked_write.
1480
1481 * regcache.h (regcache_cooked_read, regcache_cooked_write):
1482 Declare.
1483
1484 2002-08-02 Andrew Cagney <cagney@redhat.com>
1485
1486 * gdbarch.sh (pseudo_register_read, pseudo_register_write):
1487 Replace the architecture methods register_read and register_write.
1488 * gdbarch.h, gdbarch.c: Regenerate.
1489 * regcache.c (init_regcache_descr): Update.
1490 (read_register_gen): Update.
1491 (write_register_gen): Update.
1492 (supply_register): Update comment.
1493
1494 * sh-tdep.c (sh_gdbarch_init): Update.
1495 (sh_pseudo_register_read, sh64_pseudo_register_read): Add
1496 `regcache' and `gdbarch' parameters. Make `buffer' a void
1497 pointer. Update code.
1498 (sh_pseudo_register_write, sh64_pseudo_register_write): Add
1499 `regcache' and `gdbarch' parameters. Make `buffer' a constant
1500 void pointer. Update code.
1501 (sh64_register_write): Delete.
1502 (sh4_register_read): Delete.
1503 (sh64_register_read): Delete.
1504 (sh4_register_write): Delete.
1505 (sh_sh4_register_convert_to_raw): Make `from' parameter a constant
1506 void pointer, `to' parameter a void pointer.
1507 (sh_sh64_register_convert_to_raw): Ditto.
1508
1509 2002-08-01 Kevin Buettner <kevinb@redhat.com>
1510
1511 * mips-tdep.c (mips_register_virtual_type): Use architecture
1512 invariant return values.
1513
1514 2002-08-01 Andrew Cagney <cagney@redhat.com>
1515
1516 * linux-proc.c: Include "gdb_string.h".
1517 * Makefile.in (linux-proc.o): Update dependency list.
1518
1519 2002-08-01 Kevin Buettner <kevinb@redhat.com>
1520
1521 * mips-tdep.c (mips_gdbarch_init): Add comments. Fix typo in
1522 comment.
1523
1524 2002-08-01 Grace Sainsbury <graces@redhat.com>
1525
1526 * target.h: Add to_insert_hw_breakpoint, to_remove_hw_breakpoint,
1527 to_insert_watchpoint, to_remove_watchpoint,
1528 to_stopped_by_watchpoint, to_stopped_data_address,
1529 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint to
1530 target vecctor. Define their corresponding macros so they call
1531 them.
1532
1533 * target.c: Add default and debug versions of for
1534 to_insert_hw_breakpoint, to_remove_hw_breakpoint,
1535 to_insert_watchpoint, to_remove_watchpoint,
1536 to_stopped_by_watchpoint, to_stopped_data_address,
1537 to_region_size_ok_for_hw_watchpoint, to_can_use_hw_breakpoint.
1538
1539 2002-08-01 Kevin Buettner <kevinb@redhat.com>
1540
1541 * mips-tdep.c (mips_register_virtual_type): New function.
1542 (mips_gdbarch_init): Register mips_register_virtual_type()
1543 with gdbarch machinery.
1544 * config/mips/tm-irix6.h (mips/tm-bigmips64.h): Include
1545 this file instead of tm-bigmips.h.
1546 (MIPS_REGSIZE): Delete this macro.
1547 (REGISTER_VIRTUAL_TYPE): Delete macro. Undef macro so that
1548 multiarch version in mips-tdep.c will be found.
1549
1550 2002-08-01 Andrew Cagney <cagney@redhat.com>
1551
1552 * NEWS: Menion that CHILL has been made obsolete.
1553
1554 * gdbtypes.c (chill_varying_type): Make chill references obsolete.
1555 * stabsread.c (read_range_type): Ditto.
1556 * gdbtypes.h: Ditto.
1557 * language.c (binop_type_check): Ditto.
1558 (binop_result_type): Ditto.
1559 (integral_type): Ditto.
1560 (character_type): Ditto.
1561 (string_type): Ditto.
1562 (boolean_type): Ditto.
1563 (structured_type): Ditto.
1564 (lang_bool_type): Ditto.
1565 (binop_type_check): Ditto.
1566 * language.h (_LANG_chill): Ditto.
1567 * dwarfread.c (set_cu_language): Ditto.
1568 * dwarfread.c (CHILL_PRODUCER): Ditto.
1569 * dwarfread.c (handle_producer): Ditto.
1570 * expression.h (enum exp_opcode): Ditto.
1571 * eval.c: Ditto for comments.
1572 * typeprint.c (typedef_print) [_LANG_chill]: Ditto.
1573 * expprint.c (print_subexp): Ditto.
1574 (print_subexp): Ditto.
1575 * valops.c (value_cast): Ditto.
1576 (search_struct_field): Ditto.
1577 * value.h (COERCE_VARYING_ARRAY): Ditto.
1578 * symfile.c (init_filename_language_table): Ditto.
1579 (add_psymbol_with_dem_name_to_list): Ditto.
1580 * valarith.c (value_binop): Ditto.
1581 (value_neg): Ditto.
1582 * valops.c (value_slice): Ditto.
1583 * symtab.h (union language_specific): Ditto.
1584 (SYMBOL_INIT_LANGUAGE_SPECIFIC): Ditto.
1585 (SYMBOL_DEMANGLED_NAME): Ditto.
1586 (SYMBOL_CHILL_DEMANGLED_NAME): Ditto.
1587 * defs.h (enum language): Ditto.
1588 * symtab.c (got_symtab): Ditto.
1589 * utils.c (fprintf_symbol_filtered): Ditto.
1590
1591 * ch-typeprint.c: Make file obsolete.
1592 * ch-valprint.c: Make file obsolete.
1593 * ch-lang.h: Make file obsolete.
1594 * ch-exp.c: Make file obsolete.
1595 * ch-lang.c: Make file obsolete.
1596
1597 * Makefile.in (FLAGS_TO_PASS): Do not pass CHILL or CHILLFLAGS or
1598 CHILL_LIB.
1599 (TARGET_FLAGS_TO_PASS): Ditto.
1600 (CHILLFLAGS): Obsolete.
1601 (CHILL): Obsolete.
1602 (CHILL_FOR_TARGET): Obsolete.
1603 (CHILL_LIB): Obsolete.
1604 (SFILES): Remove ch-exp.c, ch-lang.c, ch-typeprint.c and
1605 ch-valprint.c.
1606 (HFILES_NO_SRCDIR): Remove ch-lang.h.
1607 (COMMON_OBS): Remove ch-valprint.o, ch-typeprint.o, ch-exp.o and
1608 ch-lang.o.
1609 (ch-exp.o, ch-lang.o, ch-typeprint.o, ch-valprint.o): Delete
1610 targets.
1611
1612 2002-07-31 Joel Brobecker <brobecker@gnat.com>
1613
1614 * dwarf2read.c (set_cu_language): Add handler for LANG_Ada95.
1615 This does not change anything at the moment, but will be helpful
1616 later when full Ada support is integrated.
1617
1618 2002-07-31 Kevin Buettner <kevinb@redhat.com>
1619
1620 * mips-tdep.c (_initialize_mips_tdep): Add "n64" to "set mips abi"
1621 help message.
1622
1623 2002-07-31 Kevin Buettner <kevinb@redhat.com>
1624
1625 * mips-tdep.c (mips_push_arguments): Fetch gdbarch_tdep struct
1626 and save it in a local variable. Use variable in later test.
1627
1628 2002-07-31 Kevin Buettner <kevinb@redhat.com>
1629
1630 * mips-tdep.c (mips_find_abi_section): Add N64 ABI recognition
1631 test. (Thanks to Daniel Jacobowitz.)
1632
1633 2002-07-31 Kevin Buettner <kevinb@redhat.com>
1634
1635 * mips-tdep.c (enum mips_abi): Add MIPS_ABI_N64.
1636 (mips_abi_strings): Add "n64".
1637 (mips_gdbarch_init): Add test for n64 abi. Add MIPS_ABI_N64 case.
1638
1639 2002-07-31 Kevin Buettner <kevinb@redhat.com>
1640
1641 * config/mips/tm-irix6.h (MIPS_REGSIZE): Define to be 8.
1642 (REGISTER_VIRTUAL_TYPE): Some registers are now 64 bits wide.
1643
1644 2002-07-31 Kevin Buettner <kevinb@redhat.com>
1645
1646 * utils.c (host_pointer_to_address, address_to_host_pointer):
1647 Use gdb_assert() instead of explicit call to internal_error().
1648
1649 2002-07-30 Kevin Buettner <kevinb@redhat.com>
1650
1651 * Makefile.in (rs6000-nat.o): Update dependencies.
1652
1653 From Nicholas Duffek:
1654 * Makefile.in (ALLDEPFILES): Add aix-thread.c.
1655 (aix-thread.o): New rule.
1656 * configure.host (gdb_host): Set to aix432 on AIX 4.3.2+.
1657 * config/powerpc/aix432.mh: New file.
1658
1659 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
1660
1661 * ppc-linux-tdep.c (ELF_NGREG, ELF_NFPREG, ELF_NVRREG)
1662 (ELF_FPREGSET_SIZE, ELF_GREGSET_SIZE): New enums.
1663 (fetch_core_registers, ppc_linux_supply_gregset)
1664 (ppc_linux_supply_fpregset): New functions.
1665 (ppc_linux_regset_core_fns): New.
1666 (_initialize_ppc_linux_tdep): Call add_core_fns.
1667 * ppc-tdep.h: Add prototypes for ppc_linux_supply_fpregset
1668 and ppc_linux_supply_gregset.
1669 * ppc-linux-nat.c (supply_gregset): Call ppc_linux_supply_gregset.
1670 (supply_fpregset): Call ppc_linux_supply_fpregset.
1671 * config/powerpc/linux.mh (NATDEPFILES): Remove core-regset.o and
1672 corelow.o.
1673 * config/powerpc/linux.mt (TDEPFILES): Add corelow.o.
1674
1675 2002-07-30 Daniel Jacobowitz <drow@mvista.com>
1676
1677 * symtab.c (lookup_symbol): Demangle before lowercasing.
1678
1679 2002-07-30 Andrew Cagney <ac131313@redhat.com>
1680
1681 * symtab.h: Replace #include "gdb_obstack.h" with opaque
1682 declaration.
1683 * cli/cli-cmds.c, cli/cli-script.c: Include "gdb_string.h".
1684 * gnu-v3-abi.c, arc-tdep.c, cli/cli-decode.c: Ditto.
1685 * avr-tdep.c, mon960-rom.c, i960-tdep.c: Ditto.
1686 * arch-utils.c, cli/cli-setshow.c: Unconditionally include
1687 "gdb_string.h".
1688 * Makefile.in (cli-script.o, cli-cmds.o): Update dependencies.
1689 (gnu-v3-abi.o, cli-setshow.o, i960-tdep.o): Ditto.
1690 (cli-decode.o, mi-cmd-var.o, mi-cmd-disas.o): Ditto.
1691 (avr-tdep.o, mon960-rom.o): Ditto.
1692 (aout_stabs_gnu_h): Define.
1693 (symtab_h): Remove $(gdb_obstack_h).
1694
1695 2002-07-30 Jim Blandy <jimb@redhat.com>
1696
1697 Patch from David Carlton <carlton@math.stanford.edu>:
1698 * gdbinit.in: Move the `dir' commands that add GDB's own source
1699 directory to the search path to the end, so that the `gdb' source
1700 directory will be searched first.
1701
1702 2002-07-29 Andrew Cagney <ac131313@redhat.com>
1703
1704 * gdb_obstack.h: New file.
1705 * symtab.h: Include "gdb_obstack.h" instead of "obstack.h".
1706 (obstack_chunk_alloc, obstack_chunk_free): Delete macros.
1707 * objfiles.h: Include "gdb_obstack.h".
1708 * Makefile.in (gdb_obstack_h): Define.
1709 (symtab_h): Add $(gdb_obstack_h).
1710 (objfiles_h): Add $(gdb_obstack_h).
1711
1712 * objfiles.c: Include "gdb_obstack.h" instead of "obstack.h".
1713 * macrotab.c, cp-valprint.c, dbxread.c: Ditto.
1714 * ch-typeprint.c, ch-valprint.c, dstread.c: Ditto.
1715 * macroexp.c, p-typeprint.c, stabsread.c: Ditto.
1716 * symtab.c, f-typeprint.c, mdebugread.c: Ditto.
1717 * p-valprint.c, symmisc.c, typeprint.c: Ditto.
1718 * symfile.c, coffread.c, c-typeprint.c: Ditto.
1719 * buildsym.c, bcache.c, ada-typeprint.c: Ditto.
1720
1721 * Makefile.in (bcache.o): Update dependencies.
1722 (buildsym.o, c-typeprint.o, ch-typeprint.o): Ditto.
1723 (ch-valprint.o, coffread.o, cp-valprint.o): Ditto.
1724 (dbxread.o, dstread.o, f-typeprint.o): Ditto.
1725 (objfiles.o, p-typeprint.o, p-valprint.o): Ditto.
1726 (stabsread.o, symfile.o, symmisc.o): Ditto.
1727 (symtab.o, typeprint.o, macroexp.o): Ditto.
1728 (macrotab.o, mdebugread.o): Ditto.
1729 (f_lang_h, coff_sym_h, coff_symconst_h): Define.
1730 (coff_ecoff_h, aout_aout64_h): Define.
1731 (aout_stabs_gnu_h, libaout_h): Define.
1732
1733 2002-07-29 Andrew Cagney <cagney@redhat.com>
1734
1735 * regcache.c (struct regcache_descr): Rename nr_registers to
1736 nr_cooked_registers. Revise comments describing the structure
1737 member fields.
1738 (init_regcache_descr): Update.
1739 (init_legacy_regcache_descr): Update.
1740 (read_register_gen, write_register_gen): When a cooked register in
1741 the raw register range, directly access the value from the raw
1742 register cache.
1743
1744 2002-07-29 Andrew Cagney <ac131313@redhat.com>
1745
1746 * z8k-tdep.c: Do not include "obstack.h".
1747 * h8300-tdep.c, h8500-tdep.c: Ditto.
1748 * m68hc11-tdep.c, sh-tdep.c: Ditto.
1749 * valprint.c, v850-tdep.c: Ditto.
1750 * d10v-tdep.c, mn10300-tdep.c: Ditto.
1751 * mn10200-tdep.c: Ditto.
1752
1753 * Makefile.in (z8k-tdep.o): Update dependencies.
1754 (m68hc11-tdep.o, valprint.o): Ditto.
1755 (v850-tdep.o, d10v-tdep.o): Ditto.
1756 (mn10300-tdep.o, sparc-tdep.o): Ditto.
1757 (sh-tdep.o, h8500-tdep.o, h8300-tdep.o): Ditto.
1758 (m32r-tdep.o, mn10200-tdep.o): Specify dependencies.
1759 (sh_opc_h, gdb_sim_sh_h): Define.
1760 (elf_sh_h, elf_bfd_h): Define.
1761 (opcode_m68hc11_h): Define.
1762 (OPCODES_SRC, OPCODES_DIR): define.
1763 (OPCODES): Use $(OPCODES_DIR).
1764 (gdb_sim_d10v_h): Rename sim_d10v_h.
1765 (gdb_sim_arm_h): Rename sim_arm_h.
1766
1767 2002-07-26 Kevin Buettner <kevinb@redhat.com>
1768
1769 * utils.c (host_pointer_to_address, address_to_host_pointer):
1770 Change internal_error() message to indicate function responsible
1771 for the error.
1772
1773 2002-07-26 Kevin Buettner <kevinb@redhat.com>
1774
1775 * ui-out.c (ui_out_field_core_addr): Remove unnecessary cast in
1776 calls to local_hex_string_custom().
1777
1778 2002-07-26 Kevin Buettner <kevinb@redhat.com>
1779
1780 * irix5-nat.c: Move IRIX shared library support from here...
1781 * solib-irix.c: ...to here. Revised substantially to work with
1782 generic solib framework.
1783
1784 * osabi.h (gdb_osabi): Add new enum constant GDB_OSABI_IRIX.
1785 * osabi.c (gdb_osabi_names): Add corresponding string for Irix.
1786 * mips-irix-tdep.c: New file.
1787
1788 * Makefile.in (ALLDEPFILES): Add mips-irix-tdep.c and solib-irix.c.
1789 (mips-irix-tdep.o, solib-irix.o): New rules.
1790 * config/mips/irix5.mt (TDEPFILES): Add mips-irix-tdep.o, solib.o,
1791 solib-irix.o.
1792 * config/mips/irix6.mt (TDEPFILES): Likewise.
1793 * config/mips/irix6.mh (NATDEPFILES): Remove solib.o.
1794
1795 2002-07-26 Kevin Buettner <kevinb@redhat.com>
1796
1797 * aix-thread.c (coff/internal.h, bfd/libcoff.h, pthread.h): Remove
1798 disabled (via ``#if 0'') includes.
1799
1800 2002-07-26 Kevin Buettner <kevinb@redhat.com>
1801
1802 * aix-thread.c (special_register_p, supply_sprs64, supply_sprs32)
1803 (fetch_regs_user_thread, fetch_regs_kernel_thread, fill_sprs64)
1804 (fill_sprs32, store_regs_user_thread, store_regs_kernel_thread):
1805 Add support for the fpscr register.
1806 * rs6000-nat.c (regmap, fetch_inferior_registers)
1807 (store_inferior_registers, fetch_core_registers): Likewise.
1808
1809 2002-07-26 Kevin Buettner <kevinb@redhat.com>
1810
1811 * rs6000-nat.c (language.h): Include.
1812 (special_regs): Delete this array.
1813 (regmap): New function.
1814 (fetch_register, store_register): Use regmap() to map gdb
1815 register numbers to ptrace register numbers. Also, use
1816 outputs from regmap() to make decisions regarding type of
1817 ptrace() call to make. In particular, don't compare against
1818 FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
1819 (fetch_inferior_registers, store_inferior_registers): Where
1820 possible, obtain register numbers from tdep struct. Don't
1821 refer to FIRST_UISA_SP_REGNUM or LAST_UISA_SP_REGNUM.
1822 * config/rs6000/tm-rs6000.h (FIRST_UISA_SP_REGNUM)
1823 (LAST_UISA_SP_REGNUM): Delete.
1824
1825 2002-07-25 Kevin Buettner <kevinb@redhat.com>
1826
1827 * rs6000-nat.c (ppc-tdep.h): Include.
1828 (fetch_registers, store_register, fetch_core_registers): Don't
1829 access registers[] directly. Instead, use supply_register() or
1830 regcache_collect() as appropriate.
1831 (find_toc_address): Format hex address with local_hex_string().
1832
1833 2002-07-25 Andrew Cagney <ac131313@redhat.com>
1834
1835 * config/djgpp/fnchange.lst: Rename bfd/elf32-fr30.c and
1836 bfd/elf32-frv.c.
1837
1838 2002-07-24 Tom Tromey <tromey@redhat.com>
1839
1840 * jv-exp.y: Marked all strings with _().
1841 (ClassInstanceCreationExpression, ArrayCreationExpression): Use
1842 internal_error.
1843 (MethodInvocation, CastExpression, parse_number, yyerror,
1844 java_type_from_name, push_expression_name, yylex): Typo fixes.
1845
1846 2002-07-24 Daniel Jacobowitz <drow@mvista.com>
1847
1848 * ui-file.c (struct tee_file, tee_file_new, tee_file_delete)
1849 (tee_file_flush, tee_file_write, tee_file_fputs)
1850 (tee_file_isatty): New.
1851 * ui-file.h (tee_file_new): Add prototype.
1852
1853 2002-07-24 Aidan Skinner <aidan@velvet.net>
1854
1855 * ada-lang.c: Change k&r style function definitions to prototyped
1856 form.
1857 * ada-typeprint.c: Change k&r style function definitions to prototyped
1858 form.
1859 * ada-valprint.c: Change k&r style function definitions to prototyped
1860 form.
1861
1862 2002-07-24 Andrew Cagney <cagney@redhat.com>
1863
1864 * README: Remove reference to remote-bug.
1865 * Makefile.in (ALLDEPFILES): Remove m88k-nat.c, m88k-tdep.c and
1866 remote-bug.c.
1867 (m88k-nat.o): Delete rule.
1868 (m88k-tdep.o): Delete rule.
1869 (remote-bug.o): Delete rule.
1870 * MAINTAINERS: Mark as obsolete.
1871 * elfread.c (elf_symtab_read): Mention that m88k is obsolete.
1872 * m88k-tdep.c: Make file obsolete.
1873 * config/m88k/m88k.mh: Ditto.
1874 * config/m88k/delta88v4.mh: Ditto.
1875 * config/m88k/delta88v4.mt: Ditto.
1876 * config/m88k/delta88.mt: Ditto.
1877 * config/m88k/delta88.mh: Ditto.
1878 * remote-bug.c: Ditto.
1879 * config/m88k/tm-delta88.h: Ditto.
1880 * config/m88k/nm-delta88v4.h: Ditto.
1881 * config/m88k/xm-delta88.h: Ditto.
1882 * config/m88k/xm-dgux.h: Ditto.
1883 * config/m88k/tm-m88k.h: Ditto.
1884 * config/m88k/nm-m88k.h: Ditto.
1885 * config/m88k/tm-delta88v4.h: Ditto.
1886 * m88k-nat.c: Ditto.
1887 * cxux-nat.c: Ditto.
1888 * configure.host: Make m88*-motorola-sysv4*, m88*-motorola-sysv*
1889 and m88*-*-* obsolete.
1890 * configure.tgt: Make m88*-motorola-sysv4*, m88*-motorola-* and
1891 m88*-*-* obsolete.
1892
1893 2002-07-24 Andrew Cagney <cagney@redhat.com>
1894
1895 * findvar.c (extract_unsigned_integer): Make `addr' parameter
1896 constant. Same for local pointer variables.
1897 (extract_signed_integer): Ditto.
1898 * defs.h (extract_unsigned_integer): Update.
1899 (extract_signed_integer): Update.
1900
1901 2002-07-24 Andrew Cagney <cagney@redhat.com>
1902
1903 * regcache.c (regcache_raw_write): Change buf parameter to a
1904 constant void pointer.
1905 (regcache_raw_read): Change buf parameter to a void pointer.
1906 (legacy_write_register_gen): Change myaddr parameter a constant
1907 void pointer.
1908 (supply_register): Change val parameter to a const void pointer.
1909 * regcache.h (regcache_raw_write): Update declaration.
1910 (regcache_raw_read): Update declaration.
1911 (supply_register): Update declaration.
1912
1913 2002-07-24 Tom Tromey <tromey@redhat.com>
1914
1915 * defs.h (gdb_readline_wrapper): Declare.
1916 * utils.c (prompt_for_continue): Use gdb_readline_wrapper.
1917 * tracepoint.c (read_actions): Use gdb_readline_wrapper.
1918 * top.c (gdb_readline_wrapper): New function.
1919 (command_line_input): Use it.
1920
1921 2002-07-24 Andrew Cagney <cagney@redhat.com>
1922
1923 * regcache.h (regcache_raw_read, regcache_raw_write): Replace
1924 regcache_read and regcache_write.
1925 (regcache_raw_read_as_address): Replace regcache_read_as_address.
1926 * regcache.c: Update.
1927 * sh-tdep.c (sh64_push_arguments): Update comment.
1928 (sh_pseudo_register_read): Update.
1929 (sh_pseudo_register_write): Update.
1930 (sh4_register_read): Update.
1931 (sh4_register_write): Update.
1932 (sh64_pseudo_register_read): Update.
1933 (sh64_pseudo_register_write): Update.
1934 (sh64_register_read): Update.
1935 (sh64_register_write): Update.
1936 * i386-tdep.c (i386_extract_return_value): Update.
1937 (i386_extract_struct_value_address): Update.
1938 (i386_extract_return_value): Update.
1939 * blockframe.c (generic_read_register_dummy): Update.
1940 (generic_call_dummy_register_unwind): Update
1941 * infrun.c (write_inferior_status_register): Update.
1942
1943 2002-07-23 Jim Blandy <jimb@redhat.com>
1944
1945 * parser-defs.h (expression_context_pc): Make this extern.
1946 (Thanks to Michael Snyder.)
1947
1948 2002-07-23 Andrew Cagney <ac131313@redhat.com>
1949
1950 GDB 5.2.1 released from 5.2 branch.
1951 * NEWS: Mention changes in 5.2.1 including addition of AVR target.
1952 * README: Update to mention 5.2.1.
1953
1954 2002-07-23 Mark Salter <msalter@redhat.com>
1955
1956 * remote.c (remote_read_bytes): Fix check for error.
1957
1958 2002-07-22 Kevin Buettner <kevinb@redhat.com>
1959
1960 * aix-thread.c (language.h): Include.
1961 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
1962 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc):
1963 Print newlines at end of debug messages.
1964 (pdc_symbol_addrs, pdc_read_regs, pdc_write_regs, pdc_read_data)
1965 (pdc_write_data): Use local_hex_string() instead of %llx formats.
1966
1967 2002-07-22 Kevin Buettner <kevinb@redhat.com>
1968
1969 * aix-thread.c (ppc-tdep.h): Include.
1970 (special_register_p): New function.
1971 (supply_sprs64, supply_sprs32, fill_sprs64, fill_sprs32)
1972 (store_regs_user_thread): Use register number information from
1973 gdbarch_tdep struct instead of hardcoded offsets relative to
1974 FIRST_UISA_SP_REGNUM.
1975 (fetch_regs_kernel_thread, store_regs_kernel_thread): Call
1976 special_register_p() instead of using FPLAST_REGNUM and
1977 LAST_UISA_SP_REGNUM as lower and upper bounds on the special
1978 register numbers. Also, don't assume that LAST_UISA_SP_REGNUM
1979 will be MQ's register number.
1980
1981 2002-07-22 Michael Snyder <msnyder@redhat.com>
1982
1983 * aix-thread.c (ops): Rename to aix_thread_ops.
1984 (base_ops): Rename to base_target.
1985 (ops_attach): Rename to aix_thread_attach.
1986 (ops_detach): Rename to aix_thread_detach.
1987 (ops_resume): Rename to aix_thread_detach.
1988 (ops_wait): Rename to aix_thread_wait.
1989 (ops_kill): Rename to aix_thread_kill.
1990 (init_ops): Rename to init_aix_thread_ops.
1991 (ops_fetch_register): Rename to aix_thread_fetch_register.
1992 (ops_store_register): Rename to aix_thread_store_register.
1993 (ops_mourn_inferior): Rename to aix_thread_mourn_inferior.
1994 (ops_thread_alive): Rename to aix_thread_thread_alive.
1995 (ops_extra_thread_info: Rename to aix_thread_extra_thread_info.
1996 (ops_pid_to_str): Rename to aix_thread_pid_to_str.
1997 (ops_xfer_memory): Rename to aix_thread_xfer_memory.
1998 (fetch_regs_lib): Rename to fetch_regs_user_thread.
1999 (fetch_regs_kern): Rename to fetch_regs_kernel_thread.
2000 (store_regs_lib): Rename to store_regs_user_thread.
2001 (store_regs_kern): Rename to store_regs_kernel_thread.
2002
2003 2002-07-22 Michael Snyder <msnyder@redhat.com>
2004
2005 * aix-thread.c (ops_prepare_to_store): Eliminate.
2006 (init_ops): Don't initialize ops.prepare_to_store.
2007 (store_regs_kern): Pre-fetch register buffers from child,
2008 because some registers may not be in the cache. Copy
2009 regs from register cache only if they are cached.
2010 (store_regs_lib): Copy regs from register cache only
2011 if they are cached.
2012 (fill_sprs32, (fill_sprs64, fill_fprs, fill_gprs32,
2013 fill_gprs64): Ditto.
2014
2015 2002-07-22 Kevin Buettner <kevinb@redhat.com>
2016
2017 * aix-thread.c (gdb_assert.h): Include.
2018 (fill_sprs64, fill_sprs32): Add selected asserts to make sure that
2019 register sizes (from register cache) match size of buffer holding
2020 register data.
2021 (fill_sprs32): Change parameter types to match those in the ptrace()
2022 buffer.
2023 (store_regs_lib): Likewise, but for 32-bit temporary variables.
2024 (ops_prepare_to_store): Rename loop variable ``i'' to ``regno''.
2025
2026 2002-07-22 Michael Snyder <msnyder@redhat.com>
2027
2028 * aix-thread.c (supply_sprs64): Cosmetic change.
2029 (supply_sprs32): Cosmetic change.
2030 (fill_gprs64, fill_gprs32, fill_fprs, fill_sprs32): New funcs.
2031 (fill_sprs64): Use regcache_collect instead of read_register.
2032 (store_regs_lib): Use regcache_collect instead of
2033 read_register. Use fill_sprs32 instead of fill_sprs64,
2034 if debugging a 32-bit architecture.
2035 (store_regs_kern): Use fill_gprs64 etc. to pull the values
2036 out of the register cache, instead of passing a pointer into
2037 the register cache directly to ptrace. Use regcache_collect
2038 insteaad of read_register.
2039 (ops_prepare_to_store): Use target_read_registers instead
2040 of read_register_bytes.
2041
2042 2002-07-20 Aidan Skinner <aidan@velvet.net>
2043
2044 * MAINTAINERS: Add self under write after approval.
2045
2046 2002-07-20 Aidan Skinner <aidan@velvet.net>
2047
2048 * ada-tasks.c: Change k&r style function definitions to prototyped
2049 form.
2050
2051 2002-07-19 Andrew Cagney <ac131313@redhat.com>
2052
2053 * Makefile.in (x86-64-tdep.o): Add $(objfiles_h).
2054 * x86-64-tdep.c: Include "objfiles.h".
2055 (x86_64_gdbarch_init): Set in_solib_call_trampoline to
2056 in_plt_section. From 2002-07-18 Michal Ludvig <mludvig@suse.cz>.
2057
2058 2002-07-17 Michal Ludvig <michal@suse.cz>
2059
2060 * dwarf2cfi.c (execute_stack_op): Complain on unknown DW_OP_ value.
2061 (update_context): Initialise cfa variable.
2062
2063 2002-07-17 Michael Snyder <msnyder@redhat.com>
2064
2065 * aix-thread.c: Shorten some long lines.
2066 Bring comments into line with code spec.
2067
2068 2002-07-18 Joel Brobecker <brobecker@gnat.com>
2069
2070 * infrun.c: Re-indent using gdb_indent.sh.
2071
2072 2002-07-18 Joel Brobecker <brobecker@gnat.com>
2073
2074 * infrun.c (handle_inferior_event): Remove unneeded extra brace.
2075 Leave the indentation temporarily untouched, to minimize the diffs.
2076
2077 2002-07-18 Elena Zannoni <ezannoni@redhat.com>
2078
2079 * stabsread.c: Make os9k sections of the code obsolete,
2080 for real this time.
2081 * stabsread.h: Make os9k sections of the code obsolete.
2082
2083 2002-07-18 Michal Ludvig <mludvig@suse.cz>
2084
2085 * linux-low.c (regsets_store_inferior_registers): Add free()
2086 at the end of a loop to prevent memory leak.
2087 * linux-x86-64-low.c (x86_64_regmap): Add CS, SS registers.
2088 (X86_64_NUM_GREGS): Count it from the size of x86_64_regmap.
2089 * config/sparc/tm-sp64linux.h: Make the rest of #endif
2090 line a comment.
2091 * Makefile.in (x86-64-linux-nat.o): Remove dependency on i387-tdep.h
2092
2093 2002-07-17 Jim Blandy <jimb@redhat.com>
2094
2095 * macrocmd.c (info_macro_command): Remove newline from error
2096 message.
2097
2098 2002-07-17 J"orn Rennecke <joern.rennecke@superh.com>
2099
2100 * sh-tdep.c (sh_dsp_register_sim_regno): New function.
2101 (sh_gdbarch_init): Use it for sh-dsp.
2102
2103 2002-07-16 Kevin Buettner <kevinb@redhat.com>
2104
2105 * dwarf2read.c (read_initial_length): Handle older, non-standard,
2106 64-bit DWARF2 format.
2107
2108 2002-07-16 Joel Brobecker <brobecker@gnat.com>
2109
2110 * proc-api.c: use HAVE_SYS_PROC_H macro to avoid including
2111 <sys/proc.h> when not available.
2112
2113 2002-07-16 Andrew Cagney <ac131313@redhat.com>
2114
2115 * NEWS: Mention that the i[34]86-*-os9k has been made obsolete.
2116 * stabsread.c: Make os9k sections of the code obsolete.
2117 * configure.tgt: Make i[3456]86-*-os9k target obsolete.
2118 * config/i386/i386os9k.mt: Make file obsolete.
2119 * Makefile.in (ALLDEPFILES): Remove remote-os9k.c.
2120 (COMMON_OBS): Remove os9kread.o
2121 (SFILES): Remove os9kread.c.
2122 (os9kread.o, remote-os9k.o): Make target obsolete.
2123 * remote-os9k.c: Make file obsolete.
2124 * os9kread.c: Make file obsolete.
2125 * Makefile.in
2126
2127 2002-07-16 Andrew Cagney <ac131313@redhat.com>
2128
2129 * NEWS: Mention that the FR30 has been made obsolete.
2130 * fr30-tdep.c: Make file obsolete.
2131 * config/fr30/tm-fr30.h: Ditto.
2132 * config/fr30/fr30.mt: Ditto.
2133 * configure.tgt: Make fr30-*-elf obsolete.
2134 * MAINTAINERS: Make fr30-elf obsolete.
2135
2136 2002-07-16 Pierre Muller <muller@ics.u-strasbg.fr>
2137
2138 * blockframe.c (get_pc_function_start): return 0 if the minimal symbol
2139 found is not inside a section.
2140
2141 2002-07-15 Kevin Buettner <kevinb@redhat.com>
2142
2143 * aix-thread.c (ptrace_check): Use safe_strerror() instead of
2144 strerror().
2145 (pdc_realloc): Use xrealloc() instead of realloc().
2146
2147 2002-07-15 Kevin Buettner <kevinb@redhat.com>
2148
2149 * aix-thread.c (PD_ERROR, CALL_BASE): Delete.
2150 (ops_resume, ops_wait, fetch_regs_lib, store_regs_lib)
2151 (ops_xfer_memory, ops_kill): Don't use PD_ERROR or CALL_BASE
2152 macros.
2153
2154 2002-07-15 Kevin Buettner <kevinb@redhat.com>
2155
2156 * aix-thread.c (ptrace_check): Eliminate goto.
2157 (sync_threadlists): Eliminate gotos. Also, fix array overrun
2158 problem.
2159
2160 2002-07-15 Kevin Buettner <kevinb@redhat.com>
2161
2162 * aix-thread.c (gdbcmd.h): Include.
2163 (DEBUG, DBG, DBG2, dbg): Eliminate.
2164 (debug_aix_thread): New static global.
2165 (ptrace_check, pdc_symbol_addrs, pdc_read_regs, pdc_write_regs)
2166 (pdc_read_data, pdc_write_data, pdc_alloc, pdc_realloc, pdc_dealloc)
2167 (fetch_regs_lib, store_regs_lib, store_regs_kern): Rewrite
2168 invocations to DBG and DBG2 macros to test against
2169 ``debug_aix_thread'' and call fprintf_unfiltered().
2170 (_initialize_aix_thread): Add new command "set debug aix-thread".
2171
2172 2002-07-15 Andrew Cagney <ac131313@redhat.com>
2173
2174 From Gerhard Tonn <TON@de.ibm.com>:
2175 * s390-nat.c (fill_fpregset, fill_gregset): Use regcache_collect
2176 instead of supply_register.
2177
2178 2002-07-15 Andrew Cagney <ac131313@redhat.com>
2179
2180 * dwarf2cfi.c: Include "gdb_assert.h".
2181 (frame_state_for): Use gdb_assert to check that fde->cie_ptr is
2182 non-NULL.
2183 (update_context): Do not use __func__. Add missing ``break''.
2184 (update_context): Do not use __func__.
2185
2186 2002-07-15 Elena Zannoni <ezannoni@redhat.com>
2187
2188 * rs6000-tdep.c (rs6000_gdbarch_init): Remove variable print_insn
2189 and its setting. Set gdbarch instruction printing functions
2190 directly. For non-rs6000 case use new function
2191 gdb_print_insn_powerpc.
2192 (gdb_print_insn_powerpc): New function.
2193
2194 2002-07-13 Andrew Cagney <ac131313@redhat.com>
2195
2196 * NEWS: Mention that the d30v has been marked obsolete.
2197 * MAINTAINERS: Note that d30v / d30v-elf has been made obsolete.
2198 * configure.tgt: Mark d30v-*-* as obsolete.
2199 * d30v-tdep.c: Mark file as obsolete.
2200 * config/d30v/d30v.mt: Ditto.
2201 * config/d30v/tm-d30v.h: Ditto.
2202
2203 2002-07-13 Aidan Skinner <aidan@velvet.net>
2204
2205 * ada-tasks.c (add_task_entry): replace calls to
2206 malloc() with xmalloc
2207 * ada-tasks.c (init_task_list): replace calls to free with xfree()
2208
2209 * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype,
2210 ada_finish_decode_line_1, all_sals_for_line
2211 ada_breakpoint_rewrite): replace calls to free() with xfree()
2212
2213 2002-07-12 Kevin Buettner <kevinb@redhat.com>
2214
2215 From Nicholas Duffek (with minor changes by Martin Hunt,
2216 Louis Hamilton, and Kevin Buettner):
2217 * aix-thread.c: New file.
2218
2219 2002-07-12 Petr Sorfa <petrs@caldera.com>
2220
2221 * dwarf2read.c (dwarf2_invalid_attrib_class): New
2222 complaint for invalid attribute class or form.
2223 (read_func_scope): DW_AT_frame_base
2224 better handling of DW_AT_block*.
2225 (dwarf2_add_member_fn): DW_AT_vtable_elem_location
2226 better handling of DW_AT_block*.
2227 (read_common_block): DW_AT_location
2228 better handling of DW_AT_block*.
2229 (read_partial_die): DW_AT_location better handling
2230 of DW_AT_block*.
2231 (new_symbol): DW_AT_external better handling of
2232 DW_AT_block*. Proper initialization of variable
2233 "addr".
2234 (attr_form_is_block): New function that returns true
2235 if the attribute's form is of DW_FORM_block*.
2236
2237 2002-07-12 Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>
2238
2239 * valops.c (find_method_list): Remove comment about
2240 removed STATIC_MEMFUNCP argument.
2241 (value_find_oload_method_list): Likewise.
2242
2243 2002-07-12 Kevin Buettner <kevinb@redhat.com>
2244
2245 From Nicholas Duffek:
2246 * rs6000-nat.c (vmap_ldinfo, xcoff_relocate_core): Call
2247 target_new_objfile_hook.
2248
2249 2002-07-12 Kevin Buettner <kevinb@redhat.com>
2250
2251 From Nicholas Duffek:
2252 * xcoffread.c (scan_xcoff_symtab): Recognize XMC_TD as a data storage
2253 csect.
2254
2255 2002-07-12 Andrew Cagney <cagney@redhat.com>
2256
2257 * MAINTAINERS: Mention --enable-sim-build-warnings.
2258 (m68hc11-elf): Disable sim build warnings.
2259 (m32r-elf): Mark as broken obsolete candidate.
2260 (x86_64-linux-gnu): Mark as buildable with -Werror.
2261 (arm-elf): Change -w to ``,'' which enables warnings but not
2262 -Werror.
2263
2264 2002-07-12 Andrew Cagney <ac131313@redhat.com>
2265
2266 * bcache.h: Update copyright.
2267 (struct bstring, struct bcache): Move definition to "bcache.c".
2268 Replaced by opaque declaration.
2269 (bcache_xfree): Replace free_bcache.
2270 (bcache_xmalloc, bcache_memory_used): Declare.
2271
2272 * bcache.c: Update copyright.
2273 (struct bstring, struct bcache): Moved to here from "bcache.h".
2274 Update comments.
2275 (bcache_xmalloc, bcache_memory_used): New functions.
2276 (bcache_xfree): Replace function free_bcache.
2277
2278 * Makefile.in (objfiles.o): Add $(bcache_h).
2279 (objfiles_h): Remove $(bcache_h).
2280 (symfile.o): Add $(bcache_h).
2281
2282 * symmisc.c: Update copyright.
2283 (print_symbol_bcache_statistics): Pass psymbol_cache by value.
2284 (print_objfile_statistics): Use bcache_memory_used.
2285
2286 * symfile.c: Include "bcache.h".
2287 (reread_symbols): Use bcache_xfree.
2288 (reread_symbols): Use bcache_xmalloc and bcache_xfree.
2289 (add_psymbol_to_list): Pass psymbol_cache by value.
2290 (add_psymbol_with_dem_name_to_list): Ditto.
2291
2292 * objfiles.h: Update copyright.
2293 (struct bcache): Declare opaque. Do not include "bcache.h".
2294 (struct objfile): Change psymbol_cache and macro_cache to ``struct
2295 bcache'' pointers.
2296 * dwarf2read.c (macro_start_file): Pass macro_cache by value.
2297
2298 * objfiles.c: Include "bcache.h". Update copyright.
2299 (allocate_objfile): Use bcache_xmalloc to create psymbol_cache and
2300 macro_cache.
2301 (free_objfile): Use bcache_xfree.
2302
2303 2002-07-11 Grace Sainsbury <graces@redhat.com>
2304
2305 * monitor.c (monitor_fetch_register): Make name a constant.
2306 (monitor_store_register): Same.
2307
2308 2002-07-11 Daniel Jacobowitz <drow@mvista.com>
2309
2310 Based on patch from Daniel Berlin <dberlin@dberlin.org>.
2311 * buildsym.c: Include "demangle.h" for SYMBOL_INIT_DEMANGLED_NAME.
2312 (finish_block) For non-function blocks, hash the symbol table. For
2313 function blocks, mark the symbol table as unhashed.
2314 * minsyms.c (msymbol_hash): Return hash value without taking modulus.
2315 (msymbol_hash_iw): Likewise.
2316 (add_minsym_to_hash_table): Take modulus of msymbol_hash's return
2317 value.
2318 (add_minsym_to_demangled_hash_table): Likewise for msymbol_hash_iw.
2319 (lookup_minimal_symbol): Likewise for both.
2320 * symtab.h (struct block): Add `hashtable' flag. Comment the
2321 hashtable.
2322 (BLOCK_HASHTABLE, BLOCK_BUCKETS, BLOCK_BUCKET): New macro.
2323 (ALL_BLOCK_SYMBOLS): Update.
2324 (BLOCK_SHOULD_SORT): Do not sort hashed blocks.
2325 (struct symbol): Add `hash_next' pointer.
2326 * symtab.c (lookup_block_symbol): Search using the hash table when
2327 possible.
2328 (find_pc_sect_symtab): Use ALL_BLOCK_SYMBOLS.
2329 (search_symbols, find_addr_symbol): Likewise.
2330
2331 * dstread.c (process_dst_block): Clear hashtable bit for new block.
2332 (read_dst_symtab): Likewise.
2333 * jv-lang.c (get_java_class_symtab): Likewise.
2334 * mdebugread.c: Include "gdb_assert.h".
2335 (shrink_block): Assert that the block being modified is not hashed.
2336 * coffread.c (patch_opaque_types): Use ALL_BLOCK_SYMBOLS.
2337 * symmisc.c (free_symtab_block): Walk the hash table when freeing
2338 symbols.
2339 (dump_symtab): Recognize hashed blocks.
2340 * printcmd.c (print_frame_args): Assert that function blocks do not
2341 have hashed symbol tables.
2342 * ada-lang.c (symtab_for_sym): Use ALL_BLOCK_SYMBOLS.
2343 (fill_in_ada_prototype, debug_print_block): Likewise.
2344 (ada_add_block_symbols): Use ALL_BLOCK_SYMBOLS. Handle hash tables.
2345
2346 2002-07-11 Corinna Vinschen <vinschen@redhat.com>
2347
2348 * stack.c (print_frame): Use result of frame_address_in_block()
2349 instead of fi->pc when evaluating symbols.
2350 (backtrace_command_1): Ditto.
2351
2352 2002-07-11 Andrew Cagney <cagney@redhat.com>
2353
2354 * cris-tdep.c (cris_saved_pc_after_call): Fix parameter type.
2355 Make static.
2356
2357 * arm-tdep.c (arm_register_name): Make return type constant.
2358
2359 2002-07-10 Andrew Cagney <ac131313@redhat.com>
2360
2361 * win32-nat.c (has_detach_ability): Convert to strict ISO C
2362 prototype.
2363 * top.c (gdb_rl_operate_and_get_next_completion): Ditto.
2364 * s390-tdep.c (s390_fp_regnum): Ditto.
2365 (s390_read_fp): Ditto.
2366 (s390_pop_frame): Ditto.
2367 (_initialize_s390_tdep): Ditto.
2368 * remote.c (get_remote_state): Ditto.
2369 * procfs.c (mappingflags): Ditto.
2370 * memattr.c (_initialize_mem): Ditto.
2371 * mcore-tdep.c (mcore_pop_frame): Ditto.
2372 * m68klinux-nat.c (_initialize_m68k_linux_nat): Ditto.
2373 * m68k-tdep.c (m68k_register_bytes_ok): Ditto.
2374 * language.c (set_case_str): Ditto.
2375 * gnu-v3-abi.c (vtable_address_point_offset): Ditto.
2376 * frv-tdep.c (new_variant): Ditto.
2377 (frv_stopped_data_address): Ditto.
2378 * dwarf2cfi.c (fde_chunks_need_space): Ditto.
2379 (context_alloc): Ditto.
2380 (frame_state_alloc): Ditto.
2381 (unwind_tmp_obstack_init): Ditto.
2382 (unwind_tmp_obstack_free): Ditto.
2383 (cfi_read_fp): Ditto.
2384 * cris-tdep.c (cris_saved_pc_after_call): Ditto.
2385 (cris_pop_frame): Ditto.
2386 * c-lang.c (scanning_macro_expansion): Ditto.
2387 (finished_macro_expansion): Ditto.
2388 (c_preprocess_and_parse): Ditto.
2389 * gdbarch.sh: Ditto.
2390 * gdbarch.h, gdbarch.c: Regenerate.
2391 * config/mn10200/tm-mn10200.h: Adjust indentation.
2392 * target.c: Adjust indentation.
2393 * symtab.h: Adjust indentation.
2394 * stabsread.h: Adjust indentation.
2395 * remote-es.c: Adjust indentation.
2396 * os9kread.c: Adjust indentation.
2397
2398 2002-07-10 Andrew Cagney <ac131313@redhat.com>
2399
2400 * wince.c (_initialize_wince): Rename _initialize_inftarg.
2401 * win32-nat.c (_initialize_win32_nat): Rename _initialize_inftarg.
2402
2403 2002-07-10 Grace Sainsbury <graces@redhat.com>
2404
2405 * NEWS: Mention m68k, mcore multi-arching.
2406 * MAINTAINERS: Change status of m68k, mcore to reflect
2407 multi-arching.
2408
2409 2002-07-10 Daniel Jacobowitz <drow@mvista.com>
2410
2411 * valops.c (find_overload_match): Free oload_syms.
2412
2413 2002-07-09 Joel Brobecker <brobecker@gnat.com>
2414
2415 Define HAVE_SYS_PROC_H if sys/proc.h exists
2416 * configure.in: Add check for sys/proc.h
2417 * config.in: Regenerate.
2418 * configure: Regenerate.
2419
2420 2002-07-09 Grace Sainsbury <graces@redhat.com>
2421
2422 * config/m68k/tm-m68k.h: Remove macros wrapped in
2423 #if !GDB_MULTI_ARCH.
2424
2425 2002-07-08 Andrew Cagney <ac131313@redhat.com>
2426
2427 * config.in, configure: Regenerate.
2428
2429 2002-07-08 Mark Kettenis <kettenis@gnu.org>
2430
2431 * dwarf2cfi.c: Include "gcore.h".
2432 (execute_stack_op): Fix implementation of the
2433 DW_OP_deref and DW_OP_deref_size operators by letting do their
2434 lookup in the target.
2435
2436 2002-07-07 Mark Kettenis <kettenis@gnu.org>
2437
2438 From Peter Schauer <Peter.Schauer@regent.e-technik.tu-muenchen.de>:
2439 * i386-sol2-tdep.c (i386_sol2_init_abi): Correct value for
2440 tdep->sc_sp_offset.
2441
2442 2002-07-05 Daniel Jacobowitz <drow@mvista.com>
2443
2444 Fix PR gdb/595, gdb/602
2445 * gnu-v3-abi.c (gnuv3_baseclass_offset): Remove unused variables.
2446 Don't call value_cast, just read the vtable pointer; update comments
2447 to match.
2448
2449 2002-07-05 Grace Sainsbury <graces@redhat.com>
2450
2451 * config/mcore/tm-mcore.h: Remove file.
2452 * config/mcore/mcore.mt: Remove definition of TM_FILE
2453 * configure.tgt: Set gdb_multi_arch to yes for the mcore target.
2454
2455 2002-07-05 Mark Kettenis <kettenis@gnu.org>
2456
2457 * i386bsd-tdep.c: Include "gdb_string.h".
2458
2459 2002-07-04 Grace Sainsbury <graces@redhat.com>
2460
2461 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Set to 2.
2462 (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG,RETVAL_REGNUM): Move to
2463 mcore-tdep.
2464 (REG_STRUCT_HAS_ADDR, USE_STRUCT_CONVENTION, GET_SAVED_REGISTER)
2465 (TARGET_VIRTUAL_FRAME_POINTER, BELIEVE_PCC_PROMOTION): Remove.
2466 * mcore-tdep.c (PR_REGNUM, FIRST_ARGREG, LAST_ARGREG)
2467 (RETVAL_REGNUM): Move macros from tm-mcore.h
2468 (mcore_reg_struct_has_addr): New function.
2469 (mcore_gdbarch_init): Added initializations for the macros removed
2470 from tm-mcore.h.
2471
2472 2002-07-04 Mark Kettenis <kettenis@gnu.org>
2473
2474 * osabi.c (generic_elf_osabi_sniffer): Add check for FreeBSD 3.x's
2475 traditonal string branding within the ELF header.
2476
2477 2002-07-04 Daniel Jacobowitz <drow@mvista.com>
2478
2479 * symtab.c (remove_params): New function.
2480 (make_symbol_overload_list): Use it instead of cplus_demangle.
2481 (overload_list_add_symbol): Likewise. Reorder. Fix memory leak.
2482
2483 2002-07-04 Mark Kettenis <kettenis@gnu.org>
2484
2485 * i386obsd-nat.c (_initialize_i386obsd_nat): Fix typo in prototype.
2486
2487 * i386bsd-tdep.c (i386nbsd_sigtramp_start, i386nbsd_sigtramp_end):
2488 New variables.
2489 (i386nbsd_init_abi): Use these to initialize tdep->sigtramp_start
2490 and tdep->sigtramp_end.
2491 * i386obsd-nat.c: New file.
2492 * config/i386/obsd.mh (NATDEPFILES): Add i386obsd-nat.o.
2493
2494 * dwarf2cfi.c (cfi_pop_frame): Use alloca() for regbuf.
2495 Don't call get_current_frame().
2496
2497 2002-07-04 Pierre Muller <muller@ics.u-strasbg.fr>
2498
2499 * i386-nat.c (child_post_startup_inferior): New function
2500 calling i386_cleanup_dregs if
2501 I386_USE_GENERIC_WATCHPOINTS is defined.
2502 * config/i386/nm-i386.h: define CHILD_POST_STARTUP_INFERIOR
2503 conditional to acknowledge that i386-nat.c has its
2504 own child_post_startup_inferior function.
2505
2506 2002-07-04 Mark Kettenis <kettenis@gnu.org>
2507
2508 * i386-tdep.h (I386_MAX_REGISTER_SIZE): New define.
2509 * i386-tdep.c (i386_do_pop_frame): Use I386_MAX_REGISTER_SIZE
2510 instead of MAX_REGISTER_RAW_SIZE.
2511 (i386_extract_return_value, i386_extract_struct_value_address):
2512 Convert to use regcache.
2513 (i386_gdbarch_init): Set max_register_raw_size and
2514 max_register_virtual_size to I386_MAX_REGISTER_SIZE.
2515 Set extract_return_value and extract_struct_value_address instead
2516 of their deprecated variants.
2517
2518 Convert i386 target to generic dummy frames.
2519 * i386-tdep.c: Include "symfile.h".
2520 (i386_frameless_signal_p): Consider a function to be frameless if
2521 the pc points at the first instruction of the function.
2522 (i386_frame_chain): Handle (generic) call dummies.
2523 (i386_frame_saved_pc): Likewise.
2524 (i386_frame_init_saved_regs): Remove code dealing with call
2525 dummies on the stack.
2526 (i386_push_dummy_frame): Removed.
2527 (i386_call_dummy_words): Removed.
2528 (i386_fix_call_dummy): Removed.
2529 (i386_push_return_address): New function.
2530 (i386_do_pop_frame): Renamed from i386_pop_frame. Add FRAME
2531 parameter, and don't call get_current_frame.
2532 (i386_pop_frame): New function.
2533 (i386_gdbarch_init): Set use_generic_dummy_frames to 1, set
2534 call_dummy_location to AT_ENTRY_POINT, set call_dummy_address to
2535 entry_point_address, set call_dummy_breakpoint_offset to 0, set
2536 call_dummy_length to 0, set call_dummy_words to NULL, set
2537 sizeof_call_dummy_words to 0, set fix_call_dummy to
2538 generic_fix_call_dummy, set pc_in_call_dummy to
2539 pc_in_call_dummy_at_entry_point, set push_dummy_frame to
2540 generic_push_dummy_frame, set push_return_address to
2541 i386_push_return_address and set frame_chain_valid to
2542 generic_file_frame_chain_valid.
2543
2544 2002-07-03 Andrew Cagney <ac131313@redhat.com>
2545
2546 * gdbarch.sh (struct regcache): Add opaque declaration.
2547 (EXTRACT_RETURN_VALUE): New architecture method.
2548 (EXTRACT_STRUCT_VALUE_ADDRESS): Ditto.
2549 * gdbarch.h, gdbarch.c: Regenerate.
2550 * arch-utils.c (legacy_extract_return_value): New function.
2551 * arch-utils.h (legacy_extract_return_value): Declare.
2552 * values.c (value_being_returned): Re-enable code handling
2553 EXTRACT_STRUCT_VALUE_ADDRESS. Move
2554 deprecated_grub_regcache_for_registers call to block handling
2555 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
2556 (EXTRACT_RETURN_VALUE): Do not define.
2557
2558 2002-07-03 Grace Sainsbury <graces@redhat.com>
2559
2560 * config/mcore/tm-mcore.h (REGISTER_BYTES, NUM_REGS, PC_REGNUM)
2561 (SP_REGNUM, FP_REGNUM, FUNCTION_START_OFFSET, DECR_PC_AFTER_BREAK)
2562 (BREAKPOINT_FROM_PC, INNER_THAN, SAVED_PC_AFTER_CALL)
2563 (INIT_EXTRA_FRAME_INFO, FRAME_INIT_SAVED_REGS, INIT_FRAME_PC)
2564 (FRAME_CHAIN, FRAME_CHAIN_VALID, FRAME_SAVED_PC)
2565 (STORE_RETURN_VALUE, DEPRECATED_EXTRACT_RETURN_VALUE)
2566 (STORE_STRUCT_RETURN, DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS)
2567 (SKIP_PROLOGUE, FRAME_ARGS_SKIP, FRAME_ARGS_ADDRESS)
2568 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, POP_FRAME)
2569 (PUSH_RETURN_ADDRESS, PUSH_DUMMY_FRAME, PUSH_ARGUMENTS): Remove.
2570 * mcore-tdep.c (mcore_init_extra_frame_info): Add fromleaf
2571 argument so the function fits the prototype in the architecture
2572 vector.
2573 (mcore_pop_frame): Remove argument so the function fits the
2574 prototype. Use get_current_frame instead of the argument.
2575 (mcore_push_arguments): Change type of struct_return so the
2576 function can be used in the architecture vector.
2577 (mcore_store_struct_return): Add.
2578 (mcore_frame_init_saved_regs): Add.
2579 (mcore_gdbarch_init): Add function calls to replace the macros
2580 removed from tm-mcore.h
2581
2582 2002-07-03 Andrew Cagney <ac131313@redhat.com>
2583
2584 * infcmd.c (print_return_value): Remove compatibility code calling
2585 deprecated_grub_regcache_for_registers.
2586
2587 * values.c: Include "regcache.h".
2588 (value_being_returned): Update. Use
2589 deprecated_grub_regcache_for_registers to extract the register
2590 buffer address.
2591 * value.h (value_being_returned): Change ``retbuf'' parameter to a
2592 ``struct regcache''.
2593 * Makefile.in (values.o): Add dependency on $(regcache_h).
2594
2595 * inferior.h (run_stack_dummy): Change type of second parameter to
2596 a ``struct regcache''.
2597 * valops.c (hand_function_call): Change type of retbuf to ``struct
2598 regcache''. Allocate using regcache_xmalloc, clean using
2599 make_cleanup_regcache_xfree.
2600 * infcmd.c (run_stack_dummy): Update. Use
2601 regcache_cpu_no_passthrough instead of memcpy to copy the buffer.
2602
2603 * regcache.c (do_regcache_xfree): New function.
2604 (make_cleanup_regcache_xfree): New function.
2605 * regcache.h (make_cleanup_regcache_xfree): Declare.
2606
2607 2002-07-03 Martin M. Hunt <hunt@redhat.com>
2608
2609 * event-top.c (command_line_handler): Don't read past
2610 beginning of buffer.
2611
2612 2002-07-03 Martin M. Hunt <hunt@redhat.com>
2613
2614 * varobj.c (struct varobj_root): Change frame from CORE_ADDR to
2615 struct frame_id.
2616 (varobj_create): Store frame_id for root.
2617 (varobj_gen_name): Use xasprintf.
2618 (varobj_update): Save and restore frame using get_frame_id() and
2619 frame_find_by_id().
2620 (create_child): Use xasprintf.
2621 (new_root_variable): Initialize frame_id.
2622 (c_name_of_child): Use xasprintf. Call find_frame_by_id().
2623 (c_value_of_variable): Use xasprintf. Move mem_fileopen call
2624 to prevent memory leak.
2625
2626 2002-07-03 Andrew Cagney <ac131313@redhat.com>
2627
2628 * valops.c (hand_function_call): Move declaration of retbuf to
2629 start of function, allocate using malloc, add a cleanup but before
2630 the inf_status cleanup, cleanup the buffer. Rename local variable
2631 old_chain to inf_status_cleanup.
2632
2633 2002-07-03 Martin M. Hunt <hunt@redhat.com>
2634
2635 * top.c (execute_command): Use cmd_func() and cmd_func_p().
2636
2637 * cli/cli-decode.c (cmd_func_p): New function.
2638 (cmd_func): New function.
2639
2640 * command.h: Add cmd_func() and cmd_func_p().
2641
2642 2002-07-03 Grace Sainsbury <graces@redhat.com>
2643
2644 * config/mcore/tm-mcore.h (GDB_MULTI_ARCH): Add macro. Set to 0.
2645 (REGISTER_SIZE): Remove.
2646 (MAX_REGISTER_RAW_SIZE): Remove.
2647 (REGISTER_VIRTUAL_TYPE): Remove.
2648 (MAX_REGISTER_VIRTUAL_SIZE): Remove.
2649 (REGISTER_NAME): Remove.
2650 (USE_GENERIC_DUMMY_FRAMES): Remove.
2651 (CALL_DUMMY): Remove.
2652 (CALL_DUMMY_START_OFFSET): Remove.
2653 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
2654 (CALL_DUMMY_LOCATION): Remove.
2655 (FIX_CALL_DUMMY): Remove.
2656 (CALL_DUMMY_ADDRESS): Remove.
2657 (SIZEOF_CALL_DUMMY_WORDS): Remove.
2658 (SAVE_DUMMY_FRAME_TOS): Remove.
2659 * mcore-tdep.c (MCORE_REG_SIZE, MCORE_NUM_REGS): Add macros.
2660 (mcore_register_virtual_type): New function.
2661 (mcore_register_byte): New function.
2662 (mcore_register_size): New function.
2663 (mcore_register_name): New function.
2664 (mcore_gdbarch_init): New function. Add set_gdbarch calls for
2665 macros removed from tm-mcore.h.
2666 (mcore_dump_tdep): Add.
2667 (_initialize_mcore_tdep): Add gdbarch_register call.
2668
2669 2002-07-03 Mark Kettenis <kettenis@gnu.org>
2670
2671 * i386-tdep.c (i386_frameless_signal_p): Provide an argument in to
2672 frameless_look_for_prologue, such that we actually call this
2673 function.
2674
2675 2002-07-02 Joel Brobecker <brobecker@gnat.com>
2676
2677 * frame.h (frame_address_in_block): New function.
2678
2679 * blockframe.c (frame_address_in_block): New function extracted
2680 from get_frame_block().
2681 (get_frame_block): Use frame_address_in_block().
2682 (block_innermost_frame): Use frame_address_in_block() to match
2683 the frame pc address against the block boundaries rather than
2684 the frame pc directly. This prevents a failure when a frame pc
2685 is actually a return-address pointing immediately after the end
2686 of the given block.
2687
2688 2002-07-02 Grace Sainsbury <graces@redhat.com>
2689
2690 * MAINTAINERS: Add self under write after approval.
2691
2692 2002-07-02 Grace Sainsbury <graces@redhat.com>
2693
2694 * m68k-tdep.c (m68k_remote_breakpoint_from_pc): Add. Currently not
2695 used in architecture vector. The default is
2696 m68k_local_breakpoint_from_pc.
2697 (m68k_local_breakpoint_from_pc): Add.
2698 (enum): Add register numbers from tm-m68k.h.
2699 (m68k_gdbarch_init): Add breakpoint_from_pc to architecture
2700 vector.
2701 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Set to
2702 GDB_MULTI_ARCH_PARTIAL.
2703 (BPT_VECTOR, REGISTER_BYTES_FP, REGISTER_BYTES_NOFP)
2704 (NUM_FREGS, SIG_PC_FP_OFFSET, SP_ARG0, REMOTE_BPT_VECTOR): Move to
2705 m68k-tdep.c.
2706 (BREAKPOINT, REMOTE_BREAKPOINT): Remove.
2707 (A1_REGNUM, FP0_REGNUM, FPC_REGNUM, FPS_REGNUM, FPI_REGNUM): Move
2708 to enum in m68k-tdep.c
2709
2710 2002-07-02 Joel Brobecker <brobecker@gnat.com>
2711
2712 * solib-osf.c (open_map): Compute the list of shared libraries
2713 loaded by the inferior, rather than the list of libraries loaded
2714 by GDB itself. Otherwise, GDB ends up reading the symbols from
2715 the wrong shared libraries...
2716
2717 2002-07-02 Mark Kettenis <kettenis@gnu.org>
2718
2719 * i386-linux-tdep.c (i386_linux_sigcontext_addr): Make static.
2720 (LINUX_SIGCONTEXT_PC_OFFSET, LINUX_SIGCONEXT_SP_OFFSET): Remove
2721 macros.
2722 (i386_linux_sigtramp_saved_pc, i386_linux_sigtramp_saved_sp):
2723 Remove functions.
2724 (FRAMELESS_SIGNAL): Remove function.
2725 (i386_linux_frame_chain, i386_linux_frame_saved_pc,
2726 i386_linux_saved_pc_after_call): Removed.
2727 (i386_linux_init_abi): Initialize tdep->sigcontext_addr,
2728 tdep->sc_pc_offset and tdep->sc_sp_offset. Don't override
2729 frame_chain, frame_saved_pc and saved_pc_after_call any longer.
2730
2731 * i386-tdep.c (i386_frameless_signal_p): New function.
2732 (i386_frame_chain): Deal with frameless signals.
2733 (i386_sigtramp_saved_sp): New function.
2734 (i386_frame_saved_pc): Deal with frameless signals.
2735 (i386_saved_pc_after_call): Make sure the correct value is
2736 returned just after entry into a sigtramp.
2737 * i386bsd-tdep.c (i386bsd_sc_sp_offset, i386nbsd_sc_sp_offset,
2738 i386fbsd4_sc_sp_offset): New variables.
2739 (i386bsd_init_abi, i386nbsd_init_abi, i386fbsd4_init_abi): Use
2740 these variables to initialize tdep->sc_sp_offset. * i386bsd-nat.c
2741 (_initialize_i386bsd_nat): Add sanity check for sc_sp_offset
2742 similiar to what we already did for sc_pc_offset.
2743 * i386-sol2-tdep.c (i386_sol2_init_abi): Initialize
2744 tdep->sc_sp_offset.
2745
2746 * i386nbsd-tdep.c (fetch_elfcore_registers): Wrap long line.
2747
2748 2002-07-02 Michal Ludvig <mludvig@suse.cz>
2749
2750 * config/i386/tm-x86-64linux.h: New.
2751 * config/i386/x86-64linux.mt: Add GDB_MULTI_ARCH and TM_FILE
2752 definitions.
2753 * config/i386/nm-x86-64.h: Rename to ...
2754 * config/i386/nm-x86-64linux.h: ... this one.
2755 * config/i386/x86-64linux.mh: Reflect the above change.
2756
2757 2002-07-01 Mark Kettenis <kettenis@gnu.org>
2758
2759 * i386-tdep.h (struct gdbarch_tdep): Replace sigtramp_saved_pc
2760 with sigcontext_addr. Add sc_sp_offset.
2761 (i386bsd_sigtramp_saved_pc): Remove prototype.
2762 (i386bsd_sicontext_addr): Add prototype.
2763 * i386-tdep.c (i386_sigtramp_saved_pc): New function.
2764 (i386_frame_saved_pc): Rewrite to call i386_sigtramp_saved_pc.
2765 (i386_svr4_sigtramp_saved_pc): Removed.
2766 (i386_svr4_sigcontext_addr): New function.
2767 (i386_svr4_init_abi): Don't initialize tdep->sigtramp_saved_pc.
2768 Initialize tdep->sigcontext_addr instead. Initialize
2769 tdep->sc_pc_offset and tdep->sc_sp_offset.
2770 (i386_gdbarch_init): Likewise.
2771 * i386bsd-tdep.c (i386bsd_sigcontext_addr): Don't make it static
2772 any more.
2773 (i386bsd_sigtramp_saved_pc): Remove function.
2774 (i386bsd_init_abi): Don't initialize tdep->sigtramp_saved_pc.
2775 Initialize tdep->sigcontext_addr instead. Initialize
2776 tdep->sc_pc_offset.
2777 * i386-linux-tdep.c (i386_linux_init_abi): Remove initialization
2778 of tdep->sigtramp_saved_pc.
2779 * i386-sol2-tdep.c (i386_sol2_init_abi): Don't initialize
2780 tdep->sigtramp_saved_pc. Initialize tdep->sigcontext_addr
2781 instead.
2782
2783 * i386-tdep.c (i386_frameless_function_invocation,
2784 i386_frame_num_args, i386_frame_init_saved_regs,
2785 i386_skip_prologue, i386_push_dummy_frame, i386_fix_call_dummy,
2786 i386_pop_frame, i386_push_arguments, i386_store_struct_return,
2787 i386_extract_return_value, i386_store_return_value,
2788 i386_extract_struct_value_address, i386_register_virtual_type,
2789 i386_register_convertible, i386_register_convert_to_virtual,
2790 i386_register_convert_to_raw, i386_svr4_sigtramp_saved_pc,
2791 i386_go32_init_abi, i386_nw_init_abi, i386_gdbarch_init): Make
2792 static.
2793
2794 2002-07-01 Mark Kettenis <kettenis@gnu.org>
2795
2796 * i386bsd-tdep.c (i386bsd_frame_saved_pc): Removed.
2797
2798 * config/i386/tm-i386sol2.h (COERCE_FLOAT_TO_DOUBLE): Removed.
2799 * i386-sol2-tdep.c (i386_sol2_init_abi): Adjust for the removal of
2800 this macro. Include "value.h".
2801
2802 2002-06-30 Aidan Skinner <aidan@velvet.net>
2803
2804 * ada-exp.tab.c: remove as it's a generated file
2805 * ada-lex.c: remove as it's a generated file
2806
2807 2002-06-30 Mark Kettenis <kettenis@gnu.org>
2808
2809 * config/i386/tm-i386.h (struct frame_info, struct
2810 frame_saved_regs, struct value, struct type): Remove forward
2811 declarations.
2812
2813 * config/i386/tm-linux.h [HAVE_PTRACE_GETFPXREGS]
2814 (FILL_FPXREGSET, HAVE_SSE_REGS): Remove define.
2815 * config/i386/nm-linux.h [HAVE_PTRACE_GETFPXREGS]
2816 (FILL_FPXREGSET): Define.
2817
2818 * config/i386/tm-nbsd.h (HAVE_SSE_REGS): Remove define.
2819
2820 * configure.tgt (i[3456]86-*-openbsd*): Fold into
2821 i[3456]86-*-netbsd* case.
2822 * config/i386/tm-obsd.h: Removed.
2823 * config/i386/obsd.mt: Removed.
2824 * config/i386/obsd.mh (NATDEPFILES): Remove corelow.o and
2825 core-aout.o.
2826 (MH_CFLAGS): Add -DYYDEBUG=0.
2827
2828 * i386bsd-nat.c (_initialize_i386bsd_nat): Define SC_PC_OFFSET to
2829 i386nbsd_sc_pc_offset on OpenBSD too.
2830
2831 * config/i386/tm-fbsd.h [!SVR4_SHARED_LIBS]
2832 (IN_SOLIB_CALL_TRAMPOLINE): Remove define.
2833 * config/i386/tm-nbsdaout.h (IN_SOLIB_CALL_TRAMPOLINE): Remove
2834 define.
2835 * i386bsd-tdep.c: Include "arch-utils.h".
2836 (i386bsd_aout_in_solib_call_trampoline): New function.
2837 (i386bsd_init_abi): Set in_solib_call_trampoline to
2838 i386bsd_aout_in_solib_call_trampoline.
2839 (i386nbsdelf_init_abi, i386fbsd_init_abi): Set
2840 in_solib_call_trampoline to generic_in_solib_call_trampoline.
2841
2842 2002-06-28 Andrew Cagney <ac131313@redhat.com>
2843
2844 * macrotab.h: Do not include "obstack.h" or "bcache.h".
2845 (struct obstack, struct bcache): Add opaque declarations.
2846 * Makefile.in (macrotab_h): Update
2847
2848 2002-06-28 Andrew Cagney <ac131313@redhat.com>
2849
2850 * blockframe.c (generic_find_dummy_frame): Change return type to
2851 ``struct regcache''.
2852 (struct dummy_frame): Replace field ``registers'' with regcache, a
2853 struct regcache object.
2854 (generic_find_dummy_frame): Update.
2855 (generic_push_dummy_frame): Update. Use regcache_xfree,
2856 regcache_xmalloc and regcache_cpy.
2857 (generic_pop_dummy_frame): Update. Use regcache_cpy and
2858 regcache_xfree.
2859 (deprecated_generic_find_dummy_frame): Update.
2860 (generic_read_register_dummy): Update. Use
2861 regcache_read_as_address.
2862 (generic_call_dummy_register_unwind): Update. Use regcache_read.
2863 (generic_get_saved_register): Update. Use regcache_read.
2864
2865 2002-06-28 Andrew Cagney <ac131313@redhat.com>
2866
2867 * Makefile.in (objfiles_h): Add $(bcache_h).
2868 * objfiles.h: Include "bcache.h".
2869
2870 * Makefile.in (symtab_h): Remove $(bcache_h).
2871 * symtab.h: Do not include "bcache.h".
2872
2873 2002-06-28 Andrew Cagney <ac131313@redhat.com>
2874
2875 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Set frame_chain_valid to
2876 generic_func_frame_chain_valid.
2877
2878 2002-06-28 David O'Brien <obrien@FreeBSD.org>
2879
2880 * config/i386/nm-fbsd.h: Include <sys/param.h>.
2881 * config/i386/tm-fbsd.h: Likewise.
2882
2883 2002-06-28 Andrew Cagney <ac131313@redhat.com>
2884
2885 * rs6000-tdep.c (rs6000_gdbarch_init): Use
2886 generic_unwind_get_saved_register.
2887
2888 2002-06-27 Andrew Cagney <ac131313@redhat.com>
2889
2890 From 2002-06-27 John David Anglin <dave@hiauly1.hia.nrc.ca>:
2891 * regcache.c (supply_register): Add missing argument to
2892 register_buffer call.
2893
2894 2002-06-27 Andrew Cagney <ac131313@redhat.com>
2895
2896 * Makefile.in (init.c): Drop -e option to grep. Not necessary and
2897 Solaris /bin/grep does not not like it. From Peter Schauer.
2898
2899 2002-06-26 Tom Tromey <tromey@redhat.com>
2900
2901 * command.h (add_setshow_cmd): Declare.
2902 (add_setshow_cmd_full): Declare.
2903 * cli/cli-decode.c (add_setshow_cmd): No longer static. Now
2904 returns void. Use add_setshow_cmd_full.
2905 (add_setshow_cmd_full): New function.
2906 (add_setshow_auto_boolean_cmd): Use add_setshow_cmd_full.
2907 (add_setshow_boolean_cmd): Likewise.
2908
2909 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
2910
2911 * config/vax/tm-vax.h: Protect from multiple inclusion.
2912 (TARGET_UPAGES, TARGET_NBPG, STACK_END_ADDR)
2913 (SIGTRAMP_START, SIGTRAMP_END, SIGCONTEXT_PC_OFFSET): Move to...
2914 * config/vax/tm-vaxbsd.h: ...here. New file.
2915 * config/vax/vax.mt (TM_FILE): Set to tm-vaxbsd.h.
2916
2917 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
2918
2919 * config/vax/tm-vax.h (BREAKPOINT): Remove.
2920 (BELIEVE_PCC_PROMOTION): Remove.
2921 (AP_REGNUM): Move to...
2922 * config/vax/nm-vax.h: ...here.
2923 * vax-tdep.c: Use VAX_AP_REGNUM instead of AP_REGNUM.
2924 (vax_breakpoint_from_pc): New function.
2925 (vax_gdbarch_init): Initialize gdbarch_breakpoint_from_pc
2926 and gdbarch_believe_pcc_promotion.
2927
2928 2002-06-26 Jason Thorpe <thorpej@wasabisystems.com>
2929
2930 * Makefile.in (vax_tdep_h): Define.
2931 (vax-tdep.o): Use $(vax_tdep_h).
2932 * vax-tdep.c (vax_gdbarch_init): Use generic OS ABI framework.
2933 (vax_dump_tdep): New function.
2934 (_initialize_vax_tdep): Register vax_dump_tdep.
2935 * vax-tdep.h: Include osabi.h.
2936 (struct gdbarch_tdep): New.
2937
2938 2002-06-26 Andrew Cagney <cagney@redhat.com>
2939
2940 * frame.h (deprecated_generic_find_dummy_frame): Rename
2941 generic_find_dummy_frame.
2942 * blockframe.c (generic_find_dummy_frame): Make static.
2943 (deprecated_generic_find_dummy_frame): New function.
2944 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Replace
2945 generic_find_dummy_frame with deprecated_find_dummy_frame.
2946 (sh64_nofp_frame_init_saved_regs): Ditto.
2947 (sh_fp_frame_init_saved_regs): Ditto.
2948 * s390-tdep.c (s390_frame_saved_pc_nofix): Ditto.
2949 (s390_frame_chain): Ditto.
2950 * cris-tdep.c (cris_frame_init_saved_regs): Ditto.
2951
2952 2002-06-26 Grace Sainsbury <graces@redhat.com>
2953
2954 * config/m68k/tm-m68k.h: Rearrange code so macros not in the
2955 gdbarch vector are at the top.
2956 (NUM_REGS): Remove.
2957 (FP_REGNUM, SP_REGNUM, PS_REGNUM, PC_REGNUM, FP0_REGNUM): Remove.
2958 (FRAME_ARGS_ADDRESS): Remove.
2959 (FRAME_LOCALS_ADDRESS): Remove.
2960 (FRAME_NUM_ARGS): Remove.
2961 (FRAME_ARGS_SKIP): Remove.
2962 * m68k-tdep.c (enum): Add eumeration of special register numbers.
2963 (m68k_gdbarch_init): Add gdbarch initializations for macros
2964 undefined in tm-m68k.h
2965
2966 2002-06-26 Grace Sainsbury <graces@redhat.com>
2967
2968 * monitor.h: Add the function regname to monitor_ops
2969 structure. This way NUM_REGS does not have to be a constant.
2970 * monitor.c (monitor_fetch_register): Added support for regname
2971 function. The function is called if the array regnames is NULL.
2972 (monitor_store_register): Same.
2973 * cpu32bug-rom.c (cpu32bug_regname): Add function. Replaces
2974 regnames array.
2975 (init_cpu32bug_cmds): set cpu32bug_cmds.regnames to NULL,
2976 cpu32bug_cmds.regname to point to new function.
2977 * abug-rom.c (abug_regname): Same as above.
2978 (init_abug_cmds): Same.
2979 * dbug-rom.c (dbug_regname): Same as above.
2980 (init_dbug_cmds): Same.
2981 * remote-est.c (est_regname): Same.
2982 (init_est_cmds): Same.
2983 * rom68k-rom.c (rom68k_regname): Same.
2984 (init_rom68k_cmds): Same.
2985
2986 2002-06-25 Tom Tromey <tromey@redhat.com>
2987
2988 * breakpoint.c (delete_command): Don't repeat `delete' commands.
2989
2990 2002-06-25 Andrew Cagney <cagney@redhat.com>
2991
2992 * infrun.c (stop_registers): Change variable's type to ``struct
2993 regcache'''.
2994 (xmalloc_inferior_status): Delete function.
2995 (free_inferior_status): Delete function.
2996 (normal_stop): Use regcache_cpy.
2997 (struct inferior_status): Change type of fields ``stop_registers''
2998 and ``registers'' to ``struct regcache''.
2999 (write_inferior_status_register): Use regcache_write.
3000 (save_inferior_status): Instead of calling
3001 xmalloc_inferior_status, allocate the inf_status buffer directly.
3002 Use regcache_dup_no_passthrough and regcache_dup to save the
3003 buffers.
3004 (restore_inferior_status): Use regcache_xfree and regcache_cpy.
3005 Replace the stop_registers regcache instead of overriding it. Use
3006 regcache_xfree. Instead of calling free_inferior_status, xfree
3007 the buffer directly.
3008 (discard_inferior_status): Use regcache_xfree. Instead of calling
3009 free_inferior_status, xfree the buffer directly.
3010 (build_infrun): Use regcache_xmalloc.
3011 (_initialize_infrun): Delete redundant call to build_infrun.
3012
3013 * Makefile.in (infcmd.o): Add $(regcache_h).
3014
3015 * infcmd.c: Include "regcache.h".
3016 (run_stack_dummy): Use deprecated_grub_regcache_for_registers to
3017 obtain the address of `stop_registers' register buffer.
3018 (print_return_value): Ditto.
3019
3020 * inferior.h (struct regcache): Add opaque declaration.
3021 (stop_registers): Change variable's declared type to ``struct
3022 regcache''.
3023
3024 2002-06-24 Tom Tromey <tromey@redhat.com>
3025
3026 * cli/cli-decode.c (add_show_from_set): Fixed typo in comment.
3027 * target.c (initialize_targets): Fixed typo in
3028 trust-readonly-sections `show' documentation.
3029
3030 * main.c: Marked all strings with _().
3031
3032 2002-06-24 Don Howard <dhoward@redhat.com>
3033
3034 * memattr.c (create_mem_region): Treat hi == 0 as a special case
3035 that means max CORE_ADDR+1.
3036 (lookup_mem_region): Ditto.
3037 (mem_info_command): Ditto.
3038
3039 2002-06-24 Grace Sainsbury <graces@redhat.com>
3040
3041 * config/m68k/tm-m68k.h (DECR_PC_AFTER_BREAK): Remove.
3042 (REGISTER_BYTES_OK): Remove.
3043 (REGISTER_BYTES): Remove.
3044 (STORE_STRUCT_RETURN): Remove.
3045 (DEPRECATED_EXTRACT_RETURN_VALUE): Remove.
3046 (STORE_RETURN_VALUE): Remove.
3047 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Remove.
3048 (FRAME_CHAIN): Remove.
3049 (FRAMELESS_FUNCTION_INVOCATION): Remove.
3050 (FRAME_SAVED_PC): Remove.
3051 * m68k-tdep.c (m68k_register_bytes_ok):Add.
3052 (m68k_store_struct_return): Add.
3053 (m68k_deprecated_extract_return_value): Add.
3054 (m68k_deprecated_extract_struct_value_address): Add.
3055 (m68k_store_return_value): Add.
3056 (m68k_frame_chain): Add.
3057 (m68k_frameless_function_invocation): Add.
3058 (m68k_frame_saved_pc): Add.
3059 (m68k_gdbarch_init): added set_gdbarch calls for new
3060 functions and deleted macros.
3061
3062 2002-06-23 Tom Tromey <tromey@redhat.com>
3063
3064 * Makefile.in (HFILES_NO_SRCDIR): Remove old files.
3065 (ALLDEPFILES): Likewise.
3066 (udiheaders): Removed.
3067 (udip2soc.o): Likewise.
3068 (udi2go32.o): Likewise.
3069 (udr.o): Likewise.
3070 (HFILES_WITH_SRCDIR): Don't mention udiheaders.
3071
3072 2002-06-22 Andrew Cagney <ac131313@redhat.com>
3073
3074 * infrun.c (_initialize_infrun): Delete unnecessary call to
3075 build_infrun.
3076
3077 * regcache.h: Update comments describing the regcache_cpy family
3078 of functions.
3079 (regcache_save, regcache_restore): Delete declaration.
3080 (regcache_save_no_passthrough): Delete declaration.
3081 (regcache_restore_no_passthrough): Delete declaration.
3082 * regcache.c (regcache_save): Delete function.
3083 (regcache_save_no_passthrough): Delete function.
3084 (regcache_restore): Delete function.
3085 (regcache_restore_no_passthrough): Delete function.
3086
3087 2002-06-21 Andrew Cagney <ac131313@redhat.com>
3088
3089 * config/m68k/tm-m68k.h: Fix typo.
3090 (FRAME_INIT_SAVED_REGS): Define when non-multi-arch.
3091 (m68k_frame_init_saved_regs): Declare.
3092
3093 2002-06-21 Jim Blandy <jimb@redhat.com>
3094
3095 Remove some vestiges of Harris 88k support.
3096 * dwarf2read.c (decode_locdesc): Remove `#if' block for Harris 88k
3097 register numbering quirk.
3098 * elfread.c (elf_symtab_read): Remove `#if' block for skipping
3099 odd symbols occurring in Harris 88k ELF targets.
3100
3101 2002-06-21 Tom Tromey <tromey@redhat.com>
3102
3103 * gdb_locale.h: New file.
3104 * Makefile.in (GDB_CFLAGS): Define LOCALEDIR.
3105 (defs_h): Added gdb_locale.h.
3106 * configure, config.in: Rebuilt.
3107 * configure.in (PACKAGE): Define.
3108 * defs.h: Include gdb_locale.h.
3109 * main.c (captured_main): Call setlocale, bindtextdomain,
3110 textdomain.
3111
3112 2002-06-21 Dave Brolley <brolley@redhat.com>
3113
3114 From Stan Shebs, Jim Blandy, Mark Salter, Kevin Buettner:
3115 * config/frv/frv.mt: New file.
3116 * config/frv/tm-frv.h: New file.
3117 * configure.tgt: Support frv-*-*.
3118 * Makefile.in (frv-tdep.o): New target.
3119 * frv-tdep.c: New file.
3120 * NEWS: Mention frv.
3121
3122 2002-06-21 Dave Brolley <brolley@redhat.com>
3123
3124 * MAINTAINERS: Add self to "Write After Approval" list.
3125
3126 2002-06-21 Grace Sainsbury <graces@redhat.com>
3127
3128 * config/m68k/tm-m68k.h (REGISTER_BYTE, REGISTER_RAW_SIZE)
3129 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
3130 (REGISTER_VIRTUAL_TYPE, REGISTER_NAMES, TARGET_LONG_DOUBLE_FORMAT)
3131 (FUNCTION_START_OFFSET, SKIP_PROLOGUE, SAVED_PC_AFTER_CALL)
3132 (INNER_THAN, STACK_ALIGN, REGISTER_SIZE): Remove macros.
3133
3134 * m68k-tdep.c: Include arch-utils.h
3135 (m68k_register_raw_size): Add.
3136 (m68k_register_virtual_size): Add.
3137 (m68k_register_virtual_type): Add.
3138 (m68k_register_name): Add.
3139 (m68k_stack_align): Add.
3140 (m68k_register_byte): Add.
3141 (m68k_gdbarch_init): Add set_gdbarch calls for macros removed in
3142 tm-m68k.h.
3143
3144 2002-06-21 Grace Sainsbury <graces@redhat.com>
3145
3146 * m68k-tdep.c (m68k_frame_init_saved_regs): Replace
3147 m68k_find_saved_regs.
3148 (m68k_pop_frame): Removed saved_regs structure, and replaced
3149 references to it with frame->saved_regs.
3150 (m68k_gdbarch_init): Added function calls to initialize the
3151 gdbarch structure.
3152 (m68k_fix_call_dummy): Add.
3153 * config/m68k/tm-m68k.h: (FRAME_FIND_SAVED_REGS): Remove.
3154 (CALL_DUMMY): Remove.
3155 (CALL_DUMMY_LENGTH): Remove.
3156 (CALL_DUMMY_START_OFFSET): Remove.
3157 (CALL_DUMMY_BREAKPOINT_OFFSET): Remove.
3158 (FIX_CALL_DUMMY): Remove.
3159 (PUSH_DUMMY_FRAME): Remove.
3160 (POP_FRAME): Remove.
3161
3162 2002-06-19 Pierre Muller <muller@ics.u-strasbg.fr>
3163
3164 * parse.c (parse_fprintf): New function used to avoid calls to
3165 fprintf in bison parser generated debug code.
3166 * parser-defs.h: Declaration of new parse_fprintf function.
3167 * ada-exp.y, c-exp.y, f-exp.y, jv-exp.y, m2-exp.y, p-exp.y:
3168 Set YYDEBUG to 1 by default.
3169 Set YYFPRINTF as parse_fprintf.
3170
3171 2002-06-21 Michal Ludvig <mludvig@suse.cz>
3172
3173 * dwarf2cfi.c (read_encoded_pointer): Don't handle pointer
3174 encoding anymore.
3175 (pointer_encoding, enum ptr_encoding): New.
3176 (execute_cfa_program): Take care about pointer encoding.
3177 (dwarf2_build_frame_info): Only call parse_frame_info for
3178 .debug_frame and .eh_frame.
3179 (parse_frame_info): New, derived from former dwarf2_build_frame_info.
3180 fixed augmentation handling, added relative addressing,
3181 ignore duplicate FDEs. Added comments.
3182 * dwarf2cfi.c: Reindented.
3183
3184 2002-06-20 Elena Zannoni <ezannoni@redhat.com>
3185
3186 * event-top.c (command_handler): Don't use space_at_cmd_start
3187 unless there is sbrk() on the host. Assign time and space data
3188 to union fields of the appropriate length.
3189
3190 2002-06-20 Michal Ludvig <mludvig@suse.cz>
3191
3192 * x86-64-tdep.c (x86_64_register_nr2name): Rename to
3193 x86_64_register_name. Return type changed to 'const char *'.
3194 (x86_64_register_name2nr): Rename to x86_64_register_number.
3195 (x86_64_gdbarch_init): Update to reflect the change.
3196 * x86-64-tdep.h: Ditto.
3197 * x86-64-linux-nat.c (x86_64_fxsave_offset)
3198 (supply_fpregset): Ditto.
3199
3200 2002-06-19 Andrew Cagney <cagney@redhat.com>
3201
3202 * regcache.h: Update copyright.
3203 (struct regcache, struct gdbarch): Add opaque declarations.
3204 (current_regcache): Declare global variable.
3205 (regcache_read, regcache_write): Add gdbarch parameter.
3206 (regcache_save, regcache_save_no_passthrough)
3207 (regcache_restore, regcache_restore_no_passthrough)
3208 (regcache_dup, regcache_dup_no_passthrough)
3209 (regcache_cpy, regcache_cpy_no_passthrough)
3210 (deprecated_grub_regcache_for_registers)
3211 (deprecated_grub_regcache_for_register_valid)
3212 (regcache_valid_p): Add function declarations.
3213
3214 * regcache.c: Update copyright.
3215 (regcache_descr_handle): New global variable.
3216 (struct regcache_descr): Define.
3217 (init_legacy_regcache_descr, init_regcache_descr): New functions.
3218 (regcache_descr, xfree_regcache_descr): New functions.
3219 (struct regcache): Define.
3220 (regcache_xmalloc, regcache_xfree): New functions.
3221 (regcache_cpy, regcache_cpy_no_passthrough): New functions.
3222 (regcache_dup, regcache_dup_no_passthrough): New functions.
3223 (regcache_valid_p, regcache_read_as_address): New functions.
3224 (deprecated_grub_regcache_for_registers): New function.
3225 (deprecated_grub_regcache_for_register_valid): New function.
3226 (current_regcache): New global variable.
3227 (register_buffer): Add regcache parameter. Update calls.
3228 (regcache_read, regcache_write): Add regcache parameter. Rewrite.
3229 (read_register_gen, write_register_gen): Update register_buffer
3230 call. Test for legacy_p instead of gdbarch_register_read_p or
3231 gdbarch_register_write_p.
3232 (regcache_collect): Update register_buffer call.
3233 (build_regcache): Rewrite. Use deprecated grub functions.
3234 (regcache_save, regcache_save_no_passthrough): New functions.
3235 (regcache_restore, regcache_restore_no_passthrough): New
3236 functions.
3237 (_initialize_regcache): Create the regcache_data_handle. Swap
3238 current_regcache global variable.
3239
3240 * sh-tdep.c (sh_pseudo_register_read): Add current_regcache
3241 parameter to regcache_read and regcache_write calls.
3242 (sh4_register_read): Ditto.
3243 (sh64_pseudo_register_read): Ditto.
3244 (sh64_register_read): Ditto.
3245 (sh_pseudo_register_write): Ditto.
3246 (sh4_register_write): Ditto.
3247 (sh64_pseudo_register_write): Ditto.
3248 (sh64_register_write): Ditto.
3249
3250 * defs.h (XCALLOC): Define.
3251
3252 2002-06-19 Grace Sainsbury <graces@redhat.com>
3253
3254 * config/m68k/tm-m68k.h (GDB_MULTI_ARCH): Added (set to 0).
3255 * m68k-tdep.c (m68k_gdbarch_init): Added.
3256 (m68k_dump_tdep): Added.
3257
3258 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
3259
3260 * ada-lang.c (fill_in_ada_prototype): Update comment.
3261
3262 2002-06-19 Daniel Jacobowitz <drow@mvista.com>
3263
3264 * mips-tdep.c (enum mips_abi): Explicitly start at 0. Add
3265 MIPS_ABI_LAST.
3266 (mips_abi_string, mips_abi_strings): New.
3267 (struct gdbarch_tdep): Remove mips_abi_string, add found_abi.
3268 (mips_gdbarch_init): Set tdep->found_abi. Don't set
3269 tdep->mips_abi_string. Honor mips_abi_string. Default to
3270 O32 if no ABI is found.
3271 (mips_dump_tdep): Use mips_abi_strings.
3272 (mips_abi_update): New function.
3273 (_initialize_mips_tdep): Initialize mips_abi_string. Add
3274 ``set mips abi'' and ``show mips abi''. Check the size of
3275 mips_abi_strings.
3276
3277 2002-06-19 Andrew Cagney <cagney@redhat.com>
3278
3279 * i386-linux-tdep.c (i386_linux_register_name): Make return type
3280 constant.
3281
3282 2002-06-18 Joel Brobecker <brobecker@gnat.com>
3283
3284 * alpha-tdep.c (heuristic_proc_desc): Compute the size of the
3285 current frame using only the first stack size adjustment. All
3286 subsequent size adjustments are not considered to be part of
3287 the "static" part of the current frame.
3288 Compute the address of the saved registers relative to the
3289 Frame Pointer ($fp) instead of the Stack Pointer if $fp is
3290 in use in this frame.
3291
3292 2002-06-18 Don Howard <dhoward@redhat.com>
3293
3294 * valops.c (value_ind): Use value_at_lazy() when dereferencing
3295 type int expressions. Thanks to Jim Blandy <jimb@redhat.com> for
3296 suggesting this solution.
3297
3298 2002-06-18 Andrew Cagney <ac131313@redhat.com>
3299
3300 * config/romp/xm-rtbsd.h: Delete file.
3301 * config/romp/rtbsd.mh: Delete file.
3302
3303 2002-06-18 Keith Seitz <keiths@redhat.com>
3304
3305 * breakpoint.c (condition_command): Post breakpoint_modify
3306 when a condition is added to an existing breakpoint.
3307 (commands_command): Likewise for commands.
3308 (set_ignore_count): Likewise for ignore counts.
3309 If no tty, do not simply return, still need to send event
3310 notification.
3311 (ignore_command): Only print a newline if the command came
3312 from a tty.
3313 Don't call breakpoints_changed, since this is now properly
3314 handled by set_ignore_count.
3315
3316 2002-06-18 Andrew Cagney <cagney@redhat.com>
3317
3318 * MAINTAINERS: Note that cris-elf target can be compiled with
3319 -Werror.
3320 * cris-tdep.c (cris_register_name): Make return type constant.
3321 (cris_breakpoint_from_pc): Ditto.
3322
3323 2002-06-18 Michal Ludvig <mludvig@suse.cz>
3324
3325 * frame.h (struct frame_info): Change type of context to
3326 'struct context'.
3327
3328 2002-06-17 Andrew Cagney <cagney@redhat.com>
3329
3330 * gdbarch.sh (REGISTER_NAME): Change return type a constant string
3331 pointer.
3332 * gdbarch.h, gdbarch.c: Regenerate.
3333 * config/mips/tm-mips.h (mips_register_name): Update.
3334 * i386-tdep.h (i386_register_name): Update.
3335 * mips-tdep.c (mips_register_name): Update
3336 * alpha-tdep.c (alpha_register_name): Update.
3337 * arch-utils.c (legacy_register_name): Update.
3338 * arch-utils.h (legacy_register_name): Update.
3339 * avr-tdep.c (avr_register_name): Update.
3340 * ia64-tdep.c (ia64_register_name): Update.
3341 * i386-tdep.c (i386_register_name): Update.
3342 * sparc-tdep.c (sparc32_register_name): Update.
3343 (sparc64_register_name): Update.
3344 (sparclite_register_name): Update.
3345 (sparclet_register_name): Update.
3346 * sh-tdep.c (sh_generic_register_name): Update.
3347 (sh_sh_register_name): Update.
3348 (sh_sh3_register_name): Update.
3349 (sh_sh3e_register_name): Update.
3350 (sh_sh_dsp_register_name): Update.
3351 (sh_sh3_dsp_register_name): Update.
3352 (sh_sh4_register_name): Update.
3353 (sh_sh64_register_name): Update.
3354 * s390-tdep.c (s390_register_name): Update.
3355 * rs6000-tdep.c (rs6000_register_name): Update.
3356 * ns32k-tdep.c (ns32k_register_name_32082): Update.
3357 (ns32k_register_name_32382): Update.
3358 * d10v-tdep.c (d10v_ts2_register_name): Update.
3359 (d10v_ts3_register_name): Update.
3360 * xstormy16-tdep.c (xstormy16_register_name): Update.
3361 * vax-tdep.c (vax_register_name): Update.
3362 * v850-tdep.c (v850_register_name): Update.
3363 * m68hc11-tdep.c (m68hc11_register_name): Update.
3364 * mn10300-tdep.c (mn10300_generic_register_name): Update.
3365 (am33_register_name): Update.
3366
3367 2002-06-17 Grace Sainsbury <graces@redhat.com>
3368
3369 * m68k-tdep.c: Reindented.
3370
3371 2002-06-17 Andrew Cagney <ac131313@redhat.com>
3372
3373 * gdb_indent.sh: Add prgregset_t, fpregset_t, and gregset_t to the
3374 list of predefined types.
3375
3376 2002-06-16 Mark Kettenis <kettenis@gnu.org>
3377
3378 * config/i386/tm-i386.h (REGISTER_VIRTUAL_TYPE,
3379 REGISTER_CONVERTIBLE, REGISTER_CONVERT_TO_VIRTUAL,
3380 REGISTER_CONVERT_TO_RAW): Remove defines.
3381 (i386_register_virtual_type, i386_register_convertible,
3382 i386_register_convert_to_virtual, i386_register_convert_to_raw):
3383 Remove prototypes.
3384 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
3385 macros mentioned above.
3386
3387 * config/i386/tm-i386lynx.h (SAVED_PC_AFTER_CALL): Remove define.
3388 (i386lynx_saved_pc_after_call): Remove prototype.
3389 * i386ly-tdep.c: Include "i386-tdep.h".
3390 (i386lynx_saved_pc_after_call): Make static. Use
3391 read_memory_nobpt instead of read_memory. Use
3392 read_memory_unsigned_integer instead of read_memory_integer.
3393 (i386lynx_init_abi): New function.
3394 (i386lynx_coff_osabi_sniffer): New function.
3395 (_initialize_i386bsd_tdep): New function.
3396
3397 * config/i386/tm-i386.h (PARM_BOUNDARY, CALL_DUMMY,
3398 CALL_DUMMY_LENGTH, CALL_DUMMY_START_OFFSET,
3399 CALL_DUMMY_BREAKPOINT_OFFSET, FIX_CALL_DUMMY): Remove defines.
3400 (i386_fix_call_dummy): Remove prototype.
3401 * i386-tdep.c (i386_call_dummy_words): New variable.
3402 (i386_gdbarch_init): Adjust for removal of the
3403 macros mentioned above.
3404
3405 2002-06-15 Andrew Cagney <ac131313@redhat.com>
3406
3407 * command.h (add_setshow_auto_boolean_cmd): Replace
3408 add_set_auto_boolean_cmd.
3409 * cli/cli-decode.c (add_setshow_auto_boolean_cmd): Replace
3410 add_set_auto_boolean_cmd.
3411 * cli/cli-decode.h (add_set_auto_boolean_cmd): Delete declaration.
3412 * mips-tdep.c (_initialize_mips_tdep): Update ``set mips
3413 mask-address'' command.
3414 (show_mask_address): Add cmd parameter.
3415 * remote.c (add_packet_config_cmd): Update. Change type of
3416 set_func and show_func to cmd_sfunc_ftype.
3417 (_initialize_remote): Update `set remote Z-packet'
3418 (show_remote_protocol_qSymbol_packet_cmd): Add cmd parameter.
3419 (show_remote_protocol_e_packet_cmd): Ditto.
3420 (show_remote_protocol_E_packet_cmd): Ditto.
3421 (show_remote_protocol_P_packet_cmd): Ditto.
3422 (show_remote_protocol_Z_software_bp_packet_cmd): Ditto.
3423 (show_remote_protocol_Z_hardware_bp_packet_cmd): Ditto.
3424 (show_remote_protocol_Z_write_wp_packet_cmd): Ditto.
3425 (show_remote_protocol_Z_read_wp_packet_cmd): Ditto.
3426 (show_remote_protocol_Z_access_wp_packet_cmd): Ditto.
3427 (show_remote_protocol_Z_packet_cmd): Ditto.
3428 (show_remote_protocol_binary_download_cmd): Ditto.
3429 (show_remote_cmd): Pass NULL to all of above.
3430
3431 2002-06-15 Mark Kettenis <kettenis@gnu.org>
3432
3433 * config/i386/tm-i386.h (PUSH_ARGUMENTS, STORE_STRUCT_RETURN,
3434 DEPRECATED_EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE,
3435 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS, PUSH_DUMMY_FRAME,
3436 POP_FRAME): Remove defines.
3437 (i386_push_arguments, i386_store_struct_return,
3438 i386_extract_return_value, i386_store_return_value,
3439 i386_extract_struct_value_address, i386_push_dummy_frame,
3440 i386_pop_frame): Renove prototypes.
3441 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
3442 macros mentioned above.
3443
3444 2002-06-15 Andrew Cagney <ac131313@redhat.com>
3445
3446 * cli/cli-decode.c (add_setshow_boolean_cmd): Replace
3447 add_set_boolean_cmd.
3448 (add_setshow_cmd): New function.
3449 * command.h (add_setshow_boolean_cmd): Replace
3450 add_set_boolean_cmd.
3451 * remote-rdi.c (_initialize_remote_rdi): Update ``set rdiheartbeat''
3452 and ``set rdiromatzero''.
3453 * maint.c (_initialize_maint_cmds): Update commented out code.
3454 * cli/cli-decode.h (add_set_boolean_cmd): Delete declaration.
3455 * target.c (initialize_targets): Update `set
3456 trust-readonly-sections'.
3457 * remote.c (_initialize_remote): Update `set remotebreak'.
3458
3459 2002-06-15 Mark Kettenis <kettenis@gnu.org>
3460
3461 * config/i386/tm-i386.h (FUNCTION_START_OFFSET, INNER_THAN,
3462 BREAKPOINT, DECR_PC_AFTER_BREAK): Removed.
3463 * i386-tdep.c (i386_skip_prologue): Adjust function signature to
3464 fit into multi-arch framework.
3465 (i386_breakpoint_from_pc): New function.
3466 (i386_gdbarch_init): Adjust for removal of the macros mentioned
3467 above.
3468
3469 * config/i386/tm-i386.h (FRAMELESS_FUNCTION_INVOCATION,
3470 FRAME_ARGS_ADDRESS, FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS,
3471 FRAME_ARGS_SKIP, FRAME_INIT_SAVED_REGS): Remove defines.
3472 (i386_frameless_function_invocation, i386_frame_num_args,
3473 i386_frame_init_saved_regs): Remove prototypes.
3474 * i386-tdep.c (i386_gdbarch_init): Adjust for removal of the
3475 macros mentioned above.
3476
3477 2002-06-15 Andrew Cagney <ac131313@redhat.com>
3478
3479 * cli/cli-decode.c (set_cmd_cfunc): Update.
3480 (set_cmd_sfunc): Update.
3481 * command.h (cmd_cfunc_ftype, cmd_sfunc_ftype): Declare.
3482 (set_cmd_sfunc, set_cmd_cfunc): Update.
3483 * cli/cli-decode.h: Update.
3484
3485 2002-06-15 Mark Kettenis <kettenis@gnu.org>
3486
3487 * i386-sol2-tdep.c (i386_sol2_osabi_sniffer): New function.
3488 (_initialize_i386_sol2_tdep): Register i386_sol2_osabi_sniffer.
3489
3490 2002-06-15 Andrew Cagney <ac131313@redhat.com>
3491
3492 * defs.h (auto_boolean): Declare enum.
3493 * command.h (cmd_auto_boolean): Delete enum.
3494 * mips-tdep.c (mask_address_var): Update.
3495 (mips_mask_address_p): Update.
3496 (show_mask_address): Update.
3497 * remote.c (struct packet_config): Update.
3498 (update_packet_config): Update.
3499 (show_packet_config_cmd): Update.
3500 (packet_ok): Update.
3501 (add_packet_config_cmd): Update.
3502 (_initialize_remote):
3503 * command.h: Update.
3504 * cli/cli-setshow.c (parse_auto_binary_operation): Update.
3505 (do_setshow_command): Update.
3506 * cli/cli-decode.c (add_set_auto_boolean_cmd): Update.
3507 * cli/cli-decode.h: Update.
3508
3509 2002-06-15 Mark Kettenis <kettenis@gnu.org>
3510
3511 * config/i386/tm-cygwin.h, config/i386/tm-fbsd.h,
3512 config/i386/tm-go32.h, config/i386/tm-i386gnu.h,
3513 config/i386/tm-i386sol2.h, config/i386/tm-i386v4.h,
3514 config/i386/tm-linux.h, config/i386/tm-nbsd.h,
3515 config/i386/tm-obsd.h (HAVE_I387_REGS): Remove define.
3516 * config/i386/tm-i386.h: Unconditionally define FLOAT_INFO.
3517
3518 * i386-tdep.c (i386_coff_osabi_sniffer): Add "coff-go32" to the
3519 list of DJGPP COFF targets.
3520
3521 * config/i386/tm-i386.h (REGISTER_SIZE): Remove define.
3522 (NUM_GREGS, NUM_FREGS, NUM_SSE_REGS): Remove defines.
3523 (FP_REGNUM, SP_REGNUM, PC_REGNUM, PS_REGNUM): Remove defines.
3524 (FP0_REGNUM): Remove define.
3525 (MAX_REGISTER_RAW_SIZE, MAX_REGISTER_VIRTUAL_SIZE,
3526 MAX_REGISTER_VIRTUAL_SIZE): Remove define.
3527 (i386_register_virtual_size): Remove protoype.
3528 * i386-tdep.c (i386_register_virtual_size): Removed.
3529 (i386_extract_return_value, i386_store_return_value): Use
3530 FP0_REGNUM instead of NUM_FREGS to determine whether the
3531 floating-point registers are available.
3532 (i386_gdbarch_init): Tweak FIXME about FPU registers.
3533 Adjust for removal of macros mentioned above.
3534
3535 2002-06-15 Mark Kettenis <kettenis@gnu.org>
3536
3537 * i386v4-nat.c: Include "i386-tdep.h". Reformat and tweak various
3538 comments.
3539 (fill_gregset, supply_gregset, supply_fpregset, fill_fpregset):
3540 Remove prototypes.
3541 (supply_gregset, fill_gregset): Remove use of register keyword and
3542 remove declaration for regmap. Use I386_NUM_GREGS instead of
3543 NUM_REGS and NUM_FREGS.
3544 (FPREGSET_FSAVE_OFFSET): Remove.
3545 (supply_fpregset, fill_fpregset): Use FPO_REGNUM instead of
3546 NUM_FREGS to determine whether the floating-point registers are
3547 available.
3548
3549 * i386gnu-nat.c (supply_gregset, gnu_fetch_registers,
3550 gnu_store_registers): Replace usage of NUM_GREGS with
3551 I386_NUM_GREGS.
3552
3553 * i386-linux-nat.c (OLD_CANNOT_FETCH_REGISTER,
3554 OLD_CANNOT_STORE_REGISTER, supply_gregset, fill_gregset): Replace
3555 usage of NUM_GREGS with I386_NUM_GREGS.
3556
3557 * i386-linux-nat.c (fill_gregset): Remove redundant parentheses.
3558
3559 * i386bsd-nat.c: Include "i386-tdep.h".
3560 (supply_gregset, fill_gregset): Replace usage of NUM_GREGS with
3561 I386_NUM_GREGS.
3562
3563 * i386v-nat.c: Remove copnditional inclusion of <asm/debugreg.h>,
3564 and associated comment. They no longer make any sense, since we
3565 don't use this file anymore on Linux.
3566
3567 * config/i386/tm-i386.h (MAX_NUM_REGS): Removed.
3568 * i386-tdep.c (i386_register_offset, i386_register_size): Use
3569 I386_SSE_NUM_REGS instead of MAX_NUM_REGS for the number of
3570 elements in these arrays.
3571 (_initialize_i386_tdep): Use I386_SSE_NUM_REGS instead of
3572 MAX_NUM_REGS.
3573
3574 2002-06-15 Mark Kettenis <kettenis@gnu.org>
3575
3576 * osabi.h (gdb_osabi): Add GDB_OSABI_LYNXOS.
3577 * osabi.c (gdb_osabi_names): Add entry for "LynxOS".
3578
3579 2002-06-14 Andrew Cagney <cagney@redhat.com>
3580
3581 * gdbarch.sh (DEPRECATED_EXTRACT_RETURN_VALUE): Rename
3582 EXTRACT_RETURN_VALUE.
3583 (DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS): Rename
3584 EXTRACT_STRUCT_VALUE_ADDRESS.
3585 * gdbarch.h, gdbarch.c: Regenerate.
3586
3587 * values.c (value_being_returned): Handle
3588 DEPRECATED_EXTRACT_STRUCT_VALUE_ADDRESS.
3589 (EXTRACT_RETURN_VALUE): Define as DEPRECATED_EXTRACT_RETURN_VALUE.
3590
3591 * arm-linux-tdep.c (arm_linux_init_abi): Update.
3592 * arm-tdep.c (arm_gdbarch_init): Update.
3593 * avr-tdep.c (avr_gdbarch_init): Update.
3594 * cris-tdep.c (cris_gdbarch_init): Update.
3595 * d10v-tdep.c (d10v_gdbarch_init): Update.
3596 * ia64-tdep.c (ia64_gdbarch_init): Update.
3597 * m68hc11-tdep.c (m68hc11_gdbarch_init): Update.
3598 * rs6000-tdep.c (rs6000_gdbarch_init): Update.
3599 * s390-tdep.c (s390_gdbarch_init): Update.
3600 * sh-tdep.c (sh_gdbarch_init): Update.
3601 * s390-tdep.c (s390_gdbarch_init): Update.
3602 * sparc-tdep.c (sparc_gdbarch_init): Update.
3603 * ns32k-tdep.c (ns32k_gdbarch_init): Update.
3604 * v850-tdep.c (v850_gdbarch_init): Update.
3605 * vax-tdep.c (vax_gdbarch_init): Update.
3606 * x86-64-tdep.c (x86_64_gdbarch_init): Update.
3607 * xstormy16-tdep.c (xstormy16_gdbarch_init): Update.
3608
3609 * config/arc/tm-arc.h: Update.
3610 * config/d30v/tm-d30v.h: Update.
3611 * config/fr30/tm-fr30.h: Update.
3612 * config/h8300/tm-h8300.h: Update.
3613 * config/h8500/tm-h8500.h: Update.
3614 * config/i386/tm-i386.h: Update.
3615 * config/i386/tm-ptx.h: Update.
3616 * config/i386/tm-symmetry.h: Update.
3617 * config/i960/tm-i960.h: Update.
3618 * config/m32r/tm-m32r.h: Update.
3619 * config/m68k/tm-delta68.h: Update.
3620 * config/m68k/tm-linux.h: Update.
3621 * config/m68k/tm-m68k.h: Update.
3622 * config/m88k/tm-m88k.h: Update.
3623 * config/mcore/tm-mcore.h: Update.
3624 * config/mips/tm-mips.h: Update.
3625 * config/mn10200/tm-mn10200.h: Update.
3626 * config/pa/tm-hppa.h: Update.
3627 * config/pa/tm-hppa64.h: Update.
3628 * config/sparc/tm-sp64.h: Update.
3629 * config/sparc/tm-sparc.h: Update.
3630 * config/sparc/tm-sparclet.h: Update.
3631 * config/z8k/tm-z8k.h: Update.
3632
3633 2002-06-14 Andrew Cagney <cagney@redhat.com>
3634
3635 * Makefile.in (i386_linux_tdep_h): Define.
3636 (i386_tdep_h, i387_tdep_h): Define.
3637 (i386-linux-nat.o): Add $(i386_linux_tdep_h),
3638 $(i386_tdep_h) and $(i387_tdep_h).
3639 * i386-linux-nat.c: Include "i386-linux-tdep.h".
3640
3641 2002-06-14 Mark Kettenis <kettenis@gnu.org>
3642
3643 * config/i386/tm-i386.h (START_INFERIOR_TRAPS_EXPECTED): Removed.
3644 Already covered by the default.
3645
3646 * config/i386/tm-i386.h (TARGET_LONG_DOUBLE_FORMAT,
3647 TARGET_LONG_DOUBLE_BIT): Remove. * i386-tdep.c
3648 (i386_gdbarch_init): Initialize long_double_format and long_double
3649 bit.
3650
3651 * config/i386/i386sol2.mt (TDEPFILES): Add i386-sol2-tdep.o and
3652 i386bsd-tdep.o. Remove solib.o, solib-svr4.o and solib-legacy.o.
3653 Move these to ...
3654 * config/i386/i386sol2.mh: ... here.
3655 * config/i386/tm-i386sol2.h (STAB_REG_TO_REGNUM): Remove define.
3656 (sigtramp_saved_pc, I386V4_SIGTRAMP_SAVED_PC): Don't #undef.
3657 (SIGCONTEXT_PC_OFFSET): Remove define.
3658 (IN_SIGTRAMP): Remove define.
3659 * i386-sol2-tdep.c: New file.
3660
3661 * config/i386/i386nw.mt (TM_FILE): Change to tm-i386.h.
3662 * config/i386/tm-i386nw.h: Removed.
3663
3664 * config/i386/tm-fbsd.h (STAB_REG_TO_REGNUM,
3665 USE_STRUCT_CONVENTION): Remove defines.
3666 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
3667 (get_longjmp_target): Remove prototype.
3668 (IN_SIGTRAMP): Remove define.
3669 (i386bsd_in_sigtramp): Remove prototype.
3670 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
3671 function. Update comment accordingly
3672 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
3673 (FRAME_SAVED_PC): Remove define.
3674 (i386bsd_frame_saved_pc): Remove prototype.
3675 * config/i386/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC,
3676 GET_LONGJMP_TARGET): Remove defines.
3677 (get_longjmp_target): Remove prototype.
3678 (IN_SIGTRAMP): Remove define.
3679 (i386bsd_in_sigtramp): Remove prototype.
3680 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): Turn into a
3681 function. Update comment accordingly
3682 (SIGTRAMP_START, SIGTRAMP): Adjust definition accordingly.
3683 (FRAME_SAVED_PC): Remove define.
3684 (i386bsd_frame_saved_pc): Remove prototype.
3685 * config/i386/tm-nbsdaout.h (i386nbsd_aout_use_struct_convention):
3686 Remove prototype.
3687 (USE_STRUCT_CONVENTION): Remove prototype.
3688 * i386bsd-nat.c (i386bsd_sigcontext_pc_offset): Remove
3689 declaration.
3690 (_initialize_i386bsd_nat): Revise logic to determine some
3691 constants at compile time when compiling a native GDB. Warn if
3692 things don't match up with what we expect.
3693 * i386bsd-tdep.c (i386bsd_sigtramp_start, i386bsd_sigtramp_end):
3694 Remove variables.
3695 (i386bsd_in_sigtramp): Rename tp i386bsd_pc_in_sigtramp. Rewrite
3696 to use date stored in `struct gdbarch_tdep'.
3697 (i386bsd_sigcontext_offset): Remove varaible.
3698 (i386bsd_sigtramp_saved_pc): Make public. Rewrite to use data
3699 stored in `struct gdbarch_tdep'.
3700 (i386bsd_frame_saved_pc): Make static.
3701 (i386bsd_sigtramp_start, i386bsd_sigtramp_end): New functions.
3702 (i386bsd_sc_pc_offset, i386nbsd_sc_pc_offset,
3703 i386fbsd_sigtramp_start, i386fbsd_sigtramp_end,
3704 i386fbsd4_sc_pc_offset): New variables.
3705 (i386bsd_init_abi, i386nbsd_init_abi, i386nbsdelf_init_abi,
3706 i386fbsdaout_init_abi, i386fbsd_init_abi, i386fbsd4_init_abi): New
3707 functions.
3708 (i386bsd_aout_osabi_sniffer, _initialize_i386bsd_tdep): New
3709 functions.
3710 * i386fbsd-nat.c (_initialize_i386fbsd_nat): Fix type in comment.
3711 Modify the value of i386fbsd_sigtramp_start and
3712 i386fbsd_sigtramp_end instead of i386bsd_sigtramp_start and
3713 i386fbsd_sigtramp_end.
3714 * i386nbsd-tdep.c: (i386nbsd_aout_use_struct_convention): Remove
3715 function.
3716
3717 * config/i386/tm-linux.h (I386_LINUX_ORIG_EAX_REGNUM): Move
3718 define to i386-linux-tdep.h.
3719 (NUM_REGS, MAX_NUM_REGS, REGISTER_BYTES, REGISTER_NAME,
3720 REGISTER_BYTE, REGISTER_RAW_SIZE, STAB_REG_TO_REGNUM): Remove
3721 defines.
3722 (i386_linux_register_name, i386_linux_register_byte,
3723 i386_linux_register_raw_size): Remove prototypes.
3724 (i386_linux_svr4_fetch_link_map_offsets): Remove prototype.
3725 (SVR4_FETCH_LINK_MAP_OFFSETS): Remove define.
3726 (IN_SIGTRAMP, FRAME_CHAIN, FRAME_SAVED_PC, SAVED_PC_AFTER_CALL,
3727 TARGET_WRITE_PC): Remove defines.
3728 (i386_linux_in_sigtramp, i386_linux_frame_chain,
3729 i386_linux_frame_saved_pc, i386_linux_saved_pc_after_call,
3730 i386_linux_write_pc): Remove prototypes.
3731 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
3732 (get_longjmp_target): Remove prototype.
3733 * i386-linux-tdep.h: New file.
3734 * i386-linux-nat.c: Include "i386-linux-tdep.h".
3735 * i386-linux-tdep.c: Include "i386-tdep.h" and
3736 "i386-linux-tdep.h".
3737 (i386_linux_register_name, i386_linux_register_byte,
3738 i386_linux_register_raw_size, i386_linux_in_sigtramp,
3739 i386_linux_write_pc, i386_linux_svr4_fetch_link_map_offsets):
3740 Make static.
3741 (i386_linux_init_abi): New function.
3742 (_initialize_i386_linux_tdep): New function.
3743
3744 * config/i386/tm-i386.h (SAVED_PC_AFTER_CALL): Remove define.
3745 (i386_saved_pc_after_call): Remove prototype.
3746 (MAX_NUM_REGS): Increase to deal with Linux's orig_eax "register".
3747 (REGISTER_NAME, STAB_REG_TO_REGNUM, SDB_REG_TO_REGNUM,
3748 DWARF_REG_TO_REGNUM, DWARF2_REG_TO_REGNUM): Remove defines.
3749 (i386_register_name, i386_stab_reg_to_regnum,
3750 i386_dwarf_reg_to_regnum): Remove prototypes.
3751 (SIZEOF_GREGS, SIZEOF_FPU_REGS, SIZEOF_FPU_CTL_REGS,
3752 SIZEOF_SSE_REGS): Remove defines.
3753 (REGISTER_BYTES): Remove define.
3754 (REGISTER_BYTE, REGISTER_RAW_SIZE): Remove defines.
3755 (i386_register_byte, i386_register_raw_size): Remove prototypes.
3756 (FRAME_CHAIN, FRAME_SAVED_PC): Remove defines.
3757 (i386_frame_chain, i386_frame_saved_pc): Remove prototypes.
3758 * config/i386/tm-i386v4.h (FRAME_CHAIN_VALID): Remove define.
3759 (JB_ELEMENT_SIZE, JB_PC, JB_EBX, JB_ESI, JB_EDI, JB_EBP, JB_ESP,
3760 JB_EDX, GET_LONGJMP_TARGET): Remove defines.
3761 (get_longjmp_target): Remove prototype.
3762 (I386V4_SIGTRAMP_SAVED_PC, IN_SIGTRAMP): Remove defines.
3763 (sigtramp_saved_pc): Remove define.
3764 (i386v4_sigtramp_saved_pc): Remove prototype.
3765 * config/i386/tm-go32.h (FRAME_CHAIN,
3766 FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC): Remove defines.
3767 (i386go32_frame_saved_pc): Remove prototype.
3768 (JB_ELEMENT_SIZE, JB_PC, GET_LONGJMP_TARGET): Remove defines.
3769 (get_longjmp_target): Remove prototype.
3770 * i386-tdep.h: Include "osabi.h".
3771 (enum i386_abi): Removed.
3772 (enum struct_return): New enum.
3773 (struct gdbarch_tdep): Remove abi member, add osabi, jb_pc_offset,
3774 struct_return, sigtramp_saved_pc, sigtramp_start, sigtramp_end and
3775 sc_pc_offset members.
3776 (i386_gdbarch_register_os_abi): Remove prototype.
3777 (I386_NUM_GREGS, I386_NUM_FREGS, I386_NUM_XREGS,
3778 I386_SSE_NUM_REGS): New defines.
3779 (I386_SIZEOF_GREGS, I386_SIZEOF_FREGS, I386_SIZEOF_XREGS,
3780 I386_SSE_SIZEOF_REGS): New defines.
3781 (i386_register_name, i386_register_byte, i386_register_raw_size):
3782 New prototypes.
3783 (i386_elf_init_abi, i386_svr4_init_abi): New prototypes.
3784 (i386bsd_sigtramp_saved_pc): New prototype.
3785 * i386-tdep.c: Don't include "elf-bfd.h".
3786 (i386_stab_reg_to_regnum, i386_dwarf_reg_to_regnum,
3787 i386_frame_chain, i386_saved_pc_after_call): Make static.
3788 (i386_frame_saved_pc): Rewrite to call architecture dependent
3789 function to deal with signal handlers. Make static.
3790 (i386go32_frame_saved_pc): Removed.
3791 [GET_LONGJMP_TARGET] (JB_PC, JB_ELEMENT_SIZE, get_longjmp_target):
3792 Removed.
3793 (i386_get_longjmp_target): New function.
3794 (default_struct_convention, pcc_struct_convention,
3795 reg_struct_convention, valid_conventions, struct_convention): New
3796 variables.
3797 (i386_use_struct_convention): New function.
3798 (i386v4_sigtramp_saved_pc): Renamed to
3799 i386_svr4_sigtramp_saved_pc. Made static. Moved.
3800 (i386_pc_in_sigtramp): New function.
3801 (i386_abi_names): Removed.
3802 (ABI_TAG_OS_GNU_LINUX, ABI_TAG_OS_GNU_HURD,
3803 ABI_TAG_OS_GNU_SOLARIS, ABI_TAG_OS_FREEBSD, ABI_TAG_OS_NETBSD):
3804 Removed.
3805 (process_note_sections, i386_elf_abi_from_note, i386_elf_abi,
3806 i386_gdbarch_register_os_abi): Removed.
3807 (struct i386_abi_handler): Removed.
3808 (i386_abi_handler_list): Removed.
3809 (i386_svr4_pc_in_sigtramp, i386_go32_pc_in_sigtramp): New
3810 functions.
3811 (i386_elf_init_abi, i386_svr4_init_abi, i386_go32_init_abi,
3812 i386_nw_init_abi): New functions.
3813 (i386_gdbarch_init): Rewritten to use generic OS ABI framework.
3814 Use set_gdbarch_xxx() calls instead of relying on macros for a
3815 number of calls.
3816 (i386_coff_osabi_sniffer, i386_nlm_osabi_sniffer): New functions.
3817 (_initialize_i386_tdep): Add new 'struct-convcention' command.
3818 Register the various architecture variants defined in this file.
3819
3820 2002-06-14 Daniel Jacobowitz <drow@mvista.com>
3821
3822 * gdbtypes.h (TYPE_FLAG_VARARGS): Update comment.
3823 (struct main_type): Remove arg_types member. Update comments for
3824 struct field.
3825 (TYPE_ARG_TYPES): Remove.
3826 (TYPE_FN_FIELD_ARGS): Update.
3827 (smash_to_method_type): Update prototype.
3828
3829 * c-typeprint.c (cp_type_print_method_args): Take method type
3830 instead of argument list. Use new argument layout. Simplify.
3831 (c_type_print_args): Use new argument layout. Simplify.
3832 (c_type_print_base): Update call to cp_type_print_method_args.
3833 * dwarf2read.c (dwarf2_add_member_fn): Remove unneeded type
3834 argument; use die->type instead. Update call to
3835 smash_to_method_type.
3836 (read_structure_scope): Update call to dwarf2_add_member_fn.
3837 * gdbtypes.c (allocate_stub_method): Update comment.
3838 (smash_to_method_type): Take new NARGS and VARARGS arguments.
3839 Use new argument layout.
3840 (check_stub_method): Use new argument layout. Don't count
3841 void as an argument.
3842 (print_arg_types): Update comments. Use new argument layout.
3843 (recursive_dump_type): Don't print arg_types member.
3844 * hpread.c (hpread_read_struct_type): Use new argument layout.
3845 (fixup_class_method_type): Likewise.
3846 (hpread_type_lookup): Likewise.
3847 * stabsread.c (read_type): Update calls to read_args and
3848 smash_to_method_type.
3849 (read_args): Use new argument layout. Simplify.
3850 * valops.c (typecmp): Use new argument layout. Update parameters
3851 and comments. Simplify.
3852 (hand_function_call): Use new argument layout.
3853 (search_struct_method): Update call to typecmp.
3854 (find_overload_match): Use new argument layout.
3855
3856 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
3857
3858 * NEWS: Mention multithreaded debug support for gdbserver.
3859
3860 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
3861
3862 * MAINTAINERS: Mention NEWS.
3863
3864 2002-06-13 Daniel Jacobowitz <drow@mvista.com>
3865
3866 * mips-tdep.c (PROC_SYMBOL): Add warning comment.
3867 (struct mips_objfile_private, compare_pdr_entries): New.
3868 (non_heuristic_proc_desc): Read the ".pdr" section if it
3869 is present.
3870
3871 2002-06-12 Andrew Cagney <ac131313@redhat.com>
3872
3873 * arm-tdep.c (arm_push_arguments): Rewrite using a two-pass loop.
3874 (arm_debug): New static variable.
3875 (_initialize_arm_tdep): Add ``set debug arm'' command.
3876
3877 2002-06-12 Andrew Cagney <ac131313@redhat.com>
3878
3879 * Makefile.in (sim_arm_h): Define.
3880 (arm-tdep.o): Add $(sim_arm_h) and $(gdb_assert_h).
3881 * arm-tdep.c: Include "gdb/sim-arm.h" and "gdb_assert.h".
3882 (arm_register_sim_regno): New function, map an internal REGNUM
3883 onto a simulator register number.
3884 (arm_gdbarch_init): Set register_sim_regno.
3885
3886 2002-06-09 Aldy Hernandez <aldyh@redhat.com>
3887
3888 * MAINTAINERS: Add self.
3889
3890 2002-06-11 Jim Blandy <jimb@redhat.com>
3891
3892 * source.c (source_info): Mention whether the symtab has
3893 information about preprocessor macros.
3894
3895 Call the command `info macro', not `show macro'.
3896 * macrocmd.c (info_macro_command): Renamed from `show_macro_command'.
3897 Fix error message.
3898 (_initialize_macrocmd): Register `info_macro_command' in
3899 `infolist', not `showlist'.
3900
3901 2002-06-11 Daniel Jacobowitz <drow@mvista.com>
3902
3903 * mips-tdep.c (MIPS_FPU_TYPE, FP_REGISTER_DOUBLE, MIPS_EABI)
3904 (MIPS_LAST_FP_ARG_REGNUM, MIPS_LAST_ARG_REGNUM)
3905 (MIPS_DEFAULT_SAVED_REGSIZE, MIPS_REGS_HAVE_HOME_P)
3906 (MIPS_DEFAULT_STACK_ARGSIZE, GDB_TARGET_IS_MIPS64)
3907 (MIPS_DEFAULT_MASK_ADDRESS_P): Remove obsolete definitions. Define
3908 unconditionally.
3909 (set_mipsfpu_single_command, set_mipsfpu_double_command)
3910 (set_mipsfpu_none_command): Remove if (GDB_MULTI_ARCH).
3911 (_initialize_mips_tdep): Remove dead code.
3912 * config/mips/tm-irix5.h (MIPS_LAST_ARG_REGNUM)
3913 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
3914 * config/mips/tm-irix6.h (MIPS_LAST_ARG_REGNUM)
3915 (MIPS_DEFAULT_STACK_ARGSIZE, MIPS_REGS_HAVE_HOME_P): Remove.
3916 * config/mips/tm-mips.h (MIPS_EABI, MIPS_LAST_ARG_REGNUM,
3917 MIPS_LAST_FP_ARG_REGNUM): Remove.
3918
3919 2002-06-11 Michal Ludvig <mludvig@suse.cz>
3920
3921 * dwarf2cfi.c (unwind_tmp_obstack_init): New.
3922 (unwind_tmp_obstack_free, parse_frame_info)
3923 (update_context, cfi_read_fp, cfi_write_fp)
3924 (cfi_frame_chain, cfi_init_extra_frame_info)
3925 (cfi_virtual_frame_pointer): Use the above function.
3926 * dwarf2cfi.c: Reindented (using 'indent dwarf2cfi.c').
3927
3928 2002-06-11 Corinna Vinschen <vinschen@redhat.com>
3929
3930 * v850-tdep.c (v850_type_is_scalar): New function.
3931 (v850_use_struct_convention): Match current gcc implementation
3932 as close as possible.
3933 (v850_push_arguments): Fix stack_offset handling. Don't write
3934 struct_addr into register. This is done by v850_store_struct_return.
3935 (v850_extract_return_value): Care for structs.
3936 (v850_store_return_value): Ditto.
3937 (v850_store_struct_return): Actually write address.
3938
3939 2002-06-11 Michal Ludvig <mludvig@suse.cz>
3940
3941 * x86-64-tdep.c (x86_64_skip_prologue): Fix to work on functions
3942 without debug information too.
3943
3944 2002-06-10 Andrew Cagney <ac131313@redhat.com>
3945
3946 * gdbarch.sh (PRINT_FLOAT_INFO): Add frame and ui_file parameters.
3947 Make multi-arch pure.
3948 * gdbarch.h, gdbarch.c: Re-generate.
3949 * arm-tdep.c (arm_print_float_info): Update.
3950 * arch-utils.h (default_print_float_info): Update.
3951 * arch-utils.c (default_print_float_info): Update.
3952 * infcmd.c (float_info): Update call.
3953
3954 2002-06-10 Andrew Cagney <ac131313@redhat.com>
3955
3956 * Makefile.in (init.c): Move the call to _initialize_gdbtypes to
3957 the front of the initialize list.
3958
3959 2002-06-10 Andrew Cagney <ac131313@redhat.com>
3960
3961 * infrun.c (struct inferior_status): Replace fields
3962 selected_frame_address and selected_level with field
3963 selected_frame_id.
3964 (save_inferior_status): Update. Use get_frame_id.
3965 (struct restore_selected_frame_args): Delete.
3966 (restore_selected_frame): Update. Use frame_find_by_id.
3967 (restore_inferior_status): Update.
3968
3969 * breakpoint.h (struct breakpoint): Change type of
3970 watchpoint_frame to frame_id.
3971 * breakpoint.c (insert_breakpoints): Use frame_find_by_id. Remove
3972 call to get_current_frame.
3973 (do_enable_breakpoint): Use frame_find_by_id. Remove call to
3974 get_current_frame.
3975 (watchpoint_check): Use frame_find_by_id.
3976
3977 * frame.h (record_selected_frame): Delete declaration.
3978 * stack.c (record_selected_frame): Delete function.
3979
3980 * frame.h (struct frame_id): Define.
3981 (get_frame_id): Declare.
3982 (frame_find_by_id): Declare.
3983 * frame.c (frame_find_by_id): New function.
3984 (get_frame_id): New function.
3985
3986 2002-06-10 Andrey Volkov <avolkov@transas.com>
3987
3988 * ser-e7kpc.c: Fix duplicated define and call of
3989 _initialize_ser_e7000pc
3990
3991 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
3992
3993 * signals/signals.c (target_signal_from_host): Fix #ifdef
3994 SIGRTMIN case.
3995 (do_target_signal_to_host): Likewise.
3996
3997 2002-06-09 Daniel Jacobowitz <drow@mvista.com>
3998
3999 * mips-tdep.c (mips_find_abi_section): New function.
4000 (mips_gdbarch_init): Call it.
4001
4002 2002-06-09 Mark Kettenis <kettenis@gnu.org>
4003
4004 * solib-svr4.c (init_fetch_link_map_offsets): Simply return
4005 legacy_fetch_link_map_offsets. Adjust comment to reflect reality
4006 after Andrew's 2002-06-08 gdbarch change.
4007
4008 2002-06-09 Mark Kettenis <kettenis@gnu.org>
4009
4010 * i386-linux-nat.c (suppy_gregset): Don't supply
4011 I386_LINUX_ORIG_EAX_REGNUM if there isn't room for it in GDB's
4012 register cache.
4013 (fill_gregset): Don't fetch it under the same circumstances.
4014
4015 2002-06-09 Andrew Cagney <cagney@redhat.com>
4016
4017 * Makefile.in (callback_h): Define.
4018 (remote_sim_h): Update path to remote-sim.h.
4019 (remote-rdp.o): Add $(callback_h).
4020 (remote-sim.o): Use $(callback_h).
4021 * remote-sim.c: Include "gdb/callback.h" and "gdb/remote-sim.h".
4022 * remote-rdp.c: Include "gdb/callback.h".
4023
4024 2002-06-09 Mark Kettenis <kettenis@gnu.org>
4025
4026 * osabi.h (gdb_osabi): Add GDB_OSABI_GO32 and GDB_OSABI_NETWARE.
4027 * osabi.c (gdb_osabi_names): Add "DJGPP" and "NetWare".
4028
4029 2002-06-08 Andrew Cagney <ac131313@redhat.com>
4030
4031 * sparcl-tdep.c: Use __CYGWIN__ instead of __CYGWIN32__.
4032 * rdi-share/serpardr.c: Ditto.
4033 * rdi-share/unixcomm.c: Ditto.
4034 * rdi-share/serdrv.c: Ditto.
4035 * rdi-share/hostchan.h: Ditto.
4036 * rdi-share/hostchan.c: Ditto.
4037 * rdi-share/host.h: Ditto.
4038 * rdi-share/devsw.c: Ditto.
4039
4040 * objfiles.h: Change type of obj_private to void pointer.
4041 * pa64solib.c: Update copyright. Don't include "assert.h", use
4042 strcmp instead of STREQ, use LONGEST, do not use PTR
4043 * somsolib.c: Ditto.
4044
4045 * config/djgpp/fnchange.lst: Fix problems with bfd/elf32-i386.c,
4046 bfd/elf32-i386qnx.c, bfd/elf32-sh.c, bfd/elf32-sh64-nbsd.c,
4047 bfd/elf64-sh64-nbsd.c bfd/elf64-sh64.c.
4048
4049 2002-06-08 Andrew Cagney <ac131313@redhat.com>
4050
4051 * frame.c (GET_SAVED_REGISTER): Delete macro definition.
4052 (default_get_saved_register): Delete function.
4053 * gdbarch.sh (GET_SAVED_REGISTER): Set default to
4054 generic_unwind_get_saved_register.
4055 * gdbarch.h, gdbarch.c: Re-generate.
4056
4057 2002-06-08 Andrew Cagney <ac131313@redhat.com>
4058
4059 * gdbarch.sh (FRAME_CHAIN_VALID): Set default to
4060 generic_func_frame_chain_valid.
4061 * gdbarch.h, gdbarch.c: Re-generate.
4062 * blockframe.c (generic_func_frame_chain_valid): Only check
4063 PC_IN_CALL_DUMMY when generic dummy frames. Don't worry about
4064 passing FP to PC_IN_CALL_DUMMY.
4065 Fix PR gdb/360.
4066
4067 2002-06-08 Andrew Cagney <ac131313@redhat.com>
4068
4069 * gdbarch.sh (struct gdbarch_data): Add field init_p.
4070 (register_gdbarch_data): Initialize init_p.
4071 (gdbarch_data): Initialize data pointer using the init function.
4072 (init_gdbarch_data): Delete function.
4073 (gdbarch_update_p): Update.
4074 (initialize_non_multiarch): Update.
4075 (struct gdbarch): Add field initialized_p.
4076 * gdbarch.h, gdbarch.c: Re-generate.
4077
4078 2002-06-07 Michal Ludvig <mludvig@suse.cz>
4079
4080 * x86-64-linux-nat.c (x86_64_fxsave_offset): New.
4081 (supply_fpregset, fill_fpregset): Don't call i387_*_fxsave,
4082 better do the things actually here.
4083 * x86-64-tdep.c (x86_64_register_name2nr): New.
4084 (x86_64_register_name): Renamed to x86_64_register_nr2name.
4085 (x86_64_gdbarch_init): Respect the above change.
4086 * x86-64-tdep.h (x86_64_register_name2nr)
4087 (x86_64_register_nr2name): Add prototypes.
4088 * config/i386/x86-64linux.mt (TDEPFILES): Remove i387-tdep.o.
4089
4090 2002-06-06 Michael Snyder <msnyder@redhat.com>
4091
4092 * d10v-tdep.c (d10v_push_arguments): Handle struct_return.
4093 Delete extra braces and re-indent.
4094 (d10v_store_return_value): Char return values
4095 must be shifted over by one byte in R0.
4096 (d10v_extract_return_value): Delete extra braces, re-indent.
4097
4098 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
4099
4100 * d10v-tdep.c (d10v_read_sp, d10v_read_fp): Add prototype.
4101 (d10v_register_virtual_type): Make $fp and $sp be pointer to data.
4102 (d10v_integer_to_address): Rewrite.
4103 (d10v_frame_init_saved_regs): When reading fp and sp registers use
4104 the d10v specific functions which take care of converting to the
4105 correct space.
4106
4107 2002-06-06 Elena Zannoni <ezannoni@redhat.com>
4108
4109 * config/djgpp/fnchange.lst: Add testsuite files altivec-abi.c,
4110 altivec-abi.exp, altivec-regs.c, altivec-regs.exp.
4111
4112 2002-06-02 Andrew Cagney <ac131313@redhat.com>
4113
4114 * config/alpha/nm-linux.h: Add "config/" prefix to tm, nm and xm
4115 includes.
4116 * config/tm-linux.h: Ditto.
4117 * config/alpha/tm-alphalinux.h: Ditto.
4118 * config/arm/nm-linux.h, config/arm/tm-linux.h: Ditto.
4119 * config/arm/xm-nbsd.h, config/i386/nm-gnu.h: Ditto.
4120 * config/i386/nm-i386lynx.h, config/i386/nm-i386sol2.h: Ditto.
4121 * config/i386/nm-i386v4.h, config/i386/nm-i386v42mp.h: Ditto.
4122 * config/i386/nm-linux.h, config/i386/nm-m3.h: Ditto.
4123 * config/i386/nm-ptx4.h, config/i386/nm-x86-64.h: Ditto.
4124 * config/i386/tm-i386gnu.h, config/i386/tm-i386lynx.h: Ditto.
4125 * config/i386/tm-i386m3.h, config/i386/tm-i386sco5.h: Ditto.
4126 * config/i386/tm-i386v4.h, config/i386/tm-linux.h: Ditto.
4127 * config/i386/tm-ptx4.h, config/i386/tm-vxworks.h: Ditto.
4128 * config/i386/xm-i386v4.h, config/i386/xm-nbsd.h: Ditto.
4129 * config/i386/xm-ptx.h, config/i386/xm-ptx4.h: Ditto.
4130 * config/i960/tm-vx960.h, config/ia64/nm-aix.h: Ditto.
4131 * config/ia64/nm-linux.h, config/ia64/tm-aix.h: Ditto.
4132 * config/ia64/tm-linux.h, config/ia64/xm-aix.h: Ditto.
4133 * config/m68k/nm-linux.h, config/m68k/nm-m68klynx.h: Ditto.
4134 * config/m68k/nm-sysv4.h, config/m68k/tm-linux.h: Ditto.
4135 * config/m68k/tm-m68klynx.h, config/m68k/tm-m68kv4.h: Ditto.
4136 * config/m68k/tm-sun2os4.h, config/m68k/tm-sun3os4.h: Ditto.
4137 * config/m68k/tm-vx68.h, config/m68k/xm-m68kv4.h: Ditto.
4138 * config/m68k/xm-nbsd.h, config/m88k/nm-delta88v4.h: Ditto.
4139 * config/m88k/tm-delta88v4.h, config/m88k/xm-delta88v4.h: Ditto.
4140 * config/mips/nm-irix5.h, config/mips/nm-linux.h: Ditto.
4141 * config/mips/tm-linux.h, config/mips/tm-mips64.h: Ditto.
4142 * config/mips/tm-mipsm3.h, config/mips/tm-mipsv4.h: Ditto.
4143 * config/mips/tm-vxmips.h, config/mips/xm-irix5.h: Ditto.
4144 * config/mips/xm-mipsv4.h, config/ns32k/xm-nbsd.h: Ditto.
4145 * config/pa/nm-hppao.h, config/powerpc/nm-linux.h: Ditto.
4146 * config/powerpc/tm-linux.h, config/powerpc/tm-vxworks.h: Ditto.
4147 * config/powerpc/xm-aix.h, config/rs6000/nm-rs6000ly.h: Ditto.
4148 * config/rs6000/tm-rs6000ly.h, config/rs6000/xm-aix4.h: Ditto.
4149 * config/sh/tm-linux.h, config/sparc/nm-linux.h: Ditto.
4150 * config/sparc/nm-sparclynx.h, config/sparc/nm-sun4sol2.h: Ditto.
4151 * config/sparc/tm-linux.h, config/sparc/tm-sp64linux.h: Ditto.
4152 * config/sparc/tm-sp64sim.h, config/sparc/tm-sparclynx.h: Ditto.
4153 * config/sparc/tm-sun4os4.h, config/sparc/tm-sun4sol2.h: Ditto.
4154 * config/sparc/tm-vxsparc.h, config/sparc/xm-sun4sol2.h: Ditto.
4155
4156 2002-05-04 Aidan Skinner <aidan@velvet.net>
4157
4158 * ada-exp.tab.c: New file
4159 * ada-exp.y: New file
4160 * ada-lang.c: New file
4161 * ada-lang.h: New file
4162 * ada-lex.c: New file
4163 * ada-lex.l: New file
4164 * ada-tasks.c: New file
4165 * ada-typeprint.c: New file
4166 * ada-valprint.c: New file
4167
4168 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
4169
4170 * ppcnbsd-tdep.c (ppcnbsd_init_abi): Don't set
4171 use_struct_convention to ppc_sysv_abi_broken_use_struct_convention.
4172
4173 2002-06-02 Jason Thorpe <thorpej@wasabisystems.com>
4174
4175 * config/rs6000/aix4.mt (TDEPFILES): Use ppc-sysv-tdep.o
4176 insetead of ppc-linux-tdep.o.
4177 * config/rs6000/rs6000.mt (TDEPFILES): Likewise.
4178 * config/rs6000/rs6000lynx.mt (TDEPFILES): Likewise.
4179
4180 2002-06-02 Andrew Cagney <ac131313@redhat.com>
4181
4182 2002-05-07 Christian Groessler <chris@groessler.org>
4183 * z8k-tdep.c (z8k_print_register_hook): Fix display of 32 and 64
4184 bit register contents for little endian hosts.
4185
4186 2002-06-01 Andrew Cagney <ac131313@redhat.com>
4187
4188 * MAINTAINERS: Mention that any `HP/UX reader' can be changed by
4189 any maintainer.
4190
4191 2002-06-01 Andrew Cagney <ac131313@redhat.com>
4192
4193 * gdbarch.h: Regenerate.
4194
4195 2002-06-01 Andrew Cagney <ac131313@redhat.com>
4196
4197 * MAINTAINERS: Add everyone to write-after-approval list.
4198
4199 2002-06-01 Andrew Cagney <ac131313@redhat.com>
4200
4201 * stack.c (frame_info): Use frame_register_unwind instead of
4202 saved_regs. Mention when the SP is on the stack or in a register.
4203
4204 * frame.h (frame_register_unwind_ftype): Define. Document.
4205 (struct frame_info): Add field register_unwind and
4206 register_unwind_cache.
4207 (frame_register_unwind): Declare.
4208 (generic_unwind_get_saved_register): Declare.
4209
4210 * frame.c (frame_register_unwind): New function.
4211 (generic_unwind_get_saved_register): New function.
4212
4213 * blockframe.c (generic_call_dummy_register_unwind): New function.
4214 (frame_saved_regs_register_unwind): New function.
4215 (set_unwind_by_pc): New function.
4216 (create_new_frame): New function.
4217 (get_prev_frame): New function.
4218
4219 2002-05-30 Andrew Cagney <ac131313@redhat.com>
4220
4221 * a29k-share/: Delete directory.
4222 * remote-vx29k.c: Delete file.
4223
4224 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
4225
4226 * config/djgpp/fnchange.lst: Add ns32knbsd-nat.c, ns32knbsd-tdep.c,
4227 ppcnbsd-nat.c, ppcnbsd-tdep.c, sparcnbsd-nat.c, and sparcnbsd-tdep.c.
4228
4229 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
4230
4231 * Makefile.in (ALLDEPFILES): Add sparc64nbsd-nat.c,
4232 sparcnbsd-nat.c, and sparcnbsd-tdep.c.
4233 (sparc64nbsd-nat.o)
4234 (sparcnbsd-nat.o)
4235 (sparcnbsd-tdep.o): New dependency lists.
4236 * NEWS: Note new UltraSPARC NetBSD native configuration.
4237 * configure.host (sparc64-*-netbsd*): New host.
4238 * configure.tgt (sparc-*-netbsdelf*)
4239 (sparc-*-netbsd*): Set gdb_target to nbsd.
4240 (sparc64-*-netbsd*): New target.
4241 * sparc64nbsd-nat.c: New file.
4242 * sparcnbsd-nat.c: New file.
4243 * sparcnbsd-tdep.c: New file.
4244 * sparcnbsd-tdep.h: New file.
4245 * config/sparc/nbsd.mt: New file.
4246 * config/sparc/nbsd64.mh: New file.
4247 * config/sparc/nbsd64.mt: New file.
4248 * config/sparc/nbsdaout.mh (NATDEPFILES): Remove corelow.o,
4249 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
4250 (HOST_IPC): Remove.
4251 * config/sparc/nbsdaout.mt: Remove.
4252 * config/sparc/nbsdelf.mh (NATDEPFILES): Remove corelow.o,
4253 sparc-nat.o, and solib.o. Add sparcnbsd-nat.o.
4254 (HOST_IPC): Remove.
4255 * config/sparc/nbsdelf.mt: Remove.
4256 * config/sparc/nm-nbsd.h: Update copyright years. Remove all
4257 sparc-nat.c compatiblity defines.
4258 * config/sparc/tm-nbsd.h: Update copyright years. Include solib.h.
4259 (GDB_MULTI_ARCH): Set to GDB_MULTI_ARCH_PARTIAL.
4260 * config/sparc/tm-nbsd64.h: New file.
4261 * config/sparc/tm-nbsdaout.h: Remove.
4262 * config/sparc/xm-nbsd.h: Remove.
4263
4264 2002-05-30 Jason Thorpe <thorpej@wasabisystems.com>
4265
4266 * Makefile.in (sparc-tdep.o): Add osabi.h to dependency list.
4267 * sparc-tdep.c: Include osabi.h.
4268 (gdbarch_tdep): Add osabi member.
4269 (_initialize_sparc_tdep): Use gdbarch_register.
4270 (sparc_gdbarch_init): Use generic OS ABI framework.
4271 (sparc_dump_tdep): New function.
4272
4273 2002-05-30 Kevin Buettner <kevinb@redhat.com>
4274
4275 * corefile.c (do_captured_read_memory_integer): Return non-zero
4276 result.
4277 (safe_read_memory_integer): Copy result of memory read when
4278 status is non-zero. Also, add comments.
4279
4280 2002-05-20 Jason Thorpe <thorpej@wasabisystems.com>
4281
4282 * Makefile.in (ppc_tdep_h): Define.
4283 (ppc-linux-nat.o)
4284 (ppc-linux-tdep.o)
4285 (rs6000-tdep.o): Use $(ppc_tdep_h).
4286 (ppc-sysv-tdep.o)
4287 (ppcnbsd-nat.o)
4288 (ppcnbsd-tdep.o): New dependency lists.
4289 * ppc-tdep.h: Use generic OS ABI framework.
4290 * ppc-linux-tdep.c (_initialize_ppc_linux_tdep)
4291 (ppc_linux_init_abi): New functions.
4292 (ppc_sysv_abi_broken_use_struct_convention)
4293 (ppc_sysv_abi_use_struct_convention)
4294 (ppc_sysv_abi_push_arguments): Move to...
4295 * ppc-sysv-tdep.c: ...here.
4296 * ppcnbsd-nat.c: Don't include gdbcore.h and regcache.h.
4297 * rs6000-tdep.c (process_note_abi_tag_sections)
4298 (get_elfosabi): Remove.
4299 (rs6000_gdbarch_init): Use generic OS ABI framework.
4300 (rs6000_dump_tdep): New function.
4301 (_initialize_rs6000_tdep): Use gdbarch_register.
4302 * config/powerpc/linux.mt (TDEPFILES): Add ppc-sysv-tdep.o.
4303 * config/powerpc/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
4304 * config/powerpc/aix.mt (TDEPFILES): Use ppc-sysv-tdep.o instead
4305 of ppc-linux-tdep.o.
4306 * config/powerpc/nbsd.mt (TDEPFILES): Likewise.
4307 * config/powerpc/ppc-eabi.mt (TDEPFILES): Likewise.
4308 * config/powerpc/ppc-sim.mt (TDEPFILES): Likewise.
4309 * config/powerpc/ppcle-eabi.mt (TDEPFILES): Likewise.
4310 * config/powerpc/ppcle-sim.mt (TDEPFILES): Likewise.
4311 * config/powerpc/vxworks.mt (TDEPFILES): Likewise.
4312
4313 2002-05-29 Jim Blandy <jimb@redhat.com>
4314
4315 * macroscope.c (default_macro_scope): Put `void' in empty argument
4316 list.
4317
4318 2002-05-29 Andrew Cagney <ac131313@redhat.com>
4319
4320 * Makefile.in (arch-utils.o): Add $(sim_regno_h).
4321 * arch-utils.c: Include "sim-regno.h".
4322 * gdbarch.sh: Don't include "sim-regno.h".
4323 * gdbarch.h, gdbarch.c: Regenerate.
4324 * sim-regno.h (legacy_register_sim_regno): Move declaration from
4325 here.
4326 * arch-utils.h (legacy_register_sim_regno): To here.
4327 * remote-sim.c (legacy_register_sim_regno): Move function from
4328 here.
4329 * arch-utils.c (legacy_register_sim_regno): To here.
4330
4331 2002-05-28 Andrew Cagney <ac131313@redhat.com>
4332
4333 * sim-regno.h: New file.
4334 * Makefile.in (sim_regno_h): Define.
4335 (d10v-tdep.o, remote-sim.o): Add dependency on $(sim_regno_h).
4336 * remote-sim.c: Include "sim-regno.h" and "gdb_assert.h".
4337 (legacy_register_sim_regno): New function.
4338 (one2one_register_sim_regno): New function.
4339 (gdbsim_fetch_register): Rewrite.
4340 (gdbsim_store_register): Only store a register when
4341 REGISTER_SIM_REGNO is valid.
4342 * d10v-tdep.c: Include "sim-regno.h".
4343 (d10v_ts2_register_sim_regno): Add legacy_regiter_sim_regno check.
4344 (d10v_ts3_register_sim_regno): Ditto.
4345 * gdbarch.sh: Include "sim-regno.h".
4346 (REGISTER_SIM_REGNO): Set default to legacy_register_sim_regno.
4347 * gdbarch.h, gdbarch.c: Regenerate.
4348 * arch-utils.h (default_register_sim_regno): Delete declaration.
4349 * arch-utils.c (default_register_sim_regno): Delete function.
4350
4351 2002-05-28 Jason Thorpe <thorpej@wasabisystems.com>
4352
4353 * ppcnbsd-nat.c: Rewrite.
4354 * ppcnbsd-tdep.c: New file.
4355 * ppcnbsd-tdep.h: New file.
4356 * config/powerpc/nbsd.mh (NATDEPFILES): Remove corelow.o,
4357 solib.o, and solib-svr4.o.
4358 * config/powerpc/nbsd.mt (TDEPFILES): Add ppcnbsd-tdep.o,
4359 nbsd-tdep.o, and corelow.o.
4360
4361 2002-05-28 Andrew Cagney <ac131313@redhat.com>
4362
4363 * MAINTAINERS (--enable-gdb-build-warnings): Rewrite script to use
4364 `tr' and `sed'. Mention that `broken' targets are not expected to
4365 build.
4366
4367 2002-05-27 Michal Ludvig <mludvig@suse.cz>
4368
4369 * x86-64-tdep.c (x86_64_skip_prologue): Remove obsolete note.
4370 Let PC point right after the prologue before looking up symbols.
4371
4372 2002-05-27 Martin M. Hunt <hunt@redhat.com>
4373
4374 * i386-tdep.c (i386_register_virtual_type): Return
4375 builtin_type_vec128i for SSE registers.
4376
4377 * gdbtypes.h (builtin_type_vec128i): Declare.
4378
4379 * gdbtypes.c (build_builtin_type_vec128i): New function.
4380 (builtin_type_v2_double, builtin_type_v4_int64): New types.
4381 (builtin_type_vec128i): New type for SSE2 128-bit registers.
4382 (build_gdbtypes): Initialize new builtin vector types.
4383 (_initialize_gdbtypes): Register new vector types with gdbarch.
4384
4385 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
4386
4387 * MAINTAINERS: ns32k is not longer an obsolete candidate,
4388 since it has been multi-arch'd.
4389 * NEWS: Note that ns32k-*-* is now partial multi-arch.
4390 Move Alpha and VAX multi-arch news entries to same section
4391 as other multi-arch news.
4392
4393 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
4394
4395 * ns32k-tdep.c: include gdbtypes.h, inferior.h, regcache.h,
4396 target.s, arch-utils.h, ns32k-tdep.h. Make many functions
4397 static. Rename some register numbers to put them in ns32k-tdep
4398 private namespace.
4399 (ns32k_get_saved_register, ns32k_gdbarch_init_32082,
4400 ns32k_gdbarch_init_32382, ns32k_gdbarch_init, ns32k_dump_tdep): New
4401 functions.
4402 (_initialize_ns32k_tdep): Use gdbarch_register.
4403 * ns32k-tdep.h: New file.
4404 * ns32knbsd-tdep.c: New file.
4405 * config/ns32k/nbsdaout.mt (TDEPFILES): Add ns32knbsd-tdep.o.
4406 * config/ns32k/tm-nbsd.h: Include "ns32k/tm-ns32k.h".
4407 (IN_SOLIB_CALL_TRAMPOLINE, REGISTER_NAME, NUM_REGS,
4408 REGISTER_BYTES, REGISTER_BYTE): Remove.
4409 * config/ns32k/tm-ns32k.h: New file.
4410 * config/ns32k/tm-umax.h: Remove.
4411
4412 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
4413
4414 * ns32k-tdep.c (ns32k_saved_pc_after_call,
4415 ns32k_store_struct_return, ns32k_extract_return_value,
4416 ns32k_store_return_value, ns32k_extract_struct_value_address): New
4417 functions.
4418 * config/ns32k/tm-umax.h (SAVED_PC_AFTER_CALL): Define as
4419 ns32k_saved_pc_after_call.
4420 (STORE_STRUCT_RETURN): Define as ns32k_store_struct_return.
4421 (EXTRACT_RETURN_VALUE): Define as ns32k_extract_return_value.
4422 (STORE_RETURN_VALUE): Define as ns32k_store_return_value.
4423 (EXTRACT_STRUCT_VALUE_ADDRESS): Define as
4424 ns32k_extract_struct_value_address.
4425
4426 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
4427
4428 * ns32k-tdep.c (ns32k_call_dummy_words, sizeof_ns32k_call_dummy_words,
4429 ns32k_fix_call_dummy): New.
4430 * config/ns32k/tm-umax.h (CALL_DUMMY_WORDS): Define as
4431 ns32k_call_dummy_words.
4432 (SIZEOF_CALL_DUMMY_WORDS): Define as sizeof_ns32k_call_dummy_words.
4433 (CALL_DUMMY, CALL_DUMMY_LENGTH, CALL_DUMMY_ADDR,
4434 CALL_DUMMY_NARGS): Remove.
4435 (FIX_CALL_DUMMY): Define as ns32k_fix_call_dummy.
4436
4437 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
4438
4439 * ns32k-tdep.c (ns32k_breakpoint_from_pc, ns32k_frame_chain,
4440 ns32k_frame_saved_pc, ns32k_frame_args_address,
4441 ns32k_frame_locals_address, ns32k_frame_init_saved_regs,
4442 ns32k_push_dummy_frame, ns32k_pop_frame): New functions.
4443 * config/ns32k/tm-nbsd.h (FRAME_SAVED_PC): Remove.
4444 * config/ns32k/tm-umax.h (INNER_THAN): Define as core_addr_lessthan.
4445 (BREAKPOINT_FROM_PC): Define as ns32k_breakpoint_from_pc.
4446 (BREAKPOINT): Remove..
4447 (FRAME_CHAIN): Define as ns32k_frame_chain.
4448 (FRAME_SAVED_PC): Define as ns32k_frame_saved_pc.
4449 (FRAME_ARGS_ADDRESS): Define as ns32k_frame_args_address.
4450 (FRAME_LOCALS_ADDRESS): Define as ns32k_frame_locals_address.
4451 (FRAME_FIND_SAVED_REGS): Remove.
4452 (FRAME_INIT_SAVED_REGS): Define as ns32k_frame_init_saved_regs.
4453 (PUSH_DUMMY_FRAME): Define as ns32k_push_dummy_frame.
4454 (POP_FRAME): Define as ns32k_pop_frame.
4455
4456 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
4457
4458 * ns32k-tdep.c (ns32k_register_byte_32082,
4459 ns32k_register_byte_32382, ns32k_register_raw_size,
4460 ns32k_register_virtual_size, ns32k_register_virtual_type): New
4461 functions.
4462 * config/ns32k/tm-nbsd.h (REGISTER_BYTE): Define as
4463 ns32k_register_byte_32382.
4464 * config/ns32k/tm-umax.h: Update copyright years.
4465 (REGISTER_BYTE): Define as ns32k_register_byte_32082.
4466 (REGISTER_RAW_SIZE): Define as ns32k_register_raw_size.
4467 (REGISTER_VIRTUAL_SIZE): Define as ns32k_register_virtual_size.
4468 (REGISTER_VIRTUAL_TYPE): Define as ns32k_register_virtual_type.
4469 (ns32k_get_enter_addr): Fix prototype.
4470
4471 2002-05-26 Jason Thorpe <thorpej@wasabisystems.com>
4472
4473 * ns32k-tdep.c: Update copyright years.
4474 (ns32k_register_name_32082): New function.
4475 (ns32k_register_name_32382): Ditto.
4476 * config/ns32k/tm-nbsd.h (REGISTER_NAMES): Remove.
4477 (REGISTER_NAME): Define as ns32k_register_name_32382.
4478 * config/ns32k/tm-umax.h (REGISTER_NAMES): Remove.
4479 (REGISTER_NAME): Define as ns32k_register_name_32082.
4480
4481 2002-05-24 Jim Blandy <jimb@redhat.com>
4482
4483 * dwarf2read.c (free_line_header): Use xfree, not free.
4484
4485 2002-05-24 Jason Thorpe <thorpej@wasabisystems.com>
4486
4487 * config/djgpp/fnchange.lst: Add alphabsd-nat.c,
4488 alphabsd-tdep.c, mipsnbsd-nat.c, and mipsnbsd-tdep.c
4489
4490 2002-05-23 Andrew Cagney <ac131313@redhat.com>
4491
4492 * PROBLEMS: Mention s390 and FreeBSD 4.4 build problems.
4493
4494 2002-05-23 Andrew Cagney <ac131313@redhat.com>
4495
4496 From Ross Alexander at NEC Europe:
4497 * config/pa/hpux11w.mh (NATDEPFILES): Add solib.o.
4498
4499 2002-05-23 Michael Snyder <msnyder@redhat.com>
4500
4501 * cli/cli-dump.c (restore_command): Use parse_and_eval_long
4502 for input, rather than parse_and_eval_address.
4503
4504 2002-05-23 Andrew Cagney <ac131313@redhat.com>
4505
4506 * d10v-tdep.c: Include "gdb/sim-d10v.h" instead of "sim-d10v.h".
4507 * Makefile.in (sim_d10v_h): Update definition.
4508
4509 2002-05-24 Andrew Cagney <cagney@redhat.com>
4510
4511 * d10v-tdep.c (d10v_gdbarch_init): Revert old code included in
4512 change `2002-05-22 Michael Snyder' below.
4513 (d10v_push_arguments): Ditto.
4514 (d10v_extract_return_value): Ditto.
4515
4516 2002-05-23 Jim Blandy <jimb@redhat.com>
4517
4518 * macrotab.c (check_for_redefinition): Don't complain if the new
4519 definition is the same as the previous one. Take more arguments
4520 to allow the comparison.
4521 (macro_define_object, macro_define_function): Pass more arguments
4522 to check_for_redefinition.
4523
4524 2002-05-22 Michael Snyder <msnyder@redhat.com>
4525
4526 * d10v-tdep.c: Change a few macros to enums for ease of debugging.
4527 (d10v_frame_chain_valid): Add PC_IN_CALL_DUMMY clause.
4528 (d10v_frame_saved_pc): Add PC_IN_CALL_DUMMY clause.
4529 (d10v_frame_chain): Bail immediately if PC_IN_CALL_DUMMY.
4530 Don't bail if return_pc is PC_IN_CALL_DUMMY.
4531 Add a temp variable to save a call (and a memory read).
4532 (d10v_init_extra_frame_info): Get fi->pc from callee's return_pc
4533 if possible (so that PC_IN_CALL_DUMMY will work).
4534
4535 2002-05-22 Corinna Vinschen <vinschen@redhat.com>
4536
4537 * MAINTAINERS: Remove status `OBSOLETE' from v850.
4538
4539 2002-05-22 Michal Ludvig <mludvig@suse.cz>
4540
4541 * dwarf2cfi.c (frame_state_for): Added safety check for a valid
4542 fde->cie_ptr.
4543 (dwarf2_build_frame_info): Corrected handling of eh_frame.
4544 (dwarf2_build_frame_info): Add offset to fde->initial_location
4545 so that frames of shared libraries are mapped correctly.
4546 (execute_stack_op): Change type of 'result' from ULONGEST to
4547 CORE_ADDR.
4548
4549 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
4550
4551 * config/alpha/tm-nbsd.h: Include solib.h.
4552
4553 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
4554
4555 * alphanbsd-tdep.c (alphanbsd_sigtramp_offset): Don't make
4556 assumptions about the host's byte order.
4557
4558 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
4559
4560 * Makefile.in (alphanbsd-tdep.o, shnbsd-tdep.o): Add solib-svr4.h
4561 to dependency list.
4562 * alphanbsd-tdep.c: Include solib-svr4.h.
4563 * shnbsd-tdep.c: Ditto.
4564
4565 2002-05-22 Jason Thorpe <thorpej@wasabisystems.com>
4566
4567 * Makefile.in (armnbsd-tdep.o): Add solib-svr4.h and
4568 nbsd-tdep.h to dependency list.
4569 * configure.host (arm*-*-netbsdelf*, arm*-*-netbsd*,
4570 i[3456]86-*-netbsdaout*, i[3456]86-*-netbsd*, m68*-*-netbsd*,
4571 ns32k-*-netbsd*, sparc-*-netbsdaout*, sparc-*-netbsd*): Use
4572 nbsdaout.mh and nbsdelf.mh consistently.
4573 * configure.tgt (i[3456]86-*-netbsd*, m68*-*-netbsd*,
4574 ns32k-*-netbsd*, sparc-*-netbsdelf*, sparc-*-netbsd*) Use
4575 nbsdaout.mt and nbsdelf.mh consistently.
4576 * armnbsd-tdep.c: Include nbsd-tdep.h and solib-svr4.h.
4577 (arm_netbsd_elf_init_abi): Use set_solib_svr4_fetch_link_map_offsets
4578 to set nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
4579 * config/nm-nbsd.h: Garbage-collect SVR4_SHARED_LIBS. Move
4580 a.out shared library stuff from here...
4581 * config/nm-nbsdaout.h: ...to here.
4582 * config/tm-nbsd.h: Remove.
4583 * config/alpha/nm-nbsd.h (SVR4_SHARED_LIBS): Remove.
4584 * config/arm/nbsd.mh: Remove.
4585 * config/arm/nbsd.mt (TDEPFILES): Remove solib-sunos.o, add
4586 nbsd-tdep.o.
4587 * config/arm/nbsdaout.mh: New file.
4588 * config/arm/nbsdelf.mh: New file.
4589 * config/arm/nm-nbsdaout.h: New file.
4590 * config/i386/nbsd.mh: Remove.
4591 * config/i386/nbsd.mt: Remove.
4592 * config/i386/nbsdaout.mh: New file.
4593 * config/i386/nbsdaout.mt: New file.
4594 * config/i386/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
4595 * config/i386/nbsdelf.mt (TM_FILE): Use tm-nbsd.h.
4596 * config/i386/nm-nbsd.h (REGISTER_U_ADDR,
4597 i386_register_u_addr): Remove.
4598 * config/i386/nm-nbsdaout.h: New file.
4599 * config/i386/nm-nbsdelf.h: Remove.
4600 * config/i386/tm-nbsd.h: Don't include config/tm-nbsd.h.
4601 (USE_STRUCT_CONVENTION): Remove.
4602 * config/i386/tm-nbsdaout.h: New file.
4603 * config/i386/tm-nbsdelf.h: Remove.
4604 * config/m68k/nbsd.mh: Remove.
4605 * config/m68k/nbsd.mt: Remove.
4606 * config/m68k/nbsdaout.mh: New file.
4607 * config/m68k/nbsdaout.mt: New file.
4608 * config/m68k/nm-nbsd.h: Use config/nm-nbsd.h.
4609 * config/m68k/nm-nbsdaout.h: New file.
4610 * config/m68k/tm-nbsd.h: Don't include config/tm-nbsd.h.
4611 (IN_SOLIB_CALL_TRAMPOLINE): Define.
4612 * config/ns32k/nbsd.mh: Remove.
4613 * config/ns32k/nbsd.mt: Remove.
4614 * config/ns32k/nbsdaout.mh: New file.
4615 * config/ns32k/nbsdaout.mt: New file.
4616 * config/ns32k/nm-nbsd.h: Include config/nm-nbsd.h.
4617 * config/ns32k/nm-nbsdaout.h: New file.
4618 * config/ns32k/tm-nbsd.h: Don't include config/tm-nbsd.h.
4619 (IN_SOLIB_CALL_TRAMPOLINE): Define.
4620 * config/powerpc/nm-nbsd.h: Include config/nm-nbsd.h.
4621 (SVR4_SHARED_LIBS): Remove.
4622 * config/powerpc/tm-nbsd.h: Dont' include config/tm-nbsd.h.
4623 * config/sparc/nbsd.mh: Remove.
4624 * config/sparc/nbsd.mt: Remove.
4625 * config/sparc/nbsdaout.mh: New file.
4626 * config/sparc/nbsdaout.mt: New file.
4627 * config/sparc/nbsdelf.mh (NAT_FILE): Use nm-nbsd.h.
4628 * config/sparc/nbsdelf.mt: New file.
4629 * config/sparc/nm-nbsdaout.h: New file.
4630 * config/sparc/nm-nbsdelf.h: Remove.
4631 * config/sparc/tm-nbsd.h: Don't include config/tm-nbsd.h.
4632 * config/sparc/tm-nbsdaout.h: New file.
4633
4634 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
4635
4636 * Makefile.in (ALLDEPFILES): Add mipsnbsd-nat.c and
4637 mipsnbsd-tdep.c
4638 (mipsnbsd-nat.o, mipsnbsd-tdep.o): New dependency lists.
4639
4640 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
4641
4642 * Makefile.in (ALLDEPFILES): Add shnbsd-tdep.c and
4643 shnbsd-nat.c.
4644 (shnbsd-tdep.o, shnbsd-nat.o): New dependency lists.
4645
4646 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
4647
4648 * NEWS: Note new MIPS NetBSD native configuration.
4649 * configure.host (mips*-*-netbsd*): New host.
4650 * configure.tgt (mips*-*-netbsd*): New target.
4651 * mipsnbsd-nat.c: New file.
4652 * mipsnbsd-tdep.c: New file.
4653 * mipsnbsd-tdep.h: New file.
4654 * config/mips/nbsd.mh: New file.
4655 * config/mips/nbsd.mt: New file.
4656 * config/mips/nm-nbsd.h: New file.
4657 * config/mips/tm-nbsd.h: New file.
4658
4659 2002-05-21 Jason Thorpe <thorpej@wasabisystems.com>
4660
4661 * Makefile.in (SFILES): Add osabi.c.
4662 (COMMON_OBS): Add osabi.o.
4663 (osabi.o): New dependency list.
4664 * osabi.c: New file.
4665 * osabi.h: New file.
4666 * doc/gdbint.texinfo: Document new generic OS ABI framework.
4667
4668 * Makefile.in (alpha_tdep_h): Define and use instead of
4669 alpha-tdep.h.
4670 * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections,
4671 get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os_abi):
4672 Remove.
4673 (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI framework.
4674 * alpha-tdep.h: Include osabi.h.
4675 (alpha_abi): Remove.
4676 (gdbarch_tdep): Use generic OS ABI framework.
4677 * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use
4678 gdbarch_register_osabi.
4679 * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise.
4680 * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise.
4681 * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise.
4682
4683 * Makefile.in (sh_tdep_h): Add osabi.h.
4684 * sh-tdep.h (sh_osabi): Remove.
4685 (gdbarch_tdep): Use generic OS ABI framework.
4686 * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections,
4687 sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove.
4688 (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework.
4689 * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use gdbarch_register_osabi.
4690
4691 * Makefile.in (arm_tdep_h): Define and use instead of arm-tdep.h.
4692 * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use
4693 gdbarch_register_osabi.
4694 * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections,
4695 arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove.
4696 (get_elfosabi): Rename to...
4697 (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS
4698 ABI framework support routines.
4699 (arm_gdbarch_init): Use generic OS ABI framework.
4700 (arm_dump_tdep): Likewise.
4701 (_initialize_arm_tdep): Likewise.
4702 * arm-tdep.h: Include osabi.h.
4703 (arm_abi): Remove.
4704 (gdbarch_tdep): Remove arm_abi and abi_name members. Add
4705 osabi member.
4706 (arm_gdbarch_register_os_abi): Remove prototype.
4707 * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New function.
4708 (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi.
4709
4710 * Makefile.in (mips-tdep.o): Add osabi.h to dependency list.
4711 * mips-tdep.c: Include osabi.h.
4712 (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic
4713 OS ABI framework.
4714
4715 2002-05-20 Kazu Hirata <kazu@cs.umass.edu>
4716
4717 * h8300-tdep.c: Fix formatting.
4718
4719 2002-05-20 Elena Zannoni <ezannoni@redhat.com>
4720
4721 * rs6000-tdep.c (rs6000_do_registers_info): Simplify code for
4722 printing vector registers.
4723
4724 2002-05-19 Andrew Cagney <ac131313@redhat.com>
4725
4726 From Fernando Nasser:
4727 * remote.c (remote_async_open_1): Re-throw the exception when the
4728 connection fails.
4729 (remote_cisco_open): Ditto.
4730 (remote_open_1): Ditto.
4731
4732 2002-05-19 Andrew Cagney <ac131313@redhat.com>
4733
4734 * remote.c (remote_start_remote_dummy): Add uiout parameter.
4735 (remote_start_remote): Add uiout parameter. Pass through to
4736 remote_start_remote_dummy.
4737 (remote_open_1): Use catch_exception instead of catch_errors.
4738 (remote_async_open_1): Ditto.
4739 (remote_cisco_open): Ditto.
4740
4741 2002-05-19 Andrew Cagney <ac131313@redhat.com>
4742
4743 * remote.c (remote_start_remote): Replace PTR with void pointer.
4744 (sigint_remote_twice_token, sigint_remote_token): Ditto. Make
4745 static.
4746
4747 2002-05-18 Andrew Cagney <ac131313@redhat.com>
4748
4749 * gdb_indent.sh: Allow the script to be run in the sim directory.
4750
4751 2002-05-18 Mark Kettenis <kettenis@gnu.org>
4752
4753 * config/i386/nm-cygwin.h (NO_PTRACE_H): Remove define.
4754 * config/i386/nm-go32.h (NO_PTRACE_H): Remove define.
4755
4756 * corelow.c (core_open): Only call set_gdbarch_from_file if
4757 exec_bfd is NULL.
4758
4759 2002-05-17 Andrey Volkov <avolkov@transas.com>
4760
4761 * h8300-tdep.c: Add support of EXR register
4762 * config/h8300/tm-h8300.h: Ditto.
4763
4764 2002-05-17 Andrey Volkov <avolkov@transas.com>
4765
4766 * h8300-tdep.c: Add additional CCR flags (I,UI,H,U)
4767
4768 2002-05-17 Andrey Volkov <avolkov@transas.com>
4769
4770 * h8300-tdep.c: Change literal regnums to REGNO.
4771
4772 2002-05-17 Jim Blandy <jimb@redhat.com>
4773
4774 * NEWS: Note addition of macro support.
4775
4776 Expand preprocessor macros in C expressions.
4777 * c-lang.h: #include "macroexp.h", for macro_lookup_ftype.
4778 (scan_macro_expansion, scanning_macro_expansion,
4779 finished_macro_expansion): New function declarations.
4780 (expression_macro_lookup_func, expression_macro_lookup_baton): New
4781 variable declarations.
4782 * parser-defs.h (expression_context_pc): New declaration.
4783 * parse.c (expression_context_pc): New variable.
4784 (parse_exp_1): Set expression_context_pc, as well as
4785 expression_context_block.
4786 * c-exp.y (yylex): If we're not already reading the result of a
4787 macro expansion, try to macro-expand the next token. When we're
4788 done scanning a macro expansion, switch back to the mainline text.
4789 Commas and `if's in a macro's expansion don't terminate the input.
4790 * c-lang.c: #include "macroscope.h" and "gdb_assert.h".
4791 (macro_original_text, macro_expanded_text,
4792 expression_macro_lookup_func, expression_macro_lookup_baton): New
4793 variables.
4794 (scan_macro_expansion, scanning_macro_expansion,
4795 finished_macro_expansion, scan_macro_cleanup, null_macro_lookup,
4796 c_preprocess_and_parse): New functions.
4797 (c_language_defn, cplus_language_defn, asm_language_defn): Call
4798 c_preprocess_and_parse, instead of c_parse.
4799 * Makefile.in (c_lang_h): Note that this #includes macroexp.h.
4800 (c-lang.o): Note dependency on macroscope.h and gdb_assert.h.
4801
4802 Fri May 17 14:26:19 2002 J"orn Rennecke <joern.rennecke@superh.com>
4803
4804 * sh-tdep.c (gdb_print_insn_sh64): Delete.
4805 (gdb_print_insn_sh): Just set info->endian and use print_insn_sh.
4806 (sh_gdbarch_init): Always use gdb_print_insn_sh.
4807
4808 2002-05-17 Corinna Vinschen <vinschen@redhat.com>
4809
4810 * NEWS: Add section for multi-arched targets. Add v850 to that section.
4811
4812 2002-05-17 Jason Thorpe <thorpej@wasabisystems.com>
4813
4814 * Makefile.in (sh_tdep_h): Define and use.
4815 * config/sh/tm-sh.h (sh_osabi, sh_abi, gdbarch_tdep,
4816 register enum): Move to...
4817 * * sh-tdep.h: ...here.
4818 * sh-tdep.c: Include sh-tdep.h.
4819 * sh3-rom.c: Likewise.
4820 * shnbsd-tdep.c: Likewise.
4821
4822 2002-05-16 Michael Snyder <msnyder@redhat.com>
4823
4824 * arm-tdep.c: Spelling fix in comment.
4825
4826 2002-05-16 Jim Blandy <jimb@redhat.com>
4827
4828 Add commands for manually expanding macros and showing their
4829 definitions.
4830 * macrocmd.c, macroscope.c, macroscope.h: New files.
4831 * Makefile.in (SFILES): Add macrocmd.c, macroscope.c.
4832 (macroscope_h): New variable.
4833 (HFILES_NO_SRCDIR): Add macroscope.h.
4834 (COMMON_OBS): Add macrocmd.o, macroscope.o.
4835 (macroscope.o, macrocmd.o): New rules.
4836
4837 Teach the Dwarf 2 reader to read macro information.
4838 * dwarf2read.c: #include "macrotab.h".
4839 (dwarf_macinfo_buffer): New variable.
4840 (struct dwarf2_pinfo): New members: dwarf_macinfo_buffer, and
4841 dwarf_macinfo_size.
4842 (DWARF_MACINFO_BUFFER, DWARF_MACINFO_SIZE): New macros.
4843 (dwarf2_missing_macinfo_section, dwarf2_macros_too_long,
4844 dwarf2_macros_not_terminated, dwarf2_macro_outside_file,
4845 dwarf2_macro_unmatched_end_file, dwarf2_macro_malformed_definition,
4846 dwarf2_macro_spaces_in_definition): New complaints.
4847 (dwarf2_has_info): Initialize dwarf_macinfo_offset.
4848 (dwarf2_build_psymtabs): Read the .dwarf_macinfo section.
4849 (dwarf2_build_psymtabs_hard): Record the buffer and its size in
4850 the partial symbol table.
4851 (psymtab_to_symtab_1): Set the macinfo buffer and size globals
4852 from what's recorded in the partial symbol table.
4853 (read_file_scope): If the compilation unit has a
4854 `DW_AT_macro_info' attribute, read its macro information.
4855 * Makefile.in (dwarf2read.o): Depend on macrotab.h.
4856
4857 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
4858
4859 Fix PR gdb/546
4860 * ser-tcp.c: Don't include <netinet/udp.h>.
4861
4862 2002-05-16 Stephane Carrez <stcarrez@nerim.fr>
4863
4864 * MAINTAINERS: Update my email address.
4865
4866 2002-05-16 Richard Earnshaw <rearnsha@arm.com>
4867
4868 * config/arm/nm-nbsd.h: Use "config/nm-nbsd.h" to include generic
4869 include file of the same name.
4870
4871 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
4872
4873 * configure.tgt: Mark v850 as multi-arched.
4874 * config/v850/tm-v850.h: Remove file.
4875 * config/v850/v850.mt: Eliminate TM_FILE.
4876
4877 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
4878
4879 * v850-tdep.c: Full multi-arch.
4880 * config/v850/tm-v850.h: Eliminate or move to v850-tdep.c everything.
4881 Define GDB_MULTI_ARCH to 2.
4882
4883 2002-05-16 Pierre Muller <muller@ics.u-strasbg.fr>
4884
4885 * p-exp.y (current_type): New static variable.
4886 Carries the type of the expression at the position that is parsed.
4887 (push_current_type, pop_current_type): Two new functions. Used
4888 to store/restore current_type in expression on specific tokens.
4889 (search_field): New static variable. Set to one after parsing a point
4890 as at that point only a FIELDNAME token should be searched.
4891 (FIELDNAME): New token. After a point only a token belonging to
4892 current_type type definition is allowed.
4893 (all over token rules): reset and change current_type according
4894 to rules.
4895 (exp '[' rule): insert implicit array index field if
4896 exp is a pascal string type.
4897
4898 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
4899
4900 * v850-tdep.c: Fix comment for v850_scan_prologue. Remove extra
4901 frame info. Use frame_info's saved_regs instead of matching member
4902 in extra_frame_info throughout.
4903 (v850_frame_init_saved_regs): New function.
4904 (v850_init_extra_frame_info): Move most functionality into
4905 v850_frame_init_saved_regs().
4906 * config/v850/tm-v850.h (EXTRA_FRAME_INFO): Remove definition.
4907 (v850_frame_find_saved_regs): Remove declaration.
4908 (FRAME_FIND_SAVED_REGS): Remove definition.
4909 (v850_frame_init_saved_regs): Add declaration.
4910 (FRAME_INIT_SAVED_REGS): Add definition.
4911
4912 2002-05-16 Corinna Vinschen <vinschen@redhat.com>
4913
4914 * v850-tdep.c: Begin multi-arch'ing v850.
4915 (v850_target_architecture_hook): Remove function.
4916 (v850_gdbarch_init): New function. Add code previously in
4917 v850_target_architecture_hook().
4918 (_initialize_v850_tdep): Don't set target_architecture_hook.
4919 Call register_gdbarch_init() instead.
4920
4921 2002-05-16 Daniel Jacobowitz <drow@mvista.com>
4922
4923 * gdbtypes.h (struct cplus_struct_type): Remove args field.
4924 * hpread.c (hpread_read_struct_type): Remove assignments to args.
4925 (fixup_class_method_type): Likewise.
4926
4927 2002-05-15 Jim Blandy <jimb@redhat.com>
4928
4929 Add macro structures to GDB's symbol tables. Nobody puts anything
4930 in them yet.
4931 * symtab.h (struct symtab): New member: `macro_table'.
4932 * buildsym.h (pending_macros): New global variable.
4933 * buildsym.c: #include "macrotab.h".
4934 (buildsym_init): Initialize `pending_macros'.
4935 (end_symtab): If we found macro information while reading a CU's
4936 debugging info, do build a symtab structure for it. Make the
4937 symtab point to the macro information, and clear the
4938 `pending_macros' pointer which held it while we were reading the
4939 debug info.
4940 (really_free_pendings): Free any pending macro table.
4941 * objfiles.h (struct objfile): New member: `macro_cache'.
4942 * objfiles.c (allocate_objfile): Set allocate and free functions
4943 for the macro cache's objstack.
4944 (free_objfile): Empty the macro cache's obstack.
4945 * symfile.c (reread_symbols): Empty the macro cache's obstack, and
4946 set new allocate and free functions for it.
4947 * solib-sunos.c (allocate_rt_common_objfile): Set allocate and
4948 free functions for the macro cache's objstack. (Why is this
4949 function building its own objfile?)
4950 * symmisc.c (print_objfile_statistics): Print statistics on the
4951 macro bcache.
4952 * Makefile.in: Note that buildsym.o depends on macrotab.h.
4953
4954 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
4955
4956 * config/arm/nm-nbsd.h: Use <> for include of config/nm-nbsd.h.
4957 (REGISTER_U_ADDR): Delete definition.
4958 (arm_register_u_addr): Delete declaration.
4959
4960 2002-05-15 Richard Earnshaw <rearnsha@arm.com>
4961
4962 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Renamed from JB_PC.
4963 (ARM_LINUX_JB_ELEMENT_SIZE): Likewise.
4964
4965 2002-05-14 Andrew Cagney <ac131313@redhat.com>
4966
4967 * regcache.c (register_valid): Revise comments refering to "Not
4968 available" and "unavailable".
4969 * frame.c (frame_register_read): Ditto.
4970 * findvar.c (value_of_register): Ditto.
4971
4972 2002-05-15 Andrew Cagney <cagney@redhat.com>
4973
4974 * Makefile.in (remote_sim_h): Replace remote-sim_h.
4975 (remote-sim.o): Update dependencies.
4976 (d10v-tdep.o): Specify dependencies.
4977 (sim_d10v_h): Define.
4978
4979 2002-05-14 Jim Blandy <jimb@redhat.com>
4980
4981 * macroexp.c (init_buffer, gather_arguments, expand): Use NULL, not 0.
4982 * macrotab.c (macro_lookup_inclusion, find_definition,
4983 new_macro_table): Same.
4984
4985 * macroexp.c (currently_rescanning, expand): Use `strcmp () == 0',
4986 not `! strcmp ()'. This is a dubious improvement.
4987 * macrotab.c (macro_lookup_inclusion, find_definition): Same.
4988
4989 * macrotab.c (macro_lookup_inclusion): Initialize `best_depth',
4990 although it's not necessary, to avoid a warning.
4991
4992 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
4993
4994 * gdbtypes.h: Update accessor macros to use TYPE_MAIN_TYPE.
4995 (TYPE_CONST, TYPE_VOLATILE, TYPE_CODE_SPACE, TYPE_DATA_SPACE): Use
4996 TYPE_INSTANCE_FLAGS.
4997 (struct main_type): New.
4998 (struct type): Move most members to struct main_type. Change
4999 cv_type and as_type to new type_chain member. Add instance_flags.
5000 (TYPE_MAIN_TYPE, TYPE_CHAIN, TYPE_INSTANCE_FLAGS): New macros.
5001 (TYPE_CV_TYPE, TYPE_AS_TYPE): Remove.
5002 (finish_cv_type): Remove prototype.
5003 * gdbtypes.c (alloc_type): Update comment. Allocate TYPE_MAIN_TYPE.
5004 Set TYPE_CHAIN.
5005 (alloc_type_instance): New function.
5006 (smash_type): New function.
5007 (make_pointer_type, make_reference_type, make_function_type)
5008 (smash_to_member_type, smash_to_method_type): Call smash_type.
5009 (make_qualified_type): New function.
5010 (make_type_with_address_space): Call make_qualified_type.
5011 (make_cv_type): Likewise.
5012 (finish_cv_type): Remove unnecessary function.
5013 (replace_type): Update comment. Copy TYPE_MAIN_TYPE.
5014 (recursive_dump_type): Dump TYPE_CHAIN and TYPE_INSTANCE_FLAGS;
5015 remove TYPE_CV_TYPE and TYPE_AS_TYPE.
5016 * c-typeprint.c (c_type_print_modifier): Use TYPE_INSTANCE_FLAGS.
5017 * dwarf2read.c (read_structure_scope): Don't call finish_cv_type.
5018 * hpread.c (hpread_read_struct_type): Likewise.
5019 * stabsread.c (read_struct_type): Likewise.
5020
5021 2002-05-14 Elena Zannoni <ezannoni@redhat.com>
5022
5023 * configure.tgt: Add a catch all sh* target, for cases like
5024 sh[2,3,4]-elf and sh-hms.
5025
5026 2002-05-14 Keith Seitz <keiths@redhat.com>
5027
5028 * event-loop.c (create_file_handler): Don't do anything but
5029 update data when we are given a fd which we are already
5030 monitoring.
5031
5032 2002-05-14 Michal Ludvig <mludvig@suse.cz>
5033
5034 * dwarf2cfi.c (context_cpy): Copy registers correctly.
5035 (update_context): Use __func__ in warnings.
5036
5037 2002-05-14 Daniel Jacobowitz <drow@mvista.com>
5038
5039 * ser-tcp.c: Include <netinet/udp.h>. Rename tcp_open
5040 and tcp_close to net_open and net_close.
5041 (net_open): Accept "udp:" and "tcp:" specifications. Connect
5042 using UDP if requested. Don't try to disable Nagle on UDP
5043 sockets.
5044 * remote.c (remote_serial_open): New function. Warn about UDP.
5045 (remote_open_1, remote_async_open_1, remote_cisco_open): Call it.
5046
5047 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
5048
5049 * MAINTAINERS: List sh-elf as buildable with ,-Werror.
5050
5051 2002-05-13 Elena Zannoni <ezannoni@redhat.com>
5052
5053 * configure.tgt: Remove sh-hms target.
5054 * MAINTAINERS: Don't list sh-hms as a separate target.
5055
5056 2002-05-13 Jim Blandy <jimb@redhat.com>
5057
5058 Add first preprocessor macro-expansion files.
5059 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
5060 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
5061 (splay_tree_h, macroexp_h, macrotab_h): New variable.
5062 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
5063 (COMMON_OBS): Add macrotab.o, macroexp.o.
5064 (macroexp.o, macrotab.o): New rules.
5065
5066 2002-05-13 Andrew Cagney <ac131313@redhat.com>
5067
5068 * config/m88k/tm-m88k.h: Update copyright.
5069 (m88k_target_write_pc): Declare
5070 (TARGET_WRITE_PC): Redefine using m88k_target_write_pc.
5071 (M88K_NNPC_REGNUM): Rename NNPC_REGNUM.
5072 (SHIFT_INST_REGS): Update definition.
5073 * m88k-tdep.c (m88k_target_write_pc): New function. Implement
5074 using old definition of TARGET_WRITE_PC.
5075 * regcache.c (generic_target_write_pc): Delete code handling
5076 NNPC_REGNUM.
5077 * gdbarch.sh (NNPC_REGNUM): Delete.
5078 * gdbarch.h, gdbarch.c: Regenerate.
5079
5080 2002-05-13 Richard Earnshaw <rearnsha@arm.com>
5081
5082 * builtin-regs.c (value_of_builtin_reg): Correctly calculate the
5083 builtin reg number.
5084
5085 2002-05-13 Daniel Jacobowitz <drow@mvista.com>
5086
5087 * ax-gdb.c (gen_sign_extend, gen_fetch, gen_usual_unary)
5088 (gen_cast, gen_scale, gen_add, gen_sub, gen_binop, gen_deref)
5089 (gen_address_of, gen_struct_ref, gen_repeat): Use type
5090 access macros.
5091 * c-typeprint.c (cp_type_print_method_args): Likewise.
5092 (c_type_print_args): Likewise.
5093 * d10v-tdep.c (d10v_push_arguments): Likewise.
5094 (d10v_extract_return_value): Likewise.
5095 * expprint.c (print_subexp): Likewise.
5096 * gdbtypes.c (lookup_primitive_typename): Likewise.
5097 (lookup_template_type, add_mangled_type, print_arg_types): Likewise.
5098 * gdbtypes.h (TYPE_UNSIGNED, TYPE_NOSIGN, TYPE_STUB)
5099 (TYPE_TARGET_STUB, TYPE_STATIC, TYPE_CONST, TYPE_VOLATILE)
5100 (TYPE_PROTOTYPED, TYPE_INCOMPLETE, TYPE_CODE_SPACE, TYPE_VARARGS)
5101 (TYPE_VECTOR): Likewise.
5102 * hpread.c (hpread_read_struct_type)
5103 (fix_static_member_physnames, fixup_class_method_type)
5104 (hpread_type_lookup): Likewise.
5105 * mdebugread.c (parse_symbol, parse_type): Likewise.
5106 * p-lang.c (is_pascal_string_type): Likewise.
5107 * valops.c (hand_function_call): Likewise.
5108 * x86-64-tdep.c (classify_argument): Likewise.
5109
5110 * hpread.c (hpread_read_function_type)
5111 (hpread_read_doc_function_type): Call replace_type.
5112 * dstread.c (create_new_type): Delete.
5113 (decode_dst_structure, process_dst_function): Call alloc_type.
5114 Use type access macros.
5115
5116 2002-05-12 Mark Kettenis <kettenis@gnu.org>
5117
5118 * i387-tdep.c (i387_supply_fxsave): Skip the SSE registers if
5119 the're not supported by the current architecture.
5120 (i387_fill_fxsave): Likewise.
5121
5122 2002-05-12 Fred Fish <fnf@redhat.com>
5123
5124 * symfile.c (default_symfile_offsets): Arrange for uninitialized
5125 sect_index_xxx members to index the first slot in section_offsets
5126 if all of the section_offsets are zero.
5127
5128 2002-05-12 Mark Kettenis <kettenis@gnu.org>
5129
5130 * configure.tgt (sparc-*openbsd): Remove entry accidentially
5131 checked in with last change.
5132
5133 2002-05-12 Mark Kettenis <kettenis@gnu.org>
5134
5135 * configure.tgt (i[3456]86-*-unixware*, i[3456]86-*-unixware2*):
5136 Remove targets. These are canonicalized to i386-*-sysv4.2uw by
5137 config.sub.
5138
5139 2002-05-12 Daniel Jacobowitz <drow@mvista.com>
5140
5141 * Makefile.in: Update dependencies.
5142
5143 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5144
5145 * language.c (local_hex_string_custom): Simplify. Do not depend
5146 on PRINTF_HAS_LONG_LONG or CC_HAS_LONG_LONG.
5147
5148 * memattr.c (mem_info_command): Replace calls to
5149 longest_local_hex_string and longest_local_hex_string_custom.
5150 * buildsym.c (make_blockvector): Ditto.
5151 * solib.c (info_sharedlibrary_command): Ditto.
5152 * tracepoint.c (tracepoints_info): Ditto.
5153 * symtab.c (print_msymbol_info): Ditto.
5154
5155 * language.c (local_hex_string): Delete.
5156 (local_hex_string_custom): Delete.
5157 (longest_local_hex_string): Rename to local_hex_string.
5158 (longest_local_hex_string_custom): Rename to
5159 local_hex_string_custom.
5160 * language.h (local_hex_string): Change parameter type to LONGEST.
5161 (local_hex_string_custom): Ditto.
5162 (longest_local_hex_string): Delete declaration.
5163 (longest_local_hex_string_custom): Ditto.
5164
5165 * solib.c: Update copyright.
5166 * memattr.c: Update copyright.
5167
5168 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5169
5170 * arch-utils.h (legacy_register_to_value): Declare.
5171 (legacy_value_to_register): Declare.
5172 (legacy_convert_register_p): Declare.
5173 * arch-utils.c (legacy_register_to_value): New function.
5174 (legacy_value_to_register): New function.
5175 (legacy_convert_register_p): New function.
5176
5177 * gdbarch.sh (REGISTER_TO_VALUE): Define.
5178 (VALUE_TO_REGISTER): Define.
5179 (CONVERT_REGISTER_P): Define.
5180 * gdbarch.h, gdbarch.c: Regenerate.
5181
5182 * valops.c (value_assign): Use CONVERT_REGISTER_P and
5183 VALUE_TO_REGISTER.
5184 * findvar.c (value_from_register): Use REGISTER_TO_VALUE and
5185 CONVERT_REGISTER_P.
5186
5187 2005-05-11 Daniel Jacobowitz <drow@mvista.com>
5188 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
5189
5190 * Makefile.in: Update dependencies for valops.c.
5191 * valops.c: Include "gdb_assert.h".
5192 (typecmp): Skip THIS parameter to methods.
5193 (find_method_list): Remove static_memfuncp argument,
5194 update callers. Check for stub methods.
5195 (find_value_oload_method_list): Don't set *static_memfuncp.
5196 (find_overload_match): Don't check for stub methods. Assert
5197 that methods are not stubbed. Handle static methods.
5198 (value_find_oload_method_list): Remove static_memfuncp argument.
5199 * gdbtypes.c (check_stub_method): Do not add THIS pointer
5200 to the argument list for static stub methods.
5201 * value.h (value_find_oload_method_list): Update prototype.
5202
5203 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5204
5205 * arch-utils.h (generic_register_size): Declare.
5206 (generic_register_raw_size, generic_register_virtual_size): Delete
5207 declarations.
5208 * arch-utils.c (generic_register_raw_size): Delete.
5209 (generic_register_size): New function.
5210 (generic_register_virtual_size): Delete.
5211
5212 * gdbarch.sh (REGISTER_RAW_SIZE, REGISTER_VIRTUAL_SIZE): Make
5213 default generic_register_size.
5214 * gdbarch.h, gdbarch.c: Re-generate.
5215
5216 * d10v-tdep.c (d10v_gdbarch_init): Use generic_register_size for
5217 register_virtual_size.
5218 * x86-64-tdep.c (x86_64_gdbarch_init): Ditto.
5219 * rs6000-tdep.c (rs6000_gdbarch_init): Ditto.
5220
5221 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5222
5223 * gdbarch.sh (gdbarch_data): Add gdbarch parameter.
5224 * gdbarch.h, gdbarch.c: Regenerate.
5225 * gnu-v3-abi.c: Update copyright.
5226 (vtable_address_point_offset): Update.
5227 (gnuv3_rtti_type): Update.
5228 (gnuv3_baseclass_offset): Update.
5229 * solib-svr4.c (svr4_fetch_link_map_offsets): Update.
5230 (init_fetch_link_map_offsets): Update.
5231 * remote.c (get_remote_state): Update.
5232
5233 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
5234
5235 * TODO: Remove value_headof/value_from_vtable_info comment.
5236 * printcmd.c (print_command_1): Don't call value_from_vtable_info.
5237 * values.c (value_headof, value_from_vtable_info): Delete.
5238 * value.h (value_from_vtable_info): Delete prototype.
5239
5240 2002-05-11 Andrew Cagney <ac131313@redhat.com>
5241
5242 * Makefile.in: Replace gdb_assert.h with $(gdb_assert_h),
5243 gdb_string.h with $(gdb_string_h) and gdb_regex.h with
5244 $(gdb_regex_h).
5245 (gdb_assert_h): Define.
5246 (gdb_wait_h): Define.
5247 (gdb_regex_h): Define.
5248
5249 2002-05-11 Daniel Jacobowitz <drow@mvista.com>
5250
5251 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
5252 * linespec.c (find_methods): Handle GCC 3.x template constructors.
5253
5254 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5255
5256 * nbsd-tdep.c: Fix comment.
5257
5258 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5259
5260 * Makefile.in (ALLDEPFILES): Add nbsd-tdep.c.
5261 (alphanbsd-tdep.o): Add nbsd-tdep.h to dependency list.
5262 (nbsd-tdep.o): New dependency list.
5263 * alphanbsd-tdep.c: Don't include solib-svr4.h. Include
5264 nbsd-tdep.h.
5265 (alphanbsd_solib_svr4_fetch_link_map_offsets): Remove.
5266 (alphanbsd_init_abi): Use nbsd_lp64_solib_svr4_fetch_link_map_offsets.
5267 * nbsd-tdep.c: New file.
5268 * nbsd-tdep.h: New file.
5269 * shnbsd-tdep.c: Don't include solib-svr4.h. Include
5270 nbsd-tdep.h.
5271 (shnbsd_solib_svr4_fetch_link_map_offsets): Remove.
5272 (shnbsd_init_abi): Use nbsd_ilp32_solib_svr4_fetch_link_map_offsets.
5273 * config/alpha/nbsd.mt (TDEPFILES): Add nbsd-tdep.o.
5274 * config/sh/nbsd.mt (TDEPFILES): Ditto.
5275
5276 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5277
5278 * config/alpha/nbsd.mh (NATDEPFILES): Remove corelow.o.
5279 * config/alpha/nbsd.mt (TDEPFILES): Add corelow.o.
5280 * config/i386/nbsd.mh (NATDEPFILES): Remove corelow.o.
5281 * config/i386/nbsd.mt (TDEPFILES): Add corelow.o.
5282 * config/i386/nbsdelf.mh (NATDEPFILES): Remove corelow.o.
5283 * config/i386/nbsdelf.mt (TDEPFILES): Add corelow.o.
5284
5285 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5286
5287 * config/i386/nbsd.mh (NATDEPFILES): Use line continuations.
5288 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5289 * config/m68k/nbsd.mh (NATDEPFILES): Likewise.
5290 * config/ns32k/nbsd.mh (NATDEPFILES): Likewise.
5291 * config/powerpc/nbsd.mh (NATDEPFILES): Likewise.
5292 * config/sparc/nbsd.mh (NATDEPFILES): Likewise.
5293 * config/sparc/nbsdelf.mh (NATDEPFILES): Likewise.
5294
5295 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5296
5297 * i386nbsd-nat.c: Delete file. Move fetch_core_registers and
5298 fetch_elfcore_registers to...
5299 * i386nbsd-tdep.c: ...here.
5300 (i386nbsd_use_struct_convention): Rename to...
5301 (i386nbsd_aout_use_struct_convention): ...this.
5302 (i386nbsd_supply_reg): New function.
5303 (i386nbsd_fill_reg): New function.
5304 (fetch_core_registers): Use i386nbsd_supply_reg.
5305 (fetch_elfcore_registers): Likewise.
5306 (_initialize_i386nbsd_tdep): New function.
5307 * config/i386/nbsd.mh (NATDEPFILES): Remove i386nbsd-nat.o.
5308 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5309 * config/i386/nbsdelf.mt (TDEPFILES): Add i386nbsd-tdep.o.
5310 * config/i386/tm-nbsd.h (i386nbsd_use_struct_convention): Rename to...
5311 (i386nbsd_aout_use_struct_convention): ...this.
5312
5313 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5314
5315 * shnbsd-nat.c (fetch_inferior_registers): Use shnbsd_supply_reg.
5316 (store_inferior_registers): Use shnbsd_fill_reg.
5317 * shnbsd-tdep.c (sh_nbsd_supply_registers,
5318 sh_nbsd_supply_register): Collapse into...
5319 (shnbsd_supply_reg): ...this.
5320 (sh_nbsd_fill_registers, sh_nbsd_fill_register): Collapse into...
5321 (shnbsd_fill_reg): ...this.
5322 (sh_nbsd_solib_svr4_fetch_link_map_offsets): Rename to...
5323 (shnbsd_solib_svr4_fetch_link_map_offsets): ...this.
5324 (fetch_core_registers): Use shnbsd_supply_reg.
5325 (fetch_elfcore_registers): Use shnbsd_supply_reg.
5326 (sh_nbsd_core_fns): Rename to...
5327 (shnbsd_core_fns): ...this.
5328 (sh_nbsd_elfcore_fns): Rename to...
5329 (shnbsd_elfcore_fns): ...this.
5330 (sh_nbsd_init_abi): Rename to...
5331 (shnbsd_init_abi): ...this.
5332 (_initialize_sh_nbsd_tdep): Rename to...
5333 (_initialize_shnbsd_tdep): ...this.
5334 * shnbsd-tdep.h (sh_nbsd_supply_registers,
5335 sh_nbsd_supply_register, sh_nbsd_fill_registers,
5336 sh_nbsd_fill_register): Remove prototypes.
5337 (shnbsd_supply_reg, shnbsd_fill_reg): Add prototypes.
5338
5339 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5340
5341 * Makefile.in (ALLDEPFILES): Remove i387-nat.c.
5342 (i387-nat.o): Delete dependency list.
5343 (go32-nat.o): Change i387-nat.h to i387-tdep.h.
5344 (x86-64-linux-nat.o): Likewise.
5345 * i387-nat.c: Delete file, moving contents to...
5346 * i387-tdep.c: ...here.
5347 * i387-nat.h: Rename...
5348 * i387-tdep.h: ...to this.
5349 * go32-nat.c: Include i387-tdep.h instead of i387-nat.h.
5350 * i386-linux-nat.c: Likewise.
5351 * i386bsd-nat.c: Likewise.
5352 * i386gnu-nat.c: Likewise.
5353 * i386nbsd-nat.c: Likewise.
5354 * i386v4-nat.c: Likewise.
5355 * x86-64-linux-nat.c: Likewise.
5356 * config/i386/fbsd.mh (NATDEPFILES): Remove i387-nat.o.
5357 * config/i386/go32.mh (NATDEPFILES): Likewise.
5358 * config/i386/i386gnu.mh (NATDEPFILES): Likewise.
5359 * config/i386/i386sol2.mh (NATDEPFILES): Likewise.
5360 * config/i386/i386v42mp.mh (NATDEPFILES): Likewise.
5361 * config/i386/linux.mh (NATDEPFILES): Likewise.
5362 * config/i386/nbsd.mh (NATDEPFILES): Likewise.
5363 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
5364 * config/i386/obsd.mh (NATDEPFILES): Likewise.
5365 * config/i386/x86-64linux.mh (NATDEPFILES): Likewise.
5366
5367 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5368
5369 * Makefile.in (ALLDEPFILES): Remove alphanbsd-nat.c.
5370 (alphanbsd-nat.o): Remove dependency list.
5371 (alphanbsd-tdep.o): Add $(regcache_h) to dependency list.
5372 * alphanbsd-nat.c: Delete. Contents moved to...
5373 * alphanbsd-tdep.c: ...here.
5374 (_initialize_alphanbsd_tdep): Register core functions.
5375 * config/alpha/nbsd.mh (NATDEPFILES): Remove alphanbsd-nat.o.
5376
5377 2002-05-11 Jason Thorpe <thorpej@wasabisystems.com>
5378
5379 * Makefile.in (ALLDEPFILES): Add alphabsd-tdep.c.
5380 (alphabsd-nat.o): Depend on alphabsd-tdep.h.
5381 (alphanbsd-nat.o): Likewise.
5382 (alphabsd-tdep.o): New dependency list.
5383 * alphabsd-nat.c (supply_gregset): Use alphabsd_supply_reg.
5384 (fill_gregset): Use alphabsd_fill_reg.
5385 (supply_fpregset): Use alphabsd_supply_fpreg.
5386 (fill_fpregset): Use alphabsd_fill_fpreg.
5387 (fetch_inferior_registers): Use struct reg and struct fpreg
5388 rather than gregset_t and fpregset_t. Use alphabsd_supply_reg
5389 and alphabsd_supply_fpreg.
5390 (store_inferior_registers): Use struct reg and struct fpreg
5391 rather than gregset_t and fpregset_t. Use alphabsd_fill_reg
5392 and alphabsd_fill_fpreg.
5393 * alphabsd-tdep.c: New file.
5394 * alphabsd-tdep.h: New file.
5395 * alphanbsd-nat.c (fetch_core_registers): Use alphabsd_supply_fpreg.
5396 (fetch_elfcore_registers): Use alphabsd_supply_reg and
5397 alphabsd_supply_fpreg.
5398 * config/alpha/fbsd.mt (TDEPFILES): Add alphabsd-tdep.o.
5399 * config/alpha/nbsd.mt (TDEPFILES): Likewise.
5400
5401 2002-05-11 Eric Christopher <echristo@redhat.com>
5402
5403 * mips-tdep.c (mips_double_register_type): Fix thinko.
5404 (mips_single_register_type): Ditto.
5405 * MAINTAINERS: Add self.
5406
5407 2002-05-11 Mark Kettenis <kettenis@gnu.org>
5408
5409 * i387-nat.c (i387_supply_register, i387_fill_fsave,
5410 i387_supply_fxsave, i387_fill_fxsave): Rewrite in order to do the
5411 right thing on architectures with different endianness and/or
5412 integer sizes.
5413
5414 2002-05-10 Jason Thorpe <thorpej@wasabisystems.com>
5415
5416 From Christian Limpach <chris@Pin.LU>
5417 * configure.in: Change sed expression which comments out
5418 NATDEPFILES to also comment out continuation lines.
5419 * configure: Regenerate.
5420
5421 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
5422
5423 * sh-tdep.c: Clean up code erroneously reintroduced by previous
5424 big patch.
5425
5426 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
5427
5428 * sh-tdep.c: Include correct file.
5429
5430 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
5431
5432 New support for sh64-elf (sh5) target.
5433
5434 * configure.tgt: For sh64-elf target, default to sh-elf.
5435
5436 * config/sh/tm-sh.h (enum sh-abi): Possible ABI's.
5437 (struct gdbarch_tdep): Add new fields for new registers and ABI
5438 info.
5439
5440 * sh-tdep.c: Include elf-bfd.h, elf/sh.h, gdb/sim-sh.h.
5441 (NUM_PSEUDO_REGS_SH_MEDIA, NUM_PSEUDO_REGS_SH_COMPACT,
5442 MSYMBOL_IS_SPECIAL, IS_ISA32_ADDR, MAKE_ISA32_ADDR,
5443 UNMAKE_ISA32_ADDR, IS_PTABSL_R18, IS_STS_R0, IS_STS_PR,
5444 IS_MOV_TO_R15, IS_MOV_R14, IS_STQ_R18_R14, IS_STQ_R18_R15,
5445 IS_STL_R18_R15, IS_STQ_R14_R15, IS_STL_R14_R15, IS_ADDIL_SP_MEDIA,
5446 IS_ADDI_SP_MEDIA, IS_ADDL_SP_FP_MEDIA, IS_ADD_SP_FP_MEDIA,
5447 IS_MOV_SP_FP_MEDIA, IS_MOV_R0, IS_MOVL_R0, IS_ADD_SP_R0,
5448 IS_MOV_R14_R0, IS_MEDIA_IND_ARG_MOV, IS_MEDIA_ARG_MOV,
5449 IS_MEDIA_MOV_TO_R14, IS_COMPACT_IND_ARG_MOV, IS_COMPACT_ARG_MOV,
5450 IS_COMPACT_MOV_TO_R14, IS_JSR_R0, IS_NOP): New macros.
5451 (sh_sh64_register_name, sh64_elf_make_msymbol_special,
5452 pc_is_isa32, sh_sh64_breakpoint_from_pc, look_for_args_moves,
5453 sh64_skip_prologue_hard_way, sh64_use_struct_convention,
5454 gdb_print_insn_sh64, translate_insn_rn, sh64_frame_chain,
5455 sh64_get_saved_pr, fpp_reg_base_num, is_media_pseudo,
5456 sh64_get_gdb_regnum, sh64_media_reg_base_num,
5457 sh64_compact_reg_base_num, translate_rn_to_arch_reg_num,
5458 sign_extend, sh64_nofp_frame_init_saved_regs,
5459 sh64_init_extra_frame_info, sh64_get_saved_register,
5460 sh64_extract_struct_value_address, sh64_pop_frame,
5461 sh64_push_arguments, sh64_extract_return_value,
5462 sh64_store_return_value, sh64_show_media_regs,
5463 sh64_show_compact_regs, sh64_show_regs, sh_sh64_register_byte,
5464 sh_sh64_register_raw_size, sh_sh64_register_virtual_size,
5465 sh_sh64_register_virtual_type,
5466 sh_sh64_register_convert_to_virtual,
5467 sh_sh64_register_convert_to_raw, sh64_pseudo_register_read,
5468 sh64_register_read, sh64_pseudo_register_write,
5469 sh64_register_write, do_fv_c_register_info, do_dr_c_register_info,
5470 do_r_c_register_info, do_fpp_register_info, do_cr_c_register_info,
5471 sh64_do_pseudo_register, sh_compact_do_registers_info,
5472 sh64_do_registers_info, sh_gdbarch_init): New functions.
5473
5474 2002-05-10 Elena Zannoni <ezannoni@redhat.com>
5475
5476 * sh-tdep.c (sh_breakpoint_from_pc): Add 'const' to return type.
5477
5478 2002-05-10 Daniel Jacobowitz <drow@mvista.com>
5479
5480 * linespec.c (decode_line_1): Check for a double quote after
5481 a filename correctly.
5482
5483 2002-05-10 Jim Blandy <jimb@redhat.com>
5484
5485 Properly track the size of the current objfile's .debug_line section.
5486 * dwarf2read.c (struct dwarf2_pinfo): New member: dwarf_line_size.
5487 (DWARF_LINE_SIZE): New macro.
5488 (dwarf2_build_psymtabs_hard): Record the line section's size in
5489 the partial symbol table.
5490 (psymtab_to_symtab_1): Restore dwarf_line_size from the partial
5491 symbol table.
5492
5493 2002-05-10 Petr Sorfa <petrs@caldera.com>
5494
5495 * ia64-tdep.c: Handle breakpoints on L instruction type
5496 in MLX instruction bundle by moving the breakpoint to
5497 the third slot (X instruction type) as L holds only data.
5498
5499 2002-05-10 Kevin Buettner <kevinb@redhat.com>
5500
5501 * dbxread.c (discarding_local_symbols_complaint): New complaint.
5502 (process_one_symbol): Complain about discarding local symbols
5503 due to a misplaced N_LBRAC entry.
5504
5505 2002-05-09 Elena Zannoni <ezannoni@redhat.com>
5506
5507 From Daniel Berlin <dan@cgsoftware.com>
5508 * linespec.c (find_toplevel_char): '<' and '>' also increase and
5509 decrease the depth we are at, in the case of templates.
5510
5511 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
5512
5513 * mips-tdep.c (mips_float_register_type): New function.
5514 (mips_double_register_type): New function.
5515 (mips_print_register): Use them.
5516 (do_fp_register_row): Likewise.
5517
5518 2002-05-09 Daniel Jacobowitz <drow@mvista.com>
5519
5520 * signals/signals.c (signals): Remove conditional compilation around
5521 Mach-specific signals. Move them to after TARGET_SIGNAL_DEFAULT.
5522 (target_signal_from_name): Loop until TARGET_SIGNAL_LAST.
5523
5524 2002-05-09 Michael Snyder <msnyder@redhat.com>
5525
5526 * remote-rdp.c (remote_rdp_can_run): Remove.
5527
5528 2002-05-09 Tom Tromey <tromey@redhat.com>
5529
5530 * jv-valprint.c (java_val_print): Handle `char' as a special case
5531 of TYPE_CODE_INT.
5532
5533 2002-05-09 Michael Snyder <msnyder@redhat.com>
5534
5535 * arm-tdep.c (arm_scan_prologue): Accept strb r(0123),[r11,#-nn],
5536 strh r(0123),[r11,#-nn], str r(0123),[r11,#-nn], as well as
5537 strb r(0123),[sp,#nn], strh r(0123),[sp,#nn] and
5538 str r(0123),[sp,#nn].
5539 (arm_skip_prologue): Ditto. Also make disassembly
5540 order-independent by placing it in a loop.
5541
5542 2002-05-06 Michael Snyder <msnyder@redhat.com>
5543
5544 * stabsread.c (read_type): Add recognition for new attribute:
5545 "@V;" means that an array type is actually a vector.
5546 This is analogous to the vector flag that's been added to dwarf2.
5547
5548 2002-05-09 Mark Kettenis <kettenis@gnu.org>
5549
5550 * i386-tdep.h (i386_abi): New enum.
5551 (struct gdbarch_tdep): Replace os_ident member with abi.
5552 (i386_gdbarch_register_os_abi): New prototype.
5553 * i386-tdep.c (i386_abi_names): New array.
5554 (process_note_abi_tag_sections): Removed.
5555 (process_note_sections): New function.
5556 (i386_elf_abi_from_note, i386_elf_abi): New functions.
5557 (struct i386_abi_handler): New struct.
5558 (i386_abi_handler_list): New variable.
5559 (i386_gdbarch_register_os_abi): New function.
5560 (i386_gdbarch_init): Adapt for the changes given above.
5561
5562 2002-05-08 Daniel Jacobowitz <drow@mvista.com>
5563
5564 * gregset.h: Say "GNU/Linux".
5565
5566 2002-05-08 Elena Zannoni <ezannoni@redhat.com>
5567
5568 * gdbtypes.c : Add new builtin type for 64 bit vectors.
5569 (build_gdbtypes): Build builtin_type_v2_float.
5570 (_initialize_gdbtypes): Register new builtin type.
5571
5572 2002-05-08 Andrew Cagney <ac131313@redhat.com>
5573
5574 * gdbarch.sh (init_gdbarch_swap): Do not clear the swap section.
5575 (clear_gdbarch_swap): New function.
5576 (initialize_non_multiarch): Call.
5577 (gdbarch_update_p): Before calling init(), swap out and clear the
5578 existing architecture.
5579 * gdbarch.c: Regenerate.
5580
5581 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
5582
5583 * config/djgpp/fnchange.lst: Add alphanbsd-nat.c and
5584 alphanbsd-tdep.c.
5585
5586 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
5587
5588 * sh-nbsd-nat.c: Rename to...
5589 * shnbsd-nat.c: ...this.
5590 * sh-nbsd-tdep.c: Rename to...
5591 * shnbsd-tdep.c: ...this.
5592 * sh-nbsd-tdep.h: Rename to...
5593 * shnbsd-tdep.h: ...this.
5594 * config/sh/nbsd.mh: Use shnbsd-nat.o.
5595 * config/sh/nbsd.mt: Use shnbsd-tdep.o.
5596
5597 2002-05-08 Richard Earnshaw <rearnsha@arm.com>
5598
5599 * remote-rdi.c (_initializie_remote_rdi): Use ANSI-style string
5600 concatenation for command help messages.
5601
5602 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
5603
5604 * NEWS: Note new sh*-*-netbsdelf* configuration.
5605 * configure.host: Set gdb_host_cpu to sh for all sh*.
5606 (sh*-*-netbsdelf*): New host.
5607 * configure.tgt: Set gdb_target_cpu to sh for all sh*.
5608 (sh*-*-netbsdelf*): New target.
5609 * sh-nbsd-nat.c: New file.
5610 * sh-nbsd-tdep.c: New file.
5611 * sh-nbsd-tdep.h: New file.
5612 * config/sh/nbsd.mh: New file.
5613 * config/sh/nbsd.mt: New file.
5614 * config/sh/nm-nbsd.h: New file.
5615 * config/sh/tm-nbsd.h: New file.
5616
5617 2002-05-08 Jason Thorpe <thorpej@wasabisystems.com>
5618
5619 * sh-tdep.c (sh_osabi_names): Declare.
5620 (process_note_abi_tag_sections): New function.
5621 (get_elfosabi): Ditto.
5622 (sh_gdbarch_register_os_abi): Ditto.
5623 (sh_dump_tdep): Ditto.
5624 _initialize_sh_tdep): Use gdbarch_register to register
5625 sh_gdbarch_init and sh_dump_tdep.
5626 * config/sh/tm-sh.h (sh_osabi): Declare.
5627 (gdbarch_tdep): Add sh_osabi and osabi_name members.
5628
5629 2002-05-07 Andrew Cagney <ac131313@redhat.com>
5630
5631 * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames.
5632 (thumb_scan_prologue): Ditto.
5633 (arm_find_callers_reg): Ditto.
5634 (arm_frame_chain): Ditto.
5635 (arm_init_extra_frame_info): Ditto.
5636 (arm_frame_saved_pc): Ditto.
5637 (arm_pop_frame): Ditto.
5638 (arm_push_return_address): New function.
5639 (arm_gdbarch_init): Initialize use_generic_dummy_frames,
5640 call_dummy_location, call_dummy_breakpoint_offset_p,
5641 call_dummy_breakpoint_offset, call_dummy_p,
5642 call_dummy_stack_adjust_p, call_dummy_words,
5643 sizeof_call_dummy_words, call_dummy_start_offset,
5644 call_dummy_length, fix_call_dummy, pc_in_call_dummy,
5645 call_dummy_address, push_return_address and push_dummy_frame for
5646 generic dummy frames.
5647
5648 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
5649
5650 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Fix error in
5651 size computation for alloca.
5652 (sh_fp_frame_init_saved_regs): Likewise.
5653
5654 2002-05-07 Richard Earnshaw <rearnsha@arm.com>
5655
5656 * arm-tdep.h (ARM_MAX_REGISTER_RAW_SIZE): Define.
5657 (ARM_MAX_REGISTER_VIRTUAL_SIZE): Define.
5658 * arm-tdep.c (arm_store_return_value): Use them.
5659 Use FP_REGISTER_RAW_SIZE when setting the FPA return value.
5660 * remote-rdp.c (remote_rdp_fetch_register): Use
5661 ARM_MAX_REGISTER_RAW_SIZE.
5662 (remote_rdp_store_register): Likewise.
5663
5664 2002-05-07 Michal Ludvig <mludvig@suse.cz>
5665
5666 * dwarf2cfi.c: Code cleanup, removed unused variables,
5667 added default labels to switch {} statements.
5668 * x86-64-tdep.c: Ditto.
5669 * x86-64-linux-nat.c: Ditto.
5670
5671 2002-05-07 Jason Thorpe <thorpej@wasabisystems.com>
5672
5673 * solib.h: Protect against multiple inclusion.
5674
5675 2002-05-06 Jim Blandy <jimb@redhat.com>
5676
5677 Add first preprocessor macro-expansion files.
5678 * macroexp.c, macroexp.h, macrotab.c, macrotab.h: New files.
5679 * Makefile.in (SFILES): Add macrotab.c, macroexp.c.
5680 (splay_tree_h, macroexp_h, macrotab_h): New variable.
5681 (HFILES_NO_SRCDIR): Add macrotab.h, macroexp.h.
5682 (COMMON_OBS): Add macrotab.o, macroexp.o.
5683 (macroexp.o, macrotab.o): New rules.
5684
5685 Separate the job of reading the line number info statement program
5686 header (...expialidocious) out into its own function.
5687 * dwarf2read.c (struct line_head, struct filenames, struct
5688 directories): Replace with...
5689 (struct line_header): New structure, containing the full
5690 contents of the statement program header, including the
5691 include directory and file name tables.
5692 (read_file_scope): If we have line number info, instead of just
5693 calling dwarf_decode_lines to do all the work, call
5694 dwarf_decode_line_header first to get a `struct line_header'
5695 containing the data in the statement program header, and then
5696 pass that to dwarf_decode_lines, which will pick up where that
5697 left off. Be sure to clean up the `struct line_header' object.
5698 (dwarf_decode_line_header, free_line_header, add_include_dir,
5699 add_file_name): New functions.
5700 (dwarf_decode_lines): Move all the code to read the statement
5701 program header into dwarf_decode_line_header. Take the line
5702 header it built as the first argument, instead of the offset to
5703 the compilation unit's line number info. Use the new `struct
5704 line_header' type instead of the old structures. No need to do
5705 cleanups here now, since we don't allocate anything.
5706 (dwarf2_statement_list_fits_in_line_number_section,
5707 dwarf2_line_header_too_long): New complaints.
5708
5709 2002-05-06 Elena Zannoni <ezannoni@redhat.com>
5710
5711 * gdbtypes.c (init_vector_type): New function.
5712 (build_builtin_type_vec128): Simplify the representation of SIMD
5713 registers.
5714 (build_gdbtypes): Initialize new builtin vector types.
5715 (_initialize_gdbtypes): Register new vector types with gdbarch.
5716 (builtin_type_v4_float, builtin_type_v4_int32,
5717 builtin_type_v8_int16, builtin_type_v16_int8,
5718 builtin_type_v2_int32, builtin_type_v4_int16,
5719 builtin_type_v8_int8): New (renamed) SIMD types.
5720
5721 2002-05-06 Mark Kettenis <kettenis@gnu.org>
5722
5723 * i387-nat.c (i387_fill_fsave): Use regcache_collect.
5724 (i387_fill_fxsave): Likewise.
5725
5726 2002-05-05 Alexandre Oliva <aoliva@redhat.com>
5727
5728 * alpha-tdep.c (alpha_extract_return_value): Don't use
5729 non-constant array size in prototype.
5730
5731 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5732
5733 From Brian Taylor <briant at model dot com>:
5734 * ui-out.c (ui_out_field_core_addr): Use the function
5735 longest_local_hex_string_custom'to format addresses > 32 bits
5736 wide.
5737
5738 * ui-out.c (ui_out_field_core_addr): Update comment.
5739
5740 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5741
5742 * stack.c (select_and_print_frame): Make static. Delete the
5743 parameter `level'.
5744 (func_command): Update call.
5745 (select_frame_command): Delete code computing the frame level.
5746 * frame.h (select_and_print_frame): Delete declaration.
5747
5748 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5749
5750 * sparc-tdep.c (sparc_get_saved_register): Comment why
5751 get_prev_frame call is safe.
5752
5753 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5754
5755 * frame.h (select_frame): Delete level parameter.
5756 * stack.c (select_frame): Update. Use frame_relative_level to
5757 obtain the frame's level.
5758 (select_and_print_frame): Update call.
5759 (select_frame_command): Ditto.
5760 (up_silently_base): Ditto.
5761 (down_silently_base): Ditto.
5762 * ocd.c (ocd_start_remote): Ditto.
5763 * remote-rdp.c (remote_rdp_open): Ditto.
5764 * remote-mips.c (mips_initialize): Ditto.
5765 (common_open): Ditto.
5766 * remote-e7000.c (e7000_start_remote): Ditto.
5767 * m3-nat.c (select_thread): Ditto.
5768 * hppa-tdep.c (child_get_current_exception_event): Ditto.
5769 (child_get_current_exception_event): Ditto.
5770 * varobj.c (varobj_create): Ditto.
5771 (varobj_update): Ditto.
5772 (c_value_of_root): Ditto.
5773 * tracepoint.c (finish_tfind_command): Ditto.
5774 * corelow.c (core_open): Ditto.
5775 * arch-utils.c (generic_prepare_to_proceed): Ditto.
5776 * thread.c (info_threads_command): Ditto.
5777 (switch_to_thread): Ditto.
5778 * infrun.c (normal_stop): Ditto.
5779 (restore_selected_frame): Ditto.
5780 (restore_inferior_status): Ditto.
5781 * breakpoint.c (insert_breakpoints): Ditto.
5782 (watchpoint_check): Ditto.
5783 (bpstat_stop_status): Ditto.
5784 (do_enable_breakpoint): Ditto.
5785 * blockframe.c (flush_cached_frames): Ditto.
5786 (reinit_frame_cache): Ditto.
5787
5788 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5789
5790 * MAINTAINERS (Host/Native): Add Jason Thorpe as NetBSD
5791 maintainer.
5792
5793 2002-05-04 Jim Blandy <jimb@redhat.com>
5794
5795 * gdbtypes.c (replace_type): Doc fix.
5796
5797 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5798
5799 * valprint.c (strcat_longest): Delete commented out function.
5800 Update copyright.
5801
5802 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5803
5804 * MAINTAINERS: Mark a29k as deleted.
5805 * NEWS: Mention that a29k was removed. Add OBSOLETE section.
5806 Move new configurations to the top.
5807 * configure.tgt: Remove a29k.
5808 * config/a29k/tm-vx29k.h: Delete.
5809 * config/a29k/vx29k.mt: Delete.
5810 * config/a29k/tm-a29k.h: Delete.
5811 * config/a29k/a29k-udi.mt: Delete.
5812 * config/a29k/a29k.mt: Delete.
5813 * a29k-tdep.c: Delete.
5814 * remote-udi.c: Delete.
5815 * remote-mm.c: Delete.
5816 * remote-eb.c: Delete.
5817 * remote-adapt.c: Delete.
5818 * Makefile.in: Remove obsolete code.
5819 * config/s390/s390x.mt: Ditto.
5820 * config/s390/s390.mt: Ditto.
5821 * config/sparc/sparclynx.mh: Ditto.
5822 * config/sparc/linux.mh: Ditto.
5823 * config/pa/hppaosf.mh: Ditto.
5824 * config/pa/hppabsd.mh: Ditto.
5825 * config/ns32k/nbsd.mt: Ditto.
5826 * config/mips/vr5000.mt: Ditto.
5827 * config/m68k/sun3os4.mh: Ditto.
5828 * config/m68k/nbsd.mt: Ditto.
5829 * config/m68k/m68klynx.mh: Ditto.
5830 * config/m32r/m32r.mt: Ditto.
5831 * config/i386/x86-64linux.mt: Ditto.
5832 * config/i386/nbsdelf.mt: Ditto.
5833 * config/i386/nbsd.mt: Ditto.
5834 * config/i386/i386lynx.mh: Ditto.
5835
5836 2002-05-04 Andrew Cagney <ac131313@redhat.com>
5837
5838 * target.c (debug_print_register): New function. Handle oversize
5839 registers.
5840 (debug_to_fetch_registers): Call.
5841 (debug_to_store_registers): Call.
5842
5843 2002-05-03 Jim Blandy <jimb@redhat.com>
5844
5845 * stabsread.c (cleanup_undefined_types): Use replace_type, not memcpy.
5846 (read_type): Doc fix.
5847 * gdbtypes.c (replace_type): Doc fix.
5848
5849 * stabsread.c (multiply_defined_struct): New complaint.
5850 (read_struct_type): If the type we were passed isn't empty, or
5851 incomplete, don't read the new struct type into it; complain,
5852 and return the original type unchanged. Take a new `type_code'
5853 argument, which is the type code for the new type.
5854 (read_type): Rather than storing the type's type code here, pass
5855 it as an argument to read_struct_type, and let that take care of
5856 storing it. That way, we don't overwrite the original type code,
5857 so read_struct_type can use it to decide whether we're overwriting
5858 something we shouldn't.
5859 (complain_about_struct_wipeout): New function.
5860
5861 2002-05-03 Andrew Cagney <ac131313@redhat.com>
5862
5863 * gdbarch.sh: Assert that gdbarch is non-NULL.
5864 * gdbarch.c: Regenerate.
5865
5866 2002-05-03 Jason Merrill <jason@redhat.com>
5867
5868 * gnu-v3-abi.c (gnuv3_rtti_type): If we get confused, just warn
5869 and return NULL.
5870
5871 2002-05-03 Michal Ludvig <mludvig@suse.cz>
5872
5873 * x86-64-tdep.c (x86_64_dwarf2gdb_regno_map),
5874 (x86_64_dwarf2gdb_regno_map_length),
5875 (x86_64_dwarf2_reg_to_regnum): Added.
5876 (x86_64_gdbarch_init): Added registration of x86_64_dwarf2_reg_to_regnum.
5877 (x86_64_gdbarch_init): Renamed from i386_gdbarch_init.
5878 (_initialize_x86_64_tdep): Synced with the change above.
5879 (x86_64_skip_prologue): Reformulated message.
5880
5881 2002-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
5882
5883 * f-exp.y: Also use new prev_lexptr variable
5884 to improve error reporting. Based on Michael Snyder
5885 2002-04-24 dated patch to c-exp.y.
5886 * jv-exp.y: Likewise.
5887 * m2-exp.y: Likewise.
5888
5889 2002-05-02 Elena Zannoni <ezannoni@redhat.com>
5890
5891 * valops.c (value_arg_coerce): Don't coerce arrays to pointers if
5892 we are dealing with vectors.
5893
5894 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
5895
5896 * config/m68k/tm-nbsd.h: Obvious fix,
5897 correct machine name.
5898
5899 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
5900
5901 * p-typeprint.c (pascal_type_print_base): Add support
5902 for TYPE_CODE_STRING and TYPE_CODE_BITSTRING.
5903
5904 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
5905
5906 * p-lang.c (pascal_create_fundamental_type): Use TYPE_CODE_CHAR
5907 for fondamental pascal 'char' type.
5908
5909 2002-05-02 Pierre Muller <muller@ics.u-strasbg.fr>
5910
5911 * p-lang.h (is_pascal_string_type): Declaration changed,
5912 new sixth argument of type char ** added.
5913 * p-lang.c (is_pascal_string_type): Implementation
5914 changed. Args length_pos, length_size, string_pos, char_size
5915 can now be NULL. New argument arrayname set to the field
5916 name of the char array. Return value set to char array
5917 field index plus one.
5918 * p-valprint.c (pascal_val_print): Adapt to new declaration of
5919 is_pascal_string_type function.
5920
5921 2002-05-02 Andrew Cagney <cagney@redhat.com>
5922
5923 * gdbarch.sh (gdbarch_update_p): Revert 2002-05-02 Andrew Cagney
5924 <cagney@redhat.com> change.
5925 * gdbarch.c: Regenerate.
5926
5927 2002-05-02 Andrew Cagney <cagney@redhat.com>
5928
5929 * gdbarch.sh (gdbarch_update_p): Swap out the old architecture
5930 before probing for a new one. Detect errorenous gdbarch_init
5931 functions.
5932 * gdbarch.c: Regenerate.
5933
5934 2002-05-01 Andrew Cagney <cagney@redhat.com>
5935
5936 * config/mn10200/tm-mn10200.h: Include "symfile.h" and "symtab.h".
5937 * config/mcore/tm-mcore.h: Ditto. Update copyright.
5938 * config/v850/tm-v850.h: Ditto. Update copyright.
5939
5940 2002-04-30 Andrew Cagney <ac131313@redhat.com>
5941
5942 * cris-tdep.c (cris_gdbarch_init): Use arches instead of
5943 current_gdbarch.
5944
5945 2002-04-30 Michael Snyder <msnyder@redhat.com>
5946
5947 * arm-tdep.c: Whitespace clean-ups.
5948 (arm_skip_prologue): Fix thinko; two lines
5949 should have been removed as part of 4/24 change.
5950
5951 2002-04-30 Kevin Buettner <kevinb@redhat.com>
5952
5953 * rs6000-tdep.c: Added comment describing how fpscr register
5954 numbers were chosen.
5955
5956 2002-04-30 Michael Snyder <msnyder@redhat.com>
5957
5958 * gnu-nat.c (gnu_find_memory_regions): Fix merge botch.
5959
5960 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
5961
5962 * hpread.c (DNTT_TYPE_VECTOR): Rename from TYPE_VECTOR.
5963 (DNTT_TYPE_VECTOR_LENGTH): Rename from TYPE_VECTOR_LENGTH.
5964 (hpread_symfile_init, hpread_lookup_type): Substitute throughout.
5965
5966 2002-04-29 Kevin Buettner <kevinb@redhat.com>
5967
5968 From Louis Hamilton <hamilton@redhat.com>:
5969 * rs6000-tdep.c (coff/xcoff.h, libxcoff.h): Include.
5970 * xcoffread.c (coff/xcoff.h, libxcoff.h): Likewise.
5971 * rs6000-tdep.c (rs6000_gdbarch_init): Use bfd_xcoff_is_xcoff64(),
5972 not bfd-private xcoff data, to determine wordsize.
5973 * xcoffread.c (read_xcoff_xymtab, read_symbol_lineno): Likewise.
5974
5975 2002-04-29 Andrew Cagney <ac131313@redhat.com>
5976
5977 GDB 5.2 released from 5.2 branch.
5978
5979 2002-04-29 Michal Ludvig <mludvig@suse.cz>
5980
5981 * x86-64-linux-nat.c (fill_gregset): Explicit cast to avoid warning.
5982 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
5983 (x86_64_register_info_table): Added comments with register numbers.
5984
5985 2002-04-29 Elena Zannoni <ezannoni@redhat.com>
5986
5987 * rs6000-tdep.c (rs6000_extract_return_value,
5988 rs6000_store_return_value): Handle returning vectors.
5989 (rs6000_gdbarch_init): Use
5990 ppc_sysv_abi_broken_use_struct_convention for native sysv cases.
5991 * ppc-linux-tdep.c (ppc_sysv_abi_broken_use_struct_convention):
5992 New function.
5993 (ppc_sysv_abi_use_struct_convention): Deal with functions returning
5994 vectors.
5995 (ppc_sysv_abi_push_arguments): Handle vector parameters.
5996 * ppc-tdep.h (ppc_sysv_abi_broken_use_struct_convention): Export.
5997
5998 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
5999
6000 * hpread.c (hpread_psymtab_to_symtab_1,
6001 hpread_psymtab_to_symtab): Replace fprintf tab_to_s...)
6002 with fprintf_unfiltered (gdb_stderr,...).
6003
6004 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
6005
6006 * remote-array.c (printf_monitor, write_monitor,
6007 array_insert_breakpoint, array_remove_breakpoint ):
6008 Replace fprintf (stderr,...
6009 with fprintf_unfiltered (gdb_stderr,....
6010 * remote-es.c: Likewise.
6011 * remote-os9k.c: Likewise.
6012 * remote-st.c: Likewise.
6013
6014 2002-04-28 Andreas Schwab <schwab@suse.de>
6015
6016 * config/s390/s390.mh (NATDEPFILES): Remove solib.o, add
6017 linux-proc.o and gcore.o.
6018
6019 2002-04-26 Michal Ludvig <mludvig@suse.cz>
6020
6021 * x86-64-tdep.c (x86_64_skip_prologue): Print note when debugging
6022 code without frame pointers.
6023
6024 2002-04-26 Andrew Cagney <ac131313@redhat.com>
6025
6026 * sparc-tdep.c (sparc_gdbarch_init): Add comment explaining why
6027 ON_STACK is needed.
6028
6029 2002-04-26 Ben Elliston <bje@redhat.com>
6030
6031 * target.c (do_xfer_memory): Correct reference to the new option
6032 "trust-readonly-sections".
6033
6034 2002-04-26 Elena Zannoni <ezannoni@redhat.com>
6035
6036 * gdbtypes.h (TYPE_FLAG_VECTOR, TYPE_VECTOR): Define.
6037 * gdbtypes.c (recursive_dump_type): Output the vector flag.
6038 * dwarf2read.c (dwarf_attr_name): Handle new attribute for
6039 vectors.
6040 (read_array_type): Record the fact that this array type is really a
6041 vector (i.e. are passed in by value).
6042
6043 2002-04-26 Jason Thorpe <thorpej@wasabisystems.com>
6044
6045 * alpha-tdep.h (gdbarch_tdep): Add sigcontext_addr member.
6046 * alpha-tdep.c (alpha_sigcontext_addr): New function.
6047 (alpha_find_saved_regs): Use alpha_sigcontext_addr.
6048 (alpha_gdbarch_init): Initialize tdep->sigcontext_addr.
6049 * alpha-linux-tdep.c: Include frame.h.
6050 (alpha_linux_sigcontext_addr): New function.
6051 (alpha_linux_init_abi): Set tdep->sigcontext_addr to
6052 alpha_linux_sigcontext_addr.
6053 * alpha-osf1-tdep.c: Include gdbcore.h.
6054 (alpha_osf1_sigcontext_addr): New function.
6055 (alpha_osf1_init_abi): Set tdep->sigcontext_addr to
6056 alpha_osf1_sigcontext_addr.
6057 * config/alpha/tm-alpha.h (SIGCONTEXT_ADDR): Remove.
6058 * config/alpha/tm-alphalinux.h (SIGCONTEXT_ADDR): Remove.
6059
6060 2002-04-26 Andrew Cagney <ac131313@redhat.com>
6061
6062 * stack.c (selected_frame_level):
6063 (select_frame): Do not set selected_frame_level.
6064 * frame.h (selected_frame_level): Delete declaration.
6065
6066 2002-04-26 Andrew Cagney <ac131313@redhat.com>
6067
6068 * rs6000-tdep.c (rs6000_gdbarch_init): Only set
6069 convert_from_func_ptr-addr when AIX / PowerOpen.
6070
6071 2002-04-25 Andrew Cagney <ac131313@redhat.com>
6072
6073 * valops.c (hand_function_call): Call
6074 generic_save_call_dummy_addr.
6075 * frame.h (generic_save_call_dummy_addr): Declare.
6076 * blockframe.c (struct dummy_frame): Add fields call_lo and
6077 call_hi.
6078 (generic_find_dummy_frame): Check for PC in range call_lo to
6079 call_hi instead of entry_point_address.
6080 (generic_pc_in_call_dummy): Search the dummy frames for a PC in
6081 the call_lo to call_hi range. Allow for DECR_PC_AFTER_BREAK.
6082 (generic_save_call_dummy_addr): New function.
6083
6084 2002-04-24 David S. Miller <davem@redhat.com>
6085
6086 * sparc-tdep.c (sparc_gdbarch_skip_prologue): Kill, duplicates
6087 sparc_skip_prologue.
6088 (sparc_skip_prologue): Kill frameless_p arg, and use line number
6089 information to find prologue when possible.
6090 (sparc_prologue_frameless_p): Call examine_prologue directly.
6091 (sparc_gdbarch_init): Update set_gdbarch_skip_prologue call.
6092 * config/sparc/tm-sparc.h (sparc_skip_prologue): Update for killed
6093 second argument.
6094 (SKIP_PROLOGUE): Likewise.
6095
6096 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6097
6098 * alpha-tdep.c (alpha_skip_prologue_internal): Remove
6099 GDB_TARGET_HAS_SHARED_LIBS #ifdef and update comment to
6100 indicate that the condition it was testing is always true.
6101 * config/alpha/nm-linux.h (GDB_TARGET_HAS_SHARED_LIBS): Remove.
6102 * config/alpha/nm-nbsd.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6103 * config/alpha/nm-osf.h (GDB_TARGET_HAS_SHARED_LIBS): Ditto.
6104
6105 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6106
6107 * alpha-tdep.h (gdbarch_tdep): Add jb_pc and jb_elt_size members.
6108 * alpha-linux-tdep.c (alpha_linux_init_abi): Initialize
6109 tdep->jb_pc and tdep->jb_elt_size.
6110 * alpha-osf1-tdep.c (alpha_osf1_init_abi): Likewise.
6111 * alphafbsd-tdep.c (alphafbsd_init_abi): Likewise.
6112 * alphanbsd-tdep.c (alphanbsd_init_abi): Likewise.
6113 * alpha-nat.c (get_longjmp_target): Remove.
6114 (JB_ELEMENT_SIZE): Ditto.
6115 (JB_PC): Ditto.
6116 * alpha-tdep.c (alpha_get_longjmp_target): New function.
6117 (alpha_gdbarch_init): Default tdep->jb_pc to -1. If the
6118 OS ABI sets jb_pc to a valid value, set gdbarch_get_longjmp_target
6119 to alpha_get_longjmp_target.
6120 (alpha_dump_tdep): Report tdep->jb_pc and tdep->jb_elt_size.
6121 * config/alpha/nm-linux.h (GET_LONGJMP_TARGET): Remove.
6122 * config/alpha/nm-osf.h (GET_LONGJMP_TARGET): Remove.
6123
6124 2002-04-25 Andrew Cagney <ac131313@redhat.com>
6125
6126 * README: Update to GDB 5.2.
6127
6128 2002-04-25 Andrew Cagney <ac131313@redhat.com>
6129
6130 * gdbarch.sh (LC_ALL): Set to `c'.
6131
6132 2002-04-25 Theodore A. Roth <troth@verinet.com>
6133
6134 * avr-tdep.c: Ran through gdb_indent.sh.
6135
6136 2002-04-25 Theodore A. Roth <troth@verinet.com>
6137
6138 * MAINTAINERS: Add myself as AVR maintainer.
6139 * NEWS: Note new target avr.
6140
6141 2002-04-25 Theodore A. Roth <troth@verinet.com>
6142
6143 * Makefile.in: Add support for AVR target.
6144 * configure.tgt: Add support for AVR target.
6145 * avr-tdep.c: New file
6146 * config/avr/avr.mt: New file.
6147
6148 2002-04-25 Theodore A. Roth <troth@verinet.com>
6149
6150 * MAINTAINERS: Add myself to write-after-approval.
6151
6152 2002-04-24 Pierre Muller <ics.u-strasbg.fr>
6153
6154 * f-lang.c (get_bf_for_fcn): Replace fprintf (stderr,...
6155 with fprintf_unfiltered (gdb_stderr,....
6156
6157 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
6158
6159 Fix PR gdb/508.
6160 * symfile.c (add_filename_language): Fix wrong xrealloc size argument.
6161
6162 2002-04-25 Pierre Muller <muller@ics.u-strasbg.fr>
6163
6164 * p-exp.y: Also use new prev_lexptr variable
6165 to improve error reporting. Based on Michael Snyder
6166 2002-04-24 dated patch to c-exp.y.
6167
6168 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6169
6170 * alpha-tdep.c (alpha_breakpoint_from_pc): New function.
6171 (alpha_gdbarch_init): Set gdbarch_breakpoint_from_pc to
6172 alpha_breakpoint_from_pc. Set gdbarch_function_start_offset
6173 to 0.
6174 * config/alpha/tm-alpha.h: Remove forward decls of struct type
6175 and struct value.
6176 (FUNCTION_START_OFFSET): Remove.
6177 (BREAKPOINT): Ditto.
6178
6179 2002-04-25 Jason Thorpe <thorpej@wasabisystems.com>
6180
6181 * MAINTAINERS: Reflect that multi-arch is enabled for VAX.
6182 * NEWS: Ditto.
6183
6184 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6185
6186 * alpha-linux-tdep.c (alpha_linux_pc_in_sigtramp): New function.
6187 (alpha_linux_init_abi): Set gdbarch_pc_in_sigtramp to
6188 alpha_linux_pc_in_sigtramp.
6189 * alpha-osf1-tdep.c (alpha_osf1_pc_in_sigtramp): New function.
6190 (alpha_osf1_init_abi): Set gdbarch_pc_in_sigtramp to
6191 alpha_osf1_pc_in_sigtramp.
6192 * alpha-tdep.c (alpha_osf_in_sigtramp): Remove.
6193 * alphafbsd-tdep.c (alphafbsd_pc_in_sigtramp): New function.
6194 (alphafbsd_init_abi): Set gdbarch_pc_in_sigtramp to
6195 alphafbsd_pc_in_sigtramp.
6196 * alphanbsd-tdep.c (alphanbsd_pc_in_sigtramp): New function.
6197 (alphanbsd_init_abi): Set gdbarch_pc_in_sigtramp to
6198 alphanbsd_pc_in_sigtramp.
6199 * config/alpha/tm-alpha.h (IN_SIGTRAMP): Remove.
6200 * config/alpha/tm-alphalinux.h (IN_SIGTRAMP): Remove.
6201
6202 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6203
6204 * config/alpha/nbsd.mh (NATDEPFILES): Remove solib-legacy.o.
6205
6206 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6207
6208 * Makefile.in (ALLDEPFILES): Add alphanbsd-nat.c and
6209 alphanbsd-tdep.c.
6210 (alphanbsd-nat.o): New dependency list.
6211 (alphanbsd-tdep.o): Ditto.
6212 * NEWS: Note new native NetBSD/alpha configuration.
6213 * alphanbsd-nat.c: New file.
6214 * alphanbsd-tdep.c: Ditto.
6215 * configure.host (alpha*-*-netbsd*): New host.
6216 * configure.tgt (alpha*-*-netbsd*): New target.
6217 * config/alpha/nbsd.mh: New file.
6218 * config/alpha/nbsd.mt: Ditto.
6219 * config/alpha/nm-nbsd.h: Ditto.
6220 * config/alpha/tm-nbsd.h: Ditto.
6221
6222 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6223
6224 * Makefile.in (ALLDEPFILES): Add alpha-osf1-tdep.c.
6225 (alpha-osf1-tdep.o): New dependency list.
6226 * alpha-tdep.h (gdbarch_tdep): Add dynamic_sigtramp_offset
6227 and skip_sigtramp_frame members.
6228 * alpha-linux-tdep.c: Include gdbcore.h.
6229 (alpha_linux_sigtramp_offset): Change return type to LONGEST.
6230 (alpha_linux_init_abi): Initialize tdep->dynamic_sigtramp_offset.
6231 * alpha-osf1-tdep.c: New file.
6232 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Moved to
6233 alpha-osf1-dep.c.
6234 (alpha_frame_past_sigtramp_frame): New function.
6235 (alpha_dynamic_sigtramp_offset): Ditto.
6236 (alpha_proc_desc_is_dyn_sigtramp): Ditto.
6237 (alpha_set_proc_desc_is_dyn_sigtramp): Ditto.
6238 (ALPHA_PROC_SIGTRAMP_MAGIC): Define.
6239 (push_sigtramp_desc): Use alpha_set_proc_desc_is_dyn_sigtramp.
6240 (after_prologue): Use alpha_proc_desc_is_dyn_sigtramp.
6241 (find_proc_desc): Use alpha_dynamic_sigtramp_offset.
6242 (alpha_frame_chain): Use alpha_frame_past_sigtramp_frame.
6243 (alpha_init_extra_frame_info): Use alpha_proc_desc_is_dyn_sigtramp.
6244 (alpha_pop_frame): Use alpha_proc_desc_is_dyn_sigtramp.
6245 (alpha_gdbarch_init): Initialize tdep->dynamic_sigtramp_offset
6246 and tdep->skip_sigtramp_frame. Set gdbarch_skip_trampoline_code
6247 to find_solib_trampoline_target.
6248 * config/alpha/alpha-osf1.mt (TDEPFILES): Add alpha-osf1-tdep.o.
6249 * config/alpha/tm-alpha.h: Remove inclusion of regcache.h.
6250 (SKIP_TRAMPOLINE_CODE): Remove.
6251 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6252 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6253 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
6254 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
6255 * config/alpha/tm-alphalinux.h (PROC_DESC_IS_DYN_SIGTRAMP): Remove.
6256 (PROC_SIGTRAMP_MAGIC): Ditto.
6257 (PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6258 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6259 (SET_PROC_DESC_IS_DYN_SIGTRAMP): Ditto.
6260 (DYNAMIC_SIGTRAMP_OFFSET): Ditto.
6261 (FRAME_PAST_SIGTRAMP_FRAME): Ditto.
6262
6263 2002-04-24 Jason Thorpe <thorpej@wasabisystems.com>
6264
6265 * NEWS: Note that Alpha targets are now multi-arch.
6266
6267 2002-04-24 Michael Snyder <msnyder@redhat.com>
6268
6269 * parser-defs.h (prev_lexptr): New external variable.
6270 * parse.c (parse_exp_1): Set prev_lexptr to null before
6271 calling the language-specific parser.
6272 * c-exp.y (yylex): Set prev_lexptr to start of current token.
6273 (yyerror): Use prev_lexptr in error reporting.
6274
6275 2002-04-24 Daniel Jacobowitz <drow@mvista.com>
6276
6277 * config/i386/tm-linux.h: Define FILL_FPXREGSET.
6278 * gregset.h: If FILL_FPXREGSET is defined, provide
6279 gdb_fpxregset_t, supply_fpxregset, and fill_fpxregset.
6280 * linux-proc.c (linux_do_thread_registers): If FILL_FPXREGSET
6281 is defined, call fill_fpxregset.
6282
6283 2002-04-24 Roland McGrath <roland@frob.com>
6284
6285 * config/i386/i386gnu.mh (NATDEPFILES): Add core-regset.o here.
6286 * i386gnu-nat.c [HAVE_SYS_PROCFS_H]
6287 (supply_gregset, supply_fpregset): New functions.
6288
6289 * gnu-nat.c (gnu_find_memory_regions): New function.
6290 (init_gnu_ops): Set `to_find_memory_regions' hook to that.
6291 (gnu_xfer_memory): Add a cast.
6292
6293 2002-04-24 Michael Snyder <msnyder@redhat.com>
6294
6295 * arm-tdep.c (arm_scan_prologue): Move "mov ip, sp" into the
6296 loop. Add handling for "str lr, [sp, #-4]!" and for saves
6297 of argument regs ("str r(0123), [r11, #-nn"]).
6298 (arm_skip_prologue): Better handling for frameless functions.
6299 Treat "mov ip, sp" as optional. Recognize "str lr, [sp, #-4]".
6300 (arm_skip_prologue): Recognize str r(0123), [r11, #-nn].
6301
6302 Wed Apr 24 14:22:21 2002 Andrew Cagney <cagney@redhat.com>
6303
6304 * arm-tdep.c (arm_gdbarch_init): Add comment that NUM_REGS nor
6305 NUM_PSEUDO_REGS can be used.
6306
6307 2002-04-24 Andrew Cagney <ac131313@redhat.com>
6308
6309 * arch-utils.h: Update copyright.
6310
6311 * gdbarch.sh (PC_IN_SIGTRAMP): Add.
6312 * gdbarch.h, gdbarch.c: Re-generate.
6313
6314 * inferior.h (IN_SIGTRAMP): Delete definition.
6315 * arch-utils.c (legacy_pc_in_sigtramp): New function.
6316 * arch-utils.h (legacy_pc_in_sigtramp): Declare.
6317
6318 * mips-tdep.c (mips_init_extra_frame_info): Use PC_IN_SIGTRAMP.
6319 (mips_dump_tdep): Do not print value of IN_SIGTRAMP.
6320 * hppa-tdep.c (pc_in_interrupt_handler): Use PC_IN_SIGTRAMP.
6321 (find_proc_framesize): Ditto.
6322 * alpha-tdep.c (alpha_osf_skip_sigtramp_frame): Ditto.
6323 (alpha_init_extra_frame_info): Ditto.
6324 * infrun.c (handle_inferior_event): Ditto.
6325 (handle_inferior_event): Ditto.
6326 (check_sigtramp2): Ditto.
6327 * blockframe.c (create_new_frame): Ditto.
6328 (get_prev_frame): Ditto.
6329 * ppc-linux-tdep.c: Update comments.
6330 * i386-linux-tdep.c: Update comments.
6331 * breakpoint.c (bpstat_what): Update comment.
6332
6333 2002-04-24 David S. Miller <davem@redhat.com>
6334
6335 * i960-tdep.c (register_in_window_p): New function.
6336 (i960_find_saved_register): Use it instead of
6337 REGISTER_IN_WINDOW_P.
6338 * config/i960/tm-i960.h (REGISTER_IN_WINDOW): Delete.
6339
6340 * symtab.h (find_stab_function_addr): Kill extern.
6341 * minsyms.c (find_stab_function_addr): Remove from here...
6342 * dbxread.c: ... to here, and mark it static.
6343
6344 2002-04-20 David S. Miller <davem@redhat.com>
6345
6346 * sparc-tdep.c (sparc_pop_frame): Only need to allocate
6347 SPARC_INTREG_SIZE * 16 bytes for reg_temp.
6348
6349 2002-04-21 David S. Miller <davem@redhat.com>
6350
6351 * remote-vxsparc.c (vx_read_register): Fix typo, we want
6352 REGISTER_RAW_SIZE of SP_REGNUM not CORE_ADDR.
6353 (vx_write_register): Likewise.
6354
6355 2002-04-23 J. Brobecker <brobecker@gnat.com>
6356
6357 * source.c (is_regular_file): New function.
6358 (openp): Check wether file to open is a regular file
6359 to avoid opening directories.
6360
6361 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6362
6363 * findvar.c (extract_signed_integer): Cast printf argument
6364 to suppress format warning.
6365 (extract_unsigned_integer): Likewise.
6366 * infcmd.c (registers_info): Likewise.
6367 * top.c (get_prompt_1): Likewise.
6368 * valops.c (value_assign): Likewise.
6369 * valprint.c (print_decimal): Likewise.
6370
6371 2002-04-22 H.J. Lu (hjl@gnu.org)
6372
6373 * c-exp.y (typebase): Support
6374
6375 [long|long long|short] [signed|unsigned] [int|]
6376
6377 and
6378
6379 signed [long|long long|short] int
6380
6381 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6382
6383 * Makefile.in (vax-tdep.o): Add $(arch_utils_h), $(inferior_h),
6384 and vax-tdep.h.
6385 * vax-tdep.h: New file.
6386 * vax-tdep.c: Include inferior.h, arch-utils.h, and vax-tdep.h.
6387 Make several routines static.
6388 (vax_get_saved_register): New function.
6389 (vax_gdbarch_init): New function.
6390 (_initialize_vax_tdep): Register vax_gdbarch_init.
6391 * config/vax/tm-vax.h: Set GDB_MULTI_ARCH to GDB_MULTI_ARCH_PARTIAL.
6392 Remove macros now under the control of gdbarch.
6393
6394 2002-04-22 Michael Snyder <msnyder@redhat.com>
6395
6396 * arm-tdep.c (arm_skip_prologue): Recognize "sub sp, sp, #nn".
6397 Some whitespace and coding standards tweaks.
6398
6399 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6400
6401 * vax-tdep.c: Include regcache.h.
6402 (vax_call_dummy_words): New.
6403 (sizeof_vax_call_dummy_words): New.
6404 (vax_fix_call_dummy): New function.
6405 (vax_saved_pc_after_call): Ditto.
6406 * config/vax/tm-vax.h: Don't include regcache.h.
6407 (SAVED_PC_AFTER_CALL): Use vax_saved_pc_after_call.
6408 (CALL_DUMMY): Remove.
6409 (CALL_DUMMY_WORDS): Define.
6410 (SIZEOF_CALL_DUMMY_WORDS): Define.
6411 (FIX_CALL_DUMMY): Use vax_fix_call_dummy.
6412
6413 2002-04-18 Michael Snyder <msnyder@redhat.com>
6414
6415 * arm-tdep.h: Change regnum defines to enums for ease of debugging.
6416
6417 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6418
6419 * vax-tdep.c (vax_frame_chain): New function.
6420 (vax_push_dummy_frame): Ditto.
6421 (vax_pop_frame): Ditto.
6422 * config/vax/tm-vax.h (FRAME_CHAIN): vax_frame_chain.
6423 (FRAMELESS_FUNCTION_INVOCATION): Use
6424 generic_frameless_function_invocation_not.
6425 (PUSH_DUMMY_FRAME): Use vax_push_dummy_frame.
6426 (POP_FRAME): Use vax_pop_frame.
6427
6428 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6429
6430 * vax-tdep.c (vax_store_struct_return): New function.
6431 (vax_extract_return_value): Ditto.
6432 (vax_store_return_value): Ditto.
6433 (vax_extract_struct_value_address): Ditto.
6434 * config/vax/tm-vax.h (STORE_STRUCT_RETURN): Use
6435 vax_store_struct_return.
6436 (EXTRACT_RETURN_VALUE): Use vax_extract_return_value.
6437 (STORE_RETURN_VALUE): Use vax_store_return_value.
6438 (EXTRACT_STRUCT_VALUE_ADDRESS): Use vax_extract_struct_value_address.
6439
6440 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6441
6442 * vax-tdep.c (vax_frame_saved_pc): New function.
6443 (vax_frame_args_address_correct): Ditto.
6444 (vax_frame_args_address): Ditto.
6445 (vax_frame_locals_address): Ditto.
6446 (vax_frame_num_args): Move code to be in proximity to
6447 other frame-related functions.
6448 * config/vax/tm-vax.h (INNER_THAN): Use core_addr_lessthan.
6449 (FRAME_SAVED_PC): Use vax_frame_saved_pc.
6450 (FRAME_ARGS_ADDRESS_CORRECT): Use vax_frame_args_address_correct.
6451 (FRAME_ARGS_ADDRESS): Use vax_frame_args_address.
6452 (FRAME_LOCALS_ADDRESS): Use vax_frame_locals_address.
6453
6454 2002-04-22 H.J. Lu (hjl@gnu.org)
6455
6456 * Makefile.in (FLAGS_TO_PASS): Add libdir, mandir, datadir and
6457 includedir.
6458
6459 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6460
6461 * vax-tdep.c (vax_frame_init_saved_regs): New function.
6462 * config/vax/tm-vax.h (FRAME_FIND_SAVED_REGS): Remove.
6463 (FRAME_INIT_SAVED_REGS): New macro.
6464
6465 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6466
6467 * MAINTAINERS: Reflect that the Alpha target has been multi-arch'd.
6468
6469 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6470
6471 * alpha-nat.c (get_longjmp_target): Use ALPHA_* constants
6472 where needed.
6473 (fetch_osf_core_registers): Likewise.
6474 (supply_gregset): Likewise.
6475
6476 2002-04-22 J. Brobecker <brobecker@gnat.com>
6477
6478 * symfile.h (get_section_index): Define.
6479 * symfile.c (get_section_index): New function.
6480 * mdebugread.c (SC_IS_SBSS): New macro.
6481 (SC_IS_BSS): Return true for the scBss storage class only, as
6482 the scSBss storage class refers to the .sbss section.
6483 (parse_partial_symbols): Discard the symbols which associated
6484 section does not exist.
6485 Make sure to use the .sbss section index for symbols which
6486 storage class is scBss, rather than using the .bss section index.
6487
6488 2002-04-22 Jason Thorpe <thorpej@wasabisystems.com>
6489
6490 * vax-tdep.c: Update copyright years.
6491 (vax_register_name): New function.
6492 (vax_register_byte): Ditto.
6493 (vax_register_raw_size): Ditto.
6494 (vax_register_virtual_size): Ditto.
6495 (vax_register_virtual_type): Ditto.
6496 * config/vax/tm-vax.h: Update copyright years.
6497 (REGISTER_NAMES): Remove.
6498 (REGISTER_NAME): Define.
6499 (REGISTER_BYTE): Use vax_register_byte.
6500 (REGISTER_RAW_SIZE): Use vax_register_raw_size.
6501 (REGISTER_VIRTUAL_SIZE): Use vax_register_virtual_size.
6502 (REGISTER_VIRTUAL_TYPE): Use vax_register_virtual_type.
6503
6504 2002-04-21 Andrew Cagney <ac131313@redhat.com>
6505
6506 * config/sparc/tm-sparc.h (sparc_skip_prologue): Restore
6507 declaration
6508 * arc-tdep.c (arc_prologue_frameless_p): Fix syntax error.
6509
6510 2002-04-21 David S. Miller <davem@redhat.com>
6511
6512 * arch-utils.c (generic_prologue_frameless_p): Kill
6513 SKIP_PROLOGUE_FRAMELESS_P code.
6514 * config/arc/tm-arc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
6515 references.
6516 (PROLOGUE_FRAMELESS_P, arc_prologue_frameless_p): New.
6517 * arc-tdep.c (arc_prologue_frameless_p): Implement.
6518 * config/arc/tm-sparc.h (SKIP_PROLOGUE_FRAMELESS_P): Delete
6519 references.
6520 (PROLOGUE_FRAMELESS_P, sparc_prologue_frameless_p): New.
6521 * sparc-tdep.c (sparc_prologue_frameless_p): Implement.
6522 (sparc_gdbarch_init): Pass it to
6523 set_gdbarch_prologue_frameless_p.
6524
6525 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6526
6527 * Makefile.in (ALLDEPFILES): Add alphabsd-nat.c.
6528 (alphabsd-nat.o): New dependency list.
6529
6530 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6531
6532 * Makefile.in (ALLDEPFILES): Add alpha-linux-tdep.c and
6533 alphafbsd-tdep.c.
6534 (alpha-linux-tdep.o): New dependency list.
6535 (alphafbsd-tdep.o): Likewise.
6536
6537 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6538
6539 * alpha-linux-tdep.c: New file. Move alpha_linux_sigtramp_offset
6540 to here...
6541 * alpha-tdep.c: ...from here.
6542 * config/alpha/alpha-linux.mt (TDEPFILES): Add alpha-linux-tdep.o.
6543
6544 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6545
6546 * config/alpha/tm-alpha.h: Move alpha_software_single_step
6547 prototype from here...
6548 * alpha-tdep.h: ...to here.
6549
6550 2002-04-21 Andrew Cagney <ac131313@redhat.com>
6551
6552 * frame.h (selected_frame_level): Document as deprecated.
6553 (frame_relative_level): Declare.
6554 * stack.c (frame_relative_level): New function.
6555 (selected_frame_level): Document as deprecated.
6556 (select_frame): Do not set the selected_frame_level.
6557
6558 * stack.c (frame_info, record_selected_frame): Update.
6559 (frame_command, current_frame_command): Update.
6560 (up_silently_base, up_command, down_silently_base): Update.
6561 (down_command): Update.
6562 * inflow.c (kill_command): Update.
6563 * tracepoint.c (finish_tfind_command): Update.
6564 * corelow.c (core_open): Update.
6565 * thread.c (info_threads_command): Update.
6566 (do_captured_thread_select): Update.
6567 * infcmd.c (finish_command): Update.
6568 * breakpoint.c (insert_breakpoints, do_enable_breakpoint): Update.
6569
6570 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6571
6572 * config/alpha/tm-fbsd.h (FRAME_CHAIN_VALID): Remove.
6573
6574 2002-04-21 Andrew Cagney <ac131313@redhat.com>
6575
6576 * arm-tdep.c (arm_breakpoint_from_pc): Make static. Make return
6577 type const.
6578
6579 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6580
6581 * alphafbsd-tdep.c: Update copyright years. Include
6582 alpha-tdep.h.
6583 (alphafbsd_use_struct_convention): Make static.
6584 (alphafbsd_init_abi): New function.
6585 (_initialize_alphafbsd_tdep): New function.
6586 * config/alpha/tm-fbsd.h: Update copyright years.
6587 (USE_STRUCT_CONVENTION): Remove.
6588
6589 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6590
6591 * alpha-tdep.c (alpha_abi_handler): New structure to describe
6592 an Alpha ABI variant.
6593 (alpha_abi_handler_list): Declare.
6594 (alpha_gdbarch_register_os_abi): New function.
6595 (alpha_gdbarch_init): Give registered ABI variant handlers a
6596 chance to tweak the gdbarch once we have set up defaults.
6597 * alpha-tdep.h: Prototype alpha_gdbarch_register_os_abi.
6598
6599 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6600
6601 * alpha-tdep.c (alpha_gdbarch_init): Set coerce_float_to_double
6602 to standard_coerce_float_to_double.
6603 * config/alpha/tm-alpha.h (COERCE_FLOAT_TO_DOUBLE): Remove.
6604
6605 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6606
6607 * alpha-tdep.h (gdbarch_tdep): Add vm_min_address member.
6608 * alpha-tdep.c (heuristic_proc_start): Use vm_min_address
6609 from gdbarch_tdep rather than a constant.
6610 (alpha_gdbarch_init): Initialize tdep->vm_min_address to
6611 the default text address for all Alpha Unix ABIs.
6612 (alpha_dump_tdep): Report the value of tdep->vm_min_address.
6613 * config/alpha/tm-alpha.h (VM_MIN_ADDRESS): Delete.
6614
6615 2002-04-21 Jason Thorpe <thorpej@wasabisystems.com>
6616
6617 * alpha-tdep.h: New file. Includes several Alpha target constants
6618 taken from...
6619 * config/alpha/tm-alpha.h: ...here. Remove macros that we now
6620 let gdbarch deal with.
6621 (GDB_MULTI_ARCH): Define as GDB_MULTI_ARCH_PARTIAL.
6622 * Makefile.in (alpha-nat.o): Add alpha-tdep.h and $(BFD_SRC)/elf-bfd
6623 to dependency list.
6624 * alpha-nat.c: Include alpha-tdep.h. Update for adjusted
6625 Alpha target register names.
6626 * alphabsd-nat.c: Likewise.
6627 * alpha-tdep.c: Include alpha-tdep.h. Update for adjusted
6628 Alpha target register names. Make serveral routines static.
6629 (alpha_get_saved_register): New function.
6630 (alpha_abi_names): New.
6631 (process_note_abi_tag_sections): New function.
6632 (get_elfosabi): New function.
6633 (alpha_gdbarch_init): New function.
6634 (alpha_dump_tdep): New function.
6635 (_initialize_alpha_tdep): Register alpha_gdbarch_init.
6636
6637 2002-04-21 Andrew Cagney <ac131313@redhat.com>
6638
6639 * frame.c (find_saved_register): Delete #ifdef
6640 HAVE_REGISTER_WINDOWS code.
6641 * config/sparc/tm-sparc.h: Update comments.
6642 * config/i960/tm-i960.h (HAVE_REGISTER_WINDOWS): Delete macro.
6643
6644 2002-04-21 Andrew Cagney <ac131313@redhat.com>
6645
6646 * i960-tdep.c (i960_find_saved_register): New function.
6647 (i960_get_saved_register): New function.
6648 * config/i960/tm-i960.h (GET_SAVED_REGISTER): Define.
6649 (i960_get_saved_register): Declare.
6650 * config/i960/tm-i960.h, i960-tdep.c: Update copyright.
6651
6652 2002-04-20 David S. Miller <davem@redhat.com>
6653
6654 * sparc-nat.c (store-inferior_registers): Fix ambiguous else.
6655
6656 2002-04-20 Andrew Cagney <ac131313@redhat.com>
6657
6658 * arm-tdep.c (arm_gdbarch_init): Use gdbarch_num_pseudo_regs
6659 instead of NUM_PSEUDO_REGS.
6660
6661 2002-04-20 David S. Miller <davem@redhat.com>
6662
6663 * config/sparc/tm-linux.h (GDB_MULTI_ARCH): Define to
6664 GDB_MULTI_ARCH_PARTIAL
6665 * config/sparc/tm-sp64linux.h (GDB_MULTI_ARCH): Do not
6666 define, let tm-sp64.h do it.
6667
6668 2002-04-20 Jason Thorpe <thorpej@wasabisystems.com>
6669
6670 * frame.c (find_saved_register): Avoid a NULL pointer
6671 dereference and actually walk the frame list.
6672
6673 2002-04-20 Andrew Cagney <ac131313@redhat.com>
6674
6675 * gdbarch.sh (gdbarch_update_p): Keep the list of architectures
6676 sorted in most most-recent-used order. Document.
6677 * gdbarch.h, gdbarch.c: Regenerate.
6678
6679 2002-04-19 Andrew Cagney <ac131313@redhat.com>
6680
6681 * sparc-tdep.c (sparc_get_saved_register): Use get_prev_frame
6682 instead of ->prev.
6683 * z8k-tdep.c (z8k_frame_chain): Do not use ->prev.
6684 * s390-tdep.c (s390_frame_chain): Do not use ->prev.
6685 * rs6000-tdep.c (frame_get_saved_regs): Use rs6000_frame_chain()
6686 instead of ->prev.
6687
6688 2002-04-19 Elena Zannoni <ezannoni@redhat.com>
6689
6690 Fix PR gdb/471.
6691 * gdbtypes.c (init_simd_type): Rewrite using new functions.
6692 (build_builtin_type_vec128): Ditto.
6693 (append_composite_type_field): Fix calculation of type length in
6694 union case.
6695
6696 2002-04-19 Eli Zaretskii <eliz@is.elta.co.il>
6697
6698 * config/djgpp/README: Update.
6699
6700 * go32-nat.c (store_register): Cast &a_tss to `char *' to avoid a
6701 compiler warnings.
6702
6703 2002-04-19 Jason Thorpe <thorpej@wasabisystems.com>
6704
6705 * alpha-tdep.c (setup_arbitrary_frame): Rename...
6706 (alpha_setup_arbitrary_frame): ...to this.
6707 * config/alpha/tm-alpha.h (SETUP_ARBITRARY_FRAME): Update
6708 for alpha_setup_arbitrary_frame.
6709
6710 2002-04-18 Andrew Cagney <cagney@redhat.com>
6711
6712 * gdbarch.sh (BREAKPOINT_FROM_PC): Return a const buffer.
6713 * gdbarch.h, gdbarch.c: Regenerate.
6714
6715 * defs.h (breakpoint_from_pc_fn): Delete type definition.
6716 * target.h (memory_breakpoint_from_pc): Update declaration.
6717 * config/mcore/tm-mcore.h (mcore_breakpoint_from_p): Ditto.
6718
6719 * arch-utils.c (legacy_breakpoint_from_pc): Update return type.
6720 * mcore-tdep.c (mcore_breakpoint_from_pc): Ditto.
6721 * mem-break.c (memory_breakpoint_from_pc): Ditto.
6722 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Ditto.
6723 * s390-tdep.c (s390_breakpoint_from_pc): Ditto
6724 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Ditto.
6725 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Ditto.
6726 * mips-tdep.c (mips_breakpoint_from_pc): Ditto.
6727 * m68hc11-tdep.c (m68hc11_breakpoint_from_pc): Ditto.
6728 * ia64-tdep.c (ia64_breakpoint_from_pc): Ditto.
6729 * d10v-tdep.c (d10v_breakpoint_from_pc): Ditto.
6730 * arch-utils.c (legacy_breakpoint_from_pc): Ditto..
6731
6732 * mem-break.c (default_memory_insert_breakpoint): Make `bp' a
6733 const pointer.
6734 * monitor.c (monitor_insert_breakpoint): Ditto.
6735 * rs6000-tdep.c (rs6000_software_single_step): Ditto for `breakp'.
6736
6737 * config/mcore/tm-mcore.h: Update copyright.
6738 * mem-break.c: Ditto.
6739 * xstormy16-tdep.c: Ditto.
6740
6741 2002-04-18 Pierre Muller <muller@ics.u-strasbg.fr>
6742
6743 * p-exp.y: Add precedence rule for '^' token.
6744 This removes the shift/reduce conflicts.
6745 Remove the comment concerning these shift/reduce conflicts.
6746
6747 2002-04-18 Elena Zannoni <ezannoni@redhat.com>
6748
6749 * rs6000-tdep.c (COMMON_UISA_NOFP_REGS): New macro.
6750 (registers_powerpc_nofp): New register set for processors
6751 without floating point unit.
6752
6753 2002-04-18 David S. Miller <davem@redhat.com>
6754
6755 * MAINTAINERS: Add myself to write-after-approval.
6756
6757 2002-04-17 Michael Snyder <msnyder@redhat.com>
6758
6759 * MAINTAINERS: Add myself as co-maintainer of testsuite/gdb.asm.
6760
6761 2002-04-17 Andrew Cagney <ac131313@redhat.com>
6762
6763 * rs6000-tdep.c (frame_initial_stack_address): Use
6764 frame_register_read to read the alloca_reg.
6765
6766 2002-04-17 Andrew Cagney <ac131313@redhat.com>
6767
6768 * frame.c (find_saved_register): Find saved registers in the next
6769 not prev frame.
6770 Fix PR gdb/365.
6771
6772 2002-04-17 Andrew Cagney <ac131313@redhat.com>
6773
6774 * gdbarch.sh (LANG): Set to ``c''.
6775
6776 2002-04-15 Andrew Cagney <ac131313@redhat.com>
6777
6778 * PROBLEMS: Mention hppa2.0-hp-hpux10.20 compile problems.
6779
6780 2002-04-15 Andrew Cagney <ac131313@redhat.com>
6781
6782 * bcache.c: Include <stddef.h> and <stdlib.h> after "defs.h".
6783 Update copyright.
6784
6785 * hpread.c (hpread_get_lntt): Add declaration.
6786 Also fix PR gdb/391.
6787
6788 2002-04-14 Andrew Cagney <ac131313@redhat.com>
6789
6790 * acinclude.m4 (AM_PROG_CC_STDC): Import from automake 1.6.
6791 * aclocal.m4, configure: Re-generate.
6792 Fix PR gdb/391.
6793
6794 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
6795
6796 * mi/mi-cmd-disas.c (dump_insns): Use TARGET_PRINT_INSN
6797 instead of tm_print_insn.
6798
6799 2002-04-14 Elena Zannoni <ezannoni@redhat.com>
6800
6801 * ppc-bdm.c (bdm_ppc_fetch_registers): Fix typo.
6802
6803 2002-04-14 Andrew Cagney <ac131313@redhat.com>
6804
6805 * config/pa/tm-hppa.h (FRAME_CHAIN_COMBINE): Delete macro.
6806 * blockframe.c (FRAME_CHAIN_COMBINE): Delete macro.
6807 (get_prev_frame): Do not call FRAME_CHAIN_COMBINE.
6808
6809 2002-04-12 Don Howard <dhoward@redhat.com>
6810
6811 * cli/cli-cmds.c (init_cli_cmds): Add new user settable value:
6812 max_user_call_depth.
6813 (init_cmd_lists): Initialize the new value;
6814 * cli/cli-script.c (execute_user_command): Limit the call depth of
6815 user defined commands. This avoids a core-dump when user commands
6816 are infinitly recursive.
6817
6818 2002-04-12 Kevin Buettner <kevinb@redhat.com>
6819
6820 * ppc-tdep.h (struct gdbarch_tdep): Add new member ``lr_frame_offset''.
6821 * rs6000-tdep.c (rs6000_frame_saved_pc): Use ``lr_frame_offset''
6822 from tdep struct instead of DEFAULT_LR_SAVE.
6823 (rs6000_gdbarch_init): Initialize ``lr_frame_offset''.
6824 * config/powerpc/tm-ppc-eabi.h (DEFAULT_LR_SAVE): Delete.
6825 * config/rs6000/tm-rs6000.h (DEFAULT_LR_SAVE): Delete.
6826
6827 2002-04-12 Michael Snyder <msnyder@redhat.com>
6828
6829 * Remote.c: Spelling fix.
6830 * gcore.c (default_derive_heap_segment): Use bfd_section_name.
6831 If no symbol found for "sbrk", try "_sbrk".
6832 (make_output_phdrs): Use bfd_section_name.
6833 (gcore_copy_callback): Use bfd_section_name.
6834 * eval.c: Indentation fix-ups.
6835 * d10v-tdep.c (d10v_make_iaddr): Make it idempotent,
6836 in case it gets applied to an address that is already
6837 in the instruction space.
6838 * cli/cli-decode.c (help_list): Allow long lines to wrap.
6839 * symfile.c: Fix indentation, long lines.
6840 * source.c: White space fix-up.
6841
6842 2002-04-12 Andrew Cagney <cagney@redhat.com>
6843
6844 * defs.h (read_relative_register_raw_bytes): Delete declaration.
6845 * frame.c (frame_register_read): New function. Return non-zero on
6846 success.
6847 (read_relative_register_raw_bytes_for_frame): Delete.
6848 (read_relative_register_raw_bytes): Delete.
6849 * frame.h (frame_register_read): Declare.
6850 * d30v-tdep.c: Update Copyright. Use frame_register_read.
6851 * sh-tdep.c: Ditto.
6852 * infcmd.c (do_registers_info): Ditto.
6853 * hppa-tdep.c: Ditto.
6854 * rs6000-tdep.c: Ditto.
6855 * h8500-tdep.c: Ditto.
6856 * mips-tdep.c: Ditto.
6857 * h8300-tdep.c: Ditto.
6858 * z8k-tdep.c: Ditto.
6859
6860 2002-04-12 Kevin Buettner <kevinb@redhat.com>
6861
6862 From Jimi X <jimix@watson.ibm.com>:
6863 * rs6000-tdep.c (rs6000_gdbarch_init): Use rs6000_* methods for
6864 64-bit SysV ABI.
6865
6866 2002-04-12 Kevin Buettner <kevinb@redhat.com>
6867
6868 From Jimi X <jimix@watson.ibm.com>:
6869 * rs6000-tdep.c (rs6000_gdbarch_init): Compute ``wordsize'' from
6870 bfd info.
6871
6872 2002-04-12 Kevin Buettner <kevinb@redhat.com>
6873
6874 From Jimi X <jimix@watson.ibm.com>:
6875 * rs6000-tdep.c (powerpc64, 630, rs64ii, rs64iii): Define
6876 register sets for these processor variants.
6877
6878 2002-04-11 Daniel Jacobowitz <drow@mvista.com>
6879
6880 * regformats/reg-ppc.dat: Support FPSCR.
6881
6882 2002-04-11 Kevin Buettner <kevinb@redhat.com>
6883
6884 * ppc-tdep.h (struct gdbarch_tdep): Add new field ``ppc_fpscr_regnum''.
6885 * ppc-bdm.c (bdm_ppc_fetch_registers, bdm_ppc_store_registers):
6886 Add fpscr as an invalid/unfetchable register.
6887 * ppc-linux-nat.c (ppc_register_u_addr, store_register)
6888 (fetch_ppc_registers, store_ppc_registers, supply_fpregset)
6889 (fill_fpregset): Add support for register fpscr.
6890 (fetch_ppc_registers, store_ppc_registers, supply_gregset)
6891 (fill_gregset): Account for the fact that register ``mq'' might
6892 not exist.
6893 * rs6000-tdep.c (PPC_UISA_SPRS): Use (unused) slot 70 for fpscr.
6894 (registers_power): Add fpscr to register set at slot 71.
6895 (rs6000_gdbarch_init): Account for the fact that ``mq'' doesn't
6896 exist on most PPC architectures. Initialize ppc_fpscr_regnum.
6897
6898 2002-04-11 Michael Snyder <msnyder@redhat.com>
6899
6900 * configure.in: Autoconfiscate _SYSCALL32 define for solaris.
6901 * configure: Regenerate.
6902 * config.in: Regenerate.
6903 * acconfig.h: Add define for _SYSCALL32.
6904 * core-sol2.c: Remove #define _SYSCALL32.
6905 * solib-legacy.c: Remove #define _SYSCALL32.
6906
6907 2002-04-10 Andrew Cagney <ac131313@redhat.com>
6908
6909 * stack.c (select_frame): Cleanup internal error message, do not
6910 use %p.
6911
6912 2002-04-10 Andrew Cagney <ac131313@redhat.com>
6913
6914 * stack.c (select_frame): Check that selected_frame and the
6915 specified level are as expected.
6916 * blockframe.c (get_prev_frame): Set the `level' from next_frame.
6917 Update copyright.
6918 * frame.h (struct frame_info): Add field `level'. Update
6919 copyright.
6920 Work-in-progress PR gdb/464.
6921
6922 2002-04-10 Andrew Cagney <ac131313@redhat.com>
6923
6924 * maint.c (maint_print_section_info): Rename print_section_info.
6925 (print_bfd_section_info, print_objfile_section_info): Update.
6926 * inferior.h (struct gdbarch): Add opaque declaration.
6927 * gdbarch.sh: Add include of "inferior.h" to gdbarch.sh.
6928 * gdbarch.h: Regenerate.
6929
6930 2002-04-10 Michal Ludvig <mludvig@suse.cz>
6931
6932 * x86-64-linux-nat.c (child_resume, child_xfer_memory): Delete.
6933 (PTRACE_XFER_TYPE): Moved to config/i386/nm-x86-64.h.
6934 (kernel_u_size): Added.
6935 * config/i386/nm-x86-64.h (CHILD_XFER_MEMORY, CHILD_RESUME): Delete.
6936 (PTRACE_XFER_TYPE): Moved here from config/i386/nm-x86-64.h.
6937
6938 2002-04-04 Jim Ingham <jingham@apple.com>
6939
6940 * valarith.c (find_size_for_pointer_math): New function, either returns
6941 the size for a pointer's target, returns 1 for void *, or errors for
6942 incomplete types.
6943 (value_add, value_sub): use find_size_for_pointer_math.
6944
6945 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
6946
6947 * linux-low.c (linux_look_up_symbols): New hook.
6948 (linux_target_ops): Add linux_look_up_symbols.
6949 * remote-utils.c (decode_address): New function.
6950 (look_up_one_symbol): New function.
6951 * server.c (handle_query): Call target look_up_symbols hook.
6952 * server.h (look_up_one_symbol): Add prototype.
6953 * target.h (struct target_ops): Add look_up_symbols hook.
6954
6955 2002-04-09 Andrew Cagney <ac131313@redhat.com>
6956
6957 * frame.c (read_relative_register_raw_bytes_for_frame): Do not
6958 override FP_REGNUM with frame->fp. Update copyright.
6959 * parse.c (num_std_regs, std_regs): Delete.
6960 (target_map_name_to_register): Do not search std_regs. Update
6961 function description.
6962 * parser-defs.h (num_std_regs, std_regs, struct std_regs): Delete
6963 declarations. Update copyright.
6964 Fix PR gdb/251.
6965
6966 2002-04-09 Daniel Jacobowitz <drow@mvista.com>
6967
6968 * symtab.h (ALL_BLOCK_SYMBOLS): Don't dereference the pointer
6969 after the last symbol in a block.
6970
6971 2002-04-09 Pierre Muller <muller@ics.u-strasbg.fr>
6972
6973 * p-exp.y (yylex): Handle also the fact that is_a_field_of_this
6974 is non zero as a found symbol.
6975
6976 2002-04-08 Andrew Cagney <ac131313@redhat.com>
6977
6978 * findvar.c: Include "builtin-regs.h".
6979 (value_of_register): Call value_of_builtin_reg when applicable.
6980 * parse.c: Include "builtin-regs.h" and "gdb_assert.h".
6981 (target_map_name_to_register): Call
6982 builtin_reg_map_name_to_regnum.
6983 * Makefile.in (SFILES): Add builtin-regs.c and std-regs.c.
6984 (COMMON_OBS): Add builtin-regs.o and std-regs.o.
6985 (builtin_regs_h): Define.
6986 (builtin-regs.o): New target.
6987 (findvar.o): Add $(builtin_regs_h).
6988 * builtin-regs.c, builtin-regs.h: New files.
6989 * std-regs.c: New file.
6990 Partial fix for PR gdb/251.
6991
6992 2002-04-08 Kevin Buettner <kevinb@redhat.com>
6993
6994 * rs6000-tdep.c (rs6000_gdbarch_init): Don't set tm_print_insn;
6995 it's no longer required.
6996
6997 2002-04-08 Andrew Cagney <ac131313@redhat.com>
6998
6999 * Makefile.in (gdbtk-wrapper.o): Add missing dependencies.
7000
7001 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7002
7003 From Jimi X <jimix@watson.ibm.com>:
7004 * rs6000-tdep.c (rs6000_software_single_step): Use
7005 rs6000_breakpoint_from_pc() to fetch breakpoint instruction
7006 and size. Use target_insert_breakpoint() and
7007 target_remove_breakpoint() to insert and remove breakpoints
7008 instead of explicit memory reads and writes.
7009
7010 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7011
7012 * config/powerpc/tm-ppc-eabi.h (ELF_OBJECT_FORMAT): Delete.
7013 * rs6000-tdep.c (rs6000_push_arguments): Eliminate
7014 ELF_OBJECT_FORMAT ifdef.
7015
7016 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7017
7018 From Jimi X <jimix@watson.ibm.com>:
7019 * rs6000-tdep.c (rs6000_gdbarch_init): Use set_gdbarch_print_insn().
7020
7021 2002-04-08 Kevin Buettner <kevinb@redhat.com>
7022
7023 From Jimi X <jimix@watson.ibm.com>:
7024 * rs6000-tdep.c (rs6000_fix_call_dummy): Delete unused macro
7025 definitions for TOC_ADDR_OFFSET and TARGET_ADDR_OFFSET.
7026
7027 2002-04-07 Mark Kettenis <kettenis@gnu.org>
7028
7029 * fbsd-proc.c (child_pid_to_exec_file, fbsd_find_memory_regions):
7030 s/asprintf/xasprintf/.
7031 (fbsd_make_corefile_notes): s/strdup/xstrdup/.
7032
7033 2002-04-07 Andrew Cagney <ac131313@redhat.com>
7034
7035 I believe Jeff Law denies responsability for this one:
7036 * config/pa/hpux11w.mh (MH_CFLAGS): Add -Dvfork=fork.
7037 * config/pa/hpux11.mh (MH_CFLAGS): Add -Dvfork=fork.
7038 * config/pa/hpux1020.mh (MH_CFLAGS): Add -Dvfork=fork.
7039 Work-around for PR gdb/366.
7040
7041 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
7042
7043 * remote-e7000.c (write_small, e7000_read_inferior_memory,
7044 e7000_read_inferior_memory_large, e7000_insert_breakpoint,
7045 e7000_remove_breakpoint): Use paddr_nz() to print addresses.
7046
7047 2002-04-07 Elena Zannoni <ezannoni@redhat.com>
7048
7049 * sh-tdep.c (sh_fp_frame_init_saved_regs,
7050 sh_nofp_frame_init_saved_regs): Use alloca() for 'where'
7051 information.
7052
7053 2002-04-07 Andrew Cagney <ac131313@redhat.com>
7054
7055 * MAINTAINERS (Misc): List Daniel Jacobowitz as the GDBSERVER
7056 maintainer.
7057
7058 2002-04-07 Andrew Cagney <ac131313@redhat.com>
7059
7060 * README (Reporting Bugs in GDB): Document the bug web page as the
7061 prefered way of submitting bugs.
7062 Fix PR gdb/402.
7063
7064 2002-04-06 Andrew Cagney <ac131313@redhat.com>
7065
7066 * gdbarch.sh (FP_REGNUM, PC_REGNUM, SP_REGNUM): Allow default of
7067 -1. Update comment.
7068 * gdbarch.h, gdbarch.c: Re-generate.
7069
7070 2002-04-07 Andreas Schwab <schwab@suse.de>
7071
7072 * m68klinux-nat.c (fill_fpregset): Properly pass address of
7073 buffer to regcache_collect.
7074
7075 2002-04-06 Andrew Cagney <ac131313@redhat.com>
7076
7077 * gdbarch.sh (PS_REGNUM): Add. Document. Default to -1.
7078 * gdbarch.c, gdbarch.h: Re-generate.
7079
7080 2002-04-06 Andrew Cagney <ac131313@redhat.com>
7081
7082 * symtab.c (lookup_symtab): Remove ``const'' from ``rp''
7083 declaration. Fix -Werror.
7084
7085 2002-04-05 Daniel Jacobowitz <drow@mvista.com>
7086
7087 * gdbarch.sh (initialize_non_multiarch): Call init_gdbarch_swap.
7088 * gdbarch.c: Regenerate.
7089
7090 2002-04-05 Michael Snyder <msnyder@redhat.com>
7091
7092 * breakpoint.c (clear_command): Rewrite middle section to
7093 combine two loops with identical control conditions.
7094 Add a cleanup to eliminate a memory leak.
7095 * cli/cli-dump.c (restore_section_callback): Use paddr_nz.
7096
7097 2002-04-05 H.J. Lu (hjl@gnu.org)
7098
7099 * solib-svr4.c (bkpt_names): Add "__start".
7100
7101 2002-04-04 Andrew Cagney <ac131313@redhat.com>
7102
7103 * sparc-tdep.c (sparc_push_dummy_frame): Use GDB_TARGET_IS_SPARC64
7104 as test for 64 bit target.
7105
7106 2002-04-05 Andrew Cagney <ac131313@redhat.com>
7107
7108 * h8500-tdep.c (h8500_write_fp): Delete function.
7109 * dwarf2cfi.c (cfi_write_fp): Document as not used.
7110 * mips-tdep.c (mips_gdbarch_init): Do not set write_fp.
7111 * ia64-tdep.c (ia64_gdbarch_init): Do not set write_fp.
7112 * m68hc11-tdep.c (m68hc11_gdbarch_init): Do not set write_fp.
7113 * rs6000-tdep.c (rs6000_gdbarch_init): Do not set write_fp.
7114 * s390-tdep.c (s390_gdbarch_init): Do not set write_fp.
7115 (s390_write_fp):
7116 * sh-tdep.c (sh_gdbarch_init): Do not set write_fp.
7117 * x86-64-tdep.c (i386_gdbarch_init): Do not set write_fp.
7118 * d10v-tdep.c (d10v_gdbarch_init): Do not set write_fp.
7119 (d10v_write_fp): Delete function.
7120 * inferior.h (write_fp, generic_target_write_fp): Delete
7121 declarations.
7122 * regcache.c (generic_target_write_fp): Delete function.
7123 (write_fp): Delete function.
7124 * gdbarch.sh (TARGET_WRITE_FP): Delete.
7125 * gdbarch.h, gdbarch.c: Regenerate.
7126 * config/v850/tm-v850.h (TARGET_WRITE_FP): Delete macro.
7127 * config/sparc/tm-sp64.h (TARGET_WRITE_FP): Delete macro.
7128 (sparc64_write_fp): Delete declaration.
7129 * config/h8500/tm-h8500.h (TARGET_WRITE_FP): Delete macro.
7130 (h8500_write_fp): Delete declaration.
7131
7132 2002-04-04 Andrew Cagney <ac131313@redhat.com>
7133
7134 * sparc-tdep.c (sparc64_write_fp): Delete.
7135 (sparc_push_dummy_frame): Replace write_fp call with code to store
7136 the FP directly.
7137 (sparc_gdbarch_init): Do not initialize write_fp.
7138
7139 2002-04-05 Kevin Buettner <kevinb@redhat.com>
7140
7141 * rs6000-tdep.c (skip_prologue): Eliminate unused/unreachable
7142 clause.
7143
7144 2002-03-29 Jim Blandy <jimb@redhat.com>
7145
7146 * stack.c (get_selected_block): Add new argument `addr_in_block',
7147 used to return the exact code address we used to select the block,
7148 not just the block.
7149 * blockframe.c (get_frame_block, get_current_block): Same.
7150 * frame.h (get_frame_block, get_current_block,
7151 get_selected_block): Update declarations.
7152 * linespec.c, stack.c, blockframe.c, breakpoint.c, findvar.c,
7153 linespec.c, varobj.c, printcmd.c, symtab.c: Callers changed.
7154
7155 2002-04-05 Michael Snyder <msnyder@redhat.com>
7156
7157 * breakpoint.c (insert_breakpoints): Change 'hw' to 'hardware in
7158 warning message.
7159
7160 2002-04-05 J. Brobecker <brobecker@gnat.com>
7161
7162 * utils.c (xfullpath): New function.
7163 * defs.h (xfullpath): Add declaration.
7164 * source.c (openp): Use xfullpath in place of gdb_realpath to
7165 avoid resolving the basename part of filenames when the
7166 associated file is a symbolic link. This fixes a potential
7167 inconsistency between the filenames known to GDB and the
7168 filenames it prints in the annotations.
7169 * symtab.c (lookup_symtab): Use the new xfullpath function, in order
7170 to be able to match a filename with either the real filename, or
7171 the name of any symbolic link to this file.
7172 (lookup_partial_symtab): Ditto.
7173
7174 2002-04-04 Michael Snyder <msnyder@redhat.com>
7175
7176 * breakpoint.c: Add support for hardware breakpoints in overlays.
7177 (overlay_events_enabled): New state variable.
7178 (insert_breakpoints): Use overlay_events_enabled to decide
7179 whether to attempt to set a breakpoint at the overlay load addr.
7180 Handle bp_hardware_breakpoint as well as bp_breakpoint.
7181 (remove_breakpoint): Use overlay_events_enabled to decide
7182 whether breakpoints need to be removed from overlay load addr.
7183 Handle bp_hardware_breakpoint as well as bp_breakpoint.
7184 (bpstat_stop_status): Handle bp_hardware_breakpoint in overlays.
7185 (create_overlay_event_breakpoint, enable_overlay_breakpoints,
7186 disable_overlay_breakpoints): Update overlay_events_enabled.
7187
7188 2002-04-04 Daniel Jacobowitz <drow@mvista.com>
7189
7190 * dwarf2read.c (struct function_range): New.
7191 (cu_first_fn, cu_last_fn, cu_cached_fn): New.
7192 (check_cu_functions): New.
7193 (read_file_scope): Initialize global function lists.
7194 Call dwarf_decode_line after processing children.
7195 (read_func_scope): Add to global function list.
7196 (dwarf_decode_lines): Call check_cu_functions everywhere
7197 record_line is called. Call record_line with a linenumber
7198 of 0 to mark sequence ends.
7199
7200 2002-04-04 Michal Ludvig <mludvig@suse.cz>
7201
7202 * x86-64-linux-nat.c (child_xfer_memory): x86-64 ptrace() ABI
7203 change sync with glibc.
7204
7205 2002-04-03 Jim Blandy <jimb@redhat.com>
7206
7207 * configure.in: Call AC_C_INLINE.
7208 * configure: Regenerated.
7209
7210 2002-04-01 Daniel Jacobowitz <drow@mvista.com>
7211
7212 * rs6000-tdep.c: Change #include of "bfd/libcoff.h"
7213 and "bfd/libbfd.h" to "libcoff.h" and "libbfd.h".
7214
7215 2002-03-31 Mark Kettenis <kettenis@gnu.org>
7216
7217 * NEWS: Mention gcore support on FreeBSD/i386.
7218
7219 * fbsd-proc.c: New file.
7220 * config/i386/nm-fbsd.h (CHILD_PID_TO_EXEC_FILE): Define.
7221 * config/i386/fbsd.mh (NATDEPFILES): Add gcore.o and fbsd-proc.o.
7222
7223 * lin-lwp.c (child_wait): Check SAVE_ERRNO instead of ERRNO in
7224 while statement.
7225
7226 2002-03-29 Jim Blandy <jimb@redhat.com>
7227
7228 * cli/cli-dump.c (_initialize_cli_dump): Older GCC's tolerate
7229 unescaped newlines in string literals, but newer ones don't. So
7230 escape them.
7231
7232 2002-03-26 Michael Snyder <msnyder@redhat.com>
7233 Andrew Cagney <cagney@redhat.com>
7234
7235 * cli/cli-dump.c: New file. Dump memory to file,
7236 restore file to memory.
7237 * cli/cli-dump.h: New file.
7238 * Makefile.in: Add rules, dependencies for cli-dump.o.
7239 * NEWS: Mention new commands.
7240
7241 2002-03-28 Michael Snyder <msnyder@redhat.com>
7242
7243 * symfile.c (symbol_file_add): Move test for null symbols to later.
7244
7245 2002-03-27 Andrew Cagney <ac131313@redhat.com>
7246
7247 From veksler at il.ibm.com:
7248 * utils.c (gdb_realpath): If canonicalize_file_name fails, return
7249 the xstrduped original path.
7250 Fix PR gdb/417.
7251
7252 2002-03-27 Michael Snyder <msnyder@redhat.com>
7253
7254 * breakpoint.c (_initialize_breakpoint): Clean up help string.
7255 * infcmd.c (_initialize_infcmd): Ditto.
7256 * language.c (_initialize_language): Ditto.
7257 * symfile.c (_initialize_symfile): Ditto.
7258 * top.c (_init_main): Ditto.
7259 * cli/cli-cmds.c (init_cli_cmds): Ditto.
7260
7261 2002-03-27 Elena Zannoni <ezannoni@redhat.com>
7262
7263 * rs6000-tdep.c (struct rs6000_framedata): Add fields for AltiVec
7264 vector registers handling.
7265 (skip_prologue): Handle new AltiVec instructions. Fill in new
7266 fields of frame data.
7267 (frame_get_saved_regs): Fill in information for AltiVec registers.
7268
7269 2002-03-27 Jim Blandy <jimb@redhat.com>
7270
7271 * symtab.h (SYMBOL_INIT_MANGLED_NAME): Turn this macro's body into
7272 a function; leave this macro here to invoke that function.
7273 (symbol_init_mangled_name): Declaration for that function.
7274 * symtab.c (symbol_init_mangled_name): New function.
7275
7276 2002-03-27 Andrew Cagney <ac131313@redhat.com>
7277
7278 * valarith.c: Replace strerror with safe_strerror.
7279 * tracepoint.c: Ditto.
7280 * lin-lwp.c: Ditto.
7281 * go32-nat.c: Ditto.
7282 * inflow.c: Ditto.
7283 * gnu-nat.c: Ditto.
7284
7285 2002-03-27 Andreas Schwab <schwab@suse.de>
7286
7287 * event-top.c (command_line_handler): Remove useless if.
7288
7289 2002-03-27 Andreas Jaeger <aj@suse.de>
7290
7291 * dwarf2cfi.c: Give credit to Daniel Berlin, reformat copyright
7292 comment.
7293
7294 2002-03-27 Michal Ludvig <mludvig@suse.cz>
7295
7296 * x86-64-tdep.h (X86_64_NUM_REGS, X86_64_NUM_GREGS): Delete #defines.
7297 (x86_64_num_regs, x86_64_num_gregs): Added extern variables.
7298 * x86-64-linux-nat.c (x86_64_regmap): Swapped RBX <> RDX, added DS, ES, FS, GS.
7299 (x86_64_linux_dr_get_status, supply_gregset),
7300 (fill_gregset): Changed X86_64_NUM_GREGS to x86_64_num_gregs.
7301 * x86-64-tdep.c (x86_64_register_raw_size_table): Delete.
7302 (x86_64_register_info_table): Add.
7303 (X86_64_NUM_REGS, X86_64_NUM_GREGS): Add.
7304 (x86_64_register_raw_size, x86_64_register_virtual_type),
7305 (x86_64_register_name, _initialize_x86_64_tdep): Changed to reflect new
7306 general x86_64_register_info_table.
7307 (i386_gdbarch_init): gdbarch_register_bytes is now set
7308 dynamicaly during initialization.
7309 * regformats/reg-x86-64.dat: Synced with changes to registers above.
7310 * gdbserver/linux-x86-64-low.c: Ditto.
7311
7312 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
7313
7314 * gdbserver/server.c (main): Call target_signal_to_host_p
7315 and target_signal_to_host on signals received from the remote.
7316 * gdbserver/remote-utils.c (prepare_resume_reply): Call
7317 target_signal_from_host on signals sent to the remote.
7318 * gdbserver/server.h: Add prototypes. Include "gdb/signals.h".
7319 * gdbserver/Makefile.in: Add signals.o. Add -I${INCLUDE_DIR}.
7320
7321 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
7322
7323 * signals/signals.c: Include "server.h" in gdbserver build.
7324 (target_signal_from_name): Don't use STREQ.
7325 (_initialize_signals): Likewise. Don't include function in
7326 gdbserver build.
7327
7328 2002-03-27 Daniel Jacobowitz <drow@mvista.com>
7329
7330 * signals.c: Moved to...
7331 * signals/signals.c: Here.
7332 * Makefile (signals.o): Update.
7333
7334 2002-03-26 Jeff Law (law@redhat.com)
7335
7336 * somread.c (som_symtab_read): Remove some commented out code and
7337 updated related comments. Do not set the minimal symbol table to
7338 mst_solib_trampoline for ST_ENTRY symbols with SS_LOCAL scope
7339 in a dynamic executable.
7340 * hppa-tdep.c (find_proc_framesize): Sanely handle the case
7341 where we are unable to find the minimal symbol for the given
7342 PC value.
7343
7344 2002-03-25 Jeff Law (law@redhat.com)
7345
7346 * linux-proc.c (read_mapping): Scan up to end of line for filename.
7347
7348 2002-03-25 Michal Ludvig <mludvig@suse.cz>
7349
7350 * x86-64-tdep.c (x86_64_skip_prologue): Rewritten from scratch.
7351
7352 2002-03-23 Andrew Cagney <ac131313@redhat.com>
7353
7354 * command.h: Update copyright.
7355 (struct cmd_list_element): Replace definition with opaque
7356 declaration.
7357 (enum cmd_types): Document that it will eventually be moved to
7358 cli/cli-decode.h
7359 (CMD_DEPRECATED, DEPRECATED_WARN_USER): Delete macros.
7360 (MALLOCED_REPLACEMENT): Delete macro.
7361 * Makefile.in (cli_decode_h): Add $(command_h).
7362 (top.o, completer.o, maint.o): Add dependency on $(cli_decode_h).
7363 * top.c: Include "cli/cli-decode.h".
7364 * completer.c: Include "cli/cli-decode.h".
7365 * maint.c: Include "cli/cli-decode.h".
7366 * cli/cli-decode.h: Include "command.h".
7367 (enum command_class): Delete.
7368 (enum cmd_types): Comment out.
7369 (enum cmd_auto_boolean): Delete.
7370 (enum var_types): Delete.
7371
7372 2002-03-23 Andrew Cagney <ac131313@redhat.com>
7373
7374 * cli/cli-decode.c: Include "gdb_assert.h".
7375 (add_set_or_show_cmd): New static function.
7376 (add_set_cmd): Rewrite. Use add_set_or_show_cmd.
7377 (add_show_from_set): Rewrite. Use add_set_or_show_cmd. Don't copy
7378 all fields, such as func, from the set command.
7379
7380 2002-03-23 Andrew Cagney <ac131313@redhat.com>
7381
7382 * MAINTAINERS (sh-elf): Change warning flag to -w.
7383
7384 2002-03-23 Andrew Cagney <cagney@redhat.com>
7385
7386 * defs.h (error): Add printf format attribute.
7387 * thread-db.c (thread_from_lwp): Fix error format string.
7388 * stack.c (parse_frame_specification): Ditto.
7389 * cli/cli-decode.c (undef_cmd_error): Ditto.
7390 * scm-lang.c (scm_lookup_name): Ditto.
7391 * tracepoint.c (trace_error): Ditto.
7392 * remote-utils.c (usage): Ditto.
7393 * remote.c (compare_sections_command): Ditto.
7394 Fix PR gdb/328.
7395
7396 2002-03-22 Andrew Cagney <ac131313@redhat.com>
7397
7398 * gdbtypes.c (append_composite_type_field): New function.
7399 (init_composite_type): New function.
7400 * gdbtypes.h (append_composite_type_field): Declare.
7401 (init_composite_type): Ditto.
7402
7403 2002-03-22 Elena Zannoni <ezannoni@redhat.com>
7404
7405 * ppc-linux-tdep.c (ppc_sysv_abi_use_struct_convention): New
7406 function.
7407 * ppc-tdep.h (ppc_sysv_abi_use_struct_convention): Export.
7408 * rs6000-tdep.c (rs6000_gdbarch_init): Use different
7409 structure returning convention for SYSV ABI case, but not
7410 for GNU/Linux, FreeBSD, or NetBSD.
7411
7412 2002-03-22 Daniel Jacobowitz <drow@mvista.com>
7413
7414 * symtab.h (lookup_block_symbol): Add mangled_name argument
7415 to prototype.
7416
7417 * symmisc.c (maintenance_check_symtabs): Call lookup_block_symbol
7418 with new mangled_name argument.
7419 * linespec.c (decode_line_1): Likewise.
7420 * valops (value_of_this): Likewise.
7421 * symtab.c (lookup_transparent_type): Likewise.
7422 (lookup_symbol_aux): Likewise. Accept new mangled_name argument.
7423 (lookup_symbol): If we are given a mangled name, pass it down
7424 to lookup_symbol_aux.
7425 (lookup_block_symbol): If we are given a mangled name to check
7426 against, only return symbols which match it.
7427
7428 2002-03-22 Christopher Faylor <cgf@redhat.com>
7429
7430 * win32-nat.c (child_create_inferior): Check for proper shell to use
7431 here, in case the user changes it on the fly.
7432 (_initialize_inftarg): Remove shell path considerations.
7433
7434 2002-03-21 Elena Zannoni <ezannoni@redhat.com>
7435
7436 * rs6000-tdep.c (rs6000_gdbarch_init): Use correct max size value
7437 for gdbarch_max_register_raw_size and max_register_virtual_size.
7438 Adjust copyright year.
7439
7440 2002-03-21 Daniel Jacobowitz <drow@mvista.com>
7441
7442 * dbxread.c (process_one_symbol): Extend the first N_SLINE
7443 in a function to cover the entire beginning of the function
7444 as well if it does not already.
7445
7446 2002-03-21 Tom Rix <trix@redhat.com>
7447
7448 * rs6000-nat.c (rs6000_ptrace32): Renamed from ptrace32.
7449 (rs6000_ptrace64): Renamed from ptrace64.
7450
7451 2002-03-20 Martin M. Hunt <hunt@redhat.com>
7452
7453 * gdbserver/remote-utils.c (remote_open): Don't call
7454 getprotobyname, we're all using TCP here so just use
7455 IPPROTO_TCP.
7456 * gdbserver/gdbreplay.c (remote_open): Ditto.
7457
7458 2002-03-20 Martin M. Hunt <hunt@redhat.com>
7459
7460 * regcache.c (_initialize_regcache): No need to call
7461 build_regcache() at this time; it gets called whenever
7462 the gdbarch changes.
7463
7464 2002-03-20 David O'Brien <obrien@FreeBSD.org>
7465
7466 * sparc-nat.c: Include sys/param.h where possible.
7467
7468 2002-03-20 Daniel Jacobowitz <drow@mvista.com>
7469
7470 Fix PR gdb/422.
7471 * c-lang.c (c_create_fundamental_type): Handle FT_COMPLEX,
7472 FT_DBL_PREC_COMPLEX, and FT_EXT_PREC_COMPLEX.
7473 * dwarf2read.c (read_base_type): Set TYPE_TARGET_TYPE for
7474 complex types.
7475 * stabsread.c (rs6000_builtin_type): Likewise.
7476 (read_sun_floating_type): Likewise.
7477
7478 2002-03-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7479
7480 * stabsread.c (read_member_functions): Remove skip code for duplicate
7481 constructor/destructor methods. Use standard parsing for these
7482 methods and just do not chain them to the list of methods after
7483 parsing.
7484
7485 2002-03-19 Alexandre Oliva <aoliva@redhat.com>
7486
7487 * coffread.c: Remove redundant static declarations. Replace
7488 occurrences of `PTR' with `void *'.
7489 * elfread.c, mdebugread.c, minsyms.c, mipsread.c: Likewise.
7490 * top.h (quit_cover): Likewise.
7491 * defs.h (catch_errors): Likewise.
7492
7493 2002-03-18 Andrew Cagney <ac131313@redhat.com>
7494
7495 * defs.h (XMALLOC): Define.
7496 * gdb-events.sh (XMALLOC): Delete macro.
7497 * gdb-events.c, gdb-events.h: Regenerate.
7498 * gdbarch.sh (XMALLOC): Delete macro.
7499 * gdbarch.c: Regenerate.
7500 * serial.c (XMALLOC): Delete macro.
7501 * ui-file.c (XMALLOC): Ditto.
7502 * ser-unix.h (XMALLOC): Ditto.
7503 * sh-tdep.c (XMALLOC): Ditto.
7504 * ui-out.c (XMALLOC): Ditto.
7505 * utils.c (XMALLOC): Ditto.
7506 * i386-tdep.c (XMALLOC): Ditto.
7507 * gdb-events.c (XMALLOC): Ditto.
7508 * d10v-tdep.c (XMALLOC): Ditto.
7509 * cli-out.c (XMALLOC): Ditto.
7510
7511 * cli-out.c, d10v-tdep.c, gdb-events.c: Update copyright.
7512 * gdb-events.sh, i386-tdep.c, ser-unix.h, serial.c: Ditto.
7513 * ui-file.c, ui-out.c: Ditto.
7514
7515 2002-03-18 Andrew Cagney <ac131313@redhat.com>
7516
7517 * command.h (struct cmd_list_element): Add field context.
7518 (set_cmd_context, get_cmd_context): Declare.
7519 * cli/cli-decode.h: Ditto.
7520 * cli/cli-decode.c (get_cmd_context): New function.
7521 (set_cmd_context): New function.
7522 (add_cmd): Initialize context.
7523 Part of fixing PR gdb/145 and PR gdb/146.
7524
7525 2002-03-17 Andrew Cagney <ac131313@redhat.com>
7526
7527 * cli/cli-decode.c (cmd_type): New function.
7528 * command.h (cmd_type): Declare.
7529 * infrun.c (set_schedlock_func): Call function cmd_type.
7530 * kod.c (kod_set_os): Call cmd_type.
7531 * cris-tdep.c (cris_version_update): Use function cmd_type.
7532 (cris_mode_update, cris_abi_update): Ditto.
7533
7534 * command.h: (execute_cmd_post_hook): Declare.
7535 (execute_cmd_pre_hook): Declare.
7536 * cli/cli-script.c (clear_hook_in_cleanup): New function.
7537 (execute_cmd_post_hook, execute_cmd_pre_hook): New
7538 functions. Execute pre/post hook while ensuring that afterwords
7539 hook_in is cleared.
7540 * top.c (execute_command): Use execute_cmd_post_hook, and
7541 execute_cmd_pre_hook to execute pre/post commands.
7542 * infrun.c (normal_stop): Pass stop_command and not pre_hook to
7543 hook_stop_stub.
7544 (hook_stop_stub): Call execute_cmd_pre_hook.
7545
7546 2002-03-17 Andrew Cagney <ac131313@redhat.com>
7547
7548 * kod.c (kod_set_os): Revert previous change. Is called by ``info
7549 set'' and this leads to a core dump. Move xstrdup of
7550 operating_system to after check that it is not NULL.
7551
7552 2002-03-17 Andrew Cagney <ac131313@redhat.com>
7553
7554 * kod.c (kod_set_os): Remove unnecessary check that
7555 ``command->type'' is set_cmd.
7556
7557 * valprint.c (set_input_radix): Use input_radix.
7558 (set_output_radix): Use output_radix.
7559 (set_input_radix_1, set_output_radix_1): Add FIXME - bad radix
7560 isn't reverted.
7561
7562 2002-03-16 Andrew Cagney <ac131313@redhat.com>
7563
7564 * value.h (struct value): Delete field ``substring_addr''. Change
7565 aligner fields to force_doublest_align, force_longest_align,
7566 force_core_addr_align and force_pointer_aligh.
7567
7568 * value.h (struct value): Fix typo in above change.
7569
7570 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7571
7572 * ia64-tdep.c (ia64_gdbarch_init): Call set_gdbarch_frame_args_skip,
7573 to fix internal_error from ``maintenance print architecture''.
7574
7575 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7576
7577 * cp-valprint.c (cp_is_vtbl_ptr_type): Handle vtbl field type
7578 for gcc versions after gcc-2.8.1.
7579
7580 2002-03-16 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7581
7582 * eval.c (evaluate_subexp_standard): Fix setup of ``this'' pointer
7583 for method resolution. Restore adjustment of ``this'' pointer after
7584 calling value_struct_elt, which was accidentally removed during the
7585 HP merge.
7586
7587 2002-03-15 Andrew Cagney <ac131313@redhat.com>
7588
7589 * eval.c (evaluate_subexp_standard): Pass ``selected_frame'' to
7590 value_of_register.
7591 * findvar.c (value_of_register): Add ``frame'' parameter. Pass to
7592 get_saved_register.
7593 * value.h (value_of_register): Update.
7594
7595 2002-03-14 Richard Henderson <rth@redhat.com>
7596
7597 * configure.in: Detect declaration for canonicalize_file_name.
7598 * utils.c (canonicalize_file_name): Declare, if needed.
7599 (gdb_realpath): Prefer realpath if available and usable.
7600 * config.in, configure: Rebuild.
7601
7602 2002-03-14 Richard Henderson <rth@redhat.com>
7603
7604 * dwarf2read.c (read_array_type): Accept DW_FORM_data8 as
7605 a constant array bound.
7606
7607 * MAINTAINERS: Add myself to write-after-approval.
7608
7609 2002-03-14 Michael Snyder <msnyder@redhat.com>
7610
7611 * symfile.c (syms_from_objfile): Return immediately if no syms.
7612 (symbol_file_add): Return immediately if no syms.
7613 (find_sym_fns): Return immediately if no syms.
7614
7615 2002-03-13 Michal Ludvig <mludvig@suse.cz>
7616
7617 * gdbserver/remote-util.c (remote_open): Print remote-side's
7618 IP address when remote debugging over the network.
7619
7620 2002-03-12 David O'Brien <obrien@FreeBSD.org>
7621
7622 * config/sparc/fbsd.mh: Fix copyright.
7623 * config/sparc/fbsd.mt: Likewise.
7624
7625 2002-03-11 Richard Earnshaw <rearnsha@arm.com>
7626
7627 * MAINTAINERS: Fix typo in name of gdb warnings option.
7628 (x86-64): Fix formating so that this can be parsed by awk.
7629
7630 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
7631
7632 * Makefile.in (defs_h): Add $(INCLUDE_DIR)/gdb/signals.h.
7633 * defs.h: Include "gdb/signals.h".
7634 (enum target_signal): Move to $(INCLUDE_DIR)/gdb/signals.h.
7635
7636 2002-03-10 Michal Ludvig <mludvig@suse.cz>
7637
7638 * x86-64-tdep.h (sys/reg.h, x86_64_regmap): Moved to x86-64-linux-nat.c
7639 * x86-64-linux-nat.c (sys/reg.h, x86_64_regmap): Moved here
7640 from x86-64-tdep.h
7641
7642 2002-03-10 Daniel Jacobowitz <drow@mvista.com>
7643 Don Howard <dhoward@redhat.com>
7644
7645 * mips-tdep.c (ST0_FR): Define.
7646 (mips2_fp_compat): New function, temporarily disabled.
7647 (mips_read_fp_register_single): New function.
7648 (mips_read_fp_register_double): New function.
7649 (mips_print_register): Use them.
7650 (do_fp_register_row): Likewise.
7651
7652 2002-03-09 Andrew Cagney <ac131313@redhat.com>
7653
7654 * MAINTAINERS: Add Jim Ingham and Klee Dienes to ``write after
7655 approval''.
7656
7657 2002-03-08 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7658
7659 * stabsread.c (read_member_functions): Fix is_stub test for
7660 static member functions, improve comment.
7661
7662 2002-03-07 Richard Earnshaw <rearnsha@arm.com>
7663
7664 * remote-rdi.c (myprint): Replace 'PTR' with 'void *'.
7665 (mywrite, mywritec, mypause, myreadc, mygets): Likewise.
7666 (_initialize_remote_rdi): Use add_set_boolean_cmd to register
7667 commands that set boolean values.
7668 (arm_rdi_remove_breakpoint): Rewrite to avoid uninitialized warning.
7669 (arm_rdi_resume): Always initialize PC.
7670 (arm_rdi_open): Don't use rslt as a boolean.
7671 (arm_rdi_create_inferior, arm_rdi_close, arm_rdi_resume)
7672 (arm_rdi_fetch_registers, arm_rdi_store_registers)
7673 (arm_rdi_xfer_memory, arm_rdi_files_info, arm_rdi_kill)
7674 (arm_rdi_insert_breakpoint, arm_rdi_remove_breakpoint): Likewise.
7675
7676 2002-03-06 Alexandre Oliva <aoliva@redhat.com>
7677
7678 * configure.in (gdb_cv_bigtoc): Check for -bbigtoc on AIX.
7679 * configure: Rebuilt.
7680
7681 2002-03-06 Stephane Carrez <Stephane.Carrez@worldnet.fr>
7682
7683 * m68hc11-tdep.c (_initialize_m68hc11_tdep): Don't set tm_print_insn.
7684 (m68hc11_gdbarch_init): But use set_gdbarch_print_insn instead.
7685
7686 2002-03-06 Andrew Cagney <ac131313@redhat.com>
7687
7688 * cli/cli-decode.c (set_cmd_completer): New function.
7689 * command.h (set_cmd_completer): Declare.
7690 * cli/cli-decode.h (set_cmd_completer): Ditto.
7691
7692 * breakpoint.c (_initialize_breakpoint): Use set_cmd_completer.
7693 * cli/cli-cmds.c (init_cli_cmds): Ditto.
7694 * win32-nat.c (_initialize_inftarg): Ditto.
7695 * remote-rdi.c (_initialize_remote_rdi): Ditto.
7696 * proc-api.c (_initialize_proc_api): Ditto.
7697 * hppa-tdep.c (_initialize_hppa_tdep): Ditto.
7698 * source.c (_initialize_source): Ditto.
7699 * exec.c (_initialize_exec): Ditto.
7700 * solib.c (_initialize_solib): Ditto.
7701 * top.c (init_main): Ditto.
7702 * tracepoint.c (_initialize_tracepoint): Ditto.
7703 * symfile.c (_initialize_symfile): Ditto.
7704 * printcmd.c (_initialize_printcmd): Ditto.
7705 * infcmd.c (_initialize_infcmd): Ditto.
7706 * corefile.c (_initialize_core): Ditto.
7707
7708 2002-03-05 Andrew Cagney <ac131313@redhat.com>
7709
7710 * MAINTAINERS (Past Maintainers): Add Frank Ch. Eigler.
7711
7712 2002-03-05 Andrew Cagney <ac131313@redhat.com>
7713
7714 * MAINTAINERS: Fix Mac OS X and Objective-C/C++.
7715
7716 2002-03-05 Andrew Cagney <ac131313@redhat.com>
7717
7718 * NEWS: Update headings, 5.2 has branched.
7719
7720 2002-03-04 Daniel Jacobowitz <drow@mvista.com>
7721
7722 * gdbserver/linux-low.c (PTRACE_XFER_TYPE): Change to long.
7723 (num_regs, regmap): Move inside HAVE_LINUX_USRREGS.
7724 (register_addr, REGISTER_RAW_SIZE): Likewise.
7725 (usr_store_inferior_registers): Use PTRACE_XFER_TYPE.
7726 * gdbserver/linux-x86-64-low.c: Remove extra #endif.
7727
7728 2002-03-03 Michal Ludvig <mludvig@suse.cz>
7729
7730 * MAINTAINERS (x86-64): Add myself.
7731 * x86-64-tdep.c (x86_64_push_arguments): Fixed typo naregs->nregs,
7732 changed value_ptr -> struct value *
7733
7734 2002-03-01 David O'Brien <obrien@FreeBSD.org>
7735
7736 * configure.host (sparc64-*-freebsd): Add.
7737 * configure.tgt: Likewise.
7738 * config/sparc/fbsd.mh: New file.
7739 * config/sparc/fbsd.mt: Likewise.
7740 * config/sparc/nm-fbsd.h: Likewise.
7741 * config/sparc/tm-fbsd.h: Likewise.
7742
7743 2002-03-01 Daniel Jacobowitz <drow@mvista.com>
7744
7745 * config/djgpp/fnchange.lst: Add regformats/reg-i386-linux.dat and
7746 regformats/reg-s390x.dat.
7747
7748 2002-03-01 Andrew Cagney <ac131313@redhat.com>
7749
7750 * utils.c: Add FIXME explaining true/false problem.
7751
7752 2002-02-28 Andrew Cagney <ac131313@redhat.com>
7753
7754 * MAINTAINERS (Past Maintainers): Add J.T. Conklin.
7755
7756 2002-02-28 Michael Chastain <mec@shout.net>
7757
7758 * MAINTAINERS: Fix typo: gdb.satbs -> gdb.stabs .
7759
7760 2002-02-28 Daniel Jacobowitz <drow@mvista.com>
7761
7762 * gdbserver/linux-s390-low.c: New file.
7763 * regformats/reg-s390.dat: New file.
7764 * regformats/reg-s390x.dat: New file.
7765 * gdbserver/configure.srv: Add S/390.
7766 * gdbserver/Makefile.in: Add S/390.
7767 * configure.tgt: Enable gdbserver for S/390.
7768
7769 2002-02-28 Eli Zaretskii <eliz@is.elta.co.il>
7770
7771 * go32-nat.c (_initialize_go32_nat): Don't use periods in the
7772 first line of the doc string for "info dos", except at the end of
7773 the sentence, since the short help stops at the first period.
7774
7775 2002-02-28 Jason Merrill <jason@redhat.com>
7776
7777 * dwarf2read.c (dwarf_cfi_name): Add new codes.
7778
7779 2002-02-27 Fred Fish <fnf@redhat.com>
7780
7781 * blockframe.c (generic_fix_call_dummy): Fix obvious typo in
7782 comment (dumy -> dummy).
7783
7784 2002-02-27 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7785
7786 * symtab.c (gdb_mangle_name): Handle fully mangled v3 abi physnames.
7787
7788 2002-02-27 Rodney Brown <rbrown64@csc.com.au>
7789
7790 * utils.c (gdb_realpath): Add pathconf fallback for sco3.2v5.
7791
7792 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
7793
7794 * gdbserver/acconfig.h: New file.
7795 * gdbserver/i387-fp.c: New file.
7796 * gdbserver/i387-fp.h: New file.
7797 * gdbserver/linux-x86-64.c: New file.
7798 * regformats/reg-x86-64.dat: New file.
7799 * configure.tgt: Add x86_64-*-linux* gdbserver support.
7800 * gdbserver/configure.srv: Add x86_64-*-linux* and regset support.
7801 * gdbserver/configure.in: Add support for regsets.
7802 * gdbserver/config.in: Regenerate.
7803 * gdbserver/configure: Regenerate.
7804 * gdbserver/Makefile.in: Likewise. Add $(linux_low_h).
7805 * gdbserver/linux-low.h: New file.
7806 * gdbserver/linux-low.c: Include "linux-low.h". Add support
7807 for regsets.
7808 * gdbserver/linux-arm-low.c: Include "linux-low.h".
7809 * gdbserver/linux-ia64-low.c: Include "linux-low.h".
7810 * gdbserver/linux-m68k-low.c: Include "linux-low.h".
7811 * gdbserver/linux-mips-low.c: Include "linux-low.h".
7812 * gdbserver/linux-ppc-low.c: Include "linux-low.h".
7813 * gdbserver/linux-sh-low.c: Include "linux-low.h".
7814 * gdbserver/linux-i386-low.c: Include "linux-low.h". Include
7815 "i387-fp.h". Add PTRACE_GETREGS and friends.
7816 * gdbserver/regcache.c (supply_register): New function.
7817 (supply_register_by_name): New function.
7818 (collect_register): New function.
7819 (collect_register_by_name): New function.
7820
7821 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
7822
7823 * gdbserver/Makefile.in (INTERNAL_CFLAGS): Remove -DGDBSERVER.
7824 (config.status): Add configure.srv dependency.
7825 (server_h): Add config.h dependency.
7826
7827 2002-02-27 Daniel Jacobowitz <drow@mvista.com>
7828
7829 * regformats/reg-i386-linux.dat: New file, with $orig_eax.
7830 * gdbserver/Makefile.in: Add rules for reg-i386-linux.o.
7831 * gdbserver/configure.srv: Change i386-*-linux* to use
7832 reg-i386-linux.o.
7833
7834 2002-02-26 Andrew Cagney <ac131313@redhat.com>
7835
7836 * x86-64-tdep.c: Re-indent. Update copyright date.
7837
7838 2002-02-26 Andrew Cagney <ac131313@redhat.com>
7839
7840 From Michal Ludvig <mludvig@suse.cz>:
7841 * x86-64-tdep.c (value.h): Delete.
7842 (gdb_assert.h): Include.
7843 (x86_64_register_convert_to_virtual,
7844 x86_64_register_convert_to_raw ): Add check which lets only
7845 floating-point values to be converted.
7846 (value_push): Delete.
7847 (x86_64_push_arguments): Order of arguments pushed on stack fixed.
7848 (i386_gdbarch_init): Number of register_bytes fixed.
7849
7850 2002-02-26 Andrew Cagney <ac131313@redhat.com>
7851
7852 * MAINTAINERS: Add x86-64 target.
7853
7854 2002-02-26 Andrew Cagney <ac131313@redhat.com>
7855
7856 * memattr.c (mem_command): Eliminate ``true'' and ``false''.
7857 * osfsolib.c (solib_map_sections): Ditto.
7858 * irix5-nat.c (solib_map_sections): Ditto.
7859 * corelow.c (gdb_check_format): Ditto.
7860 * symfile.c (symfile_bfd_open): Ditto.
7861 * solib.c (solib_map_sections): Ditto.
7862 Fix PR gdb/354.
7863
7864 2002-02-26 Andrew Cagney <ac131313@redhat.com>
7865
7866 * remote.c (_initialize_remote): By default, disable ``e'' and
7867 ``E'' step out-of-range packets.
7868
7869 2002-02-26 Andreas Schwab <schwab@suse.de>
7870
7871 * config/m68k/tm-linux.h (FRAME_SAVED_PC): Define as
7872 m68k_linux_frame_saved_pc.
7873 (IN_SIGTRAMP): Define as m68k_linux_in_sigtramp instead of
7874 in_sigtramp.
7875 (SIGCONTEXT_PC_OFFSET): Remove.
7876 * m68klinux-nat.c (m68k_linux_frame_saved_pc,
7877 m68k_linux_sigtramp_saved_pc): New functions.
7878 (IS_SIGTRAMP, IS_RT_SIGTRAMP): Define.
7879 (SIGCONTEXT_PC_OFFSET): Moved here from config/m68k/tm-linux.h.
7880 (UCONTEXT_PC_OFFSET): Define.
7881 (m68k_linux_in_sigtramp): Renamed from in_sigtramp, handle both
7882 non-RT and RT signal trampolines.
7883
7884 2002-02-26 Richard Earnshaw <rearnsha@arm.com>
7885
7886 * config/arm/tm-embed.h (TARGET_UPAGES): Delete.
7887 (TARGET_NBPG, STACK_END_ADDR): Delete
7888 (VARIABLES_INSIDE_BLOCK): Delete.
7889
7890 2002-02-25 Andrew Cagney <ac131313@redhat.com>
7891
7892 * utils.c (perror_with_name): Make string parameter constant.
7893 (print_sys_errmsg): Ditto.
7894 (query): Ditto.
7895 * defs.h (perror_with_name): Update.
7896 (print_sys_errmsg): Update.
7897 (query): Update.
7898
7899 2002-02-25 Daniel Jacobowitz <drow@mvista.com>
7900
7901 From Eliot Dresselhaus <eliot@ayrnetworks.com>:
7902 * gdbserver/linux-mips-low.c (cannot_fetch_register): Fix typo.
7903
7904 2002-02-25 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
7905
7906 * rs6000-nat.c (set_host_arch): Do not switch to a new architecture
7907 if it already matches the current architecture from the exec file.
7908 Include arch-utils.h for gdbarch_info_init prototype.
7909 * Makefile.in (rs6000-nat.o): Update dependencies.
7910
7911 2002-02-25 Eli Zaretskii <eliz@is.elta.co.il>
7912
7913 * config/djgpp/djconfig.sh: Set NM=nm and CFLAGS="-g -O2" in the
7914 list of exported variables.
7915
7916 2002-02-24 Daniel Jacobowitz <drow@mvista.com>
7917
7918 * gdbserver/configure.srv: New file.
7919 * gdbserver/configure.in: Use configure.srv instead
7920 of the host/target makefile fragments. Set GDBSERVER_DEPFILES
7921 from it.
7922 * gdbserver/configure: Regenerated.
7923 * gdbserver/terminal.h: New file.
7924 * gdbserver/Makefile.in: Update for configure changes. Remove
7925 more unneeded include paths.
7926
7927 2002-02-24 Andrew Cagney <ac131313@redhat.com>
7928
7929 From wiz at danbala:
7930 * config/sparc/tm-sp64.h: Fix grammar and typos.
7931 Fix PR gdb/287.
7932
7933 2002-02-24 Andrew Cagney <ac131313@redhat.com>
7934
7935 * lin-lwp.c, thread-db.c, defs.h, cris-tdep.c: Replace ``Linux''
7936 with either ``GNU/Linux'' or ``Linux kernel''. Update copyright.
7937 * m68klinux-nat.c, sparc-linux-nat.c, x86-64-linux-nat.c: Ditto.
7938 * x86-64-linux-tdep.c, gregset.h, gdb_wait.h: Ditto.
7939 * ia64-linux-nat.c, infrun.c, linux-proc.c: Ditto.
7940 * proc-service.c, i386-linux-tdep.c, ppc-linux-tdep.c: Ditto.
7941 * s390-tdep.c: Ditto.
7942 * config/nm-linux.h, config/alpha/nm-linux.h: Ditto.
7943 * config/alpha/tm-alpha.h, config/alpha/tm-alphalinux.h:
7944 * config/alpha/xm-alphalinux.h, config/i386/nm-linux.h: Ditto.
7945 * config/i386/nm-x86-64.h, config/i386/tm-linux.h: Ditto.
7946 * config/m68k/tm-linux.h, config/mips/nm-linux.h: Ditto.
7947 * config/mips/tm-linux.h, config/mips/xm-linux.h: Ditto.
7948 * config/powerpc/tm-linux.h, config/s390/nm-linux.h: Ditto.
7949 * config/s390/tm-linux.h, config/sh/tm-linux.h: Ditto.
7950 * config/sparc/nm-linux.h, config/sparc/tm-linux.h: Ditto.
7951 * config/sparc/tm-sp64linux.h, config/sparc/xm-linux.h: Ditto.
7952 Fix PR gdb/378.
7953
7954 2002-02-23 Andrew Cagney <ac131313@redhat.com>
7955
7956 * lin-thread.c: Delete file.
7957 * configure.in (gdb_cv_struct_reg_r_gs): Update comment to refer
7958 to gdb_proc_service.h.
7959 * configure: Re-generate.
7960
7961 * ocd.c (ocd_open): Do not try to open the "ocd" device.
7962 * serial.c (serial_open): Delete check for "ocd".
7963 Fix PR gdb/349.
7964
7965 * Makefile.in (linux-thread.o): Delete target.
7966 * linux-thread.c: Delete file.
7967
7968 * config/djgpp/fnchange.lst: Rename bfd/elf32-sh64.c. Tweak other
7969 renamed SH files to be consistent.
7970
7971 * symtab.c (sort_search_symbols): Use xfree.
7972
7973 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
7974
7975 * arm-linux-tdep.c (arm_linux_init_abi): Register
7976 IN_SOLIB_CALL_TRAMPOLINE and SKIP_TRAMPOLINE_CODE
7977 * config/arm/tm-linux.h (IN_SOLIB_CALL_TRAMPOLINE): Replace old
7978 definition with undef, since we don't want the sysvr4 definition.
7979 (SKIP_TRAMPOLINE_CODE): Likewise.
7980
7981 2002-02-23 Andrew Cagney <ac131313@redhat.com>
7982
7983 From 2002-02-22 Alfred M. Szmidt <ams@kemisten.nu>:
7984
7985 * configure.in: (AC_CHECK_FUNCS) Added test for
7986 canonicalize_file_name Regenerated.
7987 * config.in, configure: Regenerated.
7988 * utils.c: (gdb_realpath) If HAVE_CANONICALIZE_FILE_NAME is
7989 defined use canonicalize_file_name.
7990
7991 2002-02-23 Michael Chastain <mec@shout.net>
7992
7993 * MAINTAINERS: Remove Michael Chastain from "paper trail" list.
7994
7995 2002-02-23 Andrew Cagney <ac131313@redhat.com>
7996
7997 * README: Remove references to cygnus.com.
7998 * MAINTAINERS: Change Past Maintainer addresses to ``foo at bar
7999 dot com'' form. Remove references to cygnus.com and sourceware.
8000
8001 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8002
8003 From 2002-02-19 Paul Eggert <eggert@twinsun.com>:
8004 * Makefile.in (VER): Change "head -1" to "sed q", since POSIX
8005 1003.1-2001 no longer allows "head -1".
8006 * gdb/Makefile.in (version.c): Likewise.
8007 * gdb/doc/Makefile.in (GDBvn.texi): Likewise.
8008 * gdb/CONTRIBUTE: Change "diff -c3" to "diff -c", which is
8009 equivalent. POSIX 1003.1-2001 no longer allows "diff -c3".
8010
8011 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8012
8013 * cli/cli-decode.c (cmd_cfunc_eq): New function.
8014 * command.h (cmd_cfunc_eq): Declare.
8015 * cli/cli-decode.h (cmd_cfunc_eq): Ditto.
8016
8017 * cli/cli-cmds.h (is_complete_command): Change parameter to a
8018 ``struct cmd_list_element *''.
8019 * cli/cli-cmds.c (is_complete_command): Update. Use
8020 cmd_cfunc_eq.
8021 * top.c (execute_command): Pass the command to
8022 is_complete_command.
8023 * tracepoint.c: Replace function.cfunc with cmd_cfunc_eq.
8024
8025 2002-02-23 Andrew Cagney <ac131313@redhat.com>
8026
8027 From 2002-02-20 Martin Schwidefsky <schwidefsky@de.ibm.com>:
8028 * config/s390/tm-s390.h (GDB_TARGET_IS_ESAME): Use renamed
8029 architecture defines.
8030 * s390-tdep.c (s390_gdbarch_init): Likewise.
8031
8032 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
8033
8034 * arm-linux-tdep.c (arm_linux_extract_return_value): Make static.
8035 (arm_linux_push_arguments): Likewise.
8036 (arm_linux_init_abi): Register them. Also register linux-specific
8037 call_dummy_words.
8038 (find_minsym_and_objfile): Use strcmp, not STREQ.
8039 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Delete.
8040 (arm_linux_call_dummy_words): Delete declaration.
8041 (EXTRACT_RETURN_VALUE, PUSH_ARGUMENTS): Delete.
8042 (arm_linux_extract_return_value, arm_linux_push_arguments): Delete
8043 declarations.
8044 (LOWEST_PC): Delete.
8045
8046 2002-02-23 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8047
8048 * maint.c (print_section_info): Do not prepend `0x' to filepos
8049 output, it will be handled by local_hex_string_custom.
8050
8051 2002-02-23 Richard Earnshaw <rearnsha@arm.com>
8052
8053 * arm-linux-nat.c (store_newfpe_single): Use regcache_collect.
8054 (store_newfpe_double, store_newfpe_extended, store_fpregister)
8055 (store_register, store_regs, fill_gregset, fill_fpregset): Likewise.
8056
8057 2002-02-22 Jim Blandy <jimb@redhat.com>
8058
8059 Indicate that the bcache functions don't change the strings
8060 they're passed.
8061 * bcache.h (bcache, hash): Add `const' keywords to declarations.
8062 * bcache.c (bcache, hash): Add `const' keywords to definitions.
8063
8064 2002-02-22 Pierre Muller <muller@ics.u-strasbg.fr>
8065
8066 * win32-nat.c (child_create_inferior): Fix create flags setting bug.
8067
8068 2002-02-21 Christopher Faylor <cgf@redhat.com>
8069
8070 * win32-nat.c (register_loaded_dll): Just use raw name when we can't
8071 find the complete path to a loaded DLL.
8072
8073 2002-02-21 Fred Fish <fnf@redhat.com>
8074
8075 * dbxread.c (process_one_symbol): When finding an N_FUN symbol
8076 that marks the end of the range of a function, enter a line number
8077 entry that has a line number of zero and a PC offset that matches
8078 the end of the function. This starts a range of PC's for which no
8079 line number information is known.
8080 * symtab.c (find_pc_sect_line): If our best fit is in a range of
8081 PC's for which no line number info is found (line number is zero)
8082 then we didn't find any valid line information.
8083 * symtab.h: Document use of zero line number entry.
8084
8085 2002-02-21 Elena Zannoni <ezannoni@redhat.com>
8086
8087 * ppc-linux-nat.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Define.
8088 (have_ptrace_getvrregs): Define for run time checks.
8089 (gdb_vrregset_t): New type for Altivec register handling.
8090 (fetch_register, store_register): Fetch/store altivec register
8091 when needed.
8092 (fetch_altivec_register, store_altivec_register): New functions.
8093 (supply_vrregset, fill_vrregset): New functions.
8094 (fetch_altivec_registers, store_altivec_registers): New functions.
8095 (fetch_ppc_registers, store_ppc_registers): Fetch/store altivec
8096 registers as well.
8097
8098 2002-02-21 Jiri Smid <smid@suse.cz>
8099
8100 * config/i386/x86-64linux.mh (NATDEPFILES): Remove x86-64-nat.o.
8101
8102 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
8103
8104 * Makefile.in (armnbsd-nat.o): Update dependencies.
8105 * armnbsd-nat.c (supply_gregset): New function. Common code to
8106 supply the integer register set.
8107 (supply_fparegset): New function. Similar for FPA registers.
8108 (fetch_regs, fetch_fp_regs): Use them.
8109 (fetch_core_registers): Likewise.
8110 (fetch_elfcore_registers): New function.
8111 (arm_netbsd_elfcore_fns): New core-file type specification.
8112 (_initialize_arm_netbsd_nat): Register it.
8113
8114 2002-02-21 Richard Earnshaw <rearnsha@arm.com>
8115
8116 * armnbsd-nat.c: Include gdbcore.h.
8117 (FETCH_INFERIOR_REGISTERS): Just error if this isn't defined.
8118 (fetch_regs, fetch_fp_regs, store_regs, store_fp_regs): Add explicit
8119 'void' to declaration, to shut up ARI.
8120 (fetch_core_registers): Make static. Rewrite using supply_register.
8121 (arm_netbsd_core_fns): New core-file type specification.
8122 (_initialize_arm_netbsd_nat): New function.
8123
8124 2002-02-21 Christopher Faylor <cgf@redhat.com>
8125
8126 * win32-nat.c (register_loaded_dll): Correctly check for invalid handle
8127 value.
8128
8129 2002-02-20 Christopher Faylor <cgf@redhat.com>
8130
8131 * win32-nat.c (register_loaded_dll): Handle case where FindFirstFile
8132 fails.
8133
8134 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8135
8136 * jv-exp.y (parse_number): Change type of implicit longs
8137 to builtin_type_uint64.
8138
8139 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8140
8141 * gdbserver/linux-low.c (mywait): Change argument to waitpid
8142 to be an integer instead of a `union wait'.
8143
8144 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8145
8146 * mips-linux-nat.c: Call the operating system GNU/Linux.
8147 * mips-linux-tdep.c: Likewise.
8148 * mips-tdep.c: Likewise.
8149
8150 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8151
8152 Fix PR gdb/265.
8153 * jv-exp.y (parse_number): Handle 64-bit integers.
8154
8155 2002-02-20 Daniel Jacobowitz <drow@mvista.com>
8156
8157 * gdbserver/configure.in: Remove AM_PROC_CC_STDC. Change
8158 AC_STDC_HEADERS to AC_HEADER_STDC.
8159 * gdbserver/configure: Regenerated.
8160
8161 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
8162
8163 * arc-tdep.c (get_longjmp_target): Only compile this function if JB_PC
8164 is defined.
8165 * sparc-tdep.c (get_longjmp_target): Likewise.
8166
8167 2002-02-20 Richard Earnshaw <rearnsha@arm.com>
8168
8169 * News: Add news about ARM and Multi-arch. Mention the new target
8170 arm*-*-netbsd*.
8171
8172 2002-02-19 Jim Blandy <jimb@redhat.com>
8173
8174 * stabsread.c (error_type_complaint): Improve error message.
8175
8176 2002-02-19 Daniel Jacobowitz <drow@mvista.com>
8177
8178 * gdbserver/README: Update documentation.
8179 * gdbserver/configure.in: Update configury to match documentation.
8180 * gdbserver/Makefile.in: Likewise.
8181 * gdbserver/configure: Regenerated.
8182 * gdbserver/aclocal.m4: New file, generated by aclocal.
8183 * gdbserver/config.in: New file, generated by autoheader.
8184
8185 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8186
8187 * config/djgpp/fnchange.lst: Add change rules for armnbsd-tdep.c and
8188 armnbsd-nat.c.
8189
8190 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8191
8192 * arm-tdep.h (enum arm_float_model): New enum.
8193 (struct gdbarch_tdep): Add fp_model.
8194 * arm-tdep.c (arm_gdbarch_init): Set fp_model in tdep. Defer setting
8195 up floating-point conversions until we know the floating-point model
8196 in use by the inferior. Don't complain about being unable to
8197 determine the ABI of the inferior when we don't have one.
8198 (arm_extract_return_value): Support different floating-point models.
8199 (arm_store_return_value): Likewise.
8200 * armnbsd-tdep.c (arm_netbsd_aout_init_abi): Set fp_model in tdep to
8201 ARM_FLOAT_SOFT.
8202 (arm_netbsd_elf_init_abi): Set fp_model to ARM_FLOAT_SOFT_VFP.
8203
8204 2002-02-19 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8205
8206 * i386-tdep.c (i386_gdbarch_init): Eliminate incorrect use
8207 of ``current_gdbarch''.
8208
8209 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8210
8211 * armnbsd-nat.c : ANSIfy all function declarations.
8212 (fetch_register, fetch_regs, fetch_fp_register, fetch_fp_regs): New.
8213 (fetch_inferior_registers): Re-implement in terms of above.
8214 (store_register, store_regs, store_fp_register, store_fp_regs): New.
8215 (store_inferior_registers): Re-implement in terms of above.
8216
8217 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8218
8219 * arm-linux-nat.c: Linux -> GNU/Linux when not talking about the
8220 kernel.
8221 * arm-linux-tdep.c: Likewise.
8222 * config/arm/tm-linux.h: Likewise.
8223
8224 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8225
8226 * configure.tgt (arm*-*-netbsd*): This variant is now fully multi-arch.
8227 * config/arm/nbsd.mt (TM_FILE): Delete.
8228 * config/arm/tm-nbsd.h: Delete.
8229
8230 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8231
8232 * arm-tdep.c (arm_gdbarch_init): Initialize TARGET_CHAR_SIGNED.
8233 Initialize CALL_DUMMY_LENGTH.
8234
8235 2002-02-19 Richard Earnshaw <rearnsha@arm.com>
8236
8237 * armnbsd-tdep.c (arm_netbsd_aout_in_solib_call_trampoline): New
8238 function.
8239 (arm_netbsd_aout_init_abi): Initialize IN_SOLIB_CALL_TRAMPOLINE.
8240 * config/arm/tm-nbsd.h: Don't include config/tm-nbsd.h, it only
8241 defines one thing and that is incorrect for this port.
8242 (IN_SOLIB_CALL_TRAMPOLINE): Delete.
8243
8244 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
8245
8246 * go32-nat.c: add i386-tdep.h include to import FP_REGNUM_P macro.
8247
8248 2002-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
8249
8250 * win32-nat.c (display_selector): New function. Displays information
8251 about the information returned by GetThreadSelectorEntry API function.
8252 (display_selectors): New function. Displays the infomation of
8253 the selector given as argument, or of CS, DS ans FS selectors
8254 if no argument is given.
8255 ( _initialize_inftarg): Add "w32" as info prefix command.
8256 Add "info w32 selector" as command calling display_selectors.
8257
8258 2002-02-19 Pierre Muller <muller@ics.u-strasbg.fr>
8259
8260 * i386-tdep.c (get_longjmp_target): Fix compilation failure
8261 by setting dummy values to JB_PC and JB_ELEMENT_SIZE
8262 if not defined.
8263
8264 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
8265
8266 * config/arm/nbsd.mt (TDEPFILES): Add solib-sunos.o.
8267
8268 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
8269
8270 * arm-tdep.c (arm_set_call_dummy_breakpoint_offset): New function.
8271 (arm_fix_call_dummy): Call it.
8272 (arm_call_dummy_breakpoint_offset): Delete.
8273 (arm_gdbarch_init): Initialize call_dummy_breakpoint_offset.
8274 * config/arm/tm-arm.h (CALL_DUMMY_BREAKPOINT_OFFSET): Delete.
8275
8276 2002-02-18 Andrew Cagney <ac131313@redhat.com>
8277
8278 * gdbarch.sh (FRAME_CHAIN_VALID): Only require at level 2.
8279 Default to func_frame_chain_valid.
8280 * gdbarch.h, gdbarch.c: Re-generate.
8281 * frame.h (FRAME_CHAIN_VALID): Delete definition.
8282
8283 2002-02-18 Elena Zannoni <ezannoni@redhat.com>
8284
8285 * ppc-linux-nat.c: Update copyright.
8286 (fetch_register, store_register): Add tid parameter, don't compute
8287 tid here.
8288 (fetch_ppc_registers, store_ppc_registers): Add tid
8289 parameter. Pass it along to callees.
8290 (fetch_inferior_registers, store_inferior_registers): Compute tid
8291 here, and pass it to calleed functions.
8292 (fill_gregset, supply_fpregset): Clean up formatting.
8293
8294 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
8295
8296 * arm-tdep.c (arm_gdbarch_init): Initialize coerce_float_to_double.
8297 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Delete.
8298
8299 2002-02-18 Richard Earnshaw <rearnsha@arm.com>
8300
8301 * gdbarch.sh (GET_LONGJMP_TARGET): Add rule.
8302 * gdbarch.c gdbarch.h: Regenerate.
8303 * breakpoint.c (create_longjmp_breakpoint): Always compile this
8304 function.
8305 (breakpoint_reset): Test GET_LONGJMP_TARGET_P().
8306 * infrun.c (GET_LONGJMP_TARGET): Delete default definition.
8307 (handle_inferior_event): Test GET_LONGJMP_TARGET_P().
8308
8309 * arm-tdep.h (struct gdbarch_tdep): Add jb_pc and jb_elt_size fields.
8310 * arm-tdep.c (arm_get_longjmp_target): New function.
8311 (arm_gdbarch_init): Initialize jb_pc to -1. If ABI handler changes
8312 this to a positive value register arm_get_longjmp_target as the
8313 longjmp handler.
8314 * arm-linux-tdep.c (arm_get_longjmp_target): Delete.
8315 (arm_linux_init_abi): Set up longjmp description in tdep.
8316 * armnbsd-nat.c (get_longjmp_target): Delete.
8317 * armnbsd-tdep.c (arm_netbsd_init_abi_common): Set up longjmp
8318 description in tdep.
8319 * config/arm/tm-nbsd.h (JB_ELEMENT_SIZE, JB_PC): Delete.
8320 (get_longjmp_target): Delete declaration.
8321 (GET_LONGJMP_TARGET): Delete.
8322 * config/arm/tm-linux.h (arm_get_longjmp_target): Delete declaration.
8323 (GET_LONGJMP_TARGET): Delete.
8324
8325 2002-02-17 Kevin Buettner <kevinb@redhat.com>
8326
8327 From Peter Schauer <pes@regent.e-technik.tu-muenchen.de>:
8328 * ia64-tdep.c (ia64_gdbarch_init): Eliminate incorrect use
8329 of ``current_gdbarch''.
8330
8331 2002-02-17 Tom Tromey <tromey@redhat.com>
8332
8333 * cli/cli-cmds.c (compare_strings): New function.
8334 (complete_command): Only print each unique item once.
8335 * completer.h (complete_line): Declare.
8336 * completer.c (complete_line): New function.
8337 (line_completion_function): Use it.
8338
8339 2002-02-16 Andrew Cagney <ac131313@redhat.com>
8340
8341 * gdbarch.sh (TARGET_LONG_DOUBLE_BIT): Default to 64.
8342 * gdbarch.h, gdbarch.c: Re-generate.
8343
8344 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
8345
8346 * valarith.c (value_x_unop): Fix decrement; support post-decrement.
8347
8348 2002-02-16 Daniel Jacobowitz <drow@mvista.com>
8349
8350 From Peter Schauer <Peter.Schauer@Regent.E-Technik.TU-Muenchen.DE>:
8351 * valops.c (value_arg_coerce): Don't take the address of a reference
8352 to convert an argument to a reference.
8353
8354 2002-02-15 Christopher Faylor <cgf@redhat.com>
8355
8356 * win32-nat.c (get_image_name): New function.
8357 (handle_load_dll): Use get_image_name function.
8358 (get_child_debug_event): Avoid registering debug events until possibly
8359 execed process is started.
8360 (child_create_inferior): Allow invocation via shell so that command
8361 line redirection, etc. works ok.
8362 (_initialize_inftarg): Add new command: "set shell" to control whether
8363 a shell is used to start a process.
8364
8365 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
8366
8367 * gdbserver/linux-mips-low.c (cannot_fetch_register): Use find_regno
8368 instead of find_register_by_number.
8369 (cannot_store_register): Likewise.
8370
8371 2002-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
8372
8373 * dwarf2read.c: Replace fprintf (stderr, ...) by
8374 fprintf_unfiltered (gdb_stderr, ...).
8375
8376 2002-02-15 Daniel Jacobowitz <drow@mvista.com>
8377
8378 * gdbserver/gdbserver.1: Document --attach.
8379
8380 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
8381
8382 * arm-tdep.h (struct gdbarch_tdep): Add fields for breakpoint
8383 descriptions.
8384 * arm-tdep.c (arm_default_arm_le_breakpoint)
8385 (arm_default_arm_be_breakpoint, arm_default_thumb_le_breakpoint)
8386 (arm_default_thumb_be_breakpoint): New. Initialize them from
8387 traditional breakpoint defines.
8388 (arm_breakpoint_from_pc): Use new gdbarch_tdep entries.
8389 (arm_gdbarch_init): Initialize new breakpoint variables.
8390 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint): New.
8391 (arm_linux_init_abi): Initialize linux-specific breakpoint.
8392 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint): New.
8393 (arm_netbsd_aout_init_abi, arm_netbsd_elf_init_abi): Split common
8394 code out to ...
8395 (arm_netbsd_init_abi_common): ... here; new function.
8396 * config/arm/tm-arm.h (ARM_LE_BREAKPOINT, ARM_BE_BREAKPOINT)
8397 (THUMB_LE_BREAKPOINT, THUMB_BE_BREAKPOINT): Delete.
8398 * config/arm/tm-linux.h (ARM_LE_BREAKPOINT): Delete.
8399 * config/arm/tm-nbsd.h (ARM_LE_BREAKPOINT): Delete.
8400
8401 2002-02-15 Richard Earnshaw <rearnsha@arm.com>
8402
8403 * arm-tdep.h (enum arm_abi): New enum.
8404 (struct gdbarch_tdep): New structure.
8405 (LOWEST_PC): Provide a default.
8406 (arm_gdbarch_register_os_abi): Declare new function.
8407 * arm-tdep.c (arm_abi_names): New array.
8408 (process_note_abi_tag_sections): New function.
8409 (get_elfosabi): New function.
8410 (arm_gdbarch_register_os_abi): New function.
8411 (arm_gdbarch_init): Try to determine the ABI of the inferior. If
8412 support for that ABI has been built in, then call the appropriate
8413 configuration routine. Use gdbarch_num_regs() to get the number
8414 of registers.
8415 (arm_dump_tdep): New function.
8416 (arm_init_abi_eabi_v1, arm_init_abi_eabi_v2, arm_init_abi_apcs): New
8417 place-holder functions.
8418 (_initialize_arm_tdep): Register them.
8419 * config/arm/tm-arm.h (LOWEST_PC): Delete.
8420
8421 * armnbsd-tdep.c: New file.
8422 * Makefile.in (armnbsd-tdep.o): Add dependencies.
8423 * config/arm/nbsd.mt (TDEPFILES): Add it.
8424 * config/arm/tm-nbsd.h (LOWEST_PC): Delete.
8425
8426 * armnbsd-nat.c: Include regcache.h.
8427 * Makefile.in (armnbsd-nat.o): Update dependency list.
8428
8429 * arm-tdep.c (arm_get_next_pc): Use printf_filtered for error message.
8430
8431 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
8432
8433 * gdbserver/Makefile.in: Fix typos in target rules.
8434
8435 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
8436
8437 Fix part of PR gdb/267.
8438 * linespec.c (find_methods): Handle constructors specially for now.
8439
8440 2002-02-14 Corinna Vinschen <vinschen@redhat.com>
8441
8442 * arm-tdep.c (arm_push_arguments): Eliminate special float type
8443 handling.
8444 * config/arm/tm-arm.h (COERCE_FLOAT_TO_DOUBLE): Define to call
8445 standard_coerce_float_to_double().
8446
8447 2002-02-14 Christopher Faylor <cgf@redhat.com>
8448
8449 * config/i386/xm-cygwin.h: Revert inadvertent reinclusion of
8450 GDBINIT_FILENAME.
8451
8452 2002-02-14 Elena Zannoni <ezannoni@redhat.com>
8453
8454 * rs6000-tdep.c (rs6000_gdbarch_init): Don't call
8455 find_variant_by_name, because it confuses the multiarch
8456 framework. Return NULL if there isn't an architecture with the
8457 user supplied name, instead of forcing a different one without
8458 recording the change with the multiarch machinery.
8459 (find_variant_by_name): Delete.
8460
8461 2002-02-14 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8462
8463 * config/i386/i386sol2.mh (NATDEPFILES): Add i387-nat.o, needed by
8464 i386v4-nat.o now. Add gcore.o, Solaris x86 supports gcore.
8465
8466 2002-02-13 Martin M. Hunt <hunt@redhat.com>
8467
8468 * stack.c (print_frame_info_base): When calling
8469 print_frame_info_listing_hook, set current_source_symtab.
8470
8471 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
8472
8473 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS,
8474 and remove unused $(INCLUDE_DIR).
8475 Add regcache.c to OBS.
8476 Add generated register protocol files to clean target.
8477 Update dependencies for new objects, obsolete old target code.
8478
8479 * gdbserver/linux-low.c: Remove all platform-specific code to
8480 new files. Remove various dead code. Update to use regcache
8481 functionality.
8482 * gdbserver/remote-utils.c (fromhex): Add return statement
8483 to quiet warning.
8484 (putpkt): Dynamically allocate buf2 because PBUFSIZ is no longer
8485 constant.
8486 (input_interrupt): Add integer parameter to match prototype
8487 of a signal handler.
8488 (outreg): Use register_data ().
8489 (prepare_resume_reply): Use gdbserver_expedite_regs.
8490 * gdbserver/server.c (main): Dynamically allocate own_buf because
8491 PBUFSIZ is no longer constant. Use registers_to_string () and
8492 registers_from_string ().
8493 * gdbserver/server.h: No longer include "defs.h". Add prototypes
8494 for error (), fatal (), and warning (). Update definition of
8495 PBUFSIZ to use regcache functionality. Add include guard.
8496 * gdbserver/utils.c (fatal): Add missing ``const''.
8497 (warning): New function.
8498
8499 * regformats/regdat.sh: Include "regcache.h" in generated files.
8500 Provide init_registers () function.
8501 * regformats/regdef.h: Add prototype for set_register_cache ().
8502 Add include guard.
8503
8504 * gdbserver/linux-arm-low.c: New file.
8505 * gdbserver/linux-i386-low.c: New file.
8506 * gdbserver/linux-ia64-low.c: New file.
8507 * gdbserver/linux-m68k-low.c: New file.
8508 * gdbserver/linux-mips-low.c: New file.
8509 * gdbserver/linux-ppc-low.c: New file.
8510 * gdbserver/linux-sh-low.c: New file.
8511
8512 * gdbserver/regcache.c: New file.
8513 * gdbserver/regcache.h: New file.
8514
8515 * gdbserver/low-linux.c: Removed obsolete file.
8516
8517 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
8518
8519 * config/arm/linux.mt: Update GDBSERVER_DEPFILES.
8520 * config/i386/linux.mt: Likewise.
8521 * config/ia64/linux.mt: Likewise.
8522 * config/m68k/linux.mh: Likewise.
8523 * config/powerpc/linux.mh: Likewise.
8524 * config/mips/linux.mt: Likewise.
8525
8526 * config/sh/linux.mt: Add GDBSERVER_DEPFILES.
8527
8528 * config/i386/i386lynx.mh: Mark gdbserver variables
8529 as (currently) obsolete for this target.
8530 * config/i386/nbsd.mt: Likewise.
8531 * config/i386/nbsdelf.mt: Likewise.
8532 * config/m32r/m32r.mt: Likewise.
8533 * config/m68k/m68klynx.mh: Likewise.
8534 * config/m68k/nbsd.mt: Likewise.
8535 * config/m68k/sun3os4.mh: Likewise.
8536 * config/mips/vr5000.mt: Likewise.
8537 * config/ns32k/nbsd.mt: Likewise.
8538 * config/pa/hppabsd.mh: Likewise.
8539 * config/pa/hppaosf.mh: Likewise.
8540 * config/powerpc/nbsd.mt: Likewise.
8541 * config/rs6000/rs6000lynx.mh: Likewise.
8542 * config/s390/s390.mt: Likewise.
8543 * config/s390/s390x.mt: Likewise.
8544 * config/sparc/sparclynx.mh: Likewise.
8545 * config/sparc/sun4os4.mh: Likewise.
8546 * config/i386/x86-64linux.mt: Likewise.
8547 * config/sparc/linux.mh: Likewise.
8548
8549 2002-02-14 Daniel Jacobowitz <drow@mvista.com>
8550
8551 * configure.tgt: Configure gdbserver only for known working
8552 targets. Set ${build_gdbserver} instead of modifying ${configdirs}.
8553 * configure.in: Check ${build_gdbserver}. Put gdbserver/ into
8554 SUBDIRS if it is configured. Update comment for ${nativefile}.
8555 * configure: Regenerated.
8556
8557 2002-02-13 Michael Snyder <msnyder@redhat.com>
8558
8559 * config/i386/i386v42mp.mh: Add gcore.o to NATDEPFILES.
8560
8561 * gcore.c (gcore_command): Use gcore_default_target instead of NULL.
8562 (default_gcore_mach): Just return 0, work around a problem in bfd.
8563 (default_gcore_target): OK to return NULL if exec_bfd is null.
8564 (make_mem_sec): Use a cast, avoid a warning.
8565
8566 * procfs.c (find_memory_regions_callback): Use a cast instead of
8567 calling host_pointer_to_address (which complains if
8568 sizeof (host pointer) != sizeof (target pointer)).
8569 (procfs_make_note_section): Avoid overflow in psargs string.
8570
8571 * procfs.c (procfs_make_note_section): Make the default
8572 implementation return an error.
8573
8574 2002-02-13 Rodney Brown <rbrown64@csc.com.au>
8575
8576 * procfs.c (procfs_make_note_section): Provide a default definition
8577 (for alpha-dec-osf4.0f). Fix typos.
8578
8579 2002-02-13 Elena Zannoni <ezannoni@redhat.com>
8580
8581 * linux-proc.c: Add include of regcache.h.
8582 * Makefile.in (linux-proc.o): Add dependency on regcache.h.
8583
8584 2002-02-13 Andrew Cagney <ac131313@redhat.com>
8585
8586 From 2002-01-18 Greg McGary <greg@mcgary.org>:
8587 * memattr.c (create_mem_region): Disallow useless empty region.
8588 Regions are half-open intervals, so allow [A..B) [B..C) as
8589 non-overlapping.
8590
8591 2002-02-13 Michael Chastain <mec@shout.net>
8592
8593 * defs.h: Kill CONST_PTR.
8594 * c-lang.h (c_builtin_types): Change CONST_PTR to simple "const".
8595 * c-lang.c (c_builtin_types): Likewise.
8596 * ch-lang.c (ch_builtin_types): Likewise.
8597 * f-lang.c (f_builtin_types): Likewise.
8598 * language.c (unknown_builtin_types): Likewise.
8599 * m2-lang.c (m2_builtin_types): Likewise.
8600 * p-lang.c (pascal_builtin_types): Likewise.
8601 * scm-lang.c (c_builtin_types): Likewise.
8602
8603 2002-02-13 Keith Seitz <keiths@redhat.com>
8604
8605 * arm-tdep.h (arm_get_next_pc): Add declaration.
8606
8607 2002-02-13 Richard Earnshaw <rearnsha@arm.com>
8608
8609 * arm-tdep.c (arm_use_struct_convention): Make static. Move to be
8610 with other related struct-returning functions.
8611 (arm_extract_struct_value_address): New function.
8612 (arm_gdbarch_init): Initialize the above in multi-arch vector. Also
8613 initialize float_format, double_format and long_double_format as
8614 appropriate to the endianness of the target.
8615 * config/arm/tm-arm.h (TARGET_DOUBLE_FORMAT): Delete.
8616 (arm_use_struct_convention): Delete declaration.
8617 (USE_STRUCT_CONVENTION, EXTRACT_STRUCT_VALUE_ADDRESS): Delete.
8618
8619 2002-02-13 Keith Seitz <keiths@redhat.com>
8620
8621 * defs.h (core_addr_to_string_nz): New function.
8622
8623 2002-02-13 Mark Kettenis <kettenis@gnu.org>
8624
8625 Apply missing bits of 2002-01-15 patch.
8626 * i386v4-nat.c (supply_fpregset): Use i387_supply_fsave.
8627 (fill_fpregset): Use i387_fill_fsave.
8628
8629 2002-02-12 Keith Seitz <keiths@redhat.com>
8630
8631 * utils.c (core_addr_to_string): Use phex instead of phex_nz.
8632 (core_addr_to_string_nz): New function.
8633
8634 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
8635
8636 * arm-linux-nat.c: Really include arm-tdep.h.
8637 * config/arm/tm-linux.h (struct type, struct value): Declare.
8638
8639 2002-02-11 Michael Snyder <msnyder@redhat.com>
8640
8641 * procfs.c: Include elf-bfd.h (for elfcore_write functions).
8642 (gcore section): Ifdef for Solaris and Unixware only.
8643 (procfs_do_thread_registers): Unixware needs one lwpstatus
8644 per thread (not one prstatus or pstatus).
8645 (procfs_make_note_section): Iterate only over kernel threads (lwps),
8646 not over all gdb threads. For unixware, call elfcore_write_pstatus
8647 once before iterating over threads.
8648
8649 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
8650
8651 * arm-tdep.h: New file.
8652 * arm-tdep.c: Include arm-tdep.h.
8653 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
8654 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
8655 (arm_print_float_info, arm_register_type, convert_to_extended)
8656 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
8657 (arm_extract_return_value, arm_register_name): Make static.
8658 (arm_software_single_step): Similarly. Fix types in declaration.
8659 (arm_register_byte, arm_register_raw_size, arm_register_virtual_size)
8660 (arm_store_return_value, arm_store_struct_return): New functions.
8661 (arm_gdbarch_init): Register the above functions. Also register
8662 call_dummy_start_offset, sizeof_call_dummy_words,
8663 function_start_offset, inner_than, decr_pc_after_break, fp_regnum,
8664 sp_regnum, pc_regnum, register_bytes, num_regs, max_register_raw_size,
8665 max_register_virtual_size, register_size. Set up
8666 prologue_cache.saved_regs here, rather than ...
8667 (_initialize_arm_tdep): ... here.
8668 * config/arm/tm-arm.h (struct type, struct value): Delete forward
8669 declarations.
8670 (arm_addr_bits_remove, arm_smash_text_address, arm_saved_pc_after_call)
8671 (arm_skip_prologue, arm_call_dummy_words, arm_fix_call_dummy)
8672 (arm_print_float_info, arm_register_type, convert_to_extended)
8673 (arm_elf_make_msymbols_special, arm_coff_make_msymbol_special)
8674 (arm_extract_return_value, arm_register_name): Delete declarations.
8675 (SMASH_TEXT_ADDRESS, ADDR_BITS_REMOVE, FUNCTION_START_OFFSET)
8676 (SKIP_PROLOGUE, SAVED_PC_AFTER_CALL, INNER_THAN, BREAKPOINT_FROM_PC)
8677 (DECR_PC_AFTER_BREAK, PRINT_FLOAT_INFO, REGISTER_SIZE, NUM_REGS)
8678 (REGISTER_NAME, REGISTER_BYTES, REGISTER_BYTE, REGISTER_RAW_SIZE)
8679 (REGISTER_VIRTUAL_SIZE, MAX_REGISTER_RAW_SIZE)
8680 (MAX_REGISTER_VIRTUAL_SIZE, REGISTER_VIRTUAL_TYPE, STORE_STRUCT_RETURN)
8681 (EXTRACT_RETURN_VALUE, STORE_RETURN_VALUE, CALL_DUMMY_WORDS)
8682 (SIZEOF_CALL_DUMMY_WORDS, CALL_DUMMY_START_OFFSET, FIX_CALL_DUMMY)
8683 (SOFTWARE_SINGLE_STEP_P, SOFTWARE_SINGLE_STEP)
8684 (ELF_MAKE_MSYMBOL_SPECIAL, COFF_MAKE_MSYMBOL_SPECIAL) Delete.
8685 (arm_pc_is_thumb, arm_pc_is_thumb_dummy, thumb_get_next_pc)
8686 (arm_get_next_pc): No-longer static -- these are needed by the RDI
8687 interface.
8688 * arm-linux-nat.c arm-linux-tdep.c armnbsd-nat.c: Include arm-tdep.h.
8689 * remote-rdi.c remote-rdp.c: Likewise.
8690 * Makefile.in (arm-linux-nat.o, arm-linux-tdep.o arm-tdep.o)
8691 (armnbsd-nat.o, remote-rdi.o, remote_rdp.o): Update dependencies.
8692 * config/arm/tm-nbsd.h (SOFTWARE_SINGLE_STEP_P): Delete bogus
8693 definition.
8694
8695 * arm-tdep.h (ARM_A1_REGNUM, ARM_A4_REGNUM, ARM_AP_REGNUM)
8696 (ARM_SP_REGNUM, ARM_LR_REGNUM, ARM_PC_REGNUM, ARM_F0_REGNUM)
8697 (ARM_F3_REGNUM, ARM_F7_REGNUM, ARM_FPS_REGNUM, ARM_PS_REGNUM): Renamed
8698 from non-ARM_ prefixed definitions.
8699 * arm-tdep.c armnbsd-nat.c arm-linux-nat.c arm-linux-tdep.c: Update
8700 all uses of above.
8701 * remote-rdi.c remote-rdp.c: Likewise.
8702 * arm-linux-nat.c (ARM_CPSR_REGNUM): Renamed from CPSR_REGNUM.
8703
8704 2002-02-11 Richard Earnshaw <rearnsha@arm.com>
8705
8706 * arm-tdep.c (arm_frameless_function_invocation)
8707 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
8708 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
8709 (arm_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
8710 (arm_pop_frame, arm_get_next_pc): Make static.
8711 (arm_gdbarch_init): Register above in gdbarch structure.
8712 (arm_read_fp): Renamed from arm_target_read_fp.
8713 (arm_pc_is_thumb, arm_pc_is_thumb_dummy): Make static.
8714 * config/arm/tm-arm.h (arm_frameless_function_invocation)
8715 (arm_frame_args_address, arm_frame_locals_address, arm_frame_num_args)
8716 (arm_frame_chain, arm_init_extra_frame_info, arm_frame_saved_pc)
8717 (arm_target_read_fp, arm_frame_init_saved_regs, arm_push_dummy_frame)
8718 (arm_pop_frame, arm_get_next_pc, arm_pc_is_thumb)
8719 (arm_pc_is_thumb_dummy): Delete declarations.
8720 (INIT_EXTRA_FRAME_INFO, TARGET_READ_FP, FRAME_CHAIN)
8721 (FRAMELESS_FUNCTION_INVOCATION, FRAME_SAVED_PC, FRAME_ARGS_ADDRESS)
8722 (FRAME_LOCALS_ADDRESS, FRAME_NUM_ARGS, FRAME_ARGS_SKIP)
8723 (FRAME_INIT_SAVED_REGS, PUSH_DUMMY_FRAME, POP_FRAME): Delete.
8724
8725 2002-02-10 Daniel Jacobowitz <drow@mvista.com>
8726
8727 * symtab.c (compare_search_syms): New function.
8728 (sort_search_symbols): New function.
8729 (search_symbols): Sort symbols after searching rather than
8730 before.
8731
8732 2002-02-10 Andrew Cagney <ac131313@redhat.com>
8733
8734 * NEWS: Linux -> GNU/Linux.
8735
8736 2002-02-10 Andrew Cagney <ac131313@redhat.com>
8737
8738 * gdbarch.sh: For for level one methods, disallow a definition
8739 when partially multi-arched. Add comments explaining rationale.
8740 * gdbarch.h: Re-generate.
8741
8742 2002-02-10 Andrew Cagney <ac131313@redhat.com>
8743
8744 * gdbarch.sh (EXTRA_STACK_ALIGNMENT_NEEDED): Don't require when
8745 multi-arch partial.
8746
8747 2002-02-10 Andrew Cagney <ac131313@redhat.com>
8748
8749 * gdbarch.sh: Map LEVEL onto a symbolic GT_LEVEL. Exit on bad
8750 field. Use diff -u.
8751 * gdbarch.c: Re-generate.
8752
8753 2002-02-10 Andrew Cagney <ac131313@redhat.com>
8754
8755 * config/mips/tm-mips.h (CALL_DUMMY_LOCATION): Delete.
8756 * gdbarch.sh (PUSH_RETURN_ADDRESS): Don't require when multi-arch
8757 partial.
8758
8759 2002-02-10 Andrew Cagney <ac131313@redhat.com>
8760
8761 * gdbarch.sh (REGISTER_CONVERTIBLE): Don't require when
8762 multi-arch partial.
8763 (PUSH_ARGUMENTS): Switch to using predefault.
8764 * gdbarch.c: Regenerate.
8765
8766 2002-02-10 Andrew Cagney <ac131313@redhat.com>
8767
8768 * valops.c (PUSH_ARGUMENTS): Delete definition.
8769 * gdbarch.sh (PUSH_ARGUMENTS): Don't require when multi-arch
8770 partial. Default to default_push_arguments.
8771 * gdbarch.h, gdbarch.c: Regenerate.
8772
8773 2002-02-09 Andrew Cagney <ac131313@redhat.com>
8774
8775 * defs.h (throw_exception): Rename return_to_top_level. Update
8776 comments.
8777 * utils.c (error_stream, internal_verror, quit): Ditto.
8778 * top.c (throw_exception, catcher): Ditto.
8779 * sparclet-rom.c (sparclet_load): Ditto.
8780 * remote.c (interrupt_query, minitelnet): Ditto.
8781 * remote-sds.c (interrupt_query): Ditto.
8782 * remote-mips.c (mips_error, mips_kill): Ditto.
8783 * ocd.c (interrupt_query): Ditto.
8784 * monitor.c (monitor_interrupt_query): Ditto.
8785 * m3-nat.c (suspend_all_threads, thread_resume_command): Ditto.
8786 * target.h: Update comment.
8787
8788 * m3-nat.c, ocd.c, sparclet-rom.c: Update copyright.
8789
8790 2002-02-09 Andrew Cagney <ac131313@redhat.com>
8791
8792 * gdbarch.sh (TARGET_LONG_DOUBLE_FORMAT): Default to
8793 default_double_format.
8794 * gdbarch.h, gdbarch.c: Re-generate.
8795 * findvar.c (floatformat_unknown): Delete variable definition.
8796 * doublest.h (floatformat_unknown): Delete variable declaration.
8797
8798 2002-02-09 Jim Blandy <jimb@redhat.com>
8799
8800 * stabsread.c (read_type): Add code to parse Sun's syntax for
8801 prototyped function types.
8802
8803 2002-02-09 Andrew Cagney <ac131313@redhat.com>
8804
8805 * Makefile.in (SUBDIR_CLI_INITS): Set to SUBDIR_CLI_SRCS.
8806 (SUBDIR_MI_INITS): Set to SUBDIR_MI_SRCS.
8807
8808 2002-02-09 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
8809
8810 * xcoffsolib.c (_initialize_xcoffsolib): Renamed from
8811 _initialize_solib. Fixes name clash with solib.c:_initialize_solib,
8812 now _initialize_xcoffsolib gets called again and overrides the
8813 commands from solib.c in a native configuration.
8814
8815 2002-02-09 Mark Kettenis <kettenis@gnu.org>
8816
8817 * doublest.c (store_typed_floating): Don't try to return a value.
8818 Fixes PR gdb/290.
8819
8820 2002-02-08 Jim Blandy <jimb@redhat.com>
8821
8822 * c-typeprint.c (c_type_print_varspec_suffix): If a function type
8823 is prototyped and has no arguments, print its argument list as
8824 `(void)'.
8825
8826 2002-02-08 Chris Demetriou <cgd@broadcom.com>
8827
8828 * MAINTAINERS (write-after-approval): Add myself.
8829 (paper-trail): I've escaped!
8830
8831 2002-02-08 Christopher Faylor <cgf@redhat.com>
8832
8833 * win32-nat.c (cygwin_pid_to_str): Revert 2002-02-08 change xasprintf
8834 changes.
8835 (_initialize_check_for_gdb_ini): Ditto.
8836
8837 2002-02-08 Martin M. Hunt <hunt@redhat.com>
8838
8839 * win32-nat.c (cygwin_pid_to_str): Fix typo.
8840 xaprintf -> xasprintf.
8841
8842 2002-02-08 Pierre Muller <muller@ics.u-strasbg.fr>
8843
8844 * win32-nat.c: Remove use of printf and sprintf functions.
8845
8846 2002-02-08 Richard Earnshaw <rearnsha@arm.com>
8847
8848 * arm-tdep.c (arm_frame_chain_valid): Make static.
8849 (arm_push_arguments): Likewise.
8850 (arm_gdbarch_init): New function.
8851 (_initialize_arm_tdep): Call it.
8852 * config/arm/tm-arm.h (GDB_MULTI_ARCH): Set to 1.
8853 (TARGET_DOUBLE_FORMAT): Test TARGET_BYTE_ORDER, not target_byte_order.
8854 (FRAME_CHAIN_VALID): Delete.
8855 (arm_frame_chain_valid): Delete declaration.
8856 (PUSH_ARGUMENTS): Delete.
8857 (arm_push_arguments): Delete declaration.
8858 (CALL_DUMMY_P): Delete.
8859
8860 2002-02-08 Andrew Cagney <ac131313@redhat.com>
8861 Corinna Vinschen <vinschen@redhat.com>
8862
8863 * gdbtypes.c (build_gdbtypes): Disable setting a specific float format
8864 on builtin float types.
8865
8866 2002-02-08 Daniel Jacobowitz <drow@mvista.com>
8867
8868 * utils.c: Include <curses.h> before "bfd.h".
8869 * tui/tui-hooks.c: Likewise.
8870 * tui/tui.c: Likewise.
8871 * tui/tuiCommand.c: Likewise.
8872 * tui/tuiData.c: Likewise.
8873 * tui/tuiDataWin.c: Likewise.
8874 * tui/tuiDisassem.c: Likewise.
8875 * tui/tuiGeneralWin.c: Likewise.
8876 * tui/tuiIO.c: Likewise.
8877 * tui/tuiLayout.c: Likewise.
8878 * tui/tuiRegs.c: Likewise.
8879 * tui/tuiSource.c: Likewise.
8880 * tui/tuiSourceWin.c: Likewise.
8881 * tui/tuiStack.c: Likewise.
8882 * tui/tuiWin.c: Likewise.
8883
8884 2002-02-07 Elena Zannoni <ezannoni@redhat.com>
8885
8886 * sh-tdep.c (sh_nofp_frame_init_saved_regs): Extend where[] array
8887 to include space for pseudoregs as well. Update loops accordingly.
8888 (sh_fp_frame_init_saved_regs): Ditto.
8889 (sh_init_extra_frame_info, sh_pop_frame): Split long lines.
8890
8891 2002-02-07 Andrew Cagney <ac131313@redhat.com>
8892
8893 * MAINTAINERS: Andreas Schwab is GNU/Linux m68k maintainer.
8894 Add Richard Earnshaw to Arm maintainers.
8895
8896 2002-02-07 Andrew Cagney <ac131313@redhat.com>
8897
8898 * defs.h (warning_begin): Delete declaration.
8899
8900 * config/powerpc/tm-ppcle-eabi.h (TARGET_BYTE_ORDER_DEFAULT):
8901 Delete macro.
8902
8903 2002-02-07 Michael Snyder <msnyder@redhat.com>
8904
8905 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
8906 Logic bug, remove misplaced else.
8907
8908 2002-02-07 Klee Dienes <klee@apple.com>
8909
8910 * fork-inferior.c (fork_inferior): Add '!' to the list of
8911 characters that need to be quoted when building a string for the
8912 shell. Quote '!' specifically with a backslash, since CSH chokes
8913 when trying to evaluate "str!str".
8914
8915 2002-02-06 Nick Clifton <nickc@cambridge.redhat.com>
8916
8917 * rdi-share/host.h: Only provide a typedef for bool if it is not
8918 defined.
8919
8920 2002-02-04 Michael Snyder <msnyder@redhat.com>
8921
8922 * breakpoint.h (enum bptype): Add new overlay event bp type.
8923 (enable_overlay_breakpoints, disable_overlay_breakpoints): Export.
8924
8925 * breakpoint.c (create_internal_breakpoint): New function.
8926 (internal_breakpoint_number): Moved into create_internal_breakpoint.
8927 (create_longjmp_breakpoint): Use create_internal_breakpoint.
8928 (create_thread_event_breakpoint): Ditto.
8929 (create_solib_event_breakpoint): Ditto.
8930 (create_overlay_event_breakpoint): New function.
8931 (enable_overlay_breakpoints, disable_overlay_breakpoints): New funcs.
8932 (update_breakpoints_after_exec): Delete and re-initialize
8933 overlay event breakpoints after an exec. Add FIXME comment
8934 about longjmp breakpoint.
8935 (print_it_typical): Ignore overlay event breakpoints.
8936 (print_one_breakpoint): Ditto.
8937 (mention): Ditto.
8938 (bpstat_what): Do not stop for overlay event breakpoints.
8939 (delete_breakpoint): Don't delete overlay event breakpoints.
8940 (breakpoint_re_set_one): Delete the overlay event breakpoint.
8941 (breakpoint_re_set): Re-create overlay event breakpoint.
8942
8943 * symfile.c (overlay_auto_command): Enable overlay breakpoints.
8944 (overlay_manual_command): Disable overlay breakpoints.
8945 (overlay_off_command): Disable overlay breakpoints.
8946
8947 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
8948
8949 * arm-tdep.c: Include elf-bfd.h and coff/internal.h.
8950 (MSYMBOL_SET_SPECIAL, MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Move defines
8951 to here from config/tm-arm.h.
8952 (coff_sym_is_thumb): Make static.
8953 (arm_elf_make_msymbol_special): New function.
8954 (arm_coff_make_msymbol_special): New function.
8955 * config/arm/tm-arm.h (MSYMBOL_SET_SPECIAL): Delete definition.
8956 (MSYMBOL_IS_SPECIAL, MSYMBOL_SIZE): Likewise.
8957 (coff_sym_is_thumb): Delete declaration.
8958 (arm_elf_make_msymbol_special): Declare.
8959 (arm_coff_make_msymbol_special): Declare.
8960 (ELF_MAKE_MSYMBOL_SPECIAL): Call arm_elf_make_msymbol_special.
8961 (COFF_MAKE_MSYMBOL_SPECIAL): Call arm_coff_make_msymbol_special.
8962
8963 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
8964
8965 * arm-tdep.c (arm_software_single_step): ANSIfy function declaration.
8966
8967 2002-02-06 Richard Earnshaw <rearnsha@arm.com>
8968
8969 * gdbarch.sh (PRINT_FLOAT_INFO): Add rule.
8970 * gdbarch.c gdbarch.h: Regenerate.
8971 * arch-utils.c (default_print_float_info): New function.
8972 * arch-utils.h (default_print_float_info): Prototype it.
8973 * infcmd.c (float_info): Call PRINT_FLOAT_INFO.
8974 * doc/gdbint.texinfo (FLOAT_INFO): Mark as deprecated.
8975 (PRINT_FLOAT_INFO): Document it.
8976
8977 * arm-tdep.c (arm_print_float_info): Renamed from arm_float_info.
8978 * config/arm/tm-arm.h (FLOAT_INFO): Delete.
8979 (PRINT_FLOAT_INFO): Define.
8980
8981 2002-02-06 Pierre Muller <muller@ics.u-strasbg.fr>
8982
8983 * win32-nat.c (_initialize_check_for_gdb_ini):
8984 Add typecast to sprintf argument to suppress a warning.
8985
8986 2002-02-05 Pierre Muller <muller@ics.u-strasbg.fr>
8987
8988 * win32-nat.c (last_sig): Changed type of variable to target_signal,
8989 to allow easier handling of pass state.
8990 (DEBUG_EXCEPTION_SIMPLE): New macro, used in handle_exception,
8991 that gives exception name and address.
8992 (handle_exception): Use DEBUG_EXCEPTION_SIMPLE macro
8993 and set last_sig value to ourstatus->value.sig. Some missing
8994 exceptions added.
8995 (child_continue): Correctly report continue_status.
8996 (get_child_debug_event,do_initial_child_stuff): Set last_sig to
8997 TARGET_SIGNAL_0 (new default value).
8998 (child_resume): consider sig argument passed to decide if
8999 the exception should be passed to debuggee or not.
9000
9001 2002-02-05 Michael Snyder <msnyder@redhat.com>
9002
9003 * regcache.c (fetch_register): Call target_fetch_register
9004 only if we don't call FETCH_PSEUDO_REGISTER.
9005 (store_register): Call target_store_register only if we
9006 don't call STORE_PSEUDO_REGISTER.
9007
9008 2002-02-05 Elena Zannoni <ezannoni@redhat.com>
9009
9010 * gdbarch.sh: Add definitions for COFF_MAKEMSYMBOL_SPECIAL and
9011 ELF_MAKE_MSYMBOL_SPECIAL.
9012 * gdbarch.c, gdbarch.h: Regenerate.
9013 * arch-utils.c (default_make_msymbol_special): New function.
9014 * arch-utils.h (default_make_msymbol_special): Export.
9015 * elfread.c (elf_symtab_read): Compile use of
9016 ELF_MAKE_MSYMBOL_SPECIAL unconditionally because it is now
9017 multiarched.
9018 * coffread.c (coff_symtab_read): Ditto, for
9019 COFF_MAKE_MSYMBOL_SPECIAL.
9020
9021 2002-02-05 Jim Blandy <jimb@redhat.com>
9022
9023 * solib-svr4.c (svr4_truncate_ptr): New function.
9024 (svr4_relocate_section_addresses): Do the address arithmetic with
9025 the appropriate truncation for target addresses, even when
9026 CORE_ADDR is larger than a target address.
9027
9028 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9029
9030 * gdbserver/linux-low.c (mywait): Cast second argument of waitpid
9031 to (int *).
9032
9033 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9034
9035 * gdbserver/linux-low.c (kill_inferior): Remove commented out
9036 code.
9037
9038 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9039
9040 * c-valprint.c (c_val_print): Handle TYPE_CODE_COMPLEX.
9041
9042 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9043
9044 * gdbserver/linux-low.c: Remove unused include files.
9045
9046 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9047
9048 * gdbserver/linux-low.c: Define PTRACE_ARG3_TYPE.
9049 (read_inferior_memory): Use it.
9050 (write_inferior_memory): Likewise.
9051
9052 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9053
9054 * gdbserver/linux-low.c (create_inferior): Call strerror instead of
9055 grubbing through sys_errlist.
9056
9057 2002-02-05 Daniel Jacobowitz <drow@mvista.com>
9058
9059 * gdbserver/linux-low.c: New file, copied exactly from low-linux.c.
9060
9061 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
9062 * win32-nat.c (handle_exception): Handle Ctrl-Break exception.
9063
9064 2002-02-04 Andrew Cagney <ac131313@redhat.com>
9065
9066 * cli/cli-decode.c (do_cfunc, set_cmd_cfunc): New functions.
9067 (do_sfunc, set_cmd_sfunc): New functions.
9068
9069 * command.h (struct cmd_list_element): Add field func.
9070 * cli/cli-decode.h (struct cmd_list_element): Ditto.
9071 * command.h (set_cmd_sfunc, set_cmd_cfunc): Declare.
9072 * cli/cli-decode.h: Ditto.
9073
9074 * cli/cli-decode.c (help_cmd): Test for func not cfunc/sfunc.
9075 (help_all, help_cmd_list): Ditto.
9076 (find_cmd, complete_on_cmdlist): Ditto.
9077 * top.c (execute_command): Ditto.
9078
9079 * cli/cli-setshow.c (do_setshow_command): Call func instead of
9080 function.sfunc.
9081
9082 * infcmd.c (notice_args_read): Fix function signature.
9083
9084 * cli/cli-cmds.c (init_cli_cmds): Use set_cmd_sfunc.
9085 * cli/cli-decode.c (add_set_cmd): Ditto.
9086 * utils.c (initialize_utils): Ditto.
9087 * maint.c (_initialize_maint_cmds): Ditto.
9088 * infrun.c (_initialize_infrun): Ditto.
9089 * demangle.c (_initialize_demangler): Ditto.
9090 * remote.c (add_packet_config_cmd): Ditto.
9091 * mips-tdep.c (_initialize_mips_tdep): Ditto.
9092 * cris-tdep.c (_initialize_cris_tdep): Ditto.
9093 * proc-api.c (_initialize_proc_api): Ditto.
9094 * kod.c (_initialize_kod): Ditto.
9095 * valprint.c (_initialize_valprint): Ditto.
9096 * top.c (init_main): Ditto.
9097 * infcmd.c (_initialize_infcmd): Ditto.
9098 * corefile.c (_initialize_core): Ditto.
9099 * arm-tdep.c (_initialize_arm_tdep): Ditto.
9100 * arch-utils.c (initialize_current_architecture): Ditto.
9101 (_initialize_gdbarch_utils): Ditto.
9102 * alpha-tdep.c (_initialize_alpha_tdep): Ditto.
9103
9104 * cli/cli-decode.c (add_cmd): Use set_cmd_cfunc.
9105 * wince.c (_initialize_inftarg): Ditto.
9106 * symfile.c (_initialize_symfile): Ditto.
9107 * mips-tdep.c (_initialize_mips_tdep): Ditto.
9108 * language.c (_initialize_language): Ditto.
9109 * arc-tdep.c (_initialize_arc_tdep): Ditto.
9110
9111 2002-02-04 Michael Snyder <msnyder@redhat.com>
9112
9113 * memattr.c (_initialize_mem): Elaborate the help for 'mem' command.
9114
9115 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
9116
9117 * gdbserver/Makefile.in: Add regformats directory to INCLUDE_CFLAGS.
9118 Add rules for building the register data files.
9119
9120 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
9121
9122 * regformats/regdat.sh: Add braces to the definition of
9123 expedite_regs_${arch}.
9124
9125 2002-02-04 Daniel Jacobowitz <drow@mvista.com>
9126
9127 * regformats/regdef.h (struct reg): Add comment describing the
9128 requirements for offset and size fields.
9129
9130 2002-02-04 Andreas Schwab <schwab@suse.de>
9131
9132 * config/ia64/linux.mh: Don't set NAT_CLIBS and REGEX.
9133 * config/ia64/linux.mt: Don't set GDBSERVER_LIBS.
9134
9135 2002-02-04 Richard Earnshaw <rearnsha@arm.com>
9136
9137 * gdbarch.sh (copyright): Update years in generated header.
9138 (SMASH_TEXT_ADDRESS): Add rule.
9139 * gdbarch.h, gdbarch.c: Re-generate.
9140 * coffread.c: Multi-arch uses of SMASH_TEXT_ADDRESS.
9141 * dbxread.c: Likewise.
9142 * dwarfread.c: Likewise.
9143 * elfread.c: Likewise.
9144 * somread.c: Likewise.
9145
9146 * arm-tdep.c (arm_smash_text_address): New function.
9147 * config/arm/tm-arm.h (SMASH_TEXT_ADDRESS): Define in terms of above.
9148
9149 2002-02-04 Pierre Muller <muller@ics.u-strasbg.fr>
9150
9151 Add support for hardware watchpoints on win32 native.
9152 * win32-nat.c (CONTEXT_DEBUG_DR macro): Add use of
9153 CONTEXT_DEBUG_REGISTERS.
9154 (dr variable): New variable. Static array containing a local copy
9155 of debug registers.
9156 (debug_registers_changed): New variable. Reflects when debug registers
9157 are changed and need to be written to inferior.
9158 (debug_registers_used): New variable. Reflects when any debug register
9159 was set, used when new threads are created.
9160 (cygwin_set_dr, cygwin_set_dr7, cygwin_get_dr6): New functions used by
9161 i386-nat code.
9162 (thread_rec): Set dr array if id is the thread of current_event .
9163 (child_continue, child_resume): Change the debug registers for all
9164 threads if debug_registers_changed.
9165 (child_add_thread): Change the debug registers if debug_registers_used.
9166 * config/i386/cygwin.mh: Add use of i386-nat.o file.
9167 Link nm.h to new nm-cygwin.h file.
9168 + config/i386/nm-cygwin.h: New file. Contains the macros used for use
9169 of hardware registers.
9170
9171 2002-02-03 Andrew Cagney <ac131313@redhat.com>
9172
9173 * valprint.c (print_floating): Allow non TYPE_CODE_FLT types.
9174 Restore behavour broken by 2002-01-20 Andrew Cagney
9175 <ac131313@redhat.com> IEEE_FLOAT removal.
9176
9177 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
9178
9179 * c-valprint.c (c_val_print): Pass a proper valaddr to
9180 cp_print_class_method.
9181 * valops.c (search_struct_method): If there is only one method
9182 and args is NULL, return that method.
9183
9184 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
9185
9186 * gdbtypes.c (init_simd_type): Use TYPE_TAG_NAME instead of
9187 accessing tag_name directly.
9188
9189 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
9190
9191 * ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
9192 of accessing tag_name directly.
9193
9194 2002-02-03 Daniel Jacobowitz <drow@mvista.com>
9195
9196 PR gdb/280
9197 * gdbtypes.c (replace_type): New function.
9198 * gdbtypes.h (replace_type): Add prototype.
9199 * stabsread.c (read_type): Use replace_type.
9200
9201 2002-02-03 Richard Earnshaw <rearnsha@arm.com>
9202
9203 * Makefile.in (memattr.o): Add missing dependencies rule.
9204
9205 2002-02-03 Peter Schauer <pes@regent.e-technik.tu-muenchen.de>
9206
9207 * breakpoint.c (break_at_finish_command): Really export.
9208 (break_at_finish_at_depth_command): Ditto.
9209 (tbreak_at_finish_command): Ditto.
9210 * hppa-tdep.c: Include completer.h.
9211 * Makefile.in (hppa-tdep.o): Add dependency on $(completer_h).
9212 (COMMON_OBS): Remove duplicate ui-file.o, frame.o, doublest.o.
9213
9214 2002-02-01 Andrew Cagney <ac131313@redhat.com>
9215
9216 * utils.c (do_write): New function.
9217 (error_stream): Rewrite combining the code from error_begin and
9218 verror.
9219 (verror): Rewrite using error_stream.
9220 (error_begin): Delete function.
9221
9222 2002-02-01 Andrew Cagney <ac131313@redhat.com>
9223
9224 * utils.c (error_begin): Make static.
9225 * defs.h (error_begin): Delete declaration.
9226
9227 * linespec.c (cplusplus_error): Replace cplusplus_hint.
9228 (decode_line_1): Use cplusplus_error instead of error_begin,
9229 cplusplus_hint and return_to_top_level.
9230 * coffread.c (coff_symfile_read): Use error instead of error_begin
9231 and return_to_top_level.
9232 * infrun.c (default_skip_permanent_breakpoint): Ditto.
9233
9234 2002-02-01 Andrew Cagney <ac131313@redhat.com>
9235
9236 * language.h (type_error, range_error): Make string parameter
9237 constant.
9238 * language.c (warning_pre_print): Delete extern declaration.
9239 * dwarfread.c (warning_pre_print): Ditto.
9240 * language.c (type_error, range_error): Rewrite to use verror and
9241 vwarning instead of warning_begin.
9242
9243 2002-02-01 Michael Snyder <msnyder@redhat.com>
9244
9245 * breakpoint.c (breakpoint_re_set): Delete ancient #if 0 code.
9246 (set_ignore_count): Move misplaced comment back where it belongs.
9247
9248 2002-02-01 Andrew Cagney <ac131313@redhat.com>
9249
9250 * command.h (NO_FUNCTION): Delete macro.
9251 * cli/cli-decode.h (NO_FUNCTION): Ditto.
9252 * top.c (execute_command): Replace NO_FUNCTION with NULL.
9253 * tracepoint.c (_initialize_tracepoint): Ditto.
9254 * cli/cli-decode.c (add_set_cmd): Ditto.
9255 * cli/cli-cmds.c (init_cli_cmds): Ditto.
9256
9257 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
9258
9259 * gnu-v3-abi.c (gnuv3_virtual_fn_field): Update comments.
9260 Update ``this'' pointer when calling virtual functions.
9261
9262 2002-02-01 Michael Snyder <msnyder@redhat.com>
9263
9264 * breakpoint.c (create_temp_exception_breakpoint): Delete.
9265 * hppa-tdep.c: Deprecate xbreak, txbreak and bx commands.
9266
9267 2002-02-01 Daniel Jacobowitz <drow@mvista.com>
9268
9269 * regformats/reg-arm.dat: New file.
9270 * regformats/reg-i386.dat: New file.
9271 * regformats/reg-ia64.dat: New file.
9272 * regformats/reg-m68k.dat: New file.
9273 * regformats/reg-mips.dat: New file.
9274 * regformats/reg-ppc.dat: New file.
9275 * regformats/reg-sh.dat: New file.
9276 * regformats/regdef.h: New file.
9277 * regformats/regdat.sh: New file.
9278
9279 2002-02-01 Richard Earnshaw <reanrsha@arm.com>
9280
9281 * arm-tdep.c (arm_frameless_function_invocation): Add some comments.
9282 (arm_frame_args_address, arm_frame_locals_address): New functions.
9283 (arm_frame_num_args): New function.
9284 * config/tm-arm.h (FRAME_ARGS_ADDRESS): Call arm_frame_args_address.
9285 (FRAME_LOCALS_ADDRESS): Call arm_frame_locals_address.
9286 (FRMA_NUM_ARGS): Call arm_frame_num_args.
9287
9288 2002-01-31 Michael Snyder <msnyder@redhat.com>
9289
9290 * breakpoint.c (break_at_finish_command): Export.
9291 (break_at_finish_at_depth_command): Export.
9292 (tbreak_at_finish_command): Export.
9293 (_initialize_breakpoint): Delete "xbreak" and "tbreak" commands.
9294 * hppa-tdep.c (_initialize_hppa_tdep): Add "xbreak" and
9295 "tbreak" commands, which are HPPA specific.
9296
9297 * printcmd.c (disassemble_command): Remove an ancient
9298 artifact of an old merge.
9299
9300 * symfile.h (enum overlay_debugging_state):
9301 Define enum constant values for overlay mode.
9302 * symfile.c (overlay_debugging): Use enums instead of literals.
9303 (overlay_is_mapped, overlay_auto_command,
9304 overlay_manual_command): Ditto.
9305
9306 * breakpoint.c (insert_breakpoints, remove_breakpoint,
9307 breakpoint_here_p, breakpoint_inserted_here_p,
9308 breakpoint_thread_match, bpstat_stop_status,
9309 describe_other_breakpoints, check_duplicates, clear_command):
9310 Coding standard fixes.
9311
9312 * target.c (target_xfer_memory): Add spaces, coding standard.
9313 (do_xfer_memory): Add missing line to trust-readonly
9314 code: check bfd SEC_READONLY flag for section.
9315
9316 2002-01-31 Andrew Cagney <ac131313@redhat.com>
9317
9318 * PROBLEMS: Fix typo, 5.1->5.1.1.
9319
9320 2002-01-30 Daniel Jacobowitz <drow@mvista.com>
9321
9322 * symtab.c (find_pc_sect_psymtab): Do not search psymtabs for
9323 data symbols, since we search based on textlow and texthigh.
9324 (find_pc_sect_symtab): Likewise.
9325
9326 2002-01-30 Andrew Cagney <ac131313@redhat.com>
9327
9328 * defs.h (vwarning): Declare.
9329 * utils.c (vwarning): New function.
9330 (warning): Call vwarning.
9331 (warning_begin): Delete function.
9332
9333 * rs6000-nat.c (vmap_ldinfo): Use the function warning to print
9334 the warning message.
9335 * d10v-tdep.c (d10v_address_to_pointer) [0]: Delete call to
9336 warning_begin.
9337
9338 2002-01-30 Michael Snyder <msnyder@redhat.com>
9339
9340 * NEWS: Mention "set trust-readonly-sections" command.
9341 Mention generate-core-file command.
9342
9343 2002-01-15 Michael Snyder <msnyder@redhat.com>
9344
9345 * target.c: New command, "set trust-readonly-sections on".
9346 (do_xfer_memory): Honor the suggestion to trust readonly sections
9347 by reading them from the object file instead of from the target.
9348 (initialize_targets): Register command "set trust-readonly-sections".
9349
9350 2002-01-29 Andrew Cagney <ac131313@redhat.com>
9351
9352 * parse.c (target_map_name_to_register): Simplify, search regs and
9353 pseudo-regs using a single loop.
9354
9355 2002-01-30 Andrew Cagney <ac131313@redhat.com>
9356
9357 * PROBLEMS: Note that the i386 fix was missing from 5.1.1.
9358
9359 2002-01-15 Rodney Brown <rbrown64@csc.com.au>
9360
9361 * config/i386/tm-i386v4.h: Define HAVE_I387_REGS.
9362 * config/i386/i386v42mp.mh: Add i387-nat.o .
9363 * i386v4-nat.c: Include i387-nat.h.
9364 (supply_fpregset): Use i387_supply_fsave.
9365 (fill_fpregset): Use i387_fill_fsave.
9366
9367 2002-01-30 Richard Earnshaw <rearnsha@arm.com>
9368
9369 * arm-tdep.c (arm_call_dummy_words): Define.
9370 * arm-linux-tdep.c (arm_linux_call_dummy_words): Define.
9371 * config/arm/tm-arm.h (CALL_DUMMY_P): Define.
9372 (CALL_DUMMY_WORDS): Define.
9373 (arm_call_dummy_words): Declare.
9374 * config/arm/tm-linux.h (CALL_DUMMY_WORDS): Define.
9375 (arm_linux_call_dummy_words): Declare.
9376
9377 2002-01-30 Andreas Schwab <schwab@suse.de>
9378
9379 * m68klinux-nat.c: Fix last change to use regcache_collect
9380 instead of referencing registers[] directly.
9381
9382 2002-01-29 Andrew Cagney <ac131313@redhat.com>
9383
9384 * parse.c (target_map_name_to_register): Delete code wrapped in
9385 #ifdef REGISTER_NAME_ALIAS_HOOK.
9386
9387 2002-01-28 Michael Snyder <msnyder@redhat.com>
9388
9389 * regcache.c (legacy_read_register_gen): Need to be able to
9390 read pseudo-register as well as real register.
9391 (legacy_write_register_gen): Ditto.
9392
9393 2002-01-28 Andrew Cagney <ac131313@redhat.com>
9394
9395 * config/mips/tm-wince.h (TARGET_BYTE_ORDER): Delete.
9396 * config/sparc/tm-sparc.h (TARGET_BYTE_ORDER): Delete.
9397 * config/ns32k/tm-umax.h (TARGET_BYTE_ORDER): Delete.
9398 * config/ia64/tm-ia64.h (TARGET_BYTE_ORDER): Delete.
9399 * config/m32r/tm-m32r.h (TARGET_BYTE_ORDER): Delete.
9400 * config/m68k/tm-m68k.h (TARGET_BYTE_ORDER): Delete.
9401 * config/m88k/tm-m88k.h (TARGET_BYTE_ORDER): Delete.
9402 * config/mn10200/tm-mn10200.h (TARGET_BYTE_ORDER): Delete.
9403 * config/pa/tm-hppa.h (TARGET_BYTE_ORDER): Delete.
9404 * config/sh/tm-wince.h (TARGET_BYTE_ORDER): Delete.
9405 * config/v850/tm-v850.h (TARGET_BYTE_ORDER): Delete.
9406 * config/vax/tm-vax.h (TARGET_BYTE_ORDER): Delete.
9407 * config/z8k/tm-z8k.h (TARGET_BYTE_ORDER): Delete.
9408 * config/i960/tm-i960.h (TARGET_BYTE_ORDER): Delete.
9409 * config/i386/tm-i386.h (TARGET_BYTE_ORDER): Delete.
9410 * config/h8500/tm-h8500.h (TARGET_BYTE_ORDER): Delete.
9411 * config/h8300/tm-h8300.h (TARGET_BYTE_ORDER): Delete.
9412 * config/fr30/tm-fr30.h (TARGET_BYTE_ORDER): Delete.
9413 * config/d30v/tm-d30v.h (TARGET_BYTE_ORDER): Delete.
9414 * config/alpha/tm-alpha.h (TARGET_BYTE_ORDER): Delete.
9415
9416 2002-01-28 Andrew Cagney <ac131313@redhat.com>
9417
9418 * arch-utils.c (TARGET_BYTE_ORDER_DEFAULT): Delete macro.
9419 (target_byte_order): Initialize to BFD_ENDIAN_BIG.
9420 (initialize_current_architecture): Update target_byte_order using
9421 information from BFD.
9422 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_DEFAULT):
9423 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_DEFAULT): Delete.
9424
9425 2002-01-28 Andrew Cagney <ac131313@redhat.com>
9426
9427 * config/vax/tm-vax.h (INVALID_FLOAT): Move macro from here...
9428 * vax-tdep.c (INVALID_FLOAT): To here. Document why it is broken.
9429
9430 * rs6000-tdep.c (rs6000_do_registers_info): Delete code wrapped in
9431 #ifdef INVALID_FLOAT.
9432 * infcmd.c (do_registers_info): Ditto.
9433 * values.c (unpack_double): Ditto. Add comment.
9434
9435 * config/ns32k/tm-umax.h (INVALID_FLOAT): Delete macro that was
9436 already commented out.
9437
9438 2002-01-26 Andreas Schwab <schwab@suse.de>
9439
9440 * config/m68k/nm-linux.h (FETCH_INFERIOR_REGISTERS): Define.
9441 * m68klinux-nat.c: Update ptrace interface for fetching/storing
9442 registers and add support for PTRACE_GETREGS.
9443
9444 2002-01-24 Andrew Cagney <ac131313@redhat.com>
9445
9446 GDB 5.1.1 released from 5.1 branch.
9447 * NEWS: Add 5.1.1 news.
9448 * README: Sync with 5.1 branch.
9449
9450 2002-01-23 Fred Fish <fnf@redhat.com>
9451
9452 * mdebugread.c (parse_partial_symbols): Only copy stabstring1 to
9453 stabstring on initial malloc. Reallocing will copy it for us,
9454 if necessary.
9455
9456 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
9457
9458 * Makefile.in (hpread_h): Delete.
9459 (HFILES_NO_SRCDIR): Remove hpread.h.
9460 (ALLDEPFILES): Remove hp-psymtab-read.c and hp-symtab-read.c.
9461 (hpread.o): Update dependencies.
9462 (hp-psymtab-read.o, hp-symtab-read.o): Remove.
9463
9464 * hp-psymtab-read.c: Remove file.
9465 * hp-symtab-read.c: Remove file.
9466 * hpread.h: Remove file.
9467
9468 * hpread.c: Merge all contents of hp-psymtab-read.c,
9469 hp-symtab-read.c and hpread.h into this file, as it was prior to
9470 January 1999.
9471
9472 * config/pa/hpux11w.mh, config/pa/hpux11.mh,
9473 config/pa/hpux1020.mh, config/pa/hppaosf.mh,
9474 config/pa/hppahpux.mh, config/pa/hppabsd.mh (NATDEPFILES):
9475 Remove hp-psymtab-read.o and hp-symtab-read.o, add hpread.o.
9476
9477 2002-01-23 Elena Zannoni <ezannoni@redhat.com>
9478
9479 * ppc-linux-nat.c (ppc_register_u_addr, supply_gregset,
9480 fill_gregset): Call gdbarch_tdep() just once, assign result to
9481 variable and use that, instead of calling the function several
9482 times.
9483
9484 2002-01-24 Alexandre Oliva <aoliva@redhat.com>
9485
9486 * configure.host: Accept sparcv9 as alias for sparc64.
9487 * configure.tgt: Likewise.
9488
9489 2002-01-22 Kevin Buettner <kevinb@redhat.com>
9490
9491 * solib-aix5.c (build_so_list_from_mapfile)
9492 (aix5_relocate_main_executable): Fix xcalloc() calls so order of
9493 arguments is not reversed.
9494 * solib-sunos.c (sunos_relocate_main_executable): Likewise.
9495 * solib-svr4.c (svr4_relocate_main_executable): Likewise.
9496
9497 2002-01-22 Elena Zannoni <ezannoni@redhat.com>
9498
9499 * sh-tdep.c (sh_pseudo_register_read): New function. Renamed and
9500 modified version of obsolete sh_fetch_pseudo_register.
9501 (sh_fetch_pseudo_register): Rename to sh_pseudo_register_read.
9502 (sh4_register_read): New function.
9503 (sh_pseudo_register_write): New function. Renamed and modified
9504 version of obsolete sh_store_pseudo_register.
9505 (sh_store_pseudo_register): Rename to sh_pseudo_register_write.
9506 (sh4_register_write): New function.
9507 (sh_gdbarch_init): Remove setting of gdbarch function
9508 fetch_pseudo_register and store_pseudo_register. Remove setting of
9509 register_convert_to_raw, register_convert_to_virtual,
9510 register_convertible.
9511 (sh_sh4_register_convertible): Delete. No longer needed. All is
9512 taken care by architecture specific functions
9513 register_read/register_write.
9514 (sh_sh4_register_convert_to_virtual): Make static.
9515 (sh_sh4_register_convert_to_raw): Ditto.
9516
9517 2002-01-22 Andrew Cagney <ac131313@redhat.com>
9518
9519 * doublest.c (floatformat_is_negative): Assert FMT is non NULL.
9520 (floatformat_is_nan, floatformat_mantissa): Ditto.
9521
9522 * gdbtypes.c (_initialize_gdbtypes): Initialize TYPE_FLOATFORMAT
9523 for builtin_type_ieee_single_little, builtin_type_ieee_double_big,
9524 builtin_type_ieee_double_little,
9525 builtin_type_ieee_double_littlebyte_bigword,
9526 builtin_type_m68881_ext, builtin_type_i960_ext,
9527 builtin_type_m88110_ext, builtin_type_m88110_harris_ext,
9528 builtin_type_arm_ext_big, builtin_type_arm_ext_littlebyte_bigword,
9529 builtin_type_ia64_spill_big, builtin_type_ia64_spill_little and
9530 builtin_type_ia64_quad_big, builtin_type_ia64_quad_little.
9531
9532 2002-01-22 Corinna Vinschen <vinschen@redhat.com>
9533
9534 * xstormy16-tdep.c (xstormy16_scan_prologue): Add frameless
9535 parameter. Set frameless flag if it exists and depended of
9536 whether the scanned function is frameless or not.
9537 (xstormy16_skip_prologue): If function is frameless, return
9538 result of xstormy16_scan_prologue().
9539 (xstormy16_frame_init_saved_regs): Adjust xstormy16_scan_prologue()
9540 call.
9541
9542 2002-01-21 Elena Zannoni <ezannoni@redhat.com>
9543
9544 * sh-tdep.c (sh_fp_frame_init_saved_regs, sh_push_arguments,
9545 sh_generic_show_regs, sh3_show_regs, sh3e_show_regs,
9546 sh3_dsp_show_regs, sh4_show_regs, sh_dsp_show_regs,
9547 sh_sh4_register_byte, sh_sh4_register_raw_size,
9548 sh_sh3e_register_virtual_type, sh_sh4_register_virtual_type,
9549 sh_sh4_register_convertible, sh_sh4_register_convert_to_virtual,
9550 sh_sh4_register_convert_to_raw, sh_fetch_pseudo_register,
9551 sh_store_pseudo_register, sh_do_pseudo_register): Call
9552 gdbarch_tdep() just once, assign result to variable and use that,
9553 instead of calling the function several times.
9554
9555 2002-01-20 Mark Kettenis <kettenis@gnu.org>
9556
9557 * go32-nat.c (fetch_register): Use FP_REGNUM_P and FPC_REGNUM_P
9558 macros instead of LAST_FPU_CTRL_REGNUM.
9559 (store_register): Likewise.
9560
9561 2002-01-21 Jim Blandy <jimb@redhat.com>
9562
9563 * infcmd.c (run_command): Check that the `exec' target layer's BFD
9564 is up-to-date before running the program, not just when a program
9565 exits.
9566
9567 2002-01-21 Fred Fish <fnf@redhat.com>
9568
9569 * arm-tdep.c (thumb_skip_prologue): Quit scanning prologue
9570 when we have found all instructions we are looking for.
9571
9572 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
9573
9574 * arm-tdep.c (arm_register_name): New function.
9575 (arm_registers_names): Make static.
9576 * config/arm/tm-arm.h (arm_register_names): Delete declaration.
9577 (arm_register_name): Declare.
9578 (REGISTER_NAME): Use it.
9579
9580 2002-01-21 Richard Earnshaw <rearnsha@arm.com>
9581 Kevin Buettner <kevinb@redhat.com>
9582
9583 Convert arm targets to new FRAME interface.
9584 * arm-tdep.c (struct frame_extra_info): Remove fsr.
9585 (arm_frame_find_save_regs): Delete.
9586 (arm_frame_init_saved_regs): New.
9587 (arm_init_extra_frame_info): Alloacte saved_regs as required.
9588 Allocate extra_info as required. Convert all uses of fsr.regs
9589 to use saved_regs, similarly all uses of EXTRA_FRAME_INFO fields
9590 to use extra_info.
9591 (thumb_scan_prologue, arm_scan_prologue, arm_find_callers_reg)
9592 (arm_frame_chain, arm_frame_saved_pc, arm_pop_frame): Likewise.
9593 (check_prologue_cache, save_prologue_cache): Likewise.
9594 (_initialize_arm_tdep): Ensure prologue_cache is correctly set up.
9595 * config/arm/tm-arm.h (EXTRA_FRAME_INFO): Delete.
9596 (FRAME_FIND_SAVED_REGS): Delete.
9597 (arm_frame_find_saved_regs): Delete prototype.
9598 (arm_frame_init_saved_regs): New prototype.
9599 (FRAME_INIT_SAVED_REGS): Define.
9600
9601 2002-01-20 Andrew Cagney <ac131313@redhat.com>
9602
9603 * config/arc/tm-arc.h (IEEE_FLOAT): Delete.
9604
9605 2002-01-20 Andrew Cagney <ac131313@redhat.com>
9606
9607 From Jeff Law <law@redhat.com>:
9608 * infttrace.c: Include <sys/pstat.h>.
9609 (child_pid_to_exec_file): Revamp. Use pstat call to get the
9610 exec file if the ttrace equivalent fails.
9611
9612 2002-01-20 Andrew Cagney <ac131313@redhat.com>
9613
9614 * rdi-share/devsw.c (openLogFile): Delete unused ``struct tm lt''.
9615 (closeLogFile): Ditto.
9616
9617 2002-01-20 Michael Chastain <mec@shout.net>
9618
9619 * top.c (print_gdb_version): Bump copyright year to 2002.
9620
9621 2002-01-20 Andrew Cagney <ac131313@redhat.com>
9622
9623 * MAINTAINERS (Blanket Write Privs): Add Kevin Buettner, Elena
9624 Zannoni and Eli Zaretskii.
9625
9626 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
9627
9628 * buildsym.c: Update copyright years.
9629 * c-typeprint.c: Likewise.
9630 * dwarf2read.c: Likewise.
9631 * f-typeprint.c: Likewise.
9632 * gdbtypes.c: Likewise.
9633 * gdbtypes.h: Likewise.
9634 * hp-symtab-read.c: Likewise.
9635 * hpread.c: Likewise.
9636 * mdebugread.c: Likewise.
9637 * p-typeprint.c: Likewise.
9638
9639 2002-01-20 Andrew Cagney <ac131313@redhat.com>
9640
9641 * remote-sim.c (gdbsim_open): Simplify code testing the macro
9642 TARGET_BYTE_ORDER_SELECTABLE_P. Assume the target is always
9643 byte-order selectable.
9644 * sparc-tdep.c (sparc_target_architecture_hook): Ditto.
9645 * arch-utils.c: Ditto.
9646 (set_endian): Ditto.
9647 (set_endian_from_file): Ditto.
9648 * gdbserver/low-sim.c (create_inferior): Ditto.
9649 * gdbarch.sh: Ditto.
9650 * gdbarch.h: Re-generate.
9651 * config/powerpc/tm-ppc-eabi.h (TARGET_BYTE_ORDER_SELECTABLE_P):
9652 * config/sparc/tm-sparclite.h (TARGET_BYTE_ORDER_SELECTABLE):
9653 * config/sparc/tm-sparclet.h (TARGET_BYTE_ORDER_SELECTABLE):
9654 * config/mcore/tm-mcore.h (TARGET_BYTE_ORDER_SELECTABLE_P):
9655 * config/arm/tm-wince.h (TARGET_BYTE_ORDER_SELECTABLE_P):
9656 * config/arm/tm-linux.h (TARGET_BYTE_ORDER_SELECTABLE_P):
9657 * config/arc/tm-arc.h (TARGET_BYTE_ORDER_SELECTABLE):
9658 * config/arm/tm-arm.h (TARGET_BYTE_ORDER_SELECTABLE_P): Delete
9659 macro definition.
9660 * config/mips/tm-wince.h: Remove #undef of macro
9661 TARGET_BYTE_ORDER_SELECTABLE.
9662 * config/sh/tm-wince.h: Ditto.
9663
9664 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
9665
9666 * gdbtypes.h (struct cplus_struct_type): Add is_artificial to
9667 member function fields. Add accessor macro
9668 TYPE_FN_FIELD_ARTIFICIAL.
9669 * dwarf2read.c (dwarf2_add_member_fn): Check for artificial methods.
9670 * c-typeprint.c (c_type_print_base): Skip artificial member
9671 functions.
9672
9673 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
9674
9675 * f-typeprint.c: Delete unused function f_type_print_args.
9676 * p-typeprint.c: Delete unused function pascal_type_print_args.
9677
9678 2002-01-20 Daniel Jacobowitz <drow@mvista.com>
9679
9680 * gdbtypes.h (struct type): Fix whitespace. Remove obsolete
9681 comment. Add ``artificial'' to ``union field_location''.
9682
9683 * dwarf2read.c: Remove ad-hoc TYPE_FIELD_ARTIFICIAL.
9684
9685 * buildsym.c (finish_block): Initialize TYPE_FIELD_ARTIFICIAL to 0.
9686 * mdebugread.c (parse_symbol): Likewise.
9687 * stabsread.c (define_symbol): Likewise.
9688 * hp-symtab-read.c (hpread_function_type): Likewise, instead of
9689 initializing TYPE_FIELD_BITPOS to n (obsolete).
9690 (hpread_doc_function_type): Likewise.
9691 * hpread.c (hpread_function_type): Likewise.
9692
9693 2002-01-20 Andrew Cagney <ac131313@redhat.com>
9694
9695 * configure.in (host_makefile_frag): Only require a host makefile
9696 fragment when a native build.
9697 * configure: Re-generate.
9698
9699 2002-01-20 Andrew Cagney <ac131313@redhat.com>
9700
9701 * doublest.h (floatformat_from_type): Declare.
9702 * doublest.c (floatformat_from_type): New function.
9703 (convert_typed_floating): Use.
9704
9705 * valprint.c (print_floating): Replace checks for IEEE_FLOAT with
9706 call to function floatformat_from_type.
9707
9708 * gdbarch.sh (IEEE_FLOAT): Delete.
9709 * gdbarch.h, gdbarch.c: Re-generate.
9710 * config/i960/tm-i960.h (IEEE_FLOAT): Delete macro.
9711 * config/i386/tm-i386.h (IEEE_FLOAT): Ditto.
9712 * config/z8k/tm-z8k.h (IEEE_FLOAT): Ditto.
9713 * config/sparc/tm-sparc.h (IEEE_FLOAT): Ditto.
9714 * config/pa/tm-hppa.h (IEEE_FLOAT): Ditto.
9715 * config/m88k/tm-m88k.h (IEEE_FLOAT): Ditto.
9716 * config/m68k/tm-m68k.h (IEEE_FLOAT): Ditto.
9717 * config/h8500/tm-h8500.h (IEEE_FLOAT): Ditto.
9718 * config/h8300/tm-h8300.h (IEEE_FLOAT): Ditto.
9719 * config/fr30/tm-fr30.h (IEEE_FLOAT): Ditto.
9720 * config/arm/tm-arm.h (IEEE_FLOAT): Ditto.
9721 * config/alpha/tm-alpha.h (IEEE_FLOAT): Ditto.
9722
9723 * s390-tdep.c (s390_gdbarch_init): Do not set ieee_float.
9724 * x86-64-tdep.c (i386_gdbarch_init): Ditto.
9725 * sparc-tdep.c (sparc_gdbarch_init): Ditto.
9726 * sh-tdep.c (sh_gdbarch_init): Ditto.
9727 * mips-tdep.c (mips_gdbarch_init): Ditto.
9728 * m68hc11-tdep.c (m68hc11_gdbarch_init): Ditto.
9729 * cris-tdep.c (cris_gdbarch_init): Ditto.
9730
9731 2002-01-20 Jiri Smid <smid@suse.cz>
9732
9733 * configure.host, configure.tgt: Support x86-64.
9734 * NEWS: Note new target x86-64.
9735
9736 * config/i386/x86-64linux.mh (NATDEPFILES): x86-64-nat.o removed.
9737 * x86-64-linux-nat.c (x86_64_register_u_addr): New function.
9738 * config/i386/nm-x86-64.h (ATTACH_LWP): Removed.
9739 * Makefile.in (x86-64-tdep.o, x86-64-linux-tdep.o,
9740 x86-64-linux-nat.o): Fix dependencies.
9741
9742 2002-01-19 Andrew Cagney <ac131313@redhat.com>
9743
9744 * utils.c: Remove #ifndef MALLOC_INCOMPATIBLE.
9745 * config/sparc/xm-sun4os4.h (PTRACE_ARG3_TYPE): Move macro ....
9746 * config/sparc/nm-sun4os4.h (PTRACE_ARG3_TYPE): ... to here.
9747 * config/sparc/xm-sun4os4.h: Delete file.
9748 * config/sparc/sun4os4.mh (XM_FILE): Delete makefile variable.
9749
9750 2002-01-19 Andrew Cagney <ac131313@redhat.com>
9751
9752 * config/sparc/sparclynx.mh (XM_FILE): Delete.
9753 * config/rs6000/rs6000lynx.mh (XM_FILE): Delete.
9754 * config/m68k/m68klynx.mh (XM_FILE): Delete.
9755 * config/i386/i386lynx.mh (XM_FILE): Delete.
9756 * config/rs6000/xm-rs6000ly.h: Delete file.
9757 * config/sparc/xm-sparclynx.h: Delete file.
9758 * config/m68k/xm-m68klynx.h: Delete file.
9759 * config/i386/xm-i386lynx.h: Delete file.
9760 * config/xm-lynx.h: Delete file.
9761 * config/djgpp/fnchange.lst: Update.
9762
9763 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
9764
9765 * alpha-tdep.c (alpha_register_byte): New function.
9766 (alpha_register_raw_size): Ditto.
9767 (alpha_register_virtual_size): Ditto.
9768 (alpha_skip_prologue_internal): Renamed from
9769 alpha_skip_prologue.
9770 (alpha_skip_prologue): New version that calls
9771 alpha_skip_prologue_internal.
9772 (alpha_in_lenient_prologue): Use alpha_skip_prologue_internal.
9773 * config/alpha/tm-alpha.h (SKIP_PROLOGUE): Remove
9774 second argument from alpha_skip_prologue.
9775 (REGISTER_BYTE): Use alpha_register_byte.
9776 (REGISTER_RAW_SIZE): Use alpha_register_raw_size.
9777 (REGISTER_VIRTUAL_SIZE): Use alpha_register_virtual_size.
9778 (FRAMELESS_FUNCTION_INVOCATION): Use
9779 generic_frameless_function_invocation_not.
9780 (FRAME_NUM_ARGS): Use frame_num_args_unknown.
9781 (COERCE_FLOAT_TO_DOUBLE): Use standard_coerce_float_to_double.
9782
9783 2002-01-19 Andrew Cagney <ac131313@redhat.com>
9784
9785 * config/mips/xm-news-mips.h: Delete file.
9786 * config/mips/news-mips.mh (XM_FILE): Delete makefile variable.
9787
9788 * config/m88k/xm-m88k.h: Delete file.
9789 * config/m88k/xm-dgux.h: Do not include xm-m88k.h.
9790 * config/m88k/xm-delta88v4.h: Ditto.
9791 * config/m88k/xm-delta88.h: Ditto.
9792
9793 * config/alpha/xm-fbsd.h: Delete file.
9794 * config/alpha/fbsd.mh (XM_FILE): Delete makefile variable.
9795
9796 * config/sparc/xm-sparc.h: Delete file.
9797 * Makefile.in (xm-sun4os4.h): Delete dependency.
9798 * config/sparc/xm-sun4sol2.h: Do not include xm-sparc.h.
9799 * config/sparc/xm-sun4os4.h: Ditto.
9800 * config/sparc/xm-linux.h: Ditto.
9801
9802 * config/i386/xm-windows.h: Delete file.
9803
9804 2002-01-19 Andrew Cagney <ac131313@redhat.com>
9805
9806 * utils.c: Include <sys/param.h> for MAXPATHLEN.
9807 (gdb_realpath): Use MAXPATHLEN when PATH_MAX is not defined.
9808
9809 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
9810
9811 * alpha-tdep.c (alpha_call_dummy_words): New.
9812 * config/alpha/tm-alpha.h (CALL_DUMMY): Remove.
9813 (CALL_DUMMY_P): Define.
9814 (CALL_DUMMY_WORDS): Define.
9815 (SIZEOF_CALL_DUMMY_WORDS): Define.
9816
9817 2002-01-19 Per Bothner <per@bothner.com>
9818
9819 * gnu-v3-abi.c (gnuv3_rtti_type): Guard that vtable_symbol_name
9820 isn't NULL, which can happen with some gcj-3.x-produced code.
9821
9822 2002-01-19 Jason Thorpe <thorpej@wasabisystems.com>
9823
9824 * alpha-tdep.c (alpha_register_virtual_type): New function.
9825 (alpha_init_frame_pc_first): Ditto.
9826 (alpha_fix_call_dummy): Ditto.
9827 (alpha_store_struct_return): Ditto.
9828 (alpha_extract_struct_value_address): Ditto.
9829 * config/alpha/tm-alpha.h (REGISTER_VIRTUAL_TYPE): Use
9830 alpha_register_virtual_type.
9831 (STORE_STRUCT_RETURN): Use alpha_store_struct_return.
9832 (EXTRACT_STRUCT_VALUE_ADDRESS): Use
9833 alpha_extract_struct_value_address.
9834 (FIX_CALL_DUMMY): Use alpha_fix_call_dummy.
9835 (INIT_FRAME_PC): Use init_frame_pc_noop.
9836 (INIT_FRAME_PC_FIRST): Use alpha_init_frame_pc_first.
9837
9838 2002-01-19 Mark Kettenis <kettenis@gnu.org>
9839
9840 * i386gnu-nat.c: Include "i386-tdep.h".
9841 (fetch_fpregs): Simplify code dealing with uninitialized floating
9842 point states such that it doesn't require FP7_REGNUM.
9843
9844 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
9845
9846 * alpha-tdep.c (frame_extra_info): New.
9847 (alpha_find_saved_regs): Make static. Use
9848 frame->extra_info.
9849 (alpha_frame_init_saved_regs): New function.
9850 (alpha_frame_saved_pc): Use frame->extra_info.
9851 (temp_saved_regs): Don't declare as struct frame_saved_regs.
9852 (heuristic_proc_desc): Adjust for temp_saved_regs changes.
9853 (init_extra_frame_info): Rename to...
9854 (alpha_init_extra_frame_info): ...this. Use frame->extra_info.
9855 (alpha_print_extra_frame_info): New function.
9856 (alpha_frame_locals_address): Ditto.
9857 (alpha_frame_args_address): Ditto.
9858 (alpha_pop_frame): Use frame->extra_info.
9859 * config/alpha/tm-alpha.h (FRAME_ARGS_ADDRESS): Use
9860 alpha_frame_args_address.
9861 (FRAME_LOCALS_ADDRESS): Use alpha_frame_locals_address.
9862 (alpha_find_saved_regs): Remove prototype.
9863 (FRAME_INIT_SAVED_REGS): Use alpha_frame_init_saved_regs.
9864 (EXTRA_FRAME_INFO): Remove.
9865 (INIT_EXTRA_FRAME_INFO): Use alpha_init_extra_frame_info.
9866 (PRINT_EXTRA_FRAME_INFO): Use alpha_print_extra_frame_info.
9867
9868 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
9869
9870 * alpha-tdep.c (alpha_osf_in_sigtramp): New function.
9871 (alpha_cannot_fetch_register): Ditto.
9872 (alpha_cannot_store_register): Ditto.
9873 (alpha_register_convertible): Ditto.
9874 (alpha_use_struct_convention): Ditto.
9875 * config/alpha/tm-alpha.h: Update copyright years.
9876 (IN_SIGTRAMP): Use alpha_osf_in_sigtramp.
9877 (INNER_THAN): Use core_addr_lessthan.
9878 (CANNOT_FETCH_REGISTER): Use alpha_cannot_fetch_register.
9879 (CANNOT_STORE_REGISTER): Use alpha_cannot_store_register.
9880 (REGISTER_CONVERTIBLE): Use alpha_register_convertible.
9881 (USE_STRUCT_CONVENTION): Use alpha_use_struct_convention.
9882 (FRAME_CHAIN): Remove unnecessary cast.
9883
9884 2002-01-18 Andrew Cagney <ac131313@redhat.com>
9885
9886 * NEWS: Document that testsuite/gdb.hp/gdb.threads-hp/ is
9887 obsolete.
9888
9889 2002-01-18 Andrew Cagney <ac131313@redhat.com>
9890
9891 * infptrace.c: Remove ATTRIBUTE_UNUSED. Update copyright.
9892 * monitor.c, remote-array.c, remote-bug.c: Ditto.
9893 * remote-e7000.c, remote-es.c, remote-mips.c: Ditto.
9894 * remote-nindy.c, remote-os9k.c, remote-rdi.c: Ditto.
9895 * remote-rdp.c, remote-sds.c, remote-sim.c: Ditto.
9896 * remote-st.c, remote-vx.c, remote.c, win32-nat.c: Ditto.
9897 * x86-64-linux-nat.c: Ditto.
9898
9899 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
9900
9901 * alpha-tdep.c (alpha_register_name): New function.
9902 * config/alpha/tm-alpha.h (REGISTER_NAMES): Remove.
9903 (REGISTER_NAME): Define.
9904
9905 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
9906
9907 * config/nm-nbsd.h (KERNEL_U_ADDR): Remove.
9908
9909 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
9910
9911 * alpha-tdep.c: Update copyright years.
9912 (alpha_next_pc): New function.
9913 (alpha_software_single_step): Ditto.
9914 * config/alpha/tm-alpha.h: Add prototype for
9915 alpha_software_single_step.
9916
9917 2002-01-18 Jason Thorpe <thorpej@wasabisystems.com>
9918
9919 * alphabsd-nat.c: Update copyright years.
9920 (fill_gregset): Use regcache_collect.
9921 (fill_fpregset): Likewise.
9922 (fetch_inferior_registers): Only fetch integer registers
9923 if requested to do so.
9924 (store_inferior_registers): Only store integer registers
9925 if requested to do so.
9926
9927 2002-01-17 Andrew Cagney <ac131313@redhat.com>
9928
9929 * config/alpha/alpha-osf3.mh (XDEPFILES): Delete.
9930 * config/alpha/alpha-osf2.mh (XDEPFILES): Delete.
9931 * config/alpha/alpha-osf1.mh (XDEPFILES): Delete.
9932 * config/alpha/alpha-linux.mh (XDEPFILES): Delete.
9933 * config/alpha/fbsd.mh (XDEPFILES): Delete.
9934 * config/arm/linux.mh (XDEPFILES): Delete.
9935 * config/arm/nbsd.mh (XDEPFILES): Delete.
9936 * config/i386/i386dgux.mh (XDEPFILES): Delete.
9937 * config/i386/i386sol2.mh (XDEPFILES): Delete.
9938 * config/i386/i386m3.mh (XDEPFILES): Delete.
9939 (NATDEPFILES): Move i387-tdep.o and core-aout.o to here.
9940 * config/i386/i386gnu.mh (XDEPFILES): Delete.
9941 * config/i386/fbsd.mh (XDEPFILES): Delete.
9942 * config/i386/i386bsd.mh (XDEPFILES): Delete.
9943 * config/i386/i386sco5.mh (XDEPFILES): Delete.
9944 * config/i386/i386v4.mh (XDEPFILES): Delete.
9945 * config/i386/i386v42mp.mh (XDEPFILES): Delete.
9946 * config/i386/i386sco4.mh (XDEPFILES): Delete.
9947 * config/i386/i386aix.mh (XDEPFILES): Delete.
9948 * config/i386/go32.mh (XDEPFILES): Delete.
9949 * config/i386/cygwin.mh (XDEPFILES): Delete.
9950 * config/i386/i386lynx.mh (XDEPFILES): Delete.
9951 * config/i386/i386mach.mh (XDEPFILES): Delete.
9952 * config/i386/i386v32.mh (XDEPFILES): Delete.
9953 * config/i386/linux.mh (XDEPFILES): Delete.
9954 * config/i386/nbsdelf.mh (XDEPFILES): Delete.
9955 * config/i386/ncr3000.mh (XDEPFILES): Delete.
9956 * config/i386/i386mk.mh (NATDEPFILES): Rename XDEPFILES.
9957 * config/i386/i386sco.mh (XDEPFILES): Delete.
9958 * config/i386/i386v.mh (XDEPFILES): Delete.
9959 * config/i386/nbsd.mh (XDEPFILES): Delete.
9960 * config/i386/ptx.mh (NATDEPFILES): Rename XDEPFILES.
9961 * config/i386/ptx4.mh (NATDEPFILES): Rename XDEPFILES.
9962 * config/i386/symmetry.mh (XDEPFILES): Delete.
9963 * config/i386/obsd.mh (XDEPFILES): Delete.
9964 * config/i386/x86-64linux.mh (XDEPFILES): Delete.
9965 * config/ia64/linux.mh (XDEPFILES): Delete.
9966 * config/ia64/aix.mh (XDEPFILES): Delete.
9967 * config/m68k/apollo68b.mh (XDEPFILES): Delete.
9968 * config/m68k/dpx2.mh (XDEPFILES): Delete.
9969 * config/m68k/3b1.mh (NATDEPFILES): Rename XDEPFILES.
9970 * config/m68k/apollo68v.mh (XDEPFILES): Delete.
9971 * config/m68k/hp300bsd.mh (XDEPFILES): Delete.
9972 * config/m68k/linux.mh (XDEPFILES): Delete.
9973 * config/m68k/m68klynx.mh (XDEPFILES): Delete.
9974 * config/m68k/m68kv4.mh (XDEPFILES): Delete.
9975 * config/m68k/nbsd.mh (XDEPFILES): Delete.
9976 * config/m68k/sun2os3.mh (XDEPFILES): Delete.
9977 * config/m68k/sun2os4.mh (XDEPFILES): Delete.
9978 * config/m68k/sun3os3.mh (XDEPFILES): Delete.
9979 * config/m68k/sun3os4.mh (XDEPFILES): Delete.
9980 * config/m88k/delta88.mh (XDEPFILES): Delete.
9981 * config/m88k/delta88v4.mh (XDEPFILES): Delete.
9982 * config/m88k/m88k.mh (XDEPFILES): Delete.
9983 * config/mips/littlemips.mh (NATDEPFILES): Rename XDEPFILES.
9984 * config/mips/linux.mh (XDEPFILES): Delete.
9985 * config/mips/irix6.mh (XDEPFILES): Delete.
9986 * config/mips/irix5.mh (XDEPFILES): Delete.
9987 * config/mips/irix4.mh (XDEPFILES): Delete.
9988 * config/mips/irix3.mh (XDEPFILES): Delete.
9989 * config/mips/decstation.mh (XDEPFILES): Delete.
9990 * config/mips/mipsm3.mh (XDEPFILES): Delete.
9991 (NATDEPFILES): Move core-aout.o to here.
9992 * config/ns32k/nbsd.mh (XDEPFILES): Delete.
9993 * config/pa/hpux1020.mh (XDEPFILES): Delete.
9994 * config/pa/hppabsd.mh (XDEPFILES): Delete.
9995 * config/pa/hppahpux.mh (XDEPFILES): Delete.
9996 * config/pa/hpux11w.mh (XDEPFILES): Delete.
9997 * config/pa/hppaosf.mh (XDEPFILES): Delete.
9998 * config/pa/hpux11.mh (XDEPFILES): Delete.
9999 * config/powerpc/aix.mh (XDEPFILES): Delete.
10000 * config/powerpc/nbsd.mh (XDEPFILES): Delete.
10001 * config/powerpc/linux.mh (XDEPFILES): Delete.
10002 * config/romp/rtbsd.mh: Rename XDEPFILES.
10003 * config/rs6000/rs6000lynx.mh (XDEPFILES): Delete.
10004 * config/rs6000/aix4.mh (XDEPFILES): Delete.
10005 * config/rs6000/rs6000.mh (XDEPFILES): Delete.
10006 * config/s390/s390.mh (XDEPFILES): Delete.
10007 * config/vax/vaxbsd.mh (NATDEPFILES): Rename XDEPFILES.
10008 * config/sparc/sun4sol2.mh (XDEPFILES): Delete.
10009 * config/sparc/sun4os4.mh (XDEPFILES): Delete.
10010 * config/sparc/sparclynx.mh (XDEPFILES): Delete.
10011 * config/sparc/nbsdelf.mh (XDEPFILES): Delete.
10012 * config/sparc/nbsd.mh (XDEPFILES): Delete.
10013 * config/sparc/linux.mh (XDEPFILES): Delete.
10014 * config/vax/vaxult.mh (XDEPFILES): Delete.
10015 * config/vax/vaxult2.mh (XDEPFILES): Delete.
10016 * Makefile.in (DEPFILES): Remove XDEPFILES.
10017
10018 2002-01-17 Andrew Cagney <ac131313@redhat.com>
10019
10020 * utils.c (internal_verror): Fix comments, default is yes not no.
10021 Update queries to match. Default to quit and dump core.
10022
10023 2002-01-17 Andrew Cagney <ac131313@redhat.com>
10024
10025 * breakpoint.c: Update assuming #if UI_OUT is always true. Update
10026 copyright.
10027 * defs.h, event-top.c, gdbcmd.h: Ditto.
10028 * infcmd.c, infrun.c, main.c, printcmd.c, remote.c: Ditto.
10029 * source.c, stack.c, symfile.c, symtab.c, thread.c: Ditto.
10030 * top.c, cli/cli-cmds.c, cli/cli-decode.c: Ditto.
10031 * cli/cli-script.c, cli/cli-script.h, cli/cli-setshow.c: Ditto.
10032 * mi/ChangeLog, mi/mi-cmd-break.c, mi/mi-cmd-stack.c: Ditto.
10033 * mi/mi-main.c:Ditto.
10034
10035 * stack.c, symfile.c: Update copyright.
10036
10037 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
10038
10039 * gdbserver/low-hppabsd.c, gdbserver/low-lynx.c,
10040 gdbserver/low-nbsd.c, gdbserver/low-sim.c,
10041 gdbserver/low-sparc.c, gdbserver/low-sun3.c,
10042 gdbserver/low-linux.c, gdbserver/server.c: Correct copyright notices.
10043
10044 2002-01-17 Daniel Jacobowitz <drow@mvista.com>
10045
10046 * gdbserver/low-hppabsd.c (myattach): New function, returning -1.
10047 * gdbserver/low-lynx.c (myattach): Likewise.
10048 * gdbserver/low-nbsd.c (myattach): Likewise.
10049 * gdbserver/low-sim.c (myattach): Likewise.
10050 * gdbserver/low-sparc.c (myattach): Likewise.
10051 * gdbserver/low-sun3.c (myattach): Likewise.
10052
10053 * gdbserver/low-linux.c (myattach): New function.
10054
10055 * gdbserver/server.c (attach_inferior): New function.
10056 (main): Handle "--attach".
10057
10058 2002-01-16 Andrew Cagney <ac131313@redhat.com>
10059
10060 * MAINTAINERS (language support): Daniel Jacobwitz is C++
10061 maintainer.
10062
10063 2002-01-15 Daniel Jacobowitz <drow@mvista.com>
10064
10065 * c-typeprint.c (is_type_conversion_operator): Add additional
10066 check for non-conversion operators.
10067
10068 2002-01-15 Michael Snyder <msnyder@redhat.com>
10069
10070 * linux-proc.c: Add "info proc" command, a la procfs.c.
10071 (read_mapping): New function, abstract and re-use code.
10072 (linux_find_memory_regions): Use new func read_mapping.
10073 (linux_info_proc_cmd): New function, implement "info proc".
10074 (_initialize_linux_proc): Add new command "info proc".
10075
10076 2002-01-15 Michael Snyder <msnyder@redhat.com>
10077
10078 * symfile.c (generic_load): Use bfd_map_over_sections method
10079 instead of manipulating bfd structure members directly.
10080 (add_section_size_callback): New function, bfd sections callback
10081 used by generic_load.
10082 (load_sections_callback): New function, bfd sections callback
10083 used by generic_load.
10084
10085 2002-01-15 Elena Zannoni <ezannoni@redhat.com>
10086
10087 [Based on work by Jim Blandy]
10088 * gdbtypes.h (builtin_type_v16qi, builtin_type_v8hi): Export.
10089 (builtin_type_vec128): Export.
10090 * gdbtypes.c (builtin_type_v16qi, builtin_type_v8hi): New SIMD
10091 types.
10092 (builtin_type_vec128): New builtin type for 128 bit vector
10093 registers.
10094 (build_gdbtypes): Initialize builtin_type_v16qi and
10095 builtin_type_v8hi. Create the vec128 register builtin type
10096 structure.
10097 (build_builtin_type_vec128): New function.
10098 (_initialize_gdbtypes): Register builtin_type_v16qi and
10099 builtin_type_v8hi with gdbarch. Same for builtin_type_vec128.
10100 * rs6000-tdep.c (rs6000_register_virtual_type): Change type of
10101 AltiVec register to new builtin type.
10102
10103 2001-01-15 Daniel Jacobowitz <drow@mvista.com>
10104
10105 * stabsread.c (read_type): Pass dbx_lookup_type (typenums)
10106 to make_cv_type.
10107
10108 2002-01-14 Andrew Cagney <ac131313@redhat.com>
10109
10110 * config/pa/tm-hppa.h (DEPRECATED_CLEAN_UP_REGISTER_VALUE): Rename
10111 CLEAN_UP_REGISTER_VALUE.
10112 * regcache.c (supply_register): Update only call.
10113
10114 2002-01-14 Andrew Cagney <ac131313@redhat.com>
10115
10116 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
10117 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
10118 a29k-*-vxworks* targets as obsolete.
10119
10120 2002-01-14 Michael Snyder <msnyder@redhat.com>
10121
10122 * linux-proc.c (linux_do_thread_registers): Ignore fpxregs
10123 until we can resolve portability issues.
10124 * gregset.h: Remove references to fpxregs.
10125 * gcore.c (gcore_command): Initialize note_sec to NULL.
10126
10127 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10128
10129 * signals.c (target_signal_to_name): Rewrite. Only use
10130 signals[].name when in bounds and non-NULL.
10131
10132 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10133
10134 From Petr Ledvina <ledvinap@kae.zcu.cz>:
10135 * signals.c (target_signal_to_name): Verify that SIG is within the
10136 bounds of the signals array.
10137
10138 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10139
10140 * MAINTAINERS: Remove arm-coff and arm-pe from target list.
10141
10142 2002-01-13 Keith Seitz <keiths@redhat.com>
10143
10144 * stack.c (print_frame_info_base): Print the frame's pc
10145 only if when print_frame_info_listing_hook is not defined.
10146
10147 2002-01-13 Keith Seitz <keiths@redhat.com>
10148
10149 * varobj.c (varobj_set_value): Make sure that there were no
10150 errors evaluating the object before attempting to set its
10151 value.
10152 value_cast now properly adjusts VALUE_ADDRESS for baseclasses,
10153 so this offset adjustment is no longer necessary.
10154 (create_child): Don't set the error flag if the child is
10155 a CPLUS_FAKE_CHILD.
10156 (value_of_child): If value_fetch_lazy fails, return NULL
10157 so that callers will be notified that an error occurred.
10158 (c_value_of_variable): Delay check of variable's validity
10159 until later. We actually want all structs and unions to have
10160 the value "{...}".
10161 Do not return "???" for variables which could not be evaluated.
10162 This error condition must be returned to the caller so that it
10163 can get the error condition from gdb.
10164 (cplus_name_of_child): Adjust index for vptr before figuring
10165 out the name of the child.
10166 (cplus_value_of_child): If a child's (real) parent is not valid,
10167 don't even bother trying to give a value for it. Just return
10168 an error. Change all instances in this function.
10169 (cplus_type_of_child): If our parent is one of the "fake"
10170 parents, we need to get at the type of the real parent, and
10171 derive the child's true type using this information.
10172
10173 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10174
10175 From 2002-01-09 John Marshall <johnm@falch.net>:
10176 * CONTRIBUTE, README, TODO: Change sourceware.cygnus.com to
10177 sources.redhat.com, and tweak some related URLs which had
10178 suffered from linkrot.
10179
10180 2002-01-13 Andrew Cagney <ac131313@redhat.com>
10181
10182 From Jeff law:
10183 * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
10184 structures passed in registers.
10185
10186 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il>
10187
10188 * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous
10189 white space which prevented compilation. Reported by DSK
10190 <dsk@student.unsw.edu.au>.
10191
10192 2002-01-11 Michael Snyder <msnyder@redhat.com>
10193
10194 * symfile.c (build_section_addr_info_from_section_tab):
10195 Use bfd access method instead of manipulating bfd directly.
10196 (syms_from_objfile): Ditto.
10197 (simple_overlay_update_1): Ditto.
10198 (simple_overlay_update): Ditto.
10199 (generic_load): Ditto.
10200 (overlay_unmapped_address): FIXME comment, bfd access methods.
10201 (sections_overlap): FIXME comment, bfd access methods.
10202 (pc_in_mapped_range): FIXME comment, bfd access methods.
10203 (pc_in_unmapped_range): FIXME comment, bfd access methods.
10204 (section_is_mapped): FIXME comment, bfd access methods.
10205 (section_is_overlay): FIXME comment, bfd access methods.
10206
10207 * symfile.c (generic_load): Whitespace and long line cleanups.
10208 Remove duplicate variable, change several local variables to
10209 more appropriate data types.
10210 (print_transfer_performance): Use %lu instead of %ld for ulongs.
10211
10212 2002-01-12 Andrew Cagney <ac131313@redhat.com>
10213
10214 From Peter Schauer:
10215 * language.c (longest_local_hex_string_custom): Use phex_nz to
10216 convert NUM to a hex string.
10217
10218 2002-01-12 Elena Zannoni <ezannoni@redhat.com>
10219
10220 * sh-tdep.c (sh_gdbarch_init): Move setting of long_bit earlier in
10221 the function.
10222 Update Copyright year.
10223
10224 2002-01-12 Andrew Cagney <ac131313@redhat.com>
10225
10226 * language.c (longest_raw_hex_string): Delete unused function.
10227
10228 2002-01-11 Petr Sorfa <petrs@caldera.com>
10229
10230 * MAINTAINERS (write-after-approval): Add myself.
10231 * dwarf2read.c (read_tag_string_type): Handling of
10232 DW_AT_byte_size.
10233 (read_tag_string_type): FORTRAN fix to prevent propagation of
10234 first string size.
10235 (set_cu_language): Handling of DW_LANG_Fortran95
10236
10237 2002-01-11 Richard Earnshaw <rearnsha@arm.com>
10238
10239 * armnbsd-nat.c (fetch_inferior_registers): Change inferior_pid ->
10240 GETPID(inferior_ptid).
10241 (store_inferior_registers): Likewise.
10242
10243 2002-01-10 Jason Merrill <jason@redhat.com>
10244
10245 * dwarf2read.c (decode_locdesc): Implement DW_OP_litn, DW_OP_dup.
10246 Fix DW_OP_minus.
10247
10248 2002-01-10 Andrew Cagney <ac131313@redhat.com>
10249
10250 * config/djgpp/fnchange.lst: Add renames for bfd/ChangeLog-0001
10251 and bfd/elf32-sh-nbsd.c.
10252
10253 2002-01-10 Michael Snyder <msnyder@redhat.com>
10254
10255 * NEWS: Mention --pid and corefile/proc-id behavior change.
10256
10257 * Makefile.in: Add rules for gcore.o and linux-proc.o.
10258 * gcore.c: Include cli/cli-decode.h instead of command.h.
10259
10260 * main.c (captured_main): Add new command line option "--pid".
10261 If the second command line argument (following the symbol-file)
10262 begins with a digit, try to attach to it before trying to open
10263 it as a corefile.
10264 (print_gdb_help): Document the "--pid" argument.
10265
10266 2002-01-10 Eli Zaretskii <eliz@is.elta.co.il>
10267
10268 * completer.c (command_completer): New function.
10269
10270 * completer.h <command_completer>: Add prototype.
10271
10272 * cli/cli-cmds.c (init_cli_cmds): Make command_completer be the
10273 completer for the "help" command.
10274
10275 2002-01-09 Jason Merrill <jason@redhat.com>
10276
10277 * c-typeprint.c (is_type_conversion_operator): Fix thinko.
10278
10279 2002-01-09 Michael Snyder <msnyder@redhat.com>
10280
10281 * i386-linux-nat.c (fill_fpxregset): Make global.
10282 (store_fpxregset): Ditto.
10283
10284 * gregset.h (gdb_fpxregset_t): Define.
10285 (supply_fpxregset): Prototype.
10286 (fill_fpxregset): Prototype.
10287
10288 * exec.c (exec_make_note_section): Don't call elfcore_write_prpsinfo.
10289
10290 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
10291
10292 * config/arm/arm-tdep.h (arm_software_single_step): Remove PARAMS.
10293 * config/arm/nm-nbsd.h (arm_register_u_addr): Likewise.
10294 * config/arm/tm-nbsd.h (get_longjmp_target): Likewise.
10295
10296 2002-01-09 Andrew Cagney <ac131313@redhat.com>
10297
10298 * MAINTAINERS: Update target maintainer rules so that any
10299 Maintainer can approve a tested patch for a maintenance-only
10300 target.
10301
10302 2002-01-09 Richard Earnshaw <rearnsha@arm.com>
10303
10304 * MAINTAINERS (write-after-approval): Add myself.
10305
10306 * arm-tdep.c (arm_init_extra_frame_info): Cast NULL argument to
10307 IN_SIGTRAMP.
10308
10309 2002-01-08 Michael Snyder <msnyder@redhat.com>
10310
10311 * linux-proc.c (child_pid_to_exec_file): Use readlink to get the
10312 real name of the executable, rather than the /proc name.
10313
10314 2002-01-03 Michael Snyder <msnyder@redhat.com>
10315
10316 Implement a "generate-core-file" command in gdb, save target state.
10317 * gcore.c: New file. Implement new command 'generate-core-file'.
10318 Save a corefile image of the current state of the inferior.
10319 * linux-proc.c: Add linux-specific code for saving corefiles.
10320 * target.h (struct target_ops): Add new target vectors for saving
10321 corefiles; to_find_memory_regions and to_make_corefile_notes.
10322 (target_find_memory_regions): New macro.
10323 (target_make_corefile_notes): New macro.
10324 * target.c (update_current_target): Inherit new target methods.
10325 (dummy_find_memory_regions): New place-holder method.
10326 (dummy_make_corefile_notes): New place-holder method.
10327 (init_dummy_target): Initialize new dummy target vectors.
10328 * exec.c (exec_set_find_memory_regions): New function.
10329 Allow the exec_ops vector for memory regions to be taken over.
10330 (exec_make_note_section): New function, target vector method.
10331 * defs.h (exec_set_find_memory_regions): Export prototype.
10332 * procfs.c (proc_find_memory_regions): New function, corefile method.
10333 (procfs_make_note_section): New function, corefile method.
10334 (init_procfs_ops): Set new target vector pointers.
10335 (find_memory_regions_callback): New function.
10336 (procfs_do_thread_registers): New function.
10337 (procfs_corefile_thread_callback): New function.
10338 * sol-thread.c (sol_find_memory_regions): New function.
10339 (sol_make_note_section): New function.
10340 (init_sol_thread_ops): Initialize new target vectors.
10341 * inftarg.c (inftarg_set_find_memory_regions): New function.
10342 Allow to_find_memory_regions vector to be taken over.
10343 (inftarg_set_make_corefile_notes): New function.
10344 Allow to_make_corefile_notes vector to be taken over.
10345 * thread-db.c (thread_db_new_objfile): Don't activate thread-db
10346 interface layer if not target_has_execution (may be a corefile).
10347 * config/i386/linux.mh: Add gcore.o to NATDEPFILES.
10348 * config/sparc/sun4sol2.mh: Ditto.
10349 * config/alpha/alpha-linux.mh: Ditto.
10350 * config/arm/linux.mh: Ditto.
10351 * config/i386/x86-64linux.mh: Ditto.
10352 * config/ia64/linux.mh: Ditto.
10353 * config/m68k/linux.mh: Ditto.
10354 * config/mips/linux.mh: Ditto.
10355 * config/powerpc/linux.mh: Ditto.
10356 * config/sparc/linux.mh: Ditto.
10357
10358 2002-01-07 Michael Snyder <msnyder@redhat.com>
10359
10360 * arm-linux-nat.c: Remove references to regcache.c internal data
10361 (registers[] and register_valid[]).
10362
10363 2002-01-07 Michael Snyder <msnyder@redhat.com>
10364
10365 * linux-proc.c: New file. Implement child_pid_to_exec_file,
10366 so that attaching to a pid will automatically read the process's
10367 symbol file and shlibs.
10368 * Makefile.in: Add rule for linux-proc.o.
10369 * config/nm-linux.h: Define CHILD_PID_TO_EXEC_FILE.
10370 * config/alpha/alpha-linux.mh: Add linux-proc.o to NATDEPFILES.
10371 * config/arm/linux.mh: Ditto.
10372 * config/i386/linux.mh: Ditto.
10373 * config/i386/x86-64linux.mh: Ditto.
10374 * config/ia64/linux.mh: Ditto.
10375 * config/m68k/linux.mh: Ditto.
10376 * config/mips/linux.mh: Ditto.
10377 * config/powerpc/linux.mh: Ditto.
10378 * config/sparc/linux.mh: Ditto.
10379
10380 2002-01-06 Pierre Muller <muller@ics.u-strasbg.fr>
10381
10382 * win32-nat.c: Add i386-tdep.h dependency.
10383
10384 2002-01-07 Michael Snyder <msnyder@redhat.com>
10385
10386 * solib.c (info_sharedlibrary_command): Use TARGET_PTR_BIT
10387 instead of bfd_get_arch_size. Don't bail out just because
10388 there's no exec_bfd.
10389
10390 * cp-valprint.c (cp_print_value): FIXME comment, alloca size.
10391 * p-valprint.c (pascal_object_print_value): Ditto.
10392 * somread.c (som_symtab_read): Ditto.
10393 * symfile.c (simple_free_overlay_region_table): Ditto.
10394 * valops.c (value_assign): Ditto.
10395
10396 * tracepoint.c (tracepoint_save_command): From Klee Dienes --
10397 use tilde_expand and strerror for opening save-tracepoints file.
10398
10399 * thread-db.c (thread_db_new_objfile): Indendation fix.
10400
10401 * infptrace.c (GDB_MAX_ALLOCA): New define.
10402 (child_xfer_memory): Use xmalloc/xfree instead of alloca if the
10403 size of the buffer exceeds GDB_MAX_ALLOCA (default 1 megabyte,
10404 can be overridden with whatever value is appropriate to the host).
10405 * infttrace.c (child_xfer_memory): Add FIXME warning about use of
10406 alloca to allocate potentially large buffer.
10407 * rs6000-nat.c (child_xfer_memory): Ditto.
10408 * symm-nat.c (child_xfer_memory): Ditto.
10409 * x86-64-linux-nat.c (child_xfer_memory): Ditto.
10410
10411 2002-01-07 Jackie Smith Cashion <jsmith@redhat.com>
10412
10413 From Nick Clifton <nickc@redhat.com>
10414 * d10v-tdep.c: Set STACK_START to 0x200bffe.
10415
10416 2002-01-07 Michael Snyder <msnyder@redhat.com>
10417
10418 * solib-legacy.c (legacy_svr4_fetch_link_map_offsets):
10419 Don't use exec_bfd if it's NULL.
10420
10421 2002-01-06 Mark Kettenis <kettenis@gnu.org>
10422
10423 * valops.c (value_arg_coerce): Fix formatting.
10424
10425 2002-01-06 Andrew Cagney <ac131313@redhat.com>
10426
10427 * hp-psymtab-read.c: Include "gdb_string.h" instead of <string.h>.
10428 * gnu-nat.c: Ditto.
10429
10430 2002-01-06 Andrew Cagney <ac131313@redhat.com>
10431
10432 * MAINTAINERS: Note that alpha-dec-osf4.0a, arc-elf, arm-coff,
10433 arm-elf, arm-pe, d30v-elf, fr30-elf, h8300hms, h8500hms,
10434 i960-coff, m32r-elf, m68k-elf, m88k, mcore-elf, mn10200-elf,
10435 ns32k-netbsd, hppa1.1-hp-proelf, v850-elf, vax-dec-vms5.5 and
10436 z8k-coff have not been multi-arched. Update z8k-coff build
10437 status.
10438
10439 2002-01-06 Andrew Cagney <ac131313@redhat.com>
10440
10441 * MAINTAINERS: Mark a29k target as obsolete.
10442 * Makefile.in (a29k-tdep.o, remote-adapt.o, remote-eb.o)
10443 (remote-mm.o, remote-udi.o): Obsolete. Remove references in
10444 comments.
10445 * NEWS: Note that a29k targets are obsolete.
10446 * a29k-tdep.c: Mark as obsolete.
10447 * configure.tgt: Mark a29k-*-aout*, a29k-*-coff*, a29k-*-elf*,
10448 a29k-*-ebmon*, a29k-*-kern*, a29k-*-none*, a29k-*-udi* and
10449 a29k-*-vxworks* targets as obsolete.
10450 * remote-adapt.c: Obsolete.
10451 * remote-eb.c: Obsolete.
10452 * remote-mm.c: Obsolete.
10453 * remote-udi.c: Obsolete.
10454 * config/a29k/a29k-udi.mt: Obsolete.
10455 * config/a29k/a29k.mt: Obsolete.
10456 * config/a29k/tm-a29k.h: Obsolete.
10457 * config/a29k/tm-vx29k.h: Obsolete.
10458 * config/a29k/vx29k.mt: Obsolete.
10459
10460 2002-01-05 Andrew Cagney <ac131313@redhat.com>
10461
10462 * rs6000-tdep.c (rs6000_do_registers_info): Replace BIG_ENDIAN
10463 with BFD_ENDIAN_BIG.
10464
10465 2002-01-05 Andrew Cagney <ac131313@redhat.com>
10466
10467 * configure.in (AC_CHECK_HEADERS): Do not check for <endian.h>.
10468 * configure, config.in: Re-generate.
10469 * config/vax/xm-vaxbsd.h: Do not include <machine/endian.h>.
10470 * defs.h: Do not include <endian.h>.
10471
10472 2002-01-05 Jason Thorpe <thorpej@wasabisystems.com>
10473
10474 * acconfig.h (HAVE_PT_GETXMMREGS): New.
10475 * config.in: Regenerate.
10476 * configure.in: Update copyright years.
10477 Add test for PT_GETXMMREGS supplied by <sys/ptrace.h>.
10478 * configure: Regenerate.
10479 * i386bsd-nat.c: Update copyright years.
10480 (fill_gregset): Use regcache_collect.
10481 (fetch_inferior_registers): Only fetch integer registers
10482 if requested to do so. Add support for XMM registers
10483 using PT_GETXMMREGS.
10484 (store_inferior_registers): Only store integer registers
10485 if requested to do so. Add support for XMM registers
10486 using PT_SETXMMREGS.
10487 * i386nbsd-nat.c (fetch_inferior_registers): Remove.
10488 (store_inferior_registers): Remove.
10489 (fetch_core_registers): Use supply_gregset and i387_supply_fsave.
10490 (fetch_elfcore_registers): New function.
10491 (i386nbsd_elfcore_fns): New.
10492 (_initialize_i386nbsd_nat): Register i386nbsd_elfcore_fns.
10493 * config/i386/nbsd.mh (NATDEPFILES): Add i387-nat.o and
10494 i386bsd-nat.o.
10495 * config/i386/nbsdelf.mh (NATDEPFILES): Likewise.
10496 * config/i386/nbsd.mt (TDEPFILES): Add i386bsd-nat.o.
10497 * config/i386/nbsdelf.mt (TDEPFILES): Likewise.
10498 * config/i386/tm-nbsd.h: Update copyright years.
10499 (HAVE_SSE_REGS): Define.
10500 (IN_SIGTRAMP): Define as i386bsd_in_sigtramp.
10501 (SIGTRAMP_START): Redefine as i386bsd_sigtramp_start.
10502 (SIGTRAMP_END): Redefine as i386bsd_sigtramp_end.
10503 (SIGCONTEXT_PC_OFFSET): Remove.
10504 (FRAME_SAVED_PC): Define as i386bsd_frame_saved_pc.
10505
10506 2002-01-05 Andrew Cagney <ac131313@redhat.com>
10507
10508 * configure.tgt: Remove powerpc-*-macos* target.
10509 * config/m68k/xm-mpw.h: Delete file.
10510 * config/xm-mpw.h: Delete file.
10511 * ser-mac.c: Delete file.
10512 * mpw-make.sed: Delete file.
10513 * mpw-config.in: Delete file.
10514 * mac-xdep.c: Delete file.
10515 * mac-gdb.r: Delete file.
10516 * mac-defs.h: Delete file.
10517 * mac-nat.c: Delete file.
10518 * config/powerpc/macos.mh: Delete file.
10519 * config/powerpc/macos.mt: Delete file.
10520 * config/powerpc/nm-macos.h: Delete file.
10521 * config/powerpc/tm-macos.h: Delete file.
10522 * source.c (openp, open_source_file): Remove obsolete code.
10523 * top.c (gdb_readline): Ditto.
10524 * utils.c (query): Ditto.
10525 * event-top.c (display_gdb_prompt): Ditto.
10526 * Makefile.in (ser-mac.o): Delete obsolete target.
10527 * NEWS: Update.
10528
10529 2002-01-04 Andrew Cagney <ac131313@redhat.com>
10530
10531 * defs.h (BIG_ENDIAN): Delete macro definition.
10532 * a29k-tdep.c, arch-utils.c, arm-tdep.c, ax-gdb.c, ch-exp.c,
10533 coffread.c, cris-tdep.c, d10v-tdep.c, d30v-tdep.c, defs.h,
10534 findvar.c, infcmd.c, mem-break.c, mips-tdep.c, mn10300-tdep.c,
10535 printcmd.c, remote-os9k.c, remote-rdi.c, remote-rdp.c,
10536 remote-sim.c, remote.c, rs6000-tdep.c, sh-tdep.c, sparcl-tdep.c,
10537 stabsread.c, valops.c, valprint.c, config/a29k/tm-a29k.h,
10538 config/a29k/tm-vx29k.h, config/arm/tm-arm.h,
10539 config/d30v/tm-d30v.h, config/fr30/tm-fr30.h,
10540 config/h8300/tm-h8300.h, config/h8500/tm-h8500.h,
10541 config/m32r/tm-m32r.h, config/m68k/tm-m68k.h,
10542 config/m88k/tm-m88k.h, config/mips/tm-mips.h, config/pa/tm-hppa.h,
10543 config/sparc/tm-sparc.h, config/z8k/tm-z8k.h, mi/mi-cmd-disas.c,
10544 mi/mi-main.c: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
10545 * gdbarch.sh: Replace BIG_ENDIAN with BFD_ENDIAN_BIG.
10546 * gdbarch.c: Re-generate.
10547
10548 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
10549
10550 * thread-db.c (thread_db_new_objfile): Do not enable thread_db
10551 for core files.
10552
10553 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
10554
10555 * config/arm/nbsd.mh (XDEPFILES): Remove ser-tcp.o.
10556
10557 2002-01-04 Andrew Cagney <ac131313@redhat.com>
10558
10559 * value.h (value_ptr): Delete typedef.
10560
10561 2002-01-04 Jason Thorpe <thorpej@wasabisystems.com>
10562
10563 * i386nbsd-nat.c: Update copyright years.
10564 Include i386-tdep.h.
10565
10566 2002-01-04 Elena Zannoni <ezannoni@redhat.com>
10567
10568 * stabsread.c: Update copyright years.
10569
10570 From Debashis Mahata <debashis.mahata@wipro.com>:
10571 (read_struct_fields): Deal with Sun C compiler erroneous stab
10572 output for structs and unions.
10573 Fix PR gdb/269.
10574
10575 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
10576
10577 * p-valprint.c: Include "cp-abi.h" for baseclass_offset
10578 prototype.
10579
10580 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
10581
10582 * cp-abi.c: Fix whitespace.
10583 (baseclass_offset): New wrapper function.
10584 * cp-abi.h (baseclass_offset): Add prototype.
10585 (struct cp_abi_ops): Add baseclass_offset pointer.
10586
10587 * valops.c (vb_match): Move to...
10588 * gnu-v2-abi.c (vb_match): here.
10589 * valops.c (baseclass_offset): Move to...
10590 * gnu-v2-abi.c (gnuv2_baseclass_offset): here, and rename.
10591
10592 * gnu-v3-abi.c (gnuv3_baseclass_offset): New function.
10593
10594 * gnu-v2-abi.c (init_gnuv2_ops): Initialize baseclass_offset.
10595 * gnu-v3-abi.c (init_gnuv3_ops): Likewise.
10596 * hpacc-abi.c (init_hpacc_ops): Likewise.
10597
10598 2002-01-04 Daniel Jacobowitz <drow@mvista.com>
10599
10600 * valops.c (find_overload_match): Accept obj as a
10601 reference parameter. Update it before returning.
10602 * value.h (find_overload_match): Update prototype.
10603 * eval.c (evaluate_subexp_standard): Pass object to
10604 find_overload_match by reference.
10605
10606 2002-01-03 Andrew Cagney <ac131313@redhat.com>
10607
10608 * valarith.c: Replace value_ptr with struct value pointer. Remove
10609 register attribute from value declarations.
10610 * valops.c: Ditto.
10611 * value.h: Ditto.
10612 * scm-lang.c (scm_lookup_name): Ditto.
10613
10614 2002-01-03 Michael Snyder <msnyder@redhat.com>
10615
10616 Abstract the functionality of iterating over mapped memory
10617 regions into a general purpose iterator function.
10618 * procfs.c (iterate_over_mappings): New function, general purpose
10619 iterator for memory sections.
10620 (proc_iterate_over_mappings): Reimplement using iterate_over_mappings.
10621 (solib_mappings_callback): New function, callback for above.
10622 (info_proc_mappings): Reimpliment using iterate_over_mappings.
10623 (info_mappings_callback): New function, callback for above.
10624
10625 * procfs.c (proc_set_watchpoint): Add cast to suppress warning.
10626
10627 2002-01-01 Mark Kettenis <kettenis@gnu.org>
10628
10629 * i386-tdep.h (struct gdbarch_tdep): Add `os_ident' member.
10630 * i386-tdep.c: Include "elf-bfd.h".
10631 (process_note_abi_tag_sections): New function.
10632 (i386_gdbarch_init): Add code to recognize various OS/ABI
10633 combinations.
10634
10635 * maint.c (_initialize_maint_cmds): Add missing \ in
10636 string-literal.
10637
10638 For older changes see ChangeLog-2001
10639 \f
10640 Local Variables:
10641 mode: change-log
10642 left-margin: 8
10643 fill-column: 74
10644 version-control: never
10645 End:
This page took 0.267942 seconds and 4 git commands to generate.